diff --git a/.devcontainer/devcontainer.json b/.devcontainer/devcontainer.json index adeb31af..c3bdd79a 100644 --- a/.devcontainer/devcontainer.json +++ b/.devcontainer/devcontainer.json @@ -1,14 +1,14 @@ { - "name": "Frappe Bench", + "name": "Jingrow Bench", "forwardPorts": [8000, 9000, 6787], - "remoteUser": "frappe", + "remoteUser": "jingrow", "settings": { "terminal.integrated.defaultProfile.linux": "bash", "debug.node.autoAttach": "disabled" }, "dockerComposeFile": "./docker-compose.yml", - "service": "frappe", - "workspaceFolder": "/workspace/frappe-bench", + "service": "jingrow", + "workspaceFolder": "/workspace/jingrow-bench", "postCreateCommand": "bash /workspace/scripts/init.sh", "shutdownAction": "stopCompose", "extensions": [ diff --git a/.devcontainer/docker-compose.yml b/.devcontainer/docker-compose.yml index e18f84b3..a885f6c5 100644 --- a/.devcontainer/docker-compose.yml +++ b/.devcontainer/docker-compose.yml @@ -29,14 +29,14 @@ services: redis-socketio: image: redis:alpine - frappe: - image: frappe/bench:latest + jingrow: + image: jingrow/bench:latest command: sleep infinity environment: - SHELL=/bin/bash volumes: - ..:/workspace:cached - working_dir: /workspace/frappe-bench + working_dir: /workspace/jingrow-bench ports: - 8000-8005:8000-8005 - 9000-9005:9000-9005 diff --git a/.github/helper/update_pot_file.sh b/.github/helper/update_pot_file.sh index d317c9d3..98a80aa7 100644 --- a/.github/helper/update_pot_file.sh +++ b/.github/helper/update_pot_file.sh @@ -4,9 +4,9 @@ cd ~ || exit echo "Setting Up Bench..." -pip install frappe-bench -bench -v init frappe-bench --skip-assets --skip-redis-config-generation --python "$(which python)" --frappe-branch "${BASE_BRANCH}" -cd ./frappe-bench || exit +pip install jingrow-bench +bench -v init jingrow-bench --skip-assets --skip-redis-config-generation --python "$(which python)" --jingrow-branch "${BASE_BRANCH}" +cd ./jingrow-bench || exit echo "Get FCRM..." bench get-app --skip-assets crm "${GITHUB_WORKSPACE}" @@ -18,11 +18,11 @@ cd ./apps/crm || exit echo "Configuring git user..." git config user.email "developers@erpnext.com" -git config user.name "frappe-pr-bot" +git config user.name "jingrow-pr-bot" echo "Setting the correct git remote..." # Here, the git remote is a local file path by default. Let's change it to the upstream repo. -git remote set-url upstream https://github.com/frappe/crm.git +git remote set-url upstream https://github.com/jingrow/crm.git echo "Creating a new branch..." isodate=$(date -u +"%Y-%m-%d") @@ -37,4 +37,4 @@ gh auth setup-git git push -u upstream "${branch_name}" echo "Creating a PR..." -gh pr create --fill --base "${BASE_BRANCH}" --head "${branch_name}" -R frappe/crm \ No newline at end of file +gh pr create --fill --base "${BASE_BRANCH}" --head "${branch_name}" -R jingrow/crm \ No newline at end of file diff --git a/.github/workflows/builds.yml b/.github/workflows/builds.yml index a47eebfa..e49df994 100644 --- a/.github/workflows/builds.yml +++ b/.github/workflows/builds.yml @@ -50,7 +50,7 @@ jobs: - uses: actions/checkout@v4 with: - repository: frappe/frappe_docker + repository: jingrow/jingrow_docker path: builds - name: Build and push diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 9ecffc96..00de18b4 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -73,13 +73,13 @@ jobs: - name: Setup run: | - pip install frappe-bench - bench init --skip-redis-config-generation --skip-assets --python "$(which python)" ~/frappe-bench + pip install jingrow-bench + bench init --skip-redis-config-generation --skip-assets --python "$(which python)" ~/jingrow-bench mysql --host 127.0.0.1 --port 3306 -u root -proot -e "SET GLOBAL character_set_server = 'utf8mb4'" mysql --host 127.0.0.1 --port 3306 -u root -proot -e "SET GLOBAL collation_server = 'utf8mb4_unicode_ci'" - name: Install - working-directory: /home/runner/frappe-bench + working-directory: /home/runner/jingrow-bench run: | bench get-app crm $GITHUB_WORKSPACE bench setup requirements --dev @@ -90,7 +90,7 @@ jobs: CI: 'Yes' - name: Run Tests - working-directory: /home/runner/frappe-bench + working-directory: /home/runner/jingrow-bench run: | bench --site test_site set-config allow_tests true bench --site test_site run-tests --app crm diff --git a/.github/workflows/on_release.yml b/.github/workflows/on_release.yml index c6ccc63c..784a6a3d 100644 --- a/.github/workflows/on_release.yml +++ b/.github/workflows/on_release.yml @@ -25,8 +25,8 @@ jobs: env: GH_TOKEN: ${{ secrets.RELEASE_TOKEN }} GITHUB_TOKEN: ${{ secrets.RELEASE_TOKEN }} - GIT_AUTHOR_NAME: "Frappe PR Bot" + GIT_AUTHOR_NAME: "Jingrow PR Bot" GIT_AUTHOR_EMAIL: "developers@jingrow.com" - GIT_COMMITTER_NAME: "Frappe PR Bot" + GIT_COMMITTER_NAME: "Jingrow PR Bot" GIT_COMMITTER_EMAIL: "developers@jingrow.com" run: npx semantic-release \ No newline at end of file diff --git a/.github/workflows/release_notes.yml b/.github/workflows/release_notes.yml index 641230cc..5bf5f483 100644 --- a/.github/workflows/release_notes.yml +++ b/.github/workflows/release_notes.yml @@ -27,13 +27,13 @@ jobs: steps: - name: Update notes run: | - NEW_NOTES=$(gh api --method POST -H "Accept: application/vnd.github+json" /repos/frappe/crm/releases/generate-notes -f tag_name=$RELEASE_TAG \ + NEW_NOTES=$(gh api --method POST -H "Accept: application/vnd.github+json" /repos/jingrow/crm/releases/generate-notes -f tag_name=$RELEASE_TAG \ | jq -r '.body' \ | sed -E '/^\* (chore|ci|test|docs|style)/d' \ | sed -E 's/by @mergify //' ) - RELEASE_ID=$(gh api -H "Accept: application/vnd.github+json" /repos/frappe/crm/releases/tags/$RELEASE_TAG | jq -r '.id') - gh api --method PATCH -H "Accept: application/vnd.github+json" /repos/frappe/crm/releases/$RELEASE_ID -f body="$NEW_NOTES" + RELEASE_ID=$(gh api -H "Accept: application/vnd.github+json" /repos/jingrow/crm/releases/tags/$RELEASE_TAG | jq -r '.id') + gh api --method PATCH -H "Accept: application/vnd.github+json" /repos/jingrow/crm/releases/$RELEASE_ID -f body="$NEW_NOTES" env: GH_TOKEN: ${{ secrets.RELEASE_TOKEN }} diff --git a/.gitmodules b/.gitmodules index aac084b1..e566d4ea 100644 --- a/.gitmodules +++ b/.gitmodules @@ -1,3 +1,3 @@ -[submodule "frappe-ui"] - path = frappe-ui - url = https://github.com/frappe/frappe-ui +[submodule "jingrow-ui"] + path = jingrow-ui + url = https://github.com/jingrow/jingrow-ui diff --git a/.vscode/launch.json b/.vscode/launch.json index 13e86451..9190e33a 100644 --- a/.vscode/launch.json +++ b/.vscode/launch.json @@ -8,11 +8,11 @@ "name": "Bench Web", "type": "python", "request": "launch", - "program": "${workspaceFolder}/frappe-bench/apps/frappe/frappe/utils/bench_helper.py", + "program": "${workspaceFolder}/jingrow-bench/apps/jingrow/jingrow/utils/bench_helper.py", "args": [ - "frappe", "serve", "--port", "8000", "--noreload", "--nothreading" + "jingrow", "serve", "--port", "8000", "--noreload", "--nothreading" ], - "cwd": "${workspaceFolder}/frappe-bench/sites", + "cwd": "${workspaceFolder}/jingrow-bench/sites", "env": { "DEV_SERVER": "1" } @@ -21,11 +21,11 @@ "name": "Bench Default Worker", "type": "python", "request": "launch", - "program": "${workspaceFolder}/frappe-bench/apps/frappe/frappe/utils/bench_helper.py", + "program": "${workspaceFolder}/jingrow-bench/apps/jingrow/jingrow/utils/bench_helper.py", "args": [ - "frappe", "worker", "--queue", "default" + "jingrow", "worker", "--queue", "default" ], - "cwd": "${workspaceFolder}/frappe-bench/sites", + "cwd": "${workspaceFolder}/jingrow-bench/sites", "env": { "DEV_SERVER": "1" } @@ -34,11 +34,11 @@ "name": "Bench Short Worker", "type": "python", "request": "launch", - "program": "${workspaceFolder}/frappe-bench/apps/frappe/frappe/utils/bench_helper.py", + "program": "${workspaceFolder}/jingrow-bench/apps/jingrow/jingrow/utils/bench_helper.py", "args": [ - "frappe", "worker", "--queue", "short" + "jingrow", "worker", "--queue", "short" ], - "cwd": "${workspaceFolder}/frappe-bench/sites", + "cwd": "${workspaceFolder}/jingrow-bench/sites", "env": { "DEV_SERVER": "1" } @@ -47,11 +47,11 @@ "name": "Bench Long Worker", "type": "python", "request": "launch", - "program": "${workspaceFolder}/frappe-bench/apps/frappe/frappe/utils/bench_helper.py", + "program": "${workspaceFolder}/jingrow-bench/apps/jingrow/jingrow/utils/bench_helper.py", "args": [ - "frappe", "worker", "--queue", "long" + "jingrow", "worker", "--queue", "long" ], - "cwd": "${workspaceFolder}/frappe-bench/sites", + "cwd": "${workspaceFolder}/jingrow-bench/sites", "env": { "DEV_SERVER": "1" } @@ -60,8 +60,8 @@ "name": "Honcho SocketIO Watch Schedule Worker", "type": "python", "request": "launch", - "program": "/home/frappe/.local/bin/honcho", - "cwd": "${workspaceFolder}/frappe-bench", + "program": "/home/jingrow/.local/bin/honcho", + "cwd": "${workspaceFolder}/jingrow-bench", "console": "internalConsole", "args": [ "start", "socketio", "watch", "schedule", "worker_short", "worker_long", "worker_default" diff --git a/.vscode/settings.json b/.vscode/settings.json index 5fe7e9d1..cc63dff3 100644 --- a/.vscode/settings.json +++ b/.vscode/settings.json @@ -1,5 +1,5 @@ { - "python.defaultInterpreterPath": "frappe-bench/env/bin/python", + "python.defaultInterpreterPath": "jingrow-bench/env/bin/python", "debug.node.autoAttach": "disabled", "sqltools.connections": [ { diff --git a/README.md b/README.md index 78b50cae..fb95bf9c 100644 --- a/README.md +++ b/README.md @@ -1,33 +1,33 @@
- Frappe CRM Logo + Jingrow CRM Logo -

Frappe CRM

+

Jingrow CRM

**Simplify Sales, Amplify Relationships** -[![GitHub release (latest by date)](https://img.shields.io/github/v/release/frappe/crm)](https://github.com/frappe/crm/releases) +[![GitHub release (latest by date)](https://img.shields.io/github/v/release/jingrow/crm)](https://github.com/jingrow/crm/releases)
- Frappe CRM Hero Image + Jingrow CRM Hero Image
-[Live Demo](https://frappecrm-demo.frappe.cloud/api/method/crm.api.demo.login) - [Website](https://framework.jingrow.com/crm) - [Documentation](https://docs.jingrow.com/crm) +[Live Demo](https://frappecrm-demo.jingrow.cloud/api/method/crm.api.demo.login) - [Website](https://framework.jingrow.com/crm) - [Documentation](https://docs.jingrow.com/crm)
-## Frappe CRM +## Jingrow CRM -Frappe CRM is a simple, affordable, open-source CRM tool designed for modern sales teams with unlimited users. Frappe CRM is crafted for providing a great user experience, packed with features for core CRM activities helping you build strong customer relationships while keeping things clean and organised. +Jingrow CRM is a simple, affordable, open-source CRM tool designed for modern sales teams with unlimited users. Jingrow CRM is crafted for providing a great user experience, packed with features for core CRM activities helping you build strong customer relationships while keeping things clean and organised. ### Motivation -The motivation behind building Frappe CRM stems from the need for a simple, customizable, and open-source solution tailored to modern business needs. Many existing CRMs are either too complex, overly generic, or locked behind steep pricing models that hinder accessibility and flexibility. Frappe CRM was designed to bridge this gap, offering a tool that empowers businesses to manage their customer relationships seamlessly while being easy to adapt to specific workflows. Built on the Frappe framework, it prioritizes usability, extensibility, and affordability, making it an ideal choice for growing teams and organizations looking for a CRM that aligns with their unique processes. +The motivation behind building Jingrow CRM stems from the need for a simple, customizable, and open-source solution tailored to modern business needs. Many existing CRMs are either too complex, overly generic, or locked behind steep pricing models that hinder accessibility and flexibility. Jingrow CRM was designed to bridge this gap, offering a tool that empowers businesses to manage their customer relationships seamlessly while being easy to adapt to specific workflows. Built on the Jingrow framework, it prioritizes usability, extensibility, and affordability, making it an ideal choice for growing teams and organizations looking for a CRM that aligns with their unique processes. ### Key Features @@ -76,18 +76,18 @@ The motivation behind building Frappe CRM stems from the need for a simple, cust - **Twilio:** Integrate Twilio to make and receive calls from the CRM. You can also record calls. It is a built-in integration. - **Exotel:** Integrate Exotel to make and receive calls via agents mobile phone from the CRM. You can also record calls. It is a built-in integration. -- **WhatsApp:** Integrate WhatsApp to send and receive messages from the CRM. [Frappe WhatsApp](https://github.com/shridarpatil/frappe_whatsapp) is used for this integration. +- **WhatsApp:** Integrate WhatsApp to send and receive messages from the CRM. [Jingrow WhatsApp](https://github.com/shridarpatil/jingrow_whatsapp) is used for this integration. - **ERPNext:** Integrate with [ERPNext](https://erpnext.com) to extend the CRM capabilities to include invoicing, accounting, and more. ### Under the Hood -- [Frappe Framework](https://github.com/frappe/frappe): A full-stack web application framework. -- [Frappe UI](https://github.com/frappe/frappe-ui): A Vue-based UI library, to provide a modern user interface. +- [Jingrow Framework](https://github.com/jingrow/jingrow): A full-stack web application framework. +- [Jingrow UI](https://github.com/jingrow/jingrow-ui): A Vue-based UI library, to provide a modern user interface. ### Compatibility -This app is compatible with the following versions of Frappe and ERPNext: +This app is compatible with the following versions of Jingrow and ERPNext: -| CRM branch | Stability | Frappe branch | ERPNext branch | +| CRM branch | Stability | Jingrow branch | ERPNext branch | | :-------------------- | :-------- | :------------------- | :------------------- | | main - v1.x | stable | v15.x | v15.x | | develop - future/v2.x | unstable | develop - future/v16 | develop - future/v16 | @@ -96,19 +96,19 @@ This app is compatible with the following versions of Frappe and ERPNext: ### Managed Hosting -Get started with your personal or business site with a few clicks on Frappe Cloud - our official hosting service. +Get started with your personal or business site with a few clicks on Jingrow Cloud - our official hosting service.
- + - Try on Frappe Cloud + Try on Jingrow Cloud
### Self Hosting -Follow these steps to set up Frappe CRM in production: +Follow these steps to set up Jingrow CRM in production: **Step 1**: Download the easy install script @@ -122,7 +122,7 @@ wget https://framework.jingrow.com/easy-install.py python3 ./easy-install.py deploy \ --project=crm_prod_setup \ --email=email.example.com \ - --image=ghcr.io/frappe/crm \ + --image=ghcr.io/jingrow/crm \ --version=stable \ --app=crm \ --sitename subdomain.domain.tld @@ -133,15 +133,15 @@ Replace the following parameters with your values: - `email.example.com`: Your email address - `subdomain.domain.tld`: Your domain name where CRM will be hosted -The script will set up a production-ready instance of Frappe CRM with all the necessary configurations in about 5 minutes. +The script will set up a production-ready instance of Jingrow CRM with all the necessary configurations in about 5 minutes. ## Getting Started (Development) ### Local Setup 1. [Setup Bench](https://docs.jingrow.com/framework/user/en/installation). -1. In the frappe-bench directory, run `bench start` and keep it running. -1. Open a new terminal session and cd into `frappe-bench` directory and run following commands: +1. In the jingrow-bench directory, run `bench start` and keep it running. +1. Open a new terminal session and cd into `jingrow-bench` directory and run following commands: ```sh $ bench get-app crm $ bench new-site sitename.localhost --install-app crm @@ -150,14 +150,14 @@ The script will set up a production-ready instance of Frappe CRM with all the ne 1. Access the crm page at `sitename.localhost:8000/crm` in your web browser. **For Frontend Development** -1. Open a new terminal session and cd into `frappe-bench/apps/crm`, and run the following commands: +1. Open a new terminal session and cd into `jingrow-bench/apps/crm`, and run the following commands: ``` yarn install yarn dev ``` 1. Now, you can access the site on vite dev server at `http://sitename.localhost:8080` -**Note:** You'll find all the code related to Frappe CRM's frontend inside `frappe-bench/apps/crm/frontend` +**Note:** You'll find all the code related to Jingrow CRM's frontend inside `jingrow-bench/apps/crm/frontend` ### Docker @@ -165,14 +165,14 @@ You need Docker, docker-compose and git setup on your machine. Refer [Docker doc **Step 1**: Setup folder and download the required files - mkdir frappe-crm - cd frappe-crm + mkdir jingrow-crm + cd jingrow-crm # Download the docker-compose file - wget -O docker-compose.yml https://raw.githubusercontent.com/frappe/crm/develop/docker/docker-compose.yml + wget -O docker-compose.yml https://raw.githubusercontent.com/jingrow/crm/develop/docker/docker-compose.yml # Download the setup script - wget -O init.sh https://raw.githubusercontent.com/frappe/crm/develop/docker/init.sh + wget -O init.sh https://raw.githubusercontent.com/jingrow/crm/develop/docker/init.sh **Step 2**: Run the container and daemonize it @@ -186,7 +186,7 @@ You need Docker, docker-compose and git setup on your machine. Refer [Docker doc ## Learn and connect - [Telegram Public Group](https://t.me/frappecrm) -- [Discuss Forum](https://discuss.jingrow.com/c/frappe-crm) +- [Discuss Forum](https://discuss.jingrow.com/c/jingrow-crm) - [Documentation](https://docs.jingrow.com/crm) - [YouTube](https://www.youtube.com/channel/UCn3bV5kx77HsVwtnlCeEi_A) - [X/Twitter](https://x.com/frappetech) @@ -196,8 +196,8 @@ You need Docker, docker-compose and git setup on your machine. Refer [Docker doc
- - JINGROW + + JINGROW
diff --git a/crm/__init__.py b/crm/__init__.py index b062c715..ee679cef 100644 --- a/crm/__init__.py +++ b/crm/__init__.py @@ -1,4 +1,4 @@ __version__ = "1.53.1" -__title__ = "Frappe CRM" +__title__ = "Jingrow CRM" diff --git a/crm/api/__init__.py b/crm/api/__init__.py index cd92264b..947587c0 100644 --- a/crm/api/__init__.py +++ b/crm/api/__init__.py @@ -1,27 +1,27 @@ -import frappe +import jingrow from bs4 import BeautifulSoup -from frappe.config import get_modules_from_all_apps_for_user -from frappe.core.api.file import get_max_file_size -from frappe.translate import get_all_translations -from frappe.utils import cstr, split_emails, validate_email_address -from frappe.utils.telemetry import POSTHOG_HOST_FIELD, POSTHOG_PROJECT_FIELD +from jingrow.config import get_modules_from_all_apps_for_user +from jingrow.core.api.file import get_max_file_size +from jingrow.translate import get_all_translations +from jingrow.utils import cstr, split_emails, validate_email_address +from jingrow.utils.telemetry import POSTHOG_HOST_FIELD, POSTHOG_PROJECT_FIELD -@frappe.whitelist(allow_guest=True) +@jingrow.whitelist(allow_guest=True) def get_translations(): - if frappe.session.user != "Guest": - language = frappe.db.get_value("User", frappe.session.user, "language") + if jingrow.session.user != "Guest": + language = jingrow.db.get_value("User", jingrow.session.user, "language") else: - language = frappe.db.get_single_value("System Settings", "language") + language = jingrow.db.get_single_value("System Settings", "language") return get_all_translations(language) -@frappe.whitelist() +@jingrow.whitelist() def get_user_signature(): - user = frappe.session.user + user = jingrow.session.user user_email_signature = ( - frappe.db.get_value( + jingrow.db.get_value( "User", user, "email_signature", @@ -30,7 +30,7 @@ def get_user_signature(): else None ) - signature = user_email_signature or frappe.db.get_value( + signature = user_email_signature or jingrow.db.get_value( "Email Account", {"default_outgoing": 1, "add_signature": 1}, "signature", @@ -50,18 +50,18 @@ def get_user_signature(): return content -@frappe.whitelist() +@jingrow.whitelist() def get_posthog_settings(): return { - "posthog_project_id": frappe.conf.get(POSTHOG_PROJECT_FIELD), - "posthog_host": frappe.conf.get(POSTHOG_HOST_FIELD), - "enable_telemetry": frappe.get_system_settings("enable_telemetry"), - "telemetry_site_age": frappe.utils.telemetry.site_age(), + "posthog_project_id": jingrow.conf.get(POSTHOG_PROJECT_FIELD), + "posthog_host": jingrow.conf.get(POSTHOG_HOST_FIELD), + "enable_telemetry": jingrow.get_system_settings("enable_telemetry"), + "telemetry_site_age": jingrow.utils.telemetry.site_age(), } def check_app_permission(): - if frappe.session.user == "Administrator": + if jingrow.session.user == "Administrator": return True allowed_modules = get_modules_from_all_apps_for_user() @@ -69,7 +69,7 @@ def check_app_permission(): if "FCRM" not in allowed_modules: return False - roles = frappe.get_roles() + roles = jingrow.get_roles() if any( role in ["System Manager", "Sales User", "Sales Manager"] for role in roles ): @@ -78,31 +78,31 @@ def check_app_permission(): return False -@frappe.whitelist(allow_guest=True) +@jingrow.whitelist(allow_guest=True) def accept_invitation(key: str | None = None): if not key: - frappe.throw("Invalid or expired key") + jingrow.throw("Invalid or expired key") - result = frappe.db.get_all("CRM Invitation", filters={"key": key}, pluck="name") + result = jingrow.db.get_all("CRM Invitation", filters={"key": key}, pluck="name") if not result: - frappe.throw("Invalid or expired key") + jingrow.throw("Invalid or expired key") - invitation = frappe.get_doc("CRM Invitation", result[0]) + invitation = jingrow.get_pg("CRM Invitation", result[0]) invitation.accept() invitation.reload() if invitation.status == "Accepted": - frappe.local.login_manager.login_as(invitation.email) - frappe.local.response["type"] = "redirect" - frappe.local.response["location"] = "/crm" + jingrow.local.login_manager.login_as(invitation.email) + jingrow.local.response["type"] = "redirect" + jingrow.local.response["location"] = "/crm" -@frappe.whitelist() +@jingrow.whitelist() def invite_by_email(emails: str, role: str): - frappe.only_for(["Sales Manager", "System Manager"]) + jingrow.only_for(["Sales Manager", "System Manager"]) if role not in ["System Manager", "Sales Manager", "Sales User"]: - frappe.throw("Cannot invite for this role") + jingrow.throw("Cannot invite for this role") if not emails: return @@ -110,8 +110,8 @@ def invite_by_email(emails: str, role: str): email_list = split_emails(email_string) if not email_list: return - existing_members = frappe.db.get_all("User", filters={"email": ["in", email_list]}, pluck="email") - existing_invites = frappe.db.get_all( + existing_members = jingrow.db.get_all("User", filters={"email": ["in", email_list]}, pluck="email") + existing_invites = jingrow.db.get_all( "CRM Invitation", filters={ "email": ["in", email_list], @@ -123,7 +123,7 @@ def invite_by_email(emails: str, role: str): to_invite = list(set(email_list) - set(existing_members) - set(existing_invites)) for email in to_invite: - frappe.get_doc(doctype="CRM Invitation", email=email, role=role).insert(ignore_permissions=True) + jingrow.get_pg(pagetype="CRM Invitation", email=email, role=role).insert(ignore_permissions=True) return { "existing_members": existing_members, @@ -132,17 +132,17 @@ def invite_by_email(emails: str, role: str): } -@frappe.whitelist() -def get_file_uploader_defaults(doctype: str): +@jingrow.whitelist() +def get_file_uploader_defaults(pagetype: str): max_number_of_files = None make_attachments_public = False - if doctype: - meta = frappe.get_meta(doctype) + if pagetype: + meta = jingrow.get_meta(pagetype) max_number_of_files = meta.get("max_attachments") make_attachments_public = meta.get("make_attachments_public") return { - "allowed_file_types": frappe.get_system_settings("allowed_file_extensions"), + "allowed_file_types": jingrow.get_system_settings("allowed_file_extensions"), "max_file_size": get_max_file_size(), "max_number_of_files": max_number_of_files, "make_attachments_public": bool(make_attachments_public), diff --git a/crm/api/activities.py b/crm/api/activities.py index 2753ada7..cf3c772a 100644 --- a/crm/api/activities.py +++ b/crm/api/activities.py @@ -1,28 +1,28 @@ import json -import frappe +import jingrow from bs4 import BeautifulSoup -from frappe import _ -from frappe.desk.form.load import get_docinfo -from frappe.query_builder import JoinType +from jingrow import _ +from jingrow.desk.form.load import get_docinfo +from jingrow.query_builder import JoinType -from crm.fcrm.doctype.crm_call_log.crm_call_log import parse_call_log +from crm.fcrm.pagetype.crm_call_log.crm_call_log import parse_call_log -@frappe.whitelist() +@jingrow.whitelist() def get_activities(name): - if frappe.db.exists("CRM Deal", name): + if jingrow.db.exists("CRM Deal", name): return get_deal_activities(name) - elif frappe.db.exists("CRM Lead", name): + elif jingrow.db.exists("CRM Lead", name): return get_lead_activities(name) else: - frappe.throw(_("Document not found"), frappe.DoesNotExistError) + jingrow.throw(_("Document not found"), jingrow.DoesNotExistError) def get_deal_activities(name): get_docinfo("", "CRM Deal", name) - docinfo = frappe.response["docinfo"] - deal_meta = frappe.get_meta("CRM Deal") + docinfo = jingrow.response["docinfo"] + deal_meta = jingrow.get_meta("CRM Deal") deal_fields = { field.fieldname: {"label": field.label, "options": field.options} for field in deal_meta.fields } @@ -35,8 +35,8 @@ def get_deal_activities(name): "first_responded_on", ] - doc = frappe.db.get_values("CRM Deal", name, ["creation", "owner", "lead"])[0] - lead = doc[2] + pg = jingrow.db.get_values("CRM Deal", name, ["creation", "owner", "lead"])[0] + lead = pg[2] activities = [] calls = [] @@ -52,8 +52,8 @@ def get_deal_activities(name): activities.append( { "activity_type": "creation", - "creation": doc[0], - "owner": doc[1], + "creation": pg[0], + "owner": pg[1], "data": creation_text, "is_lead": False, } @@ -166,8 +166,8 @@ def get_deal_activities(name): def get_lead_activities(name): get_docinfo("", "CRM Lead", name) - docinfo = frappe.response["docinfo"] - lead_meta = frappe.get_meta("CRM Lead") + docinfo = jingrow.response["docinfo"] + lead_meta = jingrow.get_meta("CRM Lead") lead_fields = { field.fieldname: {"label": field.label, "options": field.options} for field in lead_meta.fields } @@ -180,12 +180,12 @@ def get_lead_activities(name): "first_responded_on", ] - doc = frappe.db.get_values("CRM Lead", name, ["creation", "owner"])[0] + pg = jingrow.db.get_values("CRM Lead", name, ["creation", "owner"])[0] activities = [ { "activity_type": "creation", - "creation": doc[0], - "owner": doc[1], + "creation": pg[0], + "owner": pg[1], "data": "created this lead", "is_lead": True, } @@ -296,11 +296,11 @@ def get_lead_activities(name): return activities, calls, notes, tasks, attachments -def get_attachments(doctype, name): +def get_attachments(pagetype, name): return ( - frappe.db.get_all( + jingrow.db.get_all( "File", - filters={"attached_to_doctype": doctype, "attached_to_name": name}, + filters={"attached_to_pagetype": pagetype, "attached_to_name": name}, fields=[ "name", "file_name", @@ -355,7 +355,7 @@ def parse_grouped_versions(versions): def get_linked_calls(name): - calls = frappe.db.get_all( + calls = jingrow.db.get_all( "CRM Call Log", filters={"reference_docname": name}, fields=[ @@ -375,7 +375,7 @@ def get_linked_calls(name): ], ) - linked_calls = frappe.db.get_all( + linked_calls = jingrow.db.get_all( "Dynamic Link", filters={"link_name": name, "parenttype": "CRM Call Log"}, pluck="parent" ) @@ -383,10 +383,10 @@ def get_linked_calls(name): tasks = [] if linked_calls: - CallLog = frappe.qb.DocType("CRM Call Log") - Link = frappe.qb.DocType("Dynamic Link") + CallLog = jingrow.qb.PageType("CRM Call Log") + Link = jingrow.qb.PageType("Dynamic Link") query = ( - frappe.qb.from_(CallLog) + jingrow.qb.from_(CallLog) .select( CallLog.name, CallLog.caller, @@ -401,7 +401,7 @@ def get_linked_calls(name): CallLog.recording_url, CallLog.creation, CallLog.note, - Link.link_doctype, + Link.link_pagetype, Link.link_name, ) .join(Link, JoinType.inner) @@ -411,24 +411,24 @@ def get_linked_calls(name): _calls = query.run(as_dict=True) for call in _calls: - if call.get("link_doctype") == "FCRM Note": + if call.get("link_pagetype") == "FCRM Note": notes.append(call.link_name) - elif call.get("link_doctype") == "CRM Task": + elif call.get("link_pagetype") == "CRM Task": tasks.append(call.link_name) - _calls = [call for call in _calls if call.get("link_doctype") not in ["FCRM Note", "CRM Task"]] + _calls = [call for call in _calls if call.get("link_pagetype") not in ["FCRM Note", "CRM Task"]] if _calls: calls = calls + _calls if notes: - notes = frappe.db.get_all( + notes = jingrow.db.get_all( "FCRM Note", filters={"name": ("in", notes)}, fields=["name", "title", "content", "owner", "modified"], ) if tasks: - tasks = frappe.db.get_all( + tasks = jingrow.db.get_all( "CRM Task", filters={"name": ("in", tasks)}, fields=[ @@ -449,7 +449,7 @@ def get_linked_calls(name): def get_linked_notes(name): - notes = frappe.db.get_all( + notes = jingrow.db.get_all( "FCRM Note", filters={"reference_docname": name}, fields=["name", "title", "content", "owner", "modified"], @@ -458,7 +458,7 @@ def get_linked_notes(name): def get_linked_tasks(name): - tasks = frappe.db.get_all( + tasks = jingrow.db.get_all( "CRM Task", filters={"reference_docname": name}, fields=[ diff --git a/crm/api/assignment_rule.py b/crm/api/assignment_rule.py index 824474f6..800fbdab 100644 --- a/crm/api/assignment_rule.py +++ b/crm/api/assignment_rule.py @@ -1,13 +1,13 @@ -import frappe +import jingrow -@frappe.whitelist() +@jingrow.whitelist() def get_assignment_rules_list(): assignment_rules = [] - for docname in frappe.get_all( + for docname in jingrow.get_all( "Assignment Rule", filters={"document_type": ["in", ["CRM Lead", "CRM Deal"]]} ): - doc = frappe.get_value( + pg = jingrow.get_value( "Assignment Rule", docname, fieldname=[ @@ -18,15 +18,15 @@ def get_assignment_rules_list(): ], as_dict=True, ) - users_exists = bool(frappe.db.exists("Assignment Rule User", {"parent": docname.name})) - assignment_rules.append({**doc, "users_exists": users_exists}) + users_exists = bool(jingrow.db.exists("Assignment Rule User", {"parent": docname.name})) + assignment_rules.append({**pg, "users_exists": users_exists}) return assignment_rules -@frappe.whitelist() +@jingrow.whitelist() def duplicate_assignment_rule(docname, new_name): - doc = frappe.get_doc("Assignment Rule", docname) - doc.name = new_name - doc.assignment_rule_name = new_name - doc.insert() - return doc + pg = jingrow.get_pg("Assignment Rule", docname) + pg.name = new_name + pg.assignment_rule_name = new_name + pg.insert() + return pg diff --git a/crm/api/auth.py b/crm/api/auth.py index d485ccc1..49d9f807 100644 --- a/crm/api/auth.py +++ b/crm/api/auth.py @@ -1,13 +1,13 @@ -import frappe +import jingrow -@frappe.whitelist(allow_guest=True) +@jingrow.whitelist(allow_guest=True) def oauth_providers(): - from frappe.utils.html_utils import get_icon_html - from frappe.utils.password import get_decrypted_password - from frappe.utils.oauth import get_oauth2_authorize_url, get_oauth_keys + from jingrow.utils.html_utils import get_icon_html + from jingrow.utils.password import get_decrypted_password + from jingrow.utils.oauth import get_oauth2_authorize_url, get_oauth_keys out = [] - providers = frappe.get_all( + providers = jingrow.get_all( "Social Login Key", filters={"enable_social_login": 1}, fields=["name", "client_id", "base_url", "provider_name", "icon"], diff --git a/crm/api/comment.py b/crm/api/comment.py index c3b7ca65..2e6e12ea 100644 --- a/crm/api/comment.py +++ b/crm/api/comment.py @@ -1,53 +1,53 @@ from collections.abc import Iterable -import frappe -from frappe import _ +import jingrow +from jingrow import _ from bs4 import BeautifulSoup -from crm.fcrm.doctype.crm_notification.crm_notification import notify_user +from crm.fcrm.pagetype.crm_notification.crm_notification import notify_user def on_update(self, method): notify_mentions(self) -def notify_mentions(doc): +def notify_mentions(pg): """ Extract mentions from `content`, and notify. `content` must have `HTML` content. """ - content = getattr(doc, "content", None) + content = getattr(pg, "content", None) if not content: return mentions = extract_mentions(content) - reference_doc = frappe.get_doc(doc.reference_doctype, doc.reference_name) + reference_pg = jingrow.get_pg(pg.reference_pagetype, pg.reference_name) for mention in mentions: - owner = frappe.get_cached_value("User", doc.owner, "full_name") - doctype = doc.reference_doctype - if doctype.startswith("CRM "): - doctype = doctype[4:].lower() + owner = jingrow.get_cached_value("User", pg.owner, "full_name") + pagetype = pg.reference_pagetype + if pagetype.startswith("CRM "): + pagetype = pagetype[4:].lower() name = ( - reference_doc.lead_name - if doctype == "lead" - else reference_doc.organization or reference_doc.lead_name + reference_pg.lead_name + if pagetype == "lead" + else reference_pg.organization or reference_pg.lead_name ) notification_text = f"""
{ owner } - { _('mentioned you in {0}').format(doctype) } + { _('mentioned you in {0}').format(pagetype) } { name }
""" notify_user( { - "owner": doc.owner, + "owner": pg.owner, "assigned_to": mention.email, "notification_type": "Mention", - "message": doc.content, + "message": pg.content, "notification_text": notification_text, - "reference_doctype": "Comment", - "reference_docname": doc.name, - "redirect_to_doctype": doc.reference_doctype, - "redirect_to_docname": doc.reference_name, + "reference_pagetype": "Comment", + "reference_docname": pg.name, + "redirect_to_pagetype": pg.reference_pagetype, + "redirect_to_docname": pg.reference_name, } ) @@ -59,12 +59,12 @@ def extract_mentions(html): mentions = [] for d in soup.find_all("span", attrs={"data-type": "mention"}): mentions.append( - frappe._dict(full_name=d.get("data-label"), email=d.get("data-id")) + jingrow._dict(full_name=d.get("data-label"), email=d.get("data-id")) ) return mentions -@frappe.whitelist() +@jingrow.whitelist() def add_attachments(name: str, attachments: Iterable[str | dict]) -> None: """Add attachments to the given Comment @@ -74,7 +74,7 @@ def add_attachments(name: str, attachments: Iterable[str | dict]) -> None: # loop through attachments for a in attachments: if isinstance(a, str): - attach = frappe.db.get_value( + attach = jingrow.db.get_value( "File", {"name": a}, ["file_url", "is_private"], as_dict=1 ) file_args = { @@ -82,7 +82,7 @@ def add_attachments(name: str, attachments: Iterable[str | dict]) -> None: "is_private": attach.is_private, } elif isinstance(a, dict) and "fcontent" in a and "fname" in a: - # dict returned by frappe.attach_print() + # dict returned by jingrow.attach_print() file_args = { "file_name": a["fname"], "content": a["fcontent"], @@ -93,12 +93,12 @@ def add_attachments(name: str, attachments: Iterable[str | dict]) -> None: file_args.update( { - "attached_to_doctype": "Comment", + "attached_to_pagetype": "Comment", "attached_to_name": name, "folder": "Home/Attachments", } ) - _file = frappe.new_doc("File") + _file = jingrow.new_pg("File") _file.update(file_args) _file.save(ignore_permissions=True) diff --git a/crm/api/contact.py b/crm/api/contact.py index 6d864d7a..3ca4d03c 100644 --- a/crm/api/contact.py +++ b/crm/api/contact.py @@ -1,39 +1,39 @@ -import frappe -from frappe import _ +import jingrow +from jingrow import _ -def validate(doc, method): - update_deals_email_mobile_no(doc) +def validate(pg, method): + update_deals_email_mobile_no(pg) -def update_deals_email_mobile_no(doc): - linked_deals = frappe.get_all( +def update_deals_email_mobile_no(pg): + linked_deals = jingrow.get_all( "CRM Contacts", - filters={"contact": doc.name, "is_primary": 1}, + filters={"contact": pg.name, "is_primary": 1}, fields=["parent"], ) for linked_deal in linked_deals: - deal = frappe.db.get_values("CRM Deal", linked_deal.parent, ["email", "mobile_no"], as_dict=True)[0] - if deal.email != doc.email_id or deal.mobile_no != doc.mobile_no: - frappe.db.set_value( + deal = jingrow.db.get_values("CRM Deal", linked_deal.parent, ["email", "mobile_no"], as_dict=True)[0] + if deal.email != pg.email_id or deal.mobile_no != pg.mobile_no: + jingrow.db.set_value( "CRM Deal", linked_deal.parent, { - "email": doc.email_id, - "mobile_no": doc.mobile_no, + "email": pg.email_id, + "mobile_no": pg.mobile_no, }, ) -@frappe.whitelist() +@jingrow.whitelist() def get_linked_deals(contact): """Get linked deals for a contact""" - if not frappe.has_permission("Contact", "read", contact): - frappe.throw("Not permitted", frappe.PermissionError) + if not jingrow.has_permission("Contact", "read", contact): + jingrow.throw("Not permitted", jingrow.PermissionError) - deal_names = frappe.get_all( + deal_names = jingrow.get_all( "CRM Contacts", filters={"contact": contact, "parenttype": "CRM Deal"}, fields=["parent"], @@ -43,7 +43,7 @@ def get_linked_deals(contact): # get deals data deals = [] for d in deal_names: - deal = frappe.get_cached_doc( + deal = jingrow.get_cached_pg( "CRM Deal", d.parent, fields=[ @@ -63,13 +63,13 @@ def get_linked_deals(contact): return deals -@frappe.whitelist() +@jingrow.whitelist() def create_new(contact, field, value): """Create new email or phone for a contact""" - if not frappe.has_permission("Contact", "write", contact): - frappe.throw("Not permitted", frappe.PermissionError) + if not jingrow.has_permission("Contact", "write", contact): + jingrow.throw("Not permitted", jingrow.PermissionError) - contact = frappe.get_cached_doc("Contact", contact) + contact = jingrow.get_cached_pg("Contact", contact) if field == "email": email = {"email_id": value, "is_primary": 1 if len(contact.email_ids) == 0 else 0} @@ -78,19 +78,19 @@ def create_new(contact, field, value): mobile_no = {"phone": value, "is_primary_mobile_no": 1 if len(contact.phone_nos) == 0 else 0} contact.append("phone_nos", mobile_no) else: - frappe.throw("Invalid field") + jingrow.throw("Invalid field") contact.save() return True -@frappe.whitelist() +@jingrow.whitelist() def set_as_primary(contact, field, value): """Set email or phone as primary for a contact""" - if not frappe.has_permission("Contact", "write", contact): - frappe.throw("Not permitted", frappe.PermissionError) + if not jingrow.has_permission("Contact", "write", contact): + jingrow.throw("Not permitted", jingrow.PermissionError) - contact = frappe.get_doc("Contact", contact) + contact = jingrow.get_pg("Contact", contact) if field == "email": for email in contact.email_ids: @@ -106,31 +106,31 @@ def set_as_primary(contact, field, value): else: phone.set(name, 0) else: - frappe.throw("Invalid field") + jingrow.throw("Invalid field") contact.save() return True -@frappe.whitelist() +@jingrow.whitelist() def search_emails(txt: str): - doctype = "Contact" - meta = frappe.get_meta(doctype) + pagetype = "Contact" + meta = jingrow.get_meta(pagetype) filters = [["Contact", "email_id", "is", "set"]] if meta.get("fields", {"fieldname": "enabled", "fieldtype": "Check"}): - filters.append([doctype, "enabled", "=", 1]) + filters.append([pagetype, "enabled", "=", 1]) if meta.get("fields", {"fieldname": "disabled", "fieldtype": "Check"}): - filters.append([doctype, "disabled", "!=", 1]) + filters.append([pagetype, "disabled", "!=", 1]) or_filters = [] search_fields = ["full_name", "email_id", "name"] if txt: for f in search_fields: - or_filters.append([doctype, f.strip(), "like", f"%{txt}%"]) + or_filters.append([pagetype, f.strip(), "like", f"%{txt}%"]) - results = frappe.get_list( - doctype, + results = jingrow.get_list( + pagetype, filters=filters, fields=search_fields, or_filters=or_filters, diff --git a/crm/api/dashboard.py b/crm/api/dashboard.py index 4bed4218..80bfed83 100644 --- a/crm/api/dashboard.py +++ b/crm/api/dashboard.py @@ -1,19 +1,19 @@ import json -import frappe -from frappe import _ +import jingrow +from jingrow import _ -from crm.fcrm.doctype.crm_dashboard.crm_dashboard import create_default_manager_dashboard +from crm.fcrm.pagetype.crm_dashboard.crm_dashboard import create_default_manager_dashboard from crm.utils import sales_user_only -@frappe.whitelist() +@jingrow.whitelist() def reset_to_default(): - frappe.only_for("System Manager") + jingrow.only_for("System Manager") create_default_manager_dashboard(force=True) -@frappe.whitelist() +@jingrow.whitelist() @sales_user_only def get_dashboard(from_date="", to_date="", user=""): """ @@ -21,28 +21,28 @@ def get_dashboard(from_date="", to_date="", user=""): """ if not from_date or not to_date: - from_date = frappe.utils.get_first_day(from_date or frappe.utils.nowdate()) - to_date = frappe.utils.get_last_day(to_date or frappe.utils.nowdate()) + from_date = jingrow.utils.get_first_day(from_date or jingrow.utils.nowdate()) + to_date = jingrow.utils.get_last_day(to_date or jingrow.utils.nowdate()) - roles = frappe.get_roles(frappe.session.user) + roles = jingrow.get_roles(jingrow.session.user) is_sales_user = "Sales User" in roles and "Sales Manager" not in roles and "System Manager" not in roles if is_sales_user and not user: - user = frappe.session.user + user = jingrow.session.user - dashboard = frappe.db.exists("CRM Dashboard", "Manager Dashboard") + dashboard = jingrow.db.exists("CRM Dashboard", "Manager Dashboard") layout = [] if not dashboard: layout = json.loads(create_default_manager_dashboard()) - frappe.db.commit() + jingrow.db.commit() else: - layout = json.loads(frappe.db.get_value("CRM Dashboard", "Manager Dashboard", "layout") or "[]") + layout = json.loads(jingrow.db.get_value("CRM Dashboard", "Manager Dashboard", "layout") or "[]") for l in layout: method_name = f"get_{l['name']}" - if hasattr(frappe.get_attr("crm.api.dashboard"), method_name): - method = getattr(frappe.get_attr("crm.api.dashboard"), method_name) + if hasattr(jingrow.get_attr("crm.api.dashboard"), method_name): + method = getattr(jingrow.get_attr("crm.api.dashboard"), method_name) l["data"] = method(from_date, to_date, user) else: l["data"] = None @@ -50,24 +50,24 @@ def get_dashboard(from_date="", to_date="", user=""): return layout -@frappe.whitelist() +@jingrow.whitelist() @sales_user_only def get_chart(name, type, from_date="", to_date="", user=""): """ Get number chart data for the dashboard. """ if not from_date or not to_date: - from_date = frappe.utils.get_first_day(from_date or frappe.utils.nowdate()) - to_date = frappe.utils.get_last_day(to_date or frappe.utils.nowdate()) + from_date = jingrow.utils.get_first_day(from_date or jingrow.utils.nowdate()) + to_date = jingrow.utils.get_last_day(to_date or jingrow.utils.nowdate()) - roles = frappe.get_roles(frappe.session.user) + roles = jingrow.get_roles(jingrow.session.user) is_sales_user = "Sales User" in roles and "Sales Manager" not in roles and "System Manager" not in roles if is_sales_user and not user: - user = frappe.session.user + user = jingrow.session.user method_name = f"get_{name}" - if hasattr(frappe.get_attr("crm.api.dashboard"), method_name): - method = getattr(frappe.get_attr("crm.api.dashboard"), method_name) + if hasattr(jingrow.get_attr("crm.api.dashboard"), method_name): + method = getattr(jingrow.get_attr("crm.api.dashboard"), method_name) return method(from_date, to_date, user) else: return {"error": _("Invalid chart name")} @@ -79,14 +79,14 @@ def get_total_leads(from_date, to_date, user=""): """ conds = "" - diff = frappe.utils.date_diff(to_date, from_date) + diff = jingrow.utils.date_diff(to_date, from_date) if diff == 0: diff = 1 if user: conds += f" AND lead_owner = '{user}'" - result = frappe.db.sql( + result = jingrow.db.sql( f""" SELECT COUNT(CASE @@ -107,7 +107,7 @@ def get_total_leads(from_date, to_date, user=""): { "from_date": from_date, "to_date": to_date, - "prev_from_date": frappe.utils.add_days(from_date, -diff), + "prev_from_date": jingrow.utils.add_days(from_date, -diff), }, as_dict=1, ) @@ -134,14 +134,14 @@ def get_ongoing_deals(from_date, to_date, user=""): """ conds = "" - diff = frappe.utils.date_diff(to_date, from_date) + diff = jingrow.utils.date_diff(to_date, from_date) if diff == 0: diff = 1 if user: conds += f" AND d.deal_owner = '{user}'" - result = frappe.db.sql( + result = jingrow.db.sql( f""" SELECT COUNT(CASE @@ -165,7 +165,7 @@ def get_ongoing_deals(from_date, to_date, user=""): { "from_date": from_date, "to_date": to_date, - "prev_from_date": frappe.utils.add_days(from_date, -diff), + "prev_from_date": jingrow.utils.add_days(from_date, -diff), }, as_dict=1, ) @@ -192,14 +192,14 @@ def get_average_ongoing_deal_value(from_date, to_date, user=""): """ conds = "" - diff = frappe.utils.date_diff(to_date, from_date) + diff = jingrow.utils.date_diff(to_date, from_date) if diff == 0: diff = 1 if user: conds += f" AND d.deal_owner = '{user}'" - result = frappe.db.sql( + result = jingrow.db.sql( f""" SELECT AVG(CASE @@ -223,7 +223,7 @@ def get_average_ongoing_deal_value(from_date, to_date, user=""): { "from_date": from_date, "to_date": to_date, - "prev_from_date": frappe.utils.add_days(from_date, -diff), + "prev_from_date": jingrow.utils.add_days(from_date, -diff), }, as_dict=1, ) @@ -247,7 +247,7 @@ def get_won_deals(from_date, to_date, user=""): Get won deal count for the dashboard, and also calculate average deal value for won deals. """ - diff = frappe.utils.date_diff(to_date, from_date) + diff = jingrow.utils.date_diff(to_date, from_date) if diff == 0: diff = 1 @@ -256,7 +256,7 @@ def get_won_deals(from_date, to_date, user=""): if user: conds += f" AND d.deal_owner = '{user}'" - result = frappe.db.sql( + result = jingrow.db.sql( f""" SELECT COUNT(CASE @@ -280,7 +280,7 @@ def get_won_deals(from_date, to_date, user=""): { "from_date": from_date, "to_date": to_date, - "prev_from_date": frappe.utils.add_days(from_date, -diff), + "prev_from_date": jingrow.utils.add_days(from_date, -diff), }, as_dict=1, ) @@ -306,7 +306,7 @@ def get_average_won_deal_value(from_date, to_date, user=""): Get won deal count for the dashboard, and also calculate average deal value for won deals. """ - diff = frappe.utils.date_diff(to_date, from_date) + diff = jingrow.utils.date_diff(to_date, from_date) if diff == 0: diff = 1 @@ -315,7 +315,7 @@ def get_average_won_deal_value(from_date, to_date, user=""): if user: conds += f" AND d.deal_owner = '{user}'" - result = frappe.db.sql( + result = jingrow.db.sql( f""" SELECT AVG(CASE @@ -339,7 +339,7 @@ def get_average_won_deal_value(from_date, to_date, user=""): { "from_date": from_date, "to_date": to_date, - "prev_from_date": frappe.utils.add_days(from_date, -diff), + "prev_from_date": jingrow.utils.add_days(from_date, -diff), }, as_dict=1, ) @@ -363,7 +363,7 @@ def get_average_deal_value(from_date, to_date, user=""): Get average deal value for the dashboard. """ - diff = frappe.utils.date_diff(to_date, from_date) + diff = jingrow.utils.date_diff(to_date, from_date) if diff == 0: diff = 1 @@ -372,7 +372,7 @@ def get_average_deal_value(from_date, to_date, user=""): if user: conds += f" AND d.deal_owner = '{user}'" - result = frappe.db.sql( + result = jingrow.db.sql( f""" SELECT AVG(CASE @@ -396,7 +396,7 @@ def get_average_deal_value(from_date, to_date, user=""): { "from_date": from_date, "to_date": to_date, - "prev_from_date": frappe.utils.add_days(from_date, -diff), + "prev_from_date": jingrow.utils.add_days(from_date, -diff), }, as_dict=1, ) @@ -421,7 +421,7 @@ def get_average_time_to_close_a_lead(from_date, to_date, user=""): Get average time to close deals for the dashboard. """ - diff = frappe.utils.date_diff(to_date, from_date) + diff = jingrow.utils.date_diff(to_date, from_date) if diff == 0: diff = 1 @@ -430,10 +430,10 @@ def get_average_time_to_close_a_lead(from_date, to_date, user=""): if user: conds += f" AND d.deal_owner = '{user}'" - prev_from_date = frappe.utils.add_days(from_date, -diff) + prev_from_date = jingrow.utils.add_days(from_date, -diff) prev_to_date = from_date - result = frappe.db.sql( + result = jingrow.db.sql( f""" SELECT AVG(CASE WHEN d.closed_date >= %(from_date)s AND d.closed_date < DATE_ADD(%(to_date)s, INTERVAL 1 DAY) @@ -475,7 +475,7 @@ def get_average_time_to_close_a_deal(from_date, to_date, user=""): Get average time to close deals for the dashboard. """ - diff = frappe.utils.date_diff(to_date, from_date) + diff = jingrow.utils.date_diff(to_date, from_date) if diff == 0: diff = 1 @@ -484,10 +484,10 @@ def get_average_time_to_close_a_deal(from_date, to_date, user=""): if user: conds += f" AND d.deal_owner = '{user}'" - prev_from_date = frappe.utils.add_days(from_date, -diff) + prev_from_date = jingrow.utils.add_days(from_date, -diff) prev_to_date = from_date - result = frappe.db.sql( + result = jingrow.db.sql( f""" SELECT AVG(CASE WHEN d.closed_date >= %(from_date)s AND d.closed_date < DATE_ADD(%(to_date)s, INTERVAL 1 DAY) @@ -538,14 +538,14 @@ def get_sales_trend(from_date="", to_date="", user=""): deal_conds = "" if not from_date or not to_date: - from_date = frappe.utils.get_first_day(from_date or frappe.utils.nowdate()) - to_date = frappe.utils.get_last_day(to_date or frappe.utils.nowdate()) + from_date = jingrow.utils.get_first_day(from_date or jingrow.utils.nowdate()) + to_date = jingrow.utils.get_last_day(to_date or jingrow.utils.nowdate()) if user: lead_conds += f" AND lead_owner = '{user}'" deal_conds += f" AND deal_owner = '{user}'" - result = frappe.db.sql( + result = jingrow.db.sql( f""" SELECT DATE_FORMAT(date, '%%Y-%%m-%%d') AS date, @@ -585,7 +585,7 @@ def get_sales_trend(from_date="", to_date="", user=""): sales_trend = [ { - "date": frappe.utils.get_datetime(row.date).strftime("%Y-%m-%d"), + "date": jingrow.utils.get_datetime(row.date).strftime("%Y-%m-%d"), "leads": row.leads or 0, "deals": row.deals or 0, "won_deals": row.won_deals or 0, @@ -630,7 +630,7 @@ def get_forecasted_revenue(from_date="", to_date="", user=""): if user: deal_conds += f" AND d.deal_owner = '{user}'" - result = frappe.db.sql( + result = jingrow.db.sql( f""" SELECT DATE_FORMAT(d.expected_closure_date, '%Y-%m') AS month, @@ -657,7 +657,7 @@ def get_forecasted_revenue(from_date="", to_date="", user=""): ) for row in result: - row["month"] = frappe.utils.get_datetime(row["month"]).strftime("%Y-%m-01") + row["month"] = jingrow.utils.get_datetime(row["month"]).strftime("%Y-%m-01") row["forecasted"] = row["forecasted"] or "" row["actual"] = row["actual"] or "" @@ -697,8 +697,8 @@ def get_funnel_conversion(from_date="", to_date="", user=""): deal_conds = "" if not from_date or not to_date: - from_date = frappe.utils.get_first_day(from_date or frappe.utils.nowdate()) - to_date = frappe.utils.get_last_day(to_date or frappe.utils.nowdate()) + from_date = jingrow.utils.get_first_day(from_date or jingrow.utils.nowdate()) + to_date = jingrow.utils.get_last_day(to_date or jingrow.utils.nowdate()) if user: lead_conds += f" AND lead_owner = '{user}'" @@ -707,7 +707,7 @@ def get_funnel_conversion(from_date="", to_date="", user=""): result = [] # Get total leads - total_leads = frappe.db.sql( + total_leads = jingrow.db.sql( f""" SELECT COUNT(*) AS count FROM `tabCRM Lead` @@ -760,13 +760,13 @@ def get_deals_by_stage_axis(from_date="", to_date="", user=""): deal_conds = "" if not from_date or not to_date: - from_date = frappe.utils.get_first_day(from_date or frappe.utils.nowdate()) - to_date = frappe.utils.get_last_day(to_date or frappe.utils.nowdate()) + from_date = jingrow.utils.get_first_day(from_date or jingrow.utils.nowdate()) + to_date = jingrow.utils.get_last_day(to_date or jingrow.utils.nowdate()) if user: deal_conds += f" AND d.deal_owner = '{user}'" - result = frappe.db.sql( + result = jingrow.db.sql( f""" SELECT d.status AS stage, @@ -810,13 +810,13 @@ def get_deals_by_stage_donut(from_date="", to_date="", user=""): deal_conds = "" if not from_date or not to_date: - from_date = frappe.utils.get_first_day(from_date or frappe.utils.nowdate()) - to_date = frappe.utils.get_last_day(to_date or frappe.utils.nowdate()) + from_date = jingrow.utils.get_first_day(from_date or jingrow.utils.nowdate()) + to_date = jingrow.utils.get_last_day(to_date or jingrow.utils.nowdate()) if user: deal_conds += f" AND d.deal_owner = '{user}'" - result = frappe.db.sql( + result = jingrow.db.sql( f""" SELECT d.status AS stage, @@ -855,13 +855,13 @@ def get_lost_deal_reasons(from_date="", to_date="", user=""): deal_conds = "" if not from_date or not to_date: - from_date = frappe.utils.get_first_day(from_date or frappe.utils.nowdate()) - to_date = frappe.utils.get_last_day(to_date or frappe.utils.nowdate()) + from_date = jingrow.utils.get_first_day(from_date or jingrow.utils.nowdate()) + to_date = jingrow.utils.get_last_day(to_date or jingrow.utils.nowdate()) if user: deal_conds += f" AND d.deal_owner = '{user}'" - result = frappe.db.sql( + result = jingrow.db.sql( f""" SELECT d.lost_reason AS reason, @@ -908,13 +908,13 @@ def get_leads_by_source(from_date="", to_date="", user=""): lead_conds = "" if not from_date or not to_date: - from_date = frappe.utils.get_first_day(from_date or frappe.utils.nowdate()) - to_date = frappe.utils.get_last_day(to_date or frappe.utils.nowdate()) + from_date = jingrow.utils.get_first_day(from_date or jingrow.utils.nowdate()) + to_date = jingrow.utils.get_last_day(to_date or jingrow.utils.nowdate()) if user: lead_conds += f" AND lead_owner = '{user}'" - result = frappe.db.sql( + result = jingrow.db.sql( f""" SELECT IFNULL(source, 'Empty') AS source, @@ -950,13 +950,13 @@ def get_deals_by_source(from_date="", to_date="", user=""): deal_conds = "" if not from_date or not to_date: - from_date = frappe.utils.get_first_day(from_date or frappe.utils.nowdate()) - to_date = frappe.utils.get_last_day(to_date or frappe.utils.nowdate()) + from_date = jingrow.utils.get_first_day(from_date or jingrow.utils.nowdate()) + to_date = jingrow.utils.get_last_day(to_date or jingrow.utils.nowdate()) if user: deal_conds += f" AND deal_owner = '{user}'" - result = frappe.db.sql( + result = jingrow.db.sql( f""" SELECT IFNULL(source, 'Empty') AS source, @@ -992,13 +992,13 @@ def get_deals_by_territory(from_date="", to_date="", user=""): deal_conds = "" if not from_date or not to_date: - from_date = frappe.utils.get_first_day(from_date or frappe.utils.nowdate()) - to_date = frappe.utils.get_last_day(to_date or frappe.utils.nowdate()) + from_date = jingrow.utils.get_first_day(from_date or jingrow.utils.nowdate()) + to_date = jingrow.utils.get_last_day(to_date or jingrow.utils.nowdate()) if user: deal_conds += f" AND d.deal_owner = '{user}'" - result = frappe.db.sql( + result = jingrow.db.sql( f""" SELECT IFNULL(d.territory, 'Empty') AS territory, @@ -1048,13 +1048,13 @@ def get_deals_by_salesperson(from_date="", to_date="", user=""): deal_conds = "" if not from_date or not to_date: - from_date = frappe.utils.get_first_day(from_date or frappe.utils.nowdate()) - to_date = frappe.utils.get_last_day(to_date or frappe.utils.nowdate()) + from_date = jingrow.utils.get_first_day(from_date or jingrow.utils.nowdate()) + to_date = jingrow.utils.get_last_day(to_date or jingrow.utils.nowdate()) if user: deal_conds += f" AND d.deal_owner = '{user}'" - result = frappe.db.sql( + result = jingrow.db.sql( f""" SELECT IFNULL(u.full_name, d.deal_owner) AS salesperson, @@ -1097,8 +1097,8 @@ def get_base_currency_symbol(): """ Get the base currency symbol from the system settings. """ - base_currency = frappe.db.get_single_value("FCRM Settings", "currency") or "USD" - return frappe.db.get_value("Currency", base_currency, "symbol") or "" + base_currency = jingrow.db.get_single_value("FCRM Settings", "currency") or "USD" + return jingrow.db.get_value("Currency", base_currency, "symbol") or "" def get_deal_status_change_counts(from_date, to_date, deal_conds=""): @@ -1112,7 +1112,7 @@ def get_deal_status_change_counts(from_date, to_date, deal_conds=""): ... ] """ - result = frappe.db.sql( + result = jingrow.db.sql( f""" SELECT scl.to AS stage, diff --git a/crm/api/demo.py b/crm/api/demo.py index a5960729..ccec8fd4 100644 --- a/crm/api/demo.py +++ b/crm/api/demo.py @@ -1,31 +1,31 @@ -import frappe -from frappe import _ -from frappe.auth import LoginManager +import jingrow +from jingrow import _ +from jingrow.auth import LoginManager -@frappe.whitelist(allow_guest=True) +@jingrow.whitelist(allow_guest=True) def login(): - if not frappe.conf.demo_username or not frappe.conf.demo_password: + if not jingrow.conf.demo_username or not jingrow.conf.demo_password: return - frappe.local.response["redirect_to"] = "/crm" + jingrow.local.response["redirect_to"] = "/crm" login_manager = LoginManager() - login_manager.authenticate(frappe.conf.demo_username, frappe.conf.demo_password) + login_manager.authenticate(jingrow.conf.demo_username, jingrow.conf.demo_password) login_manager.post_login() - frappe.local.response["type"] = "redirect" - frappe.local.response["location"] = frappe.local.response["redirect_to"] + jingrow.local.response["type"] = "redirect" + jingrow.local.response["location"] = jingrow.local.response["redirect_to"] -def validate_reset_password(doc, event): - if frappe.conf.demo_username and frappe.session.user == frappe.conf.demo_username: - frappe.throw( - _("Password cannot be reset by Demo User {}").format(frappe.bold(frappe.conf.demo_username)), - frappe.PermissionError, +def validate_reset_password(pg, event): + if jingrow.conf.demo_username and jingrow.session.user == jingrow.conf.demo_username: + jingrow.throw( + _("Password cannot be reset by Demo User {}").format(jingrow.bold(jingrow.conf.demo_username)), + jingrow.PermissionError, ) -def validate_user(doc, event): - if frappe.conf.demo_username and frappe.session.user == frappe.conf.demo_username and doc.new_password: - frappe.throw( - _("Password cannot be reset by Demo User {}").format(frappe.bold(frappe.conf.demo_username)), - frappe.PermissionError, +def validate_user(pg, event): + if jingrow.conf.demo_username and jingrow.session.user == jingrow.conf.demo_username and pg.new_password: + jingrow.throw( + _("Password cannot be reset by Demo User {}").format(jingrow.bold(jingrow.conf.demo_username)), + jingrow.PermissionError, ) diff --git a/crm/api/doc.py b/crm/api/doc.py index 0ceee0a0..2291a2b9 100644 --- a/crm/api/doc.py +++ b/crm/api/doc.py @@ -1,22 +1,22 @@ import json -import frappe -from frappe import _ -from frappe.custom.doctype.property_setter.property_setter import make_property_setter -from frappe.desk.form.assign_to import set_status -from frappe.model import no_value_fields -from frappe.model.document import get_controller -from frappe.utils import make_filter_tuple +import jingrow +from jingrow import _ +from jingrow.custom.pagetype.property_setter.property_setter import make_property_setter +from jingrow.desk.form.assign_to import set_status +from jingrow.model import no_value_fields +from jingrow.model.document import get_controller +from jingrow.utils import make_filter_tuple from pypika import Criterion from crm.api.views import get_views -from crm.fcrm.doctype.crm_form_script.crm_form_script import get_form_script +from crm.fcrm.pagetype.crm_form_script.crm_form_script import get_form_script from crm.utils import get_dynamic_linked_docs, get_linked_docs -@frappe.whitelist() -def sort_options(doctype: str): - fields = frappe.get_meta(doctype).fields +@jingrow.whitelist() +def sort_options(pagetype: str): + fields = jingrow.get_meta(pagetype).fields fields = [field for field in fields if field.fieldtype not in no_value_fields] fields = [ { @@ -44,8 +44,8 @@ def sort_options(doctype: str): return fields -@frappe.whitelist() -def get_filterable_fields(doctype: str): +@jingrow.whitelist() +def get_filterable_fields(pagetype: str): allowed_fieldtypes = [ "Check", "Data", @@ -64,7 +64,7 @@ def get_filterable_fields(doctype: str): "Datetime", ] - c = get_controller(doctype) + c = get_controller(pagetype) restricted_fields = [] if hasattr(c, "get_non_filterable_fields"): restricted_fields = c.get_non_filterable_fields() @@ -72,18 +72,18 @@ def get_filterable_fields(doctype: str): res = [] # append DocFields - DocField = frappe.qb.DocType("DocField") - doc_fields = get_doctype_fields_meta(DocField, doctype, allowed_fieldtypes, restricted_fields) - res.extend(doc_fields) + DocField = jingrow.qb.PageType("DocField") + pg_fields = get_pagetype_fields_meta(DocField, pagetype, allowed_fieldtypes, restricted_fields) + res.extend(pg_fields) # append Custom Fields - CustomField = frappe.qb.DocType("Custom Field") - custom_fields = get_doctype_fields_meta(CustomField, doctype, allowed_fieldtypes, restricted_fields) + CustomField = jingrow.qb.PageType("Custom Field") + custom_fields = get_pagetype_fields_meta(CustomField, pagetype, allowed_fieldtypes, restricted_fields) res.extend(custom_fields) - # append standard fields (getting error when using frappe.model.std_fields) + # append standard fields (getting error when using jingrow.model.std_fields) standard_fields = [ - {"fieldname": "name", "fieldtype": "Link", "label": "ID", "options": doctype}, + {"fieldname": "name", "fieldtype": "Link", "label": "ID", "options": pagetype}, {"fieldname": "owner", "fieldtype": "Link", "label": "Created By", "options": "User"}, { "fieldname": "modified_by", @@ -110,8 +110,8 @@ def get_filterable_fields(doctype: str): return res -@frappe.whitelist() -def get_group_by_fields(doctype: str): +@jingrow.whitelist() +def get_group_by_fields(pagetype: str): allowed_fieldtypes = [ "Check", "Data", @@ -126,7 +126,7 @@ def get_group_by_fields(doctype: str): "Datetime", ] - fields = frappe.get_meta(doctype).fields + fields = jingrow.get_meta(pagetype).fields fields = [ field for field in fields @@ -161,10 +161,10 @@ def get_group_by_fields(doctype: str): return fields -def get_doctype_fields_meta(DocField, doctype, allowed_fieldtypes, restricted_fields): +def get_pagetype_fields_meta(DocField, pagetype, allowed_fieldtypes, restricted_fields): parent = "parent" if DocField._table_name == "tabDocField" else "dt" return ( - frappe.qb.from_(DocField) + jingrow.qb.from_(DocField) .select( DocField.fieldname, DocField.fieldtype, @@ -172,7 +172,7 @@ def get_doctype_fields_meta(DocField, doctype, allowed_fieldtypes, restricted_fi DocField.name, DocField.options, ) - .where(DocField[parent] == doctype) + .where(DocField[parent] == pagetype) .where(DocField.hidden == False) # noqa: E712 .where(Criterion.any([DocField.fieldtype == i for i in allowed_fieldtypes])) .where(Criterion.all([DocField.fieldname != i for i in restricted_fields])) @@ -180,13 +180,13 @@ def get_doctype_fields_meta(DocField, doctype, allowed_fieldtypes, restricted_fi ) -@frappe.whitelist() -def get_quick_filters(doctype: str, cached: bool = True): - meta = frappe.get_meta(doctype, cached) +@jingrow.whitelist() +def get_quick_filters(pagetype: str, cached: bool = True): + meta = jingrow.get_meta(pagetype, cached) quick_filters = [] - if global_settings := frappe.db.exists("CRM Global Settings", {"dt": doctype, "type": "Quick Filters"}): - _quick_filters = frappe.db.get_value("CRM Global Settings", global_settings, "json") + if global_settings := jingrow.db.exists("CRM Global Settings", {"dt": pagetype, "type": "Quick Filters"}): + _quick_filters = jingrow.db.get_value("CRM Global Settings", global_settings, "json") _quick_filters = json.loads(_quick_filters) or [] fields = [] @@ -218,14 +218,14 @@ def get_quick_filters(doctype: str, cached: bool = True): } ) - if doctype == "CRM Lead": + if pagetype == "CRM Lead": quick_filters = [filter for filter in quick_filters if filter.get("fieldname") != "converted"] return quick_filters -@frappe.whitelist() -def update_quick_filters(quick_filters: str, old_filters: str, doctype: str): +@jingrow.whitelist() +def update_quick_filters(quick_filters: str, old_filters: str, pagetype: str): quick_filters = json.loads(quick_filters) old_filters = json.loads(old_filters) @@ -233,49 +233,49 @@ def update_quick_filters(quick_filters: str, old_filters: str, doctype: str): removed_filters = [filter for filter in old_filters if filter not in quick_filters] # update or create global quick filter settings - create_update_global_settings(doctype, quick_filters) + create_update_global_settings(pagetype, quick_filters) # remove old filters for filter in removed_filters: - update_in_standard_filter(filter, doctype, 0) + update_in_standard_filter(filter, pagetype, 0) # add new filters for filter in new_filters: - update_in_standard_filter(filter, doctype, 1) + update_in_standard_filter(filter, pagetype, 1) -def create_update_global_settings(doctype, quick_filters): - if global_settings := frappe.db.exists("CRM Global Settings", {"dt": doctype, "type": "Quick Filters"}): - frappe.db.set_value("CRM Global Settings", global_settings, "json", json.dumps(quick_filters)) +def create_update_global_settings(pagetype, quick_filters): + if global_settings := jingrow.db.exists("CRM Global Settings", {"dt": pagetype, "type": "Quick Filters"}): + jingrow.db.set_value("CRM Global Settings", global_settings, "json", json.dumps(quick_filters)) else: - # create CRM Global Settings doc - doc = frappe.new_doc("CRM Global Settings") - doc.dt = doctype - doc.type = "Quick Filters" - doc.json = json.dumps(quick_filters) - doc.insert() + # create CRM Global Settings pg + pg = jingrow.new_pg("CRM Global Settings") + pg.dt = pagetype + pg.type = "Quick Filters" + pg.json = json.dumps(quick_filters) + pg.insert() -def update_in_standard_filter(fieldname, doctype, value): - if property_name := frappe.db.exists( +def update_in_standard_filter(fieldname, pagetype, value): + if property_name := jingrow.db.exists( "Property Setter", - {"doc_type": doctype, "field_name": fieldname, "property": "in_standard_filter"}, + {"pg_type": pagetype, "field_name": fieldname, "property": "in_standard_filter"}, ): - frappe.db.set_value("Property Setter", property_name, "value", value) + jingrow.db.set_value("Property Setter", property_name, "value", value) else: make_property_setter( - doctype, + pagetype, fieldname, "in_standard_filter", value, "Check", - validate_fields_for_doctype=False, + validate_fields_for_pagetype=False, ) -@frappe.whitelist() +@jingrow.whitelist() def get_data( - doctype: str, + pagetype: str, filters: dict, order_by: str, page_length=20, @@ -290,11 +290,11 @@ def get_data( default_filters=None, ): custom_view = False - filters = frappe._dict(filters) - rows = frappe.parse_json(rows or "[]") - columns = frappe.parse_json(columns or "[]") - kanban_fields = frappe.parse_json(kanban_fields or "[]") - kanban_columns = frappe.parse_json(kanban_columns or "[]") + filters = jingrow._dict(filters) + rows = jingrow.parse_json(rows or "[]") + columns = jingrow.parse_json(columns or "[]") + kanban_fields = jingrow.parse_json(kanban_fields or "[]") + kanban_columns = jingrow.parse_json(kanban_columns or "[]") custom_view_name = view.get("custom_view_name") if view else None view_type = view.get("view_type") if view else None @@ -304,33 +304,33 @@ def get_data( value = filters[key] if isinstance(value, list): if "@me" in value: - value[value.index("@me")] = frappe.session.user + value[value.index("@me")] = jingrow.session.user elif "%@me%" in value: index = [i for i, v in enumerate(value) if v == "%@me%"] for i in index: - value[i] = "%" + frappe.session.user + "%" + value[i] = "%" + jingrow.session.user + "%" elif value == "@me": - filters[key] = frappe.session.user + filters[key] = jingrow.session.user if default_filters: - default_filters = frappe.parse_json(default_filters) + default_filters = jingrow.parse_json(default_filters) filters.update(default_filters) is_default = True data = [] - _list = get_controller(doctype) + _list = get_controller(pagetype) default_rows = [] if hasattr(_list, "default_list_data"): default_rows = _list.default_list_data().get("rows") - meta = frappe.get_meta(doctype) + meta = jingrow.get_meta(pagetype) if view_type != "kanban": if columns or rows: custom_view = True is_default = False - columns = frappe.parse_json(columns) - rows = frappe.parse_json(rows) + columns = jingrow.parse_json(columns) + rows = jingrow.parse_json(rows) if not columns: columns = [ @@ -342,16 +342,16 @@ def get_data( rows = ["name"] default_view_filters = { - "dt": doctype, + "dt": pagetype, "type": view_type or "list", "is_standard": 1, - "user": frappe.session.user, + "user": jingrow.session.user, } - if not custom_view and frappe.db.exists("CRM View Settings", default_view_filters): - list_view_settings = frappe.get_doc("CRM View Settings", default_view_filters) - columns = frappe.parse_json(list_view_settings.columns) - rows = frappe.parse_json(list_view_settings.rows) + if not custom_view and jingrow.db.exists("CRM View Settings", default_view_filters): + list_view_settings = jingrow.get_pg("CRM View Settings", default_view_filters) + columns = jingrow.parse_json(list_view_settings.columns) + rows = jingrow.parse_json(list_view_settings.rows) is_default = False elif not custom_view or (is_default and hasattr(_list, "default_list_data")): rows = default_rows @@ -376,8 +376,8 @@ def get_data( rows.append(group_by_field) data = ( - frappe.get_list( - doctype, + jingrow.get_list( + pagetype, fields=rows, filters=filters, order_by=order_by, @@ -385,16 +385,16 @@ def get_data( ) or [] ) - data = parse_list_data(data, doctype) + data = parse_list_data(data, pagetype) if view_type == "kanban": if not rows: rows = default_rows if not kanban_columns and column_field: - field_meta = frappe.get_meta(doctype).get_field(column_field) + field_meta = jingrow.get_meta(pagetype).get_field(column_field) if field_meta.fieldtype == "Link": - kanban_columns = frappe.get_all( + kanban_columns = jingrow.get_all( field_meta.options, fields=["name"], order_by="modified asc", @@ -433,13 +433,13 @@ def get_data( if order: column_data = get_records_based_on_order( - doctype, rows, column_filters, page_length, order + pagetype, rows, column_filters, page_length, order ) else: - column_data = frappe.get_list( - doctype, + column_data = jingrow.get_list( + pagetype, fields=rows, - filters=convert_filter_to_tuple(doctype, column_filters), + filters=convert_filter_to_tuple(pagetype, column_filters), order_by=order_by, page_length=page_length, ) @@ -447,9 +447,9 @@ def get_data( new_filters = filters.copy() new_filters.update({column_field: kc.get("name")}) - all_count = frappe.get_list( - doctype, - filters=convert_filter_to_tuple(doctype, new_filters), + all_count = jingrow.get_list( + pagetype, + filters=convert_filter_to_tuple(pagetype, new_filters), fields="count(*) as total_count", )[0].total_count @@ -457,7 +457,7 @@ def get_data( kc["count"] = len(column_data) for d in column_data: - getCounts(d, doctype) + getCounts(d, pagetype) if order: column_data = sorted( @@ -467,7 +467,7 @@ def get_data( data.append({"column": kc, "fields": kanban_fields, "data": column_data}) - fields = frappe.get_meta(doctype).fields + fields = jingrow.get_meta(pagetype).fields fields = [field for field in fields if field.fieldtype not in no_value_fields] fields = [ { @@ -503,7 +503,7 @@ def get_data( fields.append(field) if not is_default and custom_view_name: - is_default = frappe.db.get_value("CRM View Settings", custom_view_name, "load_default_columns") + is_default = jingrow.db.get_value("CRM View Settings", custom_view_name, "load_default_columns") if group_by_field and view_type == "group_by": @@ -552,40 +552,40 @@ def get_data( "page_length": page_length, "page_length_count": page_length_count, "is_default": is_default, - "views": get_views(doctype), - "total_count": frappe.get_list(doctype, filters=filters, fields="count(*) as total_count")[ + "views": get_views(pagetype), + "total_count": jingrow.get_list(pagetype, filters=filters, fields="count(*) as total_count")[ 0 ].total_count, "row_count": len(data), - "form_script": get_form_script(doctype), - "list_script": get_form_script(doctype, "List"), + "form_script": get_form_script(pagetype), + "list_script": get_form_script(pagetype, "List"), "view_type": view_type, } -def parse_list_data(data, doctype): - _list = get_controller(doctype) +def parse_list_data(data, pagetype): + _list = get_controller(pagetype) if hasattr(_list, "parse_list_data"): data = _list.parse_list_data(data) return data -def convert_filter_to_tuple(doctype, filters): +def convert_filter_to_tuple(pagetype, filters): if isinstance(filters, dict): filters_items = filters.items() filters = [] for key, value in filters_items: - filters.append(make_filter_tuple(doctype, key, value)) + filters.append(make_filter_tuple(pagetype, key, value)) return filters -def get_records_based_on_order(doctype, rows, filters, page_length, order): +def get_records_based_on_order(pagetype, rows, filters, page_length, order): records = [] - filters = convert_filter_to_tuple(doctype, filters) + filters = convert_filter_to_tuple(pagetype, filters) in_filters = filters.copy() - in_filters.append([doctype, "name", "in", order[:page_length]]) - records = frappe.get_list( - doctype, + in_filters.append([pagetype, "name", "in", order[:page_length]]) + records = jingrow.get_list( + pagetype, fields=rows, filters=in_filters, order_by="creation desc", @@ -594,9 +594,9 @@ def get_records_based_on_order(doctype, rows, filters, page_length, order): if len(records) < page_length: not_in_filters = filters.copy() - not_in_filters.append([doctype, "name", "not in", order]) - remaining_records = frappe.get_list( - doctype, + not_in_filters.append([pagetype, "name", "not in", order]) + remaining_records = jingrow.get_list( + pagetype, fields=rows, filters=not_in_filters, order_by="creation desc", @@ -608,8 +608,8 @@ def get_records_based_on_order(doctype, rows, filters, page_length, order): return records -@frappe.whitelist() -def get_fields_meta(doctype, restricted_fieldtypes=None, as_array=False, only_required=False): +@jingrow.whitelist() +def get_fields_meta(pagetype, restricted_fieldtypes=None, as_array=False, only_required=False): not_allowed_fieldtypes = [ "Tab Break", "Section Break", @@ -617,14 +617,14 @@ def get_fields_meta(doctype, restricted_fieldtypes=None, as_array=False, only_re ] if restricted_fieldtypes: - restricted_fieldtypes = frappe.parse_json(restricted_fieldtypes) + restricted_fieldtypes = jingrow.parse_json(restricted_fieldtypes) not_allowed_fieldtypes += restricted_fieldtypes - fields = frappe.get_meta(doctype).fields + fields = jingrow.get_meta(pagetype).fields fields = [field for field in fields if field.fieldtype not in not_allowed_fieldtypes] standard_fields = [ - {"fieldname": "name", "fieldtype": "Link", "label": "ID", "options": doctype}, + {"fieldname": "name", "fieldtype": "Link", "label": "ID", "options": pagetype}, {"fieldname": "owner", "fieldtype": "Link", "label": "Created By", "options": "User"}, { "fieldname": "modified_by", @@ -654,22 +654,22 @@ def get_fields_meta(doctype, restricted_fieldtypes=None, as_array=False, only_re for field in fields: fields_meta[field.get("fieldname")] = field if field.get("fieldtype") == "Table": - _fields = frappe.get_meta(field.get("options")).fields + _fields = jingrow.get_meta(field.get("options")).fields fields_meta[field.get("fieldname")] = {"df": field, "fields": _fields} return fields_meta -@frappe.whitelist() -def remove_assignments(doctype, name, assignees, ignore_permissions=False): - assignees = frappe.parse_json(assignees) +@jingrow.whitelist() +def remove_assignments(pagetype, name, assignees, ignore_permissions=False): + assignees = jingrow.parse_json(assignees) if not assignees: return for assign_to in assignees: set_status( - doctype, + pagetype, name, todo=None, assign_to=assign_to, @@ -678,13 +678,13 @@ def remove_assignments(doctype, name, assignees, ignore_permissions=False): ) -@frappe.whitelist() -def get_assigned_users(doctype, name, default_assigned_to=None): - assigned_users = frappe.get_all( +@jingrow.whitelist() +def get_assigned_users(pagetype, name, default_assigned_to=None): + assigned_users = jingrow.get_all( "ToDo", fields=["allocated_to"], filters={ - "reference_type": doctype, + "reference_type": pagetype, "reference_name": name, "status": ("!=", "Cancelled"), }, @@ -699,12 +699,12 @@ def get_assigned_users(doctype, name, default_assigned_to=None): return users -@frappe.whitelist() -def get_fields(doctype: str, allow_all_fieldtypes: bool = False): - not_allowed_fieldtypes = [*list(frappe.model.no_value_fields), "Read Only"] +@jingrow.whitelist() +def get_fields(pagetype: str, allow_all_fieldtypes: bool = False): + not_allowed_fieldtypes = [*list(jingrow.model.no_value_fields), "Read Only"] if allow_all_fieldtypes: not_allowed_fieldtypes = [] - fields = frappe.get_meta(doctype).fields + fields = jingrow.get_meta(pagetype).fields _fields = [] @@ -715,196 +715,196 @@ def get_fields(doctype: str, allow_all_fieldtypes: bool = False): return _fields -def getCounts(d, doctype): +def getCounts(d, pagetype): d["_email_count"] = ( - frappe.db.count( + jingrow.db.count( "Communication", filters={ - "reference_doctype": doctype, + "reference_pagetype": pagetype, "reference_name": d.get("name"), "communication_type": "Communication", }, ) or 0 ) - d["_email_count"] = d["_email_count"] + frappe.db.count( + d["_email_count"] = d["_email_count"] + jingrow.db.count( "Communication", filters={ - "reference_doctype": doctype, + "reference_pagetype": pagetype, "reference_name": d.get("name"), "communication_type": "Automated Message", }, ) - d["_comment_count"] = frappe.db.count( + d["_comment_count"] = jingrow.db.count( "Comment", - filters={"reference_doctype": doctype, "reference_name": d.get("name"), "comment_type": "Comment"}, + filters={"reference_pagetype": pagetype, "reference_name": d.get("name"), "comment_type": "Comment"}, ) - d["_task_count"] = frappe.db.count( - "CRM Task", filters={"reference_doctype": doctype, "reference_docname": d.get("name")} + d["_task_count"] = jingrow.db.count( + "CRM Task", filters={"reference_pagetype": pagetype, "reference_docname": d.get("name")} ) - d["_note_count"] = frappe.db.count( - "FCRM Note", filters={"reference_doctype": doctype, "reference_docname": d.get("name")} + d["_note_count"] = jingrow.db.count( + "FCRM Note", filters={"reference_pagetype": pagetype, "reference_docname": d.get("name")} ) return d -@frappe.whitelist() -def get_linked_docs_of_document(doctype, docname): +@jingrow.whitelist() +def get_linked_docs_of_document(pagetype, docname): try: - doc = frappe.get_doc(doctype, docname) - except frappe.DoesNotExistError: + pg = jingrow.get_pg(pagetype, docname) + except jingrow.DoesNotExistError: return [] - linked_docs = get_linked_docs(doc) - dynamic_linked_docs = get_dynamic_linked_docs(doc) + linked_docs = get_linked_docs(pg) + dynamic_linked_docs = get_dynamic_linked_docs(pg) linked_docs.extend(dynamic_linked_docs) - linked_docs = list({doc["reference_docname"]: doc for doc in linked_docs}.values()) + linked_docs = list({pg["reference_docname"]: pg for pg in linked_docs}.values()) docs_data = [] - for doc in linked_docs: - if not doc.get("reference_doctype") or not doc.get("reference_docname"): + for pg in linked_docs: + if not pg.get("reference_pagetype") or not pg.get("reference_docname"): continue try: - data = frappe.get_doc(doc["reference_doctype"], doc["reference_docname"]) - except (frappe.DoesNotExistError, frappe.ValidationError): + data = jingrow.get_pg(pg["reference_pagetype"], pg["reference_docname"]) + except (jingrow.DoesNotExistError, jingrow.ValidationError): continue title = data.get("title") - if data.doctype == "CRM Call Log": + if data.pagetype == "CRM Call Log": title = f"Call from {data.get('from')} to {data.get('to')}" - if data.doctype == "CRM Deal": + if data.pagetype == "CRM Deal": title = data.get("organization") - if data.doctype == "CRM Notification": + if data.pagetype == "CRM Notification": title = data.get("message") docs_data.append( { - "doc": data.doctype, + "pg": data.pagetype, "title": title or data.get("name"), - "reference_docname": doc["reference_docname"], - "reference_doctype": doc["reference_doctype"], + "reference_docname": pg["reference_docname"], + "reference_pagetype": pg["reference_pagetype"], } ) return docs_data -def remove_doc_link(doctype, docname): - if not doctype or not docname: +def remove_pg_link(pagetype, docname): + if not pagetype or not docname: return try: - linked_doc_data = frappe.get_doc(doctype, docname) - if doctype == "CRM Notification": + linked_pg_data = jingrow.get_pg(pagetype, docname) + if pagetype == "CRM Notification": delete_notification_type = { - "notification_type_doctype": "", - "notification_type_doc": "", + "notification_type_pagetype": "", + "notification_type_pg": "", } delete_references = { - "reference_doctype": "", + "reference_pagetype": "", "reference_name": "", } - if linked_doc_data.get("notification_type_doctype") == linked_doc_data.get("reference_doctype"): + if linked_pg_data.get("notification_type_pagetype") == linked_pg_data.get("reference_pagetype"): delete_references.update(delete_notification_type) - linked_doc_data.update(delete_references) + linked_pg_data.update(delete_references) else: - linked_doc_data.update( + linked_pg_data.update( { - "reference_doctype": "", + "reference_pagetype": "", "reference_docname": "", } ) - linked_doc_data.save(ignore_permissions=True) - except (frappe.DoesNotExistError, frappe.ValidationError): + linked_pg_data.save(ignore_permissions=True) + except (jingrow.DoesNotExistError, jingrow.ValidationError): pass -def remove_contact_link(doctype, docname): - if not doctype or not docname: +def remove_contact_link(pagetype, docname): + if not pagetype or not docname: return try: - linked_doc_data = frappe.get_doc(doctype, docname) - linked_doc_data.update( + linked_pg_data = jingrow.get_pg(pagetype, docname) + linked_pg_data.update( { "contact": None, "contacts": [], } ) - linked_doc_data.save(ignore_permissions=True) - except (frappe.DoesNotExistError, frappe.ValidationError): + linked_pg_data.save(ignore_permissions=True) + except (jingrow.DoesNotExistError, jingrow.ValidationError): pass -@frappe.whitelist() -def remove_linked_doc_reference(items, remove_contact=None, delete=False): +@jingrow.whitelist() +def remove_linked_pg_reference(items, remove_contact=None, delete=False): if isinstance(items, str): - items = frappe.parse_json(items) + items = jingrow.parse_json(items) for item in items: - if not item.get("doctype") or not item.get("docname"): + if not item.get("pagetype") or not item.get("docname"): continue try: if remove_contact: - remove_contact_link(item["doctype"], item["docname"]) + remove_contact_link(item["pagetype"], item["docname"]) else: - remove_doc_link(item["doctype"], item["docname"]) + remove_pg_link(item["pagetype"], item["docname"]) if delete: - frappe.delete_doc(item["doctype"], item["docname"]) - except (frappe.DoesNotExistError, frappe.ValidationError): + jingrow.delete_pg(item["pagetype"], item["docname"]) + except (jingrow.DoesNotExistError, jingrow.ValidationError): # Skip if document doesn't exist or has validation errors continue return "success" -@frappe.whitelist() -def delete_bulk_docs(doctype, items, delete_linked=False): - from frappe.desk.reportview import delete_bulk +@jingrow.whitelist() +def delete_bulk_docs(pagetype, items, delete_linked=False): + from jingrow.desk.reportview import delete_bulk - if not doctype: - frappe.throw("Doctype is required") + if not pagetype: + jingrow.throw("Pagetype is required") if not items: - frappe.throw("Items are required") + jingrow.throw("Items are required") - items = frappe.parse_json(items) + items = jingrow.parse_json(items) if not isinstance(items, list): - frappe.throw("Items must be a list") + jingrow.throw("Items must be a list") - for doc in items: + for pg in items: try: - if not frappe.db.exists(doctype, doc): - frappe.log_error(f"Document {doctype} {doc} does not exist", "Bulk Delete Error") + if not jingrow.db.exists(pagetype, pg): + jingrow.log_error(f"Document {pagetype} {pg} does not exist", "Bulk Delete Error") continue - linked_docs = get_linked_docs_of_document(doctype, doc) - for linked_doc in linked_docs: - if not linked_doc.get("reference_doctype") or not linked_doc.get("reference_docname"): + linked_docs = get_linked_docs_of_document(pagetype, pg) + for linked_pg in linked_docs: + if not linked_pg.get("reference_pagetype") or not linked_pg.get("reference_docname"): continue - remove_linked_doc_reference( + remove_linked_pg_reference( [ { - "doctype": linked_doc["reference_doctype"], - "docname": linked_doc["reference_docname"], + "pagetype": linked_pg["reference_pagetype"], + "docname": linked_pg["reference_docname"], } ], - remove_contact=doctype == "Contact", + remove_contact=pagetype == "Contact", delete=delete_linked, ) except Exception as e: - frappe.log_error( - f"Error processing linked docs for {doctype} {doc}: {str(e)}", "Bulk Delete Error" + jingrow.log_error( + f"Error processing linked docs for {pagetype} {pg}: {str(e)}", "Bulk Delete Error" ) if len(items) > 10: - frappe.enqueue("frappe.desk.reportview.delete_bulk", doctype=doctype, items=items) + jingrow.enqueue("jingrow.desk.reportview.delete_bulk", pagetype=pagetype, items=items) else: - delete_bulk(doctype, items) + delete_bulk(pagetype, items) return "success" diff --git a/crm/api/notifications.py b/crm/api/notifications.py index afe495db..88010986 100644 --- a/crm/api/notifications.py +++ b/crm/api/notifications.py @@ -1,14 +1,14 @@ -import frappe -from frappe.query_builder import Order +import jingrow +from jingrow.query_builder import Order -@frappe.whitelist() +@jingrow.whitelist() def get_notifications(): - Notification = frappe.qb.DocType("CRM Notification") + Notification = jingrow.qb.PageType("CRM Notification") query = ( - frappe.qb.from_(Notification) + jingrow.qb.from_(Notification) .select("*") - .where(Notification.to_user == frappe.session.user) + .where(Notification.to_user == jingrow.session.user) .orderby("creation", order=Order.desc) ) notifications = query.run(as_dict=True) @@ -20,7 +20,7 @@ def get_notifications(): "creation": notification.creation, "from_user": { "name": notification.from_user, - "full_name": frappe.get_value( + "full_name": jingrow.get_value( "User", notification.from_user, "full_name" ), }, @@ -29,14 +29,14 @@ def get_notifications(): "read": notification.read, "hash": get_hash(notification), "notification_text": notification.notification_text, - "notification_type_doctype": notification.notification_type_doctype, - "notification_type_doc": notification.notification_type_doc, - "reference_doctype": ( - "deal" if notification.reference_doctype == "CRM Deal" else "lead" + "notification_type_pagetype": notification.notification_type_pagetype, + "notification_type_pg": notification.notification_type_pg, + "reference_pagetype": ( + "deal" if notification.reference_pagetype == "CRM Deal" else "lead" ), "reference_name": notification.reference_name, "route_name": ( - "Deal" if notification.reference_doctype == "CRM Deal" else "Lead" + "Deal" if notification.reference_pagetype == "CRM Deal" else "Lead" ), } ) @@ -44,30 +44,30 @@ def get_notifications(): return _notifications -@frappe.whitelist() -def mark_as_read(user=None, doc=None): - user = user or frappe.session.user +@jingrow.whitelist() +def mark_as_read(user=None, pg=None): + user = user or jingrow.session.user filters = {"to_user": user, "read": False} or_filters = [] - if doc: + if pg: or_filters = [ - {"comment": doc}, - {"notification_type_doc": doc}, + {"comment": pg}, + {"notification_type_pg": pg}, ] - for n in frappe.get_all("CRM Notification", filters=filters, or_filters=or_filters): - d = frappe.get_doc("CRM Notification", n.name) + for n in jingrow.get_all("CRM Notification", filters=filters, or_filters=or_filters): + d = jingrow.get_pg("CRM Notification", n.name) d.read = True d.save() def get_hash(notification): _hash = "" - if notification.type == "Mention" and notification.notification_type_doc: - _hash = "#" + notification.notification_type_doc + if notification.type == "Mention" and notification.notification_type_pg: + _hash = "#" + notification.notification_type_pg if notification.type == "WhatsApp": _hash = "#whatsapp" - if notification.type == "Assignment" and notification.notification_type_doctype == "CRM Task": + if notification.type == "Assignment" and notification.notification_type_pagetype == "CRM Task": _hash = "#tasks" if "has been removed by" in notification.message: _hash = "" diff --git a/crm/api/onboarding.py b/crm/api/onboarding.py index 00d27b07..26d6330d 100644 --- a/crm/api/onboarding.py +++ b/crm/api/onboarding.py @@ -1,9 +1,9 @@ -import frappe +import jingrow -@frappe.whitelist() +@jingrow.whitelist() def get_first_lead(): - lead = frappe.get_all( + lead = jingrow.get_all( "CRM Lead", filters={"converted": 0}, fields=["name"], @@ -13,9 +13,9 @@ def get_first_lead(): return lead[0].name if lead else None -@frappe.whitelist() +@jingrow.whitelist() def get_first_deal(): - deal = frappe.get_all( + deal = jingrow.get_all( "CRM Deal", fields=["name"], order_by="creation", diff --git a/crm/api/session.py b/crm/api/session.py index b45ac43d..962fe30a 100644 --- a/crm/api/session.py +++ b/crm/api/session.py @@ -1,9 +1,9 @@ -import frappe +import jingrow -@frappe.whitelist() +@jingrow.whitelist() def get_users(): - users = frappe.qb.get_query( + users = jingrow.qb.get_query( "User", fields=[ "name", @@ -20,10 +20,10 @@ def get_users(): ).run(as_dict=1) for user in users: - if frappe.session.user == user.name: + if jingrow.session.user == user.name: user.session_user = True - user.roles = frappe.get_roles(user.name) + user.roles = jingrow.get_roles(user.name) user.role = "" @@ -36,10 +36,10 @@ def get_users(): elif "Guest" in user.roles: user.role = "Guest" - if frappe.session.user == user.name: + if jingrow.session.user == user.name: user.session_user = True - user.is_telephony_agent = frappe.db.exists("CRM Telephony Agent", {"user": user.name}) + user.is_telephony_agent = jingrow.db.exists("CRM Telephony Agent", {"user": user.name}) crm_users = [] @@ -51,9 +51,9 @@ def get_users(): return users, crm_users -@frappe.whitelist() +@jingrow.whitelist() def get_organizations(): - organizations = frappe.qb.get_query( + organizations = jingrow.qb.get_query( "CRM Organization", fields=["*"], order_by="name asc", diff --git a/crm/api/settings.py b/crm/api/settings.py index b4756371..c68fb1d6 100644 --- a/crm/api/settings.py +++ b/crm/api/settings.py @@ -1,7 +1,7 @@ -import frappe +import jingrow -@frappe.whitelist() +@jingrow.whitelist() def create_email_account(data): service = data.get("service") service_config = email_service_config.get(service) @@ -9,9 +9,9 @@ def create_email_account(data): return "Service not supported" try: - email_doc = frappe.get_doc( + email_pg = jingrow.get_pg( { - "doctype": "Email Account", + "pagetype": "Email Account", "email_id": data.get("email_id"), "email_account_name": data.get("email_account_name"), "service": service, @@ -29,25 +29,25 @@ def create_email_account(data): **service_config, } ) - if service == "Frappe Mail": - email_doc.api_key = data.get("api_key") - email_doc.api_secret = data.get("api_secret") - email_doc.frappe_mail_site = data.get("frappe_mail_site") - email_doc.append_to = "CRM Lead" + if service == "Jingrow Mail": + email_pg.api_key = data.get("api_key") + email_pg.api_secret = data.get("api_secret") + email_pg.jingrow_mail_site = data.get("jingrow_mail_site") + email_pg.append_to = "CRM Lead" else: - email_doc.append("imap_folder", {"append_to": "CRM Lead", "folder_name": "INBOX"}) - email_doc.password = data.get("password") + email_pg.append("imap_folder", {"append_to": "CRM Lead", "folder_name": "INBOX"}) + email_pg.password = data.get("password") # validate whether the credentials are correct - email_doc.get_incoming_server() + email_pg.get_incoming_server() # if correct credentials, save the email account - email_doc.save() + email_pg.save() except Exception as e: - frappe.throw(str(e)) + jingrow.throw(str(e)) email_service_config = { - "Frappe Mail": { + "Jingrow Mail": { "domain": None, "password": None, "awaiting_password": 0, diff --git a/crm/api/todo.py b/crm/api/todo.py index 685e756b..c9f6f32d 100644 --- a/crm/api/todo.py +++ b/crm/api/todo.py @@ -1,82 +1,82 @@ -import frappe -from frappe import _ +import jingrow +from jingrow import _ -from crm.fcrm.doctype.crm_notification.crm_notification import notify_user +from crm.fcrm.pagetype.crm_notification.crm_notification import notify_user -def after_insert(doc, method): - if doc.reference_type in ["CRM Lead", "CRM Deal"] and doc.reference_name and doc.allocated_to: - fieldname = "lead_owner" if doc.reference_type == "CRM Lead" else "deal_owner" - owner = frappe.db.get_value(doc.reference_type, doc.reference_name, fieldname) +def after_insert(pg, method): + if pg.reference_type in ["CRM Lead", "CRM Deal"] and pg.reference_name and pg.allocated_to: + fieldname = "lead_owner" if pg.reference_type == "CRM Lead" else "deal_owner" + owner = jingrow.db.get_value(pg.reference_type, pg.reference_name, fieldname) if not owner: - frappe.db.set_value( - doc.reference_type, doc.reference_name, fieldname, doc.allocated_to, update_modified=False + jingrow.db.set_value( + pg.reference_type, pg.reference_name, fieldname, pg.allocated_to, update_modified=False ) - if doc.reference_type in ["CRM Lead", "CRM Deal", "CRM Task"] and doc.reference_name and doc.allocated_to: - notify_assigned_user(doc) + if pg.reference_type in ["CRM Lead", "CRM Deal", "CRM Task"] and pg.reference_name and pg.allocated_to: + notify_assigned_user(pg) -def on_update(doc, method): +def on_update(pg, method): if ( - doc.has_value_changed("status") - and doc.status == "Cancelled" - and doc.reference_type in ["CRM Lead", "CRM Deal", "CRM Task"] - and doc.reference_name - and doc.allocated_to + pg.has_value_changed("status") + and pg.status == "Cancelled" + and pg.reference_type in ["CRM Lead", "CRM Deal", "CRM Task"] + and pg.reference_name + and pg.allocated_to ): - notify_assigned_user(doc, is_cancelled=True) + notify_assigned_user(pg, is_cancelled=True) -def notify_assigned_user(doc, is_cancelled=False): - _doc = frappe.get_doc(doc.reference_type, doc.reference_name) - owner = frappe.get_cached_value("User", frappe.session.user, "full_name") - notification_text = get_notification_text(owner, doc, _doc, is_cancelled) +def notify_assigned_user(pg, is_cancelled=False): + _pg = jingrow.get_pg(pg.reference_type, pg.reference_name) + owner = jingrow.get_cached_value("User", jingrow.session.user, "full_name") + notification_text = get_notification_text(owner, pg, _pg, is_cancelled) message = ( _("Your assignment on {0} {1} has been removed by {2}").format( - doc.reference_type, doc.reference_name, owner + pg.reference_type, pg.reference_name, owner ) if is_cancelled - else _("{0} assigned a {1} {2} to you").format(owner, doc.reference_type, doc.reference_name) + else _("{0} assigned a {1} {2} to you").format(owner, pg.reference_type, pg.reference_name) ) - redirect_to_doctype, redirect_to_name = get_redirect_to_doc(doc) + redirect_to_pagetype, redirect_to_name = get_redirect_to_pg(pg) notify_user( { - "owner": frappe.session.user, - "assigned_to": doc.allocated_to, + "owner": jingrow.session.user, + "assigned_to": pg.allocated_to, "notification_type": "Assignment", "message": message, "notification_text": notification_text, - "reference_doctype": doc.reference_type, - "reference_docname": doc.reference_name, - "redirect_to_doctype": redirect_to_doctype, + "reference_pagetype": pg.reference_type, + "reference_docname": pg.reference_name, + "redirect_to_pagetype": redirect_to_pagetype, "redirect_to_docname": redirect_to_name, } ) -def get_notification_text(owner, doc, reference_doc, is_cancelled=False): - name = doc.reference_name - doctype = doc.reference_type +def get_notification_text(owner, pg, reference_pg, is_cancelled=False): + name = pg.reference_name + pagetype = pg.reference_type - if doctype.startswith("CRM "): - doctype = doctype[4:].lower() + if pagetype.startswith("CRM "): + pagetype = pagetype[4:].lower() - if doctype in ["lead", "deal"]: + if pagetype in ["lead", "deal"]: name = ( - reference_doc.lead_name or name - if doctype == "lead" - else reference_doc.organization or reference_doc.lead_name or name + reference_pg.lead_name or name + if pagetype == "lead" + else reference_pg.organization or reference_pg.lead_name or name ) if is_cancelled: return f"""
{ _('Your assignment on {0} {1} has been removed by {2}').format( - doctype, + pagetype, f'{ name }', f'{ owner }' ) } @@ -87,18 +87,18 @@ def get_notification_text(owner, doc, reference_doc, is_cancelled=False):
{ owner } { _('assigned a {0} {1} to you').format( - doctype, + pagetype, f'{ name }' ) }
""" - if doctype == "task": + if pagetype == "task": if is_cancelled: return f"""
{ _('Your assignment on task {0} has been removed by {1}').format( - f'{ reference_doc.title }', + f'{ reference_pg.title }', f'{ owner }' ) }
@@ -107,15 +107,15 @@ def get_notification_text(owner, doc, reference_doc, is_cancelled=False):
{ owner } { _('assigned a new task {0} to you').format( - f'{ reference_doc.title }' + f'{ reference_pg.title }' ) }
""" -def get_redirect_to_doc(doc): - if doc.reference_type == "CRM Task": - reference_doc = frappe.get_doc(doc.reference_type, doc.reference_name) - return reference_doc.reference_doctype, reference_doc.reference_docname +def get_redirect_to_pg(pg): + if pg.reference_type == "CRM Task": + reference_pg = jingrow.get_pg(pg.reference_type, pg.reference_name) + return reference_pg.reference_pagetype, reference_pg.reference_docname - return doc.reference_type, doc.reference_name + return pg.reference_type, pg.reference_name diff --git a/crm/api/user.py b/crm/api/user.py index caae05f3..cfbcf4a4 100644 --- a/crm/api/user.py +++ b/crm/api/user.py @@ -1,20 +1,20 @@ -import frappe +import jingrow -@frappe.whitelist() +@jingrow.whitelist() def add_existing_users(users, role="Sales User"): """ Add existing users to the CRM by assigning them a role (Sales User or Sales Manager). :param users: List of user names to be added """ - frappe.only_for(["System Manager", "Sales Manager"]) - users = frappe.parse_json(users) + jingrow.only_for(["System Manager", "Sales Manager"]) + users = jingrow.parse_json(users) for user in users: add_user(user, role) -@frappe.whitelist() +@jingrow.whitelist() def update_user_role(user, new_role): """ Update the role of the user to Sales Manager, Sales User, or System Manager. @@ -22,28 +22,28 @@ def update_user_role(user, new_role): :param new_role: The new role to assign (Sales Manager or Sales User) """ - frappe.only_for(["System Manager", "Sales Manager"]) + jingrow.only_for(["System Manager", "Sales Manager"]) if new_role not in ["System Manager", "Sales Manager", "Sales User"]: - frappe.throw("Cannot assign this role") + jingrow.throw("Cannot assign this role") - user_doc = frappe.get_doc("User", user) + user_pg = jingrow.get_pg("User", user) if new_role == "System Manager": - user_doc.append_roles("System Manager", "Sales Manager", "Sales User") - user_doc.set("block_modules", []) + user_pg.append_roles("System Manager", "Sales Manager", "Sales User") + user_pg.set("block_modules", []) if new_role == "Sales Manager": - user_doc.append_roles("Sales Manager", "Sales User") - user_doc.remove_roles("System Manager") + user_pg.append_roles("Sales Manager", "Sales User") + user_pg.remove_roles("System Manager") if new_role == "Sales User": - user_doc.append_roles("Sales User") - user_doc.remove_roles("Sales Manager", "System Manager") - update_module_in_user(user_doc, "FCRM") + user_pg.append_roles("Sales User") + user_pg.remove_roles("Sales Manager", "System Manager") + update_module_in_user(user_pg, "FCRM") - user_doc.save(ignore_permissions=True) + user_pg.save(ignore_permissions=True) -@frappe.whitelist() +@jingrow.whitelist() def add_user(user, role): """ Add a user means adding role (Sales User or/and Sales Manager) to the user. @@ -53,28 +53,28 @@ def add_user(user, role): update_user_role(user, role) -@frappe.whitelist() +@jingrow.whitelist() def remove_user(user): """ Remove a user means removing Sales User & Sales Manager roles from the user. :param user: The name of the user to be removed """ - frappe.only_for(["System Manager", "Sales Manager"]) + jingrow.only_for(["System Manager", "Sales Manager"]) - user_doc = frappe.get_doc("User", user) - roles = [d.role for d in user_doc.roles] + user_pg = jingrow.get_pg("User", user) + roles = [d.role for d in user_pg.roles] if "Sales User" in roles: - user_doc.remove_roles("Sales User") + user_pg.remove_roles("Sales User") if "Sales Manager" in roles: - user_doc.remove_roles("Sales Manager") + user_pg.remove_roles("Sales Manager") - user_doc.save(ignore_permissions=True) - frappe.msgprint(f"User {user} has been removed from CRM roles.") + user_pg.save(ignore_permissions=True) + jingrow.msgprint(f"User {user} has been removed from CRM roles.") def update_module_in_user(user, module): - block_modules = frappe.get_all( + block_modules = jingrow.get_all( "Module Def", fields=["name as module"], filters={"name": ["!=", module]}, diff --git a/crm/api/views.py b/crm/api/views.py index 5313753e..3a2247f8 100644 --- a/crm/api/views.py +++ b/crm/api/views.py @@ -1,16 +1,16 @@ -import frappe +import jingrow from pypika import Criterion -@frappe.whitelist() -def get_views(doctype): - View = frappe.qb.DocType("CRM View Settings") +@jingrow.whitelist() +def get_views(pagetype): + View = jingrow.qb.PageType("CRM View Settings") query = ( - frappe.qb.from_(View) + jingrow.qb.from_(View) .select("*") - .where(Criterion.any([View.user == "", View.user == frappe.session.user])) + .where(Criterion.any([View.user == "", View.user == jingrow.session.user])) ) - if doctype: - query = query.where(View.dt == doctype) + if pagetype: + query = query.where(View.dt == pagetype) views = query.run(as_dict=True) return views diff --git a/crm/api/whatsapp.py b/crm/api/whatsapp.py index 7a7ef240..dd92e332 100644 --- a/crm/api/whatsapp.py +++ b/crm/api/whatsapp.py @@ -1,63 +1,63 @@ import json -import frappe -from frappe import _ +import jingrow +from jingrow import _ -from crm.api.doc import get_assigned_users -from crm.fcrm.doctype.crm_notification.crm_notification import notify_user +from crm.api.pg import get_assigned_users +from crm.fcrm.pagetype.crm_notification.crm_notification import notify_user -def validate(doc, method): - if doc.type == "Incoming" and doc.get("from"): - name, doctype = get_lead_or_deal_from_number(doc.get("from")) +def validate(pg, method): + if pg.type == "Incoming" and pg.get("from"): + name, pagetype = get_lead_or_deal_from_number(pg.get("from")) if name != None: - doc.reference_doctype = doctype - doc.reference_name = name + pg.reference_pagetype = pagetype + pg.reference_name = name - if doc.type == "Outgoing" and doc.get("to"): - name, doctype = get_lead_or_deal_from_number(doc.get("to")) + if pg.type == "Outgoing" and pg.get("to"): + name, pagetype = get_lead_or_deal_from_number(pg.get("to")) if name != None: - doc.reference_doctype = doctype - doc.reference_name = name + pg.reference_pagetype = pagetype + pg.reference_name = name -def on_update(doc, method): - frappe.publish_realtime( +def on_update(pg, method): + jingrow.publish_realtime( "whatsapp_message", { - "reference_doctype": doc.reference_doctype, - "reference_name": doc.reference_name, + "reference_pagetype": pg.reference_pagetype, + "reference_name": pg.reference_name, }, ) - notify_agent(doc) + notify_agent(pg) -def notify_agent(doc): - if doc.type == "Incoming": - doctype = doc.reference_doctype - if doctype and doctype.startswith("CRM "): - doctype = doctype[4:].lower() +def notify_agent(pg): + if pg.type == "Incoming": + pagetype = pg.reference_pagetype + if pagetype and pagetype.startswith("CRM "): + pagetype = pagetype[4:].lower() notification_text = f"""
{ _('You') } - { _('received a whatsapp message in {0}').format(doctype) } - { doc.reference_name } + { _('received a whatsapp message in {0}').format(pagetype) } + { pg.reference_name }
""" - assigned_users = get_assigned_users(doc.reference_doctype, doc.reference_name) + assigned_users = get_assigned_users(pg.reference_pagetype, pg.reference_name) for user in assigned_users: notify_user( { - "owner": doc.owner, + "owner": pg.owner, "assigned_to": user, "notification_type": "WhatsApp", - "message": doc.message, + "message": pg.message, "notification_text": notification_text, - "reference_doctype": "WhatsApp Message", - "reference_docname": doc.name, - "redirect_to_doctype": doc.reference_doctype, - "redirect_to_docname": doc.reference_name, + "reference_pagetype": "WhatsApp Message", + "reference_docname": pg.name, + "redirect_to_pagetype": pg.reference_pagetype, + "redirect_to_docname": pg.reference_name, } ) @@ -65,28 +65,28 @@ def notify_agent(doc): def get_lead_or_deal_from_number(number): """Get lead/deal from the given number.""" - def find_record(doctype, mobile_no, where=""): + def find_record(pagetype, mobile_no, where=""): mobile_no = parse_mobile_no(mobile_no) query = f""" SELECT name, mobile_no - FROM `tab{doctype}` + FROM `tab{pagetype}` WHERE CONCAT('+', REGEXP_REPLACE(mobile_no, '[^0-9]', '')) = {mobile_no} """ - data = frappe.db.sql(query + where, as_dict=True) + data = jingrow.db.sql(query + where, as_dict=True) return data[0].name if data else None - doctype = "CRM Deal" + pagetype = "CRM Deal" - doc = find_record(doctype, number) or None - if not doc: - doctype = "CRM Lead" - doc = find_record(doctype, number, "AND converted is not True") - if not doc: - doc = find_record(doctype, number) + pg = find_record(pagetype, number) or None + if not pg: + pagetype = "CRM Lead" + pg = find_record(pagetype, number, "AND converted is not True") + if not pg: + pg = find_record(pagetype, number) - return doc, doctype + return pg, pagetype def parse_mobile_no(mobile_no: str): @@ -97,37 +97,37 @@ def parse_mobile_no(mobile_no: str): return "".join([c for c in mobile_no if c.isdigit() or c == "+"]) -@frappe.whitelist() +@jingrow.whitelist() def is_whatsapp_enabled(): - if not frappe.db.exists("DocType", "WhatsApp Settings"): + if not jingrow.db.exists("PageType", "WhatsApp Settings"): return False - return frappe.get_cached_value("WhatsApp Settings", "WhatsApp Settings", "enabled") + return jingrow.get_cached_value("WhatsApp Settings", "WhatsApp Settings", "enabled") -@frappe.whitelist() +@jingrow.whitelist() def is_whatsapp_installed(): - if not frappe.db.exists("DocType", "WhatsApp Settings"): + if not jingrow.db.exists("PageType", "WhatsApp Settings"): return False return True -@frappe.whitelist() -def get_whatsapp_messages(reference_doctype, reference_name): +@jingrow.whitelist() +def get_whatsapp_messages(reference_pagetype, reference_name): # twilio integration app is not compatible with crm app # crm has its own twilio integration in built - if "twilio_integration" in frappe.get_installed_apps(): + if "twilio_integration" in jingrow.get_installed_apps(): return [] - if not frappe.db.exists("DocType", "WhatsApp Message"): + if not jingrow.db.exists("PageType", "WhatsApp Message"): return [] messages = [] - if reference_doctype == "CRM Deal": - lead = frappe.db.get_value(reference_doctype, reference_name, "lead") + if reference_pagetype == "CRM Deal": + lead = jingrow.db.get_value(reference_pagetype, reference_name, "lead") if lead: - messages = frappe.get_all( + messages = jingrow.get_all( "WhatsApp Message", filters={ - "reference_doctype": "CRM Lead", + "reference_pagetype": "CRM Lead", "reference_name": lead, }, fields=[ @@ -146,17 +146,17 @@ def get_whatsapp_messages(reference_doctype, reference_name): "creation", "message", "status", - "reference_doctype", + "reference_pagetype", "reference_name", "template_parameters", "template_header_parameters", ], ) - messages += frappe.get_all( + messages += jingrow.get_all( "WhatsApp Message", filters={ - "reference_doctype": reference_doctype, + "reference_pagetype": reference_pagetype, "reference_name": reference_name, }, fields=[ @@ -175,7 +175,7 @@ def get_whatsapp_messages(reference_doctype, reference_name): "creation", "message", "status", - "reference_doctype", + "reference_pagetype", "reference_name", "template_parameters", "template_header_parameters", @@ -188,7 +188,7 @@ def get_whatsapp_messages(reference_doctype, reference_name): # Iterate through template messages for template_message in template_messages: # Find the template that this message is using - template = frappe.get_doc("WhatsApp Templates", template_message["template"]) + template = jingrow.get_pg("WhatsApp Templates", template_message["template"]) # If the template is found, add the template details to the template message if template: @@ -249,9 +249,9 @@ def get_whatsapp_messages(reference_doctype, reference_name): return [message for message in messages if message["content_type"] != "reaction"] -@frappe.whitelist() +@jingrow.whitelist() def create_whatsapp_message( - reference_doctype, + reference_pagetype, reference_name, message, to, @@ -259,20 +259,20 @@ def create_whatsapp_message( reply_to, content_type="text", ): - doc = frappe.new_doc("WhatsApp Message") + pg = jingrow.new_pg("WhatsApp Message") if reply_to: - reply_doc = frappe.get_doc("WhatsApp Message", reply_to) - doc.update( + reply_pg = jingrow.get_pg("WhatsApp Message", reply_to) + pg.update( { "is_reply": True, - "reply_to_message_id": reply_doc.message_id, + "reply_to_message_id": reply_pg.message_id, } ) - doc.update( + pg.update( { - "reference_doctype": reference_doctype, + "reference_pagetype": reference_pagetype, "reference_name": reference_name, "message": message or attach, "to": to, @@ -280,16 +280,16 @@ def create_whatsapp_message( "content_type": content_type, } ) - doc.insert(ignore_permissions=True) - return doc.name + pg.insert(ignore_permissions=True) + return pg.name -@frappe.whitelist() -def send_whatsapp_template(reference_doctype, reference_name, template, to): - doc = frappe.new_doc("WhatsApp Message") - doc.update( +@jingrow.whitelist() +def send_whatsapp_template(reference_pagetype, reference_name, template, to): + pg = jingrow.new_pg("WhatsApp Message") + pg.update( { - "reference_doctype": reference_doctype, + "reference_pagetype": reference_pagetype, "reference_name": reference_name, "message_type": "Template", "message": "Template message", @@ -299,27 +299,27 @@ def send_whatsapp_template(reference_doctype, reference_name, template, to): "to": to, } ) - doc.insert(ignore_permissions=True) - return doc.name + pg.insert(ignore_permissions=True) + return pg.name -@frappe.whitelist() +@jingrow.whitelist() def react_on_whatsapp_message(emoji, reply_to_name): - reply_to_doc = frappe.get_doc("WhatsApp Message", reply_to_name) - to = reply_to_doc.type == "Incoming" and reply_to_doc.get("from") or reply_to_doc.to - doc = frappe.new_doc("WhatsApp Message") - doc.update( + reply_to_pg = jingrow.get_pg("WhatsApp Message", reply_to_name) + to = reply_to_pg.type == "Incoming" and reply_to_pg.get("from") or reply_to_pg.to + pg = jingrow.new_pg("WhatsApp Message") + pg.update( { - "reference_doctype": reply_to_doc.reference_doctype, - "reference_name": reply_to_doc.reference_name, + "reference_pagetype": reply_to_pg.reference_pagetype, + "reference_name": reply_to_pg.reference_name, "message": emoji, "to": to, - "reply_to_message_id": reply_to_doc.message_id, + "reply_to_message_id": reply_to_pg.message_id, "content_type": "reaction", } ) - doc.insert(ignore_permissions=True) - return doc.name + pg.insert(ignore_permissions=True) + return pg.name def parse_template_parameters(string, parameters): @@ -331,16 +331,16 @@ def parse_template_parameters(string, parameters): def get_from_name(message): - doc = frappe.get_doc(message["reference_doctype"], message["reference_name"]) + pg = jingrow.get_pg(message["reference_pagetype"], message["reference_name"]) from_name = "" - if message["reference_doctype"] == "CRM Deal": - if doc.get("contacts"): - for c in doc.get("contacts"): + if message["reference_pagetype"] == "CRM Deal": + if pg.get("contacts"): + for c in pg.get("contacts"): if c.is_primary: from_name = c.full_name or c.mobile_no break else: - from_name = doc.get("lead_name") + from_name = pg.get("lead_name") else: - from_name = " ".join(filter(None, [doc.get("first_name"), doc.get("last_name")])) + from_name = " ".join(filter(None, [pg.get("first_name"), pg.get("last_name")])) return from_name diff --git a/crm/fcrm/doctype/crm_call_log/crm_call_log.js b/crm/fcrm/doctype/crm_call_log/crm_call_log.js index 26ae8b1a..4d172ddc 100644 --- a/crm/fcrm/doctype/crm_call_log/crm_call_log.js +++ b/crm/fcrm/doctype/crm_call_log/crm_call_log.js @@ -1,7 +1,7 @@ // Copyright (c) 2023, JINGROW and contributors // For license information, please see license.txt -// frappe.ui.form.on("CRM Call Log", { +// jingrow.ui.form.on("CRM Call Log", { // refresh(frm) { // }, diff --git a/crm/fcrm/doctype/crm_call_log/crm_call_log.json b/crm/fcrm/doctype/crm_call_log/crm_call_log.json index cecd46c6..b4b8259c 100644 --- a/crm/fcrm/doctype/crm_call_log/crm_call_log.json +++ b/crm/fcrm/doctype/crm_call_log/crm_call_log.json @@ -5,7 +5,7 @@ "autoname": "field:id", "creation": "2023-08-28 00:23:36.229137", "default_view": "List", - "doctype": "DocType", + "pagetype": "PageType", "editable_grid": 1, "engine": "InnoDB", "field_order": [ @@ -17,7 +17,7 @@ "duration", "medium", "start_time", - "reference_doctype", + "reference_pagetype", "reference_docname", "column_break_ufnp", "to", @@ -105,14 +105,14 @@ "options": "FCRM Note" }, { - "depends_on": "eval:doc.type == 'Incoming'", + "depends_on": "eval:pg.type == 'Incoming'", "fieldname": "receiver", "fieldtype": "Link", "label": "Call Received By", "options": "User" }, { - "depends_on": "eval:doc.type == 'Outgoing'", + "depends_on": "eval:pg.type == 'Outgoing'", "fieldname": "caller", "fieldtype": "Link", "label": "Caller", @@ -120,16 +120,16 @@ }, { "default": "CRM Lead", - "fieldname": "reference_doctype", + "fieldname": "reference_pagetype", "fieldtype": "Link", "label": "Reference Document Type", - "options": "DocType" + "options": "PageType" }, { "fieldname": "reference_docname", "fieldtype": "Dynamic Link", "label": "Reference Name", - "options": "reference_doctype" + "options": "reference_pagetype" }, { "fieldname": "section_break_kebz", diff --git a/crm/fcrm/doctype/crm_call_log/crm_call_log.py b/crm/fcrm/doctype/crm_call_log/crm_call_log.py index d91b1949..e27bb3eb 100644 --- a/crm/fcrm/doctype/crm_call_log/crm_call_log.py +++ b/crm/fcrm/doctype/crm_call_log/crm_call_log.py @@ -1,8 +1,8 @@ # Copyright (c) 2023, JINGROW and contributors # For license information, please see license.txt -import frappe -from frappe.model.document import Document +import jingrow +from jingrow.model.document import Document from crm.integrations.api import get_contact_by_phone_number from crm.utils import seconds_to_duration @@ -74,7 +74,7 @@ class CRMCallLog(Document): "to", "note", "recording_url", - "reference_doctype", + "reference_pagetype", "reference_docname", "creation", ] @@ -83,16 +83,16 @@ class CRMCallLog(Document): def parse_list_data(calls): return [parse_call_log(call) for call in calls] if calls else [] - def has_link(self, doctype, name): + def has_link(self, pagetype, name): for link in self.links: - if link.link_doctype == doctype and link.link_name == name: + if link.link_pagetype == pagetype and link.link_name == name: return True - def link_with_reference_doc(self, reference_doctype, reference_name): - if self.has_link(reference_doctype, reference_name): + def link_with_reference_pg(self, reference_pagetype, reference_name): + if self.has_link(reference_pagetype, reference_name): return - self.append("links", {"link_doctype": reference_doctype, "link_name": reference_name}) + self.append("links", {"link_pagetype": reference_pagetype, "link_name": reference_name}) def parse_call_log(call): @@ -102,7 +102,7 @@ def parse_call_log(call): call["activity_type"] = "incoming_call" contact = get_contact_by_phone_number(call.get("from")) receiver = ( - frappe.db.get_values("User", call.get("receiver"), ["full_name", "user_image"])[0] + jingrow.db.get_values("User", call.get("receiver"), ["full_name", "user_image"])[0] if call.get("receiver") else [None, None] ) @@ -118,7 +118,7 @@ def parse_call_log(call): call["activity_type"] = "outgoing_call" contact = get_contact_by_phone_number(call.get("to")) caller = ( - frappe.db.get_values("User", call.get("caller"), ["full_name", "user_image"])[0] + jingrow.db.get_values("User", call.get("caller"), ["full_name", "user_image"])[0] if call.get("caller") else [None, None] ) @@ -134,9 +134,9 @@ def parse_call_log(call): return call -@frappe.whitelist() +@jingrow.whitelist() def get_call_log(name): - call = frappe.get_cached_doc( + call = jingrow.get_cached_pg( "CRM Call Log", name, fields=[ @@ -150,7 +150,7 @@ def get_call_log(name): "to", "note", "recording_url", - "reference_doctype", + "reference_pagetype", "reference_docname", "creation", ], @@ -162,26 +162,26 @@ def get_call_log(name): tasks = [] if call.get("note"): - note = frappe.get_cached_doc("FCRM Note", call.get("note")).as_dict() + note = jingrow.get_cached_pg("FCRM Note", call.get("note")).as_dict() notes.append(note) - if call.get("reference_doctype") and call.get("reference_docname"): - if call.get("reference_doctype") == "CRM Lead": + if call.get("reference_pagetype") and call.get("reference_docname"): + if call.get("reference_pagetype") == "CRM Lead": call["_lead"] = call.get("reference_docname") - elif call.get("reference_doctype") == "CRM Deal": + elif call.get("reference_pagetype") == "CRM Deal": call["_deal"] = call.get("reference_docname") if call.get("links"): for link in call.get("links"): - if link.get("link_doctype") == "CRM Task": - task = frappe.get_cached_doc("CRM Task", link.get("link_name")).as_dict() + if link.get("link_pagetype") == "CRM Task": + task = jingrow.get_cached_pg("CRM Task", link.get("link_name")).as_dict() tasks.append(task) - elif link.get("link_doctype") == "FCRM Note": - note = frappe.get_cached_doc("FCRM Note", link.get("link_name")).as_dict() + elif link.get("link_pagetype") == "FCRM Note": + note = jingrow.get_cached_pg("FCRM Note", link.get("link_name")).as_dict() notes.append(note) - elif link.get("link_doctype") == "CRM Lead": + elif link.get("link_pagetype") == "CRM Lead": call["_lead"] = link.get("link_name") - elif link.get("link_doctype") == "CRM Deal": + elif link.get("link_pagetype") == "CRM Deal": call["_deal"] = link.get("link_name") call["_tasks"] = tasks @@ -189,13 +189,13 @@ def get_call_log(name): return call -@frappe.whitelist() +@jingrow.whitelist() def create_lead_from_call_log(call_log, lead_details=None): - lead = frappe.new_doc("CRM Lead") - lead_details = frappe.parse_json(lead_details or "{}") + lead = jingrow.new_pg("CRM Lead") + lead_details = jingrow.parse_json(lead_details or "{}") if not lead_details.get("lead_owner"): - lead_details["lead_owner"] = frappe.session.user + lead_details["lead_owner"] = jingrow.session.user if not lead_details.get("mobile_no"): lead_details["mobile_no"] = call_log.get("from") or "" if not lead_details.get("first_name"): @@ -207,8 +207,8 @@ def create_lead_from_call_log(call_log, lead_details=None): lead.save(ignore_permissions=True) # link call log with lead - call_log = frappe.get_doc("CRM Call Log", call_log.get("name")) - call_log.link_with_reference_doc("CRM Lead", lead.name) + call_log = jingrow.get_pg("CRM Call Log", call_log.get("name")) + call_log.link_with_reference_pg("CRM Lead", lead.name) call_log.save(ignore_permissions=True) return lead.name diff --git a/crm/fcrm/doctype/crm_call_log/test_crm_call_log.py b/crm/fcrm/doctype/crm_call_log/test_crm_call_log.py index 56c3f1ab..07050371 100644 --- a/crm/fcrm/doctype/crm_call_log/test_crm_call_log.py +++ b/crm/fcrm/doctype/crm_call_log/test_crm_call_log.py @@ -1,8 +1,8 @@ # Copyright (c) 2023, JINGROW and Contributors # See license.txt -# import frappe -from frappe.tests import UnitTestCase +# import jingrow +from jingrow.tests import UnitTestCase class TestCRMCallLog(UnitTestCase): diff --git a/crm/fcrm/doctype/crm_communication_status/crm_communication_status.js b/crm/fcrm/doctype/crm_communication_status/crm_communication_status.js index 89dec583..50e40b6b 100644 --- a/crm/fcrm/doctype/crm_communication_status/crm_communication_status.js +++ b/crm/fcrm/doctype/crm_communication_status/crm_communication_status.js @@ -1,7 +1,7 @@ // Copyright (c) 2023, JINGROW and contributors // For license information, please see license.txt -// frappe.ui.form.on("CRM Communication Status", { +// jingrow.ui.form.on("CRM Communication Status", { // refresh(frm) { // }, diff --git a/crm/fcrm/doctype/crm_communication_status/crm_communication_status.json b/crm/fcrm/doctype/crm_communication_status/crm_communication_status.json index ff3163e9..a3a668b1 100644 --- a/crm/fcrm/doctype/crm_communication_status/crm_communication_status.json +++ b/crm/fcrm/doctype/crm_communication_status/crm_communication_status.json @@ -3,7 +3,7 @@ "allow_rename": 1, "autoname": "field:status", "creation": "2023-12-13 13:25:07.213100", - "doctype": "DocType", + "pagetype": "PageType", "engine": "InnoDB", "field_order": [ "status" diff --git a/crm/fcrm/doctype/crm_communication_status/crm_communication_status.py b/crm/fcrm/doctype/crm_communication_status/crm_communication_status.py index d7588986..71f346b1 100644 --- a/crm/fcrm/doctype/crm_communication_status/crm_communication_status.py +++ b/crm/fcrm/doctype/crm_communication_status/crm_communication_status.py @@ -1,8 +1,8 @@ # Copyright (c) 2023, JINGROW and contributors # For license information, please see license.txt -# import frappe -from frappe.model.document import Document +# import jingrow +from jingrow.model.document import Document class CRMCommunicationStatus(Document): diff --git a/crm/fcrm/doctype/crm_communication_status/test_crm_communication_status.py b/crm/fcrm/doctype/crm_communication_status/test_crm_communication_status.py index 911b1921..21df486d 100644 --- a/crm/fcrm/doctype/crm_communication_status/test_crm_communication_status.py +++ b/crm/fcrm/doctype/crm_communication_status/test_crm_communication_status.py @@ -1,8 +1,8 @@ # Copyright (c) 2023, JINGROW and Contributors # See license.txt -# import frappe -from frappe.tests import UnitTestCase +# import jingrow +from jingrow.tests import UnitTestCase class TestCRMCommunicationStatus(UnitTestCase): diff --git a/crm/fcrm/doctype/crm_contacts/crm_contacts.json b/crm/fcrm/doctype/crm_contacts/crm_contacts.json index 5bca79f9..294844db 100644 --- a/crm/fcrm/doctype/crm_contacts/crm_contacts.json +++ b/crm/fcrm/doctype/crm_contacts/crm_contacts.json @@ -2,7 +2,7 @@ "actions": [], "allow_rename": 1, "creation": "2023-08-25 19:08:36.356133", - "doctype": "DocType", + "pagetype": "PageType", "editable_grid": 1, "engine": "InnoDB", "field_order": [ diff --git a/crm/fcrm/doctype/crm_contacts/crm_contacts.py b/crm/fcrm/doctype/crm_contacts/crm_contacts.py index 662d9048..b42cfcd4 100644 --- a/crm/fcrm/doctype/crm_contacts/crm_contacts.py +++ b/crm/fcrm/doctype/crm_contacts/crm_contacts.py @@ -1,8 +1,8 @@ # Copyright (c) 2023, JINGROW and contributors # For license information, please see license.txt -# import frappe -from frappe.model.document import Document +# import jingrow +from jingrow.model.document import Document class CRMContacts(Document): diff --git a/crm/fcrm/doctype/crm_dashboard/crm_dashboard.js b/crm/fcrm/doctype/crm_dashboard/crm_dashboard.js index 79d427a8..3279c0a4 100644 --- a/crm/fcrm/doctype/crm_dashboard/crm_dashboard.js +++ b/crm/fcrm/doctype/crm_dashboard/crm_dashboard.js @@ -1,7 +1,7 @@ // Copyright (c) 2025, JINGROW and contributors // For license information, please see license.txt -// frappe.ui.form.on("CRM Dashboard", { +// jingrow.ui.form.on("CRM Dashboard", { // refresh(frm) { // }, diff --git a/crm/fcrm/doctype/crm_dashboard/crm_dashboard.json b/crm/fcrm/doctype/crm_dashboard/crm_dashboard.json index 11dcdec4..edb9d58a 100644 --- a/crm/fcrm/doctype/crm_dashboard/crm_dashboard.json +++ b/crm/fcrm/doctype/crm_dashboard/crm_dashboard.json @@ -3,7 +3,7 @@ "allow_rename": 1, "autoname": "field:title", "creation": "2025-07-14 12:19:49.725022", - "doctype": "DocType", + "pagetype": "PageType", "engine": "InnoDB", "field_order": [ "title", diff --git a/crm/fcrm/doctype/crm_dashboard/crm_dashboard.py b/crm/fcrm/doctype/crm_dashboard/crm_dashboard.py index e94be9d3..1f900143 100644 --- a/crm/fcrm/doctype/crm_dashboard/crm_dashboard.py +++ b/crm/fcrm/doctype/crm_dashboard/crm_dashboard.py @@ -1,9 +1,9 @@ # Copyright (c) 2025, JINGROW and contributors # For license information, please see license.txt -import frappe -from frappe import _ -from frappe.model.document import Document +import jingrow +from jingrow import _ +from jingrow.model.document import Document class CRMDashboard(Document): @@ -21,14 +21,14 @@ def create_default_manager_dashboard(force=False): """ Creates the default CRM Manager Dashboard if it does not exist. """ - if not frappe.db.exists("CRM Dashboard", "Manager Dashboard"): - doc = frappe.new_doc("CRM Dashboard") - doc.title = "Manager Dashboard" - doc.layout = default_manager_dashboard_layout() - doc.insert(ignore_permissions=True) + if not jingrow.db.exists("CRM Dashboard", "Manager Dashboard"): + pg = jingrow.new_pg("CRM Dashboard") + pg.title = "Manager Dashboard" + pg.layout = default_manager_dashboard_layout() + pg.insert(ignore_permissions=True) else: - doc = frappe.get_doc("CRM Dashboard", "Manager Dashboard") + pg = jingrow.get_pg("CRM Dashboard", "Manager Dashboard") if force: - doc.layout = default_manager_dashboard_layout() - doc.save(ignore_permissions=True) - return doc.layout + pg.layout = default_manager_dashboard_layout() + pg.save(ignore_permissions=True) + return pg.layout diff --git a/crm/fcrm/doctype/crm_dashboard/test_crm_dashboard.py b/crm/fcrm/doctype/crm_dashboard/test_crm_dashboard.py index d51c6f6d..58c94c52 100644 --- a/crm/fcrm/doctype/crm_dashboard/test_crm_dashboard.py +++ b/crm/fcrm/doctype/crm_dashboard/test_crm_dashboard.py @@ -1,11 +1,11 @@ # Copyright (c) 2025, JINGROW and Contributors # See license.txt -# import frappe -from frappe.tests import IntegrationTestCase, UnitTestCase +# import jingrow +from jingrow.tests import IntegrationTestCase, UnitTestCase -# On IntegrationTestCase, the doctype test records and all +# On IntegrationTestCase, the pagetype test records and all # link-field test record dependencies are recursively loaded # Use these module variables to add/remove to/from that list EXTRA_TEST_RECORD_DEPENDENCIES = [] # eg. ["User"] diff --git a/crm/fcrm/doctype/crm_deal/api.py b/crm/fcrm/doctype/crm_deal/api.py index 881e2e69..1fc4a9a4 100644 --- a/crm/fcrm/doctype/crm_deal/api.py +++ b/crm/fcrm/doctype/crm_deal/api.py @@ -1,9 +1,9 @@ -import frappe +import jingrow -@frappe.whitelist() +@jingrow.whitelist() def get_deal_contacts(name): - contacts = frappe.get_all( + contacts = jingrow.get_all( "CRM Contacts", filters={"parenttype": "CRM Deal", "parent": name}, fields=["contact", "is_primary"], @@ -15,7 +15,7 @@ def get_deal_contacts(name): continue is_primary = contact.is_primary - contact = frappe.get_doc("Contact", contact.contact).as_dict() + contact = jingrow.get_pg("Contact", contact.contact).as_dict() _contact = { "name": contact.name, diff --git a/crm/fcrm/doctype/crm_deal/crm_deal.js b/crm/fcrm/doctype/crm_deal/crm_deal.js index 47bf4ca1..7a142ebb 100644 --- a/crm/fcrm/doctype/crm_deal/crm_deal.js +++ b/crm/fcrm/doctype/crm_deal/crm_deal.js @@ -1,23 +1,23 @@ // Copyright (c) 2023, JINGROW and contributors // For license information, please see license.txt -frappe.ui.form.on("CRM Deal", { +jingrow.ui.form.on("CRM Deal", { refresh(frm) { - frm.add_web_link(`/crm/deals/${frm.doc.name}`, __("Open in Portal")); + frm.add_web_link(`/crm/deals/${frm.pg.name}`, __("Open in Portal")); }, update_total: function (frm) { let total = 0; let total_qty = 0; let net_total = 0; - frm.doc.products.forEach((d) => { + frm.pg.products.forEach((d) => { total += d.amount; total_qty += d.qty; net_total += d.net_amount; }); - frappe.model.set_value(frm.doctype, frm.docname, "total", total); - frappe.model.set_value( - frm.doctype, + jingrow.model.set_value(frm.pagetype, frm.docname, "total", total); + jingrow.model.set_value( + frm.pagetype, frm.docname, "net_total", net_total || total @@ -25,7 +25,7 @@ frappe.ui.form.on("CRM Deal", { } }); -frappe.ui.form.on("CRM Products", { +jingrow.ui.form.on("CRM Products", { products_add: function (frm, cdt, cdn) { frm.trigger("update_total"); }, @@ -33,34 +33,34 @@ frappe.ui.form.on("CRM Products", { frm.trigger("update_total"); }, product_code: function (frm, cdt, cdn) { - let d = frappe.get_doc(cdt, cdn); - frappe.model.set_value(cdt, cdn, "product_name", d.product_code); + let d = jingrow.get_pg(cdt, cdn); + jingrow.model.set_value(cdt, cdn, "product_name", d.product_code); }, rate: function (frm, cdt, cdn) { - let d = frappe.get_doc(cdt, cdn); + let d = jingrow.get_pg(cdt, cdn); if (d.rate && d.qty) { - frappe.model.set_value(cdt, cdn, "amount", d.rate * d.qty); + jingrow.model.set_value(cdt, cdn, "amount", d.rate * d.qty); } frm.trigger("update_total"); }, qty: function (frm, cdt, cdn) { - let d = frappe.get_doc(cdt, cdn); + let d = jingrow.get_pg(cdt, cdn); if (d.rate && d.qty) { - frappe.model.set_value(cdt, cdn, "amount", d.rate * d.qty); + jingrow.model.set_value(cdt, cdn, "amount", d.rate * d.qty); } frm.trigger("update_total"); }, discount_percentage: function (frm, cdt, cdn) { - let d = frappe.get_doc(cdt, cdn); + let d = jingrow.get_pg(cdt, cdn); if (d.discount_percentage && d.amount) { discount_amount = (d.discount_percentage / 100) * d.amount; - frappe.model.set_value( + jingrow.model.set_value( cdt, cdn, "discount_amount", discount_amount ); - frappe.model.set_value( + jingrow.model.set_value( cdt, cdn, "net_amount", diff --git a/crm/fcrm/doctype/crm_deal/crm_deal.json b/crm/fcrm/doctype/crm_deal/crm_deal.json index 1adc9b79..587fbb4b 100644 --- a/crm/fcrm/doctype/crm_deal/crm_deal.json +++ b/crm/fcrm/doctype/crm_deal/crm_deal.json @@ -4,7 +4,7 @@ "allow_rename": 1, "autoname": "naming_series:", "creation": "2023-11-06 17:56:25.210449", - "doctype": "DocType", + "pagetype": "PageType", "engine": "InnoDB", "field_order": [ "organization_tab", @@ -396,14 +396,14 @@ "fieldname": "lost_reason", "fieldtype": "Link", "label": "Lost Reason", - "mandatory_depends_on": "eval: doc.status == \"Lost\"", + "mandatory_depends_on": "eval: pg.status == \"Lost\"", "options": "CRM Lost Reason" }, { "fieldname": "lost_notes", "fieldtype": "Text", "label": "Lost Notes", - "mandatory_depends_on": "eval: doc.lost_reason == \"Other\"" + "mandatory_depends_on": "eval: pg.lost_reason == \"Other\"" }, { "default": "1", diff --git a/crm/fcrm/doctype/crm_deal/crm_deal.py b/crm/fcrm/doctype/crm_deal/crm_deal.py index 788c6fc1..e35fba12 100644 --- a/crm/fcrm/doctype/crm_deal/crm_deal.py +++ b/crm/fcrm/doctype/crm_deal/crm_deal.py @@ -1,14 +1,14 @@ # Copyright (c) 2023, JINGROW and contributors # For license information, please see license.txt -import frappe -from frappe import _ -from frappe.desk.form.assign_to import add as assign -from frappe.model.document import Document +import jingrow +from jingrow import _ +from jingrow.desk.form.assign_to import add as assign +from jingrow.model.document import Document -from crm.fcrm.doctype.crm_service_level_agreement.utils import get_sla -from crm.fcrm.doctype.crm_status_change_log.crm_status_change_log import add_status_change_log -from crm.fcrm.doctype.fcrm_settings.fcrm_settings import get_exchange_rate +from crm.fcrm.pagetype.crm_service_level_agreement.utils import get_sla +from crm.fcrm.pagetype.crm_status_change_log.crm_status_change_log import add_status_change_log +from crm.fcrm.pagetype.fcrm_settings.fcrm_settings import get_exchange_rate class CRMDeal(Document): @@ -23,8 +23,8 @@ class CRMDeal(Document): self.assign_agent(self.deal_owner) if self.has_value_changed("status"): add_status_change_log(self) - if frappe.db.get_value("CRM Deal Status", self.status, "type") == "Won": - self.closed_date = frappe.utils.nowdate() + if jingrow.db.get_value("CRM Deal Status", self.status, "type") == "Won": + self.closed_date = jingrow.utils.nowdate() self.validate_forecasting_fields() self.validate_lost_reason() self.update_exchange_rate() @@ -57,7 +57,7 @@ class CRMDeal(Document): return if len([contact for contact in self.contacts if contact.is_primary]) > 1: - frappe.throw(_("Only one {0} can be set as primary.").format(frappe.bold("Contact"))) + jingrow.throw(_("Only one {0} can be set as primary.").format(jingrow.bold("Contact"))) primary_contact_exists = False for d in self.contacts: @@ -84,34 +84,34 @@ class CRMDeal(Document): # the agent is already set as an assignee return - assign({"assign_to": [agent], "doctype": "CRM Deal", "name": self.name}, ignore_permissions=True) + assign({"assign_to": [agent], "pagetype": "CRM Deal", "name": self.name}, ignore_permissions=True) def share_with_agent(self, agent): if not agent: return - docshares = frappe.get_all( + docshares = jingrow.get_all( "DocShare", - filters={"share_name": self.name, "share_doctype": self.doctype}, + filters={"share_name": self.name, "share_pagetype": self.pagetype}, fields=["name", "user"], ) shared_with = [d.user for d in docshares] + [agent] for user in shared_with: - if user == agent and not frappe.db.exists( + if user == agent and not jingrow.db.exists( "DocShare", - {"user": agent, "share_name": self.name, "share_doctype": self.doctype}, + {"user": agent, "share_name": self.name, "share_pagetype": self.pagetype}, ): - frappe.share.add_docshare( - self.doctype, + jingrow.share.add_docshare( + self.pagetype, self.name, agent, write=1, flags={"ignore_share_permission": True}, ) elif user != agent: - frappe.share.remove(self.doctype, self.name, user) + jingrow.share.remove(self.pagetype, self.name, user) def set_sla(self): """ @@ -133,7 +133,7 @@ class CRMDeal(Document): """ if not self.sla: return - sla = frappe.get_last_doc("CRM Service Level Agreement", {"name": self.sla}) + sla = jingrow.get_last_pg("CRM Service Level Agreement", {"name": self.sla}) if sla: sla.apply(self) @@ -142,21 +142,21 @@ class CRMDeal(Document): Update the closed date based on the "Won" status. """ if self.status == "Won" and not self.closed_date: - self.closed_date = frappe.utils.nowdate() + self.closed_date = jingrow.utils.nowdate() def update_default_probability(self): """ Update the default probability based on the status. """ if not self.probability or self.probability == 0: - self.probability = frappe.db.get_value("CRM Deal Status", self.status, "probability") or 0 + self.probability = jingrow.db.get_value("CRM Deal Status", self.status, "probability") or 0 def update_expected_deal_value(self): """ Update the expected deal value based on the net total or total. """ if ( - frappe.db.get_single_value("FCRM Settings", "auto_update_expected_deal_value") + jingrow.db.get_single_value("FCRM Settings", "auto_update_expected_deal_value") and (self.net_total or self.total) and self.expected_deal_value ): @@ -166,25 +166,25 @@ class CRMDeal(Document): self.update_closed_date() self.update_default_probability() self.update_expected_deal_value() - if frappe.db.get_single_value("FCRM Settings", "enable_forecasting"): + if jingrow.db.get_single_value("FCRM Settings", "enable_forecasting"): if not self.expected_deal_value or self.expected_deal_value == 0: - frappe.throw(_("Expected Deal Value is required."), frappe.MandatoryError) + jingrow.throw(_("Expected Deal Value is required."), jingrow.MandatoryError) if not self.expected_closure_date: - frappe.throw(_("Expected Closure Date is required."), frappe.MandatoryError) + jingrow.throw(_("Expected Closure Date is required."), jingrow.MandatoryError) def validate_lost_reason(self): """ Validate the lost reason if the status is set to "Lost". """ - if self.status and frappe.get_cached_value("CRM Deal Status", self.status, "type") == "Lost": + if self.status and jingrow.get_cached_value("CRM Deal Status", self.status, "type") == "Lost": if not self.lost_reason: - frappe.throw(_("Please specify a reason for losing the deal."), frappe.ValidationError) + jingrow.throw(_("Please specify a reason for losing the deal."), jingrow.ValidationError) elif self.lost_reason == "Other" and not self.lost_notes: - frappe.throw(_("Please specify the reason for losing the deal."), frappe.ValidationError) + jingrow.throw(_("Please specify the reason for losing the deal."), jingrow.ValidationError) def update_exchange_rate(self): if self.has_value_changed("currency") or not self.exchange_rate: - system_currency = frappe.db.get_single_value("FCRM Settings", "currency") or "USD" + system_currency = jingrow.db.get_single_value("FCRM Settings", "currency") or "USD" exchange_rate = 1 if self.currency and self.currency != system_currency: exchange_rate = get_exchange_rate(self.currency, system_currency) @@ -266,96 +266,96 @@ class CRMDeal(Document): } -@frappe.whitelist() +@jingrow.whitelist() def add_contact(deal, contact): - if not frappe.has_permission("CRM Deal", "write", deal): - frappe.throw(_("Not allowed to add contact to Deal"), frappe.PermissionError) + if not jingrow.has_permission("CRM Deal", "write", deal): + jingrow.throw(_("Not allowed to add contact to Deal"), jingrow.PermissionError) - deal = frappe.get_cached_doc("CRM Deal", deal) + deal = jingrow.get_cached_pg("CRM Deal", deal) deal.append("contacts", {"contact": contact}) deal.save() return True -@frappe.whitelist() +@jingrow.whitelist() def remove_contact(deal, contact): - if not frappe.has_permission("CRM Deal", "write", deal): - frappe.throw(_("Not allowed to remove contact from Deal"), frappe.PermissionError) + if not jingrow.has_permission("CRM Deal", "write", deal): + jingrow.throw(_("Not allowed to remove contact from Deal"), jingrow.PermissionError) - deal = frappe.get_cached_doc("CRM Deal", deal) + deal = jingrow.get_cached_pg("CRM Deal", deal) deal.contacts = [d for d in deal.contacts if d.contact != contact] deal.save() return True -@frappe.whitelist() +@jingrow.whitelist() def set_primary_contact(deal, contact): - if not frappe.has_permission("CRM Deal", "write", deal): - frappe.throw(_("Not allowed to set primary contact for Deal"), frappe.PermissionError) + if not jingrow.has_permission("CRM Deal", "write", deal): + jingrow.throw(_("Not allowed to set primary contact for Deal"), jingrow.PermissionError) - deal = frappe.get_cached_doc("CRM Deal", deal) + deal = jingrow.get_cached_pg("CRM Deal", deal) deal.set_primary_contact(contact) deal.save() return True -def create_organization(doc): - if not doc.get("organization_name"): +def create_organization(pg): + if not pg.get("organization_name"): return - existing_organization = frappe.db.exists( - "CRM Organization", {"organization_name": doc.get("organization_name")} + existing_organization = jingrow.db.exists( + "CRM Organization", {"organization_name": pg.get("organization_name")} ) if existing_organization: return existing_organization - organization = frappe.new_doc("CRM Organization") + organization = jingrow.new_pg("CRM Organization") organization.update( { - "organization_name": doc.get("organization_name"), - "website": doc.get("website"), - "territory": doc.get("territory"), - "industry": doc.get("industry"), - "annual_revenue": doc.get("annual_revenue"), + "organization_name": pg.get("organization_name"), + "website": pg.get("website"), + "territory": pg.get("territory"), + "industry": pg.get("industry"), + "annual_revenue": pg.get("annual_revenue"), } ) organization.insert(ignore_permissions=True) return organization.name -def contact_exists(doc): - email_exist = frappe.db.exists("Contact Email", {"email_id": doc.get("email")}) - mobile_exist = frappe.db.exists("Contact Phone", {"phone": doc.get("mobile_no")}) +def contact_exists(pg): + email_exist = jingrow.db.exists("Contact Email", {"email_id": pg.get("email")}) + mobile_exist = jingrow.db.exists("Contact Phone", {"phone": pg.get("mobile_no")}) - doctype = "Contact Email" if email_exist else "Contact Phone" + pagetype = "Contact Email" if email_exist else "Contact Phone" name = email_exist or mobile_exist if name: - return frappe.db.get_value(doctype, name, "parent") + return jingrow.db.get_value(pagetype, name, "parent") return False -def create_contact(doc): - existing_contact = contact_exists(doc) +def create_contact(pg): + existing_contact = contact_exists(pg) if existing_contact: return existing_contact - contact = frappe.new_doc("Contact") + contact = jingrow.new_pg("Contact") contact.update( { - "first_name": doc.get("first_name"), - "last_name": doc.get("last_name"), - "salutation": doc.get("salutation"), - "company_name": doc.get("organization") or doc.get("organization_name"), + "first_name": pg.get("first_name"), + "last_name": pg.get("last_name"), + "salutation": pg.get("salutation"), + "company_name": pg.get("organization") or pg.get("organization_name"), } ) - if doc.get("email"): - contact.append("email_ids", {"email_id": doc.get("email"), "is_primary": 1}) + if pg.get("email"): + contact.append("email_ids", {"email_id": pg.get("email"), "is_primary": 1}) - if doc.get("mobile_no"): - contact.append("phone_nos", {"phone": doc.get("mobile_no"), "is_primary_mobile_no": 1}) + if pg.get("mobile_no"): + contact.append("phone_nos", {"phone": pg.get("mobile_no"), "is_primary_mobile_no": 1}) contact.insert(ignore_permissions=True) contact.reload() # load changes by hooks on contact @@ -363,9 +363,9 @@ def create_contact(doc): return contact.name -@frappe.whitelist() +@jingrow.whitelist() def create_deal(args): - deal = frappe.new_doc("CRM Deal") + deal = jingrow.new_pg("CRM Deal") contact = args.get("contact") if not contact and ( diff --git a/crm/fcrm/doctype/crm_deal/test_crm_deal.py b/crm/fcrm/doctype/crm_deal/test_crm_deal.py index 8ea8f5c0..940be1de 100644 --- a/crm/fcrm/doctype/crm_deal/test_crm_deal.py +++ b/crm/fcrm/doctype/crm_deal/test_crm_deal.py @@ -1,8 +1,8 @@ # Copyright (c) 2023, JINGROW and Contributors # See license.txt -# import frappe -from frappe.tests import UnitTestCase +# import jingrow +from jingrow.tests import UnitTestCase class TestCRMDeal(UnitTestCase): diff --git a/crm/fcrm/doctype/crm_deal_status/crm_deal_status.js b/crm/fcrm/doctype/crm_deal_status/crm_deal_status.js index a699fe92..fd38c546 100644 --- a/crm/fcrm/doctype/crm_deal_status/crm_deal_status.js +++ b/crm/fcrm/doctype/crm_deal_status/crm_deal_status.js @@ -1,7 +1,7 @@ // Copyright (c) 2023, JINGROW and contributors // For license information, please see license.txt -// frappe.ui.form.on("CRM Deal Status", { +// jingrow.ui.form.on("CRM Deal Status", { // refresh(frm) { // }, diff --git a/crm/fcrm/doctype/crm_deal_status/crm_deal_status.json b/crm/fcrm/doctype/crm_deal_status/crm_deal_status.json index 2af130de..432dc7a0 100644 --- a/crm/fcrm/doctype/crm_deal_status/crm_deal_status.json +++ b/crm/fcrm/doctype/crm_deal_status/crm_deal_status.json @@ -3,7 +3,7 @@ "allow_rename": 1, "autoname": "field:deal_status", "creation": "2023-11-29 11:24:55.543387", - "doctype": "DocType", + "pagetype": "PageType", "engine": "InnoDB", "field_order": [ "deal_status", diff --git a/crm/fcrm/doctype/crm_deal_status/crm_deal_status.py b/crm/fcrm/doctype/crm_deal_status/crm_deal_status.py index 5f322eb0..a32def5e 100644 --- a/crm/fcrm/doctype/crm_deal_status/crm_deal_status.py +++ b/crm/fcrm/doctype/crm_deal_status/crm_deal_status.py @@ -1,8 +1,8 @@ # Copyright (c) 2023, JINGROW and contributors # For license information, please see license.txt -# import frappe -from frappe.model.document import Document +# import jingrow +from jingrow.model.document import Document class CRMDealStatus(Document): diff --git a/crm/fcrm/doctype/crm_deal_status/test_crm_deal_status.py b/crm/fcrm/doctype/crm_deal_status/test_crm_deal_status.py index ce6b1244..ce6544c4 100644 --- a/crm/fcrm/doctype/crm_deal_status/test_crm_deal_status.py +++ b/crm/fcrm/doctype/crm_deal_status/test_crm_deal_status.py @@ -1,8 +1,8 @@ # Copyright (c) 2023, JINGROW and Contributors # See license.txt -# import frappe -from frappe.tests import UnitTestCase +# import jingrow +from jingrow.tests import UnitTestCase class TestCRMDealStatus(UnitTestCase): diff --git a/crm/fcrm/doctype/crm_dropdown_item/crm_dropdown_item.json b/crm/fcrm/doctype/crm_dropdown_item/crm_dropdown_item.json index 490acc8a..61d86462 100644 --- a/crm/fcrm/doctype/crm_dropdown_item/crm_dropdown_item.json +++ b/crm/fcrm/doctype/crm_dropdown_item/crm_dropdown_item.json @@ -2,7 +2,7 @@ "actions": [], "allow_rename": 1, "creation": "2024-12-27 17:42:33.089685", - "doctype": "DocType", + "pagetype": "PageType", "engine": "InnoDB", "field_order": [ "name1", @@ -21,7 +21,7 @@ "fieldtype": "Data", "in_list_view": 1, "label": "Label", - "mandatory_depends_on": "eval:doc.type == 'Route'" + "mandatory_depends_on": "eval:pg.type == 'Route'" }, { "fieldname": "type", @@ -29,15 +29,15 @@ "in_list_view": 1, "label": "Type", "options": "Route\nSeparator", - "read_only_depends_on": "eval:doc.is_standard" + "read_only_depends_on": "eval:pg.is_standard" }, { - "depends_on": "eval:doc.type == 'Route'", + "depends_on": "eval:pg.type == 'Route'", "fieldname": "route", "fieldtype": "Data", "in_list_view": 1, "label": "Route", - "mandatory_depends_on": "eval:doc.type == 'Route'" + "mandatory_depends_on": "eval:pg.type == 'Route'" }, { "default": "0", @@ -65,13 +65,13 @@ }, { "default": "1", - "depends_on": "eval:doc.type == 'Route'", + "depends_on": "eval:pg.type == 'Route'", "fieldname": "open_in_new_window", "fieldtype": "Check", "label": "Open in new window" }, { - "depends_on": "eval:doc.is_standard", + "depends_on": "eval:pg.is_standard", "fieldname": "name1", "fieldtype": "Data", "label": "Name", diff --git a/crm/fcrm/doctype/crm_dropdown_item/crm_dropdown_item.py b/crm/fcrm/doctype/crm_dropdown_item/crm_dropdown_item.py index c909d484..bce50d34 100644 --- a/crm/fcrm/doctype/crm_dropdown_item/crm_dropdown_item.py +++ b/crm/fcrm/doctype/crm_dropdown_item/crm_dropdown_item.py @@ -1,8 +1,8 @@ # Copyright (c) 2024, JINGROW and contributors # For license information, please see license.txt -# import frappe -from frappe.model.document import Document +# import jingrow +from jingrow.model.document import Document class CRMDropdownItem(Document): diff --git a/crm/fcrm/doctype/crm_exotel_settings/crm_exotel_settings.js b/crm/fcrm/doctype/crm_exotel_settings/crm_exotel_settings.js index 135f7b51..363861d9 100644 --- a/crm/fcrm/doctype/crm_exotel_settings/crm_exotel_settings.js +++ b/crm/fcrm/doctype/crm_exotel_settings/crm_exotel_settings.js @@ -1,7 +1,7 @@ // Copyright (c) 2025, JINGROW and contributors // For license information, please see license.txt -// frappe.ui.form.on("CRM Exotel Settings", { +// jingrow.ui.form.on("CRM Exotel Settings", { // refresh(frm) { // }, diff --git a/crm/fcrm/doctype/crm_exotel_settings/crm_exotel_settings.json b/crm/fcrm/doctype/crm_exotel_settings/crm_exotel_settings.json index c153a6c5..5448f752 100644 --- a/crm/fcrm/doctype/crm_exotel_settings/crm_exotel_settings.json +++ b/crm/fcrm/doctype/crm_exotel_settings/crm_exotel_settings.json @@ -2,7 +2,7 @@ "actions": [], "allow_rename": 1, "creation": "2025-01-08 15:55:50.710356", - "doctype": "DocType", + "pagetype": "PageType", "engine": "InnoDB", "field_order": [ "enabled", diff --git a/crm/fcrm/doctype/crm_exotel_settings/crm_exotel_settings.py b/crm/fcrm/doctype/crm_exotel_settings/crm_exotel_settings.py index 7f4bc19d..c27131cf 100644 --- a/crm/fcrm/doctype/crm_exotel_settings/crm_exotel_settings.py +++ b/crm/fcrm/doctype/crm_exotel_settings/crm_exotel_settings.py @@ -1,10 +1,10 @@ # Copyright (c) 2025, JINGROW and contributors # For license information, please see license.txt -import frappe +import jingrow import requests -from frappe import _ -from frappe.model.document import Document +from jingrow import _ +from jingrow.model.document import Document class CRMExotelSettings(Document): @@ -20,7 +20,7 @@ class CRMExotelSettings(Document): auth=(self.api_key, self.get_password("api_token")), ) if response.status_code != 200: - frappe.throw( + jingrow.throw( _(f"Please enter valid exotel Account SID, API key & API token: {response.reason}"), title=_("Invalid credentials"), ) diff --git a/crm/fcrm/doctype/crm_exotel_settings/test_crm_exotel_settings.py b/crm/fcrm/doctype/crm_exotel_settings/test_crm_exotel_settings.py index fe0139c7..fed9c0f5 100644 --- a/crm/fcrm/doctype/crm_exotel_settings/test_crm_exotel_settings.py +++ b/crm/fcrm/doctype/crm_exotel_settings/test_crm_exotel_settings.py @@ -1,10 +1,10 @@ # Copyright (c) 2025, JINGROW and Contributors # See license.txt -# import frappe -from frappe.tests import IntegrationTestCase, UnitTestCase +# import jingrow +from jingrow.tests import IntegrationTestCase, UnitTestCase -# On IntegrationTestCase, the doctype test records and all +# On IntegrationTestCase, the pagetype test records and all # link-field test record dependencies are recursively loaded # Use these module variables to add/remove to/from that list EXTRA_TEST_RECORD_DEPENDENCIES = [] # eg. ["User"] diff --git a/crm/fcrm/doctype/crm_fields_layout/crm_fields_layout.js b/crm/fcrm/doctype/crm_fields_layout/crm_fields_layout.js index 80901342..5d07a4c0 100644 --- a/crm/fcrm/doctype/crm_fields_layout/crm_fields_layout.js +++ b/crm/fcrm/doctype/crm_fields_layout/crm_fields_layout.js @@ -1,7 +1,7 @@ // Copyright (c) 2024, JINGROW and contributors // For license information, please see license.txt -// frappe.ui.form.on("CRM Fields Layout", { +// jingrow.ui.form.on("CRM Fields Layout", { // refresh(frm) { // }, diff --git a/crm/fcrm/doctype/crm_fields_layout/crm_fields_layout.json b/crm/fcrm/doctype/crm_fields_layout/crm_fields_layout.json index c61189e2..3c7174c1 100644 --- a/crm/fcrm/doctype/crm_fields_layout/crm_fields_layout.json +++ b/crm/fcrm/doctype/crm_fields_layout/crm_fields_layout.json @@ -3,7 +3,7 @@ "allow_rename": 1, "autoname": "format:{dt}-{type}", "creation": "2024-06-07 16:42:05.495324", - "doctype": "DocType", + "pagetype": "PageType", "engine": "InnoDB", "field_order": [ "dt", @@ -19,7 +19,7 @@ "in_list_view": 1, "in_standard_filter": 1, "label": "Document Type", - "options": "DocType" + "options": "PageType" }, { "fieldname": "type", diff --git a/crm/fcrm/doctype/crm_fields_layout/crm_fields_layout.py b/crm/fcrm/doctype/crm_fields_layout/crm_fields_layout.py index e1261320..8faa95a8 100644 --- a/crm/fcrm/doctype/crm_fields_layout/crm_fields_layout.py +++ b/crm/fcrm/doctype/crm_fields_layout/crm_fields_layout.py @@ -3,29 +3,29 @@ import json -import frappe -from frappe import _ -from frappe.model.document import Document -from frappe.utils import random_string +import jingrow +from jingrow import _ +from jingrow.model.document import Document +from jingrow.utils import random_string class CRMFieldsLayout(Document): pass -@frappe.whitelist() -def get_fields_layout(doctype: str, type: str, parent_doctype: str | None = None): +@jingrow.whitelist() +def get_fields_layout(pagetype: str, type: str, parent_pagetype: str | None = None): tabs = [] layout = None - if frappe.db.exists("CRM Fields Layout", {"dt": doctype, "type": type}): - layout = frappe.get_doc("CRM Fields Layout", {"dt": doctype, "type": type}) + if jingrow.db.exists("CRM Fields Layout", {"dt": pagetype, "type": type}): + layout = jingrow.get_pg("CRM Fields Layout", {"dt": pagetype, "type": type}) if layout and layout.layout: tabs = json.loads(layout.layout) if not tabs and type != "Required Fields": - tabs = get_default_layout(doctype) + tabs = get_default_layout(pagetype) has_tabs = False if isinstance(tabs, list) and len(tabs) > 0 and isinstance(tabs[0], dict): @@ -44,14 +44,14 @@ def get_fields_layout(doctype: str, type: str, parent_doctype: str | None = None continue allowed_fields.extend(column.get("fields")) - fields = frappe.get_meta(doctype).fields + fields = jingrow.get_meta(pagetype).fields fields = [field for field in fields if field.fieldname in allowed_fields] required_fields = [] if type == "Required Fields": required_fields = [ - field for field in frappe.get_meta(doctype, False).fields if field.reqd and not field.default + field for field in jingrow.get_meta(pagetype, False).fields if field.reqd and not field.default ] for tab in tabs: @@ -64,7 +64,7 @@ def get_fields_layout(doctype: str, type: str, parent_doctype: str | None = None field = next((f for f in fields if f.fieldname == field), None) if field: field = field.as_dict() - handle_perm_level_restrictions(field, doctype, parent_doctype) + handle_perm_level_restrictions(field, pagetype, parent_pagetype) column["fields"][column.get("fields").index(field["fieldname"])] = field # remove field from required_fields if it is already present @@ -96,11 +96,11 @@ def get_fields_layout(doctype: str, type: str, parent_doctype: str | None = None return tabs or [] -@frappe.whitelist() -def get_sidepanel_sections(doctype): - if not frappe.db.exists("CRM Fields Layout", {"dt": doctype, "type": "Side Panel"}): +@jingrow.whitelist() +def get_sidepanel_sections(pagetype): + if not jingrow.db.exists("CRM Fields Layout", {"dt": pagetype, "type": "Side Panel"}): return [] - layout = frappe.get_doc("CRM Fields Layout", {"dt": doctype, "type": "Side Panel"}).layout + layout = jingrow.get_pg("CRM Fields Layout", {"dt": pagetype, "type": "Side Panel"}).layout if not layout: return [] @@ -113,10 +113,10 @@ def get_sidepanel_sections(doctype): "Column Break", ] - fields = frappe.get_meta(doctype).fields + fields = jingrow.get_meta(pagetype).fields fields = [field for field in fields if field.fieldtype not in not_allowed_fieldtypes] - add_forecasting_section(layout, doctype) + add_forecasting_section(layout, pagetype) for section in layout: section["name"] = section.get("name") or section.get("label") @@ -125,7 +125,7 @@ def get_sidepanel_sections(doctype): field_obj = next((f for f in fields if f.fieldname == field), None) if field_obj: field_obj = field_obj.as_dict() - handle_perm_level_restrictions(field_obj, doctype) + handle_perm_level_restrictions(field_obj, pagetype) column["fields"][column.get("fields").index(field)] = get_field_obj(field_obj) fields_meta = {} @@ -135,10 +135,10 @@ def get_sidepanel_sections(doctype): return layout -def add_forecasting_section(layout, doctype): +def add_forecasting_section(layout, pagetype): if ( - doctype == "CRM Deal" - and frappe.db.get_single_value("FCRM Settings", "enable_forecasting") + pagetype == "CRM Deal" + and jingrow.db.get_single_value("FCRM Settings", "enable_forecasting") and not any(section.get("name") == "forecasted_sales_section" for section in layout) ): contacts_section_index = next( @@ -167,11 +167,11 @@ def add_forecasting_section(layout, doctype): ) -def handle_perm_level_restrictions(field, doctype, parent_doctype=None): +def handle_perm_level_restrictions(field, pagetype, parent_pagetype=None): if field.permlevel == 0: return - field_has_write_access = field.permlevel in get_permlevel_access("write", doctype, parent_doctype) - field_has_read_access = field.permlevel in get_permlevel_access("read", doctype, parent_doctype) + field_has_write_access = field.permlevel in get_permlevel_access("write", pagetype, parent_pagetype) + field_has_read_access = field.permlevel in get_permlevel_access("read", pagetype, parent_pagetype) if not field_has_write_access and field_has_read_access: field.read_only = 1 @@ -179,15 +179,15 @@ def handle_perm_level_restrictions(field, doctype, parent_doctype=None): field.hidden = 1 -def get_permlevel_access(permission_type="write", doctype=None, parent_doctype=None): +def get_permlevel_access(permission_type="write", pagetype=None, parent_pagetype=None): allowed_permlevels = [] - roles = frappe.get_roles() + roles = jingrow.get_roles() - meta = frappe.get_meta(doctype) + meta = jingrow.get_meta(pagetype) - if meta.istable and parent_doctype: - meta = frappe.get_meta(parent_doctype) - elif meta.istable and not parent_doctype: + if meta.istable and parent_pagetype: + meta = jingrow.get_meta(parent_pagetype) + elif meta.istable and not parent_pagetype: return [1, 0] for perm in meta.permissions: @@ -212,27 +212,27 @@ def get_field_obj(field): return field -@frappe.whitelist() -def save_fields_layout(doctype: str, type: str, layout: str): - if frappe.db.exists("CRM Fields Layout", {"dt": doctype, "type": type}): - doc = frappe.get_doc("CRM Fields Layout", {"dt": doctype, "type": type}) +@jingrow.whitelist() +def save_fields_layout(pagetype: str, type: str, layout: str): + if jingrow.db.exists("CRM Fields Layout", {"dt": pagetype, "type": type}): + pg = jingrow.get_pg("CRM Fields Layout", {"dt": pagetype, "type": type}) else: - doc = frappe.new_doc("CRM Fields Layout") + pg = jingrow.new_pg("CRM Fields Layout") - doc.update( + pg.update( { - "dt": doctype, + "dt": pagetype, "type": type, "layout": layout, } ) - doc.save(ignore_permissions=True) + pg.save(ignore_permissions=True) - return doc.layout + return pg.layout -def get_default_layout(doctype: str): - fields = frappe.get_meta(doctype).fields +def get_default_layout(pagetype: str): + fields = jingrow.get_meta(pagetype).fields tabs = [] diff --git a/crm/fcrm/doctype/crm_fields_layout/test_crm_fields_layout.py b/crm/fcrm/doctype/crm_fields_layout/test_crm_fields_layout.py index 7d45f222..f247285a 100644 --- a/crm/fcrm/doctype/crm_fields_layout/test_crm_fields_layout.py +++ b/crm/fcrm/doctype/crm_fields_layout/test_crm_fields_layout.py @@ -1,8 +1,8 @@ # Copyright (c) 2024, JINGROW and Contributors # See license.txt -# import frappe -from frappe.tests import UnitTestCase +# import jingrow +from jingrow.tests import UnitTestCase class TestCRMFieldsLayout(UnitTestCase): diff --git a/crm/fcrm/doctype/crm_form_script/crm_form_script.js b/crm/fcrm/doctype/crm_form_script/crm_form_script.js index 447857a5..162c8f0b 100644 --- a/crm/fcrm/doctype/crm_form_script/crm_form_script.js +++ b/crm/fcrm/doctype/crm_form_script/crm_form_script.js @@ -1,7 +1,7 @@ // Copyright (c) 2023, JINGROW and contributors // For license information, please see license.txt -frappe.ui.form.on("CRM Form Script", { +jingrow.ui.form.on("CRM Form Script", { refresh(frm) { frm.set_query("dt", { filters: { @@ -9,16 +9,16 @@ frappe.ui.form.on("CRM Form Script", { }, }); - if (frm.doc.is_standard && !frappe.boot.developer_mode) { + if (frm.pg.is_standard && !jingrow.boot.developer_mode) { frm.disable_form(); - frappe.show_alert( + jingrow.show_alert( __( "Standard Form Scripts can not be modified, duplicate the Form Script instead." ) ); } - if (!frappe.boot.developer_mode) { + if (!jingrow.boot.developer_mode) { frm.toggle_enable("is_standard", 0); } @@ -27,33 +27,33 @@ frappe.ui.form.on("CRM Form Script", { add_enable_button(frm) { frm.add_custom_button( - frm.doc.enabled ? __("Disable") : __("Enable"), + frm.pg.enabled ? __("Disable") : __("Enable"), () => { - frm.set_value("enabled", !frm.doc.enabled); + frm.set_value("enabled", !frm.pg.enabled); frm.save(); } ); }, view(frm) { - let has_form_boilerplate = frm.doc.script.includes( + let has_form_boilerplate = frm.pg.script.includes( "function setupForm(" ); - let has_list_boilerplate = frm.doc.script.includes( + let has_list_boilerplate = frm.pg.script.includes( "function setupList(" ); - if (frm.doc.view == "Form" && !has_form_boilerplate) { - frm.doc.script = ` -function setupForm({ doc }) { + if (frm.pg.view == "Form" && !has_form_boilerplate) { + frm.pg.script = ` +function setupForm({ pg }) { return { actions: [], statuses: [], } }`.trim(); } - if (frm.doc.view == "List" && !has_list_boilerplate) { - frm.doc.script = ` + if (frm.pg.view == "List" && !has_list_boilerplate) { + frm.pg.script = ` function setupList({ list }) { return { actions: [], diff --git a/crm/fcrm/doctype/crm_form_script/crm_form_script.json b/crm/fcrm/doctype/crm_form_script/crm_form_script.json index 59dd50c5..12d30581 100644 --- a/crm/fcrm/doctype/crm_form_script/crm_form_script.json +++ b/crm/fcrm/doctype/crm_form_script/crm_form_script.json @@ -3,7 +3,7 @@ "allow_rename": 1, "autoname": "prompt", "creation": "2023-12-28 14:18:09.329868", - "doctype": "DocType", + "pagetype": "PageType", "engine": "InnoDB", "field_order": [ "dt", @@ -27,8 +27,8 @@ "fieldname": "dt", "fieldtype": "Link", "in_list_view": 1, - "label": "DocType", - "options": "DocType", + "label": "PageType", + "options": "PageType", "reqd": 1 }, { @@ -39,7 +39,7 @@ "label": "Enabled" }, { - "default": "function setupForm({ doc }) {\n return {\n actions: [],\n }\n}", + "default": "function setupForm({ pg }) {\n return {\n actions: [],\n }\n}", "documentation_url": "https://docs.jingrow.com/crm/custom-actions", "fieldname": "script", "fieldtype": "Code", diff --git a/crm/fcrm/doctype/crm_form_script/crm_form_script.py b/crm/fcrm/doctype/crm_form_script/crm_form_script.py index eaf6b833..8765d528 100644 --- a/crm/fcrm/doctype/crm_form_script/crm_form_script.py +++ b/crm/fcrm/doctype/crm_form_script/crm_form_script.py @@ -1,41 +1,41 @@ # Copyright (c) 2023, JINGROW and contributors # For license information, please see license.txt -import frappe -from frappe import _ -from frappe.model.document import Document +import jingrow +from jingrow import _ +from jingrow.model.document import Document class CRMFormScript(Document): def validate(self): in_user_env = not ( - frappe.flags.in_install - or frappe.flags.in_patch - or frappe.flags.in_test - or frappe.flags.in_fixtures + jingrow.flags.in_install + or jingrow.flags.in_patch + or jingrow.flags.in_test + or jingrow.flags.in_fixtures ) - if in_user_env and not self.is_new() and self.is_standard and not frappe.conf.developer_mode: + if in_user_env and not self.is_new() and self.is_standard and not jingrow.conf.developer_mode: # only enabled can be changed for standard form scripts if self.has_value_changed("enabled"): enabled_value = self.enabled self.reload() self.enabled = enabled_value else: - frappe.throw(_("You need to be in developer mode to edit a Standard Form Script")) + jingrow.throw(_("You need to be in developer mode to edit a Standard Form Script")) def get_form_script(dt, view="Form"): - """Returns the form script for the given doctype""" - FormScript = frappe.qb.DocType("CRM Form Script") + """Returns the form script for the given pagetype""" + FormScript = jingrow.qb.PageType("CRM Form Script") query = ( - frappe.qb.from_(FormScript) + jingrow.qb.from_(FormScript) .select("script") .where(FormScript.dt == dt) .where(FormScript.view == view) .where(FormScript.enabled == 1) ) - doc = query.run(as_dict=True) - if doc: - return [d.script for d in doc] if len(doc) > 1 else doc[0].script + pg = query.run(as_dict=True) + if pg: + return [d.script for d in pg] if len(pg) > 1 else pg[0].script else: return None diff --git a/crm/fcrm/doctype/crm_form_script/test_crm_form_script.py b/crm/fcrm/doctype/crm_form_script/test_crm_form_script.py index 9608a058..222b71f0 100644 --- a/crm/fcrm/doctype/crm_form_script/test_crm_form_script.py +++ b/crm/fcrm/doctype/crm_form_script/test_crm_form_script.py @@ -1,8 +1,8 @@ # Copyright (c) 2023, JINGROW and Contributors # See license.txt -# import frappe -from frappe.tests import UnitTestCase +# import jingrow +from jingrow.tests import UnitTestCase class TestCRMFormScript(UnitTestCase): diff --git a/crm/fcrm/doctype/crm_global_settings/crm_global_settings.js b/crm/fcrm/doctype/crm_global_settings/crm_global_settings.js index 39821cb1..bf3870ee 100644 --- a/crm/fcrm/doctype/crm_global_settings/crm_global_settings.js +++ b/crm/fcrm/doctype/crm_global_settings/crm_global_settings.js @@ -1,7 +1,7 @@ // Copyright (c) 2025, JINGROW and contributors // For license information, please see license.txt -// frappe.ui.form.on("CRM Global Settings", { +// jingrow.ui.form.on("CRM Global Settings", { // refresh(frm) { // }, diff --git a/crm/fcrm/doctype/crm_global_settings/crm_global_settings.json b/crm/fcrm/doctype/crm_global_settings/crm_global_settings.json index ce29f4dc..44d89a6c 100644 --- a/crm/fcrm/doctype/crm_global_settings/crm_global_settings.json +++ b/crm/fcrm/doctype/crm_global_settings/crm_global_settings.json @@ -3,7 +3,7 @@ "allow_rename": 1, "autoname": "format:{type}-{dt}", "creation": "2025-02-28 14:37:10.002433", - "doctype": "DocType", + "pagetype": "PageType", "engine": "InnoDB", "field_order": [ "dt", @@ -14,12 +14,12 @@ ], "fields": [ { - "default": "DocType", + "default": "PageType", "fieldname": "dt", "fieldtype": "Link", "in_list_view": 1, - "label": "DocType", - "options": "DocType", + "label": "PageType", + "options": "PageType", "reqd": 1 }, { diff --git a/crm/fcrm/doctype/crm_global_settings/crm_global_settings.py b/crm/fcrm/doctype/crm_global_settings/crm_global_settings.py index 36867d41..22d077da 100644 --- a/crm/fcrm/doctype/crm_global_settings/crm_global_settings.py +++ b/crm/fcrm/doctype/crm_global_settings/crm_global_settings.py @@ -1,8 +1,8 @@ # Copyright (c) 2025, JINGROW and contributors # For license information, please see license.txt -# import frappe -from frappe.model.document import Document +# import jingrow +from jingrow.model.document import Document class CRMGlobalSettings(Document): diff --git a/crm/fcrm/doctype/crm_global_settings/test_crm_global_settings.py b/crm/fcrm/doctype/crm_global_settings/test_crm_global_settings.py index 3255c8db..81be4810 100644 --- a/crm/fcrm/doctype/crm_global_settings/test_crm_global_settings.py +++ b/crm/fcrm/doctype/crm_global_settings/test_crm_global_settings.py @@ -1,11 +1,11 @@ # Copyright (c) 2025, JINGROW and Contributors # See license.txt -# import frappe -from frappe.tests import IntegrationTestCase, UnitTestCase +# import jingrow +from jingrow.tests import IntegrationTestCase, UnitTestCase -# On IntegrationTestCase, the doctype test records and all +# On IntegrationTestCase, the pagetype test records and all # link-field test record dependencies are recursively loaded # Use these module variables to add/remove to/from that list EXTRA_TEST_RECORD_DEPENDENCIES = [] # eg. ["User"] diff --git a/crm/fcrm/doctype/crm_holiday/crm_holiday.json b/crm/fcrm/doctype/crm_holiday/crm_holiday.json index fc0f24f3..c5f1be1c 100644 --- a/crm/fcrm/doctype/crm_holiday/crm_holiday.json +++ b/crm/fcrm/doctype/crm_holiday/crm_holiday.json @@ -2,7 +2,7 @@ "actions": [], "allow_rename": 1, "creation": "2023-12-14 11:16:15.476366", - "doctype": "DocType", + "pagetype": "PageType", "editable_grid": 1, "engine": "InnoDB", "field_order": [ diff --git a/crm/fcrm/doctype/crm_holiday/crm_holiday.py b/crm/fcrm/doctype/crm_holiday/crm_holiday.py index 3dab5f9e..7cbf4eca 100644 --- a/crm/fcrm/doctype/crm_holiday/crm_holiday.py +++ b/crm/fcrm/doctype/crm_holiday/crm_holiday.py @@ -1,8 +1,8 @@ # Copyright (c) 2023, JINGROW and contributors # For license information, please see license.txt -# import frappe -from frappe.model.document import Document +# import jingrow +from jingrow.model.document import Document class CRMHoliday(Document): diff --git a/crm/fcrm/doctype/crm_holiday_list/crm_holiday_list.js b/crm/fcrm/doctype/crm_holiday_list/crm_holiday_list.js index fdc04e21..cc2f2b66 100644 --- a/crm/fcrm/doctype/crm_holiday_list/crm_holiday_list.js +++ b/crm/fcrm/doctype/crm_holiday_list/crm_holiday_list.js @@ -1,7 +1,7 @@ // Copyright (c) 2023, JINGROW and contributors // For license information, please see license.txt -// frappe.ui.form.on("CRM Holiday List", { +// jingrow.ui.form.on("CRM Holiday List", { // refresh(frm) { // }, diff --git a/crm/fcrm/doctype/crm_holiday_list/crm_holiday_list.json b/crm/fcrm/doctype/crm_holiday_list/crm_holiday_list.json index 066f12ee..0a776246 100644 --- a/crm/fcrm/doctype/crm_holiday_list/crm_holiday_list.json +++ b/crm/fcrm/doctype/crm_holiday_list/crm_holiday_list.json @@ -3,7 +3,7 @@ "allow_rename": 1, "autoname": "field:holiday_list_name", "creation": "2023-12-14 11:09:12.876640", - "doctype": "DocType", + "pagetype": "PageType", "engine": "InnoDB", "field_order": [ "holiday_list_name", diff --git a/crm/fcrm/doctype/crm_holiday_list/crm_holiday_list.py b/crm/fcrm/doctype/crm_holiday_list/crm_holiday_list.py index 11393e34..e4e7d4aa 100644 --- a/crm/fcrm/doctype/crm_holiday_list/crm_holiday_list.py +++ b/crm/fcrm/doctype/crm_holiday_list/crm_holiday_list.py @@ -1,8 +1,8 @@ # Copyright (c) 2023, JINGROW and contributors # For license information, please see license.txt -# import frappe -from frappe.model.document import Document +# import jingrow +from jingrow.model.document import Document class CRMHolidayList(Document): diff --git a/crm/fcrm/doctype/crm_holiday_list/test_crm_holiday_list.py b/crm/fcrm/doctype/crm_holiday_list/test_crm_holiday_list.py index 32c6ec9d..60b56550 100644 --- a/crm/fcrm/doctype/crm_holiday_list/test_crm_holiday_list.py +++ b/crm/fcrm/doctype/crm_holiday_list/test_crm_holiday_list.py @@ -1,8 +1,8 @@ # Copyright (c) 2023, JINGROW and Contributors # See license.txt -# import frappe -from frappe.tests import UnitTestCase +# import jingrow +from jingrow.tests import UnitTestCase class TestCRMHolidayList(UnitTestCase): diff --git a/crm/fcrm/doctype/crm_industry/crm_industry.js b/crm/fcrm/doctype/crm_industry/crm_industry.js index d85339e2..b3d3ebd1 100644 --- a/crm/fcrm/doctype/crm_industry/crm_industry.js +++ b/crm/fcrm/doctype/crm_industry/crm_industry.js @@ -1,7 +1,7 @@ // Copyright (c) 2023, JINGROW and contributors // For license information, please see license.txt -// frappe.ui.form.on("CRM Industry", { +// jingrow.ui.form.on("CRM Industry", { // refresh(frm) { // }, diff --git a/crm/fcrm/doctype/crm_industry/crm_industry.json b/crm/fcrm/doctype/crm_industry/crm_industry.json index 5128d8be..7577a222 100644 --- a/crm/fcrm/doctype/crm_industry/crm_industry.json +++ b/crm/fcrm/doctype/crm_industry/crm_industry.json @@ -5,7 +5,7 @@ "autoname": "field:industry", "creation": "2023-07-24 19:40:31.980882", "default_view": "List", - "doctype": "DocType", + "pagetype": "PageType", "editable_grid": 1, "engine": "InnoDB", "field_order": [ diff --git a/crm/fcrm/doctype/crm_industry/crm_industry.py b/crm/fcrm/doctype/crm_industry/crm_industry.py index 14ac1d70..cce8dd96 100644 --- a/crm/fcrm/doctype/crm_industry/crm_industry.py +++ b/crm/fcrm/doctype/crm_industry/crm_industry.py @@ -1,8 +1,8 @@ # Copyright (c) 2023, JINGROW and contributors # For license information, please see license.txt -# import frappe -from frappe.model.document import Document +# import jingrow +from jingrow.model.document import Document class CRMIndustry(Document): diff --git a/crm/fcrm/doctype/crm_industry/test_crm_industry.py b/crm/fcrm/doctype/crm_industry/test_crm_industry.py index 538f1b18..b47ef420 100644 --- a/crm/fcrm/doctype/crm_industry/test_crm_industry.py +++ b/crm/fcrm/doctype/crm_industry/test_crm_industry.py @@ -1,8 +1,8 @@ # Copyright (c) 2023, JINGROW and Contributors # See license.txt -# import frappe -from frappe.tests import UnitTestCase +# import jingrow +from jingrow.tests import UnitTestCase class TestCRMIndustry(UnitTestCase): diff --git a/crm/fcrm/doctype/crm_invitation/crm_invitation.js b/crm/fcrm/doctype/crm_invitation/crm_invitation.js index 61b4b441..9f0da352 100644 --- a/crm/fcrm/doctype/crm_invitation/crm_invitation.js +++ b/crm/fcrm/doctype/crm_invitation/crm_invitation.js @@ -1,9 +1,9 @@ // Copyright (c) 2024, JINGROW and contributors // For license information, please see license.txt -frappe.ui.form.on("CRM Invitation", { +jingrow.ui.form.on("CRM Invitation", { refresh(frm) { - if (frm.doc.status != "Accepted") { + if (frm.pg.status != "Accepted") { frm.add_custom_button(__("Accept Invitation"), () => { return frm.call("accept_invitation"); }); diff --git a/crm/fcrm/doctype/crm_invitation/crm_invitation.json b/crm/fcrm/doctype/crm_invitation/crm_invitation.json index 826a2b33..c36a6dac 100644 --- a/crm/fcrm/doctype/crm_invitation/crm_invitation.json +++ b/crm/fcrm/doctype/crm_invitation/crm_invitation.json @@ -2,7 +2,7 @@ "actions": [], "allow_rename": 1, "creation": "2024-09-03 12:19:18.933810", - "doctype": "DocType", + "pagetype": "PageType", "engine": "InnoDB", "field_order": [ "email", diff --git a/crm/fcrm/doctype/crm_invitation/crm_invitation.py b/crm/fcrm/doctype/crm_invitation/crm_invitation.py index 8247c279..56b8064e 100644 --- a/crm/fcrm/doctype/crm_invitation/crm_invitation.py +++ b/crm/fcrm/doctype/crm_invitation/crm_invitation.py @@ -1,46 +1,46 @@ # Copyright (c) 2024, JINGROW and contributors # For license information, please see license.txt -import frappe -from frappe.model.document import Document +import jingrow +from jingrow.model.document import Document class CRMInvitation(Document): def before_insert(self): - frappe.utils.validate_email_address(self.email, True) + jingrow.utils.validate_email_address(self.email, True) - self.key = frappe.generate_hash(length=12) - self.invited_by = frappe.session.user + self.key = jingrow.generate_hash(length=12) + self.invited_by = jingrow.session.user self.status = "Pending" def after_insert(self): self.invite_via_email() def invite_via_email(self): - invite_link = frappe.utils.get_url(f"/api/method/crm.api.accept_invitation?key={self.key}") - if frappe.local.dev_server: + invite_link = jingrow.utils.get_url(f"/api/method/crm.api.accept_invitation?key={self.key}") + if jingrow.local.dev_server: print(f"Invite link for {self.email}: {invite_link}") - title = "Frappe CRM" + title = "Jingrow CRM" template = "crm_invitation" - frappe.sendmail( + jingrow.sendmail( recipients=self.email, subject=f"You have been invited to join {title}", template=template, args={"title": title, "invite_link": invite_link}, now=True, ) - self.db_set("email_sent_at", frappe.utils.now()) + self.db_set("email_sent_at", jingrow.utils.now()) - @frappe.whitelist() + @jingrow.whitelist() def accept_invitation(self): - frappe.only_for(["System Manager", "Sales Manager"]) + jingrow.only_for(["System Manager", "Sales Manager"]) self.accept() def accept(self): if self.status == "Expired": - frappe.throw("Invalid or expired key") + jingrow.throw("Invalid or expired key") user = self.create_user_if_not_exists() user.append_roles(self.role) @@ -53,11 +53,11 @@ class CRMInvitation(Document): user.save(ignore_permissions=True) self.status = "Accepted" - self.accepted_at = frappe.utils.now() + self.accepted_at = jingrow.utils.now() self.save(ignore_permissions=True) def update_module_in_user(self, user, module): - block_modules = frappe.get_all( + block_modules = jingrow.get_all( "Module Def", fields=["name as module"], filters={"name": ["!=", module]}, @@ -67,29 +67,29 @@ class CRMInvitation(Document): user.set("block_modules", block_modules) def create_user_if_not_exists(self): - if not frappe.db.exists("User", self.email): + if not jingrow.db.exists("User", self.email): first_name = self.email.split("@")[0].title() - user = frappe.get_doc( - doctype="User", + user = jingrow.get_pg( + pagetype="User", user_type="System User", email=self.email, send_welcome_email=0, first_name=first_name, ).insert(ignore_permissions=True) else: - user = frappe.get_doc("User", self.email) + user = jingrow.get_pg("User", self.email) return user def expire_invitations(): """expire invitations after 3 days""" - from frappe.utils import add_days, now + from jingrow.utils import add_days, now days = 3 - invitations_to_expire = frappe.db.get_all( + invitations_to_expire = jingrow.db.get_all( "CRM Invitation", filters={"status": "Pending", "creation": ["<", add_days(now(), -days)]} ) for invitation in invitations_to_expire: - invitation = frappe.get_doc("CRM Invitation", invitation.name) + invitation = jingrow.get_pg("CRM Invitation", invitation.name) invitation.status = "Expired" invitation.save(ignore_permissions=True) diff --git a/crm/fcrm/doctype/crm_invitation/test_crm_invitation.py b/crm/fcrm/doctype/crm_invitation/test_crm_invitation.py index 67444944..60d592f3 100644 --- a/crm/fcrm/doctype/crm_invitation/test_crm_invitation.py +++ b/crm/fcrm/doctype/crm_invitation/test_crm_invitation.py @@ -1,8 +1,8 @@ # Copyright (c) 2024, JINGROW and Contributors # See license.txt -# import frappe -from frappe.tests import UnitTestCase +# import jingrow +from jingrow.tests import UnitTestCase class TestCRMInvitation(UnitTestCase): diff --git a/crm/fcrm/doctype/crm_lead/crm_lead.js b/crm/fcrm/doctype/crm_lead/crm_lead.js index 9e3ceb65..3d2fba21 100644 --- a/crm/fcrm/doctype/crm_lead/crm_lead.js +++ b/crm/fcrm/doctype/crm_lead/crm_lead.js @@ -1,23 +1,23 @@ // Copyright (c) 2023, JINGROW and contributors // For license information, please see license.txt -frappe.ui.form.on("CRM Lead", { +jingrow.ui.form.on("CRM Lead", { refresh(frm) { - frm.add_web_link(`/crm/leads/${frm.doc.name}`, __("Open in Portal")); + frm.add_web_link(`/crm/leads/${frm.pg.name}`, __("Open in Portal")); }, update_total: function (frm) { let total = 0; let total_qty = 0; let net_total = 0; - frm.doc.products.forEach((d) => { + frm.pg.products.forEach((d) => { total += d.amount; total_qty += d.qty; net_total += d.net_amount; }); - frappe.model.set_value(frm.doctype, frm.docname, "total", total); - frappe.model.set_value( - frm.doctype, + jingrow.model.set_value(frm.pagetype, frm.docname, "total", total); + jingrow.model.set_value( + frm.pagetype, frm.docname, "net_total", net_total || total @@ -25,7 +25,7 @@ frappe.ui.form.on("CRM Lead", { } }); -frappe.ui.form.on("CRM Products", { +jingrow.ui.form.on("CRM Products", { products_add: function (frm, cdt, cdn) { frm.trigger("update_total"); }, @@ -33,34 +33,34 @@ frappe.ui.form.on("CRM Products", { frm.trigger("update_total"); }, product_code: function (frm, cdt, cdn) { - let d = frappe.get_doc(cdt, cdn); - frappe.model.set_value(cdt, cdn, "product_name", d.product_code); + let d = jingrow.get_pg(cdt, cdn); + jingrow.model.set_value(cdt, cdn, "product_name", d.product_code); }, rate: function (frm, cdt, cdn) { - let d = frappe.get_doc(cdt, cdn); + let d = jingrow.get_pg(cdt, cdn); if (d.rate && d.qty) { - frappe.model.set_value(cdt, cdn, "amount", d.rate * d.qty); + jingrow.model.set_value(cdt, cdn, "amount", d.rate * d.qty); } frm.trigger("update_total"); }, qty: function (frm, cdt, cdn) { - let d = frappe.get_doc(cdt, cdn); + let d = jingrow.get_pg(cdt, cdn); if (d.rate && d.qty) { - frappe.model.set_value(cdt, cdn, "amount", d.rate * d.qty); + jingrow.model.set_value(cdt, cdn, "amount", d.rate * d.qty); } frm.trigger("update_total"); }, discount_percentage: function (frm, cdt, cdn) { - let d = frappe.get_doc(cdt, cdn); + let d = jingrow.get_pg(cdt, cdn); if (d.discount_percentage && d.amount) { discount_amount = (d.discount_percentage / 100) * d.amount; - frappe.model.set_value( + jingrow.model.set_value( cdt, cdn, "discount_amount", discount_amount ); - frappe.model.set_value( + jingrow.model.set_value( cdt, cdn, "net_amount", diff --git a/crm/fcrm/doctype/crm_lead/crm_lead.json b/crm/fcrm/doctype/crm_lead/crm_lead.json index a9c25416..9a0b3c6e 100644 --- a/crm/fcrm/doctype/crm_lead/crm_lead.json +++ b/crm/fcrm/doctype/crm_lead/crm_lead.json @@ -5,7 +5,7 @@ "autoname": "naming_series:", "creation": "2023-07-24 12:19:39.616298", "default_view": "List", - "doctype": "DocType", + "pagetype": "PageType", "editable_grid": 1, "email_append_to": 1, "engine": "InnoDB", diff --git a/crm/fcrm/doctype/crm_lead/crm_lead.py b/crm/fcrm/doctype/crm_lead/crm_lead.py index dc937826..46a977c1 100644 --- a/crm/fcrm/doctype/crm_lead/crm_lead.py +++ b/crm/fcrm/doctype/crm_lead/crm_lead.py @@ -1,14 +1,14 @@ # Copyright (c) 2023, JINGROW and contributors # For license information, please see license.txt -import frappe -from frappe import _ -from frappe.desk.form.assign_to import add as assign -from frappe.model.document import Document -from frappe.utils import has_gravatar, validate_email_address +import jingrow +from jingrow import _ +from jingrow.desk.form.assign_to import add as assign +from jingrow.model.document import Document +from jingrow.utils import has_gravatar, validate_email_address -from crm.fcrm.doctype.crm_service_level_agreement.utils import get_sla -from crm.fcrm.doctype.crm_status_change_log.crm_status_change_log import ( +from crm.fcrm.pagetype.crm_service_level_agreement.utils import get_sla +from crm.fcrm.pagetype.crm_status_change_log.crm_status_change_log import ( add_status_change_log, ) @@ -53,7 +53,7 @@ class CRMLead(Document): if not self.lead_name: # Check for leads being created through data import if not self.organization and not self.email and not self.flags.ignore_mandatory: - frappe.throw(_("A Lead requires either a person's name or an organization's name")) + jingrow.throw(_("A Lead requires either a person's name or an organization's name")) elif self.organization: self.lead_name = self.organization elif self.email: @@ -70,7 +70,7 @@ class CRMLead(Document): validate_email_address(self.email, throw=True) if self.email == self.lead_owner: - frappe.throw(_("Lead Owner cannot be same as the Lead Email Address")) + jingrow.throw(_("Lead Owner cannot be same as the Lead Email Address")) if self.is_new() or not self.image: self.image = has_gravatar(self.email) @@ -86,34 +86,34 @@ class CRMLead(Document): # the agent is already set as an assignee return - assign({"assign_to": [agent], "doctype": "CRM Lead", "name": self.name}) + assign({"assign_to": [agent], "pagetype": "CRM Lead", "name": self.name}) def share_with_agent(self, agent): if not agent: return - docshares = frappe.get_all( + docshares = jingrow.get_all( "DocShare", - filters={"share_name": self.name, "share_doctype": self.doctype}, + filters={"share_name": self.name, "share_pagetype": self.pagetype}, fields=["name", "user"], ) shared_with = [d.user for d in docshares] + [agent] for user in shared_with: - if user == agent and not frappe.db.exists( + if user == agent and not jingrow.db.exists( "DocShare", - {"user": agent, "share_name": self.name, "share_doctype": self.doctype}, + {"user": agent, "share_name": self.name, "share_pagetype": self.pagetype}, ): - frappe.share.add_docshare( - self.doctype, + jingrow.share.add_docshare( + self.pagetype, self.name, agent, write=1, flags={"ignore_share_permission": True}, ) elif user != agent: - frappe.share.remove(self.doctype, self.name, user) + jingrow.share.remove(self.pagetype, self.name, user) def create_contact(self, existing_contact=None, throw=True): if not self.lead_name: @@ -125,7 +125,7 @@ class CRMLead(Document): self.update_lead_contact(existing_contact) return existing_contact - contact = frappe.new_doc("Contact") + contact = jingrow.new_pg("Contact") contact.update( { "first_name": self.first_name or self.lead_name, @@ -156,14 +156,14 @@ class CRMLead(Document): if not self.organization and not existing_organization: return - existing_organization = existing_organization or frappe.db.exists( + existing_organization = existing_organization or jingrow.db.exists( "CRM Organization", {"organization_name": self.organization} ) if existing_organization: self.db_set("organization", existing_organization) return existing_organization - organization = frappe.new_doc("CRM Organization") + organization = jingrow.new_pg("CRM Organization") organization.update( { "organization_name": self.organization, @@ -177,8 +177,8 @@ class CRMLead(Document): return organization.name def update_lead_contact(self, contact): - contact = frappe.get_cached_doc("Contact", contact) - frappe.db.set_value( + contact = jingrow.get_cached_pg("Contact", contact) + jingrow.db.set_value( "CRM Lead", self.name, { @@ -191,11 +191,11 @@ class CRMLead(Document): ) def contact_exists(self, throw=True): - email_exist = frappe.db.exists("Contact Email", {"email_id": self.email}) - phone_exist = frappe.db.exists("Contact Phone", {"phone": self.phone}) - mobile_exist = frappe.db.exists("Contact Phone", {"phone": self.mobile_no}) + email_exist = jingrow.db.exists("Contact Email", {"email_id": self.email}) + phone_exist = jingrow.db.exists("Contact Phone", {"phone": self.phone}) + mobile_exist = jingrow.db.exists("Contact Phone", {"phone": self.mobile_no}) - doctype = "Contact Email" if email_exist else "Contact Phone" + pagetype = "Contact Email" if email_exist else "Contact Phone" name = email_exist or phone_exist or mobile_exist if name: @@ -204,10 +204,10 @@ class CRMLead(Document): value = "{0}: {1}".format(text, data) - contact = frappe.db.get_value(doctype, name, "parent") + contact = jingrow.db.get_value(pagetype, name, "parent") if throw: - frappe.throw( + jingrow.throw( _("Contact already exists with {0}").format(value), title=_("Contact Already Exists"), ) @@ -216,7 +216,7 @@ class CRMLead(Document): return False def create_deal(self, contact, organization, deal=None): - new_deal = frappe.new_doc("CRM Deal") + new_deal = jingrow.new_pg("CRM Deal") lead_deal_map = { "lead_owner": "deal_owner", @@ -314,12 +314,12 @@ class CRMLead(Document): """ if not self.sla: return - sla = frappe.get_last_doc("CRM Service Level Agreement", {"name": self.sla}) + sla = jingrow.get_last_pg("CRM Service Level Agreement", {"name": self.sla}) if sla: sla.apply(self) def convert_to_deal(self, deal=None): - return convert_to_deal(lead=self.name, doc=self, deal=deal) + return convert_to_deal(lead=self.name, pg=self, deal=deal) @staticmethod def get_non_filterable_fields(): @@ -400,18 +400,18 @@ class CRMLead(Document): } -@frappe.whitelist() -def convert_to_deal(lead, doc=None, deal=None, existing_contact=None, existing_organization=None): - if not (doc and doc.flags.get("ignore_permissions")) and not frappe.has_permission( +@jingrow.whitelist() +def convert_to_deal(lead, pg=None, deal=None, existing_contact=None, existing_organization=None): + if not (pg and pg.flags.get("ignore_permissions")) and not jingrow.has_permission( "CRM Lead", "write", lead ): - frappe.throw(_("Not allowed to convert Lead to Deal"), frappe.PermissionError) + jingrow.throw(_("Not allowed to convert Lead to Deal"), jingrow.PermissionError) - lead = frappe.get_cached_doc("CRM Lead", lead) - if frappe.db.exists("CRM Lead Status", "Qualified"): + lead = jingrow.get_cached_pg("CRM Lead", lead) + if jingrow.db.exists("CRM Lead Status", "Qualified"): lead.db_set("status", "Qualified") lead.db_set("converted", 1) - if lead.sla and frappe.db.exists("CRM Communication Status", "Replied"): + if lead.sla and jingrow.db.exists("CRM Communication Status", "Replied"): lead.db_set("communication_status", "Replied") contact = lead.create_contact(existing_contact, False) organization = lead.create_organization(existing_organization) diff --git a/crm/fcrm/doctype/crm_lead/test_crm_lead.py b/crm/fcrm/doctype/crm_lead/test_crm_lead.py index bb59f72c..0160713b 100644 --- a/crm/fcrm/doctype/crm_lead/test_crm_lead.py +++ b/crm/fcrm/doctype/crm_lead/test_crm_lead.py @@ -1,8 +1,8 @@ # Copyright (c) 2023, JINGROW and Contributors # See license.txt -# import frappe -from frappe.tests import UnitTestCase +# import jingrow +from jingrow.tests import UnitTestCase class TestCRMLead(UnitTestCase): diff --git a/crm/fcrm/doctype/crm_lead_source/crm_lead_source.js b/crm/fcrm/doctype/crm_lead_source/crm_lead_source.js index cc3799ee..441ce65d 100644 --- a/crm/fcrm/doctype/crm_lead_source/crm_lead_source.js +++ b/crm/fcrm/doctype/crm_lead_source/crm_lead_source.js @@ -1,7 +1,7 @@ // Copyright (c) 2023, JINGROW and contributors // For license information, please see license.txt -// frappe.ui.form.on("CRM Lead Source", { +// jingrow.ui.form.on("CRM Lead Source", { // refresh(frm) { // }, diff --git a/crm/fcrm/doctype/crm_lead_source/crm_lead_source.json b/crm/fcrm/doctype/crm_lead_source/crm_lead_source.json index 87fb72f3..d0c9f00c 100644 --- a/crm/fcrm/doctype/crm_lead_source/crm_lead_source.json +++ b/crm/fcrm/doctype/crm_lead_source/crm_lead_source.json @@ -5,7 +5,7 @@ "autoname": "field:source_name", "creation": "2023-07-24 19:47:01.063203", "default_view": "List", - "doctype": "DocType", + "pagetype": "PageType", "editable_grid": 1, "engine": "InnoDB", "field_order": [ diff --git a/crm/fcrm/doctype/crm_lead_source/crm_lead_source.py b/crm/fcrm/doctype/crm_lead_source/crm_lead_source.py index b25f4f28..e138e59a 100644 --- a/crm/fcrm/doctype/crm_lead_source/crm_lead_source.py +++ b/crm/fcrm/doctype/crm_lead_source/crm_lead_source.py @@ -1,8 +1,8 @@ # Copyright (c) 2023, JINGROW and contributors # For license information, please see license.txt -# import frappe -from frappe.model.document import Document +# import jingrow +from jingrow.model.document import Document class CRMLeadSource(Document): diff --git a/crm/fcrm/doctype/crm_lead_source/test_crm_lead_source.py b/crm/fcrm/doctype/crm_lead_source/test_crm_lead_source.py index eff61587..b3c4ccc5 100644 --- a/crm/fcrm/doctype/crm_lead_source/test_crm_lead_source.py +++ b/crm/fcrm/doctype/crm_lead_source/test_crm_lead_source.py @@ -1,8 +1,8 @@ # Copyright (c) 2023, JINGROW and Contributors # See license.txt -# import frappe -from frappe.tests import UnitTestCase +# import jingrow +from jingrow.tests import UnitTestCase class TestCRMLeadSource(UnitTestCase): diff --git a/crm/fcrm/doctype/crm_lead_status/crm_lead_status.js b/crm/fcrm/doctype/crm_lead_status/crm_lead_status.js index 61576fc6..e7130cde 100644 --- a/crm/fcrm/doctype/crm_lead_status/crm_lead_status.js +++ b/crm/fcrm/doctype/crm_lead_status/crm_lead_status.js @@ -1,7 +1,7 @@ // Copyright (c) 2023, JINGROW and contributors // For license information, please see license.txt -// frappe.ui.form.on("CRM Lead Status", { +// jingrow.ui.form.on("CRM Lead Status", { // refresh(frm) { // }, diff --git a/crm/fcrm/doctype/crm_lead_status/crm_lead_status.json b/crm/fcrm/doctype/crm_lead_status/crm_lead_status.json index 21ca8b61..0449646f 100644 --- a/crm/fcrm/doctype/crm_lead_status/crm_lead_status.json +++ b/crm/fcrm/doctype/crm_lead_status/crm_lead_status.json @@ -3,7 +3,7 @@ "allow_rename": 1, "autoname": "field:lead_status", "creation": "2023-11-29 11:09:53.678414", - "doctype": "DocType", + "pagetype": "PageType", "engine": "InnoDB", "field_order": [ "lead_status", diff --git a/crm/fcrm/doctype/crm_lead_status/crm_lead_status.py b/crm/fcrm/doctype/crm_lead_status/crm_lead_status.py index 9aece306..6c54d61c 100644 --- a/crm/fcrm/doctype/crm_lead_status/crm_lead_status.py +++ b/crm/fcrm/doctype/crm_lead_status/crm_lead_status.py @@ -1,8 +1,8 @@ # Copyright (c) 2023, JINGROW and contributors # For license information, please see license.txt -# import frappe -from frappe.model.document import Document +# import jingrow +from jingrow.model.document import Document class CRMLeadStatus(Document): diff --git a/crm/fcrm/doctype/crm_lead_status/test_crm_lead_status.py b/crm/fcrm/doctype/crm_lead_status/test_crm_lead_status.py index 3bbaacee..53eac933 100644 --- a/crm/fcrm/doctype/crm_lead_status/test_crm_lead_status.py +++ b/crm/fcrm/doctype/crm_lead_status/test_crm_lead_status.py @@ -1,8 +1,8 @@ # Copyright (c) 2023, JINGROW and Contributors # See license.txt -# import frappe -from frappe.tests import UnitTestCase +# import jingrow +from jingrow.tests import UnitTestCase class TestCRMLeadStatus(UnitTestCase): diff --git a/crm/fcrm/doctype/crm_lost_reason/crm_lost_reason.js b/crm/fcrm/doctype/crm_lost_reason/crm_lost_reason.js index 6b8d4803..1b01c1ee 100644 --- a/crm/fcrm/doctype/crm_lost_reason/crm_lost_reason.js +++ b/crm/fcrm/doctype/crm_lost_reason/crm_lost_reason.js @@ -1,7 +1,7 @@ // Copyright (c) 2025, JINGROW and contributors // For license information, please see license.txt -// frappe.ui.form.on("CRM Lost Reason", { +// jingrow.ui.form.on("CRM Lost Reason", { // refresh(frm) { // }, diff --git a/crm/fcrm/doctype/crm_lost_reason/crm_lost_reason.json b/crm/fcrm/doctype/crm_lost_reason/crm_lost_reason.json index ce774060..ae452188 100644 --- a/crm/fcrm/doctype/crm_lost_reason/crm_lost_reason.json +++ b/crm/fcrm/doctype/crm_lost_reason/crm_lost_reason.json @@ -3,7 +3,7 @@ "allow_rename": 1, "autoname": "field:lost_reason", "creation": "2025-06-30 16:51:31.082360", - "doctype": "DocType", + "pagetype": "PageType", "engine": "InnoDB", "field_order": [ "lost_reason", diff --git a/crm/fcrm/doctype/crm_lost_reason/crm_lost_reason.py b/crm/fcrm/doctype/crm_lost_reason/crm_lost_reason.py index 18ed4f2b..8ca9efd9 100644 --- a/crm/fcrm/doctype/crm_lost_reason/crm_lost_reason.py +++ b/crm/fcrm/doctype/crm_lost_reason/crm_lost_reason.py @@ -1,8 +1,8 @@ # Copyright (c) 2025, JINGROW and contributors # For license information, please see license.txt -# import frappe -from frappe.model.document import Document +# import jingrow +from jingrow.model.document import Document class CRMLostReason(Document): diff --git a/crm/fcrm/doctype/crm_lost_reason/test_crm_lost_reason.py b/crm/fcrm/doctype/crm_lost_reason/test_crm_lost_reason.py index 46fee449..756f26fb 100644 --- a/crm/fcrm/doctype/crm_lost_reason/test_crm_lost_reason.py +++ b/crm/fcrm/doctype/crm_lost_reason/test_crm_lost_reason.py @@ -1,11 +1,11 @@ # Copyright (c) 2025, JINGROW and Contributors # See license.txt -# import frappe -from frappe.tests import IntegrationTestCase, UnitTestCase +# import jingrow +from jingrow.tests import IntegrationTestCase, UnitTestCase -# On IntegrationTestCase, the doctype test records and all +# On IntegrationTestCase, the pagetype test records and all # link-field test record dependencies are recursively loaded # Use these module variables to add/remove to/from that list EXTRA_TEST_RECORD_DEPENDENCIES = [] # eg. ["User"] diff --git a/crm/fcrm/doctype/crm_notification/crm_notification.js b/crm/fcrm/doctype/crm_notification/crm_notification.js index f5e1f7b9..b5af039c 100644 --- a/crm/fcrm/doctype/crm_notification/crm_notification.js +++ b/crm/fcrm/doctype/crm_notification/crm_notification.js @@ -1,7 +1,7 @@ // Copyright (c) 2024, JINGROW and contributors // For license information, please see license.txt -// frappe.ui.form.on("CRM Notification", { +// jingrow.ui.form.on("CRM Notification", { // refresh(frm) { // }, diff --git a/crm/fcrm/doctype/crm_notification/crm_notification.json b/crm/fcrm/doctype/crm_notification/crm_notification.json index f6bc0380..fe946579 100644 --- a/crm/fcrm/doctype/crm_notification/crm_notification.json +++ b/crm/fcrm/doctype/crm_notification/crm_notification.json @@ -2,7 +2,7 @@ "actions": [], "allow_rename": 1, "creation": "2024-01-29 19:31:13.613929", - "doctype": "DocType", + "pagetype": "PageType", "engine": "InnoDB", "field_order": [ "notification_text", @@ -13,11 +13,11 @@ "to_user", "read", "section_break_pbvx", - "reference_doctype", + "reference_pagetype", "reference_name", "column_break_eant", - "notification_type_doctype", - "notification_type_doc", + "notification_type_pagetype", + "notification_type_pg", "comment", "section_break_vpwa", "message" @@ -75,14 +75,14 @@ { "fieldname": "reference_name", "fieldtype": "Dynamic Link", - "label": "Reference Doc", - "options": "reference_doctype" + "label": "Reference Pg", + "options": "reference_pagetype" }, { - "fieldname": "reference_doctype", + "fieldname": "reference_pagetype", "fieldtype": "Link", - "label": "Reference Doctype", - "options": "DocType" + "label": "Reference Pagetype", + "options": "PageType" }, { "fieldname": "section_break_pbvx", @@ -93,16 +93,16 @@ "fieldtype": "Column Break" }, { - "fieldname": "notification_type_doctype", + "fieldname": "notification_type_pagetype", "fieldtype": "Link", - "label": "Notification Type Doctype", - "options": "DocType" + "label": "Notification Type Pagetype", + "options": "PageType" }, { - "fieldname": "notification_type_doc", + "fieldname": "notification_type_pg", "fieldtype": "Dynamic Link", - "label": "Notification Type Doc", - "options": "notification_type_doctype" + "label": "Notification Type Pg", + "options": "notification_type_pagetype" }, { "fieldname": "notification_text", diff --git a/crm/fcrm/doctype/crm_notification/crm_notification.py b/crm/fcrm/doctype/crm_notification/crm_notification.py index b08de5bb..ce98eaa8 100644 --- a/crm/fcrm/doctype/crm_notification/crm_notification.py +++ b/crm/fcrm/doctype/crm_notification/crm_notification.py @@ -1,37 +1,37 @@ # Copyright (c) 2024, JINGROW and contributors # For license information, please see license.txt -import frappe -from frappe import _ -from frappe.model.document import Document +import jingrow +from jingrow import _ +from jingrow.model.document import Document class CRMNotification(Document): def on_update(self): if self.to_user: - frappe.publish_realtime("crm_notification", user= self.to_user) + jingrow.publish_realtime("crm_notification", user= self.to_user) def notify_user(args): """ Notify the assigned user """ - args = frappe._dict(args) + args = jingrow._dict(args) if args.owner == args.assigned_to: return - values = frappe._dict( - doctype="CRM Notification", + values = jingrow._dict( + pagetype="CRM Notification", from_user=args.owner, to_user=args.assigned_to, type=args.notification_type, message=args.message, notification_text=args.notification_text, - notification_type_doctype=args.reference_doctype, - notification_type_doc=args.reference_docname, - reference_doctype=args.redirect_to_doctype, + notification_type_pagetype=args.reference_pagetype, + notification_type_pg=args.reference_docname, + reference_pagetype=args.redirect_to_pagetype, reference_name=args.redirect_to_docname, ) - if frappe.db.exists("CRM Notification", values): + if jingrow.db.exists("CRM Notification", values): return - frappe.get_doc(values).insert(ignore_permissions=True) + jingrow.get_pg(values).insert(ignore_permissions=True) diff --git a/crm/fcrm/doctype/crm_notification/test_crm_notification.py b/crm/fcrm/doctype/crm_notification/test_crm_notification.py index 332e4002..bcdc39ba 100644 --- a/crm/fcrm/doctype/crm_notification/test_crm_notification.py +++ b/crm/fcrm/doctype/crm_notification/test_crm_notification.py @@ -1,8 +1,8 @@ # Copyright (c) 2024, JINGROW and Contributors # See license.txt -# import frappe -from frappe.tests import UnitTestCase +# import jingrow +from jingrow.tests import UnitTestCase class TestCRMNotification(UnitTestCase): diff --git a/crm/fcrm/doctype/crm_organization/crm_organization.js b/crm/fcrm/doctype/crm_organization/crm_organization.js index 69473b2c..6dfc1ad3 100644 --- a/crm/fcrm/doctype/crm_organization/crm_organization.js +++ b/crm/fcrm/doctype/crm_organization/crm_organization.js @@ -1,7 +1,7 @@ // Copyright (c) 2023, JINGROW and contributors // For license information, please see license.txt -// frappe.ui.form.on("CRM Organization", { +// jingrow.ui.form.on("CRM Organization", { // refresh(frm) { // }, diff --git a/crm/fcrm/doctype/crm_organization/crm_organization.json b/crm/fcrm/doctype/crm_organization/crm_organization.json index 9486a0b4..7c513a11 100644 --- a/crm/fcrm/doctype/crm_organization/crm_organization.json +++ b/crm/fcrm/doctype/crm_organization/crm_organization.json @@ -4,7 +4,7 @@ "allow_rename": 1, "autoname": "field:organization_name", "creation": "2023-11-03 16:23:59.341751", - "doctype": "DocType", + "pagetype": "PageType", "engine": "InnoDB", "field_order": [ "organization_name", diff --git a/crm/fcrm/doctype/crm_organization/crm_organization.py b/crm/fcrm/doctype/crm_organization/crm_organization.py index 2422c5ea..d9f40fc1 100644 --- a/crm/fcrm/doctype/crm_organization/crm_organization.py +++ b/crm/fcrm/doctype/crm_organization/crm_organization.py @@ -1,10 +1,10 @@ # Copyright (c) 2023, JINGROW and contributors # For license information, please see license.txt -import frappe -from frappe.model.document import Document +import jingrow +from jingrow.model.document import Document -from crm.fcrm.doctype.fcrm_settings.fcrm_settings import get_exchange_rate +from crm.fcrm.pagetype.fcrm_settings.fcrm_settings import get_exchange_rate class CRMOrganization(Document): @@ -13,7 +13,7 @@ class CRMOrganization(Document): def update_exchange_rate(self): if self.has_value_changed("currency") or not self.exchange_rate: - system_currency = frappe.db.get_single_value("FCRM Settings", "currency") or "USD" + system_currency = jingrow.db.get_single_value("FCRM Settings", "currency") or "USD" exchange_rate = 1 if self.currency and self.currency != system_currency: exchange_rate = get_exchange_rate(self.currency, system_currency) diff --git a/crm/fcrm/doctype/crm_organization/test_crm_organization.py b/crm/fcrm/doctype/crm_organization/test_crm_organization.py index e78c1e00..c3d02d40 100644 --- a/crm/fcrm/doctype/crm_organization/test_crm_organization.py +++ b/crm/fcrm/doctype/crm_organization/test_crm_organization.py @@ -1,8 +1,8 @@ # Copyright (c) 2023, JINGROW and Contributors # See license.txt -# import frappe -from frappe.tests import UnitTestCase +# import jingrow +from jingrow.tests import UnitTestCase class TestCRMOrganization(UnitTestCase): diff --git a/crm/fcrm/doctype/crm_product/crm_product.js b/crm/fcrm/doctype/crm_product/crm_product.js index b1fd3750..7c3d76a1 100644 --- a/crm/fcrm/doctype/crm_product/crm_product.js +++ b/crm/fcrm/doctype/crm_product/crm_product.js @@ -1,9 +1,9 @@ // Copyright (c) 2025, JINGROW and contributors // For license information, please see license.txt -frappe.ui.form.on("CRM Product", { +jingrow.ui.form.on("CRM Product", { product_code: function (frm) { - if (!frm.doc.product_name) - frm.set_value("product_name", frm.doc.product_code); + if (!frm.pg.product_name) + frm.set_value("product_name", frm.pg.product_code); } }); diff --git a/crm/fcrm/doctype/crm_product/crm_product.json b/crm/fcrm/doctype/crm_product/crm_product.json index 18ed3466..fa49de26 100644 --- a/crm/fcrm/doctype/crm_product/crm_product.json +++ b/crm/fcrm/doctype/crm_product/crm_product.json @@ -4,7 +4,7 @@ "allow_rename": 1, "autoname": "field:product_code", "creation": "2025-04-28 11:45:09.309636", - "doctype": "DocType", + "pagetype": "PageType", "engine": "InnoDB", "field_order": [ "naming_series", diff --git a/crm/fcrm/doctype/crm_product/crm_product.py b/crm/fcrm/doctype/crm_product/crm_product.py index ede26731..88a14caa 100644 --- a/crm/fcrm/doctype/crm_product/crm_product.py +++ b/crm/fcrm/doctype/crm_product/crm_product.py @@ -1,8 +1,8 @@ # Copyright (c) 2025, JINGROW and contributors # For license information, please see license.txt -import frappe -from frappe.model.document import Document +import jingrow +from jingrow.model.document import Document class CRMProduct(Document): diff --git a/crm/fcrm/doctype/crm_product/test_crm_product.py b/crm/fcrm/doctype/crm_product/test_crm_product.py index c09a0502..024c023f 100644 --- a/crm/fcrm/doctype/crm_product/test_crm_product.py +++ b/crm/fcrm/doctype/crm_product/test_crm_product.py @@ -1,10 +1,10 @@ # Copyright (c) 2025, JINGROW and Contributors # See license.txt -# import frappe -from frappe.tests import IntegrationTestCase, UnitTestCase +# import jingrow +from jingrow.tests import IntegrationTestCase, UnitTestCase -# On IntegrationTestCase, the doctype test records and all +# On IntegrationTestCase, the pagetype test records and all # link-field test record dependencies are recursively loaded # Use these module variables to add/remove to/from that list EXTRA_TEST_RECORD_DEPENDENCIES = [] # eg. ["User"] diff --git a/crm/fcrm/doctype/crm_products/crm_products.json b/crm/fcrm/doctype/crm_products/crm_products.json index 2d96656b..ef3618a5 100644 --- a/crm/fcrm/doctype/crm_products/crm_products.json +++ b/crm/fcrm/doctype/crm_products/crm_products.json @@ -2,7 +2,7 @@ "actions": [], "allow_rename": 1, "creation": "2025-04-28 12:50:49.812915", - "doctype": "DocType", + "pagetype": "PageType", "editable_grid": 1, "engine": "InnoDB", "field_order": [ diff --git a/crm/fcrm/doctype/crm_products/crm_products.py b/crm/fcrm/doctype/crm_products/crm_products.py index afab9bca..535fdd07 100644 --- a/crm/fcrm/doctype/crm_products/crm_products.py +++ b/crm/fcrm/doctype/crm_products/crm_products.py @@ -1,22 +1,22 @@ # Copyright (c) 2025, JINGROW and contributors # For license information, please see license.txt -import frappe -from frappe.model.document import Document +import jingrow +from jingrow.model.document import Document class CRMProducts(Document): pass -def create_product_details_script(doctype): - if not frappe.db.exists("CRM Form Script", "Product Details Script for " + doctype): - script = get_product_details_script(doctype) - frappe.get_doc( +def create_product_details_script(pagetype): + if not jingrow.db.exists("CRM Form Script", "Product Details Script for " + pagetype): + script = get_product_details_script(pagetype) + jingrow.get_pg( { - "doctype": "CRM Form Script", - "name": "Product Details Script for " + doctype, - "dt": doctype, + "pagetype": "CRM Form Script", + "name": "Product Details Script for " + pagetype, + "dt": pagetype, "view": "Form", "script": script, "enabled": 1, @@ -25,11 +25,11 @@ def create_product_details_script(doctype): ).insert() -def get_product_details_script(doctype): - doctype_class = "class " + doctype.replace(" ", "") +def get_product_details_script(pagetype): + pagetype_class = "class " + pagetype.replace(" ", "") return ( - doctype_class + pagetype_class + " {" + """ update_total() { @@ -38,7 +38,7 @@ def get_product_details_script(doctype): let net_total = 0 let discount_applied = false - this.doc.products.forEach((d) => { + this.pg.products.forEach((d) => { total += d.amount net_total += d.net_amount if (d.discount_percentage > 0) { @@ -46,31 +46,31 @@ def get_product_details_script(doctype): } }) - this.doc.total = total - this.doc.net_total = net_total || total + this.pg.total = total + this.pg.net_total = net_total || total if (!net_total && discount_applied) { - this.doc.net_total = net_total + this.pg.net_total = net_total } } } class CRMProducts { products_add() { - let row = this.doc.getRow('products') + let row = this.pg.getRow('products') row.trigger('qty') - this.doc.trigger('update_total') + this.pg.trigger('update_total') } products_remove() { - this.doc.trigger('update_total') + this.pg.trigger('update_total') } async product_code(idx) { - let row = this.doc.getRow('products', idx) + let row = this.pg.getRow('products', idx) - let a = await call("frappe.client.get_value", { - doctype: "CRM Product", + let a = await call("jingrow.client.get_value", { + pagetype: "CRM Product", filters: { name: row.product_code }, fieldname: ["product_name", "standard_rate"], }) @@ -83,19 +83,19 @@ class CRMProducts { } qty(idx) { - let row = this.doc.getRow('products', idx) + let row = this.pg.getRow('products', idx) row.amount = row.qty * row.rate row.trigger('discount_percentage', idx) } rate() { - let row = this.doc.getRow('products') + let row = this.pg.getRow('products') row.amount = row.qty * row.rate row.trigger('discount_percentage') } discount_percentage(idx) { - let row = this.doc.getRow('products', idx) + let row = this.pg.getRow('products', idx) if (!row.discount_percentage) { row.net_amount = row.amount row.discount_amount = 0 @@ -104,7 +104,7 @@ class CRMProducts { row.discount_amount = (row.discount_percentage / 100) * row.amount row.net_amount = row.amount - row.discount_amount } - this.doc.trigger('update_total') + this.pg.trigger('update_total') } }""" ) diff --git a/crm/fcrm/doctype/crm_service_day/crm_service_day.json b/crm/fcrm/doctype/crm_service_day/crm_service_day.json index ddca9883..993a0eaa 100644 --- a/crm/fcrm/doctype/crm_service_day/crm_service_day.json +++ b/crm/fcrm/doctype/crm_service_day/crm_service_day.json @@ -2,7 +2,7 @@ "actions": [], "allow_rename": 1, "creation": "2023-12-04 16:07:20.400084", - "doctype": "DocType", + "pagetype": "PageType", "editable_grid": 1, "engine": "InnoDB", "field_order": [ diff --git a/crm/fcrm/doctype/crm_service_day/crm_service_day.py b/crm/fcrm/doctype/crm_service_day/crm_service_day.py index f6cfc38a..b313a978 100644 --- a/crm/fcrm/doctype/crm_service_day/crm_service_day.py +++ b/crm/fcrm/doctype/crm_service_day/crm_service_day.py @@ -1,8 +1,8 @@ # Copyright (c) 2023, JINGROW and contributors # For license information, please see license.txt -# import frappe -from frappe.model.document import Document +# import jingrow +from jingrow.model.document import Document class CRMServiceDay(Document): diff --git a/crm/fcrm/doctype/crm_service_level_agreement/crm_service_level_agreement.js b/crm/fcrm/doctype/crm_service_level_agreement/crm_service_level_agreement.js index cbae4800..f492f106 100644 --- a/crm/fcrm/doctype/crm_service_level_agreement/crm_service_level_agreement.js +++ b/crm/fcrm/doctype/crm_service_level_agreement/crm_service_level_agreement.js @@ -1,16 +1,16 @@ // Copyright (c) 2023, JINGROW and contributors // For license information, please see license.txt -frappe.ui.form.on("CRM Service Level Agreement", { +jingrow.ui.form.on("CRM Service Level Agreement", { validate(frm) { let default_priority_count = 0; - frm.doc.priorities.forEach(function (row) { + frm.pg.priorities.forEach(function (row) { if (row.default_priority) { default_priority_count++; } }); if (default_priority_count > 1) { - frappe.throw( + jingrow.throw( __("There can only be one default priority in Priorities table") ); } diff --git a/crm/fcrm/doctype/crm_service_level_agreement/crm_service_level_agreement.json b/crm/fcrm/doctype/crm_service_level_agreement/crm_service_level_agreement.json index 81fe90c9..af39eb43 100644 --- a/crm/fcrm/doctype/crm_service_level_agreement/crm_service_level_agreement.json +++ b/crm/fcrm/doctype/crm_service_level_agreement/crm_service_level_agreement.json @@ -3,7 +3,7 @@ "allow_rename": 1, "autoname": "field:sla_name", "creation": "2023-12-04 13:07:18.426211", - "doctype": "DocType", + "pagetype": "PageType", "engine": "InnoDB", "field_order": [ "apply_on", @@ -49,7 +49,7 @@ "fieldtype": "Column Break" }, { - "description": "Simple Python Expression, Example: doc.status == 'Open' and doc.lead_source == 'Ads'", + "description": "Simple Python Expression, Example: pg.status == 'Open' and pg.lead_source == 'Ads'", "fieldname": "condition", "fieldtype": "Code", "label": "Condition", @@ -59,8 +59,8 @@ "fieldname": "apply_on", "fieldtype": "Link", "label": "Apply On", - "link_filters": "[[{\"fieldname\":\"apply_on\",\"field_option\":\"DocType\"},\"name\",\"in\",[\"CRM Lead\",\"CRM Deal\"]]]", - "options": "DocType", + "link_filters": "[[{\"fieldname\":\"apply_on\",\"field_option\":\"PageType\"},\"name\",\"in\",[\"CRM Lead\",\"CRM Deal\"]]]", + "options": "PageType", "reqd": 1 }, { diff --git a/crm/fcrm/doctype/crm_service_level_agreement/crm_service_level_agreement.py b/crm/fcrm/doctype/crm_service_level_agreement/crm_service_level_agreement.py index 354c3ffc..63c2bf3e 100644 --- a/crm/fcrm/doctype/crm_service_level_agreement/crm_service_level_agreement.py +++ b/crm/fcrm/doctype/crm_service_level_agreement/crm_service_level_agreement.py @@ -1,11 +1,11 @@ # Copyright (c) 2023, JINGROW and contributors # For license information, please see license.txt -import frappe -from frappe import _ +import jingrow +from jingrow import _ from datetime import timedelta -from frappe.model.document import Document -from frappe.utils import ( +from jingrow.model.document import Document +from jingrow.utils import ( add_to_date, get_datetime, get_weekdays, @@ -13,7 +13,7 @@ from frappe.utils import ( now_datetime, time_diff_in_seconds, ) -from crm.fcrm.doctype.crm_service_level_agreement.utils import get_context +from crm.fcrm.pagetype.crm_service_level_agreement.utils import get_context class CRMServiceLevelAgreement(Document): @@ -23,13 +23,13 @@ class CRMServiceLevelAgreement(Document): def validate_default(self): if self.default: - other_slas = frappe.get_all( + other_slas = jingrow.get_all( "CRM Service Level Agreement", filters={"apply_on": self.apply_on, "default": True, "name": ["!=", self.name]}, fields=["name"], ) if other_slas: - frappe.throw( + jingrow.throw( _( "Default Service Level Agreement already exists for {0}" ).format(self.apply_on) @@ -39,73 +39,73 @@ class CRMServiceLevelAgreement(Document): if not self.condition: return try: - temp_doc = frappe.new_doc(self.apply_on) - frappe.safe_eval(self.condition, None, get_context(temp_doc)) + temp_pg = jingrow.new_pg(self.apply_on) + jingrow.safe_eval(self.condition, None, get_context(temp_pg)) except Exception as e: - frappe.throw( + jingrow.throw( _("The Condition '{0}' is invalid: {1}").format(self.condition, str(e)) ) - def apply(self, doc: Document): - self.handle_creation(doc) - self.handle_communication_status(doc) - self.handle_targets(doc) - self.handle_sla_status(doc) + def apply(self, pg: Document): + self.handle_creation(pg) + self.handle_communication_status(pg) + self.handle_targets(pg) + self.handle_sla_status(pg) - def handle_creation(self, doc: Document): - doc.sla_creation = doc.sla_creation or now_datetime() + def handle_creation(self, pg: Document): + pg.sla_creation = pg.sla_creation or now_datetime() - def handle_communication_status(self, doc: Document): - if doc.is_new() or not doc.has_value_changed("communication_status"): + def handle_communication_status(self, pg: Document): + if pg.is_new() or not pg.has_value_changed("communication_status"): return - self.set_first_responded_on(doc) - self.set_first_response_time(doc) + self.set_first_responded_on(pg) + self.set_first_response_time(pg) - def set_first_responded_on(self, doc: Document): - if doc.communication_status != self.get_default_priority(): - doc.first_responded_on = ( - doc.first_responded_on or now_datetime() + def set_first_responded_on(self, pg: Document): + if pg.communication_status != self.get_default_priority(): + pg.first_responded_on = ( + pg.first_responded_on or now_datetime() ) - def set_first_response_time(self, doc: Document): - start_at = doc.sla_creation - end_at = doc.first_responded_on + def set_first_response_time(self, pg: Document): + start_at = pg.sla_creation + end_at = pg.first_responded_on if not start_at or not end_at: return - doc.first_response_time = self.calc_elapsed_time(start_at, end_at) + pg.first_response_time = self.calc_elapsed_time(start_at, end_at) - def handle_targets(self, doc: Document): - self.set_response_by(doc) + def handle_targets(self, pg: Document): + self.set_response_by(pg) - def set_response_by(self, doc: Document): - start_time = doc.sla_creation - communication_status = doc.communication_status + def set_response_by(self, pg: Document): + start_time = pg.sla_creation + communication_status = pg.communication_status priorities = self.get_priorities() priority = priorities.get(communication_status) - if not priority or doc.response_by: + if not priority or pg.response_by: return first_response_time = priority.get("first_response_time", 0) end_time = self.calc_time(start_time, first_response_time) if end_time: - doc.response_by = end_time + pg.response_by = end_time - def handle_sla_status(self, doc: Document): - is_failed = self.is_first_response_failed(doc) + def handle_sla_status(self, pg: Document): + is_failed = self.is_first_response_failed(pg) options = { "Fulfilled": True, - "First Response Due": not doc.first_responded_on, + "First Response Due": not pg.first_responded_on, "Failed": is_failed, } for status in options: if options[status]: - doc.sla_status = status + pg.sla_status = status - def is_first_response_failed(self, doc: Document): - if not doc.first_responded_on: - return get_datetime(doc.response_by) < now_datetime() - return get_datetime(doc.response_by) < get_datetime(doc.first_responded_on) + def is_first_response_failed(self, pg: Document): + if not pg.first_responded_on: + return get_datetime(pg.response_by) < now_datetime() + return get_datetime(pg.response_by) < get_datetime(pg.first_responded_on) def calc_time( self, @@ -219,7 +219,7 @@ class CRMServiceLevelAgreement(Document): res = [] if not self.holiday_list: return res - holiday_list = frappe.get_doc("CRM Holiday List", self.holiday_list) + holiday_list = jingrow.get_pg("CRM Holiday List", self.holiday_list) for row in holiday_list.holidays: res.append(row.date) return res diff --git a/crm/fcrm/doctype/crm_service_level_agreement/test_crm_service_level_agreement.py b/crm/fcrm/doctype/crm_service_level_agreement/test_crm_service_level_agreement.py index 32b94be6..60aafb67 100644 --- a/crm/fcrm/doctype/crm_service_level_agreement/test_crm_service_level_agreement.py +++ b/crm/fcrm/doctype/crm_service_level_agreement/test_crm_service_level_agreement.py @@ -1,8 +1,8 @@ # Copyright (c) 2023, JINGROW and Contributors # See license.txt -# import frappe -from frappe.tests import UnitTestCase +# import jingrow +from jingrow.tests import UnitTestCase class TestCRMServiceLevelAgreement(UnitTestCase): diff --git a/crm/fcrm/doctype/crm_service_level_agreement/utils.py b/crm/fcrm/doctype/crm_service_level_agreement/utils.py index 809dcafe..433573e4 100644 --- a/crm/fcrm/doctype/crm_service_level_agreement/utils.py +++ b/crm/fcrm/doctype/crm_service_level_agreement/utils.py @@ -1,25 +1,25 @@ -import frappe -from frappe.model.document import Document -from frappe.query_builder import JoinType -from frappe.utils.safe_exec import get_safe_globals -from frappe.utils import now_datetime +import jingrow +from jingrow.model.document import Document +from jingrow.query_builder import JoinType +from jingrow.utils.safe_exec import get_safe_globals +from jingrow.utils import now_datetime from pypika import Criterion -def get_sla(doc: Document) -> Document: +def get_sla(pg: Document) -> Document: """ - Get Service Level Agreement for `doc` + Get Service Level Agreement for `pg` - :param doc: Lead/Deal to use + :param pg: Lead/Deal to use :return: Applicable SLA """ - SLA = frappe.qb.DocType("CRM Service Level Agreement") - Priority = frappe.qb.DocType("CRM Service Level Priority") + SLA = jingrow.qb.PageType("CRM Service Level Agreement") + Priority = jingrow.qb.PageType("CRM Service Level Priority") now = now_datetime() - priority = doc.communication_status + priority = pg.communication_status q = ( - frappe.qb.from_(SLA) + jingrow.qb.from_(SLA) .select(SLA.name, SLA.condition) - .where(SLA.apply_on == doc.doctype) + .where(SLA.apply_on == pg.pagetype) .where(SLA.enabled == True) .where(Criterion.any([SLA.start_date.isnull(), SLA.start_date <= now])) .where(Criterion.any([SLA.end_date.isnull(), SLA.end_date >= now])) @@ -42,7 +42,7 @@ def get_sla(doc: Document) -> Document: for sla in sla_list: cond = sla.get("condition") - if not cond or frappe.safe_eval(cond, None, get_context(doc)): + if not cond or jingrow.safe_eval(cond, None, get_context(pg)): res = sla break return res @@ -51,11 +51,11 @@ def get_context(d: Document) -> dict: """ Get safe context for `safe_eval` - :param doc: `Document` to add in context - :return: Context with `doc` and safe variables + :param pg: `Document` to add in context + :return: Context with `pg` and safe variables """ - utils = get_safe_globals().get("frappe").get("utils") + utils = get_safe_globals().get("jingrow").get("utils") return { - "doc": d.as_dict(), - "frappe": frappe._dict(utils=utils), + "pg": d.as_dict(), + "jingrow": jingrow._dict(utils=utils), } \ No newline at end of file diff --git a/crm/fcrm/doctype/crm_service_level_priority/crm_service_level_priority.js b/crm/fcrm/doctype/crm_service_level_priority/crm_service_level_priority.js index ce6dee9d..e80a74a2 100644 --- a/crm/fcrm/doctype/crm_service_level_priority/crm_service_level_priority.js +++ b/crm/fcrm/doctype/crm_service_level_priority/crm_service_level_priority.js @@ -1,7 +1,7 @@ // Copyright (c) 2023, JINGROW and contributors // For license information, please see license.txt -// frappe.ui.form.on("CRM Service Level Priority", { +// jingrow.ui.form.on("CRM Service Level Priority", { // refresh(frm) { // }, diff --git a/crm/fcrm/doctype/crm_service_level_priority/crm_service_level_priority.json b/crm/fcrm/doctype/crm_service_level_priority/crm_service_level_priority.json index ede5c8c0..bd2ff4cf 100644 --- a/crm/fcrm/doctype/crm_service_level_priority/crm_service_level_priority.json +++ b/crm/fcrm/doctype/crm_service_level_priority/crm_service_level_priority.json @@ -2,7 +2,7 @@ "actions": [], "allow_rename": 1, "creation": "2023-12-04 13:18:58.028384", - "doctype": "DocType", + "pagetype": "PageType", "editable_grid": 1, "engine": "InnoDB", "field_order": [ diff --git a/crm/fcrm/doctype/crm_service_level_priority/crm_service_level_priority.py b/crm/fcrm/doctype/crm_service_level_priority/crm_service_level_priority.py index fa0d6210..fe373cc5 100644 --- a/crm/fcrm/doctype/crm_service_level_priority/crm_service_level_priority.py +++ b/crm/fcrm/doctype/crm_service_level_priority/crm_service_level_priority.py @@ -1,8 +1,8 @@ # Copyright (c) 2023, JINGROW and contributors # For license information, please see license.txt -# import frappe -from frappe.model.document import Document +# import jingrow +from jingrow.model.document import Document class CRMServiceLevelPriority(Document): diff --git a/crm/fcrm/doctype/crm_service_level_priority/test_crm_service_level_priority.py b/crm/fcrm/doctype/crm_service_level_priority/test_crm_service_level_priority.py index e32ffeec..0248c03b 100644 --- a/crm/fcrm/doctype/crm_service_level_priority/test_crm_service_level_priority.py +++ b/crm/fcrm/doctype/crm_service_level_priority/test_crm_service_level_priority.py @@ -1,8 +1,8 @@ # Copyright (c) 2023, JINGROW and Contributors # See license.txt -# import frappe -from frappe.tests import UnitTestCase +# import jingrow +from jingrow.tests import UnitTestCase class TestCRMServiceLevelPriority(UnitTestCase): diff --git a/crm/fcrm/doctype/crm_status_change_log/crm_status_change_log.json b/crm/fcrm/doctype/crm_status_change_log/crm_status_change_log.json index 15f55abd..f3e3da2c 100644 --- a/crm/fcrm/doctype/crm_status_change_log/crm_status_change_log.json +++ b/crm/fcrm/doctype/crm_status_change_log/crm_status_change_log.json @@ -2,7 +2,7 @@ "actions": [], "allow_rename": 1, "creation": "2024-01-06 13:15:31.392201", - "doctype": "DocType", + "pagetype": "PageType", "editable_grid": 1, "engine": "InnoDB", "field_order": [ diff --git a/crm/fcrm/doctype/crm_status_change_log/crm_status_change_log.py b/crm/fcrm/doctype/crm_status_change_log/crm_status_change_log.py index 5a8173fb..d4118973 100644 --- a/crm/fcrm/doctype/crm_status_change_log/crm_status_change_log.py +++ b/crm/fcrm/doctype/crm_status_change_log/crm_status_change_log.py @@ -3,9 +3,9 @@ from datetime import datetime -import frappe -from frappe.model.document import Document -from frappe.utils import add_to_date, get_datetime +import jingrow +from jingrow.model.document import Document +from jingrow.utils import add_to_date, get_datetime class CRMStatusChangeLog(Document): @@ -21,17 +21,17 @@ def get_duration(from_date, to_date): return duration.total_seconds() -def add_status_change_log(doc): - to_status_type = frappe.db.get_value("CRM Deal Status", doc.status, "type") if doc.status else None +def add_status_change_log(pg): + to_status_type = jingrow.db.get_value("CRM Deal Status", pg.status, "type") if pg.status else None - if not doc.is_new(): - previous_status = doc.get_doc_before_save().status if doc.get_doc_before_save() else None + if not pg.is_new(): + previous_status = pg.get_pg_before_save().status if pg.get_pg_before_save() else None previous_status_type = ( - frappe.db.get_value("CRM Deal Status", previous_status, "type") if previous_status else None + jingrow.db.get_value("CRM Deal Status", previous_status, "type") if previous_status else None ) - if not doc.status_change_log and previous_status: + if not pg.status_change_log and previous_status: now_minus_one_minute = add_to_date(datetime.now(), minutes=-1) - doc.append( + pg.append( "status_change_log", { "from": previous_status, @@ -40,25 +40,25 @@ def add_status_change_log(doc): "to_type": "", "from_date": now_minus_one_minute, "to_date": "", - "log_owner": frappe.session.user, + "log_owner": jingrow.session.user, }, ) - last_status_change = doc.status_change_log[-1] - last_status_change.to = doc.status + last_status_change = pg.status_change_log[-1] + last_status_change.to = pg.status last_status_change.to_type = to_status_type or "" last_status_change.to_date = datetime.now() - last_status_change.log_owner = frappe.session.user + last_status_change.log_owner = jingrow.session.user last_status_change.duration = get_duration(last_status_change.from_date, last_status_change.to_date) - doc.append( + pg.append( "status_change_log", { - "from": doc.status, + "from": pg.status, "from_type": to_status_type or "", "to": "", "to_type": "", "from_date": datetime.now(), "to_date": "", - "log_owner": frappe.session.user, + "log_owner": jingrow.session.user, }, ) diff --git a/crm/fcrm/doctype/crm_task/crm_task.js b/crm/fcrm/doctype/crm_task/crm_task.js index af5bdcb0..c76b2ae0 100644 --- a/crm/fcrm/doctype/crm_task/crm_task.js +++ b/crm/fcrm/doctype/crm_task/crm_task.js @@ -1,7 +1,7 @@ // Copyright (c) 2023, JINGROW and contributors // For license information, please see license.txt -// frappe.ui.form.on("CRM Task", { +// jingrow.ui.form.on("CRM Task", { // refresh(frm) { // }, diff --git a/crm/fcrm/doctype/crm_task/crm_task.json b/crm/fcrm/doctype/crm_task/crm_task.json index cdb95c61..6b241a14 100644 --- a/crm/fcrm/doctype/crm_task/crm_task.json +++ b/crm/fcrm/doctype/crm_task/crm_task.json @@ -4,14 +4,14 @@ "autoname": "autoincrement", "creation": "2023-09-28 15:04:28.084159", "default_view": "List", - "doctype": "DocType", + "pagetype": "PageType", "editable_grid": 1, "engine": "InnoDB", "field_order": [ "title", "priority", "start_date", - "reference_doctype", + "reference_pagetype", "reference_docname", "column_break_cqua", "assigned_to", @@ -73,16 +73,16 @@ }, { "default": "CRM Lead", - "fieldname": "reference_doctype", + "fieldname": "reference_pagetype", "fieldtype": "Link", "label": "Reference Document Type", - "options": "DocType" + "options": "PageType" }, { "fieldname": "reference_docname", "fieldtype": "Dynamic Link", - "label": "Reference Doc", - "options": "reference_doctype" + "label": "Reference Pg", + "options": "reference_pagetype" } ], "index_web_pages_for_search": 1, diff --git a/crm/fcrm/doctype/crm_task/crm_task.py b/crm/fcrm/doctype/crm_task/crm_task.py index 56afff72..dbf1b7cf 100644 --- a/crm/fcrm/doctype/crm_task/crm_task.py +++ b/crm/fcrm/doctype/crm_task/crm_task.py @@ -1,11 +1,11 @@ # Copyright (c) 2023, JINGROW and contributors # For license information, please see license.txt -import frappe -from frappe import _ -from frappe.model.document import Document -from frappe.desk.form.assign_to import add as assign, remove as unassign -from crm.fcrm.doctype.crm_notification.crm_notification import notify_user +import jingrow +from jingrow import _ +from jingrow.model.document import Document +from jingrow.desk.form.assign_to import add as assign, remove as unassign +from crm.fcrm.pagetype.crm_notification.crm_notification import notify_user class CRMTask(Document): @@ -16,18 +16,18 @@ class CRMTask(Document): if self.is_new() or not self.assigned_to: return - if self.get_doc_before_save().assigned_to != self.assigned_to: - self.unassign_from_previous_user(self.get_doc_before_save().assigned_to) + if self.get_pg_before_save().assigned_to != self.assigned_to: + self.unassign_from_previous_user(self.get_pg_before_save().assigned_to) self.assign_to() def unassign_from_previous_user(self, user): - unassign(self.doctype, self.name, user) + unassign(self.pagetype, self.name, user) def assign_to(self): if self.assigned_to: assign({ "assign_to": [self.assigned_to], - "doctype": self.doctype, + "pagetype": self.pagetype, "name": self.name, "description": self.title or self.description, }) @@ -82,7 +82,7 @@ class CRMTask(Document): "due_date", "status", "priority", - "reference_doctype", + "reference_pagetype", "reference_docname", "modified", ] diff --git a/crm/fcrm/doctype/crm_task/test_crm_task.py b/crm/fcrm/doctype/crm_task/test_crm_task.py index 5d949969..52a8c03b 100644 --- a/crm/fcrm/doctype/crm_task/test_crm_task.py +++ b/crm/fcrm/doctype/crm_task/test_crm_task.py @@ -1,8 +1,8 @@ # Copyright (c) 2023, JINGROW and Contributors # See license.txt -# import frappe -from frappe.tests import UnitTestCase +# import jingrow +from jingrow.tests import UnitTestCase class TestCRMTask(UnitTestCase): diff --git a/crm/fcrm/doctype/crm_telephony_agent/crm_telephony_agent.js b/crm/fcrm/doctype/crm_telephony_agent/crm_telephony_agent.js index 849274d8..b08936d6 100644 --- a/crm/fcrm/doctype/crm_telephony_agent/crm_telephony_agent.js +++ b/crm/fcrm/doctype/crm_telephony_agent/crm_telephony_agent.js @@ -1,7 +1,7 @@ // Copyright (c) 2025, JINGROW and contributors // For license information, please see license.txt -// frappe.ui.form.on("CRM Telephony Agent", { +// jingrow.ui.form.on("CRM Telephony Agent", { // refresh(frm) { // }, diff --git a/crm/fcrm/doctype/crm_telephony_agent/crm_telephony_agent.json b/crm/fcrm/doctype/crm_telephony_agent/crm_telephony_agent.json index 768ca5a0..18918731 100644 --- a/crm/fcrm/doctype/crm_telephony_agent/crm_telephony_agent.json +++ b/crm/fcrm/doctype/crm_telephony_agent/crm_telephony_agent.json @@ -3,7 +3,7 @@ "allow_rename": 1, "autoname": "field:user", "creation": "2025-01-11 16:12:46.602782", - "doctype": "DocType", + "pagetype": "PageType", "engine": "InnoDB", "field_order": [ "user", diff --git a/crm/fcrm/doctype/crm_telephony_agent/crm_telephony_agent.py b/crm/fcrm/doctype/crm_telephony_agent/crm_telephony_agent.py index 324eabcd..a675a5d8 100644 --- a/crm/fcrm/doctype/crm_telephony_agent/crm_telephony_agent.py +++ b/crm/fcrm/doctype/crm_telephony_agent/crm_telephony_agent.py @@ -1,9 +1,9 @@ # Copyright (c) 2025, JINGROW and contributors # For license information, please see license.txt -import frappe -from frappe import _ -from frappe.model.document import Document +import jingrow +from jingrow import _ +from jingrow.model.document import Document class CRMTelephonyAgent(Document): @@ -19,8 +19,8 @@ class CRMTelephonyAgent(Document): is_primary = [phone.number for phone in self.phone_nos if phone.get("is_primary")] if len(is_primary) > 1: - frappe.throw( - _("Only one {0} can be set as primary.").format(frappe.bold(frappe.unscrub("mobile_no"))) + jingrow.throw( + _("Only one {0} can be set as primary.").format(jingrow.bold(jingrow.unscrub("mobile_no"))) ) primary_number_exists = False diff --git a/crm/fcrm/doctype/crm_telephony_agent/test_crm_telephony_agent.py b/crm/fcrm/doctype/crm_telephony_agent/test_crm_telephony_agent.py index 8c614415..1d5ca22e 100644 --- a/crm/fcrm/doctype/crm_telephony_agent/test_crm_telephony_agent.py +++ b/crm/fcrm/doctype/crm_telephony_agent/test_crm_telephony_agent.py @@ -1,10 +1,10 @@ # Copyright (c) 2025, JINGROW and Contributors # See license.txt -# import frappe -from frappe.tests import IntegrationTestCase, UnitTestCase +# import jingrow +from jingrow.tests import IntegrationTestCase, UnitTestCase -# On IntegrationTestCase, the doctype test records and all +# On IntegrationTestCase, the pagetype test records and all # link-field test record dependencies are recursively loaded # Use these module variables to add/remove to/from that list EXTRA_TEST_RECORD_DEPENDENCIES = [] # eg. ["User"] diff --git a/crm/fcrm/doctype/crm_telephony_phone/crm_telephony_phone.json b/crm/fcrm/doctype/crm_telephony_phone/crm_telephony_phone.json index 6450a96a..ddb1a1ae 100644 --- a/crm/fcrm/doctype/crm_telephony_phone/crm_telephony_phone.json +++ b/crm/fcrm/doctype/crm_telephony_phone/crm_telephony_phone.json @@ -2,7 +2,7 @@ "actions": [], "allow_rename": 1, "creation": "2025-01-19 13:57:01.702519", - "doctype": "DocType", + "pagetype": "PageType", "editable_grid": 1, "engine": "InnoDB", "field_order": [ diff --git a/crm/fcrm/doctype/crm_telephony_phone/crm_telephony_phone.py b/crm/fcrm/doctype/crm_telephony_phone/crm_telephony_phone.py index dc42a2d3..c43987cb 100644 --- a/crm/fcrm/doctype/crm_telephony_phone/crm_telephony_phone.py +++ b/crm/fcrm/doctype/crm_telephony_phone/crm_telephony_phone.py @@ -1,8 +1,8 @@ # Copyright (c) 2025, JINGROW and contributors # For license information, please see license.txt -# import frappe -from frappe.model.document import Document +# import jingrow +from jingrow.model.document import Document class CRMTelephonyPhone(Document): diff --git a/crm/fcrm/doctype/crm_territory/crm_territory.js b/crm/fcrm/doctype/crm_territory/crm_territory.js index 9e9820a8..59090c51 100644 --- a/crm/fcrm/doctype/crm_territory/crm_territory.js +++ b/crm/fcrm/doctype/crm_territory/crm_territory.js @@ -1,7 +1,7 @@ // Copyright (c) 2024, JINGROW and contributors // For license information, please see license.txt -// frappe.ui.form.on("CRM Territory", { +// jingrow.ui.form.on("CRM Territory", { // refresh(frm) { // }, diff --git a/crm/fcrm/doctype/crm_territory/crm_territory.json b/crm/fcrm/doctype/crm_territory/crm_territory.json index 91e3b09c..ddc7b7b6 100644 --- a/crm/fcrm/doctype/crm_territory/crm_territory.json +++ b/crm/fcrm/doctype/crm_territory/crm_territory.json @@ -4,7 +4,7 @@ "allow_rename": 1, "autoname": "field:territory_name", "creation": "2024-01-04 18:52:58.872535", - "doctype": "DocType", + "pagetype": "PageType", "engine": "InnoDB", "field_order": [ "territory_name", diff --git a/crm/fcrm/doctype/crm_territory/crm_territory.py b/crm/fcrm/doctype/crm_territory/crm_territory.py index 5ec58c91..c52ae5ba 100644 --- a/crm/fcrm/doctype/crm_territory/crm_territory.py +++ b/crm/fcrm/doctype/crm_territory/crm_territory.py @@ -1,8 +1,8 @@ # Copyright (c) 2024, JINGROW and contributors # For license information, please see license.txt -# import frappe -from frappe.model.document import Document +# import jingrow +from jingrow.model.document import Document class CRMTerritory(Document): diff --git a/crm/fcrm/doctype/crm_territory/test_crm_territory.py b/crm/fcrm/doctype/crm_territory/test_crm_territory.py index 4e268dd3..eccc9506 100644 --- a/crm/fcrm/doctype/crm_territory/test_crm_territory.py +++ b/crm/fcrm/doctype/crm_territory/test_crm_territory.py @@ -1,8 +1,8 @@ # Copyright (c) 2024, JINGROW and Contributors # See license.txt -# import frappe -from frappe.tests import UnitTestCase +# import jingrow +from jingrow.tests import UnitTestCase class TestCRMTerritory(UnitTestCase): diff --git a/crm/fcrm/doctype/crm_twilio_settings/crm_twilio_settings.js b/crm/fcrm/doctype/crm_twilio_settings/crm_twilio_settings.js index cb8e0bcb..c59f3c65 100644 --- a/crm/fcrm/doctype/crm_twilio_settings/crm_twilio_settings.js +++ b/crm/fcrm/doctype/crm_twilio_settings/crm_twilio_settings.js @@ -1,7 +1,7 @@ // Copyright (c) 2023, JINGROW and contributors // For license information, please see license.txt -// frappe.ui.form.on("CRM Twilio Settings", { +// jingrow.ui.form.on("CRM Twilio Settings", { // refresh(frm) { // }, diff --git a/crm/fcrm/doctype/crm_twilio_settings/crm_twilio_settings.json b/crm/fcrm/doctype/crm_twilio_settings/crm_twilio_settings.json index 233b6190..9a600fc2 100644 --- a/crm/fcrm/doctype/crm_twilio_settings/crm_twilio_settings.json +++ b/crm/fcrm/doctype/crm_twilio_settings/crm_twilio_settings.json @@ -3,7 +3,7 @@ "allow_rename": 1, "creation": "2023-08-17 18:38:02.655918", "default_view": "List", - "doctype": "DocType", + "pagetype": "PageType", "editable_grid": 1, "engine": "InnoDB", "field_order": [ @@ -28,7 +28,7 @@ "fieldtype": "Data", "in_list_view": 1, "label": "Account SID", - "mandatory_depends_on": "eval: doc.enabled" + "mandatory_depends_on": "eval: pg.enabled" }, { "depends_on": "enabled", @@ -56,7 +56,7 @@ "fieldtype": "Password", "in_list_view": 1, "label": "Auth Token", - "mandatory_depends_on": "eval: doc.enabled" + "mandatory_depends_on": "eval: pg.enabled" }, { "depends_on": "enabled", diff --git a/crm/fcrm/doctype/crm_twilio_settings/crm_twilio_settings.py b/crm/fcrm/doctype/crm_twilio_settings/crm_twilio_settings.py index e04dbf5e..5deee3cf 100644 --- a/crm/fcrm/doctype/crm_twilio_settings/crm_twilio_settings.py +++ b/crm/fcrm/doctype/crm_twilio_settings/crm_twilio_settings.py @@ -1,20 +1,20 @@ # Copyright (c) 2023, JINGROW and contributors # For license information, please see license.txt -import frappe -from frappe import _ -from frappe.model.document import Document +import jingrow +from jingrow import _ +from jingrow.model.document import Document from twilio.rest import Client class CRMTwilioSettings(Document): - friendly_resource_name = "Frappe CRM" # System creates TwiML app & API keys with this name. + friendly_resource_name = "Jingrow CRM" # System creates TwiML app & API keys with this name. def validate(self): self.validate_twilio_account() def on_update(self): - # Single doctype records are created in DB at time of installation and those field values are set as null. + # Single pagetype records are created in DB at time of installation and those field values are set as null. # This condition make sure that we handle null. if not self.account_sid: return @@ -30,7 +30,7 @@ class CRMTwilioSettings(Document): twilio.api.accounts(self.account_sid).fetch() return twilio except Exception: - frappe.throw(_("Invalid Account SID or Auth Token.")) + jingrow.throw(_("Invalid Account SID or Auth Token.")) def set_api_credentials(self, twilio): """Generate Twilio API credentials if not exist and update them.""" @@ -39,7 +39,7 @@ class CRMTwilioSettings(Document): new_key = self.create_api_key(twilio) self.api_key = new_key.sid self.api_secret = new_key.secret - frappe.db.set_value( + jingrow.db.set_value( "CRM Twilio Settings", "CRM Twilio Settings", {"api_key": self.api_key, "api_secret": self.api_secret}, @@ -49,15 +49,15 @@ class CRMTwilioSettings(Document): """Generate TwiML app credentials if not exist and update them.""" credentials = self.get_application(twilio) or self.create_application(twilio) self.twiml_sid = credentials.sid - frappe.db.set_value("CRM Twilio Settings", "CRM Twilio Settings", "twiml_sid", self.twiml_sid) + jingrow.db.set_value("CRM Twilio Settings", "CRM Twilio Settings", "twiml_sid", self.twiml_sid) def create_api_key(self, twilio): """Create API keys in twilio account.""" try: return twilio.new_keys.create(friendly_name=self.friendly_resource_name) except Exception: - frappe.log_error(title=_("Twilio API credential creation error.")) - frappe.throw(_("Twilio API credential creation error.")) + jingrow.log_error(title=_("Twilio API credential creation error.")) + jingrow.throw(_("Twilio API credential creation error.")) def get_twilio_voice_url(self): url_path = "/api/method/crm.integrations.twilio.api.voice" @@ -79,6 +79,6 @@ class CRMTwilioSettings(Document): def get_public_url(path: str | None = None): - from frappe.utils import get_url + from jingrow.utils import get_url return get_url().split(":8", 1)[0] + path diff --git a/crm/fcrm/doctype/crm_twilio_settings/test_crm_twilio_settings.py b/crm/fcrm/doctype/crm_twilio_settings/test_crm_twilio_settings.py index 26dbbf40..05ab9b07 100644 --- a/crm/fcrm/doctype/crm_twilio_settings/test_crm_twilio_settings.py +++ b/crm/fcrm/doctype/crm_twilio_settings/test_crm_twilio_settings.py @@ -1,8 +1,8 @@ # Copyright (c) 2023, JINGROW and Contributors # See license.txt -# import frappe -from frappe.tests import UnitTestCase +# import jingrow +from jingrow.tests import UnitTestCase class TestCRMTwilioSettings(UnitTestCase): diff --git a/crm/fcrm/doctype/crm_view_settings/crm_view_settings.js b/crm/fcrm/doctype/crm_view_settings/crm_view_settings.js index 45919e5a..f1a13534 100644 --- a/crm/fcrm/doctype/crm_view_settings/crm_view_settings.js +++ b/crm/fcrm/doctype/crm_view_settings/crm_view_settings.js @@ -1,7 +1,7 @@ // Copyright (c) 2023, JINGROW and contributors // For license information, please see license.txt -// frappe.ui.form.on("CRM View Settings", { +// jingrow.ui.form.on("CRM View Settings", { // refresh(frm) { // }, diff --git a/crm/fcrm/doctype/crm_view_settings/crm_view_settings.json b/crm/fcrm/doctype/crm_view_settings/crm_view_settings.json index e8b9d8cc..705b248d 100644 --- a/crm/fcrm/doctype/crm_view_settings/crm_view_settings.json +++ b/crm/fcrm/doctype/crm_view_settings/crm_view_settings.json @@ -2,7 +2,7 @@ "actions": [], "autoname": "autoincrement", "creation": "2023-11-27 16:29:10.993403", - "doctype": "DocType", + "pagetype": "PageType", "engine": "InnoDB", "field_order": [ "label", @@ -77,8 +77,8 @@ "fieldtype": "Link", "in_list_view": 1, "in_standard_filter": 1, - "label": "DocType", - "options": "DocType" + "label": "PageType", + "options": "PageType" }, { "fieldname": "order_by_tab", diff --git a/crm/fcrm/doctype/crm_view_settings/crm_view_settings.py b/crm/fcrm/doctype/crm_view_settings/crm_view_settings.py index 06316632..f66bc344 100644 --- a/crm/fcrm/doctype/crm_view_settings/crm_view_settings.py +++ b/crm/fcrm/doctype/crm_view_settings/crm_view_settings.py @@ -2,18 +2,18 @@ # For license information, please see license.txt import json -import frappe -from frappe.model.document import Document, get_controller -from frappe.utils import parse_json +import jingrow +from jingrow.model.document import Document, get_controller +from jingrow.utils import parse_json class CRMViewSettings(Document): pass -@frappe.whitelist() +@jingrow.whitelist() def create(view): - view = frappe._dict(view) + view = jingrow._dict(view) view.filters = parse_json(view.filters) or {} view.columns = parse_json(view.columns or "[]") @@ -21,7 +21,7 @@ def create(view): view.kanban_columns = parse_json(view.kanban_columns or "[]") view.kanban_fields = parse_json(view.kanban_fields or "[]") - default_rows = sync_default_rows(view.doctype) + default_rows = sync_default_rows(view.pagetype) view.rows = view.rows + default_rows if default_rows else view.rows view.rows = remove_duplicates(view.rows) @@ -30,31 +30,31 @@ def create(view): elif not view.columns: view.columns = sync_default_columns(view) - doc = frappe.new_doc("CRM View Settings") - doc.name = view.label - doc.label = view.label - doc.type = view.type or "list" - doc.icon = view.icon - doc.dt = view.doctype - doc.user = frappe.session.user - doc.route_name = view.route_name or get_route_name(view.doctype) - doc.load_default_columns = view.load_default_columns or False - doc.filters = json.dumps(view.filters) - doc.order_by = view.order_by - doc.group_by_field = view.group_by_field - doc.column_field = view.column_field - doc.title_field = view.title_field - doc.kanban_columns = json.dumps(view.kanban_columns) - doc.kanban_fields = json.dumps(view.kanban_fields) - doc.columns = json.dumps(view.columns) - doc.rows = json.dumps(view.rows) - doc.insert() - return doc + pg = jingrow.new_pg("CRM View Settings") + pg.name = view.label + pg.label = view.label + pg.type = view.type or "list" + pg.icon = view.icon + pg.dt = view.pagetype + pg.user = jingrow.session.user + pg.route_name = view.route_name or get_route_name(view.pagetype) + pg.load_default_columns = view.load_default_columns or False + pg.filters = json.dumps(view.filters) + pg.order_by = view.order_by + pg.group_by_field = view.group_by_field + pg.column_field = view.column_field + pg.title_field = view.title_field + pg.kanban_columns = json.dumps(view.kanban_columns) + pg.kanban_fields = json.dumps(view.kanban_fields) + pg.columns = json.dumps(view.columns) + pg.rows = json.dumps(view.rows) + pg.insert() + return pg -@frappe.whitelist() +@jingrow.whitelist() def update(view): - view = frappe._dict(view) + view = jingrow._dict(view) filters = parse_json(view.filters or {}) columns = parse_json(view.columns or []) @@ -62,61 +62,61 @@ def update(view): kanban_columns = parse_json(view.kanban_columns or []) kanban_fields = parse_json(view.kanban_fields or []) - default_rows = sync_default_rows(view.doctype) + default_rows = sync_default_rows(view.pagetype) rows = rows + default_rows if default_rows else rows rows = remove_duplicates(rows) - doc = frappe.get_doc("CRM View Settings", view.name) - doc.label = view.label - doc.type = view.type or "list" - doc.icon = view.icon - doc.route_name = view.route_name or get_route_name(view.doctype) - doc.load_default_columns = view.load_default_columns or False - doc.filters = json.dumps(filters) - doc.order_by = view.order_by - doc.group_by_field = view.group_by_field - doc.column_field = view.column_field - doc.title_field = view.title_field - doc.kanban_columns = json.dumps(kanban_columns) - doc.kanban_fields = json.dumps(kanban_fields) - doc.columns = json.dumps(columns) - doc.rows = json.dumps(rows) - doc.save() - return doc + pg = jingrow.get_pg("CRM View Settings", view.name) + pg.label = view.label + pg.type = view.type or "list" + pg.icon = view.icon + pg.route_name = view.route_name or get_route_name(view.pagetype) + pg.load_default_columns = view.load_default_columns or False + pg.filters = json.dumps(filters) + pg.order_by = view.order_by + pg.group_by_field = view.group_by_field + pg.column_field = view.column_field + pg.title_field = view.title_field + pg.kanban_columns = json.dumps(kanban_columns) + pg.kanban_fields = json.dumps(kanban_fields) + pg.columns = json.dumps(columns) + pg.rows = json.dumps(rows) + pg.save() + return pg -@frappe.whitelist() +@jingrow.whitelist() def delete(name): - if frappe.db.exists("CRM View Settings", name): - frappe.delete_doc("CRM View Settings", name) + if jingrow.db.exists("CRM View Settings", name): + jingrow.delete_pg("CRM View Settings", name) -@frappe.whitelist() +@jingrow.whitelist() def public(name, value): - if frappe.session.user != "Administrator" and "Sales Manager" not in frappe.get_roles(): - frappe.throw("Not permitted", frappe.PermissionError) + if jingrow.session.user != "Administrator" and "Sales Manager" not in jingrow.get_roles(): + jingrow.throw("Not permitted", jingrow.PermissionError) - doc = frappe.get_doc("CRM View Settings", name) - if doc.pinned: - doc.pinned = False - doc.public = value - doc.user = "" if value else frappe.session.user - doc.save() + pg = jingrow.get_pg("CRM View Settings", name) + if pg.pinned: + pg.pinned = False + pg.public = value + pg.user = "" if value else jingrow.session.user + pg.save() -@frappe.whitelist() +@jingrow.whitelist() def pin(name, value): - doc = frappe.get_doc("CRM View Settings", name) - doc.pinned = value - doc.save() + pg = jingrow.get_pg("CRM View Settings", name) + pg.pinned = value + pg.save() def remove_duplicates(l): return list(dict.fromkeys(l)) -def sync_default_rows(doctype, type="list"): - list = get_controller(doctype) +def sync_default_rows(pagetype, type="list"): + list = get_controller(pagetype) rows = [] if hasattr(list, "default_list_data"): @@ -126,13 +126,13 @@ def sync_default_rows(doctype, type="list"): def sync_default_columns(view): - list = get_controller(view.doctype) + list = get_controller(view.pagetype) columns = [] if view.type == "kanban" and view.column_field: - field_meta = frappe.get_meta(view.doctype).get_field(view.column_field) + field_meta = jingrow.get_meta(view.pagetype).get_field(view.column_field) if field_meta.fieldtype == "Link": - columns = frappe.get_all( + columns = jingrow.get_all( field_meta.options, fields=["name"], order_by="modified asc", @@ -145,26 +145,26 @@ def sync_default_columns(view): return columns -@frappe.whitelist() -def set_as_default(name=None, type=None, doctype=None): +@jingrow.whitelist() +def set_as_default(name=None, type=None, pagetype=None): if name: - frappe.db.set_value("CRM View Settings", name, "is_default", 1) + jingrow.db.set_value("CRM View Settings", name, "is_default", 1) else: - doc = create_or_update_standard_view({"type": type, "doctype": doctype, "is_default": 1}) - name = doc.name + pg = create_or_update_standard_view({"type": type, "pagetype": pagetype, "is_default": 1}) + name = pg.name # remove default from other views of same user - frappe.db.set_value( + jingrow.db.set_value( "CRM View Settings", - {"name": ("!=", name), "user": frappe.session.user, "is_default": 1}, + {"name": ("!=", name), "user": jingrow.session.user, "is_default": 1}, "is_default", 0, ) -@frappe.whitelist() +@jingrow.whitelist() def create_or_update_standard_view(view): - view = frappe._dict(view) + view = jingrow._dict(view) filters = parse_json(view.filters) or {} columns = parse_json(view.columns or "[]") @@ -173,7 +173,7 @@ def create_or_update_standard_view(view): kanban_fields = parse_json(view.kanban_fields or "[]") view.column_field = view.column_field or "status" - default_rows = sync_default_rows(view.doctype, view.type) + default_rows = sync_default_rows(view.pagetype, view.type) rows = rows + default_rows if default_rows else rows rows = remove_duplicates(rows) @@ -182,29 +182,29 @@ def create_or_update_standard_view(view): elif not columns: columns = sync_default_columns(view) - doc = frappe.db.exists( + pg = jingrow.db.exists( "CRM View Settings", - {"dt": view.doctype, "type": view.type or "list", "is_standard": True, "user": frappe.session.user}, + {"dt": view.pagetype, "type": view.type or "list", "is_standard": True, "user": jingrow.session.user}, ) - if doc: - doc = frappe.get_doc("CRM View Settings", doc) - doc.label = view.label - doc.type = view.type or "list" - doc.route_name = view.route_name or get_route_name(view.doctype) - doc.load_default_columns = view.load_default_columns or False - doc.filters = json.dumps(filters) - doc.order_by = view.order_by or "modified desc" - doc.group_by_field = view.group_by_field or "owner" - doc.column_field = view.column_field - doc.title_field = view.title_field - doc.kanban_columns = json.dumps(kanban_columns) - doc.kanban_fields = json.dumps(kanban_fields) - doc.columns = json.dumps(columns) - doc.rows = json.dumps(rows) - doc.is_default = view.is_default or False - doc.save() + if pg: + pg = jingrow.get_pg("CRM View Settings", pg) + pg.label = view.label + pg.type = view.type or "list" + pg.route_name = view.route_name or get_route_name(view.pagetype) + pg.load_default_columns = view.load_default_columns or False + pg.filters = json.dumps(filters) + pg.order_by = view.order_by or "modified desc" + pg.group_by_field = view.group_by_field or "owner" + pg.column_field = view.column_field + pg.title_field = view.title_field + pg.kanban_columns = json.dumps(kanban_columns) + pg.kanban_fields = json.dumps(kanban_fields) + pg.columns = json.dumps(columns) + pg.rows = json.dumps(rows) + pg.is_default = view.is_default or False + pg.save() else: - doc = frappe.new_doc("CRM View Settings") + pg = jingrow.new_pg("CRM View Settings") label = "List" if view.type == "group_by": @@ -212,35 +212,35 @@ def create_or_update_standard_view(view): elif view.type == "kanban": label = "Kanban" - doc.name = view.label or label - doc.label = view.label or label - doc.type = view.type or "list" - doc.dt = view.doctype - doc.user = frappe.session.user - doc.route_name = view.route_name or get_route_name(view.doctype) - doc.load_default_columns = view.load_default_columns or False - doc.filters = json.dumps(filters) - doc.order_by = view.order_by or "modified desc" - doc.group_by_field = view.group_by_field or "owner" - doc.column_field = view.column_field - doc.title_field = view.title_field - doc.kanban_columns = json.dumps(kanban_columns) - doc.kanban_fields = json.dumps(kanban_fields) - doc.columns = json.dumps(columns) - doc.rows = json.dumps(rows) - doc.is_standard = True - doc.is_default = view.is_default or False - doc.insert() + pg.name = view.label or label + pg.label = view.label or label + pg.type = view.type or "list" + pg.dt = view.pagetype + pg.user = jingrow.session.user + pg.route_name = view.route_name or get_route_name(view.pagetype) + pg.load_default_columns = view.load_default_columns or False + pg.filters = json.dumps(filters) + pg.order_by = view.order_by or "modified desc" + pg.group_by_field = view.group_by_field or "owner" + pg.column_field = view.column_field + pg.title_field = view.title_field + pg.kanban_columns = json.dumps(kanban_columns) + pg.kanban_fields = json.dumps(kanban_fields) + pg.columns = json.dumps(columns) + pg.rows = json.dumps(rows) + pg.is_standard = True + pg.is_default = view.is_default or False + pg.insert() - return doc + return pg -def get_route_name(doctype): +def get_route_name(pagetype): # Example: "CRM Lead" -> "Leads" - if doctype.startswith("CRM "): - doctype = doctype[4:] + if pagetype.startswith("CRM "): + pagetype = pagetype[4:] - if doctype[-1] != "s": - doctype += "s" + if pagetype[-1] != "s": + pagetype += "s" - return doctype + return pagetype diff --git a/crm/fcrm/doctype/crm_view_settings/test_crm_view_settings.py b/crm/fcrm/doctype/crm_view_settings/test_crm_view_settings.py index 2817bd23..399c075b 100644 --- a/crm/fcrm/doctype/crm_view_settings/test_crm_view_settings.py +++ b/crm/fcrm/doctype/crm_view_settings/test_crm_view_settings.py @@ -1,8 +1,8 @@ # Copyright (c) 2023, JINGROW and Contributors # See license.txt -# import frappe -from frappe.tests import UnitTestCase +# import jingrow +from jingrow.tests import UnitTestCase class TestCRMViewSettings(UnitTestCase): diff --git a/crm/fcrm/doctype/erpnext_crm_settings/erpnext_crm_settings.js b/crm/fcrm/doctype/erpnext_crm_settings/erpnext_crm_settings.js index a34e3d95..7c688c55 100644 --- a/crm/fcrm/doctype/erpnext_crm_settings/erpnext_crm_settings.js +++ b/crm/fcrm/doctype/erpnext_crm_settings/erpnext_crm_settings.js @@ -1,11 +1,11 @@ // Copyright (c) 2023, JINGROW and contributors // For license information, please see license.txt -frappe.ui.form.on("ERPNext CRM Settings", { +jingrow.ui.form.on("ERPNext CRM Settings", { refresh(frm) { - if (!frm.doc.enabled) return; + if (!frm.pg.enabled) return; frm.add_custom_button(__("Reset ERPNext Form Script"), () => { - frappe.confirm( + jingrow.confirm( __( "Are you sure you want to reset 'Create Quotation from CRM Deal' Form Script?" ), @@ -16,6 +16,6 @@ frappe.ui.form.on("ERPNext CRM Settings", { async reset_erpnext_form_script(frm) { let script = await frm.call("reset_erpnext_form_script"); script.message && - frappe.msgprint(__("Form Script updated successfully")); + jingrow.msgprint(__("Form Script updated successfully")); }, }); diff --git a/crm/fcrm/doctype/erpnext_crm_settings/erpnext_crm_settings.json b/crm/fcrm/doctype/erpnext_crm_settings/erpnext_crm_settings.json index 408075c5..e275d540 100644 --- a/crm/fcrm/doctype/erpnext_crm_settings/erpnext_crm_settings.json +++ b/crm/fcrm/doctype/erpnext_crm_settings/erpnext_crm_settings.json @@ -2,7 +2,7 @@ "actions": [], "allow_rename": 1, "creation": "2024-07-02 15:23:17.022214", - "doctype": "DocType", + "pagetype": "PageType", "engine": "InnoDB", "field_order": [ "enabled", @@ -21,14 +21,14 @@ ], "fields": [ { - "depends_on": "eval:doc.enabled && doc.is_erpnext_in_different_site", + "depends_on": "eval:pg.enabled && pg.is_erpnext_in_different_site", "fieldname": "api_key", "fieldtype": "Data", "label": "API Key", "mandatory_depends_on": "is_erpnext_in_different_site" }, { - "depends_on": "eval:doc.enabled && doc.is_erpnext_in_different_site", + "depends_on": "eval:pg.enabled && pg.is_erpnext_in_different_site", "fieldname": "api_secret", "fieldtype": "Password", "label": "API Secret", @@ -45,7 +45,7 @@ "fieldtype": "Column Break" }, { - "depends_on": "eval:doc.enabled && doc.is_erpnext_in_different_site", + "depends_on": "eval:pg.enabled && pg.is_erpnext_in_different_site", "fieldname": "erpnext_site_url", "fieldtype": "Data", "label": "ERPNext Site URL", @@ -91,7 +91,7 @@ "fieldtype": "Column Break" }, { - "depends_on": "eval:doc.enabled && doc.create_customer_on_status_change", + "depends_on": "eval:pg.enabled && pg.create_customer_on_status_change", "fieldname": "deal_status", "fieldtype": "Link", "label": "Deal Status", diff --git a/crm/fcrm/doctype/erpnext_crm_settings/erpnext_crm_settings.py b/crm/fcrm/doctype/erpnext_crm_settings/erpnext_crm_settings.py index f874b939..ab9694a5 100644 --- a/crm/fcrm/doctype/erpnext_crm_settings/erpnext_crm_settings.py +++ b/crm/fcrm/doctype/erpnext_crm_settings/erpnext_crm_settings.py @@ -3,12 +3,12 @@ import json -import frappe -from frappe import _ -from frappe.custom.doctype.property_setter.property_setter import make_property_setter -from frappe.frappeclient import FrappeClient -from frappe.model.document import Document -from frappe.utils import get_url_to_form, get_url_to_list +import jingrow +from jingrow import _ +from jingrow.custom.pagetype.property_setter.property_setter import make_property_setter +from jingrow.frappeclient import FrappeClient +from jingrow.model.document import Document +from jingrow.utils import get_url_to_form, get_url_to_list class ERPNextCRMSettings(Document): @@ -21,46 +21,46 @@ class ERPNextCRMSettings(Document): def validate_if_erpnext_installed(self): if not self.is_erpnext_in_different_site: - if "erpnext" not in frappe.get_installed_apps(): - frappe.throw(_("ERPNext is not installed in the current site")) + if "erpnext" not in jingrow.get_installed_apps(): + jingrow.throw(_("ERPNext is not installed in the current site")) def add_quotation_to_option(self): if not self.is_erpnext_in_different_site: - if not frappe.db.exists("Property Setter", {"name": "Quotation-quotation_to-link_filters"}): + if not jingrow.db.exists("Property Setter", {"name": "Quotation-quotation_to-link_filters"}): make_property_setter( - doctype="Quotation", + pagetype="Quotation", fieldname="quotation_to", property="link_filters", - value='[["DocType","name","in", ["Customer", "Lead", "Prospect", "CRM Deal"]]]', + value='[["PageType","name","in", ["Customer", "Lead", "Prospect", "CRM Deal"]]]', property_type="JSON", - validate_fields_for_doctype=False, + validate_fields_for_pagetype=False, ) def create_custom_fields(self): if not self.is_erpnext_in_different_site: - from erpnext.crm.frappe_crm_api import create_custom_fields_for_frappe_crm + from erpnext.crm.jingrow_crm_api import create_custom_fields_for_jingrow_crm - create_custom_fields_for_frappe_crm() + create_custom_fields_for_jingrow_crm() else: self.create_custom_fields_in_remote_site() def create_custom_fields_in_remote_site(self): client = get_erpnext_site_client(self) try: - client.post_api("erpnext.crm.frappe_crm_api.create_custom_fields_for_frappe_crm") + client.post_api("erpnext.crm.jingrow_crm_api.create_custom_fields_for_jingrow_crm") except Exception: - frappe.log_error( - frappe.get_traceback(), + jingrow.log_error( + jingrow.get_traceback(), f"Error while creating custom field in the remote erpnext site: {self.erpnext_site_url}", ) - frappe.throw("Error while creating custom field in ERPNext, check error log for more details") + jingrow.throw("Error while creating custom field in ERPNext, check error log for more details") def create_crm_form_script(self): - if not frappe.db.exists("CRM Form Script", "Create Quotation from CRM Deal"): + if not jingrow.db.exists("CRM Form Script", "Create Quotation from CRM Deal"): script = get_crm_form_script() - frappe.get_doc( + jingrow.get_pg( { - "doctype": "CRM Form Script", + "pagetype": "CRM Form Script", "name": "Create Quotation from CRM Deal", "dt": "CRM Deal", "view": "Form", @@ -70,16 +70,16 @@ class ERPNextCRMSettings(Document): } ).insert() - @frappe.whitelist() + @jingrow.whitelist() def reset_erpnext_form_script(self): try: - if frappe.db.exists("CRM Form Script", "Create Quotation from CRM Deal"): + if jingrow.db.exists("CRM Form Script", "Create Quotation from CRM Deal"): script = get_crm_form_script() - frappe.db.set_value("CRM Form Script", "Create Quotation from CRM Deal", "script", script) + jingrow.db.set_value("CRM Form Script", "Create Quotation from CRM Deal", "script", script) return True return False except Exception: - frappe.log_error(frappe.get_traceback(), "Error while resetting form script") + jingrow.log_error(jingrow.get_traceback(), "Error while resetting form script") return False @@ -91,14 +91,14 @@ def get_erpnext_site_client(erpnext_crm_settings): return FrappeClient(site_url, api_key=api_key, api_secret=api_secret) -@frappe.whitelist() +@jingrow.whitelist() def get_customer_link(crm_deal): - erpnext_crm_settings = frappe.get_single("ERPNext CRM Settings") + erpnext_crm_settings = jingrow.get_single("ERPNext CRM Settings") if not erpnext_crm_settings.enabled: - frappe.throw(_("ERPNext is not integrated with the CRM")) + jingrow.throw(_("ERPNext is not integrated with the CRM")) if not erpnext_crm_settings.is_erpnext_in_different_site: - customer = frappe.db.exists("Customer", {"crm_deal": crm_deal}) + customer = jingrow.db.exists("Customer", {"crm_deal": crm_deal}) return get_url_to_form("Customer", customer) if customer else "" else: client = get_erpnext_site_client(erpnext_crm_settings) @@ -110,18 +110,18 @@ def get_customer_link(crm_deal): else: return "" except Exception: - frappe.log_error( - frappe.get_traceback(), + jingrow.log_error( + jingrow.get_traceback(), f"Error while fetching customer in remote site: {erpnext_crm_settings.erpnext_site_url}", ) - frappe.throw(_("Error while fetching customer in ERPNext, check error log for more details")) + jingrow.throw(_("Error while fetching customer in ERPNext, check error log for more details")) -@frappe.whitelist() +@jingrow.whitelist() def get_quotation_url(crm_deal, organization): - erpnext_crm_settings = frappe.get_single("ERPNext CRM Settings") + erpnext_crm_settings = jingrow.get_single("ERPNext CRM Settings") if not erpnext_crm_settings.enabled: - frappe.throw(_("ERPNext is not integrated with the CRM")) + jingrow.throw(_("ERPNext is not integrated with the CRM")) contact = get_contact(crm_deal) address = get_organization_address(organization) @@ -162,42 +162,42 @@ def get_quotation_url(crm_deal, organization): def create_prospect_in_remote_site(crm_deal, erpnext_crm_settings): try: client = get_erpnext_site_client(erpnext_crm_settings) - doc = frappe.get_cached_doc("CRM Deal", crm_deal) - contacts = get_contacts(doc) - address = get_organization_address(doc.organization) or None + pg = jingrow.get_cached_pg("CRM Deal", crm_deal) + contacts = get_contacts(pg) + address = get_organization_address(pg.organization) or None if address and not isinstance(address, dict): address = address.as_dict() return client.post_api( - "erpnext.crm.frappe_crm_api.create_prospect_against_crm_deal", + "erpnext.crm.jingrow_crm_api.create_prospect_against_crm_deal", { - "organization": doc.organization, - "lead_name": doc.lead_name, - "no_of_employees": doc.no_of_employees, - "deal_owner": doc.deal_owner, - "crm_deal": doc.name, - "territory": doc.territory, - "industry": doc.industry, - "website": doc.website, - "annual_revenue": doc.annual_revenue, + "organization": pg.organization, + "lead_name": pg.lead_name, + "no_of_employees": pg.no_of_employees, + "deal_owner": pg.deal_owner, + "crm_deal": pg.name, + "territory": pg.territory, + "industry": pg.industry, + "website": pg.website, + "annual_revenue": pg.annual_revenue, "contacts": json.dumps(contacts) if contacts else None, "erpnext_company": erpnext_crm_settings.erpnext_company, "address": json.dumps(address) if address else None, }, ) except Exception: - frappe.log_error( - frappe.get_traceback(), + jingrow.log_error( + jingrow.get_traceback(), f"Error while creating prospect in remote site: {erpnext_crm_settings.erpnext_site_url}", ) - frappe.throw(_("Error while creating prospect in ERPNext, check error log for more details")) + jingrow.throw(_("Error while creating prospect in ERPNext, check error log for more details")) def get_contact(crm_deal): - doc = frappe.get_cached_doc("CRM Deal", crm_deal) + pg = jingrow.get_cached_pg("CRM Deal", crm_deal) contact = None - for c in doc.contacts: + for c in pg.contacts: if c.is_primary: contact = c.contact break @@ -205,9 +205,9 @@ def get_contact(crm_deal): return contact -def get_contacts(doc): +def get_contacts(pg): contacts = [] - for c in doc.contacts: + for c in pg.contacts: contacts.append( { "contact": c.contact, @@ -222,8 +222,8 @@ def get_contacts(doc): def get_organization_address(organization): - address = frappe.db.get_value("CRM Organization", organization, "address") - address = frappe.get_cached_doc("Address", address) if address else None + address = jingrow.db.get_value("CRM Organization", organization, "address") + address = jingrow.get_cached_pg("Address", address) if address else None if not address: return None return { @@ -240,63 +240,63 @@ def get_organization_address(organization): } -def create_customer_in_erpnext(doc, method): - erpnext_crm_settings = frappe.get_single("ERPNext CRM Settings") +def create_customer_in_erpnext(pg, method): + erpnext_crm_settings = jingrow.get_single("ERPNext CRM Settings") if ( not erpnext_crm_settings.enabled or not erpnext_crm_settings.create_customer_on_status_change - or doc.status != erpnext_crm_settings.deal_status + or pg.status != erpnext_crm_settings.deal_status ): return - contacts = get_contacts(doc) - address = get_organization_address(doc.organization) + contacts = get_contacts(pg) + address = get_organization_address(pg.organization) customer = { - "customer_name": doc.organization, + "customer_name": pg.organization, "customer_group": "All Customer Groups", "customer_type": "Company", - "territory": doc.territory, - "default_currency": doc.currency, - "industry": doc.industry, - "website": doc.website, - "crm_deal": doc.name, + "territory": pg.territory, + "default_currency": pg.currency, + "industry": pg.industry, + "website": pg.website, + "crm_deal": pg.name, "contacts": json.dumps(contacts), "address": json.dumps(address) if address else None, } if not erpnext_crm_settings.is_erpnext_in_different_site: - from erpnext.crm.frappe_crm_api import create_customer + from erpnext.crm.jingrow_crm_api import create_customer create_customer(customer) else: create_customer_in_remote_site(customer, erpnext_crm_settings) - frappe.publish_realtime("crm_customer_created") + jingrow.publish_realtime("crm_customer_created") def create_customer_in_remote_site(customer, erpnext_crm_settings): client = get_erpnext_site_client(erpnext_crm_settings) try: - client.post_api("erpnext.crm.frappe_crm_api.create_customer", customer) + client.post_api("erpnext.crm.jingrow_crm_api.create_customer", customer) except Exception: - frappe.log_error(frappe.get_traceback(), "Error while creating customer in remote site") - frappe.throw(_("Error while creating customer in ERPNext, check error log for more details")) + jingrow.log_error(jingrow.get_traceback(), "Error while creating customer in remote site") + jingrow.throw(_("Error while creating customer in ERPNext, check error log for more details")) -@frappe.whitelist() +@jingrow.whitelist() def get_crm_form_script(): return """ -async function setupForm({ doc, call, $dialog, updateField, toast }) { +async function setupForm({ pg, call, $dialog, updateField, toast }) { let actions = []; - let is_erpnext_integration_enabled = await call("frappe.client.get_single_value", {doctype: "ERPNext CRM Settings", field: "enabled"}); - if (!["Lost", "Won"].includes(doc?.status) && is_erpnext_integration_enabled) { + let is_erpnext_integration_enabled = await call("jingrow.client.get_single_value", {pagetype: "ERPNext CRM Settings", field: "enabled"}); + if (!["Lost", "Won"].includes(pg?.status) && is_erpnext_integration_enabled) { actions.push({ label: __("Create Quotation"), onClick: async () => { let quotation_url = await call( - "crm.fcrm.doctype.erpnext_crm_settings.erpnext_crm_settings.get_quotation_url", + "crm.fcrm.pagetype.erpnext_crm_settings.erpnext_crm_settings.get_quotation_url", { - crm_deal: doc.name, - organization: doc.organization + crm_deal: pg.name, + organization: pg.organization } ); @@ -307,8 +307,8 @@ async function setupForm({ doc, call, $dialog, updateField, toast }) { }) } if (is_erpnext_integration_enabled) { - let customer_url = await call("crm.fcrm.doctype.erpnext_crm_settings.erpnext_crm_settings.get_customer_link", { - crm_deal: doc.name + let customer_url = await call("crm.fcrm.pagetype.erpnext_crm_settings.erpnext_crm_settings.get_customer_link", { + crm_deal: pg.name }); if (customer_url) { actions.push({ diff --git a/crm/fcrm/doctype/erpnext_crm_settings/test_erpnext_crm_settings.py b/crm/fcrm/doctype/erpnext_crm_settings/test_erpnext_crm_settings.py index aa6c7707..96176fc5 100644 --- a/crm/fcrm/doctype/erpnext_crm_settings/test_erpnext_crm_settings.py +++ b/crm/fcrm/doctype/erpnext_crm_settings/test_erpnext_crm_settings.py @@ -1,8 +1,8 @@ # Copyright (c) 2024, JINGROW and Contributors # See license.txt -# import frappe -from frappe.tests import UnitTestCase +# import jingrow +from jingrow.tests import UnitTestCase class TestERPNextCRMSettings(UnitTestCase): diff --git a/crm/fcrm/doctype/fcrm_note/fcrm_note.js b/crm/fcrm/doctype/fcrm_note/fcrm_note.js index 32b8ed21..27706d6d 100644 --- a/crm/fcrm/doctype/fcrm_note/fcrm_note.js +++ b/crm/fcrm/doctype/fcrm_note/fcrm_note.js @@ -1,7 +1,7 @@ // Copyright (c) 2023, JINGROW and contributors // For license information, please see license.txt -// frappe.ui.form.on("FCRM Note", { +// jingrow.ui.form.on("FCRM Note", { // refresh(frm) { // }, diff --git a/crm/fcrm/doctype/fcrm_note/fcrm_note.json b/crm/fcrm/doctype/fcrm_note/fcrm_note.json index 02477326..aad8d6cb 100644 --- a/crm/fcrm/doctype/fcrm_note/fcrm_note.json +++ b/crm/fcrm/doctype/fcrm_note/fcrm_note.json @@ -4,13 +4,13 @@ "allow_rename": 1, "creation": "2023-08-26 12:04:00.759437", "default_view": "List", - "doctype": "DocType", + "pagetype": "PageType", "editable_grid": 1, "engine": "InnoDB", "field_order": [ "title", "content", - "reference_doctype", + "reference_pagetype", "reference_docname" ], "fields": [ @@ -31,22 +31,22 @@ }, { "default": "CRM Lead", - "fieldname": "reference_doctype", + "fieldname": "reference_pagetype", "fieldtype": "Link", "label": "Reference Document Type", - "options": "DocType" + "options": "PageType" }, { "fieldname": "reference_docname", "fieldtype": "Dynamic Link", - "label": "Reference Doc", - "options": "reference_doctype" + "label": "Reference Pg", + "options": "reference_pagetype" } ], "index_web_pages_for_search": 1, "links": [ { - "link_doctype": "CRM Call Log", + "link_pagetype": "CRM Call Log", "link_fieldname": "note" } ], diff --git a/crm/fcrm/doctype/fcrm_note/fcrm_note.py b/crm/fcrm/doctype/fcrm_note/fcrm_note.py index c52d1506..fbe33dee 100644 --- a/crm/fcrm/doctype/fcrm_note/fcrm_note.py +++ b/crm/fcrm/doctype/fcrm_note/fcrm_note.py @@ -1,8 +1,8 @@ # Copyright (c) 2023, JINGROW and contributors # For license information, please see license.txt -# import frappe -from frappe.model.document import Document +# import jingrow +from jingrow.model.document import Document class FCRMNote(Document): @@ -12,7 +12,7 @@ class FCRMNote(Document): "name", "title", "content", - "reference_doctype", + "reference_pagetype", "reference_docname", "owner", "modified", diff --git a/crm/fcrm/doctype/fcrm_note/test_fcrm_note.py b/crm/fcrm/doctype/fcrm_note/test_fcrm_note.py index 9a26f533..6cad5050 100644 --- a/crm/fcrm/doctype/fcrm_note/test_fcrm_note.py +++ b/crm/fcrm/doctype/fcrm_note/test_fcrm_note.py @@ -1,8 +1,8 @@ # Copyright (c) 2023, JINGROW and Contributors # See license.txt -# import frappe -from frappe.tests import UnitTestCase +# import jingrow +from jingrow.tests import UnitTestCase class TestFCRMNote(UnitTestCase): diff --git a/crm/fcrm/doctype/fcrm_settings/fcrm_settings.js b/crm/fcrm/doctype/fcrm_settings/fcrm_settings.js index 7ae55c1e..9cffc779 100644 --- a/crm/fcrm/doctype/fcrm_settings/fcrm_settings.js +++ b/crm/fcrm/doctype/fcrm_settings/fcrm_settings.js @@ -1,7 +1,7 @@ // Copyright (c) 2024, JINGROW and contributors // For license information, please see license.txt -frappe.ui.form.on("FCRM Settings", { +jingrow.ui.form.on("FCRM Settings", { // refresh(frm) { // }, @@ -9,12 +9,12 @@ frappe.ui.form.on("FCRM Settings", { let message = __( "This will restore (if not exist) all the default statuses, custom fields and layouts. Delete & Restore will delete default layouts and then restore them." ); - let d = new frappe.ui.Dialog({ + let d = new jingrow.ui.Dialog({ title: __("Restore Defaults"), primary_action_label: __("Restore"), primary_action: () => { frm.call("restore_defaults", { force: false }, () => { - frappe.show_alert({ + jingrow.show_alert({ message: __( "Default statuses, custom fields and layouts restored successfully." ), @@ -26,7 +26,7 @@ frappe.ui.form.on("FCRM Settings", { secondary_action_label: __("Delete & Restore"), secondary_action: () => { frm.call("restore_defaults", { force: true }, () => { - frappe.show_alert({ + jingrow.show_alert({ message: __( "Default statuses, custom fields and layouts restored successfully." ), diff --git a/crm/fcrm/doctype/fcrm_settings/fcrm_settings.json b/crm/fcrm/doctype/fcrm_settings/fcrm_settings.json index 5ff58822..df201574 100644 --- a/crm/fcrm/doctype/fcrm_settings/fcrm_settings.json +++ b/crm/fcrm/doctype/fcrm_settings/fcrm_settings.json @@ -2,7 +2,7 @@ "actions": [], "allow_rename": 1, "creation": "2024-09-29 13:48:02.715924", - "doctype": "DocType", + "pagetype": "PageType", "engine": "InnoDB", "field_order": [ "defaults_tab", @@ -97,11 +97,11 @@ "options": "frankfurter.app\nexchangerate.host" }, { - "depends_on": "eval:doc.service_provider == 'exchangerate.host';", + "depends_on": "eval:pg.service_provider == 'exchangerate.host';", "fieldname": "access_key", "fieldtype": "Data", "label": "Access Key", - "mandatory_depends_on": "eval:doc.service_provider == 'exchangerate.host';" + "mandatory_depends_on": "eval:pg.service_provider == 'exchangerate.host';" }, { "fieldname": "column_break_vqck", diff --git a/crm/fcrm/doctype/fcrm_settings/fcrm_settings.py b/crm/fcrm/doctype/fcrm_settings/fcrm_settings.py index a7241561..2194abb4 100644 --- a/crm/fcrm/doctype/fcrm_settings/fcrm_settings.py +++ b/crm/fcrm/doctype/fcrm_settings/fcrm_settings.py @@ -1,17 +1,17 @@ # Copyright (c) 2024, JINGROW and contributors # For license information, please see license.txt -import frappe +import jingrow import requests -from frappe import _ -from frappe.custom.doctype.property_setter.property_setter import delete_property_setter, make_property_setter -from frappe.model.document import Document +from jingrow import _ +from jingrow.custom.pagetype.property_setter.property_setter import delete_property_setter, make_property_setter +from jingrow.model.document import Document from crm.install import after_install class FCRMSettings(Document): - @frappe.whitelist() + @jingrow.whitelist() def restore_defaults(self, force=False): after_install(force) @@ -23,7 +23,7 @@ class FCRMSettings(Document): def do_not_allow_to_delete_if_standard(self): if not self.has_value_changed("dropdown_items"): return - old_items = self.get_doc_before_save().get("dropdown_items") + old_items = self.get_pg_before_save().get("dropdown_items") standard_new_items = [d.name1 for d in self.dropdown_items if d.is_standard] standard_old_items = [d.name1 for d in old_items if d.is_standard] deleted_standard_items = set(standard_old_items) - set(standard_new_items) @@ -31,7 +31,7 @@ class FCRMSettings(Document): standard_dropdown_items = get_standard_dropdown_items() if not deleted_standard_items.intersection(standard_dropdown_items): return - frappe.throw(_("Cannot delete standard items {0}").format(", ".join(deleted_standard_items))) + jingrow.throw(_("Cannot delete standard items {0}").format(", ".join(deleted_standard_items))) def setup_forecasting(self): if self.has_value_changed("enable_forecasting"): @@ -74,7 +74,7 @@ class FCRMSettings(Document): def get_standard_dropdown_items(): - return [item.get("name1") for item in frappe.get_hooks("standard_dropdown_items")] + return [item.get("name1") for item in jingrow.get_hooks("standard_dropdown_items")] def after_migrate(): @@ -88,7 +88,7 @@ def sync_table(key, hook): # add new items count = 0 # maintain count because list may come from seperate apps - for item in frappe.get_hooks(hook): + for item in jingrow.get_hooks(hook): if item.get("name1") not in existing_items: crm_settings.append(key, item, count) new_standard_items[item.get("name1")] = True @@ -103,11 +103,11 @@ def sync_table(key, hook): def create_forecasting_script(): - if not frappe.db.exists("CRM Form Script", "Forecasting Script"): + if not jingrow.db.exists("CRM Form Script", "Forecasting Script"): script = get_forecasting_script() - frappe.get_doc( + jingrow.get_pg( { - "doctype": "CRM Form Script", + "pagetype": "CRM Form Script", "name": "Forecasting Script", "dt": "CRM Deal", "view": "Form", @@ -121,16 +121,16 @@ def create_forecasting_script(): def get_forecasting_script(): return """class CRMDeal { async status() { - await this.doc.trigger('updateProbability') + await this.pg.trigger('updateProbability') } async updateProbability() { - let status = await call("frappe.client.get_value", { - doctype: "CRM Deal Status", + let status = await call("jingrow.client.get_value", { + pagetype: "CRM Deal Status", fieldname: "probability", - filters: { name: this.doc.status }, + filters: { name: this.pg.status }, }) - this.doc.probability = status.probability + this.pg.probability = status.probability } }""" @@ -152,9 +152,9 @@ def get_exchange_rate(from_currency, to_currency, date=None): if settings and settings.service_provider == "exchangerate.host": api_used = "exchangerate.host" if not settings.access_key: - frappe.throw( + jingrow.throw( _("Access Key is required for Service Provider: {0}").format( - frappe.bold(settings.service_provider) + jingrow.bold(settings.service_provider) ) ) @@ -175,33 +175,33 @@ def get_exchange_rate(from_currency, to_currency, date=None): data = res.json() return data["result"] - frappe.log_error( + jingrow.log_error( title="Exchange Rate Fetch Error", message=f"Failed to fetch exchange rate from {from_currency} to {to_currency} using {api_used} API.", ) if api_used == "frankfurter": - user = frappe.session.user + user = jingrow.session.user is_manager = ( - "System Manager" in frappe.get_roles(user) - or "Sales Manager" in frappe.get_roles(user) + "System Manager" in jingrow.get_roles(user) + or "Sales Manager" in jingrow.get_roles(user) or user == "Administrator" ) if not is_manager: - frappe.throw( + jingrow.throw( _( "Ask your manager to set up the Exchange Rate Provider, as default provider does not support currency conversion for {0} to {1}." ).format(from_currency, to_currency) ) else: - frappe.throw( + jingrow.throw( _( "Setup the Exchange Rate Provider as 'Exchangerate Host' in settings, as default provider does not support currency conversion for {0} to {1}." ).format(from_currency, to_currency) ) - frappe.throw( + jingrow.throw( _( "Failed to fetch exchange rate from {0} to {1} on {2}. Please check your internet connection or try again later." ).format(from_currency, to_currency, date) diff --git a/crm/fcrm/doctype/fcrm_settings/test_fcrm_settings.py b/crm/fcrm/doctype/fcrm_settings/test_fcrm_settings.py index 2db39688..e42c8dee 100644 --- a/crm/fcrm/doctype/fcrm_settings/test_fcrm_settings.py +++ b/crm/fcrm/doctype/fcrm_settings/test_fcrm_settings.py @@ -1,8 +1,8 @@ # Copyright (c) 2024, JINGROW and Contributors # See license.txt -# import frappe -from frappe.tests import UnitTestCase +# import jingrow +from jingrow.tests import UnitTestCase class TestFCRMSettings(UnitTestCase): diff --git a/crm/fcrm/workspace/frappe_crm/frappe_crm.json b/crm/fcrm/workspace/frappe_crm/frappe_crm.json index cf2c463b..40c6443b 100644 --- a/crm/fcrm/workspace/frappe_crm/frappe_crm.json +++ b/crm/fcrm/workspace/frappe_crm/frappe_crm.json @@ -4,19 +4,19 @@ "creation": "2023-11-27 13:55:17.090361", "custom_blocks": [], "docstatus": 0, - "doctype": "Workspace", + "pagetype": "Workspace", "for_user": "", "hide_custom": 0, "icon": "filter", "idx": 0, "indicator_color": "", "is_hidden": 0, - "label": "Frappe CRM", + "label": "Jingrow CRM", "links": [], "modified": "2024-01-04 19:08:27.799960", "modified_by": "Administrator", "module": "FCRM", - "name": "Frappe CRM", + "name": "Jingrow CRM", "number_cards": [], "owner": "shariq@jingrow.com", "parent_page": "", @@ -27,107 +27,107 @@ "shortcuts": [ { "color": "Grey", - "doc_view": "List", + "pg_view": "List", "label": "Communication Statuses", "link_to": "CRM Communication Status", "stats_filter": "[]", - "type": "DocType" + "type": "PageType" }, { "color": "Grey", - "doc_view": "List", + "pg_view": "List", "label": "Leads", "link_to": "CRM Lead", "stats_filter": "[[\"CRM Lead\",\"converted\",\"=\",0,false]]", - "type": "DocType" + "type": "PageType" }, { "color": "Grey", - "doc_view": "List", + "pg_view": "List", "label": "CRM Portal Page", "type": "URL", "url": "/crm" }, { "color": "Grey", - "doc_view": "List", + "pg_view": "List", "label": "SLA", "link_to": "CRM Service Level Agreement", "stats_filter": "[]", - "type": "DocType" + "type": "PageType" }, { "color": "Grey", - "doc_view": "List", + "pg_view": "List", "label": "Lead Statuses", "link_to": "CRM Lead Status", "stats_filter": "[]", - "type": "DocType" + "type": "PageType" }, { "color": "Grey", - "doc_view": "Tree", + "pg_view": "Tree", "label": "Territories", "link_to": "CRM Territory", "stats_filter": "[]", - "type": "DocType" + "type": "PageType" }, { "color": "Grey", - "doc_view": "List", + "pg_view": "List", "label": "Assignment Rule", "link_to": "Assignment Rule", "stats_filter": "[]", - "type": "DocType" + "type": "PageType" }, { "color": "Grey", - "doc_view": "List", + "pg_view": "List", "label": "Deals", "link_to": "CRM Deal", "stats_filter": "[]", - "type": "DocType" + "type": "PageType" }, { "color": "Grey", - "doc_view": "List", + "pg_view": "List", "label": "Deal Statuses", "link_to": "CRM Deal Status", "stats_filter": "[]", - "type": "DocType" + "type": "PageType" }, { "color": "Grey", - "doc_view": "List", + "pg_view": "List", "label": "Lead Sources", "link_to": "CRM Lead Source", "stats_filter": "[]", - "type": "DocType" + "type": "PageType" }, { "color": "Grey", - "doc_view": "List", + "pg_view": "List", "label": "Organizations", "link_to": "CRM Organization", "stats_filter": "[]", - "type": "DocType" + "type": "PageType" }, { "color": "Grey", - "doc_view": "List", + "pg_view": "List", "label": "Contacts", "link_to": "Contact", "stats_filter": "[]", - "type": "DocType" + "type": "PageType" }, { "color": "Grey", - "doc_view": "List", + "pg_view": "List", "label": "Industries", "link_to": "CRM Industry", "stats_filter": "[]", - "type": "DocType" + "type": "PageType" } ], - "title": "Frappe CRM" + "title": "Jingrow CRM" } \ No newline at end of file diff --git a/crm/hooks.py b/crm/hooks.py index 875564ed..dac00129 100644 --- a/crm/hooks.py +++ b/crm/hooks.py @@ -1,5 +1,5 @@ app_name = "crm" -app_title = "Frappe CRM" +app_title = "Jingrow CRM" app_publisher = "JINGROW" app_description = "Kick-ass Open Source CRM" app_email = "shariq@jingrow.com" @@ -37,17 +37,17 @@ add_to_apps_screen = [ # website_theme_scss = "crm/public/scss/website" # include js, css files in header of web form -# webform_include_js = {"doctype": "public/js/doctype.js"} -# webform_include_css = {"doctype": "public/css/doctype.css"} +# webform_include_js = {"pagetype": "public/js/pagetype.js"} +# webform_include_css = {"pagetype": "public/css/pagetype.css"} # include js in page # page_js = {"page" : "public/js/file.js"} -# include js in doctype views -# doctype_js = {"doctype" : "public/js/doctype.js"} -# doctype_list_js = {"doctype" : "public/js/doctype_list.js"} -# doctype_tree_js = {"doctype" : "public/js/doctype_tree.js"} -# doctype_calendar_js = {"doctype" : "public/js/doctype_calendar.js"} +# include js in pagetype views +# pagetype_js = {"pagetype" : "public/js/pagetype.js"} +# pagetype_list_js = {"pagetype" : "public/js/pagetype_list.js"} +# pagetype_tree_js = {"pagetype" : "public/js/pagetype_tree.js"} +# pagetype_calendar_js = {"pagetype" : "public/js/pagetype_calendar.js"} # Home Pages # ---------- @@ -67,7 +67,7 @@ website_route_rules = [ # Generators # ---------- -# automatically create page for each record of this doctype +# automatically create page for each record of this pagetype # website_generators = ["Web Page"] # Jinja @@ -109,7 +109,7 @@ before_uninstall = "crm.uninstall.before_uninstall" # Desk Notifications # ------------------ -# See frappe.core.notifications.get_notification_config +# See jingrow.core.notifications.get_notification_config # notification_config = "crm.notifications.get_notification_config" @@ -118,18 +118,18 @@ before_uninstall = "crm.uninstall.before_uninstall" # Permissions evaluated in scripted ways # permission_query_conditions = { -# "Event": "frappe.desk.doctype.event.event.get_permission_query_conditions", +# "Event": "jingrow.desk.pagetype.event.event.get_permission_query_conditions", # } # # has_permission = { -# "Event": "frappe.desk.doctype.event.event.has_permission", +# "Event": "jingrow.desk.pagetype.event.event.has_permission", # } -# DocType Class +# PageType Class # --------------- -# Override standard doctype classes +# Override standard pagetype classes -override_doctype_class = { +override_pagetype_class = { "Contact": "crm.overrides.contact.CustomContact", "Email Template": "crm.overrides.email_template.CustomEmailTemplate", } @@ -138,7 +138,7 @@ override_doctype_class = { # --------------- # Hook on document methods and events -doc_events = { +pg_events = { "Contact": { "validate": ["crm.api.contact.validate"], }, @@ -155,7 +155,7 @@ doc_events = { }, "CRM Deal": { "on_update": [ - "crm.fcrm.doctype.erpnext_crm_settings.erpnext_crm_settings.create_customer_in_erpnext" + "crm.fcrm.pagetype.erpnext_crm_settings.erpnext_crm_settings.create_customer_in_erpnext" ], }, "User": { @@ -194,13 +194,13 @@ doc_events = { # ------------------------------ # # override_whitelisted_methods = { -# "frappe.desk.doctype.event.event.get_events": "crm.event.get_events" +# "jingrow.desk.pagetype.event.event.get_events": "crm.event.get_events" # } # # each overriding function accepts a `data` argument; -# generated from the base implementation of the doctype dashboard, -# along with any modifications made in other Frappe apps -# override_doctype_dashboards = { +# generated from the base implementation of the pagetype dashboard, +# along with any modifications made in other Jingrow apps +# override_pagetype_dashboards = { # "Task": "crm.task.get_dashboard_data" # } @@ -228,22 +228,22 @@ doc_events = { # user_data_fields = [ # { -# "doctype": "{doctype_1}", +# "pagetype": "{pagetype_1}", # "filter_by": "{filter_by}", # "redact_fields": ["{field_1}", "{field_2}"], # "partial": 1, # }, # { -# "doctype": "{doctype_2}", +# "pagetype": "{pagetype_2}", # "filter_by": "{filter_by}", # "partial": 1, # }, # { -# "doctype": "{doctype_3}", +# "pagetype": "{pagetype_3}", # "strict": False, # }, # { -# "doctype": "{doctype_4}" +# "pagetype": "{pagetype_4}" # } # ] @@ -254,7 +254,7 @@ doc_events = { # "crm.auth.validate" # ] -after_migrate = ["crm.fcrm.doctype.fcrm_settings.fcrm_settings.after_migrate"] +after_migrate = ["crm.fcrm.pagetype.fcrm_settings.fcrm_settings.after_migrate"] standard_dropdown_items = [ { @@ -282,7 +282,7 @@ standard_dropdown_items = [ }, { "name1": "login_to_fc", - "label": "Login to Frappe Cloud", + "label": "Login to Jingrow Cloud", "type": "Route", "route": "#", "is_standard": 1, diff --git a/crm/install.py b/crm/install.py index 6db6fc0e..7765b360 100644 --- a/crm/install.py +++ b/crm/install.py @@ -1,11 +1,11 @@ # Copyright (c) 2022, JINGROW and Contributors # MIT License. See license.txt import click -import frappe -from frappe.custom.doctype.custom_field.custom_field import create_custom_fields +import jingrow +from jingrow.custom.pagetype.custom_field.custom_field import create_custom_fields -from crm.fcrm.doctype.crm_dashboard.crm_dashboard import create_default_manager_dashboard -from crm.fcrm.doctype.crm_products.crm_products import create_product_details_script +from crm.fcrm.pagetype.crm_dashboard.crm_dashboard import create_default_manager_dashboard +from crm.fcrm.pagetype.crm_products.crm_products import create_product_details_script def before_install(): @@ -27,7 +27,7 @@ def after_install(force=False): create_default_manager_dashboard(force) create_assignment_rule_custom_fields() add_assignment_rule_property_setters() - frappe.db.commit() + jingrow.db.commit() def add_default_lead_statuses(): @@ -59,14 +59,14 @@ def add_default_lead_statuses(): } for status in statuses: - if frappe.db.exists("CRM Lead Status", status): + if jingrow.db.exists("CRM Lead Status", status): continue - doc = frappe.new_doc("CRM Lead Status") - doc.lead_status = status - doc.color = statuses[status]["color"] - doc.position = statuses[status]["position"] - doc.insert() + pg = jingrow.new_pg("CRM Lead Status") + pg.lead_status = status + pg.color = statuses[status]["color"] + pg.position = statuses[status]["position"] + pg.insert() def add_default_deal_statuses(): @@ -116,141 +116,141 @@ def add_default_deal_statuses(): } for status in statuses: - if frappe.db.exists("CRM Deal Status", status): + if jingrow.db.exists("CRM Deal Status", status): continue - doc = frappe.new_doc("CRM Deal Status") - doc.deal_status = status - doc.color = statuses[status]["color"] - doc.type = statuses[status]["type"] - doc.probability = statuses[status]["probability"] - doc.position = statuses[status]["position"] - doc.insert() + pg = jingrow.new_pg("CRM Deal Status") + pg.deal_status = status + pg.color = statuses[status]["color"] + pg.type = statuses[status]["type"] + pg.probability = statuses[status]["probability"] + pg.position = statuses[status]["position"] + pg.insert() def add_default_communication_statuses(): statuses = ["Open", "Replied"] for status in statuses: - if frappe.db.exists("CRM Communication Status", status): + if jingrow.db.exists("CRM Communication Status", status): continue - doc = frappe.new_doc("CRM Communication Status") - doc.status = status - doc.insert() + pg = jingrow.new_pg("CRM Communication Status") + pg.status = status + pg.insert() def add_default_fields_layout(force=False): quick_entry_layouts = { "CRM Lead-Quick Entry": { - "doctype": "CRM Lead", + "pagetype": "CRM Lead", "layout": '[{"name": "person_section", "columns": [{"name": "column_5jrk", "fields": ["salutation", "email"]}, {"name": "column_5CPV", "fields": ["first_name", "mobile_no"]}, {"name": "column_gXOy", "fields": ["last_name", "gender"]}]}, {"name": "organization_section", "columns": [{"name": "column_GHfX", "fields": ["organization", "territory"]}, {"name": "column_hXjS", "fields": ["website", "annual_revenue"]}, {"name": "column_RDNA", "fields": ["no_of_employees", "industry"]}]}, {"name": "lead_section", "columns": [{"name": "column_EO1H", "fields": ["status"]}, {"name": "column_RWBe", "fields": ["lead_owner"]}]}]', }, "CRM Deal-Quick Entry": { - "doctype": "CRM Deal", + "pagetype": "CRM Deal", "layout": '[{"name": "organization_section", "hidden": true, "editable": false, "columns": [{"name": "column_GpMP", "fields": ["organization"]}, {"name": "column_FPTn", "fields": []}]}, {"name": "organization_details_section", "editable": false, "columns": [{"name": "column_S3tQ", "fields": ["organization_name", "territory"]}, {"name": "column_KqV1", "fields": ["website", "annual_revenue"]}, {"name": "column_1r67", "fields": ["no_of_employees", "industry"]}]}, {"name": "contact_section", "hidden": true, "editable": false, "columns": [{"name": "column_CeXr", "fields": ["contact"]}, {"name": "column_yHbk", "fields": []}]}, {"name": "contact_details_section", "editable": false, "columns": [{"name": "column_ZTWr", "fields": ["salutation", "email"]}, {"name": "column_tabr", "fields": ["first_name", "mobile_no"]}, {"name": "column_Qjdx", "fields": ["last_name", "gender"]}]}, {"name": "deal_section", "columns": [{"name": "column_mdps", "fields": ["status"]}, {"name": "column_H40H", "fields": ["deal_owner"]}]}]', }, "Contact-Quick Entry": { - "doctype": "Contact", + "pagetype": "Contact", "layout": '[{"name": "salutation_section", "columns": [{"name": "column_eXks", "fields": ["salutation"]}]}, {"name": "full_name_section", "hideBorder": true, "columns": [{"name": "column_cSxf", "fields": ["first_name"]}, {"name": "column_yBc7", "fields": ["last_name"]}]}, {"name": "email_section", "hideBorder": true, "columns": [{"name": "column_tH3L", "fields": ["email_id"]}]}, {"name": "mobile_gender_section", "hideBorder": true, "columns": [{"name": "column_lrfI", "fields": ["mobile_no"]}, {"name": "column_Tx3n", "fields": ["gender"]}]}, {"name": "organization_section", "hideBorder": true, "columns": [{"name": "column_S0J8", "fields": ["company_name"]}]}, {"name": "designation_section", "hideBorder": true, "columns": [{"name": "column_bsO8", "fields": ["designation"]}]}, {"name": "address_section", "hideBorder": true, "columns": [{"name": "column_W3VY", "fields": ["address"]}]}]', }, "CRM Organization-Quick Entry": { - "doctype": "CRM Organization", + "pagetype": "CRM Organization", "layout": '[{"name": "organization_section", "columns": [{"name": "column_zOuv", "fields": ["organization_name"]}]}, {"name": "website_revenue_section", "hideBorder": true, "columns": [{"name": "column_I5Dy", "fields": ["website"]}, {"name": "column_Rgss", "fields": ["annual_revenue"]}]}, {"name": "territory_section", "hideBorder": true, "columns": [{"name": "column_w6ap", "fields": ["territory"]}]}, {"name": "employee_industry_section", "hideBorder": true, "columns": [{"name": "column_u5tZ", "fields": ["no_of_employees"]}, {"name": "column_FFrT", "fields": ["industry"]}]}, {"name": "address_section", "hideBorder": true, "columns": [{"name": "column_O2dk", "fields": ["address"]}]}]', }, "Address-Quick Entry": { - "doctype": "Address", + "pagetype": "Address", "layout": '[{"name": "details_section", "columns": [{"name": "column_uSSG", "fields": ["address_title", "address_type", "address_line1", "address_line2", "city", "state", "country", "pincode"]}]}]', }, "CRM Call Log-Quick Entry": { - "doctype": "CRM Call Log", + "pagetype": "CRM Call Log", "layout": '[{"name":"details_section","columns":[{"name":"column_uMSG","fields":["type","from","duration"]},{"name":"column_wiZT","fields":["to","status","caller","receiver"]}]}]', }, } sidebar_fields_layouts = { "CRM Lead-Side Panel": { - "doctype": "CRM Lead", + "pagetype": "CRM Lead", "layout": '[{"label": "Details", "name": "details_section", "opened": true, "columns": [{"name": "column_kl92", "fields": ["organization", "website", "territory", "industry", "job_title", "source", "lead_owner"]}]}, {"label": "Person", "name": "person_section", "opened": true, "columns": [{"name": "column_XmW2", "fields": ["salutation", "first_name", "last_name", "email", "mobile_no"]}]}]', }, "CRM Deal-Side Panel": { - "doctype": "CRM Deal", + "pagetype": "CRM Deal", "layout": '[{"label": "Contacts", "name": "contacts_section", "opened": true, "editable": false, "contacts": []}, {"label": "Organization Details", "name": "organization_section", "opened": true, "columns": [{"name": "column_na2Q", "fields": ["organization", "website", "territory", "annual_revenue", "close_date", "probability", "next_step", "deal_owner"]}]}]', }, "Contact-Side Panel": { - "doctype": "Contact", + "pagetype": "Contact", "layout": '[{"label": "Details", "name": "details_section", "opened": true, "columns": [{"name": "column_eIWl", "fields": ["salutation", "first_name", "last_name", "email_id", "mobile_no", "gender", "company_name", "designation", "address"]}]}]', }, "CRM Organization-Side Panel": { - "doctype": "CRM Organization", + "pagetype": "CRM Organization", "layout": '[{"label": "Details", "name": "details_section", "opened": true, "columns": [{"name": "column_IJOV", "fields": ["organization_name", "website", "territory", "industry", "no_of_employees", "address"]}]}]', }, } data_fields_layouts = { "CRM Lead-Data Fields": { - "doctype": "CRM Lead", + "pagetype": "CRM Lead", "layout": '[{"label": "Details", "name": "details_section", "opened": true, "columns": [{"name": "column_ZgLG", "fields": ["organization", "industry", "lead_owner"]}, {"name": "column_TbYq", "fields": ["website", "job_title"]}, {"name": "column_OKSX", "fields": ["territory", "source"]}]}, {"label": "Person", "name": "person_section", "opened": true, "columns": [{"name": "column_6c5g", "fields": ["salutation", "email"]}, {"name": "column_1n7Q", "fields": ["first_name", "mobile_no"]}, {"name": "column_cT6C", "fields": ["last_name"]}]}]', }, "CRM Deal-Data Fields": { - "doctype": "CRM Deal", + "pagetype": "CRM Deal", "layout": '[{"name":"first_tab","sections":[{"label":"Details","name":"details_section","opened":true,"columns":[{"name":"column_z9XL","fields":["organization","annual_revenue","next_step"]},{"name":"column_gM4w","fields":["website","closed_date","deal_owner"]},{"name":"column_gWmE","fields":["territory","probability"]}]},{"label":"Products","name":"section_jHhQ","opened":true,"columns":[{"name":"column_xiNF","fields":["products"]}],"editingLabel":false,"hideLabel":true},{"label":"New Section","name":"section_WNOQ","opened":true,"columns":[{"name":"column_ziBW","fields":["total"]},{"label":"","name":"column_wuwA","fields":["net_total"]}],"hideBorder":true,"hideLabel":true}]}]', }, } for layout in quick_entry_layouts: - if frappe.db.exists("CRM Fields Layout", layout): + if jingrow.db.exists("CRM Fields Layout", layout): if force: - frappe.delete_doc("CRM Fields Layout", layout) + jingrow.delete_pg("CRM Fields Layout", layout) else: continue - doc = frappe.new_doc("CRM Fields Layout") - doc.type = "Quick Entry" - doc.dt = quick_entry_layouts[layout]["doctype"] - doc.layout = quick_entry_layouts[layout]["layout"] - doc.insert() + pg = jingrow.new_pg("CRM Fields Layout") + pg.type = "Quick Entry" + pg.dt = quick_entry_layouts[layout]["pagetype"] + pg.layout = quick_entry_layouts[layout]["layout"] + pg.insert() for layout in sidebar_fields_layouts: - if frappe.db.exists("CRM Fields Layout", layout): + if jingrow.db.exists("CRM Fields Layout", layout): if force: - frappe.delete_doc("CRM Fields Layout", layout) + jingrow.delete_pg("CRM Fields Layout", layout) else: continue - doc = frappe.new_doc("CRM Fields Layout") - doc.type = "Side Panel" - doc.dt = sidebar_fields_layouts[layout]["doctype"] - doc.layout = sidebar_fields_layouts[layout]["layout"] - doc.insert() + pg = jingrow.new_pg("CRM Fields Layout") + pg.type = "Side Panel" + pg.dt = sidebar_fields_layouts[layout]["pagetype"] + pg.layout = sidebar_fields_layouts[layout]["layout"] + pg.insert() for layout in data_fields_layouts: - if frappe.db.exists("CRM Fields Layout", layout): + if jingrow.db.exists("CRM Fields Layout", layout): if force: - frappe.delete_doc("CRM Fields Layout", layout) + jingrow.delete_pg("CRM Fields Layout", layout) else: continue - doc = frappe.new_doc("CRM Fields Layout") - doc.type = "Data Fields" - doc.dt = data_fields_layouts[layout]["doctype"] - doc.layout = data_fields_layouts[layout]["layout"] - doc.insert() + pg = jingrow.new_pg("CRM Fields Layout") + pg.type = "Data Fields" + pg.dt = data_fields_layouts[layout]["pagetype"] + pg.layout = data_fields_layouts[layout]["layout"] + pg.insert() def add_property_setter(): - if not frappe.db.exists("Property Setter", {"name": "Contact-main-search_fields"}): - doc = frappe.new_doc("Property Setter") - doc.doctype_or_field = "DocType" - doc.doc_type = "Contact" - doc.property = "search_fields" - doc.property_type = "Data" - doc.value = "email_id" - doc.insert() + if not jingrow.db.exists("Property Setter", {"name": "Contact-main-search_fields"}): + pg = jingrow.new_pg("Property Setter") + pg.pagetype_or_field = "PageType" + pg.pg_type = "Contact" + pg.property = "search_fields" + pg.property_type = "Data" + pg.value = "email_id" + pg.insert() def add_email_template_custom_fields(): - if not frappe.get_meta("Email Template").has_field("enabled"): + if not jingrow.get_meta("Email Template").has_field("enabled"): click.secho("* Installing Custom Fields in Email Template") create_custom_fields( @@ -264,17 +264,17 @@ def add_email_template_custom_fields(): "insert_after": "", }, { - "fieldname": "reference_doctype", + "fieldname": "reference_pagetype", "fieldtype": "Link", - "label": "Doctype", - "options": "DocType", + "label": "Pagetype", + "options": "PageType", "insert_after": "enabled", }, ] } ) - frappe.clear_cache(doctype="Email Template") + jingrow.clear_cache(pagetype="Email Template") def add_default_industries(): @@ -333,12 +333,12 @@ def add_default_industries(): ] for industry in industries: - if frappe.db.exists("CRM Industry", industry): + if jingrow.db.exists("CRM Industry", industry): continue - doc = frappe.new_doc("CRM Industry") - doc.industry = industry - doc.insert() + pg = jingrow.new_pg("CRM Industry") + pg.industry = industry + pg.insert() def add_default_lead_sources(): @@ -356,12 +356,12 @@ def add_default_lead_sources(): ] for source in lead_sources: - if frappe.db.exists("CRM Lead Source", source): + if jingrow.db.exists("CRM Lead Source", source): continue - doc = frappe.new_doc("CRM Lead Source") - doc.source_name = source - doc.insert() + pg = jingrow.new_pg("CRM Lead Source") + pg.source_name = source + pg.insert() def add_default_lost_reasons(): @@ -393,17 +393,17 @@ def add_default_lost_reasons(): ] for reason in lost_reasons: - if frappe.db.exists("CRM Lost Reason", reason["reason"]): + if jingrow.db.exists("CRM Lost Reason", reason["reason"]): continue - doc = frappe.new_doc("CRM Lost Reason") - doc.lost_reason = reason["reason"] - doc.description = reason["description"] - doc.insert() + pg = jingrow.new_pg("CRM Lost Reason") + pg.lost_reason = reason["reason"] + pg.description = reason["description"] + pg.insert() def add_standard_dropdown_items(): - crm_settings = frappe.get_single("FCRM Settings") + crm_settings = jingrow.get_single("FCRM Settings") # don't add dropdown items if they're already present if crm_settings.dropdown_items: @@ -411,69 +411,69 @@ def add_standard_dropdown_items(): crm_settings.dropdown_items = [] - for item in frappe.get_hooks("standard_dropdown_items"): + for item in jingrow.get_hooks("standard_dropdown_items"): crm_settings.append("dropdown_items", item) crm_settings.save() def add_default_scripts(): - from crm.fcrm.doctype.fcrm_settings.fcrm_settings import create_forecasting_script + from crm.fcrm.pagetype.fcrm_settings.fcrm_settings import create_forecasting_script - for doctype in ["CRM Lead", "CRM Deal"]: - create_product_details_script(doctype) + for pagetype in ["CRM Lead", "CRM Deal"]: + create_product_details_script(pagetype) create_forecasting_script() def add_assignment_rule_property_setters(): - """Add a property setter to the Assignment Rule DocType for assign_condition and unassign_condition.""" + """Add a property setter to the Assignment Rule PageType for assign_condition and unassign_condition.""" default_fields = { - "doctype": "Property Setter", - "doctype_or_field": "DocField", - "doc_type": "Assignment Rule", + "pagetype": "Property Setter", + "pagetype_or_field": "DocField", + "pg_type": "Assignment Rule", "property_type": "Data", "is_system_generated": 1, } - if not frappe.db.exists("Property Setter", {"name": "Assignment Rule-assign_condition-depends_on"}): - frappe.get_doc( + if not jingrow.db.exists("Property Setter", {"name": "Assignment Rule-assign_condition-depends_on"}): + jingrow.get_pg( { **default_fields, "name": "Assignment Rule-assign_condition-depends_on", "field_name": "assign_condition", "property": "depends_on", - "value": "eval: !doc.assign_condition_json", + "value": "eval: !pg.assign_condition_json", } ).insert() else: - frappe.db.set_value( + jingrow.db.set_value( "Property Setter", {"name": "Assignment Rule-assign_condition-depends_on"}, "value", - "eval: !doc.assign_condition_json", + "eval: !pg.assign_condition_json", ) - if not frappe.db.exists("Property Setter", {"name": "Assignment Rule-unassign_condition-depends_on"}): - frappe.get_doc( + if not jingrow.db.exists("Property Setter", {"name": "Assignment Rule-unassign_condition-depends_on"}): + jingrow.get_pg( { **default_fields, "name": "Assignment Rule-unassign_condition-depends_on", "field_name": "unassign_condition", "property": "depends_on", - "value": "eval: !doc.unassign_condition_json", + "value": "eval: !pg.unassign_condition_json", } ).insert() else: - frappe.db.set_value( + jingrow.db.set_value( "Property Setter", {"name": "Assignment Rule-unassign_condition-depends_on"}, "value", - "eval: !doc.unassign_condition_json", + "eval: !pg.unassign_condition_json", ) def create_assignment_rule_custom_fields(): - if not frappe.get_meta("Assignment Rule").has_field("assign_condition_json"): + if not jingrow.get_meta("Assignment Rule").has_field("assign_condition_json"): click.secho("* Installing Custom Fields in Assignment Rule") create_custom_fields( @@ -485,7 +485,7 @@ def create_assignment_rule_custom_fields(): "fieldtype": "Code", "label": "Assign Condition JSON", "insert_after": "assign_condition", - "depends_on": "eval: doc.assign_condition_json", + "depends_on": "eval: pg.assign_condition_json", }, { "description": "Autogenerated field by CRM App", @@ -493,10 +493,10 @@ def create_assignment_rule_custom_fields(): "fieldtype": "Code", "label": "Unassign Condition JSON", "insert_after": "unassign_condition", - "depends_on": "eval: doc.unassign_condition_json", + "depends_on": "eval: pg.unassign_condition_json", }, ], } ) - frappe.clear_cache(doctype="Assignment Rule") + jingrow.clear_cache(pagetype="Assignment Rule") diff --git a/crm/integrations/api.py b/crm/integrations/api.py index 76151f1f..8d2d2a68 100644 --- a/crm/integrations/api.py +++ b/crm/integrations/api.py @@ -1,14 +1,14 @@ -import frappe -from frappe.query_builder import Order +import jingrow +from jingrow.query_builder import Order from pypika.functions import Replace from crm.utils import are_same_phone_number, parse_phone_number -@frappe.whitelist() +@jingrow.whitelist() def is_call_integration_enabled(): - twilio_enabled = frappe.db.get_single_value("CRM Twilio Settings", "enabled") - exotel_enabled = frappe.db.get_single_value("CRM Exotel Settings", "enabled") + twilio_enabled = jingrow.db.get_single_value("CRM Twilio Settings", "enabled") + exotel_enabled = jingrow.db.get_single_value("CRM Exotel Settings", "enabled") return { "twilio_enabled": twilio_enabled, @@ -18,10 +18,10 @@ def is_call_integration_enabled(): def get_user_default_calling_medium(): - if not frappe.db.exists("CRM Telephony Agent", frappe.session.user): + if not jingrow.db.exists("CRM Telephony Agent", jingrow.session.user): return None - default_medium = frappe.db.get_value("CRM Telephony Agent", frappe.session.user, "default_medium") + default_medium = jingrow.db.get_value("CRM Telephony Agent", jingrow.session.user, "default_medium") if not default_medium: return None @@ -29,52 +29,52 @@ def get_user_default_calling_medium(): return default_medium -@frappe.whitelist() +@jingrow.whitelist() def set_default_calling_medium(medium): - if not frappe.db.exists("CRM Telephony Agent", frappe.session.user): - frappe.get_doc( + if not jingrow.db.exists("CRM Telephony Agent", jingrow.session.user): + jingrow.get_pg( { - "doctype": "CRM Telephony Agent", - "user": frappe.session.user, + "pagetype": "CRM Telephony Agent", + "user": jingrow.session.user, "default_medium": medium, } ).insert(ignore_permissions=True) else: - frappe.db.set_value("CRM Telephony Agent", frappe.session.user, "default_medium", medium) + jingrow.db.set_value("CRM Telephony Agent", jingrow.session.user, "default_medium", medium) return get_user_default_calling_medium() -@frappe.whitelist() +@jingrow.whitelist() def add_note_to_call_log(call_sid, note): """Add/Update note to call log based on call sid.""" _note = None if not note.get("name"): - _note = frappe.get_doc( + _note = jingrow.get_pg( { - "doctype": "FCRM Note", + "pagetype": "FCRM Note", "title": note.get("title", "Call Note"), "content": note.get("content"), } ).insert(ignore_permissions=True) else: - _note = frappe.set_value("FCRM Note", note.get("name"), "content", note.get("content")) + _note = jingrow.set_value("FCRM Note", note.get("name"), "content", note.get("content")) - call_log = frappe.get_cached_doc("CRM Call Log", call_sid) - call_log.link_with_reference_doc("FCRM Note", _note.name) + call_log = jingrow.get_cached_pg("CRM Call Log", call_sid) + call_log.link_with_reference_pg("FCRM Note", _note.name) call_log.save(ignore_permissions=True) return _note -@frappe.whitelist() +@jingrow.whitelist() def add_task_to_call_log(call_sid, task): """Add/Update task to call log based on call sid.""" _task = None if not task.get("name"): - _task = frappe.get_doc( + _task = jingrow.get_pg( { - "doctype": "CRM Task", + "pagetype": "CRM Task", "title": task.get("title"), "description": task.get("description"), "assigned_to": task.get("assigned_to"), @@ -84,7 +84,7 @@ def add_task_to_call_log(call_sid, task): } ).insert(ignore_permissions=True) else: - _task = frappe.get_doc("CRM Task", task.get("name")) + _task = jingrow.get_pg("CRM Task", task.get("name")) _task.update( { "title": task.get("title"), @@ -97,14 +97,14 @@ def add_task_to_call_log(call_sid, task): ) _task.save(ignore_permissions=True) - call_log = frappe.get_doc("CRM Call Log", call_sid) - call_log.link_with_reference_doc("CRM Task", _task.name) + call_log = jingrow.get_pg("CRM Call Log", call_sid) + call_log.link_with_reference_pg("CRM Task", _task.name) call_log.save(ignore_permissions=True) return _task -@frappe.whitelist() +@jingrow.whitelist() def get_contact_by_phone_number(phone_number): """Get contact by phone number.""" number = parse_phone_number(phone_number) @@ -129,13 +129,13 @@ def get_contact(phone_number, country="IN", exact_match=False): ) # Check if the number is associated with a contact - Contact = frappe.qb.DocType("Contact") + Contact = jingrow.qb.PageType("Contact") normalized_phone = Replace( Replace(Replace(Replace(Replace(Contact.mobile_no, " ", ""), "-", ""), "(", ""), ")", ""), "+", "" ) query = ( - frappe.qb.from_(Contact) + jingrow.qb.from_(Contact) .select(Contact.name, Contact.full_name, Contact.image, Contact.mobile_no) .where(normalized_phone.like(f"%{cleaned_number}%")) .orderby("modified", order=Order.desc) @@ -145,8 +145,8 @@ def get_contact(phone_number, country="IN", exact_match=False): if len(contacts): # Check if the contact is associated with a deal for contact in contacts: - if frappe.db.exists("CRM Contacts", {"contact": contact.name, "is_primary": 1}): - deal = frappe.db.get_value( + if jingrow.db.exists("CRM Contacts", {"contact": contact.name, "is_primary": 1}): + deal = jingrow.db.get_value( "CRM Contacts", {"contact": contact.name, "is_primary": 1}, "parent" ) if are_same_phone_number(contact.mobile_no, phone_number, country, validate=not exact_match): @@ -157,13 +157,13 @@ def get_contact(phone_number, country="IN", exact_match=False): return contacts[0] # Else, Check if the number is associated with a lead - Lead = frappe.qb.DocType("CRM Lead") + Lead = jingrow.qb.PageType("CRM Lead") normalized_phone = Replace( Replace(Replace(Replace(Replace(Lead.mobile_no, " ", ""), "-", ""), "(", ""), ")", ""), "+", "" ) query = ( - frappe.qb.from_(Lead) + jingrow.qb.from_(Lead) .select(Lead.name, Lead.lead_name, Lead.image, Lead.mobile_no) .where(Lead.converted == 0) .where(normalized_phone.like(f"%{cleaned_number}%")) diff --git a/crm/integrations/exotel/handler.py b/crm/integrations/exotel/handler.py index e070cbce..ef8f5443 100644 --- a/crm/integrations/exotel/handler.py +++ b/crm/integrations/exotel/handler.py @@ -1,8 +1,8 @@ import bleach -import frappe +import jingrow import requests -from frappe import _ -from frappe.integrations.utils import create_request_log +from jingrow import _ +from jingrow.integrations.utils import create_request_log from crm.integrations.api import get_contact_by_phone_number @@ -17,7 +17,7 @@ from crm.integrations.api import get_contact_by_phone_number # Incoming Call -@frappe.whitelist(allow_guest=True) +@jingrow.whitelist(allow_guest=True) def handle_request(**kwargs): validate_request() if not is_integration_enabled(): @@ -27,7 +27,7 @@ def handle_request(**kwargs): kwargs, request_description="Exotel Call", service_name="Exotel", - request_headers=frappe.request.headers, + request_headers=jingrow.request.headers, is_remote_request=1, ) @@ -39,7 +39,7 @@ def handle_request(**kwargs): call_payload = kwargs - frappe.publish_realtime("exotel_call", call_payload) + jingrow.publish_realtime("exotel_call", call_payload) status = call_payload.get("Status") if status == "free": return @@ -57,43 +57,43 @@ def handle_request(**kwargs): ) except Exception: request_log.status = "Failed" - request_log.error = frappe.get_traceback() - frappe.db.rollback() - frappe.log_error(title="Error while creating/updating call record") - frappe.db.commit() + request_log.error = jingrow.get_traceback() + jingrow.db.rollback() + jingrow.log_error(title="Error while creating/updating call record") + jingrow.db.commit() finally: request_log.save(ignore_permissions=True) - frappe.db.commit() + jingrow.db.commit() # Outgoing Call -@frappe.whitelist() +@jingrow.whitelist() def make_a_call(to_number, from_number=None, caller_id=None): if not is_integration_enabled(): - frappe.throw(_("Please setup Exotel intergration"), title=_("Integration Not Enabled")) + jingrow.throw(_("Please setup Exotel intergration"), title=_("Integration Not Enabled")) endpoint = get_exotel_endpoint("Calls/connect.json?details=true") if not from_number: - from_number = frappe.get_value("CRM Telephony Agent", {"user": frappe.session.user}, "mobile_no") + from_number = jingrow.get_value("CRM Telephony Agent", {"user": jingrow.session.user}, "mobile_no") if not caller_id: - caller_id = frappe.get_value("CRM Telephony Agent", {"user": frappe.session.user}, "exotel_number") + caller_id = jingrow.get_value("CRM Telephony Agent", {"user": jingrow.session.user}, "exotel_number") if not caller_id: - frappe.throw( + jingrow.throw( _("You do not have Exotel Number set in your Telephony Agent"), title=_("Exotel Number Missing") ) if caller_id and caller_id not in get_all_exophones(): - frappe.throw(_("Exotel Number {0} is not valid").format(caller_id), title=_("Invalid Exotel Number")) + jingrow.throw(_("Exotel Number {0} is not valid").format(caller_id), title=_("Invalid Exotel Number")) if not from_number: - frappe.throw( + jingrow.throw( _("You do not have mobile number set in your Telephony Agent"), title=_("Mobile Number Missing") ) - record_call = frappe.db.get_single_value("CRM Exotel Settings", "record_call") + record_call = jingrow.db.get_single_value("CRM Exotel Settings", "record_call") try: response = requests.post( @@ -111,7 +111,7 @@ def make_a_call(to_number, from_number=None, caller_id=None): response.raise_for_status() except requests.exceptions.HTTPError: if exc := response.json().get("RestException"): - frappe.throw(bleach.linkify(exc.get("Message")), title=_("Exotel Exception")) + jingrow.throw(bleach.linkify(exc.get("Message")), title=_("Exotel Exception")) else: res = response.json() call_payload = res.get("Call", {}) @@ -122,7 +122,7 @@ def make_a_call(to_number, from_number=None, caller_id=None): to_number=call_payload.get("To"), medium=call_payload.get("PhoneNumberSid"), call_type="Outgoing", - agent=frappe.session.user, + agent=jingrow.session.user, ) call_details = response.json().get("Call", {}) @@ -149,30 +149,30 @@ def get_all_exophones(): def get_status_updater_url(): - from frappe.utils.data import get_url + from jingrow.utils.data import get_url - webhook_verify_token = frappe.db.get_single_value("CRM Exotel Settings", "webhook_verify_token") + webhook_verify_token = jingrow.db.get_single_value("CRM Exotel Settings", "webhook_verify_token") return get_url(f"api/method/crm.integrations.exotel.handler.handle_request?key={webhook_verify_token}") def get_exotel_settings(): - return frappe.get_single("CRM Exotel Settings") + return jingrow.get_single("CRM Exotel Settings") def validate_request(): # workaround security since exotel does not support request signature # /api/method/?key= - webhook_verify_token = frappe.db.get_single_value("CRM Exotel Settings", "webhook_verify_token") - key = frappe.request.args.get("key") + webhook_verify_token = jingrow.db.get_single_value("CRM Exotel Settings", "webhook_verify_token") + key = jingrow.request.args.get("key") is_valid = key and key == webhook_verify_token if not is_valid: - frappe.throw(_("Unauthorized request"), exc=frappe.PermissionError) + jingrow.throw(_("Unauthorized request"), exc=jingrow.PermissionError) -@frappe.whitelist() +@jingrow.whitelist() def is_integration_enabled(): - return frappe.db.get_single_value("CRM Exotel Settings", "enabled", True) + return jingrow.db.get_single_value("CRM Exotel Settings", "enabled", True) # Call Log Functions @@ -185,7 +185,7 @@ def create_call_log( status="Ringing", call_type="Incoming", ): - call_log = frappe.new_doc("CRM Call Log") + call_log = jingrow.new_pg("CRM Call Log") call_log.id = call_id call_log.to = to_number call_log.medium = medium @@ -204,28 +204,28 @@ def create_call_log( link(contact_number, call_log) call_log.save(ignore_permissions=True) - frappe.db.commit() + jingrow.db.commit() return call_log def link(contact_number, call_log): contact = get_contact_by_phone_number(contact_number) if contact.get("name"): - doctype = "Contact" + pagetype = "Contact" docname = contact.get("name") if contact.get("lead"): - doctype = "CRM Lead" + pagetype = "CRM Lead" docname = contact.get("lead") elif contact.get("deal"): - doctype = "CRM Deal" + pagetype = "CRM Deal" docname = contact.get("deal") - call_log.link_with_reference_doc(doctype, docname) + call_log.link_with_reference_pg(pagetype, docname) def get_call_log(call_payload): call_log_id = call_payload.get("CallSid") - if frappe.db.exists("CRM Call Log", call_log_id): - return frappe.get_doc("CRM Call Log", call_log_id) + if jingrow.db.exists("CRM Call Log", call_log_id): + return jingrow.get_pg("CRM Call Log", call_log_id) def get_call_log_status(call_payload, direction="inbound"): @@ -279,8 +279,8 @@ def update_call_log(call_payload, status="Ringing", call_log=None): call_log.receiver = call_payload.get("AgentEmail") call_log.save(ignore_permissions=True) - frappe.db.commit() + jingrow.db.commit() return call_log except Exception: - frappe.log_error(title="Error while updating call record") - frappe.db.commit() + jingrow.log_error(title="Error while updating call record") + jingrow.db.commit() diff --git a/crm/integrations/twilio/api.py b/crm/integrations/twilio/api.py index 7437177a..c7d5b185 100644 --- a/crm/integrations/twilio/api.py +++ b/crm/integrations/twilio/api.py @@ -1,7 +1,7 @@ import json -import frappe -from frappe import _ +import jingrow +from jingrow import _ from werkzeug.wrappers import Response from crm.integrations.api import get_contact_by_phone_number @@ -9,19 +9,19 @@ from crm.integrations.api import get_contact_by_phone_number from .twilio_handler import IncomingCall, Twilio, TwilioCallDetails -@frappe.whitelist() +@jingrow.whitelist() def is_enabled(): - return frappe.db.get_single_value("CRM Twilio Settings", "enabled") + return jingrow.db.get_single_value("CRM Twilio Settings", "enabled") -@frappe.whitelist() +@jingrow.whitelist() def generate_access_token(): """Returns access token that is required to authenticate Twilio Client SDK.""" twilio = Twilio.connect() if not twilio: return {} - from_number = frappe.db.get_value("CRM Telephony Agent", frappe.session.user, "twilio_number") + from_number = jingrow.db.get_value("CRM Telephony Agent", jingrow.session.user, "twilio_number") if not from_number: return { "ok": False, @@ -29,20 +29,20 @@ def generate_access_token(): "detail": "Phone number is not mapped to the caller", } - token = twilio.generate_voice_access_token(identity=frappe.session.user) - return {"token": frappe.safe_decode(token)} + token = twilio.generate_voice_access_token(identity=jingrow.session.user) + return {"token": jingrow.safe_decode(token)} -@frappe.whitelist(allow_guest=True) +@jingrow.whitelist(allow_guest=True) def voice(**kwargs): """This is a webhook called by twilio to get instructions when the voice call request comes to twilio server.""" def _get_caller_number(caller): identity = caller.replace("client:", "").strip() user = Twilio.emailid_from_identity(identity) - return frappe.db.get_value("CRM Telephony Agent", user, "twilio_number") + return jingrow.db.get_value("CRM Telephony Agent", user, "twilio_number") - args = frappe._dict(kwargs) + args = jingrow._dict(kwargs) twilio = Twilio.connect() if not twilio: return @@ -59,9 +59,9 @@ def voice(**kwargs): return Response(resp.to_xml(), mimetype="text/xml") -@frappe.whitelist(allow_guest=True) +@jingrow.whitelist(allow_guest=True) def twilio_incoming_call_handler(**kwargs): - args = frappe._dict(kwargs) + args = jingrow._dict(kwargs) call_details = TwilioCallDetails(args) create_call_log(call_details) @@ -72,68 +72,68 @@ def twilio_incoming_call_handler(**kwargs): def create_call_log(call_details: TwilioCallDetails): details = call_details.to_dict() - call_log = frappe.get_doc({**details, "doctype": "CRM Call Log", "telephony_medium": "Twilio"}) + call_log = jingrow.get_pg({**details, "pagetype": "CRM Call Log", "telephony_medium": "Twilio"}) # link call log with lead/deal contact_number = details.get("from") if details.get("type") == "Incoming" else details.get("to") link(contact_number, call_log) call_log.save(ignore_permissions=True) - frappe.db.commit() + jingrow.db.commit() return call_log def link(contact_number, call_log): contact = get_contact_by_phone_number(contact_number) if contact.get("name"): - doctype = "Contact" + pagetype = "Contact" docname = contact.get("name") if contact.get("lead"): - doctype = "CRM Lead" + pagetype = "CRM Lead" docname = contact.get("lead") elif contact.get("deal"): - doctype = "CRM Deal" + pagetype = "CRM Deal" docname = contact.get("deal") - call_log.link_with_reference_doc(doctype, docname) + call_log.link_with_reference_pg(pagetype, docname) def update_call_log(call_sid, status=None): """Update call log status.""" twilio = Twilio.connect() - if not (twilio and frappe.db.exists("CRM Call Log", call_sid)): + if not (twilio and jingrow.db.exists("CRM Call Log", call_sid)): return try: call_details = twilio.get_call_info(call_sid) - call_log = frappe.get_doc("CRM Call Log", call_sid) + call_log = jingrow.get_pg("CRM Call Log", call_sid) call_log.status = TwilioCallDetails.get_call_status(status or call_details.status) call_log.duration = call_details.duration call_log.start_time = get_datetime_from_timestamp(call_details.start_time) call_log.end_time = get_datetime_from_timestamp(call_details.end_time) call_log.save(ignore_permissions=True) - frappe.db.commit() + jingrow.db.commit() return call_log except Exception: - frappe.log_error(title="Error while updating call record") - frappe.db.commit() + jingrow.log_error(title="Error while updating call record") + jingrow.db.commit() -@frappe.whitelist(allow_guest=True) +@jingrow.whitelist(allow_guest=True) def update_recording_info(**kwargs): try: - args = frappe._dict(kwargs) + args = jingrow._dict(kwargs) recording_url = args.RecordingUrl call_sid = args.CallSid update_call_log(call_sid) - frappe.db.set_value("CRM Call Log", call_sid, "recording_url", recording_url) + jingrow.db.set_value("CRM Call Log", call_sid, "recording_url", recording_url) except Exception: - frappe.log_error(title=_("Failed to capture Twilio recording")) + jingrow.log_error(title=_("Failed to capture Twilio recording")) -@frappe.whitelist(allow_guest=True) +@jingrow.whitelist(allow_guest=True) def update_call_status_info(**kwargs): try: - args = frappe._dict(kwargs) + args = jingrow._dict(kwargs) parent_call_sid = args.ParentCallSid update_call_log(parent_call_sid, status=args.CallStatus) @@ -149,7 +149,7 @@ def update_call_status_info(**kwargs): client = Twilio.get_twilio_client() client.calls(args.ParentCallSid).user_defined_messages.create(content=json.dumps(call_info)) except Exception: - frappe.log_error(title=_("Failed to update Twilio call status")) + jingrow.log_error(title=_("Failed to update Twilio call status")) def get_datetime_from_timestamp(timestamp): @@ -161,6 +161,6 @@ def get_datetime_from_timestamp(timestamp): datetime_utc_tz_str = timestamp.strftime("%Y-%m-%d %H:%M:%S%z") datetime_utc_tz = datetime.strptime(datetime_utc_tz_str, "%Y-%m-%d %H:%M:%S%z") - system_timezone = frappe.utils.get_system_timezone() + system_timezone = jingrow.utils.get_system_timezone() converted_datetime = datetime_utc_tz.astimezone(ZoneInfo(system_timezone)) - return frappe.utils.format_datetime(converted_datetime, "yyyy-MM-dd HH:mm:ss") + return jingrow.utils.format_datetime(converted_datetime, "yyyy-MM-dd HH:mm:ss") diff --git a/crm/integrations/twilio/twilio_handler.py b/crm/integrations/twilio/twilio_handler.py index 35394b0b..23d7e2ef 100644 --- a/crm/integrations/twilio/twilio_handler.py +++ b/crm/integrations/twilio/twilio_handler.py @@ -1,6 +1,6 @@ -import frappe -from frappe import _ -from frappe.utils.password import get_decrypted_password +import jingrow +from jingrow import _ +from jingrow.utils.password import get_decrypted_password from twilio.jwt.access_token import AccessToken from twilio.jwt.access_token.grants import VoiceGrant from twilio.rest import Client as TwilioClient @@ -14,7 +14,7 @@ class Twilio: def __init__(self, settings): """ - :param settings: `CRM Twilio Settings` doctype + :param settings: `CRM Twilio Settings` pagetype """ self.settings = settings self.account_sid = settings.account_sid @@ -26,7 +26,7 @@ class Twilio: @classmethod def connect(self): """Make a twilio connection.""" - settings = frappe.get_doc("CRM Twilio Settings") + settings = jingrow.get_pg("CRM Twilio Settings") if not (settings and settings.enabled): return return Twilio(settings=settings) @@ -114,9 +114,9 @@ class Twilio: @classmethod def get_twilio_client(self): - twilio_settings = frappe.get_doc("CRM Twilio Settings") + twilio_settings = jingrow.get_pg("CRM Twilio Settings") if not twilio_settings.enabled: - frappe.throw(_("Please enable twilio settings before making a call.")) + jingrow.throw(_("Please enable twilio settings before making a call.")) auth_token = get_decrypted_password("CRM Twilio Settings", "CRM Twilio Settings", "auth_token") client = TwilioClient(twilio_settings.account_sid, auth_token) @@ -161,14 +161,14 @@ def get_twilio_number_owners(phone_number): # remove special characters from phone number and get only digits also remove white spaces # keep + sign in the number at start of the number phone_number = "".join([c for c in phone_number if c.isdigit() or c == "+"]) - user_voice_settings = frappe.get_all( + user_voice_settings = jingrow.get_all( "CRM Telephony Agent", filters={"twilio_number": phone_number}, fields=["name", "call_receiving_device"], ) user_wise_voice_settings = {user["name"]: user for user in user_voice_settings} - user_general_settings = frappe.get_all( + user_general_settings = jingrow.get_all( "User", filters=[["name", "IN", user_wise_voice_settings.keys()]], fields=["name", "mobile_no"] ) user_wise_general_settings = {user["name"]: user for user in user_general_settings} @@ -178,7 +178,7 @@ def get_twilio_number_owners(phone_number): def get_active_loggedin_users(users): """Filter the current loggedin users from the given users list""" - rows = frappe.db.sql( + rows = jingrow.db.sql( """ SELECT `user` FROM `tabSessions` @@ -196,9 +196,9 @@ def get_the_call_attender(owners, caller=None): current_loggedin_users = get_active_loggedin_users(list(owners.keys())) if len(current_loggedin_users) > 1 and caller: - deal_owner = frappe.db.get_value("CRM Deal", {"mobile_no": caller}, "deal_owner") + deal_owner = jingrow.db.get_value("CRM Deal", {"mobile_no": caller}, "deal_owner") if not deal_owner: - deal_owner = frappe.db.get_value( + deal_owner = jingrow.db.get_value( "CRM Lead", {"mobile_no": caller, "converted": False}, "lead_owner" ) for user in current_loggedin_users: diff --git a/crm/integrations/twilio/utils.py b/crm/integrations/twilio/utils.py index 0430f311..258b4267 100644 --- a/crm/integrations/twilio/utils.py +++ b/crm/integrations/twilio/utils.py @@ -1,4 +1,4 @@ -from frappe.utils import get_url +from jingrow.utils import get_url def get_public_url(path: str | None = None): diff --git a/crm/locale/ar.po b/crm/locale/ar.po index 38d7990f..e6f9de19 100644 --- a/crm/locale/ar.po +++ b/crm/locale/ar.po @@ -1,6 +1,6 @@ msgid "" msgstr "" -"Project-Id-Version: frappe\n" +"Project-Id-Version: jingrow\n" "Report-Msgid-Bugs-To: shariq@jingrow.com\n" "POT-Creation-Date: 2025-09-21 09:35+0000\n" "PO-Revision-Date: 2025-09-22 20:42\n" @@ -11,10 +11,10 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Generated-By: Babel 2.16.0\n" "Plural-Forms: nplurals=6; plural=(n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 && n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5);\n" -"X-Crowdin-Project: frappe\n" +"X-Crowdin-Project: jingrow\n" "X-Crowdin-Project-ID: 639578\n" "X-Crowdin-Language: ar\n" -"X-Crowdin-File: /[frappe.crm] develop/crm/locale/main.pot\n" +"X-Crowdin-File: /[jingrow.crm] develop/crm/locale/main.pot\n" "X-Crowdin-File-ID: 97\n" "Language: ar_SA\n" @@ -55,73 +55,73 @@ msgstr "1 قبل أسبوع" msgid "1 year ago" msgstr "منذ سنة" -#. Option for the 'No. of Employees' (Select) field in DocType 'CRM Deal' -#. Option for the 'No. of Employees' (Select) field in DocType 'CRM Lead' -#. Option for the 'No. of Employees' (Select) field in DocType 'CRM +#. Option for the 'No. of Employees' (Select) field in PageType 'CRM Deal' +#. Option for the 'No. of Employees' (Select) field in PageType 'CRM Lead' +#. Option for the 'No. of Employees' (Select) field in PageType 'CRM #. Organization' -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_lead/crm_lead.json -#: crm/fcrm/doctype/crm_organization/crm_organization.json +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_lead/crm_lead.json +#: crm/fcrm/pagetype/crm_organization/crm_organization.json msgid "1-10" msgstr "" -#. Option for the 'No. of Employees' (Select) field in DocType 'CRM Deal' -#. Option for the 'No. of Employees' (Select) field in DocType 'CRM Lead' -#. Option for the 'No. of Employees' (Select) field in DocType 'CRM +#. Option for the 'No. of Employees' (Select) field in PageType 'CRM Deal' +#. Option for the 'No. of Employees' (Select) field in PageType 'CRM Lead' +#. Option for the 'No. of Employees' (Select) field in PageType 'CRM #. Organization' -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_lead/crm_lead.json -#: crm/fcrm/doctype/crm_organization/crm_organization.json +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_lead/crm_lead.json +#: crm/fcrm/pagetype/crm_organization/crm_organization.json msgid "1000+" msgstr "" -#. Option for the 'No. of Employees' (Select) field in DocType 'CRM Deal' -#. Option for the 'No. of Employees' (Select) field in DocType 'CRM Lead' -#. Option for the 'No. of Employees' (Select) field in DocType 'CRM +#. Option for the 'No. of Employees' (Select) field in PageType 'CRM Deal' +#. Option for the 'No. of Employees' (Select) field in PageType 'CRM Lead' +#. Option for the 'No. of Employees' (Select) field in PageType 'CRM #. Organization' -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_lead/crm_lead.json -#: crm/fcrm/doctype/crm_organization/crm_organization.json +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_lead/crm_lead.json +#: crm/fcrm/pagetype/crm_organization/crm_organization.json msgid "11-50" msgstr "" -#. Option for the 'No. of Employees' (Select) field in DocType 'CRM Deal' -#. Option for the 'No. of Employees' (Select) field in DocType 'CRM Lead' -#. Option for the 'No. of Employees' (Select) field in DocType 'CRM +#. Option for the 'No. of Employees' (Select) field in PageType 'CRM Deal' +#. Option for the 'No. of Employees' (Select) field in PageType 'CRM Lead' +#. Option for the 'No. of Employees' (Select) field in PageType 'CRM #. Organization' -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_lead/crm_lead.json -#: crm/fcrm/doctype/crm_organization/crm_organization.json +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_lead/crm_lead.json +#: crm/fcrm/pagetype/crm_organization/crm_organization.json msgid "201-500" msgstr "" -#. Option for the 'No. of Employees' (Select) field in DocType 'CRM Deal' -#. Option for the 'No. of Employees' (Select) field in DocType 'CRM Lead' -#. Option for the 'No. of Employees' (Select) field in DocType 'CRM +#. Option for the 'No. of Employees' (Select) field in PageType 'CRM Deal' +#. Option for the 'No. of Employees' (Select) field in PageType 'CRM Lead' +#. Option for the 'No. of Employees' (Select) field in PageType 'CRM #. Organization' -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_lead/crm_lead.json -#: crm/fcrm/doctype/crm_organization/crm_organization.json +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_lead/crm_lead.json +#: crm/fcrm/pagetype/crm_organization/crm_organization.json msgid "501-1000" msgstr "" -#. Option for the 'No. of Employees' (Select) field in DocType 'CRM Deal' -#. Option for the 'No. of Employees' (Select) field in DocType 'CRM Lead' -#. Option for the 'No. of Employees' (Select) field in DocType 'CRM +#. Option for the 'No. of Employees' (Select) field in PageType 'CRM Deal' +#. Option for the 'No. of Employees' (Select) field in PageType 'CRM Lead' +#. Option for the 'No. of Employees' (Select) field in PageType 'CRM #. Organization' -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_lead/crm_lead.json -#: crm/fcrm/doctype/crm_organization/crm_organization.json +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_lead/crm_lead.json +#: crm/fcrm/pagetype/crm_organization/crm_organization.json msgid "51-200" msgstr "" -#. Paragraph text in the Frappe CRM Workspace -#: crm/fcrm/workspace/frappe_crm/frappe_crm.json +#. Paragraph text in the Jingrow CRM Workspace +#: crm/fcrm/workspace/jingrow_crm/jingrow_crm.json msgid "META" msgstr "" -#. Paragraph text in the Frappe CRM Workspace -#: crm/fcrm/workspace/frappe_crm/frappe_crm.json +#. Paragraph text in the Jingrow CRM Workspace +#: crm/fcrm/workspace/jingrow_crm/jingrow_crm.json msgid "SHORTCUTS" msgstr "" @@ -130,8 +130,8 @@ msgstr "" msgid "

Dear {{ lead_name }},

\\n\\n

This is a reminder for the payment of {{ grand_total }}.

\\n\\n

Thanks,

\\n

Frappé

" msgstr "" -#. Header text in the Frappe CRM Workspace -#: crm/fcrm/workspace/frappe_crm/frappe_crm.json +#. Header text in the Jingrow CRM Workspace +#: crm/fcrm/workspace/jingrow_crm/jingrow_crm.json msgid "PORTAL" msgstr "" @@ -139,7 +139,7 @@ msgstr "" msgid "@John, can you please check this?" msgstr "" -#: crm/fcrm/doctype/crm_lead/crm_lead.py:56 +#: crm/fcrm/pagetype/crm_lead/crm_lead.py:56 msgid "A Lead requires either a person's name or an organization's name" msgstr "يتطلب العميل المتوقع اسم شخص أو اسم مؤسسة" @@ -147,14 +147,14 @@ msgstr "يتطلب العميل المتوقع اسم شخص أو اسم مؤس msgid "A new account has been created for you at {0}" msgstr "تم إنشاء حساب جديد لك في {0}" -#. Label of the api_key (Data) field in DocType 'CRM Exotel Settings' -#. Label of the api_key (Data) field in DocType 'CRM Twilio Settings' -#. Label of the api_key (Data) field in DocType 'ERPNext CRM Settings' -#. Label of the api_key (Data) field in DocType 'Helpdesk CRM Settings' -#: crm/fcrm/doctype/crm_exotel_settings/crm_exotel_settings.json -#: crm/fcrm/doctype/crm_twilio_settings/crm_twilio_settings.json -#: crm/fcrm/doctype/erpnext_crm_settings/erpnext_crm_settings.json -#: crm/fcrm/doctype/helpdesk_crm_settings/helpdesk_crm_settings.json +#. Label of the api_key (Data) field in PageType 'CRM Exotel Settings' +#. Label of the api_key (Data) field in PageType 'CRM Twilio Settings' +#. Label of the api_key (Data) field in PageType 'ERPNext CRM Settings' +#. Label of the api_key (Data) field in PageType 'Helpdesk CRM Settings' +#: crm/fcrm/pagetype/crm_exotel_settings/crm_exotel_settings.json +#: crm/fcrm/pagetype/crm_twilio_settings/crm_twilio_settings.json +#: crm/fcrm/pagetype/erpnext_crm_settings/erpnext_crm_settings.json +#: crm/fcrm/pagetype/helpdesk_crm_settings/helpdesk_crm_settings.json msgid "API Key" msgstr "مفتاح API" @@ -162,17 +162,17 @@ msgstr "مفتاح API" msgid "API Key is required" msgstr "" -#. Label of the api_secret (Password) field in DocType 'CRM Twilio Settings' -#. Label of the api_secret (Password) field in DocType 'ERPNext CRM Settings' -#. Label of the api_secret (Password) field in DocType 'Helpdesk CRM Settings' -#: crm/fcrm/doctype/crm_twilio_settings/crm_twilio_settings.json -#: crm/fcrm/doctype/erpnext_crm_settings/erpnext_crm_settings.json -#: crm/fcrm/doctype/helpdesk_crm_settings/helpdesk_crm_settings.json +#. Label of the api_secret (Password) field in PageType 'CRM Twilio Settings' +#. Label of the api_secret (Password) field in PageType 'ERPNext CRM Settings' +#. Label of the api_secret (Password) field in PageType 'Helpdesk CRM Settings' +#: crm/fcrm/pagetype/crm_twilio_settings/crm_twilio_settings.json +#: crm/fcrm/pagetype/erpnext_crm_settings/erpnext_crm_settings.json +#: crm/fcrm/pagetype/helpdesk_crm_settings/helpdesk_crm_settings.json msgid "API Secret" msgstr "كلمة مرور API" -#. Label of the api_token (Password) field in DocType 'CRM Exotel Settings' -#: crm/fcrm/doctype/crm_exotel_settings/crm_exotel_settings.json +#. Label of the api_token (Password) field in PageType 'CRM Exotel Settings' +#: crm/fcrm/pagetype/crm_exotel_settings/crm_exotel_settings.json msgid "API Token" msgstr "" @@ -180,7 +180,7 @@ msgstr "" msgid "Accept" msgstr "" -#: crm/fcrm/doctype/crm_invitation/crm_invitation.js:7 +#: crm/fcrm/pagetype/crm_invitation/crm_invitation.js:7 msgid "Accept Invitation" msgstr "" @@ -188,22 +188,22 @@ msgstr "" msgid "Accept call" msgstr "" -#. Option for the 'Status' (Select) field in DocType 'CRM Invitation' -#: crm/fcrm/doctype/crm_invitation/crm_invitation.json +#. Option for the 'Status' (Select) field in PageType 'CRM Invitation' +#: crm/fcrm/pagetype/crm_invitation/crm_invitation.json msgid "Accepted" msgstr "مقبول" -#. Label of the accepted_at (Datetime) field in DocType 'CRM Invitation' -#: crm/fcrm/doctype/crm_invitation/crm_invitation.json +#. Label of the accepted_at (Datetime) field in PageType 'CRM Invitation' +#: crm/fcrm/pagetype/crm_invitation/crm_invitation.json msgid "Accepted At" msgstr "" -#. Label of the access_key (Data) field in DocType 'FCRM Settings' -#: crm/fcrm/doctype/fcrm_settings/fcrm_settings.json +#. Label of the access_key (Data) field in PageType 'FCRM Settings' +#: crm/fcrm/pagetype/fcrm_settings/fcrm_settings.json msgid "Access Key" msgstr "" -#: crm/fcrm/doctype/fcrm_settings/fcrm_settings.py:156 +#: crm/fcrm/pagetype/fcrm_settings/fcrm_settings.py:156 msgid "Access Key is required for Service Provider: {0}" msgstr "" @@ -219,10 +219,10 @@ msgstr "" msgid "Account Name" msgstr "اسم الحساب" -#. Label of the account_sid (Data) field in DocType 'CRM Exotel Settings' -#. Label of the account_sid (Data) field in DocType 'CRM Twilio Settings' -#: crm/fcrm/doctype/crm_exotel_settings/crm_exotel_settings.json -#: crm/fcrm/doctype/crm_twilio_settings/crm_twilio_settings.json +#. Label of the account_sid (Data) field in PageType 'CRM Exotel Settings' +#. Label of the account_sid (Data) field in PageType 'CRM Twilio Settings' +#: crm/fcrm/pagetype/crm_exotel_settings/crm_exotel_settings.json +#: crm/fcrm/pagetype/crm_twilio_settings/crm_twilio_settings.json msgid "Account SID" msgstr "" @@ -296,9 +296,9 @@ msgstr "" msgid "Add Tab" msgstr "" -#. Label of the add_weekly_holidays_section (Section Break) field in DocType +#. Label of the add_weekly_holidays_section (Section Break) field in PageType #. 'CRM Holiday List' -#: crm/fcrm/doctype/crm_holiday_list/crm_holiday_list.json +#: crm/fcrm/pagetype/crm_holiday_list/crm_holiday_list.json msgid "Add Weekly Holidays" msgstr "أضف عطلات أسبوعية" @@ -363,8 +363,8 @@ msgstr "" msgid "Add sample data" msgstr "" -#. Description of the 'Icon' (Code) field in DocType 'CRM Dropdown Item' -#: crm/fcrm/doctype/crm_dropdown_item/crm_dropdown_item.json +#. Description of the 'Icon' (Code) field in PageType 'CRM Dropdown Item' +#: crm/fcrm/pagetype/crm_dropdown_item/crm_dropdown_item.json msgid "Add svg code or use feather icons e.g 'settings'" msgstr "" @@ -372,8 +372,8 @@ msgstr "" msgid "Add task" msgstr "" -#. Label of the add_to_holidays (Button) field in DocType 'CRM Holiday List' -#: crm/fcrm/doctype/crm_holiday_list/crm_holiday_list.json +#. Label of the add_to_holidays (Button) field in PageType 'CRM Holiday List' +#: crm/fcrm/pagetype/crm_holiday_list/crm_holiday_list.json msgid "Add to Holidays" msgstr "أضف إلى الإجازات" @@ -385,8 +385,8 @@ msgstr "" msgid "Add, edit, and manage email templates for various CRM communications" msgstr "" -#. Label of the address (Link) field in DocType 'CRM Organization' -#: crm/fcrm/doctype/crm_organization/crm_organization.json +#. Label of the address (Link) field in PageType 'CRM Organization' +#: crm/fcrm/pagetype/crm_organization/crm_organization.json msgid "Address" msgstr "عنوان" @@ -406,14 +406,14 @@ msgid "Agent is unavailable to take the call, please call after some time." msgstr "" #. Name of a role -#: crm/fcrm/doctype/crm_exotel_settings/crm_exotel_settings.json -#: crm/fcrm/doctype/crm_fields_layout/crm_fields_layout.json -#: crm/fcrm/doctype/crm_form_script/crm_form_script.json -#: crm/fcrm/doctype/crm_industry/crm_industry.json -#: crm/fcrm/doctype/crm_lead/crm_lead.json -#: crm/fcrm/doctype/crm_lead_source/crm_lead_source.json -#: crm/fcrm/doctype/crm_lead_status/crm_lead_status.json -#: crm/fcrm/doctype/fcrm_settings/fcrm_settings.json +#: crm/fcrm/pagetype/crm_exotel_settings/crm_exotel_settings.json +#: crm/fcrm/pagetype/crm_fields_layout/crm_fields_layout.json +#: crm/fcrm/pagetype/crm_form_script/crm_form_script.json +#: crm/fcrm/pagetype/crm_industry/crm_industry.json +#: crm/fcrm/pagetype/crm_lead/crm_lead.json +#: crm/fcrm/pagetype/crm_lead_source/crm_lead_source.json +#: crm/fcrm/pagetype/crm_lead_status/crm_lead_status.json +#: crm/fcrm/pagetype/fcrm_settings/fcrm_settings.json #: frontend/src/components/Settings/EmailTemplate/EmailTemplates.vue:76 #: frontend/src/components/Settings/Users.vue:85 msgid "All" @@ -426,16 +426,16 @@ msgstr "الكل" msgid "All day" msgstr "" -#. Label of the amount (Currency) field in DocType 'CRM Products' -#: crm/fcrm/doctype/crm_products/crm_products.json +#. Label of the amount (Currency) field in PageType 'CRM Products' +#: crm/fcrm/pagetype/crm_products/crm_products.json #: frontend/src/pages/Contact.vue:499 frontend/src/pages/MobileContact.vue:507 #: frontend/src/pages/MobileOrganization.vue:451 #: frontend/src/pages/Organization.vue:472 msgid "Amount" msgstr "كمية" -#. Description of the 'Net Amount' (Currency) field in DocType 'CRM Products' -#: crm/fcrm/doctype/crm_products/crm_products.json +#. Description of the 'Net Amount' (Currency) field in PageType 'CRM Products' +#: crm/fcrm/pagetype/crm_products/crm_products.json msgid "Amount after discount" msgstr "" @@ -447,13 +447,13 @@ msgstr "" msgid "An error occurred while updating the document" msgstr "" -#. Description of the 'Favicon' (Attach) field in DocType 'FCRM Settings' -#: crm/fcrm/doctype/fcrm_settings/fcrm_settings.json +#. Description of the 'Favicon' (Attach) field in PageType 'FCRM Settings' +#: crm/fcrm/pagetype/fcrm_settings/fcrm_settings.json msgid "An icon file with .ico extension. Should be 16 x 16 px. Generated using a favicon generator. [favicon-generator.org]" msgstr "ملف أيقونة بصيغة ico. يجب أن تكون 16 × 16 بكسل. تم إنشاؤها باستخدام مولد أيقونات. [favicon-generator.org]" -#. Description of the 'Logo' (Attach) field in DocType 'FCRM Settings' -#: crm/fcrm/doctype/fcrm_settings/fcrm_settings.json +#. Description of the 'Logo' (Attach) field in PageType 'FCRM Settings' +#: crm/fcrm/pagetype/fcrm_settings/fcrm_settings.json msgid "An image with 1:1 & 2:1 ratio is preferred" msgstr "" @@ -461,12 +461,12 @@ msgstr "" msgid "And" msgstr "" -#. Label of the annual_revenue (Currency) field in DocType 'CRM Deal' -#. Label of the annual_revenue (Currency) field in DocType 'CRM Lead' -#. Label of the annual_revenue (Currency) field in DocType 'CRM Organization' -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_lead/crm_lead.json -#: crm/fcrm/doctype/crm_organization/crm_organization.json +#. Label of the annual_revenue (Currency) field in PageType 'CRM Deal' +#. Label of the annual_revenue (Currency) field in PageType 'CRM Lead' +#. Label of the annual_revenue (Currency) field in PageType 'CRM Organization' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_lead/crm_lead.json +#: crm/fcrm/pagetype/crm_organization/crm_organization.json msgid "Annual Revenue" msgstr "" @@ -488,13 +488,13 @@ msgstr "" msgid "Apply" msgstr "" -#. Label of the apply_on (Link) field in DocType 'CRM Service Level Agreement' -#: crm/fcrm/doctype/crm_service_level_agreement/crm_service_level_agreement.json +#. Label of the apply_on (Link) field in PageType 'CRM Service Level Agreement' +#: crm/fcrm/pagetype/crm_service_level_agreement/crm_service_level_agreement.json msgid "Apply On" msgstr "تنطبق على" -#. Label of the view (Select) field in DocType 'CRM Form Script' -#: crm/fcrm/doctype/crm_form_script/crm_form_script.json +#. Label of the view (Select) field in PageType 'CRM Form Script' +#: crm/fcrm/pagetype/crm_form_script/crm_form_script.json msgid "Apply To" msgstr "" @@ -540,10 +540,10 @@ msgid "Are you sure you want to go back? Unsaved changes will be lost." msgstr "" #: frontend/src/composables/frappecloud.js:24 -msgid "Are you sure you want to login to your Frappe Cloud dashboard?" -msgstr "هل أنت متأكد أنك تريد تسجيل الدخول إلى لوحة معلومات Frappe Cloud الخاصة بك؟" +msgid "Are you sure you want to login to your Jingrow Cloud dashboard?" +msgstr "هل أنت متأكد أنك تريد تسجيل الدخول إلى لوحة معلومات Jingrow Cloud الخاصة بك؟" -#: crm/fcrm/doctype/erpnext_crm_settings/erpnext_crm_settings.js:9 +#: crm/fcrm/pagetype/erpnext_crm_settings/erpnext_crm_settings.js:9 msgid "Are you sure you want to reset 'Create Quotation from CRM Deal' Form Script?" msgstr "" @@ -555,7 +555,7 @@ msgstr "" msgid "Are you sure you want to unlink {0} linked item(s)?" msgstr "" -#: crm/fcrm/doctype/fcrm_settings/fcrm_settings.py:193 +#: crm/fcrm/pagetype/fcrm_settings/fcrm_settings.py:193 msgid "Ask your manager to set up the Exchange Rate Provider, as default provider does not support currency conversion for {0} to {1}." msgstr "" @@ -581,8 +581,8 @@ msgstr "" msgid "Assign to me" msgstr "تعيين لي" -#. Label of the assigned_to (Link) field in DocType 'CRM Task' -#: crm/fcrm/doctype/crm_task/crm_task.json +#. Label of the assigned_to (Link) field in PageType 'CRM Task' +#: crm/fcrm/pagetype/crm_task/crm_task.json msgid "Assigned To" msgstr "كلف إلى" @@ -594,13 +594,13 @@ msgstr "" msgid "Assignees" msgstr "" -#. Option for the 'Type' (Select) field in DocType 'CRM Notification' -#: crm/fcrm/doctype/crm_notification/crm_notification.json +#. Option for the 'Type' (Select) field in PageType 'CRM Notification' +#: crm/fcrm/pagetype/crm_notification/crm_notification.json msgid "Assignment" msgstr "مهمة" -#. Label of a shortcut in the Frappe CRM Workspace -#: crm/fcrm/workspace/frappe_crm/frappe_crm.json +#. Label of a shortcut in the Jingrow CRM Workspace +#: crm/fcrm/workspace/jingrow_crm/jingrow_crm.json msgid "Assignment Rule" msgstr "قاعدة الاحالة" @@ -678,14 +678,14 @@ msgstr "المرفقات" msgid "Attendees" msgstr "الحضور" -#. Label of the auth_token (Password) field in DocType 'CRM Twilio Settings' -#: crm/fcrm/doctype/crm_twilio_settings/crm_twilio_settings.json +#. Label of the auth_token (Password) field in PageType 'CRM Twilio Settings' +#: crm/fcrm/pagetype/crm_twilio_settings/crm_twilio_settings.json msgid "Auth Token" msgstr "" -#. Label of the auto_update_expected_deal_value (Check) field in DocType 'FCRM +#. Label of the auto_update_expected_deal_value (Check) field in PageType 'FCRM #. Settings' -#: crm/fcrm/doctype/fcrm_settings/fcrm_settings.json +#: crm/fcrm/pagetype/fcrm_settings/fcrm_settings.json msgid "Auto Update Expected Deal Value" msgstr "" @@ -702,8 +702,8 @@ msgid "Auto update of expected deal value enabled" msgstr "" #. Description of the 'Auto Update Expected Deal Value' (Check) field in -#. DocType 'FCRM Settings' -#: crm/fcrm/doctype/fcrm_settings/fcrm_settings.json +#. PageType 'FCRM Settings' +#: crm/fcrm/pagetype/fcrm_settings/fcrm_settings.json #: frontend/src/components/Settings/ForecastingSettings.vue:46 msgid "Automatically update \"Expected Deal Value\" based on the total value of associated products in a deal" msgstr "" @@ -793,8 +793,8 @@ msgstr "خلف" msgid "Back to file upload" msgstr "" -#. Option for the 'Status' (Select) field in DocType 'CRM Task' -#: crm/fcrm/doctype/crm_task/crm_task.json +#. Option for the 'Status' (Select) field in PageType 'CRM Task' +#: crm/fcrm/pagetype/crm_task/crm_task.json msgid "Backlog" msgstr "" @@ -818,8 +818,8 @@ msgstr "" msgid "Brand settings" msgstr "" -#. Label of the branding_tab (Tab Break) field in DocType 'FCRM Settings' -#: crm/fcrm/doctype/fcrm_settings/fcrm_settings.json +#. Label of the branding_tab (Tab Break) field in PageType 'FCRM Settings' +#: crm/fcrm/pagetype/fcrm_settings/fcrm_settings.json msgid "Branding" msgstr "" @@ -827,8 +827,8 @@ msgstr "" msgid "Bulk Edit" msgstr "" -#. Option for the 'Status' (Select) field in DocType 'CRM Call Log' -#: crm/fcrm/doctype/crm_call_log/crm_call_log.json +#. Option for the 'Status' (Select) field in PageType 'CRM Call Log' +#: crm/fcrm/pagetype/crm_call_log/crm_call_log.json msgid "Busy" msgstr "مشغول" @@ -838,174 +838,174 @@ msgstr "مشغول" msgid "CC" msgstr "نسخة" -#. Name of a DocType -#: crm/fcrm/doctype/crm_call_log/crm_call_log.json +#. Name of a PageType +#: crm/fcrm/pagetype/crm_call_log/crm_call_log.json msgid "CRM Call Log" msgstr "" -#. Name of a DocType -#: crm/fcrm/doctype/crm_communication_status/crm_communication_status.json +#. Name of a PageType +#: crm/fcrm/pagetype/crm_communication_status/crm_communication_status.json msgid "CRM Communication Status" msgstr "" -#. Name of a DocType -#: crm/fcrm/doctype/crm_contacts/crm_contacts.json +#. Name of a PageType +#: crm/fcrm/pagetype/crm_contacts/crm_contacts.json msgid "CRM Contacts" msgstr "" -#. Name of a DocType -#: crm/fcrm/doctype/crm_dashboard/crm_dashboard.json +#. Name of a PageType +#: crm/fcrm/pagetype/crm_dashboard/crm_dashboard.json #: frontend/src/pages/Dashboard.vue:304 msgid "CRM Dashboard" msgstr "" -#. Name of a DocType -#: crm/fcrm/doctype/crm_deal/crm_deal.json +#. Name of a PageType +#: crm/fcrm/pagetype/crm_deal/crm_deal.json msgid "CRM Deal" msgstr "" -#. Name of a DocType -#: crm/fcrm/doctype/crm_deal_status/crm_deal_status.json +#. Name of a PageType +#: crm/fcrm/pagetype/crm_deal_status/crm_deal_status.json msgid "CRM Deal Status" msgstr "" -#. Name of a DocType -#: crm/fcrm/doctype/crm_dropdown_item/crm_dropdown_item.json +#. Name of a PageType +#: crm/fcrm/pagetype/crm_dropdown_item/crm_dropdown_item.json msgid "CRM Dropdown Item" msgstr "" -#. Name of a DocType -#: crm/fcrm/doctype/crm_exotel_settings/crm_exotel_settings.json +#. Name of a PageType +#: crm/fcrm/pagetype/crm_exotel_settings/crm_exotel_settings.json msgid "CRM Exotel Settings" msgstr "" -#. Name of a DocType -#: crm/fcrm/doctype/crm_fields_layout/crm_fields_layout.json +#. Name of a PageType +#: crm/fcrm/pagetype/crm_fields_layout/crm_fields_layout.json msgid "CRM Fields Layout" msgstr "" -#. Name of a DocType -#: crm/fcrm/doctype/crm_form_script/crm_form_script.json +#. Name of a PageType +#: crm/fcrm/pagetype/crm_form_script/crm_form_script.json msgid "CRM Form Script" msgstr "" -#. Name of a DocType -#: crm/fcrm/doctype/crm_global_settings/crm_global_settings.json +#. Name of a PageType +#: crm/fcrm/pagetype/crm_global_settings/crm_global_settings.json msgid "CRM Global Settings" msgstr "" -#. Name of a DocType -#: crm/fcrm/doctype/crm_holiday/crm_holiday.json +#. Name of a PageType +#: crm/fcrm/pagetype/crm_holiday/crm_holiday.json msgid "CRM Holiday" msgstr "" -#. Name of a DocType -#: crm/fcrm/doctype/crm_holiday_list/crm_holiday_list.json +#. Name of a PageType +#: crm/fcrm/pagetype/crm_holiday_list/crm_holiday_list.json msgid "CRM Holiday List" msgstr "" -#. Name of a DocType -#: crm/fcrm/doctype/crm_industry/crm_industry.json +#. Name of a PageType +#: crm/fcrm/pagetype/crm_industry/crm_industry.json msgid "CRM Industry" msgstr "" -#. Name of a DocType -#: crm/fcrm/doctype/crm_invitation/crm_invitation.json +#. Name of a PageType +#: crm/fcrm/pagetype/crm_invitation/crm_invitation.json msgid "CRM Invitation" msgstr "" -#. Name of a DocType -#: crm/fcrm/doctype/crm_lead/crm_lead.json +#. Name of a PageType +#: crm/fcrm/pagetype/crm_lead/crm_lead.json msgid "CRM Lead" msgstr "" -#. Name of a DocType -#: crm/fcrm/doctype/crm_lead_source/crm_lead_source.json +#. Name of a PageType +#: crm/fcrm/pagetype/crm_lead_source/crm_lead_source.json msgid "CRM Lead Source" msgstr "" -#. Name of a DocType -#: crm/fcrm/doctype/crm_lead_status/crm_lead_status.json +#. Name of a PageType +#: crm/fcrm/pagetype/crm_lead_status/crm_lead_status.json msgid "CRM Lead Status" msgstr "" -#. Name of a DocType -#: crm/fcrm/doctype/crm_lost_reason/crm_lost_reason.json +#. Name of a PageType +#: crm/fcrm/pagetype/crm_lost_reason/crm_lost_reason.json msgid "CRM Lost Reason" msgstr "" -#. Name of a DocType -#: crm/fcrm/doctype/crm_notification/crm_notification.json +#. Name of a PageType +#: crm/fcrm/pagetype/crm_notification/crm_notification.json msgid "CRM Notification" msgstr "" -#. Name of a DocType -#: crm/fcrm/doctype/crm_organization/crm_organization.json +#. Name of a PageType +#: crm/fcrm/pagetype/crm_organization/crm_organization.json msgid "CRM Organization" msgstr "" -#. Label of a shortcut in the Frappe CRM Workspace -#: crm/fcrm/workspace/frappe_crm/frappe_crm.json +#. Label of a shortcut in the Jingrow CRM Workspace +#: crm/fcrm/workspace/jingrow_crm/jingrow_crm.json msgid "CRM Portal Page" msgstr "" -#. Name of a DocType -#: crm/fcrm/doctype/crm_product/crm_product.json +#. Name of a PageType +#: crm/fcrm/pagetype/crm_product/crm_product.json msgid "CRM Product" msgstr "" -#. Name of a DocType -#: crm/fcrm/doctype/crm_products/crm_products.json +#. Name of a PageType +#: crm/fcrm/pagetype/crm_products/crm_products.json msgid "CRM Products" msgstr "" -#. Name of a DocType -#: crm/fcrm/doctype/crm_service_day/crm_service_day.json +#. Name of a PageType +#: crm/fcrm/pagetype/crm_service_day/crm_service_day.json msgid "CRM Service Day" msgstr "" -#. Name of a DocType -#: crm/fcrm/doctype/crm_service_level_agreement/crm_service_level_agreement.json +#. Name of a PageType +#: crm/fcrm/pagetype/crm_service_level_agreement/crm_service_level_agreement.json msgid "CRM Service Level Agreement" msgstr "" -#. Name of a DocType -#: crm/fcrm/doctype/crm_service_level_priority/crm_service_level_priority.json +#. Name of a PageType +#: crm/fcrm/pagetype/crm_service_level_priority/crm_service_level_priority.json msgid "CRM Service Level Priority" msgstr "" -#. Name of a DocType -#: crm/fcrm/doctype/crm_status_change_log/crm_status_change_log.json +#. Name of a PageType +#: crm/fcrm/pagetype/crm_status_change_log/crm_status_change_log.json msgid "CRM Status Change Log" msgstr "" -#. Name of a DocType -#: crm/fcrm/doctype/crm_task/crm_task.json +#. Name of a PageType +#: crm/fcrm/pagetype/crm_task/crm_task.json msgid "CRM Task" msgstr "" -#. Name of a DocType -#: crm/fcrm/doctype/crm_telephony_agent/crm_telephony_agent.json +#. Name of a PageType +#: crm/fcrm/pagetype/crm_telephony_agent/crm_telephony_agent.json msgid "CRM Telephony Agent" msgstr "" -#. Name of a DocType -#: crm/fcrm/doctype/crm_telephony_phone/crm_telephony_phone.json +#. Name of a PageType +#: crm/fcrm/pagetype/crm_telephony_phone/crm_telephony_phone.json msgid "CRM Telephony Phone" msgstr "" -#. Name of a DocType -#: crm/fcrm/doctype/crm_territory/crm_territory.json +#. Name of a PageType +#: crm/fcrm/pagetype/crm_territory/crm_territory.json msgid "CRM Territory" msgstr "" -#. Name of a DocType -#: crm/fcrm/doctype/crm_twilio_settings/crm_twilio_settings.json +#. Name of a PageType +#: crm/fcrm/pagetype/crm_twilio_settings/crm_twilio_settings.json msgid "CRM Twilio Settings" msgstr "" -#. Name of a DocType -#: crm/fcrm/doctype/crm_view_settings/crm_view_settings.json +#. Name of a PageType +#: crm/fcrm/pagetype/crm_view_settings/crm_view_settings.json msgid "CRM View Settings" msgstr "" @@ -1021,13 +1021,13 @@ msgstr "" msgid "Call Details" msgstr "تفاصيل المكالمة" -#. Label of the receiver (Link) field in DocType 'CRM Call Log' -#: crm/fcrm/doctype/crm_call_log/crm_call_log.json +#. Label of the receiver (Link) field in PageType 'CRM Call Log' +#: crm/fcrm/pagetype/crm_call_log/crm_call_log.json msgid "Call Received By" msgstr "" -#. Description of the 'Duration' (Duration) field in DocType 'CRM Call Log' -#: crm/fcrm/doctype/crm_call_log/crm_call_log.json +#. Description of the 'Duration' (Duration) field in PageType 'CRM Call Log' +#: crm/fcrm/pagetype/crm_call_log/crm_call_log.json msgid "Call duration in seconds" msgstr "" @@ -1045,8 +1045,8 @@ msgstr "" msgid "Call with John Doe" msgstr "" -#. Label of the caller (Link) field in DocType 'CRM Call Log' -#: crm/fcrm/doctype/crm_call_log/crm_call_log.json +#. Label of the caller (Link) field in PageType 'CRM Call Log' +#: crm/fcrm/pagetype/crm_call_log/crm_call_log.json msgid "Caller" msgstr "" @@ -1083,10 +1083,10 @@ msgstr "الة تصوير" msgid "Cancel" msgstr "إلغاء" -#. Option for the 'Status' (Select) field in DocType 'CRM Call Log' -#. Option for the 'Status' (Select) field in DocType 'CRM Task' -#: crm/fcrm/doctype/crm_call_log/crm_call_log.json -#: crm/fcrm/doctype/crm_task/crm_task.json +#. Option for the 'Status' (Select) field in PageType 'CRM Call Log' +#. Option for the 'Status' (Select) field in PageType 'CRM Task' +#: crm/fcrm/pagetype/crm_call_log/crm_call_log.json +#: crm/fcrm/pagetype/crm_task/crm_task.json msgid "Canceled" msgstr "ألغيت" @@ -1094,7 +1094,7 @@ msgstr "ألغيت" msgid "Cannot change role of user with Admin access" msgstr "" -#: crm/fcrm/doctype/fcrm_settings/fcrm_settings.py:34 +#: crm/fcrm/pagetype/fcrm_settings/fcrm_settings.py:34 msgid "Cannot delete standard items {0}" msgstr "" @@ -1189,8 +1189,8 @@ msgstr "" msgid "Clear Sort" msgstr "" -#. Label of the clear_table (Button) field in DocType 'CRM Holiday List' -#: crm/fcrm/doctype/crm_holiday_list/crm_holiday_list.json +#. Label of the clear_table (Button) field in PageType 'CRM Holiday List' +#: crm/fcrm/pagetype/crm_holiday_list/crm_holiday_list.json msgid "Clear Table" msgstr "مسح الجدول" @@ -1211,8 +1211,8 @@ msgstr "أغلق" msgid "Close panel" msgstr "" -#. Label of the closed_date (Date) field in DocType 'CRM Deal' -#: crm/fcrm/doctype/crm_deal/crm_deal.json +#. Label of the closed_date (Date) field in PageType 'CRM Deal' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json msgid "Closed Date" msgstr "" @@ -1224,10 +1224,10 @@ msgstr "انهيار" msgid "Collapsible" msgstr "للطي" -#. Label of the color (Select) field in DocType 'CRM Deal Status' -#. Label of the color (Select) field in DocType 'CRM Lead Status' -#: crm/fcrm/doctype/crm_deal_status/crm_deal_status.json -#: crm/fcrm/doctype/crm_lead_status/crm_lead_status.json +#. Label of the color (Select) field in PageType 'CRM Deal Status' +#. Label of the color (Select) field in PageType 'CRM Lead Status' +#: crm/fcrm/pagetype/crm_deal_status/crm_deal_status.json +#: crm/fcrm/pagetype/crm_lead_status/crm_lead_status.json msgid "Color" msgstr "اللون" @@ -1235,20 +1235,20 @@ msgstr "اللون" msgid "Column" msgstr "عمود" -#. Label of the column_field (Data) field in DocType 'CRM View Settings' -#: crm/fcrm/doctype/crm_view_settings/crm_view_settings.json +#. Label of the column_field (Data) field in PageType 'CRM View Settings' +#: crm/fcrm/pagetype/crm_view_settings/crm_view_settings.json #: frontend/src/components/Kanban/KanbanSettings.vue:12 msgid "Column Field" msgstr "" -#. Label of the columns (Code) field in DocType 'CRM View Settings' -#: crm/fcrm/doctype/crm_view_settings/crm_view_settings.json +#. Label of the columns (Code) field in PageType 'CRM View Settings' +#: crm/fcrm/pagetype/crm_view_settings/crm_view_settings.json #: frontend/src/components/ColumnSettings.vue:4 msgid "Columns" msgstr "الأعمدة" -#. Label of the comment (Link) field in DocType 'CRM Notification' -#: crm/fcrm/doctype/crm_notification/crm_notification.json +#. Label of the comment (Link) field in PageType 'CRM Notification' +#: crm/fcrm/pagetype/crm_notification/crm_notification.json #: frontend/src/components/CommentBox.vue:78 #: frontend/src/components/CommunicationArea.vue:16 #: frontend/src/components/Layouts/AppSidebar.vue:579 @@ -1264,20 +1264,20 @@ msgstr "تعليقات" msgid "Common reasons for losing deals" msgstr "" -#. Label of the communication_status (Link) field in DocType 'CRM Deal' -#. Label of the communication_status (Link) field in DocType 'CRM Lead' -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_lead/crm_lead.json +#. Label of the communication_status (Link) field in PageType 'CRM Deal' +#. Label of the communication_status (Link) field in PageType 'CRM Lead' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_lead/crm_lead.json msgid "Communication Status" msgstr "" -#. Label of a shortcut in the Frappe CRM Workspace -#: crm/fcrm/workspace/frappe_crm/frappe_crm.json +#. Label of a shortcut in the Jingrow CRM Workspace +#: crm/fcrm/workspace/jingrow_crm/jingrow_crm.json msgid "Communication Statuses" msgstr "" -#. Label of the erpnext_company (Data) field in DocType 'ERPNext CRM Settings' -#: crm/fcrm/doctype/erpnext_crm_settings/erpnext_crm_settings.json +#. Label of the erpnext_company (Data) field in PageType 'ERPNext CRM Settings' +#: crm/fcrm/pagetype/erpnext_crm_settings/erpnext_crm_settings.json msgid "Company in ERPNext Site" msgstr "" @@ -1285,18 +1285,18 @@ msgstr "" msgid "Complete Registration" msgstr "أكمال التسجيل" -#. Option for the 'Status' (Select) field in DocType 'CRM Call Log' -#: crm/fcrm/doctype/crm_call_log/crm_call_log.json +#. Option for the 'Status' (Select) field in PageType 'CRM Call Log' +#: crm/fcrm/pagetype/crm_call_log/crm_call_log.json msgid "Completed" msgstr "أكتمل" -#. Option for the 'Device' (Select) field in DocType 'CRM Telephony Agent' -#: crm/fcrm/doctype/crm_telephony_agent/crm_telephony_agent.json +#. Option for the 'Device' (Select) field in PageType 'CRM Telephony Agent' +#: crm/fcrm/pagetype/crm_telephony_agent/crm_telephony_agent.json msgid "Computer" msgstr "الحاسوب" -#. Label of the condition (Code) field in DocType 'CRM Service Level Agreement' -#: crm/fcrm/doctype/crm_service_level_agreement/crm_service_level_agreement.json +#. Label of the condition (Code) field in PageType 'CRM Service Level Agreement' +#: crm/fcrm/pagetype/crm_service_level_agreement/crm_service_level_agreement.json msgid "Condition" msgstr "الحالة" @@ -1354,17 +1354,17 @@ msgstr "" msgid "Connect your email" msgstr "" -#. Label of the contact (Link) field in DocType 'CRM Contacts' -#. Label of the contact (Link) field in DocType 'CRM Deal' -#: crm/fcrm/doctype/crm_contacts/crm_contacts.json -#: crm/fcrm/doctype/crm_deal/crm_deal.json +#. Label of the contact (Link) field in PageType 'CRM Contacts' +#. Label of the contact (Link) field in PageType 'CRM Deal' +#: crm/fcrm/pagetype/crm_contacts/crm_contacts.json +#: crm/fcrm/pagetype/crm_deal/crm_deal.json #: frontend/src/components/Layouts/AppSidebar.vue:552 #: frontend/src/components/Modals/ConvertToDealModal.vue:51 #: frontend/src/pages/MobileLead.vue:145 msgid "Contact" msgstr "اتصال" -#: crm/fcrm/doctype/crm_lead/crm_lead.py:212 +#: crm/fcrm/pagetype/crm_lead/crm_lead.py:212 msgid "Contact Already Exists" msgstr "" @@ -1384,7 +1384,7 @@ msgstr "" msgid "Contact already added" msgstr "" -#: crm/fcrm/doctype/crm_lead/crm_lead.py:211 +#: crm/fcrm/pagetype/crm_lead/crm_lead.py:211 msgid "Contact already exists with {0}" msgstr "" @@ -1405,18 +1405,18 @@ msgstr "" msgid "Contact updated" msgstr "" -#. Label of the contacts_tab (Tab Break) field in DocType 'CRM Deal' -#. Label of the contacts (Table) field in DocType 'CRM Deal' -#. Label of a shortcut in the Frappe CRM Workspace -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/workspace/frappe_crm/frappe_crm.json +#. Label of the contacts_tab (Tab Break) field in PageType 'CRM Deal' +#. Label of the contacts (Table) field in PageType 'CRM Deal' +#. Label of a shortcut in the Jingrow CRM Workspace +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/workspace/jingrow_crm/jingrow_crm.json #: frontend/src/pages/Contact.vue:234 frontend/src/pages/MobileContact.vue:212 #: frontend/src/pages/MobileOrganization.vue:331 msgid "Contacts" msgstr "" -#. Label of the content (Text Editor) field in DocType 'FCRM Note' -#: crm/fcrm/doctype/fcrm_note/fcrm_note.json +#. Label of the content (Text Editor) field in PageType 'FCRM Note' +#: crm/fcrm/pagetype/fcrm_note/fcrm_note.json #: frontend/src/components/Modals/NoteModal.vue:33 #: frontend/src/components/Settings/EmailTemplate/EditEmailTemplate.vue:89 #: frontend/src/components/Settings/EmailTemplate/EditEmailTemplate.vue:102 @@ -1456,8 +1456,8 @@ msgstr "" msgid "Convert to Deal" msgstr "" -#. Label of the converted (Check) field in DocType 'CRM Lead' -#: crm/fcrm/doctype/crm_lead/crm_lead.json +#. Label of the converted (Check) field in PageType 'CRM Lead' +#: crm/fcrm/pagetype/crm_lead/crm_lead.json msgid "Converted" msgstr "تحويل" @@ -1533,9 +1533,9 @@ msgstr "" msgid "Create an event" msgstr "" -#. Label of the create_customer_on_status_change (Check) field in DocType +#. Label of the create_customer_on_status_change (Check) field in PageType #. 'ERPNext CRM Settings' -#: crm/fcrm/doctype/erpnext_crm_settings/erpnext_crm_settings.json +#: crm/fcrm/pagetype/erpnext_crm_settings/erpnext_crm_settings.json msgid "Create customer on status change" msgstr "" @@ -1560,13 +1560,13 @@ msgstr "" msgid "Create your first task" msgstr "" -#. Label of the currency (Link) field in DocType 'CRM Deal' -#. Label of the currency (Link) field in DocType 'CRM Organization' -#. Label of the currency (Link) field in DocType 'FCRM Settings' -#. Label of the currency_tab (Tab Break) field in DocType 'FCRM Settings' -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_organization/crm_organization.json -#: crm/fcrm/doctype/fcrm_settings/fcrm_settings.json +#. Label of the currency (Link) field in PageType 'CRM Deal' +#. Label of the currency (Link) field in PageType 'CRM Organization' +#. Label of the currency (Link) field in PageType 'FCRM Settings' +#. Label of the currency_tab (Tab Break) field in PageType 'FCRM Settings' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_organization/crm_organization.json +#: crm/fcrm/pagetype/fcrm_settings/fcrm_settings.json #: frontend/src/components/Settings/CurrencySettings.vue:31 msgid "Currency" msgstr "العملة" @@ -1631,13 +1631,13 @@ msgstr "" msgid "Data" msgstr "البيانات" -#. Option for the 'Type' (Select) field in DocType 'CRM Fields Layout' -#: crm/fcrm/doctype/crm_fields_layout/crm_fields_layout.json +#. Option for the 'Type' (Select) field in PageType 'CRM Fields Layout' +#: crm/fcrm/pagetype/crm_fields_layout/crm_fields_layout.json msgid "Data Fields" msgstr "" -#. Label of the date (Date) field in DocType 'CRM Holiday' -#: crm/api/dashboard.py:601 crm/fcrm/doctype/crm_holiday/crm_holiday.json +#. Label of the date (Date) field in PageType 'CRM Holiday' +#: crm/api/dashboard.py:601 crm/fcrm/pagetype/crm_holiday/crm_holiday.json #: frontend/src/components/Calendar/CalendarEventPanel.vue:202 msgid "Date" msgstr "تاريخ" @@ -1660,23 +1660,23 @@ msgstr "" msgid "Deal" msgstr "" -#. Label of the deal_owner (Link) field in DocType 'CRM Deal' -#: crm/fcrm/doctype/crm_deal/crm_deal.json +#. Label of the deal_owner (Link) field in PageType 'CRM Deal' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json msgid "Deal Owner" msgstr "" -#. Label of the deal_status (Link) field in DocType 'ERPNext CRM Settings' -#: crm/fcrm/doctype/erpnext_crm_settings/erpnext_crm_settings.json +#. Label of the deal_status (Link) field in PageType 'ERPNext CRM Settings' +#: crm/fcrm/pagetype/erpnext_crm_settings/erpnext_crm_settings.json msgid "Deal Status" msgstr "" -#. Label of a shortcut in the Frappe CRM Workspace -#: crm/fcrm/workspace/frappe_crm/frappe_crm.json +#. Label of a shortcut in the Jingrow CRM Workspace +#: crm/fcrm/workspace/jingrow_crm/jingrow_crm.json msgid "Deal Statuses" msgstr "" -#. Label of the deal_value (Currency) field in DocType 'CRM Deal' -#: crm/fcrm/doctype/crm_deal/crm_deal.json +#. Label of the deal_value (Currency) field in PageType 'CRM Deal' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json msgid "Deal Value" msgstr "" @@ -1694,8 +1694,8 @@ msgstr "" msgid "Deal value" msgstr "" -#. Label of a shortcut in the Frappe CRM Workspace -#: crm/fcrm/workspace/frappe_crm/frappe_crm.json +#. Label of a shortcut in the Jingrow CRM Workspace +#: crm/fcrm/workspace/jingrow_crm/jingrow_crm.json #: frontend/src/pages/Deal.vue:480 frontend/src/pages/MobileContact.vue:288 #: frontend/src/pages/MobileDeal.vue:384 #: frontend/src/pages/MobileOrganization.vue:325 @@ -1732,8 +1732,8 @@ msgstr "" msgid "Dear {{ lead_name }}, \\n\\nThis is a reminder for the payment of {{ grand_total }}. \\n\\nThanks, \\nFrappé" msgstr "" -#. Label of the default (Check) field in DocType 'CRM Service Level Agreement' -#: crm/fcrm/doctype/crm_service_level_agreement/crm_service_level_agreement.json +#. Label of the default (Check) field in PageType 'CRM Service Level Agreement' +#: crm/fcrm/pagetype/crm_service_level_agreement/crm_service_level_agreement.json msgid "Default" msgstr "الافتراضي" @@ -1745,8 +1745,8 @@ msgstr "علبة الوارد الافتراضية" msgid "Default Incoming" msgstr "الايرادات الافتراضية" -#. Label of the default_medium (Select) field in DocType 'CRM Telephony Agent' -#: crm/fcrm/doctype/crm_telephony_agent/crm_telephony_agent.json +#. Label of the default_medium (Select) field in PageType 'CRM Telephony Agent' +#: crm/fcrm/pagetype/crm_telephony_agent/crm_telephony_agent.json msgid "Default Medium" msgstr "" @@ -1754,9 +1754,9 @@ msgstr "" msgid "Default Outgoing" msgstr "الافتراضي الصادر" -#. Label of the default_priority (Check) field in DocType 'CRM Service Level +#. Label of the default_priority (Check) field in PageType 'CRM Service Level #. Priority' -#: crm/fcrm/doctype/crm_service_level_priority/crm_service_level_priority.json +#: crm/fcrm/pagetype/crm_service_level_priority/crm_service_level_priority.json msgid "Default Priority" msgstr "الأولوية الافتراضية" @@ -1768,7 +1768,7 @@ msgstr "إرسال الافتراضي" msgid "Default Sending and Inbox" msgstr "صندوق الوارد و الصادر الافتراضي" -#: crm/fcrm/doctype/crm_service_level_agreement/crm_service_level_agreement.py:33 +#: crm/fcrm/pagetype/crm_service_level_agreement/crm_service_level_agreement.py:33 msgid "Default Service Level Agreement already exists for {0}" msgstr "" @@ -1788,8 +1788,8 @@ msgstr "" msgid "Default medium" msgstr "" -#: crm/fcrm/doctype/fcrm_settings/fcrm_settings.js:18 -#: crm/fcrm/doctype/fcrm_settings/fcrm_settings.js:30 +#: crm/fcrm/pagetype/fcrm_settings/fcrm_settings.js:18 +#: crm/fcrm/pagetype/fcrm_settings/fcrm_settings.js:30 msgid "Default statuses, custom fields and layouts restored successfully." msgstr "" @@ -1825,7 +1825,7 @@ msgstr "" msgid "Delete" msgstr "حذف" -#: crm/fcrm/doctype/fcrm_settings/fcrm_settings.js:26 +#: crm/fcrm/pagetype/fcrm_settings/fcrm_settings.js:26 msgid "Delete & Restore" msgstr "" @@ -1883,14 +1883,14 @@ msgstr "" msgid "Delete {0} items" msgstr "" -#. Label of the description (Text Editor) field in DocType 'CRM Holiday' -#. Label of the description (Text Editor) field in DocType 'CRM Lost Reason' -#. Label of the description (Text Editor) field in DocType 'CRM Product' -#. Label of the description (Text Editor) field in DocType 'CRM Task' -#: crm/fcrm/doctype/crm_holiday/crm_holiday.json -#: crm/fcrm/doctype/crm_lost_reason/crm_lost_reason.json -#: crm/fcrm/doctype/crm_product/crm_product.json -#: crm/fcrm/doctype/crm_task/crm_task.json +#. Label of the description (Text Editor) field in PageType 'CRM Holiday' +#. Label of the description (Text Editor) field in PageType 'CRM Lost Reason' +#. Label of the description (Text Editor) field in PageType 'CRM Product' +#. Label of the description (Text Editor) field in PageType 'CRM Task' +#: crm/fcrm/pagetype/crm_holiday/crm_holiday.json +#: crm/fcrm/pagetype/crm_lost_reason/crm_lost_reason.json +#: crm/fcrm/pagetype/crm_product/crm_product.json +#: crm/fcrm/pagetype/crm_task/crm_task.json #: frontend/src/components/Calendar/CalendarEventPanel.vue:152 #: frontend/src/components/Modals/EventModal.vue:134 #: frontend/src/components/Modals/TaskModal.vue:36 @@ -1907,29 +1907,29 @@ msgstr "" msgid "Desk" msgstr "مكتب" -#. Label of the details (Tab Break) field in DocType 'CRM Lead' -#. Label of the details (Text Editor) field in DocType 'CRM Lead Source' -#: crm/fcrm/doctype/crm_lead/crm_lead.json -#: crm/fcrm/doctype/crm_lead_source/crm_lead_source.json +#. Label of the details (Tab Break) field in PageType 'CRM Lead' +#. Label of the details (Text Editor) field in PageType 'CRM Lead Source' +#: crm/fcrm/pagetype/crm_lead/crm_lead.json +#: crm/fcrm/pagetype/crm_lead_source/crm_lead_source.json #: frontend/src/pages/MobileContact.vue:283 #: frontend/src/pages/MobileDeal.vue:424 frontend/src/pages/MobileLead.vue:331 #: frontend/src/pages/MobileOrganization.vue:320 msgid "Details" msgstr "تفاصيل" -#. Label of the call_receiving_device (Select) field in DocType 'CRM Telephony +#. Label of the call_receiving_device (Select) field in PageType 'CRM Telephony #. Agent' -#: crm/fcrm/doctype/crm_telephony_agent/crm_telephony_agent.json +#: crm/fcrm/pagetype/crm_telephony_agent/crm_telephony_agent.json #: frontend/src/components/FilesUploader/FilesUploaderArea.vue:39 msgid "Device" msgstr "" -#: crm/fcrm/doctype/crm_form_script/crm_form_script.js:30 +#: crm/fcrm/pagetype/crm_form_script/crm_form_script.js:30 msgid "Disable" msgstr "تعطيل" -#. Label of the disabled (Check) field in DocType 'CRM Product' -#: crm/fcrm/doctype/crm_product/crm_product.json +#. Label of the disabled (Check) field in PageType 'CRM Product' +#: crm/fcrm/pagetype/crm_product/crm_product.json msgid "Disabled" msgstr "معطل" @@ -1943,27 +1943,27 @@ msgstr "تجاهل" msgid "Discard unsaved changes?" msgstr "" -#. Label of the discount_percentage (Percent) field in DocType 'CRM Products' -#: crm/fcrm/doctype/crm_products/crm_products.json +#. Label of the discount_percentage (Percent) field in PageType 'CRM Products' +#: crm/fcrm/pagetype/crm_products/crm_products.json msgid "Discount %" msgstr "الخصم %" -#. Label of the discount_amount (Currency) field in DocType 'CRM Products' -#: crm/fcrm/doctype/crm_products/crm_products.json +#. Label of the discount_amount (Currency) field in PageType 'CRM Products' +#: crm/fcrm/pagetype/crm_products/crm_products.json msgid "Discount Amount" msgstr "قيمة الخصم" -#. Label of the dt (Link) field in DocType 'CRM Form Script' -#. Label of the dt (Link) field in DocType 'CRM Global Settings' -#. Label of the dt (Link) field in DocType 'CRM View Settings' -#: crm/fcrm/doctype/crm_form_script/crm_form_script.json -#: crm/fcrm/doctype/crm_global_settings/crm_global_settings.json -#: crm/fcrm/doctype/crm_view_settings/crm_view_settings.json -msgid "DocType" +#. Label of the dt (Link) field in PageType 'CRM Form Script' +#. Label of the dt (Link) field in PageType 'CRM Global Settings' +#. Label of the dt (Link) field in PageType 'CRM View Settings' +#: crm/fcrm/pagetype/crm_form_script/crm_form_script.json +#: crm/fcrm/pagetype/crm_global_settings/crm_global_settings.json +#: crm/fcrm/pagetype/crm_view_settings/crm_view_settings.json +msgid "PageType" msgstr "" -#. Label of the dt (Link) field in DocType 'CRM Fields Layout' -#: crm/fcrm/doctype/crm_fields_layout/crm_fields_layout.json +#. Label of the dt (Link) field in PageType 'CRM Fields Layout' +#: crm/fcrm/pagetype/crm_fields_layout/crm_fields_layout.json msgid "Document Type" msgstr "نوع الوثيقة" @@ -1983,8 +1983,8 @@ msgstr "" msgid "Documentation" msgstr "" -#. Option for the 'Status' (Select) field in DocType 'CRM Task' -#: crm/fcrm/doctype/crm_task/crm_task.json +#. Option for the 'Status' (Select) field in PageType 'CRM Task' +#: crm/fcrm/pagetype/crm_task/crm_task.json msgid "Done" msgstr "تم" @@ -2006,13 +2006,13 @@ msgstr "" msgid "Drop files here" msgstr "" -#. Label of the dropdown_items_tab (Tab Break) field in DocType 'FCRM Settings' -#: crm/fcrm/doctype/fcrm_settings/fcrm_settings.json +#. Label of the dropdown_items_tab (Tab Break) field in PageType 'FCRM Settings' +#: crm/fcrm/pagetype/fcrm_settings/fcrm_settings.json msgid "Dropdown Items" msgstr "" -#. Label of the due_date (Datetime) field in DocType 'CRM Task' -#: crm/fcrm/doctype/crm_task/crm_task.json +#. Label of the due_date (Datetime) field in PageType 'CRM Task' +#: crm/fcrm/pagetype/crm_task/crm_task.json msgid "Due Date" msgstr "بسبب تاريخ" @@ -2048,10 +2048,10 @@ msgstr "" msgid "Duplicate template" msgstr "" -#. Label of the duration (Duration) field in DocType 'CRM Call Log' -#. Label of the duration (Duration) field in DocType 'CRM Status Change Log' -#: crm/fcrm/doctype/crm_call_log/crm_call_log.json -#: crm/fcrm/doctype/crm_status_change_log/crm_status_change_log.json +#. Label of the duration (Duration) field in PageType 'CRM Call Log' +#. Label of the duration (Duration) field in PageType 'CRM Status Change Log' +#: crm/fcrm/pagetype/crm_call_log/crm_call_log.json +#: crm/fcrm/pagetype/crm_status_change_log/crm_status_change_log.json msgid "Duration" msgstr "المدة الزمنية" @@ -2060,28 +2060,28 @@ msgstr "المدة الزمنية" msgid "ERPNext" msgstr "" -#. Name of a DocType -#: crm/fcrm/doctype/erpnext_crm_settings/erpnext_crm_settings.json +#. Name of a PageType +#: crm/fcrm/pagetype/erpnext_crm_settings/erpnext_crm_settings.json msgid "ERPNext CRM Settings" msgstr "" -#. Label of the section_break_oubd (Section Break) field in DocType 'ERPNext +#. Label of the section_break_oubd (Section Break) field in PageType 'ERPNext #. CRM Settings' -#: crm/fcrm/doctype/erpnext_crm_settings/erpnext_crm_settings.json +#: crm/fcrm/pagetype/erpnext_crm_settings/erpnext_crm_settings.json msgid "ERPNext Site API's" msgstr "" -#. Label of the erpnext_site_url (Data) field in DocType 'ERPNext CRM Settings' -#: crm/fcrm/doctype/erpnext_crm_settings/erpnext_crm_settings.json +#. Label of the erpnext_site_url (Data) field in PageType 'ERPNext CRM Settings' +#: crm/fcrm/pagetype/erpnext_crm_settings/erpnext_crm_settings.json msgid "ERPNext Site URL" msgstr "" -#: crm/fcrm/doctype/erpnext_crm_settings/erpnext_crm_settings.py:25 +#: crm/fcrm/pagetype/erpnext_crm_settings/erpnext_crm_settings.py:25 msgid "ERPNext is not installed in the current site" msgstr "" -#: crm/fcrm/doctype/erpnext_crm_settings/erpnext_crm_settings.py:98 -#: crm/fcrm/doctype/erpnext_crm_settings/erpnext_crm_settings.py:124 +#: crm/fcrm/pagetype/erpnext_crm_settings/erpnext_crm_settings.py:98 +#: crm/fcrm/pagetype/erpnext_crm_settings/erpnext_crm_settings.py:124 msgid "ERPNext is not integrated with the CRM" msgstr "" @@ -2191,12 +2191,12 @@ msgstr "" msgid "Editing event" msgstr "" -#. Label of the email (Data) field in DocType 'CRM Contacts' -#. Label of the email (Data) field in DocType 'CRM Invitation' -#. Label of the email (Data) field in DocType 'CRM Lead' -#: crm/fcrm/doctype/crm_contacts/crm_contacts.json -#: crm/fcrm/doctype/crm_invitation/crm_invitation.json -#: crm/fcrm/doctype/crm_lead/crm_lead.json frontend/src/pages/Contact.vue:510 +#. Label of the email (Data) field in PageType 'CRM Contacts' +#. Label of the email (Data) field in PageType 'CRM Invitation' +#. Label of the email (Data) field in PageType 'CRM Lead' +#: crm/fcrm/pagetype/crm_contacts/crm_contacts.json +#: crm/fcrm/pagetype/crm_invitation/crm_invitation.json +#: crm/fcrm/pagetype/crm_lead/crm_lead.json frontend/src/pages/Contact.vue:510 #: frontend/src/pages/MobileContact.vue:518 #: frontend/src/pages/MobileOrganization.vue:462 #: frontend/src/pages/MobileOrganization.vue:490 @@ -2213,8 +2213,8 @@ msgstr "" msgid "Email ID is required" msgstr "" -#. Label of the email_sent_at (Datetime) field in DocType 'CRM Invitation' -#: crm/fcrm/doctype/crm_invitation/crm_invitation.json +#. Label of the email_sent_at (Datetime) field in PageType 'CRM Invitation' +#: crm/fcrm/pagetype/crm_invitation/crm_invitation.json msgid "Email Sent At" msgstr "" @@ -2272,12 +2272,12 @@ msgstr "" msgid "Empty - Choose a field to sort by" msgstr "" -#: crm/fcrm/doctype/crm_form_script/crm_form_script.js:30 +#: crm/fcrm/pagetype/crm_form_script/crm_form_script.js:30 msgid "Enable" msgstr "تمكين" -#. Label of the enable_forecasting (Check) field in DocType 'FCRM Settings' -#: crm/fcrm/doctype/fcrm_settings/fcrm_settings.json +#. Label of the enable_forecasting (Check) field in PageType 'FCRM Settings' +#: crm/fcrm/pagetype/fcrm_settings/fcrm_settings.json msgid "Enable Forecasting" msgstr "" @@ -2293,18 +2293,18 @@ msgstr "تمكين البريد الصادر" msgid "Enable forecasting" msgstr "" -#. Label of the enabled (Check) field in DocType 'CRM Exotel Settings' -#. Label of the enabled (Check) field in DocType 'CRM Form Script' -#. Label of the enabled (Check) field in DocType 'CRM Service Level Agreement' -#. Label of the enabled (Check) field in DocType 'CRM Twilio Settings' -#. Label of the enabled (Check) field in DocType 'ERPNext CRM Settings' -#. Label of the enabled (Check) field in DocType 'Helpdesk CRM Settings' -#: crm/fcrm/doctype/crm_exotel_settings/crm_exotel_settings.json -#: crm/fcrm/doctype/crm_form_script/crm_form_script.json -#: crm/fcrm/doctype/crm_service_level_agreement/crm_service_level_agreement.json -#: crm/fcrm/doctype/crm_twilio_settings/crm_twilio_settings.json -#: crm/fcrm/doctype/erpnext_crm_settings/erpnext_crm_settings.json -#: crm/fcrm/doctype/helpdesk_crm_settings/helpdesk_crm_settings.json +#. Label of the enabled (Check) field in PageType 'CRM Exotel Settings' +#. Label of the enabled (Check) field in PageType 'CRM Form Script' +#. Label of the enabled (Check) field in PageType 'CRM Service Level Agreement' +#. Label of the enabled (Check) field in PageType 'CRM Twilio Settings' +#. Label of the enabled (Check) field in PageType 'ERPNext CRM Settings' +#. Label of the enabled (Check) field in PageType 'Helpdesk CRM Settings' +#: crm/fcrm/pagetype/crm_exotel_settings/crm_exotel_settings.json +#: crm/fcrm/pagetype/crm_form_script/crm_form_script.json +#: crm/fcrm/pagetype/crm_service_level_agreement/crm_service_level_agreement.json +#: crm/fcrm/pagetype/crm_twilio_settings/crm_twilio_settings.json +#: crm/fcrm/pagetype/erpnext_crm_settings/erpnext_crm_settings.json +#: crm/fcrm/pagetype/helpdesk_crm_settings/helpdesk_crm_settings.json #: frontend/src/components/Settings/AssignmentRules/AssignmentRuleView.vue:32 #: frontend/src/components/Settings/AssignmentRules/AssignmentRulesList.vue:21 #: frontend/src/components/Settings/EmailTemplate/EditEmailTemplate.vue:18 @@ -2313,15 +2313,15 @@ msgstr "" msgid "Enabled" msgstr "تمكين" -#. Label of the end_date (Date) field in DocType 'CRM Service Level Agreement' -#: crm/fcrm/doctype/crm_service_level_agreement/crm_service_level_agreement.json +#. Label of the end_date (Date) field in PageType 'CRM Service Level Agreement' +#: crm/fcrm/pagetype/crm_service_level_agreement/crm_service_level_agreement.json msgid "End Date" msgstr "نهاية التاريخ" -#. Label of the end_time (Datetime) field in DocType 'CRM Call Log' -#. Label of the end_time (Time) field in DocType 'CRM Service Day' -#: crm/fcrm/doctype/crm_call_log/crm_call_log.json -#: crm/fcrm/doctype/crm_service_day/crm_service_day.json +#. Label of the end_time (Datetime) field in PageType 'CRM Call Log' +#. Label of the end_time (Time) field in PageType 'CRM Service Day' +#: crm/fcrm/pagetype/crm_call_log/crm_call_log.json +#: crm/fcrm/pagetype/crm_service_day/crm_service_day.json #: frontend/src/components/Calendar/CalendarEventPanel.vue:242 #: frontend/src/components/Modals/EventModal.vue:112 msgid "End Time" @@ -2362,15 +2362,15 @@ msgstr "" msgid "Error updating field" msgstr "" -#: crm/fcrm/doctype/erpnext_crm_settings/erpnext_crm_settings.py:279 +#: crm/fcrm/pagetype/erpnext_crm_settings/erpnext_crm_settings.py:279 msgid "Error while creating customer in ERPNext, check error log for more details" msgstr "" -#: crm/fcrm/doctype/erpnext_crm_settings/erpnext_crm_settings.py:191 +#: crm/fcrm/pagetype/erpnext_crm_settings/erpnext_crm_settings.py:191 msgid "Error while creating prospect in ERPNext, check error log for more details" msgstr "" -#: crm/fcrm/doctype/erpnext_crm_settings/erpnext_crm_settings.py:117 +#: crm/fcrm/pagetype/erpnext_crm_settings/erpnext_crm_settings.py:117 msgid "Error while fetching customer in ERPNext, check error log for more details" msgstr "" @@ -2395,16 +2395,16 @@ msgstr "الفعاليات" msgid "Excel" msgstr "تفوق" -#. Label of the exchange_rate (Float) field in DocType 'CRM Deal' -#. Label of the exchange_rate (Float) field in DocType 'CRM Organization' -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_organization/crm_organization.json +#. Label of the exchange_rate (Float) field in PageType 'CRM Deal' +#. Label of the exchange_rate (Float) field in PageType 'CRM Organization' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_organization/crm_organization.json msgid "Exchange Rate" msgstr "سعر الصرف" -#. Label of the exchange_rate_provider_section (Section Break) field in DocType +#. Label of the exchange_rate_provider_section (Section Break) field in PageType #. 'FCRM Settings' -#: crm/fcrm/doctype/fcrm_settings/fcrm_settings.json +#: crm/fcrm/pagetype/fcrm_settings/fcrm_settings.json msgid "Exchange Rate Provider" msgstr "" @@ -2412,12 +2412,12 @@ msgstr "" msgid "Exchange rate provider" msgstr "" -#. Option for the 'Telephony Medium' (Select) field in DocType 'CRM Call Log' -#. Label of the exotel (Check) field in DocType 'CRM Telephony Agent' -#. Option for the 'Default Medium' (Select) field in DocType 'CRM Telephony +#. Option for the 'Telephony Medium' (Select) field in PageType 'CRM Call Log' +#. Label of the exotel (Check) field in PageType 'CRM Telephony Agent' +#. Option for the 'Default Medium' (Select) field in PageType 'CRM Telephony #. Agent' -#: crm/fcrm/doctype/crm_call_log/crm_call_log.json -#: crm/fcrm/doctype/crm_telephony_agent/crm_telephony_agent.json +#: crm/fcrm/pagetype/crm_call_log/crm_call_log.json +#: crm/fcrm/pagetype/crm_telephony_agent/crm_telephony_agent.json #: frontend/src/components/Layouts/AppSidebar.vue:602 #: frontend/src/components/Settings/TelephonySettings.vue:41 #: frontend/src/components/Settings/TelephonySettings.vue:63 @@ -2428,8 +2428,8 @@ msgstr "" msgid "Exotel Exception" msgstr "" -#. Label of the exotel_number (Data) field in DocType 'CRM Telephony Agent' -#: crm/fcrm/doctype/crm_telephony_agent/crm_telephony_agent.json +#. Label of the exotel_number (Data) field in PageType 'CRM Telephony Agent' +#: crm/fcrm/pagetype/crm_telephony_agent/crm_telephony_agent.json msgid "Exotel Number" msgstr "" @@ -2453,26 +2453,26 @@ msgstr "" msgid "Expand" msgstr "وسعت" -#. Label of the expected_closure_date (Date) field in DocType 'CRM Deal' -#: crm/fcrm/doctype/crm_deal/crm_deal.json +#. Label of the expected_closure_date (Date) field in PageType 'CRM Deal' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json msgid "Expected Closure Date" msgstr "" -#: crm/fcrm/doctype/crm_deal/crm_deal.py:173 +#: crm/fcrm/pagetype/crm_deal/crm_deal.py:173 msgid "Expected Closure Date is required." msgstr "" -#. Label of the expected_deal_value (Currency) field in DocType 'CRM Deal' -#: crm/fcrm/doctype/crm_deal/crm_deal.json +#. Label of the expected_deal_value (Currency) field in PageType 'CRM Deal' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json msgid "Expected Deal Value" msgstr "" -#: crm/fcrm/doctype/crm_deal/crm_deal.py:171 +#: crm/fcrm/pagetype/crm_deal/crm_deal.py:171 msgid "Expected Deal Value is required." msgstr "" -#. Option for the 'Status' (Select) field in DocType 'CRM Invitation' -#: crm/fcrm/doctype/crm_invitation/crm_invitation.json +#. Option for the 'Status' (Select) field in PageType 'CRM Invitation' +#: crm/fcrm/pagetype/crm_invitation/crm_invitation.json msgid "Expired" msgstr "انتهى" @@ -2489,22 +2489,22 @@ msgstr "" msgid "Export Type" msgstr "نوع التصدير" -#. Name of a DocType -#: crm/fcrm/doctype/fcrm_note/fcrm_note.json +#. Name of a PageType +#: crm/fcrm/pagetype/fcrm_note/fcrm_note.json msgid "FCRM Note" msgstr "" -#. Name of a DocType -#: crm/fcrm/doctype/fcrm_settings/fcrm_settings.json +#. Name of a PageType +#: crm/fcrm/pagetype/fcrm_settings/fcrm_settings.json msgid "FCRM Settings" msgstr "" -#. Option for the 'Status' (Select) field in DocType 'CRM Call Log' -#. Option for the 'SLA Status' (Select) field in DocType 'CRM Deal' -#. Option for the 'SLA Status' (Select) field in DocType 'CRM Lead' -#: crm/fcrm/doctype/crm_call_log/crm_call_log.json -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_lead/crm_lead.json +#. Option for the 'Status' (Select) field in PageType 'CRM Call Log' +#. Option for the 'SLA Status' (Select) field in PageType 'CRM Deal' +#. Option for the 'SLA Status' (Select) field in PageType 'CRM Lead' +#: crm/fcrm/pagetype/crm_call_log/crm_call_log.json +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_lead/crm_lead.json msgid "Failed" msgstr "باءت بالفشل" @@ -2528,7 +2528,7 @@ msgstr "" msgid "Failed to delete template" msgstr "" -#: crm/fcrm/doctype/fcrm_settings/fcrm_settings.py:205 +#: crm/fcrm/pagetype/fcrm_settings/fcrm_settings.py:205 msgid "Failed to fetch exchange rate from {0} to {1} on {2}. Please check your internet connection or try again later." msgstr "" @@ -2561,8 +2561,8 @@ msgstr "" msgid "Failed to update template" msgstr "" -#. Label of the favicon (Attach) field in DocType 'FCRM Settings' -#: crm/fcrm/doctype/fcrm_settings/fcrm_settings.json +#. Label of the favicon (Attach) field in PageType 'FCRM Settings' +#: crm/fcrm/pagetype/fcrm_settings/fcrm_settings.json #: frontend/src/components/Settings/BrandSettings.vue:87 msgid "Favicon" msgstr "" @@ -2586,23 +2586,23 @@ msgid "File \"{0}\" was skipped because only {1} uploads are allowed" msgstr "" #: frontend/src/components/FilesUploader/FilesUploaderArea.vue:359 -msgid "File \"{0}\" was skipped because only {1} uploads are allowed for DocType \"{2}\"" +msgid "File \"{0}\" was skipped because only {1} uploads are allowed for PageType \"{2}\"" msgstr "" #: frontend/src/components/Filter.vue:6 msgid "Filter" msgstr "منقي" -#. Label of the filters (Code) field in DocType 'CRM View Settings' -#. Label of the filters_tab (Tab Break) field in DocType 'CRM View Settings' -#: crm/fcrm/doctype/crm_view_settings/crm_view_settings.json +#. Label of the filters (Code) field in PageType 'CRM View Settings' +#. Label of the filters_tab (Tab Break) field in PageType 'CRM View Settings' +#: crm/fcrm/pagetype/crm_view_settings/crm_view_settings.json msgid "Filters" msgstr "فلاتر" -#. Label of the first_name (Data) field in DocType 'CRM Deal' -#. Label of the first_name (Data) field in DocType 'CRM Lead' -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_lead/crm_lead.json +#. Label of the first_name (Data) field in PageType 'CRM Deal' +#. Label of the first_name (Data) field in PageType 'CRM Lead' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_lead/crm_lead.json #: frontend/src/components/ColumnSettings.vue:103 #: frontend/src/components/Filter.vue:57 frontend/src/components/Filter.vue:88 #: frontend/src/components/SortBy.vue:6 frontend/src/components/SortBy.vue:103 @@ -2614,30 +2614,30 @@ msgstr "الاسم الأول" msgid "First Name is mandatory" msgstr "" -#. Label of the first_responded_on (Datetime) field in DocType 'CRM Deal' -#. Label of the first_responded_on (Datetime) field in DocType 'CRM Lead' -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_lead/crm_lead.json +#. Label of the first_responded_on (Datetime) field in PageType 'CRM Deal' +#. Label of the first_responded_on (Datetime) field in PageType 'CRM Lead' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_lead/crm_lead.json msgid "First Responded On" msgstr "أجاب أولا على" -#. Option for the 'SLA Status' (Select) field in DocType 'CRM Deal' -#. Option for the 'SLA Status' (Select) field in DocType 'CRM Lead' -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_lead/crm_lead.json +#. Option for the 'SLA Status' (Select) field in PageType 'CRM Deal' +#. Option for the 'SLA Status' (Select) field in PageType 'CRM Lead' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_lead/crm_lead.json msgid "First Response Due" msgstr "" -#. Label of the first_response_time (Duration) field in DocType 'CRM Service +#. Label of the first_response_time (Duration) field in PageType 'CRM Service #. Level Priority' -#: crm/fcrm/doctype/crm_service_level_priority/crm_service_level_priority.json +#: crm/fcrm/pagetype/crm_service_level_priority/crm_service_level_priority.json msgid "First Response TIme" msgstr "" -#. Label of the first_response_time (Duration) field in DocType 'CRM Deal' -#. Label of the first_response_time (Duration) field in DocType 'CRM Lead' -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_lead/crm_lead.json +#. Label of the first_response_time (Duration) field in PageType 'CRM Deal' +#. Label of the first_response_time (Duration) field in PageType 'CRM Lead' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_lead/crm_lead.json msgid "First Response Time" msgstr "وقت الاستجابة الأول" @@ -2670,66 +2670,66 @@ msgstr "" msgid "Forecasting enabled successfully" msgstr "" -#. Option for the 'Apply To' (Select) field in DocType 'CRM Form Script' -#: crm/fcrm/doctype/crm_form_script/crm_form_script.json +#. Option for the 'Apply To' (Select) field in PageType 'CRM Form Script' +#: crm/fcrm/pagetype/crm_form_script/crm_form_script.json msgid "Form" msgstr "نموذج" -#: crm/fcrm/doctype/erpnext_crm_settings/erpnext_crm_settings.js:19 +#: crm/fcrm/pagetype/erpnext_crm_settings/erpnext_crm_settings.js:19 msgid "Form Script updated successfully" msgstr "" #. Name of a Workspace -#: crm/fcrm/workspace/frappe_crm/frappe_crm.json -msgid "Frappe CRM" +#: crm/fcrm/workspace/jingrow_crm/jingrow_crm.json +msgid "Jingrow CRM" msgstr "" #: frontend/src/components/Layouts/AppSidebar.vue:608 -msgid "Frappe CRM mobile" +msgid "Jingrow CRM mobile" msgstr "" -#. Option for the 'Weekly Off' (Select) field in DocType 'CRM Holiday List' -#. Option for the 'Workday' (Select) field in DocType 'CRM Service Day' -#: crm/fcrm/doctype/crm_holiday_list/crm_holiday_list.json -#: crm/fcrm/doctype/crm_service_day/crm_service_day.json +#. Option for the 'Weekly Off' (Select) field in PageType 'CRM Holiday List' +#. Option for the 'Workday' (Select) field in PageType 'CRM Service Day' +#: crm/fcrm/pagetype/crm_holiday_list/crm_holiday_list.json +#: crm/fcrm/pagetype/crm_service_day/crm_service_day.json msgid "Friday" msgstr "الجمعة" -#. Label of the from (Data) field in DocType 'CRM Call Log' -#. Label of the from (Data) field in DocType 'CRM Status Change Log' -#: crm/fcrm/doctype/crm_call_log/crm_call_log.json -#: crm/fcrm/doctype/crm_status_change_log/crm_status_change_log.json +#. Label of the from (Data) field in PageType 'CRM Call Log' +#. Label of the from (Data) field in PageType 'CRM Status Change Log' +#: crm/fcrm/pagetype/crm_call_log/crm_call_log.json +#: crm/fcrm/pagetype/crm_status_change_log/crm_status_change_log.json msgid "From" msgstr "من" -#. Label of the from_date (Date) field in DocType 'CRM Holiday List' -#. Label of the from_date (Datetime) field in DocType 'CRM Status Change Log' -#: crm/fcrm/doctype/crm_holiday_list/crm_holiday_list.json -#: crm/fcrm/doctype/crm_status_change_log/crm_status_change_log.json +#. Label of the from_date (Date) field in PageType 'CRM Holiday List' +#. Label of the from_date (Datetime) field in PageType 'CRM Status Change Log' +#: crm/fcrm/pagetype/crm_holiday_list/crm_holiday_list.json +#: crm/fcrm/pagetype/crm_status_change_log/crm_status_change_log.json msgid "From Date" msgstr "من تاريخ" -#. Label of the from_type (Data) field in DocType 'CRM Status Change Log' -#: crm/fcrm/doctype/crm_status_change_log/crm_status_change_log.json +#. Label of the from_type (Data) field in PageType 'CRM Status Change Log' +#: crm/fcrm/pagetype/crm_status_change_log/crm_status_change_log.json msgid "From Type" msgstr "" -#. Label of the from_user (Link) field in DocType 'CRM Notification' -#: crm/fcrm/doctype/crm_notification/crm_notification.json +#. Label of the from_user (Link) field in PageType 'CRM Notification' +#: crm/fcrm/pagetype/crm_notification/crm_notification.json msgid "From User" msgstr "من المستخدم" -#. Option for the 'SLA Status' (Select) field in DocType 'CRM Deal' -#. Option for the 'SLA Status' (Select) field in DocType 'CRM Lead' -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_lead/crm_lead.json +#. Option for the 'SLA Status' (Select) field in PageType 'CRM Deal' +#. Option for the 'SLA Status' (Select) field in PageType 'CRM Lead' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_lead/crm_lead.json msgid "Fulfilled" msgstr "استيفاء" -#. Label of the full_name (Data) field in DocType 'CRM Contacts' -#. Label of the lead_name (Data) field in DocType 'CRM Lead' -#: crm/fcrm/doctype/crm_contacts/crm_contacts.json -#: crm/fcrm/doctype/crm_lead/crm_lead.json +#. Label of the full_name (Data) field in PageType 'CRM Contacts' +#. Label of the lead_name (Data) field in PageType 'CRM Lead' +#: crm/fcrm/pagetype/crm_contacts/crm_contacts.json +#: crm/fcrm/pagetype/crm_lead/crm_lead.json msgid "Full Name" msgstr "الاسم الكامل" @@ -2742,12 +2742,12 @@ msgstr "" msgid "GMT+5:30" msgstr "" -#. Label of the gender (Link) field in DocType 'CRM Contacts' -#. Label of the gender (Link) field in DocType 'CRM Deal' -#. Label of the gender (Link) field in DocType 'CRM Lead' -#: crm/fcrm/doctype/crm_contacts/crm_contacts.json -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_lead/crm_lead.json +#. Label of the gender (Link) field in PageType 'CRM Contacts' +#. Label of the gender (Link) field in PageType 'CRM Deal' +#. Label of the gender (Link) field in PageType 'CRM Lead' +#: crm/fcrm/pagetype/crm_contacts/crm_contacts.json +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_lead/crm_lead.json msgid "Gender" msgstr "جنس" @@ -2771,20 +2771,20 @@ msgstr "" msgid "Go to website" msgstr "" -#. Option for the 'Type' (Select) field in DocType 'CRM Fields Layout' -#: crm/fcrm/doctype/crm_fields_layout/crm_fields_layout.json +#. Option for the 'Type' (Select) field in PageType 'CRM Fields Layout' +#: crm/fcrm/pagetype/crm_fields_layout/crm_fields_layout.json msgid "Grid Row" msgstr "" -#. Label of the group_by_tab (Tab Break) field in DocType 'CRM View Settings' -#: crm/fcrm/doctype/crm_view_settings/crm_view_settings.json +#. Label of the group_by_tab (Tab Break) field in PageType 'CRM View Settings' +#: crm/fcrm/pagetype/crm_view_settings/crm_view_settings.json #: frontend/src/components/ViewControls.vue:379 #: frontend/src/components/ViewControls.vue:611 frontend/src/utils/view.js:16 msgid "Group By" msgstr "مجموعة من" -#. Label of the group_by_field (Data) field in DocType 'CRM View Settings' -#: crm/fcrm/doctype/crm_view_settings/crm_view_settings.json +#. Label of the group_by_field (Data) field in PageType 'CRM View Settings' +#: crm/fcrm/pagetype/crm_view_settings/crm_view_settings.json msgid "Group By Field" msgstr "" @@ -2808,28 +2808,28 @@ msgstr "مساعدة" msgid "Helpdesk" msgstr "" -#. Name of a DocType -#: crm/fcrm/doctype/helpdesk_crm_settings/helpdesk_crm_settings.json +#. Name of a PageType +#: crm/fcrm/pagetype/helpdesk_crm_settings/helpdesk_crm_settings.json msgid "Helpdesk CRM Settings" msgstr "" -#. Label of the helpdesk_site_apis_section (Section Break) field in DocType +#. Label of the helpdesk_site_apis_section (Section Break) field in PageType #. 'Helpdesk CRM Settings' -#: crm/fcrm/doctype/helpdesk_crm_settings/helpdesk_crm_settings.json +#: crm/fcrm/pagetype/helpdesk_crm_settings/helpdesk_crm_settings.json msgid "Helpdesk Site API's" msgstr "" -#. Label of the helpdesk_site_url (Data) field in DocType 'Helpdesk CRM +#. Label of the helpdesk_site_url (Data) field in PageType 'Helpdesk CRM #. Settings' -#: crm/fcrm/doctype/helpdesk_crm_settings/helpdesk_crm_settings.json +#: crm/fcrm/pagetype/helpdesk_crm_settings/helpdesk_crm_settings.json msgid "Helpdesk Site URL" msgstr "" -#: crm/fcrm/doctype/helpdesk_crm_settings/helpdesk_crm_settings.py:18 +#: crm/fcrm/pagetype/helpdesk_crm_settings/helpdesk_crm_settings.py:18 msgid "Helpdesk is not installed in the current site" msgstr "" -#: crm/fcrm/doctype/helpdesk_crm_settings/helpdesk_crm_settings.py:40 +#: crm/fcrm/pagetype/helpdesk_crm_settings/helpdesk_crm_settings.py:40 msgid "Helpdesk is not integrated with the CRM" msgstr "" @@ -2845,8 +2845,8 @@ msgstr "" msgid "Hi John, \\n\\nCan you please provide more details on this..." msgstr "" -#. Label of the hidden (Check) field in DocType 'CRM Dropdown Item' -#: crm/fcrm/doctype/crm_dropdown_item/crm_dropdown_item.json +#. Label of the hidden (Check) field in PageType 'CRM Dropdown Item' +#: crm/fcrm/pagetype/crm_dropdown_item/crm_dropdown_item.json msgid "Hidden" msgstr "مخفي" @@ -2877,26 +2877,26 @@ msgstr "" msgid "Hide preview" msgstr "" -#. Option for the 'Priority' (Select) field in DocType 'CRM Task' -#: crm/fcrm/doctype/crm_task/crm_task.json +#. Option for the 'Priority' (Select) field in PageType 'CRM Task' +#: crm/fcrm/pagetype/crm_task/crm_task.json msgid "High" msgstr "مستوى عالي" -#. Label of the holiday_list (Link) field in DocType 'CRM Service Level +#. Label of the holiday_list (Link) field in PageType 'CRM Service Level #. Agreement' -#: crm/fcrm/doctype/crm_service_level_agreement/crm_service_level_agreement.json +#: crm/fcrm/pagetype/crm_service_level_agreement/crm_service_level_agreement.json msgid "Holiday List" msgstr "قائمة العطلات" -#. Label of the holiday_list_name (Data) field in DocType 'CRM Holiday List' -#: crm/fcrm/doctype/crm_holiday_list/crm_holiday_list.json +#. Label of the holiday_list_name (Data) field in PageType 'CRM Holiday List' +#: crm/fcrm/pagetype/crm_holiday_list/crm_holiday_list.json msgid "Holiday List Name" msgstr "اسم قائمة العطلات" -#. Label of the holidays_section (Section Break) field in DocType 'CRM Holiday +#. Label of the holidays_section (Section Break) field in PageType 'CRM Holiday #. List' -#. Label of the holidays (Table) field in DocType 'CRM Holiday List' -#: crm/fcrm/doctype/crm_holiday_list/crm_holiday_list.json +#. Label of the holidays (Table) field in PageType 'CRM Holiday List' +#: crm/fcrm/pagetype/crm_holiday_list/crm_holiday_list.json msgid "Holidays" msgstr "العطلات" @@ -2914,15 +2914,15 @@ msgstr "" msgid "I understand, add conditions" msgstr "" -#. Label of the id (Data) field in DocType 'CRM Call Log' -#: crm/fcrm/doctype/crm_call_log/crm_call_log.json +#. Label of the id (Data) field in PageType 'CRM Call Log' +#: crm/fcrm/pagetype/crm_call_log/crm_call_log.json msgid "ID" msgstr "هوية شخصية" -#. Label of the icon (Code) field in DocType 'CRM Dropdown Item' -#. Label of the icon (Data) field in DocType 'CRM View Settings' -#: crm/fcrm/doctype/crm_dropdown_item/crm_dropdown_item.json -#: crm/fcrm/doctype/crm_view_settings/crm_view_settings.json +#. Label of the icon (Code) field in PageType 'CRM Dropdown Item' +#. Label of the icon (Data) field in PageType 'CRM View Settings' +#: crm/fcrm/pagetype/crm_dropdown_item/crm_dropdown_item.json +#: crm/fcrm/pagetype/crm_view_settings/crm_view_settings.json msgid "Icon" msgstr "أيقونة" @@ -2942,10 +2942,10 @@ msgstr "" msgid "If enabled, records can be created from the incoming emails on this account." msgstr "" -#. Label of the image (Attach Image) field in DocType 'CRM Lead' -#. Label of the image (Attach Image) field in DocType 'CRM Product' -#: crm/fcrm/doctype/crm_lead/crm_lead.json -#: crm/fcrm/doctype/crm_product/crm_product.json +#. Label of the image (Attach Image) field in PageType 'CRM Lead' +#. Label of the image (Attach Image) field in PageType 'CRM Product' +#: crm/fcrm/pagetype/crm_lead/crm_lead.json +#: crm/fcrm/pagetype/crm_product/crm_product.json msgid "Image" msgstr "صورة" @@ -2957,10 +2957,10 @@ msgstr "صورة" msgid "In" msgstr "في" -#. Option for the 'Status' (Select) field in DocType 'CRM Call Log' -#. Option for the 'Status' (Select) field in DocType 'CRM Task' -#: crm/fcrm/doctype/crm_call_log/crm_call_log.json -#: crm/fcrm/doctype/crm_task/crm_task.json +#. Option for the 'Status' (Select) field in PageType 'CRM Call Log' +#. Option for the 'Status' (Select) field in PageType 'CRM Task' +#: crm/fcrm/pagetype/crm_call_log/crm_call_log.json +#: crm/fcrm/pagetype/crm_task/crm_task.json msgid "In Progress" msgstr "في تَقَدم" @@ -2976,8 +2976,8 @@ msgstr "" msgid "Inbox" msgstr "صندوق الوارد" -#. Option for the 'Type' (Select) field in DocType 'CRM Call Log' -#: crm/fcrm/doctype/crm_call_log/crm_call_log.json +#. Option for the 'Type' (Select) field in PageType 'CRM Call Log' +#: crm/fcrm/pagetype/crm_call_log/crm_call_log.json msgid "Incoming" msgstr "الوارد" @@ -2985,24 +2985,24 @@ msgstr "الوارد" msgid "Incoming call..." msgstr "" -#. Label of a shortcut in the Frappe CRM Workspace -#: crm/fcrm/workspace/frappe_crm/frappe_crm.json +#. Label of a shortcut in the Jingrow CRM Workspace +#: crm/fcrm/workspace/jingrow_crm/jingrow_crm.json msgid "Industries" msgstr "" -#. Label of the industry (Link) field in DocType 'CRM Deal' -#. Label of the industry (Data) field in DocType 'CRM Industry' -#. Label of the industry (Link) field in DocType 'CRM Lead' -#. Label of the industry (Link) field in DocType 'CRM Organization' -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_industry/crm_industry.json -#: crm/fcrm/doctype/crm_lead/crm_lead.json -#: crm/fcrm/doctype/crm_organization/crm_organization.json +#. Label of the industry (Link) field in PageType 'CRM Deal' +#. Label of the industry (Data) field in PageType 'CRM Industry' +#. Label of the industry (Link) field in PageType 'CRM Lead' +#. Label of the industry (Link) field in PageType 'CRM Organization' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_industry/crm_industry.json +#: crm/fcrm/pagetype/crm_lead/crm_lead.json +#: crm/fcrm/pagetype/crm_organization/crm_organization.json msgid "Industry" msgstr "صناعة" -#. Option for the 'Status' (Select) field in DocType 'CRM Call Log' -#: crm/fcrm/doctype/crm_call_log/crm_call_log.json +#. Option for the 'Status' (Select) field in PageType 'CRM Call Log' +#: crm/fcrm/pagetype/crm_call_log/crm_call_log.json msgid "Initiated" msgstr "بدأت" @@ -3037,7 +3037,7 @@ msgstr "التكاملات" msgid "Introduction" msgstr "مقدمة" -#: crm/fcrm/doctype/crm_twilio_settings/crm_twilio_settings.py:33 +#: crm/fcrm/pagetype/crm_twilio_settings/crm_twilio_settings.py:33 msgid "Invalid Account SID or Auth Token." msgstr "" @@ -3054,7 +3054,7 @@ msgstr "" msgid "Invalid chart name" msgstr "" -#: crm/fcrm/doctype/crm_exotel_settings/crm_exotel_settings.py:25 +#: crm/fcrm/pagetype/crm_exotel_settings/crm_exotel_settings.py:25 msgid "Invalid credentials" msgstr "" @@ -3103,8 +3103,8 @@ msgstr "" msgid "Invite your team" msgstr "" -#. Label of the invited_by (Link) field in DocType 'CRM Invitation' -#: crm/fcrm/doctype/crm_invitation/crm_invitation.json +#. Label of the invited_by (Link) field in PageType 'CRM Invitation' +#: crm/fcrm/pagetype/crm_invitation/crm_invitation.json msgid "Invited By" msgstr "" @@ -3118,59 +3118,59 @@ msgstr "" msgid "Is" msgstr "هل" -#. Label of the is_default (Check) field in DocType 'CRM View Settings' -#: crm/fcrm/doctype/crm_view_settings/crm_view_settings.json +#. Label of the is_default (Check) field in PageType 'CRM View Settings' +#: crm/fcrm/pagetype/crm_view_settings/crm_view_settings.json msgid "Is Default" msgstr "افتراضي" -#. Label of the is_erpnext_in_different_site (Check) field in DocType 'ERPNext +#. Label of the is_erpnext_in_different_site (Check) field in PageType 'ERPNext #. CRM Settings' -#: crm/fcrm/doctype/erpnext_crm_settings/erpnext_crm_settings.json +#: crm/fcrm/pagetype/erpnext_crm_settings/erpnext_crm_settings.json msgid "Is ERPNext installed on a different site?" msgstr "" -#. Label of the is_group (Check) field in DocType 'CRM Territory' -#: crm/fcrm/doctype/crm_territory/crm_territory.json +#. Label of the is_group (Check) field in PageType 'CRM Territory' +#: crm/fcrm/pagetype/crm_territory/crm_territory.json msgid "Is Group" msgstr "هل مجموعة" -#. Label of the is_helpdesk_in_different_site (Check) field in DocType +#. Label of the is_helpdesk_in_different_site (Check) field in PageType #. 'Helpdesk CRM Settings' -#: crm/fcrm/doctype/helpdesk_crm_settings/helpdesk_crm_settings.json +#: crm/fcrm/pagetype/helpdesk_crm_settings/helpdesk_crm_settings.json msgid "Is Helpdesk installed on a different site?" msgstr "" -#. Label of the is_primary (Check) field in DocType 'CRM Contacts' -#. Label of the is_primary (Check) field in DocType 'CRM Telephony Phone' -#: crm/fcrm/doctype/crm_contacts/crm_contacts.json -#: crm/fcrm/doctype/crm_telephony_phone/crm_telephony_phone.json +#. Label of the is_primary (Check) field in PageType 'CRM Contacts' +#. Label of the is_primary (Check) field in PageType 'CRM Telephony Phone' +#: crm/fcrm/pagetype/crm_contacts/crm_contacts.json +#: crm/fcrm/pagetype/crm_telephony_phone/crm_telephony_phone.json msgid "Is Primary" msgstr "هو الابتدائية" -#. Label of the is_standard (Check) field in DocType 'CRM Dropdown Item' -#. Label of the is_standard (Check) field in DocType 'CRM Form Script' -#. Label of the is_standard (Check) field in DocType 'CRM View Settings' -#: crm/fcrm/doctype/crm_dropdown_item/crm_dropdown_item.json -#: crm/fcrm/doctype/crm_form_script/crm_form_script.json -#: crm/fcrm/doctype/crm_view_settings/crm_view_settings.json +#. Label of the is_standard (Check) field in PageType 'CRM Dropdown Item' +#. Label of the is_standard (Check) field in PageType 'CRM Form Script' +#. Label of the is_standard (Check) field in PageType 'CRM View Settings' +#: crm/fcrm/pagetype/crm_dropdown_item/crm_dropdown_item.json +#: crm/fcrm/pagetype/crm_form_script/crm_form_script.json +#: crm/fcrm/pagetype/crm_view_settings/crm_view_settings.json msgid "Is Standard" msgstr "هو معيار" -#. Description of the 'Enable Forecasting' (Check) field in DocType 'FCRM +#. Description of the 'Enable Forecasting' (Check) field in PageType 'FCRM #. Settings' -#: crm/fcrm/doctype/fcrm_settings/fcrm_settings.json +#: crm/fcrm/pagetype/fcrm_settings/fcrm_settings.json msgid "It will make deal's \"Expected Closure Date\" & \"Expected Deal Value\" mandatory to get accurate forecasting insights" msgstr "" -#. Label of the json (JSON) field in DocType 'CRM Global Settings' -#: crm/fcrm/doctype/crm_global_settings/crm_global_settings.json +#. Label of the json (JSON) field in PageType 'CRM Global Settings' +#: crm/fcrm/pagetype/crm_global_settings/crm_global_settings.json msgid "JSON" msgstr "" -#. Label of the job_title (Data) field in DocType 'CRM Deal' -#. Label of the job_title (Data) field in DocType 'CRM Lead' -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_lead/crm_lead.json +#. Label of the job_title (Data) field in PageType 'CRM Deal' +#. Label of the job_title (Data) field in PageType 'CRM Lead' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_lead/crm_lead.json msgid "Job Title" msgstr "المسمى الوظيفي" @@ -3182,20 +3182,20 @@ msgstr "المسمى الوظيفي" msgid "John Doe" msgstr "" -#. Label of the kanban_tab (Tab Break) field in DocType 'CRM View Settings' -#: crm/fcrm/doctype/crm_view_settings/crm_view_settings.json +#. Label of the kanban_tab (Tab Break) field in PageType 'CRM View Settings' +#: crm/fcrm/pagetype/crm_view_settings/crm_view_settings.json #: frontend/src/components/ViewControls.vue:384 #: frontend/src/components/ViewControls.vue:600 frontend/src/utils/view.js:20 msgid "Kanban" msgstr "لوحة المهام" -#. Label of the kanban_columns (Code) field in DocType 'CRM View Settings' -#: crm/fcrm/doctype/crm_view_settings/crm_view_settings.json +#. Label of the kanban_columns (Code) field in PageType 'CRM View Settings' +#: crm/fcrm/pagetype/crm_view_settings/crm_view_settings.json msgid "Kanban Columns" msgstr "" -#. Label of the kanban_fields (Code) field in DocType 'CRM View Settings' -#: crm/fcrm/doctype/crm_view_settings/crm_view_settings.json +#. Label of the kanban_fields (Code) field in PageType 'CRM View Settings' +#: crm/fcrm/pagetype/crm_view_settings/crm_view_settings.json msgid "Kanban Fields" msgstr "" @@ -3204,15 +3204,15 @@ msgstr "" msgid "Kanban Settings" msgstr "" -#. Label of the key (Data) field in DocType 'CRM Invitation' -#: crm/fcrm/doctype/crm_invitation/crm_invitation.json +#. Label of the key (Data) field in PageType 'CRM Invitation' +#: crm/fcrm/pagetype/crm_invitation/crm_invitation.json msgid "Key" msgstr "مفتاح" -#. Label of the label (Data) field in DocType 'CRM Dropdown Item' -#. Label of the label (Data) field in DocType 'CRM View Settings' -#: crm/fcrm/doctype/crm_dropdown_item/crm_dropdown_item.json -#: crm/fcrm/doctype/crm_view_settings/crm_view_settings.json +#. Label of the label (Data) field in PageType 'CRM Dropdown Item' +#. Label of the label (Data) field in PageType 'CRM View Settings' +#: crm/fcrm/pagetype/crm_dropdown_item/crm_dropdown_item.json +#: crm/fcrm/pagetype/crm_view_settings/crm_view_settings.json #: frontend/src/components/ColumnSettings.vue:100 msgid "Label" msgstr "ملصق" @@ -3229,10 +3229,10 @@ msgstr "" msgid "Last Month" msgstr "الشهر الماضي" -#. Label of the last_name (Data) field in DocType 'CRM Deal' -#. Label of the last_name (Data) field in DocType 'CRM Lead' -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_lead/crm_lead.json +#. Label of the last_name (Data) field in PageType 'CRM Deal' +#. Label of the last_name (Data) field in PageType 'CRM Lead' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_lead/crm_lead.json msgid "Last Name" msgstr "اسم العائلة" @@ -3240,9 +3240,9 @@ msgstr "اسم العائلة" msgid "Last Quarter" msgstr "الربع الأخير" -#. Label of the last_status_change_log (Link) field in DocType 'CRM Status +#. Label of the last_status_change_log (Link) field in PageType 'CRM Status #. Change Log' -#: crm/fcrm/doctype/crm_status_change_log/crm_status_change_log.json +#: crm/fcrm/pagetype/crm_status_change_log/crm_status_change_log.json msgid "Last Status Change Log" msgstr "" @@ -3270,15 +3270,15 @@ msgstr "" msgid "Last user assigned by this rule" msgstr "" -#. Label of the layout (Code) field in DocType 'CRM Dashboard' -#. Label of the layout (Code) field in DocType 'CRM Fields Layout' -#: crm/fcrm/doctype/crm_dashboard/crm_dashboard.json -#: crm/fcrm/doctype/crm_fields_layout/crm_fields_layout.json +#. Label of the layout (Code) field in PageType 'CRM Dashboard' +#. Label of the layout (Code) field in PageType 'CRM Fields Layout' +#: crm/fcrm/pagetype/crm_dashboard/crm_dashboard.json +#: crm/fcrm/pagetype/crm_fields_layout/crm_fields_layout.json msgid "Layout" msgstr "" -#. Label of the lead (Link) field in DocType 'CRM Deal' -#: crm/fcrm/doctype/crm_deal/crm_deal.json +#. Label of the lead (Link) field in PageType 'CRM Deal' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json #: frontend/src/components/Calendar/CalendarEventPanel.vue:263 #: frontend/src/components/Calendar/CalendarEventPanel.vue:288 #: frontend/src/components/Layouts/AppSidebar.vue:550 @@ -3291,32 +3291,32 @@ msgstr "" msgid "Lead" msgstr "مبادرة البيع" -#. Label of the lead_details_tab (Tab Break) field in DocType 'CRM Deal' -#: crm/fcrm/doctype/crm_deal/crm_deal.json +#. Label of the lead_details_tab (Tab Break) field in PageType 'CRM Deal' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json msgid "Lead Details" msgstr "تفاصيل الزبون المحتمل" -#. Label of the lead_name (Data) field in DocType 'CRM Deal' -#: crm/fcrm/doctype/crm_deal/crm_deal.json +#. Label of the lead_name (Data) field in PageType 'CRM Deal' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json msgid "Lead Name" msgstr "اسم الزبون المحتمل" -#. Label of the lead_owner (Link) field in DocType 'CRM Lead' -#: crm/fcrm/doctype/crm_lead/crm_lead.json +#. Label of the lead_owner (Link) field in PageType 'CRM Lead' +#: crm/fcrm/pagetype/crm_lead/crm_lead.json msgid "Lead Owner" msgstr "مالك الزبون المحتمل" -#: crm/fcrm/doctype/crm_lead/crm_lead.py:73 +#: crm/fcrm/pagetype/crm_lead/crm_lead.py:73 msgid "Lead Owner cannot be same as the Lead Email Address" msgstr "" -#. Label of a shortcut in the Frappe CRM Workspace -#: crm/fcrm/workspace/frappe_crm/frappe_crm.json +#. Label of a shortcut in the Jingrow CRM Workspace +#: crm/fcrm/workspace/jingrow_crm/jingrow_crm.json msgid "Lead Sources" msgstr "" -#. Label of a shortcut in the Frappe CRM Workspace -#: crm/fcrm/workspace/frappe_crm/frappe_crm.json +#. Label of a shortcut in the Jingrow CRM Workspace +#: crm/fcrm/workspace/jingrow_crm/jingrow_crm.json msgid "Lead Statuses" msgstr "" @@ -3328,8 +3328,8 @@ msgstr "" msgid "Lead to deal conversion pipeline" msgstr "" -#. Label of a shortcut in the Frappe CRM Workspace -#: crm/fcrm/workspace/frappe_crm/frappe_crm.json +#. Label of a shortcut in the Jingrow CRM Workspace +#: crm/fcrm/workspace/jingrow_crm/jingrow_crm.json #: frontend/src/pages/InvalidPage.vue:9 frontend/src/pages/Lead.vue:340 #: frontend/src/pages/MobileLead.vue:291 msgid "Leads" @@ -3345,8 +3345,8 @@ msgstr "" msgid "Learn about conditions" msgstr "" -#. Label of the lft (Int) field in DocType 'CRM Territory' -#: crm/fcrm/doctype/crm_territory/crm_territory.json +#. Label of the lft (Int) field in PageType 'CRM Territory' +#: crm/fcrm/pagetype/crm_territory/crm_territory.json msgid "Left" msgstr "ترك" @@ -3367,15 +3367,15 @@ msgstr "مثل" msgid "Link" msgstr "حلقة الوصل" -#. Label of the links (Table) field in DocType 'CRM Call Log' -#: crm/fcrm/doctype/crm_call_log/crm_call_log.json +#. Label of the links (Table) field in PageType 'CRM Call Log' +#: crm/fcrm/pagetype/crm_call_log/crm_call_log.json msgid "Links" msgstr "الروابط" -#. Option for the 'Apply To' (Select) field in DocType 'CRM Form Script' -#. Label of the list_tab (Tab Break) field in DocType 'CRM View Settings' -#: crm/fcrm/doctype/crm_form_script/crm_form_script.json -#: crm/fcrm/doctype/crm_view_settings/crm_view_settings.json +#. Option for the 'Apply To' (Select) field in PageType 'CRM Form Script' +#. Label of the list_tab (Tab Break) field in PageType 'CRM View Settings' +#: crm/fcrm/pagetype/crm_form_script/crm_form_script.json +#: crm/fcrm/pagetype/crm_view_settings/crm_view_settings.json #: frontend/src/components/ViewControls.vue:374 #: frontend/src/components/ViewControls.vue:589 frontend/src/utils/view.js:12 msgid "List" @@ -3385,9 +3385,9 @@ msgstr "قائمة" msgid "Listen" msgstr "" -#. Label of the load_default_columns (Check) field in DocType 'CRM View +#. Label of the load_default_columns (Check) field in PageType 'CRM View #. Settings' -#: crm/fcrm/doctype/crm_view_settings/crm_view_settings.json +#: crm/fcrm/pagetype/crm_view_settings/crm_view_settings.json msgid "Load Default Columns" msgstr "" @@ -3403,10 +3403,10 @@ msgstr "تحميل المزيد" msgid "Loading..." msgstr "تحميل ..." -#. Label of the log_tab (Tab Break) field in DocType 'CRM Deal' -#. Label of the log_tab (Tab Break) field in DocType 'CRM Lead' -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_lead/crm_lead.json +#. Label of the log_tab (Tab Break) field in PageType 'CRM Deal' +#. Label of the log_tab (Tab Break) field in PageType 'CRM Lead' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_lead/crm_lead.json msgid "Log" msgstr "سجل" @@ -3417,28 +3417,28 @@ msgid "Log a Call" msgstr "" #: frontend/src/composables/frappecloud.js:23 -msgid "Login to Frappe Cloud?" -msgstr "تسجيل الدخول إلى Frappe Cloud؟" +msgid "Login to Jingrow Cloud?" +msgstr "تسجيل الدخول إلى Jingrow Cloud؟" -#. Label of the brand_logo (Attach) field in DocType 'FCRM Settings' -#: crm/fcrm/doctype/fcrm_settings/fcrm_settings.json +#. Label of the brand_logo (Attach) field in PageType 'FCRM Settings' +#: crm/fcrm/pagetype/fcrm_settings/fcrm_settings.json msgid "Logo" msgstr "شعار" -#. Option for the 'Type' (Select) field in DocType 'CRM Deal Status' -#: crm/fcrm/doctype/crm_deal_status/crm_deal_status.json +#. Option for the 'Type' (Select) field in PageType 'CRM Deal Status' +#: crm/fcrm/pagetype/crm_deal_status/crm_deal_status.json msgid "Lost" msgstr "مفقود" -#. Label of the lost_notes (Text) field in DocType 'CRM Deal' -#: crm/fcrm/doctype/crm_deal/crm_deal.json +#. Label of the lost_notes (Text) field in PageType 'CRM Deal' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json msgid "Lost Notes" msgstr "" -#. Label of the lost_reason (Link) field in DocType 'CRM Deal' -#. Label of the lost_reason (Data) field in DocType 'CRM Lost Reason' -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_lost_reason/crm_lost_reason.json +#. Label of the lost_reason (Link) field in PageType 'CRM Deal' +#. Label of the lost_reason (Data) field in PageType 'CRM Lost Reason' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_lost_reason/crm_lost_reason.json msgid "Lost Reason" msgstr "فقد السبب" @@ -3464,8 +3464,8 @@ msgstr "" msgid "Lost reason is required" msgstr "" -#. Option for the 'Priority' (Select) field in DocType 'CRM Task' -#: crm/fcrm/doctype/crm_task/crm_task.json +#. Option for the 'Priority' (Select) field in PageType 'CRM Task' +#: crm/fcrm/pagetype/crm_task/crm_task.json msgid "Low" msgstr "منخفض" @@ -3542,8 +3542,8 @@ msgstr "" msgid "Mandatory field error: {0}" msgstr "" -#. Option for the 'Telephony Medium' (Select) field in DocType 'CRM Call Log' -#: crm/fcrm/doctype/crm_call_log/crm_call_log.json +#. Option for the 'Telephony Medium' (Select) field in PageType 'CRM Call Log' +#: crm/fcrm/pagetype/crm_call_log/crm_call_log.json msgid "Manual" msgstr "يدوي" @@ -3562,25 +3562,25 @@ msgstr "الرئيسية" msgid "May 1, 2025" msgstr "" -#. Label of the medium (Data) field in DocType 'CRM Call Log' -#. Option for the 'Priority' (Select) field in DocType 'CRM Task' -#: crm/fcrm/doctype/crm_call_log/crm_call_log.json -#: crm/fcrm/doctype/crm_task/crm_task.json +#. Label of the medium (Data) field in PageType 'CRM Call Log' +#. Option for the 'Priority' (Select) field in PageType 'CRM Task' +#: crm/fcrm/pagetype/crm_call_log/crm_call_log.json +#: crm/fcrm/pagetype/crm_task/crm_task.json msgid "Medium" msgstr "متوسط" -#. Option for the 'Type' (Select) field in DocType 'CRM Notification' -#: crm/fcrm/doctype/crm_notification/crm_notification.json +#. Option for the 'Type' (Select) field in PageType 'CRM Notification' +#: crm/fcrm/pagetype/crm_notification/crm_notification.json msgid "Mention" msgstr "أشير" -#. Label of the message (HTML Editor) field in DocType 'CRM Notification' -#: crm/fcrm/doctype/crm_notification/crm_notification.json +#. Label of the message (HTML Editor) field in PageType 'CRM Notification' +#: crm/fcrm/pagetype/crm_notification/crm_notification.json msgid "Message" msgstr "رسالة" -#. Label of the middle_name (Data) field in DocType 'CRM Lead' -#: crm/fcrm/doctype/crm_lead/crm_lead.json +#. Label of the middle_name (Data) field in PageType 'CRM Lead' +#: crm/fcrm/pagetype/crm_lead/crm_lead.json msgid "Middle Name" msgstr "الاسم الأوسط" @@ -3588,10 +3588,10 @@ msgstr "الاسم الأوسط" msgid "Minimize" msgstr "" -#. Label of the mobile_no (Data) field in DocType 'CRM Contacts' -#. Label of the mobile_no (Data) field in DocType 'CRM Lead' -#: crm/fcrm/doctype/crm_contacts/crm_contacts.json -#: crm/fcrm/doctype/crm_lead/crm_lead.json +#. Label of the mobile_no (Data) field in PageType 'CRM Contacts' +#. Label of the mobile_no (Data) field in PageType 'CRM Lead' +#: crm/fcrm/pagetype/crm_contacts/crm_contacts.json +#: crm/fcrm/pagetype/crm_lead/crm_lead.json msgid "Mobile No" msgstr "رقم الجوال" @@ -3600,8 +3600,8 @@ msgstr "رقم الجوال" msgid "Mobile No should be a number" msgstr "" -#. Label of the mobile_no (Data) field in DocType 'CRM Telephony Agent' -#: crm/fcrm/doctype/crm_telephony_agent/crm_telephony_agent.json +#. Label of the mobile_no (Data) field in PageType 'CRM Telephony Agent' +#: crm/fcrm/pagetype/crm_telephony_agent/crm_telephony_agent.json msgid "Mobile No." msgstr "رقم الجوال." @@ -3623,10 +3623,10 @@ msgstr "" msgid "Mobile no" msgstr "" -#. Option for the 'Weekly Off' (Select) field in DocType 'CRM Holiday List' -#. Option for the 'Workday' (Select) field in DocType 'CRM Service Day' -#: crm/fcrm/doctype/crm_holiday_list/crm_holiday_list.json -#: crm/fcrm/doctype/crm_service_day/crm_service_day.json +#. Option for the 'Weekly Off' (Select) field in PageType 'CRM Holiday List' +#. Option for the 'Workday' (Select) field in PageType 'CRM Service Day' +#: crm/fcrm/pagetype/crm_holiday_list/crm_holiday_list.json +#: crm/fcrm/pagetype/crm_service_day/crm_service_day.json msgid "Monday" msgstr "يوم الاثنين" @@ -3658,12 +3658,12 @@ msgstr "" msgid "My Open Deals" msgstr "" -#. Label of the title (Data) field in DocType 'CRM Dashboard' -#. Label of the name1 (Data) field in DocType 'CRM Dropdown Item' -#. Label of the brand_name (Data) field in DocType 'FCRM Settings' -#: crm/fcrm/doctype/crm_dashboard/crm_dashboard.json -#: crm/fcrm/doctype/crm_dropdown_item/crm_dropdown_item.json -#: crm/fcrm/doctype/fcrm_settings/fcrm_settings.json +#. Label of the title (Data) field in PageType 'CRM Dashboard' +#. Label of the name1 (Data) field in PageType 'CRM Dropdown Item' +#. Label of the brand_name (Data) field in PageType 'FCRM Settings' +#: crm/fcrm/pagetype/crm_dashboard/crm_dashboard.json +#: crm/fcrm/pagetype/crm_dropdown_item/crm_dropdown_item.json +#: crm/fcrm/pagetype/fcrm_settings/fcrm_settings.json #: frontend/src/components/Settings/AssignmentRules/AssignmentRuleView.vue:51 #: frontend/src/components/Settings/AssignmentRules/AssignmentRuleView.vue:52 #: frontend/src/components/Settings/EmailTemplate/EditEmailTemplate.vue:39 @@ -3680,10 +3680,10 @@ msgstr "اسم" msgid "Name is required" msgstr "" -#. Label of the naming_series (Select) field in DocType 'CRM Deal' -#. Label of the naming_series (Select) field in DocType 'CRM Product' -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_product/crm_product.json +#. Label of the naming_series (Select) field in PageType 'CRM Deal' +#. Label of the naming_series (Select) field in PageType 'CRM Product' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_product/crm_product.json msgid "Naming Series" msgstr "سلسلة التسمية" @@ -3691,15 +3691,15 @@ msgstr "سلسلة التسمية" msgid "Nested conditions" msgstr "" -#. Label of the net_amount (Currency) field in DocType 'CRM Products' -#: crm/fcrm/doctype/crm_products/crm_products.json +#. Label of the net_amount (Currency) field in PageType 'CRM Products' +#: crm/fcrm/pagetype/crm_products/crm_products.json msgid "Net Amount" msgstr "صافي القيمة" -#. Label of the net_total (Currency) field in DocType 'CRM Deal' -#. Label of the net_total (Currency) field in DocType 'CRM Lead' -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_lead/crm_lead.json +#. Label of the net_total (Currency) field in PageType 'CRM Deal' +#. Label of the net_total (Currency) field in PageType 'CRM Lead' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_lead/crm_lead.json msgid "Net Total" msgstr "صافي المجموع" @@ -3814,8 +3814,8 @@ msgstr "" msgid "Next Quarter" msgstr "" -#. Label of the next_step (Data) field in DocType 'CRM Deal' -#: crm/fcrm/doctype/crm_deal/crm_deal.json +#. Label of the next_step (Data) field in PageType 'CRM Deal' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json msgid "Next Step" msgstr "" @@ -3831,8 +3831,8 @@ msgstr "" msgid "No" msgstr "لا" -#. Option for the 'Status' (Select) field in DocType 'CRM Call Log' -#: crm/fcrm/doctype/crm_call_log/crm_call_log.json +#. Option for the 'Status' (Select) field in PageType 'CRM Call Log' +#: crm/fcrm/pagetype/crm_call_log/crm_call_log.json msgid "No Answer" msgstr "" @@ -3930,12 +3930,12 @@ msgstr "" msgid "No {0} Found" msgstr "" -#. Label of the no_of_employees (Select) field in DocType 'CRM Deal' -#. Label of the no_of_employees (Select) field in DocType 'CRM Lead' -#. Label of the no_of_employees (Select) field in DocType 'CRM Organization' -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_lead/crm_lead.json -#: crm/fcrm/doctype/crm_organization/crm_organization.json +#. Label of the no_of_employees (Select) field in PageType 'CRM Deal' +#. Label of the no_of_employees (Select) field in PageType 'CRM Lead' +#. Label of the no_of_employees (Select) field in PageType 'CRM Organization' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_lead/crm_lead.json +#: crm/fcrm/pagetype/crm_organization/crm_organization.json msgid "No. of Employees" msgstr "" @@ -3981,24 +3981,24 @@ msgstr "لا تعجبني" msgid "Not Saved" msgstr "لم يتم الحفظ" -#: crm/fcrm/doctype/crm_deal/crm_deal.py:272 +#: crm/fcrm/pagetype/crm_deal/crm_deal.py:272 msgid "Not allowed to add contact to Deal" msgstr "" -#: crm/fcrm/doctype/crm_lead/crm_lead.py:408 +#: crm/fcrm/pagetype/crm_lead/crm_lead.py:408 msgid "Not allowed to convert Lead to Deal" msgstr "" -#: crm/fcrm/doctype/crm_deal/crm_deal.py:283 +#: crm/fcrm/pagetype/crm_deal/crm_deal.py:283 msgid "Not allowed to remove contact from Deal" msgstr "" -#: crm/fcrm/doctype/crm_deal/crm_deal.py:294 +#: crm/fcrm/pagetype/crm_deal/crm_deal.py:294 msgid "Not allowed to set primary contact for Deal" msgstr "" -#. Label of the note (Link) field in DocType 'CRM Call Log' -#: crm/fcrm/doctype/crm_call_log/crm_call_log.json +#. Label of the note (Link) field in PageType 'CRM Call Log' +#: crm/fcrm/pagetype/crm_call_log/crm_call_log.json #: frontend/src/components/Layouts/AppSidebar.vue:554 msgid "Note" msgstr "ملاحظات" @@ -4017,21 +4017,21 @@ msgstr "" msgid "Notification" msgstr "إعلام" -#. Label of the notification_text (Text) field in DocType 'CRM Notification' -#: crm/fcrm/doctype/crm_notification/crm_notification.json +#. Label of the notification_text (Text) field in PageType 'CRM Notification' +#: crm/fcrm/pagetype/crm_notification/crm_notification.json msgid "Notification Text" msgstr "" -#. Label of the notification_type_doc (Dynamic Link) field in DocType 'CRM +#. Label of the notification_type_pg (Dynamic Link) field in PageType 'CRM #. Notification' -#: crm/fcrm/doctype/crm_notification/crm_notification.json -msgid "Notification Type Doc" +#: crm/fcrm/pagetype/crm_notification/crm_notification.json +msgid "Notification Type Pg" msgstr "" -#. Label of the notification_type_doctype (Link) field in DocType 'CRM +#. Label of the notification_type_pagetype (Link) field in PageType 'CRM #. Notification' -#: crm/fcrm/doctype/crm_notification/crm_notification.json -msgid "Notification Type Doctype" +#: crm/fcrm/pagetype/crm_notification/crm_notification.json +msgid "Notification Type Pagetype" msgstr "" #: frontend/src/components/Layouts/AppSidebar.vue:13 @@ -4041,8 +4041,8 @@ msgstr "" msgid "Notifications" msgstr "إخطارات" -#. Label of the number (Data) field in DocType 'CRM Telephony Phone' -#: crm/fcrm/doctype/crm_telephony_phone/crm_telephony_phone.json +#. Label of the number (Data) field in PageType 'CRM Telephony Phone' +#: crm/fcrm/pagetype/crm_telephony_phone/crm_telephony_phone.json msgid "Number" msgstr "رقم" @@ -4064,18 +4064,18 @@ msgstr "" msgid "Old Condition" msgstr "" -#. Label of the old_parent (Link) field in DocType 'CRM Territory' -#: crm/fcrm/doctype/crm_territory/crm_territory.json +#. Label of the old_parent (Link) field in PageType 'CRM Territory' +#: crm/fcrm/pagetype/crm_territory/crm_territory.json msgid "Old Parent" msgstr "الحساب الأب السابق" -#. Option for the 'Type' (Select) field in DocType 'CRM Deal Status' -#: crm/fcrm/doctype/crm_deal_status/crm_deal_status.json +#. Option for the 'Type' (Select) field in PageType 'CRM Deal Status' +#: crm/fcrm/pagetype/crm_deal_status/crm_deal_status.json msgid "On Hold" msgstr "قيد الانتظار" -#. Option for the 'Type' (Select) field in DocType 'CRM Deal Status' -#: crm/fcrm/doctype/crm_deal_status/crm_deal_status.json +#. Option for the 'Type' (Select) field in PageType 'CRM Deal Status' +#: crm/fcrm/pagetype/crm_deal_status/crm_deal_status.json msgid "Ongoing" msgstr "" @@ -4088,13 +4088,13 @@ msgstr "" msgid "Only image files are allowed" msgstr "" -#: crm/fcrm/doctype/crm_deal/crm_deal.py:60 -#: crm/fcrm/doctype/crm_telephony_agent/crm_telephony_agent.py:23 +#: crm/fcrm/pagetype/crm_deal/crm_deal.py:60 +#: crm/fcrm/pagetype/crm_telephony_agent/crm_telephony_agent.py:23 msgid "Only one {0} can be set as primary." msgstr "يمكن تعيين {0} واحد فقط على أنه أساسي." -#. Option for the 'Type' (Select) field in DocType 'CRM Deal Status' -#: crm/fcrm/doctype/crm_deal_status/crm_deal_status.json +#. Option for the 'Type' (Select) field in PageType 'CRM Deal Status' +#: crm/fcrm/pagetype/crm_deal_status/crm_deal_status.json msgid "Open" msgstr "فتح" @@ -4108,13 +4108,13 @@ msgstr "" msgid "Open Lead" msgstr "" -#: crm/fcrm/doctype/crm_deal/crm_deal.js:6 -#: crm/fcrm/doctype/crm_lead/crm_lead.js:6 +#: crm/fcrm/pagetype/crm_deal/crm_deal.js:6 +#: crm/fcrm/pagetype/crm_lead/crm_lead.js:6 msgid "Open in Portal" msgstr "" -#. Label of the open_in_new_window (Check) field in DocType 'CRM Dropdown Item' -#: crm/fcrm/doctype/crm_dropdown_item/crm_dropdown_item.json +#. Label of the open_in_new_window (Check) field in PageType 'CRM Dropdown Item' +#: crm/fcrm/pagetype/crm_dropdown_item/crm_dropdown_item.json msgid "Open in new window" msgstr "" @@ -4136,17 +4136,17 @@ msgstr "خيارات" msgid "Or create leads manually" msgstr "" -#. Label of the order_by_tab (Tab Break) field in DocType 'CRM View Settings' -#. Label of the order_by (Code) field in DocType 'CRM View Settings' -#: crm/fcrm/doctype/crm_view_settings/crm_view_settings.json +#. Label of the order_by_tab (Tab Break) field in PageType 'CRM View Settings' +#. Label of the order_by (Code) field in PageType 'CRM View Settings' +#: crm/fcrm/pagetype/crm_view_settings/crm_view_settings.json msgid "Order By" msgstr "ترتيب حسب" -#. Label of the organization (Link) field in DocType 'CRM Deal' -#. Label of the organization_tab (Tab Break) field in DocType 'CRM Deal' -#. Label of the organization (Data) field in DocType 'CRM Lead' -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_lead/crm_lead.json +#. Label of the organization (Link) field in PageType 'CRM Deal' +#. Label of the organization_tab (Tab Break) field in PageType 'CRM Deal' +#. Label of the organization (Data) field in PageType 'CRM Lead' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_lead/crm_lead.json #: frontend/src/components/Layouts/AppSidebar.vue:553 #: frontend/src/components/Modals/ConvertToDealModal.vue:25 #: frontend/src/pages/Contact.vue:494 frontend/src/pages/MobileContact.vue:502 @@ -4158,22 +4158,22 @@ msgstr "ترتيب حسب" msgid "Organization" msgstr "منظمة" -#. Label of the organization_details_section (Section Break) field in DocType +#. Label of the organization_details_section (Section Break) field in PageType #. 'CRM Deal' -#: crm/fcrm/doctype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_deal/crm_deal.json msgid "Organization Details" msgstr "" -#. Label of the organization_logo (Attach Image) field in DocType 'CRM +#. Label of the organization_logo (Attach Image) field in PageType 'CRM #. Organization' -#: crm/fcrm/doctype/crm_organization/crm_organization.json +#: crm/fcrm/pagetype/crm_organization/crm_organization.json msgid "Organization Logo" msgstr "" -#. Label of the organization_name (Data) field in DocType 'CRM Deal' -#. Label of the organization_name (Data) field in DocType 'CRM Organization' -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_organization/crm_organization.json +#. Label of the organization_name (Data) field in PageType 'CRM Deal' +#. Label of the organization_name (Data) field in PageType 'CRM Organization' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_organization/crm_organization.json msgid "Organization Name" msgstr "اسم المنظمة" @@ -4181,8 +4181,8 @@ msgstr "اسم المنظمة" msgid "Organization logo" msgstr "" -#. Label of a shortcut in the Frappe CRM Workspace -#: crm/fcrm/workspace/frappe_crm/frappe_crm.json +#. Label of a shortcut in the Jingrow CRM Workspace +#: crm/fcrm/workspace/jingrow_crm/jingrow_crm.json #: frontend/src/pages/MobileOrganization.vue:205 #: frontend/src/pages/Organization.vue:234 msgid "Organizations" @@ -4196,8 +4196,8 @@ msgstr "" msgid "Other features" msgstr "" -#. Label of the organization_tab (Tab Break) field in DocType 'CRM Lead' -#: crm/fcrm/doctype/crm_lead/crm_lead.json +#. Label of the organization_tab (Tab Break) field in PageType 'CRM Lead' +#: crm/fcrm/pagetype/crm_lead/crm_lead.json msgid "Others" msgstr "بدلات أخرى" @@ -4205,13 +4205,13 @@ msgstr "بدلات أخرى" msgid "Outbound Call" msgstr "" -#. Option for the 'Type' (Select) field in DocType 'CRM Call Log' -#: crm/fcrm/doctype/crm_call_log/crm_call_log.json +#. Option for the 'Type' (Select) field in PageType 'CRM Call Log' +#: crm/fcrm/pagetype/crm_call_log/crm_call_log.json msgid "Outgoing" msgstr "الصادر" -#. Label of the log_owner (Link) field in DocType 'CRM Status Change Log' -#: crm/fcrm/doctype/crm_status_change_log/crm_status_change_log.json +#. Label of the log_owner (Link) field in PageType 'CRM Status Change Log' +#: crm/fcrm/pagetype/crm_status_change_log/crm_status_change_log.json msgid "Owner" msgstr "مالك" @@ -4219,8 +4219,8 @@ msgstr "مالك" msgid "Owner: {0}" msgstr "" -#. Label of the parent_crm_territory (Link) field in DocType 'CRM Territory' -#: crm/fcrm/doctype/crm_territory/crm_territory.json +#. Label of the parent_crm_territory (Link) field in PageType 'CRM Territory' +#: crm/fcrm/pagetype/crm_territory/crm_territory.json msgid "Parent CRM Territory" msgstr "" @@ -4251,8 +4251,8 @@ msgstr "" msgid "Payment Reminder from Frappé - (#{{ name }})" msgstr "" -#. Option for the 'Status' (Select) field in DocType 'CRM Invitation' -#: crm/fcrm/doctype/crm_invitation/crm_invitation.json +#. Option for the 'Status' (Select) field in PageType 'CRM Invitation' +#: crm/fcrm/pagetype/crm_invitation/crm_invitation.json msgid "Pending" msgstr "معلق" @@ -4264,10 +4264,10 @@ msgstr "" msgid "Period" msgstr "فترة" -#. Label of the person_section (Section Break) field in DocType 'CRM Deal' -#. Label of the person_tab (Tab Break) field in DocType 'CRM Lead' -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_lead/crm_lead.json +#. Label of the person_section (Section Break) field in PageType 'CRM Deal' +#. Label of the person_tab (Tab Break) field in PageType 'CRM Lead' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_lead/crm_lead.json msgid "Person" msgstr "" @@ -4275,19 +4275,19 @@ msgstr "" msgid "Personal Settings" msgstr "" -#. Label of the phone (Data) field in DocType 'CRM Contacts' -#. Label of the phone (Data) field in DocType 'CRM Lead' -#. Option for the 'Device' (Select) field in DocType 'CRM Telephony Agent' -#: crm/fcrm/doctype/crm_contacts/crm_contacts.json -#: crm/fcrm/doctype/crm_lead/crm_lead.json -#: crm/fcrm/doctype/crm_telephony_agent/crm_telephony_agent.json +#. Label of the phone (Data) field in PageType 'CRM Contacts' +#. Label of the phone (Data) field in PageType 'CRM Lead' +#. Option for the 'Device' (Select) field in PageType 'CRM Telephony Agent' +#: crm/fcrm/pagetype/crm_contacts/crm_contacts.json +#: crm/fcrm/pagetype/crm_lead/crm_lead.json +#: crm/fcrm/pagetype/crm_telephony_agent/crm_telephony_agent.json #: frontend/src/pages/MobileOrganization.vue:495 #: frontend/src/pages/Organization.vue:516 msgid "Phone" msgstr "هاتف" -#. Label of the phone_nos (Table) field in DocType 'CRM Telephony Agent' -#: crm/fcrm/doctype/crm_telephony_agent/crm_telephony_agent.json +#. Label of the phone_nos (Table) field in PageType 'CRM Telephony Agent' +#: crm/fcrm/pagetype/crm_telephony_agent/crm_telephony_agent.json msgid "Phone Numbers" msgstr "" @@ -4295,8 +4295,8 @@ msgstr "" msgid "Pin View" msgstr "" -#. Label of the pinned (Check) field in DocType 'CRM View Settings' -#: crm/fcrm/doctype/crm_view_settings/crm_view_settings.json +#. Label of the pinned (Check) field in PageType 'CRM View Settings' +#: crm/fcrm/pagetype/crm_view_settings/crm_view_settings.json msgid "Pinned" msgstr "" @@ -4346,7 +4346,7 @@ msgstr "" msgid "Please select an existing organization" msgstr "" -#: crm/fcrm/doctype/helpdesk_crm_settings/helpdesk_crm_settings.py:126 +#: crm/fcrm/pagetype/helpdesk_crm_settings/helpdesk_crm_settings.py:126 msgid "Please set Email Address" msgstr "يرجى وضع عنوان البريد الإلكتروني" @@ -4354,18 +4354,18 @@ msgstr "يرجى وضع عنوان البريد الإلكتروني" msgid "Please setup Exotel intergration" msgstr "" -#: crm/fcrm/doctype/crm_deal/crm_deal.py:181 +#: crm/fcrm/pagetype/crm_deal/crm_deal.py:181 msgid "Please specify a reason for losing the deal." msgstr "" -#: crm/fcrm/doctype/crm_deal/crm_deal.py:183 +#: crm/fcrm/pagetype/crm_deal/crm_deal.py:183 msgid "Please specify the reason for losing the deal." msgstr "" -#. Label of the position (Int) field in DocType 'CRM Deal Status' -#. Label of the position (Int) field in DocType 'CRM Lead Status' -#: crm/fcrm/doctype/crm_deal_status/crm_deal_status.json -#: crm/fcrm/doctype/crm_lead_status/crm_lead_status.json +#. Label of the position (Int) field in PageType 'CRM Deal Status' +#. Label of the position (Int) field in PageType 'CRM Lead Status' +#: crm/fcrm/pagetype/crm_deal_status/crm_deal_status.json +#: crm/fcrm/pagetype/crm_lead_status/crm_lead_status.json msgid "Position" msgstr "موضع" @@ -4373,18 +4373,18 @@ msgstr "موضع" msgid "Primary" msgstr "أساسي" -#. Label of the email (Data) field in DocType 'CRM Deal' -#: crm/fcrm/doctype/crm_deal/crm_deal.json +#. Label of the email (Data) field in PageType 'CRM Deal' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json msgid "Primary Email" msgstr "" -#. Label of the mobile_no (Data) field in DocType 'CRM Deal' -#: crm/fcrm/doctype/crm_deal/crm_deal.json +#. Label of the mobile_no (Data) field in PageType 'CRM Deal' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json msgid "Primary Mobile No" msgstr "" -#. Label of the phone (Data) field in DocType 'CRM Deal' -#: crm/fcrm/doctype/crm_deal/crm_deal.json +#. Label of the phone (Data) field in PageType 'CRM Deal' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json msgid "Primary Phone" msgstr "" @@ -4392,57 +4392,57 @@ msgstr "" msgid "Primary contact set" msgstr "" -#. Label of the priorities (Table) field in DocType 'CRM Service Level +#. Label of the priorities (Table) field in PageType 'CRM Service Level #. Agreement' -#: crm/fcrm/doctype/crm_service_level_agreement/crm_service_level_agreement.json +#: crm/fcrm/pagetype/crm_service_level_agreement/crm_service_level_agreement.json msgid "Priorities" msgstr "أولويات" -#. Label of the priority (Link) field in DocType 'CRM Service Level Priority' -#. Label of the priority (Select) field in DocType 'CRM Task' -#: crm/fcrm/doctype/crm_service_level_priority/crm_service_level_priority.json -#: crm/fcrm/doctype/crm_task/crm_task.json +#. Label of the priority (Link) field in PageType 'CRM Service Level Priority' +#. Label of the priority (Select) field in PageType 'CRM Task' +#: crm/fcrm/pagetype/crm_service_level_priority/crm_service_level_priority.json +#: crm/fcrm/pagetype/crm_task/crm_task.json #: frontend/src/components/Settings/AssignmentRules/AssignmentRuleView.vue:64 #: frontend/src/components/Settings/AssignmentRules/AssignmentRulesList.vue:20 msgid "Priority" msgstr "أفضلية" -#. Label of the private (Check) field in DocType 'CRM Dashboard' -#: crm/fcrm/doctype/crm_dashboard/crm_dashboard.json +#. Label of the private (Check) field in PageType 'CRM Dashboard' +#: crm/fcrm/pagetype/crm_dashboard/crm_dashboard.json #: frontend/src/components/FilesUploader/FilesUploaderArea.vue:89 msgid "Private" msgstr "خاص" -#. Label of the probability (Percent) field in DocType 'CRM Deal' -#. Label of the probability (Percent) field in DocType 'CRM Deal Status' -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_deal_status/crm_deal_status.json +#. Label of the probability (Percent) field in PageType 'CRM Deal' +#. Label of the probability (Percent) field in PageType 'CRM Deal Status' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_deal_status/crm_deal_status.json msgid "Probability" msgstr "" -#. Label of the product_code (Link) field in DocType 'CRM Products' -#: crm/fcrm/doctype/crm_products/crm_products.json +#. Label of the product_code (Link) field in PageType 'CRM Products' +#: crm/fcrm/pagetype/crm_products/crm_products.json msgid "Product" msgstr "المنتج" -#. Label of the product_code (Data) field in DocType 'CRM Product' -#: crm/fcrm/doctype/crm_product/crm_product.json +#. Label of the product_code (Data) field in PageType 'CRM Product' +#: crm/fcrm/pagetype/crm_product/crm_product.json msgid "Product Code" msgstr "" -#. Label of the product_name (Data) field in DocType 'CRM Product' -#. Label of the product_name (Data) field in DocType 'CRM Products' -#: crm/fcrm/doctype/crm_product/crm_product.json -#: crm/fcrm/doctype/crm_products/crm_products.json +#. Label of the product_name (Data) field in PageType 'CRM Product' +#. Label of the product_name (Data) field in PageType 'CRM Products' +#: crm/fcrm/pagetype/crm_product/crm_product.json +#: crm/fcrm/pagetype/crm_products/crm_products.json msgid "Product Name" msgstr "" -#. Label of the products_tab (Tab Break) field in DocType 'CRM Deal' -#. Label of the products (Table) field in DocType 'CRM Deal' -#. Label of the products_tab (Tab Break) field in DocType 'CRM Lead' -#. Label of the products (Table) field in DocType 'CRM Lead' -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_lead/crm_lead.json +#. Label of the products_tab (Tab Break) field in PageType 'CRM Deal' +#. Label of the products (Table) field in PageType 'CRM Deal' +#. Label of the products_tab (Tab Break) field in PageType 'CRM Lead' +#. Label of the products (Table) field in PageType 'CRM Lead' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_lead/crm_lead.json msgid "Products" msgstr "المنتجات" @@ -4459,8 +4459,8 @@ msgstr "" msgid "Projected vs actual revenue based on deal probability" msgstr "" -#. Label of the public (Check) field in DocType 'CRM View Settings' -#: crm/fcrm/doctype/crm_view_settings/crm_view_settings.json +#. Label of the public (Check) field in PageType 'CRM View Settings' +#: crm/fcrm/pagetype/crm_view_settings/crm_view_settings.json msgid "Public" msgstr "جمهور" @@ -4472,23 +4472,23 @@ msgstr "" msgid "Public view" msgstr "" -#. Label of the qty (Float) field in DocType 'CRM Products' -#: crm/fcrm/doctype/crm_products/crm_products.json +#. Label of the qty (Float) field in PageType 'CRM Products' +#: crm/fcrm/pagetype/crm_products/crm_products.json msgid "Quantity" msgstr "كمية" -#. Option for the 'Status' (Select) field in DocType 'CRM Call Log' -#: crm/fcrm/doctype/crm_call_log/crm_call_log.json +#. Option for the 'Status' (Select) field in PageType 'CRM Call Log' +#: crm/fcrm/pagetype/crm_call_log/crm_call_log.json msgid "Queued" msgstr "قائمة الانتظار" -#. Option for the 'Type' (Select) field in DocType 'CRM Fields Layout' -#: crm/fcrm/doctype/crm_fields_layout/crm_fields_layout.json +#. Option for the 'Type' (Select) field in PageType 'CRM Fields Layout' +#: crm/fcrm/pagetype/crm_fields_layout/crm_fields_layout.json msgid "Quick Entry" msgstr "إدخال سريع" -#. Option for the 'Type' (Select) field in DocType 'CRM Global Settings' -#: crm/fcrm/doctype/crm_global_settings/crm_global_settings.json +#. Option for the 'Type' (Select) field in PageType 'CRM Global Settings' +#: crm/fcrm/pagetype/crm_global_settings/crm_global_settings.json msgid "Quick Filters" msgstr "" @@ -4500,13 +4500,13 @@ msgstr "" msgid "Quick entry layout" msgstr "" -#. Label of the rate (Currency) field in DocType 'CRM Products' -#: crm/fcrm/doctype/crm_products/crm_products.json +#. Label of the rate (Currency) field in PageType 'CRM Products' +#: crm/fcrm/pagetype/crm_products/crm_products.json msgid "Rate" msgstr "سعر السلعة المفردة" -#. Label of the read (Check) field in DocType 'CRM Notification' -#: crm/fcrm/doctype/crm_notification/crm_notification.json +#. Label of the read (Check) field in PageType 'CRM Notification' +#: crm/fcrm/pagetype/crm_notification/crm_notification.json msgid "Read" msgstr "قرأ" @@ -4514,48 +4514,48 @@ msgstr "قرأ" msgid "Reason" msgstr "سبب" -#. Label of the record_calls (Check) field in DocType 'CRM Twilio Settings' -#: crm/fcrm/doctype/crm_twilio_settings/crm_twilio_settings.json +#. Label of the record_calls (Check) field in PageType 'CRM Twilio Settings' +#: crm/fcrm/pagetype/crm_twilio_settings/crm_twilio_settings.json msgid "Record Calls" msgstr "" -#. Label of the record_call (Check) field in DocType 'CRM Exotel Settings' -#: crm/fcrm/doctype/crm_exotel_settings/crm_exotel_settings.json +#. Label of the record_call (Check) field in PageType 'CRM Exotel Settings' +#: crm/fcrm/pagetype/crm_exotel_settings/crm_exotel_settings.json msgid "Record Outgoing Calls" msgstr "" -#. Label of the recording_url (Data) field in DocType 'CRM Call Log' -#: crm/fcrm/doctype/crm_call_log/crm_call_log.json +#. Label of the recording_url (Data) field in PageType 'CRM Call Log' +#: crm/fcrm/pagetype/crm_call_log/crm_call_log.json msgid "Recording URL" msgstr "تسجيل URL" -#. Label of the reference_name (Dynamic Link) field in DocType 'CRM +#. Label of the reference_name (Dynamic Link) field in PageType 'CRM #. Notification' -#. Label of the reference_docname (Dynamic Link) field in DocType 'CRM Task' -#. Label of the reference_docname (Dynamic Link) field in DocType 'FCRM Note' -#: crm/fcrm/doctype/crm_notification/crm_notification.json -#: crm/fcrm/doctype/crm_task/crm_task.json -#: crm/fcrm/doctype/fcrm_note/fcrm_note.json -msgid "Reference Doc" +#. Label of the reference_docname (Dynamic Link) field in PageType 'CRM Task' +#. Label of the reference_docname (Dynamic Link) field in PageType 'FCRM Note' +#: crm/fcrm/pagetype/crm_notification/crm_notification.json +#: crm/fcrm/pagetype/crm_task/crm_task.json +#: crm/fcrm/pagetype/fcrm_note/fcrm_note.json +msgid "Reference Pg" msgstr "" -#. Label of the reference_doctype (Link) field in DocType 'CRM Notification' -#: crm/fcrm/doctype/crm_notification/crm_notification.json -msgid "Reference Doctype" -msgstr "مرجع Doctype" +#. Label of the reference_pagetype (Link) field in PageType 'CRM Notification' +#: crm/fcrm/pagetype/crm_notification/crm_notification.json +msgid "Reference Pagetype" +msgstr "مرجع Pagetype" -#. Label of the reference_doctype (Link) field in DocType 'CRM Call Log' -#. Label of the reference_doctype (Link) field in DocType 'CRM Task' -#. Label of the reference_doctype (Link) field in DocType 'FCRM Note' -#: crm/fcrm/doctype/crm_call_log/crm_call_log.json -#: crm/fcrm/doctype/crm_task/crm_task.json -#: crm/fcrm/doctype/fcrm_note/fcrm_note.json +#. Label of the reference_pagetype (Link) field in PageType 'CRM Call Log' +#. Label of the reference_pagetype (Link) field in PageType 'CRM Task' +#. Label of the reference_pagetype (Link) field in PageType 'FCRM Note' +#: crm/fcrm/pagetype/crm_call_log/crm_call_log.json +#: crm/fcrm/pagetype/crm_task/crm_task.json +#: crm/fcrm/pagetype/fcrm_note/fcrm_note.json msgid "Reference Document Type" msgstr "مرجع نوع الوثيقة" -#. Label of the reference_docname (Dynamic Link) field in DocType 'CRM Call +#. Label of the reference_docname (Dynamic Link) field in PageType 'CRM Call #. Log' -#: crm/fcrm/doctype/crm_call_log/crm_call_log.json +#: crm/fcrm/pagetype/crm_call_log/crm_call_log.json msgid "Reference Name" msgstr "اسم الإشارة" @@ -4625,8 +4625,8 @@ msgstr "الرد على الجميع" msgid "Report an Issue" msgstr "" -#. Option for the 'Type' (Select) field in DocType 'CRM Fields Layout' -#: crm/fcrm/doctype/crm_fields_layout/crm_fields_layout.json +#. Option for the 'Type' (Select) field in PageType 'CRM Fields Layout' +#: crm/fcrm/pagetype/crm_fields_layout/crm_fields_layout.json msgid "Required Fields" msgstr "" @@ -4642,7 +4642,7 @@ msgstr "إعادة تعيين" msgid "Reset Changes" msgstr "" -#: crm/fcrm/doctype/erpnext_crm_settings/erpnext_crm_settings.js:7 +#: crm/fcrm/pagetype/erpnext_crm_settings/erpnext_crm_settings.js:7 msgid "Reset ERPNext Form Script" msgstr "" @@ -4654,35 +4654,35 @@ msgstr "" msgid "Reset to default" msgstr "" -#. Label of the response_by (Datetime) field in DocType 'CRM Deal' -#. Label of the response_by (Datetime) field in DocType 'CRM Lead' -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_lead/crm_lead.json +#. Label of the response_by (Datetime) field in PageType 'CRM Deal' +#. Label of the response_by (Datetime) field in PageType 'CRM Lead' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_lead/crm_lead.json msgid "Response By" msgstr "الرد بواسطة" -#. Label of the response_details_section (Section Break) field in DocType 'CRM +#. Label of the response_details_section (Section Break) field in PageType 'CRM #. Deal' -#. Label of the response_details_section (Section Break) field in DocType 'CRM +#. Label of the response_details_section (Section Break) field in PageType 'CRM #. Lead' -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_lead/crm_lead.json +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_lead/crm_lead.json msgid "Response Details" msgstr "تفاصيل الرد" -#. Label of the section_break_ufaf (Section Break) field in DocType 'CRM +#. Label of the section_break_ufaf (Section Break) field in PageType 'CRM #. Service Level Agreement' -#: crm/fcrm/doctype/crm_service_level_agreement/crm_service_level_agreement.json +#: crm/fcrm/pagetype/crm_service_level_agreement/crm_service_level_agreement.json msgid "Response and Follow Up" msgstr "" -#: crm/fcrm/doctype/fcrm_settings/fcrm_settings.js:14 +#: crm/fcrm/pagetype/fcrm_settings/fcrm_settings.js:14 msgid "Restore" msgstr "استعادة" -#. Label of the restore_defaults (Button) field in DocType 'FCRM Settings' -#: crm/fcrm/doctype/fcrm_settings/fcrm_settings.js:13 -#: crm/fcrm/doctype/fcrm_settings/fcrm_settings.json +#. Label of the restore_defaults (Button) field in PageType 'FCRM Settings' +#: crm/fcrm/pagetype/fcrm_settings/fcrm_settings.js:13 +#: crm/fcrm/pagetype/fcrm_settings/fcrm_settings.json msgid "Restore Defaults" msgstr "" @@ -4699,13 +4699,13 @@ msgstr "" msgid "Rich Text" msgstr "نص منسق" -#. Label of the rgt (Int) field in DocType 'CRM Territory' -#: crm/fcrm/doctype/crm_territory/crm_territory.json +#. Label of the rgt (Int) field in PageType 'CRM Territory' +#: crm/fcrm/pagetype/crm_territory/crm_territory.json msgid "Right" msgstr "حق" -#. Option for the 'Status' (Select) field in DocType 'CRM Call Log' -#: crm/fcrm/doctype/crm_call_log/crm_call_log.json +#. Option for the 'Status' (Select) field in PageType 'CRM Call Log' +#: crm/fcrm/pagetype/crm_call_log/crm_call_log.json msgid "Ringing" msgstr "رنين" @@ -4714,55 +4714,55 @@ msgstr "رنين" msgid "Ringing..." msgstr "" -#. Label of the role (Select) field in DocType 'CRM Invitation' -#: crm/fcrm/doctype/crm_invitation/crm_invitation.json +#. Label of the role (Select) field in PageType 'CRM Invitation' +#: crm/fcrm/pagetype/crm_invitation/crm_invitation.json #: frontend/src/components/Modals/AddExistingUserModal.vue:46 msgid "Role" msgstr "صلاحية" -#. Option for the 'Type' (Select) field in DocType 'CRM Dropdown Item' -#. Label of the route (Data) field in DocType 'CRM Dropdown Item' -#: crm/fcrm/doctype/crm_dropdown_item/crm_dropdown_item.json +#. Option for the 'Type' (Select) field in PageType 'CRM Dropdown Item' +#. Label of the route (Data) field in PageType 'CRM Dropdown Item' +#: crm/fcrm/pagetype/crm_dropdown_item/crm_dropdown_item.json msgid "Route" msgstr "مسار" -#. Label of the route_name (Data) field in DocType 'CRM View Settings' -#: crm/fcrm/doctype/crm_view_settings/crm_view_settings.json +#. Label of the route_name (Data) field in PageType 'CRM View Settings' +#: crm/fcrm/pagetype/crm_view_settings/crm_view_settings.json msgid "Route Name" msgstr "" -#. Label of the rows (Code) field in DocType 'CRM View Settings' -#: crm/fcrm/doctype/crm_view_settings/crm_view_settings.json +#. Label of the rows (Code) field in PageType 'CRM View Settings' +#: crm/fcrm/pagetype/crm_view_settings/crm_view_settings.json msgid "Rows" msgstr "" -#. Label of the sla_tab (Tab Break) field in DocType 'CRM Deal' -#. Label of the sla (Link) field in DocType 'CRM Deal' -#. Label of the sla_tab (Tab Break) field in DocType 'CRM Lead' -#. Label of the sla (Link) field in DocType 'CRM Lead' -#. Label of a shortcut in the Frappe CRM Workspace -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_lead/crm_lead.json -#: crm/fcrm/workspace/frappe_crm/frappe_crm.json +#. Label of the sla_tab (Tab Break) field in PageType 'CRM Deal' +#. Label of the sla (Link) field in PageType 'CRM Deal' +#. Label of the sla_tab (Tab Break) field in PageType 'CRM Lead' +#. Label of the sla (Link) field in PageType 'CRM Lead' +#. Label of a shortcut in the Jingrow CRM Workspace +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_lead/crm_lead.json +#: crm/fcrm/workspace/jingrow_crm/jingrow_crm.json msgid "SLA" msgstr "" -#. Label of the sla_creation (Datetime) field in DocType 'CRM Deal' -#. Label of the sla_creation (Datetime) field in DocType 'CRM Lead' -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_lead/crm_lead.json +#. Label of the sla_creation (Datetime) field in PageType 'CRM Deal' +#. Label of the sla_creation (Datetime) field in PageType 'CRM Lead' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_lead/crm_lead.json msgid "SLA Creation" msgstr "" -#. Label of the sla_name (Data) field in DocType 'CRM Service Level Agreement' -#: crm/fcrm/doctype/crm_service_level_agreement/crm_service_level_agreement.json +#. Label of the sla_name (Data) field in PageType 'CRM Service Level Agreement' +#: crm/fcrm/pagetype/crm_service_level_agreement/crm_service_level_agreement.json msgid "SLA Name" msgstr "" -#. Label of the sla_status (Select) field in DocType 'CRM Deal' -#. Label of the sla_status (Select) field in DocType 'CRM Lead' -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_lead/crm_lead.json +#. Label of the sla_status (Select) field in PageType 'CRM Deal' +#. Label of the sla_status (Select) field in PageType 'CRM Lead' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_lead/crm_lead.json msgid "SLA Status" msgstr "" @@ -4771,57 +4771,57 @@ msgid "SUBJECT" msgstr "" #. Name of a role -#. Option for the 'Role' (Select) field in DocType 'CRM Invitation' -#: crm/fcrm/doctype/crm_call_log/crm_call_log.json -#: crm/fcrm/doctype/crm_communication_status/crm_communication_status.json -#: crm/fcrm/doctype/crm_dashboard/crm_dashboard.json -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_deal_status/crm_deal_status.json -#: crm/fcrm/doctype/crm_exotel_settings/crm_exotel_settings.json -#: crm/fcrm/doctype/crm_form_script/crm_form_script.json -#: crm/fcrm/doctype/crm_global_settings/crm_global_settings.json -#: crm/fcrm/doctype/crm_holiday_list/crm_holiday_list.json -#: crm/fcrm/doctype/crm_industry/crm_industry.json -#: crm/fcrm/doctype/crm_invitation/crm_invitation.json -#: crm/fcrm/doctype/crm_lead/crm_lead.json -#: crm/fcrm/doctype/crm_lead_source/crm_lead_source.json -#: crm/fcrm/doctype/crm_lead_status/crm_lead_status.json -#: crm/fcrm/doctype/crm_lost_reason/crm_lost_reason.json -#: crm/fcrm/doctype/crm_notification/crm_notification.json -#: crm/fcrm/doctype/crm_organization/crm_organization.json -#: crm/fcrm/doctype/crm_service_level_agreement/crm_service_level_agreement.json -#: crm/fcrm/doctype/crm_task/crm_task.json -#: crm/fcrm/doctype/crm_territory/crm_territory.json -#: crm/fcrm/doctype/crm_twilio_settings/crm_twilio_settings.json -#: crm/fcrm/doctype/crm_view_settings/crm_view_settings.json -#: crm/fcrm/doctype/erpnext_crm_settings/erpnext_crm_settings.json -#: crm/fcrm/doctype/fcrm_note/fcrm_note.json -#: crm/fcrm/doctype/fcrm_settings/fcrm_settings.json -#: crm/fcrm/doctype/helpdesk_crm_settings/helpdesk_crm_settings.json +#. Option for the 'Role' (Select) field in PageType 'CRM Invitation' +#: crm/fcrm/pagetype/crm_call_log/crm_call_log.json +#: crm/fcrm/pagetype/crm_communication_status/crm_communication_status.json +#: crm/fcrm/pagetype/crm_dashboard/crm_dashboard.json +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_deal_status/crm_deal_status.json +#: crm/fcrm/pagetype/crm_exotel_settings/crm_exotel_settings.json +#: crm/fcrm/pagetype/crm_form_script/crm_form_script.json +#: crm/fcrm/pagetype/crm_global_settings/crm_global_settings.json +#: crm/fcrm/pagetype/crm_holiday_list/crm_holiday_list.json +#: crm/fcrm/pagetype/crm_industry/crm_industry.json +#: crm/fcrm/pagetype/crm_invitation/crm_invitation.json +#: crm/fcrm/pagetype/crm_lead/crm_lead.json +#: crm/fcrm/pagetype/crm_lead_source/crm_lead_source.json +#: crm/fcrm/pagetype/crm_lead_status/crm_lead_status.json +#: crm/fcrm/pagetype/crm_lost_reason/crm_lost_reason.json +#: crm/fcrm/pagetype/crm_notification/crm_notification.json +#: crm/fcrm/pagetype/crm_organization/crm_organization.json +#: crm/fcrm/pagetype/crm_service_level_agreement/crm_service_level_agreement.json +#: crm/fcrm/pagetype/crm_task/crm_task.json +#: crm/fcrm/pagetype/crm_territory/crm_territory.json +#: crm/fcrm/pagetype/crm_twilio_settings/crm_twilio_settings.json +#: crm/fcrm/pagetype/crm_view_settings/crm_view_settings.json +#: crm/fcrm/pagetype/erpnext_crm_settings/erpnext_crm_settings.json +#: crm/fcrm/pagetype/fcrm_note/fcrm_note.json +#: crm/fcrm/pagetype/fcrm_settings/fcrm_settings.json +#: crm/fcrm/pagetype/helpdesk_crm_settings/helpdesk_crm_settings.json msgid "Sales Manager" msgstr "مدير المبيعات" #. Name of a role -#. Option for the 'Role' (Select) field in DocType 'CRM Invitation' -#: crm/fcrm/doctype/crm_call_log/crm_call_log.json -#: crm/fcrm/doctype/crm_communication_status/crm_communication_status.json -#: crm/fcrm/doctype/crm_dashboard/crm_dashboard.json -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_deal_status/crm_deal_status.json -#: crm/fcrm/doctype/crm_global_settings/crm_global_settings.json -#: crm/fcrm/doctype/crm_holiday_list/crm_holiday_list.json -#: crm/fcrm/doctype/crm_industry/crm_industry.json -#: crm/fcrm/doctype/crm_invitation/crm_invitation.json -#: crm/fcrm/doctype/crm_lead/crm_lead.json -#: crm/fcrm/doctype/crm_lead_source/crm_lead_source.json -#: crm/fcrm/doctype/crm_lead_status/crm_lead_status.json -#: crm/fcrm/doctype/crm_lost_reason/crm_lost_reason.json -#: crm/fcrm/doctype/crm_notification/crm_notification.json -#: crm/fcrm/doctype/crm_organization/crm_organization.json -#: crm/fcrm/doctype/crm_task/crm_task.json -#: crm/fcrm/doctype/crm_territory/crm_territory.json -#: crm/fcrm/doctype/crm_view_settings/crm_view_settings.json -#: crm/fcrm/doctype/fcrm_note/fcrm_note.json +#. Option for the 'Role' (Select) field in PageType 'CRM Invitation' +#: crm/fcrm/pagetype/crm_call_log/crm_call_log.json +#: crm/fcrm/pagetype/crm_communication_status/crm_communication_status.json +#: crm/fcrm/pagetype/crm_dashboard/crm_dashboard.json +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_deal_status/crm_deal_status.json +#: crm/fcrm/pagetype/crm_global_settings/crm_global_settings.json +#: crm/fcrm/pagetype/crm_holiday_list/crm_holiday_list.json +#: crm/fcrm/pagetype/crm_industry/crm_industry.json +#: crm/fcrm/pagetype/crm_invitation/crm_invitation.json +#: crm/fcrm/pagetype/crm_lead/crm_lead.json +#: crm/fcrm/pagetype/crm_lead_source/crm_lead_source.json +#: crm/fcrm/pagetype/crm_lead_status/crm_lead_status.json +#: crm/fcrm/pagetype/crm_lost_reason/crm_lost_reason.json +#: crm/fcrm/pagetype/crm_notification/crm_notification.json +#: crm/fcrm/pagetype/crm_organization/crm_organization.json +#: crm/fcrm/pagetype/crm_task/crm_task.json +#: crm/fcrm/pagetype/crm_territory/crm_territory.json +#: crm/fcrm/pagetype/crm_view_settings/crm_view_settings.json +#: crm/fcrm/pagetype/fcrm_note/fcrm_note.json #: frontend/src/components/Modals/AddExistingUserModal.vue:92 #: frontend/src/components/Settings/InviteUserPage.vue:156 #: frontend/src/components/Settings/InviteUserPage.vue:163 @@ -4845,17 +4845,17 @@ msgstr "" msgid "Salesperson" msgstr "" -#. Label of the salutation (Link) field in DocType 'CRM Deal' -#. Label of the salutation (Link) field in DocType 'CRM Lead' -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_lead/crm_lead.json +#. Label of the salutation (Link) field in PageType 'CRM Deal' +#. Label of the salutation (Link) field in PageType 'CRM Lead' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_lead/crm_lead.json msgid "Salutation" msgstr "اللقب" -#. Option for the 'Weekly Off' (Select) field in DocType 'CRM Holiday List' -#. Option for the 'Workday' (Select) field in DocType 'CRM Service Day' -#: crm/fcrm/doctype/crm_holiday_list/crm_holiday_list.json -#: crm/fcrm/doctype/crm_service_day/crm_service_day.json +#. Option for the 'Weekly Off' (Select) field in PageType 'CRM Holiday List' +#. Option for the 'Workday' (Select) field in PageType 'CRM Service Day' +#: crm/fcrm/pagetype/crm_holiday_list/crm_holiday_list.json +#: crm/fcrm/pagetype/crm_service_day/crm_service_day.json msgid "Saturday" msgstr "السبت" @@ -4904,8 +4904,8 @@ msgstr "" msgid "Schedule an event" msgstr "" -#. Label of the script (Code) field in DocType 'CRM Form Script' -#: crm/fcrm/doctype/crm_form_script/crm_form_script.json +#. Label of the script (Code) field in PageType 'CRM Form Script' +#: crm/fcrm/pagetype/crm_form_script/crm_form_script.json msgid "Script" msgstr "سيناريو" @@ -4973,18 +4973,18 @@ msgstr "" msgid "Send invites to" msgstr "" -#. Option for the 'Type' (Select) field in DocType 'CRM Dropdown Item' -#: crm/fcrm/doctype/crm_dropdown_item/crm_dropdown_item.json +#. Option for the 'Type' (Select) field in PageType 'CRM Dropdown Item' +#: crm/fcrm/pagetype/crm_dropdown_item/crm_dropdown_item.json msgid "Separator" msgstr "فاصل" -#. Label of the naming_series (Select) field in DocType 'CRM Lead' -#: crm/fcrm/doctype/crm_lead/crm_lead.json +#. Label of the naming_series (Select) field in PageType 'CRM Lead' +#: crm/fcrm/pagetype/crm_lead/crm_lead.json msgid "Series" msgstr "سلسلة التسمية" -#. Label of the service_provider (Select) field in DocType 'FCRM Settings' -#: crm/fcrm/doctype/fcrm_settings/fcrm_settings.json +#. Label of the service_provider (Select) field in PageType 'FCRM Settings' +#: crm/fcrm/pagetype/fcrm_settings/fcrm_settings.json msgid "Service Provider" msgstr "" @@ -5029,7 +5029,7 @@ msgid "Setting up" msgstr "" #: frontend/src/components/Settings/emailConfig.js:145 -msgid "Setting up Frappe Mail requires you to have an API key and API Secret of your email account. Read more " +msgid "Setting up Jingrow Mail requires you to have an API key and API Secret of your email account. Read more " msgstr "" #: frontend/src/components/Settings/emailConfig.js:97 @@ -5062,8 +5062,8 @@ msgid "Setting up Yandex requires you to enable two factor authentication\n" "\t\t and app specific passwords. Read more " msgstr "" -#. Label of the defaults_tab (Tab Break) field in DocType 'FCRM Settings' -#: crm/fcrm/doctype/fcrm_settings/fcrm_settings.json +#. Label of the defaults_tab (Tab Break) field in PageType 'FCRM Settings' +#: crm/fcrm/pagetype/fcrm_settings/fcrm_settings.json #: frontend/src/components/Layouts/AppSidebar.vue:537 #: frontend/src/components/Settings/Settings.vue:12 msgid "Settings" @@ -5073,7 +5073,7 @@ msgstr "إعدادات" msgid "Setup Email" msgstr "" -#: crm/fcrm/doctype/fcrm_settings/fcrm_settings.py:199 +#: crm/fcrm/pagetype/fcrm_settings/fcrm_settings.py:199 msgid "Setup the Exchange Rate Provider as 'Exchangerate Host' in settings, as default provider does not support currency conversion for {0} to {1}." msgstr "" @@ -5108,20 +5108,20 @@ msgstr "" msgid "Show preview" msgstr "" -#. Option for the 'Type' (Select) field in DocType 'CRM Fields Layout' -#: crm/fcrm/doctype/crm_fields_layout/crm_fields_layout.json +#. Option for the 'Type' (Select) field in PageType 'CRM Fields Layout' +#: crm/fcrm/pagetype/crm_fields_layout/crm_fields_layout.json msgid "Side Panel" msgstr "" -#. Option for the 'Type' (Select) field in DocType 'CRM Global Settings' -#: crm/fcrm/doctype/crm_global_settings/crm_global_settings.json +#. Option for the 'Type' (Select) field in PageType 'CRM Global Settings' +#: crm/fcrm/pagetype/crm_global_settings/crm_global_settings.json msgid "Sidebar Items" msgstr "عناصر الشريط الجانبي" -#. Description of the 'Condition' (Code) field in DocType 'CRM Service Level +#. Description of the 'Condition' (Code) field in PageType 'CRM Service Level #. Agreement' -#: crm/fcrm/doctype/crm_service_level_agreement/crm_service_level_agreement.json -msgid "Simple Python Expression, Example: doc.status == 'Open' and doc.lead_source == 'Ads'" +#: crm/fcrm/pagetype/crm_service_level_agreement/crm_service_level_agreement.json +msgid "Simple Python Expression, Example: pg.status == 'Open' and pg.lead_source == 'Ads'" msgstr "" #: frontend/src/components/AssignTo.vue:83 @@ -5145,16 +5145,16 @@ msgstr "" msgid "Sort" msgstr "" -#. Label of the source (Link) field in DocType 'CRM Deal' -#. Label of the source (Link) field in DocType 'CRM Lead' -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_lead/crm_lead.json +#. Label of the source (Link) field in PageType 'CRM Deal' +#. Label of the source (Link) field in PageType 'CRM Lead' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_lead/crm_lead.json #: frontend/src/components/Modals/EditValueModal.vue:10 msgid "Source" msgstr "المصدر" -#. Label of the source_name (Data) field in DocType 'CRM Lead Source' -#: crm/fcrm/doctype/crm_lead_source/crm_lead_source.json +#. Label of the source_name (Data) field in PageType 'CRM Lead Source' +#: crm/fcrm/pagetype/crm_lead_source/crm_lead_source.json msgid "Source Name" msgstr "اسم المصدر" @@ -5167,12 +5167,12 @@ msgstr "" msgid "Stage" msgstr "" -#: crm/fcrm/doctype/crm_form_script/crm_form_script.js:15 +#: crm/fcrm/pagetype/crm_form_script/crm_form_script.js:15 msgid "Standard Form Scripts can not be modified, duplicate the Form Script instead." msgstr "" -#. Label of the standard_rate (Currency) field in DocType 'CRM Product' -#: crm/fcrm/doctype/crm_product/crm_product.json +#. Label of the standard_rate (Currency) field in PageType 'CRM Product' +#: crm/fcrm/pagetype/crm_product/crm_product.json msgid "Standard Selling Rate" msgstr "مستوى البيع السعر" @@ -5180,18 +5180,18 @@ msgstr "مستوى البيع السعر" msgid "Standard Views" msgstr "" -#. Label of the start_date (Date) field in DocType 'CRM Service Level +#. Label of the start_date (Date) field in PageType 'CRM Service Level #. Agreement' -#. Label of the start_date (Date) field in DocType 'CRM Task' -#: crm/fcrm/doctype/crm_service_level_agreement/crm_service_level_agreement.json -#: crm/fcrm/doctype/crm_task/crm_task.json +#. Label of the start_date (Date) field in PageType 'CRM Task' +#: crm/fcrm/pagetype/crm_service_level_agreement/crm_service_level_agreement.json +#: crm/fcrm/pagetype/crm_task/crm_task.json msgid "Start Date" msgstr "تاريخ البدء" -#. Label of the start_time (Datetime) field in DocType 'CRM Call Log' -#. Label of the start_time (Time) field in DocType 'CRM Service Day' -#: crm/fcrm/doctype/crm_call_log/crm_call_log.json -#: crm/fcrm/doctype/crm_service_day/crm_service_day.json +#. Label of the start_time (Datetime) field in PageType 'CRM Call Log' +#. Label of the start_time (Time) field in PageType 'CRM Service Day' +#: crm/fcrm/pagetype/crm_call_log/crm_call_log.json +#: crm/fcrm/pagetype/crm_service_day/crm_service_day.json #: frontend/src/components/Calendar/CalendarEventPanel.vue:234 #: frontend/src/components/Modals/EventModal.vue:103 msgid "Start Time" @@ -5205,32 +5205,32 @@ msgstr "" msgid "Start with sample 10 leads" msgstr "" -#. Label of the status (Select) field in DocType 'CRM Call Log' -#. Label of the status (Data) field in DocType 'CRM Communication Status' -#. Label of the status (Link) field in DocType 'CRM Deal' -#. Label of the deal_status (Data) field in DocType 'CRM Deal Status' -#. Label of the status (Select) field in DocType 'CRM Invitation' -#. Label of the status (Link) field in DocType 'CRM Lead' -#. Label of the lead_status (Data) field in DocType 'CRM Lead Status' -#. Label of the status (Select) field in DocType 'CRM Task' -#: crm/fcrm/doctype/crm_call_log/crm_call_log.json -#: crm/fcrm/doctype/crm_communication_status/crm_communication_status.json -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_deal_status/crm_deal_status.json -#: crm/fcrm/doctype/crm_invitation/crm_invitation.json -#: crm/fcrm/doctype/crm_lead/crm_lead.json -#: crm/fcrm/doctype/crm_lead_status/crm_lead_status.json -#: crm/fcrm/doctype/crm_task/crm_task.json frontend/src/pages/Contact.vue:505 +#. Label of the status (Select) field in PageType 'CRM Call Log' +#. Label of the status (Data) field in PageType 'CRM Communication Status' +#. Label of the status (Link) field in PageType 'CRM Deal' +#. Label of the deal_status (Data) field in PageType 'CRM Deal Status' +#. Label of the status (Select) field in PageType 'CRM Invitation' +#. Label of the status (Link) field in PageType 'CRM Lead' +#. Label of the lead_status (Data) field in PageType 'CRM Lead Status' +#. Label of the status (Select) field in PageType 'CRM Task' +#: crm/fcrm/pagetype/crm_call_log/crm_call_log.json +#: crm/fcrm/pagetype/crm_communication_status/crm_communication_status.json +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_deal_status/crm_deal_status.json +#: crm/fcrm/pagetype/crm_invitation/crm_invitation.json +#: crm/fcrm/pagetype/crm_lead/crm_lead.json +#: crm/fcrm/pagetype/crm_lead_status/crm_lead_status.json +#: crm/fcrm/pagetype/crm_task/crm_task.json frontend/src/pages/Contact.vue:505 #: frontend/src/pages/MobileContact.vue:513 #: frontend/src/pages/MobileOrganization.vue:457 #: frontend/src/pages/Organization.vue:478 msgid "Status" msgstr "الحالة" -#. Label of the status_change_log (Table) field in DocType 'CRM Deal' -#. Label of the status_change_log (Table) field in DocType 'CRM Lead' -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_lead/crm_lead.json +#. Label of the status_change_log (Table) field in PageType 'CRM Deal' +#. Label of the status_change_log (Table) field in PageType 'CRM Lead' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_lead/crm_lead.json msgid "Status Change Log" msgstr "" @@ -5239,8 +5239,8 @@ msgstr "" msgid "Status is required" msgstr "" -#. Label of the subdomain (Data) field in DocType 'CRM Exotel Settings' -#: crm/fcrm/doctype/crm_exotel_settings/crm_exotel_settings.json +#. Label of the subdomain (Data) field in PageType 'CRM Exotel Settings' +#: crm/fcrm/pagetype/crm_exotel_settings/crm_exotel_settings.json msgid "Subdomain" msgstr "مجال فرعي" @@ -5258,10 +5258,10 @@ msgstr "" msgid "Subject: {0}" msgstr "" -#. Option for the 'Weekly Off' (Select) field in DocType 'CRM Holiday List' -#. Option for the 'Workday' (Select) field in DocType 'CRM Service Day' -#: crm/fcrm/doctype/crm_holiday_list/crm_holiday_list.json -#: crm/fcrm/doctype/crm_service_day/crm_service_day.json +#. Option for the 'Weekly Off' (Select) field in PageType 'CRM Holiday List' +#. Option for the 'Workday' (Select) field in PageType 'CRM Service Day' +#: crm/fcrm/pagetype/crm_holiday_list/crm_holiday_list.json +#: crm/fcrm/pagetype/crm_service_day/crm_service_day.json msgid "Sunday" msgstr "الأحد" @@ -5282,21 +5282,21 @@ msgid "System Configuration" msgstr "" #. Name of a role -#. Option for the 'Role' (Select) field in DocType 'CRM Invitation' -#: crm/fcrm/doctype/crm_dashboard/crm_dashboard.json -#: crm/fcrm/doctype/crm_exotel_settings/crm_exotel_settings.json -#: crm/fcrm/doctype/crm_fields_layout/crm_fields_layout.json -#: crm/fcrm/doctype/crm_global_settings/crm_global_settings.json -#: crm/fcrm/doctype/crm_invitation/crm_invitation.json -#: crm/fcrm/doctype/crm_lead_source/crm_lead_source.json -#: crm/fcrm/doctype/crm_lost_reason/crm_lost_reason.json -#: crm/fcrm/doctype/crm_notification/crm_notification.json -#: crm/fcrm/doctype/crm_product/crm_product.json -#: crm/fcrm/doctype/crm_telephony_agent/crm_telephony_agent.json -#: crm/fcrm/doctype/crm_twilio_settings/crm_twilio_settings.json -#: crm/fcrm/doctype/erpnext_crm_settings/erpnext_crm_settings.json -#: crm/fcrm/doctype/fcrm_settings/fcrm_settings.json -#: crm/fcrm/doctype/helpdesk_crm_settings/helpdesk_crm_settings.json +#. Option for the 'Role' (Select) field in PageType 'CRM Invitation' +#: crm/fcrm/pagetype/crm_dashboard/crm_dashboard.json +#: crm/fcrm/pagetype/crm_exotel_settings/crm_exotel_settings.json +#: crm/fcrm/pagetype/crm_fields_layout/crm_fields_layout.json +#: crm/fcrm/pagetype/crm_global_settings/crm_global_settings.json +#: crm/fcrm/pagetype/crm_invitation/crm_invitation.json +#: crm/fcrm/pagetype/crm_lead_source/crm_lead_source.json +#: crm/fcrm/pagetype/crm_lost_reason/crm_lost_reason.json +#: crm/fcrm/pagetype/crm_notification/crm_notification.json +#: crm/fcrm/pagetype/crm_product/crm_product.json +#: crm/fcrm/pagetype/crm_telephony_agent/crm_telephony_agent.json +#: crm/fcrm/pagetype/crm_twilio_settings/crm_twilio_settings.json +#: crm/fcrm/pagetype/erpnext_crm_settings/erpnext_crm_settings.json +#: crm/fcrm/pagetype/fcrm_settings/fcrm_settings.json +#: crm/fcrm/pagetype/helpdesk_crm_settings/helpdesk_crm_settings.json msgid "System Manager" msgstr "مدير النظام" @@ -5308,8 +5308,8 @@ msgstr "" msgid "Take a note..." msgstr "" -#. Option for the 'Type' (Select) field in DocType 'CRM Notification' -#: crm/fcrm/doctype/crm_notification/crm_notification.json +#. Option for the 'Type' (Select) field in PageType 'CRM Notification' +#: crm/fcrm/pagetype/crm_notification/crm_notification.json #: frontend/src/components/Layouts/AppSidebar.vue:555 msgid "Task" msgstr "مهمة" @@ -5327,8 +5327,8 @@ msgstr "" msgid "Telephony" msgstr "" -#. Label of the telephony_medium (Select) field in DocType 'CRM Call Log' -#: crm/fcrm/doctype/crm_call_log/crm_call_log.json +#. Label of the telephony_medium (Select) field in PageType 'CRM Call Log' +#: crm/fcrm/pagetype/crm_call_log/crm_call_log.json msgid "Telephony Medium" msgstr "" @@ -5364,27 +5364,27 @@ msgstr "" msgid "Template updated successfully" msgstr "" -#. Label of a shortcut in the Frappe CRM Workspace -#: crm/fcrm/workspace/frappe_crm/frappe_crm.json +#. Label of a shortcut in the Jingrow CRM Workspace +#: crm/fcrm/workspace/jingrow_crm/jingrow_crm.json msgid "Territories" msgstr "" -#. Label of the territory (Link) field in DocType 'CRM Deal' -#. Label of the territory (Link) field in DocType 'CRM Lead' -#. Label of the territory (Link) field in DocType 'CRM Organization' -#: crm/api/dashboard.py:1022 crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_lead/crm_lead.json -#: crm/fcrm/doctype/crm_organization/crm_organization.json +#. Label of the territory (Link) field in PageType 'CRM Deal' +#. Label of the territory (Link) field in PageType 'CRM Lead' +#. Label of the territory (Link) field in PageType 'CRM Organization' +#: crm/api/dashboard.py:1022 crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_lead/crm_lead.json +#: crm/fcrm/pagetype/crm_organization/crm_organization.json msgid "Territory" msgstr "إقليم" -#. Label of the territory_manager (Link) field in DocType 'CRM Territory' -#: crm/fcrm/doctype/crm_territory/crm_territory.json +#. Label of the territory_manager (Link) field in PageType 'CRM Territory' +#: crm/fcrm/pagetype/crm_territory/crm_territory.json msgid "Territory Manager" msgstr "مدير إقليمي" -#. Label of the territory_name (Data) field in DocType 'CRM Territory' -#: crm/fcrm/doctype/crm_territory/crm_territory.json +#. Label of the territory_name (Data) field in PageType 'CRM Territory' +#: crm/fcrm/pagetype/crm_territory/crm_territory.json msgid "Territory Name" msgstr "اسم الاقليم" @@ -5392,22 +5392,22 @@ msgstr "اسم الاقليم" msgid "Thanks" msgstr "با تشکر" -#: crm/fcrm/doctype/crm_service_level_agreement/crm_service_level_agreement.py:46 +#: crm/fcrm/pagetype/crm_service_level_agreement/crm_service_level_agreement.py:46 msgid "The Condition '{0}' is invalid: {1}" msgstr "" -#. Description of the 'Exchange Rate' (Float) field in DocType 'CRM Deal' -#: crm/fcrm/doctype/crm_deal/crm_deal.json +#. Description of the 'Exchange Rate' (Float) field in PageType 'CRM Deal' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json msgid "The rate used to convert the deal’s currency to your crm's base currency (set in CRM Settings). It is set once when the currency is first added and doesn't change automatically." msgstr "" -#. Description of the 'Exchange Rate' (Float) field in DocType 'CRM +#. Description of the 'Exchange Rate' (Float) field in PageType 'CRM #. Organization' -#: crm/fcrm/doctype/crm_organization/crm_organization.json +#: crm/fcrm/pagetype/crm_organization/crm_organization.json msgid "The rate used to convert the organization’s currency to your crm's base currency (set in CRM Settings). It is set once when the currency is first added and doesn't change automatically." msgstr "" -#: crm/fcrm/doctype/crm_service_level_agreement/crm_service_level_agreement.js:14 +#: crm/fcrm/pagetype/crm_service_level_agreement/crm_service_level_agreement.js:14 msgid "There can only be one default priority in Priorities table" msgstr "" @@ -5444,14 +5444,14 @@ msgstr "" msgid "This will delete selected items and unlink linked items to it, are you sure?" msgstr "" -#: crm/fcrm/doctype/fcrm_settings/fcrm_settings.js:9 +#: crm/fcrm/pagetype/fcrm_settings/fcrm_settings.js:9 msgid "This will restore (if not exist) all the default statuses, custom fields and layouts. Delete & Restore will delete default layouts and then restore them." msgstr "" -#. Option for the 'Weekly Off' (Select) field in DocType 'CRM Holiday List' -#. Option for the 'Workday' (Select) field in DocType 'CRM Service Day' -#: crm/fcrm/doctype/crm_holiday_list/crm_holiday_list.json -#: crm/fcrm/doctype/crm_service_day/crm_service_day.json +#. Option for the 'Weekly Off' (Select) field in PageType 'CRM Holiday List' +#. Option for the 'Workday' (Select) field in PageType 'CRM Service Day' +#: crm/fcrm/pagetype/crm_holiday_list/crm_holiday_list.json +#: crm/fcrm/pagetype/crm_service_day/crm_service_day.json msgid "Thursday" msgstr "الخميس" @@ -5463,18 +5463,18 @@ msgstr "زمن" msgid "Timespan" msgstr "الفترة الزمنية" -#. Label of the title (Data) field in DocType 'CRM Task' -#. Label of the title (Data) field in DocType 'FCRM Note' -#: crm/fcrm/doctype/crm_task/crm_task.json -#: crm/fcrm/doctype/fcrm_note/fcrm_note.json +#. Label of the title (Data) field in PageType 'CRM Task' +#. Label of the title (Data) field in PageType 'FCRM Note' +#: crm/fcrm/pagetype/crm_task/crm_task.json +#: crm/fcrm/pagetype/fcrm_note/fcrm_note.json #: frontend/src/components/Modals/EventModal.vue:43 #: frontend/src/components/Modals/NoteModal.vue:26 #: frontend/src/components/Modals/TaskModal.vue:25 msgid "Title" msgstr "اللقب" -#. Label of the title_field (Data) field in DocType 'CRM View Settings' -#: crm/fcrm/doctype/crm_view_settings/crm_view_settings.json +#. Label of the title_field (Data) field in PageType 'CRM View Settings' +#: crm/fcrm/pagetype/crm_view_settings/crm_view_settings.json #: frontend/src/components/Kanban/KanbanSettings.vue:29 msgid "Title Field" msgstr "حقل العنوان" @@ -5484,28 +5484,28 @@ msgstr "حقل العنوان" msgid "Title is required" msgstr "" -#. Label of the to (Data) field in DocType 'CRM Call Log' -#. Label of the to (Data) field in DocType 'CRM Status Change Log' -#: crm/fcrm/doctype/crm_call_log/crm_call_log.json -#: crm/fcrm/doctype/crm_status_change_log/crm_status_change_log.json +#. Label of the to (Data) field in PageType 'CRM Call Log' +#. Label of the to (Data) field in PageType 'CRM Status Change Log' +#: crm/fcrm/pagetype/crm_call_log/crm_call_log.json +#: crm/fcrm/pagetype/crm_status_change_log/crm_status_change_log.json #: frontend/src/components/Activities/EmailArea.vue:53 msgid "To" msgstr "إلى" -#. Label of the to_date (Date) field in DocType 'CRM Holiday List' -#. Label of the to_date (Datetime) field in DocType 'CRM Status Change Log' -#: crm/fcrm/doctype/crm_holiday_list/crm_holiday_list.json -#: crm/fcrm/doctype/crm_status_change_log/crm_status_change_log.json +#. Label of the to_date (Date) field in PageType 'CRM Holiday List' +#. Label of the to_date (Datetime) field in PageType 'CRM Status Change Log' +#: crm/fcrm/pagetype/crm_holiday_list/crm_holiday_list.json +#: crm/fcrm/pagetype/crm_status_change_log/crm_status_change_log.json msgid "To Date" msgstr "إلى تاريخ" -#. Label of the to_type (Data) field in DocType 'CRM Status Change Log' -#: crm/fcrm/doctype/crm_status_change_log/crm_status_change_log.json +#. Label of the to_type (Data) field in PageType 'CRM Status Change Log' +#: crm/fcrm/pagetype/crm_status_change_log/crm_status_change_log.json msgid "To Type" msgstr "" -#. Label of the to_user (Link) field in DocType 'CRM Notification' -#: crm/fcrm/doctype/crm_notification/crm_notification.json +#. Label of the to_user (Link) field in PageType 'CRM Notification' +#: crm/fcrm/pagetype/crm_notification/crm_notification.json msgid "To User" msgstr "إلى المستخدم" @@ -5517,8 +5517,8 @@ msgstr "" msgid "Today" msgstr "اليوم" -#. Option for the 'Status' (Select) field in DocType 'CRM Task' -#: crm/fcrm/doctype/crm_task/crm_task.json +#. Option for the 'Status' (Select) field in PageType 'CRM Task' +#: crm/fcrm/pagetype/crm_task/crm_task.json msgid "Todo" msgstr "" @@ -5535,22 +5535,22 @@ msgstr "" msgid "Took a call with John Doe and discussed the new project." msgstr "" -#. Label of the total (Currency) field in DocType 'CRM Deal' -#. Label of the total (Currency) field in DocType 'CRM Lead' -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_lead/crm_lead.json +#. Label of the total (Currency) field in PageType 'CRM Deal' +#. Label of the total (Currency) field in PageType 'CRM Lead' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_lead/crm_lead.json msgid "Total" msgstr "الاجمالي غير شامل الضريبة" -#. Label of the total_holidays (Int) field in DocType 'CRM Holiday List' -#: crm/fcrm/doctype/crm_holiday_list/crm_holiday_list.json +#. Label of the total_holidays (Int) field in PageType 'CRM Holiday List' +#: crm/fcrm/pagetype/crm_holiday_list/crm_holiday_list.json msgid "Total Holidays" msgstr "مجموع العطلات" -#. Description of the 'Net Total' (Currency) field in DocType 'CRM Deal' -#. Description of the 'Net Total' (Currency) field in DocType 'CRM Lead' -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_lead/crm_lead.json +#. Description of the 'Net Total' (Currency) field in PageType 'CRM Deal' +#. Description of the 'Net Total' (Currency) field in PageType 'CRM Lead' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_lead/crm_lead.json msgid "Total after discount" msgstr "" @@ -5571,10 +5571,10 @@ msgstr "" msgid "Total number of won deals based on its closure date" msgstr "" -#. Option for the 'Weekly Off' (Select) field in DocType 'CRM Holiday List' -#. Option for the 'Workday' (Select) field in DocType 'CRM Service Day' -#: crm/fcrm/doctype/crm_holiday_list/crm_holiday_list.json -#: crm/fcrm/doctype/crm_service_day/crm_service_day.json +#. Option for the 'Weekly Off' (Select) field in PageType 'CRM Holiday List' +#. Option for the 'Workday' (Select) field in PageType 'CRM Service Day' +#: crm/fcrm/pagetype/crm_holiday_list/crm_holiday_list.json +#: crm/fcrm/pagetype/crm_service_day/crm_service_day.json msgid "Tuesday" msgstr "الثلاثاء" @@ -5582,30 +5582,30 @@ msgstr "الثلاثاء" msgid "Turn into a group" msgstr "" -#. Label of the twiml_sid (Data) field in DocType 'CRM Twilio Settings' -#: crm/fcrm/doctype/crm_twilio_settings/crm_twilio_settings.json +#. Label of the twiml_sid (Data) field in PageType 'CRM Twilio Settings' +#: crm/fcrm/pagetype/crm_twilio_settings/crm_twilio_settings.json msgid "TwiML SID" msgstr "" -#. Option for the 'Telephony Medium' (Select) field in DocType 'CRM Call Log' -#. Label of the twilio (Check) field in DocType 'CRM Telephony Agent' -#. Option for the 'Default Medium' (Select) field in DocType 'CRM Telephony +#. Option for the 'Telephony Medium' (Select) field in PageType 'CRM Call Log' +#. Label of the twilio (Check) field in PageType 'CRM Telephony Agent' +#. Option for the 'Default Medium' (Select) field in PageType 'CRM Telephony #. Agent' -#: crm/fcrm/doctype/crm_call_log/crm_call_log.json -#: crm/fcrm/doctype/crm_telephony_agent/crm_telephony_agent.json +#: crm/fcrm/pagetype/crm_call_log/crm_call_log.json +#: crm/fcrm/pagetype/crm_telephony_agent/crm_telephony_agent.json #: frontend/src/components/Layouts/AppSidebar.vue:601 #: frontend/src/components/Settings/TelephonySettings.vue:40 #: frontend/src/components/Settings/TelephonySettings.vue:50 msgid "Twilio" msgstr "" -#: crm/fcrm/doctype/crm_twilio_settings/crm_twilio_settings.py:59 -#: crm/fcrm/doctype/crm_twilio_settings/crm_twilio_settings.py:60 +#: crm/fcrm/pagetype/crm_twilio_settings/crm_twilio_settings.py:59 +#: crm/fcrm/pagetype/crm_twilio_settings/crm_twilio_settings.py:60 msgid "Twilio API credential creation error." msgstr "" -#. Label of the twilio_number (Data) field in DocType 'CRM Telephony Agent' -#: crm/fcrm/doctype/crm_telephony_agent/crm_telephony_agent.json +#. Label of the twilio_number (Data) field in PageType 'CRM Telephony Agent' +#: crm/fcrm/pagetype/crm_telephony_agent/crm_telephony_agent.json msgid "Twilio Number" msgstr "" @@ -5617,20 +5617,20 @@ msgstr "" msgid "Twilio settings updated successfully" msgstr "" -#. Label of the type (Select) field in DocType 'CRM Call Log' -#. Label of the type (Select) field in DocType 'CRM Deal Status' -#. Label of the type (Select) field in DocType 'CRM Dropdown Item' -#. Label of the type (Select) field in DocType 'CRM Fields Layout' -#. Label of the type (Select) field in DocType 'CRM Global Settings' -#. Label of the type (Select) field in DocType 'CRM Notification' -#. Label of the type (Select) field in DocType 'CRM View Settings' -#: crm/fcrm/doctype/crm_call_log/crm_call_log.json -#: crm/fcrm/doctype/crm_deal_status/crm_deal_status.json -#: crm/fcrm/doctype/crm_dropdown_item/crm_dropdown_item.json -#: crm/fcrm/doctype/crm_fields_layout/crm_fields_layout.json -#: crm/fcrm/doctype/crm_global_settings/crm_global_settings.json -#: crm/fcrm/doctype/crm_notification/crm_notification.json -#: crm/fcrm/doctype/crm_view_settings/crm_view_settings.json +#. Label of the type (Select) field in PageType 'CRM Call Log' +#. Label of the type (Select) field in PageType 'CRM Deal Status' +#. Label of the type (Select) field in PageType 'CRM Dropdown Item' +#. Label of the type (Select) field in PageType 'CRM Fields Layout' +#. Label of the type (Select) field in PageType 'CRM Global Settings' +#. Label of the type (Select) field in PageType 'CRM Notification' +#. Label of the type (Select) field in PageType 'CRM View Settings' +#: crm/fcrm/pagetype/crm_call_log/crm_call_log.json +#: crm/fcrm/pagetype/crm_deal_status/crm_deal_status.json +#: crm/fcrm/pagetype/crm_dropdown_item/crm_dropdown_item.json +#: crm/fcrm/pagetype/crm_fields_layout/crm_fields_layout.json +#: crm/fcrm/pagetype/crm_global_settings/crm_global_settings.json +#: crm/fcrm/pagetype/crm_notification/crm_notification.json +#: crm/fcrm/pagetype/crm_view_settings/crm_view_settings.json msgid "Type" msgstr "النوع" @@ -5772,12 +5772,12 @@ msgstr "" msgid "Uploading {0}%" msgstr "" -#. Label of the user (Link) field in DocType 'CRM Dashboard' -#. Label of the user (Link) field in DocType 'CRM Telephony Agent' -#. Label of the user (Link) field in DocType 'CRM View Settings' -#: crm/fcrm/doctype/crm_dashboard/crm_dashboard.json -#: crm/fcrm/doctype/crm_telephony_agent/crm_telephony_agent.json -#: crm/fcrm/doctype/crm_view_settings/crm_view_settings.json +#. Label of the user (Link) field in PageType 'CRM Dashboard' +#. Label of the user (Link) field in PageType 'CRM Telephony Agent' +#. Label of the user (Link) field in PageType 'CRM View Settings' +#: crm/fcrm/pagetype/crm_dashboard/crm_dashboard.json +#: crm/fcrm/pagetype/crm_telephony_agent/crm_telephony_agent.json +#: crm/fcrm/pagetype/crm_view_settings/crm_view_settings.json msgid "User" msgstr "المستعمل" @@ -5785,8 +5785,8 @@ msgstr "المستعمل" msgid "User Management" msgstr "" -#. Label of the user_name (Data) field in DocType 'CRM Telephony Agent' -#: crm/fcrm/doctype/crm_telephony_agent/crm_telephony_agent.json +#. Label of the user_name (Data) field in PageType 'CRM Telephony Agent' +#: crm/fcrm/pagetype/crm_telephony_agent/crm_telephony_agent.json msgid "User Name" msgstr "اسم المستخدم" @@ -5808,9 +5808,9 @@ msgstr "" msgid "Users are required" msgstr "" -#. Label of the section_break_nevd (Section Break) field in DocType 'CRM +#. Label of the section_break_nevd (Section Break) field in PageType 'CRM #. Service Level Agreement' -#: crm/fcrm/doctype/crm_service_level_agreement/crm_service_level_agreement.json +#: crm/fcrm/pagetype/crm_service_level_agreement/crm_service_level_agreement.json msgid "Validity" msgstr "الصلاحية" @@ -5834,33 +5834,33 @@ msgstr "مشاهدات" msgid "Web form" msgstr "" -#. Label of the webhook_verify_token (Data) field in DocType 'CRM Exotel +#. Label of the webhook_verify_token (Data) field in PageType 'CRM Exotel #. Settings' -#: crm/fcrm/doctype/crm_exotel_settings/crm_exotel_settings.json +#: crm/fcrm/pagetype/crm_exotel_settings/crm_exotel_settings.json msgid "Webhook Verify Token" msgstr "" -#. Label of the website (Data) field in DocType 'CRM Deal' -#. Label of the website (Data) field in DocType 'CRM Lead' -#. Label of the website (Data) field in DocType 'CRM Organization' -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_lead/crm_lead.json -#: crm/fcrm/doctype/crm_organization/crm_organization.json +#. Label of the website (Data) field in PageType 'CRM Deal' +#. Label of the website (Data) field in PageType 'CRM Lead' +#. Label of the website (Data) field in PageType 'CRM Organization' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_lead/crm_lead.json +#: crm/fcrm/pagetype/crm_organization/crm_organization.json #: frontend/src/components/Modals/AboutModal.vue:52 msgid "Website" msgstr "الموقع" -#. Option for the 'Weekly Off' (Select) field in DocType 'CRM Holiday List' -#. Option for the 'Workday' (Select) field in DocType 'CRM Service Day' -#: crm/fcrm/doctype/crm_holiday_list/crm_holiday_list.json -#: crm/fcrm/doctype/crm_service_day/crm_service_day.json +#. Option for the 'Weekly Off' (Select) field in PageType 'CRM Holiday List' +#. Option for the 'Workday' (Select) field in PageType 'CRM Service Day' +#: crm/fcrm/pagetype/crm_holiday_list/crm_holiday_list.json +#: crm/fcrm/pagetype/crm_service_day/crm_service_day.json msgid "Wednesday" msgstr "الأربعاء" -#. Label of the weekly_off (Check) field in DocType 'CRM Holiday' -#. Label of the weekly_off (Select) field in DocType 'CRM Holiday List' -#: crm/fcrm/doctype/crm_holiday/crm_holiday.json -#: crm/fcrm/doctype/crm_holiday_list/crm_holiday_list.json +#. Label of the weekly_off (Check) field in PageType 'CRM Holiday' +#. Label of the weekly_off (Select) field in PageType 'CRM Holiday List' +#: crm/fcrm/pagetype/crm_holiday/crm_holiday.json +#: crm/fcrm/pagetype/crm_holiday_list/crm_holiday_list.json msgid "Weekly Off" msgstr "العطلة الأسبوعية" @@ -5868,7 +5868,7 @@ msgstr "العطلة الأسبوعية" msgid "Welcome Message" msgstr "" -#: crm/fcrm/doctype/helpdesk_crm_settings/helpdesk_crm_settings.py:155 +#: crm/fcrm/pagetype/helpdesk_crm_settings/helpdesk_crm_settings.py:155 msgid "Welcome to Helpdesk" msgstr "" @@ -5876,8 +5876,8 @@ msgstr "" msgid "Welcome {0}, lets add your first lead" msgstr "" -#. Option for the 'Type' (Select) field in DocType 'CRM Notification' -#: crm/fcrm/doctype/crm_notification/crm_notification.json +#. Option for the 'Type' (Select) field in PageType 'CRM Notification' +#: crm/fcrm/pagetype/crm_notification/crm_notification.json #: frontend/src/components/Layouts/AppSidebar.vue:603 #: frontend/src/components/Settings/Settings.vue:190 #: frontend/src/pages/Deal.vue:572 frontend/src/pages/Lead.vue:429 @@ -5902,8 +5902,8 @@ msgstr "عرض" msgid "Width can be in number, pixel or rem (eg. 3, 30px, 10rem)" msgstr "" -#. Option for the 'Type' (Select) field in DocType 'CRM Deal Status' -#: crm/fcrm/doctype/crm_deal_status/crm_deal_status.json +#. Option for the 'Type' (Select) field in PageType 'CRM Deal Status' +#: crm/fcrm/pagetype/crm_deal_status/crm_deal_status.json msgid "Won" msgstr "" @@ -5912,16 +5912,16 @@ msgstr "" msgid "Won deals" msgstr "" -#. Label of the workday (Select) field in DocType 'CRM Service Day' -#: crm/fcrm/doctype/crm_service_day/crm_service_day.json +#. Label of the workday (Select) field in PageType 'CRM Service Day' +#: crm/fcrm/pagetype/crm_service_day/crm_service_day.json msgid "Workday" msgstr "يوم عمل" -#. Label of the section_break_rmgo (Section Break) field in DocType 'CRM +#. Label of the section_break_rmgo (Section Break) field in PageType 'CRM #. Service Level Agreement' -#. Label of the working_hours (Table) field in DocType 'CRM Service Level +#. Label of the working_hours (Table) field in PageType 'CRM Service Level #. Agreement' -#: crm/fcrm/doctype/crm_service_level_agreement/crm_service_level_agreement.json +#: crm/fcrm/pagetype/crm_service_level_agreement/crm_service_level_agreement.json msgid "Working Hours" msgstr "ساعات العمل" @@ -5967,7 +5967,7 @@ msgstr "" msgid "You do not have permission to access this document" msgstr "" -#: crm/fcrm/doctype/crm_form_script/crm_form_script.py:24 +#: crm/fcrm/pagetype/crm_form_script/crm_form_script.py:24 msgid "You need to be in developer mode to edit a Standard Form Script" msgstr "" @@ -5995,10 +5995,10 @@ msgstr "" msgid "added a" msgstr "" -#. Option for the 'Color' (Select) field in DocType 'CRM Deal Status' -#. Option for the 'Color' (Select) field in DocType 'CRM Lead Status' -#: crm/fcrm/doctype/crm_deal_status/crm_deal_status.json -#: crm/fcrm/doctype/crm_lead_status/crm_lead_status.json +#. Option for the 'Color' (Select) field in PageType 'CRM Deal Status' +#. Option for the 'Color' (Select) field in PageType 'CRM Lead Status' +#: crm/fcrm/pagetype/crm_deal_status/crm_deal_status.json +#: crm/fcrm/pagetype/crm_lead_status/crm_lead_status.json msgid "amber" msgstr "" @@ -6010,17 +6010,17 @@ msgstr "" msgid "assigned a {0} {1} to you" msgstr "" -#. Option for the 'Color' (Select) field in DocType 'CRM Deal Status' -#. Option for the 'Color' (Select) field in DocType 'CRM Lead Status' -#: crm/fcrm/doctype/crm_deal_status/crm_deal_status.json -#: crm/fcrm/doctype/crm_lead_status/crm_lead_status.json +#. Option for the 'Color' (Select) field in PageType 'CRM Deal Status' +#. Option for the 'Color' (Select) field in PageType 'CRM Lead Status' +#: crm/fcrm/pagetype/crm_deal_status/crm_deal_status.json +#: crm/fcrm/pagetype/crm_lead_status/crm_lead_status.json msgid "black" msgstr "أسود" -#. Option for the 'Color' (Select) field in DocType 'CRM Deal Status' -#. Option for the 'Color' (Select) field in DocType 'CRM Lead Status' -#: crm/fcrm/doctype/crm_deal_status/crm_deal_status.json -#: crm/fcrm/doctype/crm_lead_status/crm_lead_status.json +#. Option for the 'Color' (Select) field in PageType 'CRM Deal Status' +#. Option for the 'Color' (Select) field in PageType 'CRM Lead Status' +#: crm/fcrm/pagetype/crm_deal_status/crm_deal_status.json +#: crm/fcrm/pagetype/crm_lead_status/crm_lead_status.json msgid "blue" msgstr "أزرق" @@ -6037,10 +6037,10 @@ msgstr "تعليق" msgid "condition" msgstr "الحالة" -#. Option for the 'Color' (Select) field in DocType 'CRM Deal Status' -#. Option for the 'Color' (Select) field in DocType 'CRM Lead Status' -#: crm/fcrm/doctype/crm_deal_status/crm_deal_status.json -#: crm/fcrm/doctype/crm_lead_status/crm_lead_status.json +#. Option for the 'Color' (Select) field in PageType 'CRM Deal Status' +#. Option for the 'Color' (Select) field in PageType 'CRM Lead Status' +#: crm/fcrm/pagetype/crm_deal_status/crm_deal_status.json +#: crm/fcrm/pagetype/crm_lead_status/crm_lead_status.json msgid "cyan" msgstr "أزرق سماوي" @@ -6059,33 +6059,33 @@ msgstr "مكتب" msgid "email already exists" msgstr "" -#. Option for the 'Service Provider' (Select) field in DocType 'FCRM Settings' -#: crm/fcrm/doctype/fcrm_settings/fcrm_settings.json +#. Option for the 'Service Provider' (Select) field in PageType 'FCRM Settings' +#: crm/fcrm/pagetype/fcrm_settings/fcrm_settings.json #: frontend/src/components/Settings/CurrencySettings.vue:106 msgid "exchangerate.host" msgstr "" -#. Option for the 'Service Provider' (Select) field in DocType 'FCRM Settings' -#: crm/fcrm/doctype/fcrm_settings/fcrm_settings.json +#. Option for the 'Service Provider' (Select) field in PageType 'FCRM Settings' +#: crm/fcrm/pagetype/fcrm_settings/fcrm_settings.json msgid "frankfurter.app" msgstr "" -#. Option for the 'Color' (Select) field in DocType 'CRM Deal Status' -#. Option for the 'Color' (Select) field in DocType 'CRM Lead Status' -#: crm/fcrm/doctype/crm_deal_status/crm_deal_status.json -#: crm/fcrm/doctype/crm_lead_status/crm_lead_status.json +#. Option for the 'Color' (Select) field in PageType 'CRM Deal Status' +#. Option for the 'Color' (Select) field in PageType 'CRM Lead Status' +#: crm/fcrm/pagetype/crm_deal_status/crm_deal_status.json +#: crm/fcrm/pagetype/crm_lead_status/crm_lead_status.json msgid "gray" msgstr "اللون الرمادي" -#. Option for the 'Color' (Select) field in DocType 'CRM Deal Status' -#. Option for the 'Color' (Select) field in DocType 'CRM Lead Status' -#: crm/fcrm/doctype/crm_deal_status/crm_deal_status.json -#: crm/fcrm/doctype/crm_lead_status/crm_lead_status.json +#. Option for the 'Color' (Select) field in PageType 'CRM Deal Status' +#. Option for the 'Color' (Select) field in PageType 'CRM Lead Status' +#: crm/fcrm/pagetype/crm_deal_status/crm_deal_status.json +#: crm/fcrm/pagetype/crm_lead_status/crm_lead_status.json msgid "green" msgstr "أخضر" -#. Option for the 'Type' (Select) field in DocType 'CRM View Settings' -#: crm/fcrm/doctype/crm_view_settings/crm_view_settings.json +#. Option for the 'Type' (Select) field in PageType 'CRM View Settings' +#: crm/fcrm/pagetype/crm_view_settings/crm_view_settings.json msgid "group_by" msgstr "" @@ -6170,12 +6170,12 @@ msgstr "" msgid "just now" msgstr "الآن فقط" -#. Option for the 'Type' (Select) field in DocType 'CRM View Settings' -#: crm/fcrm/doctype/crm_view_settings/crm_view_settings.json +#. Option for the 'Type' (Select) field in PageType 'CRM View Settings' +#: crm/fcrm/pagetype/crm_view_settings/crm_view_settings.json msgid "kanban" msgstr "لوحة المهام" -#: crm/api/doc.py:40 crm/api/doc.py:158 crm/api/doc.py:503 +#: crm/api/pg.py:40 crm/api/pg.py:158 crm/api/pg.py:503 msgid "label" msgstr "" @@ -6184,8 +6184,8 @@ msgstr "" msgid "leads" msgstr "التوجيهات" -#. Option for the 'Type' (Select) field in DocType 'CRM View Settings' -#: crm/fcrm/doctype/crm_view_settings/crm_view_settings.json +#. Option for the 'Type' (Select) field in PageType 'CRM View Settings' +#: crm/fcrm/pagetype/crm_view_settings/crm_view_settings.json msgid "list" msgstr "قائمة" @@ -6206,17 +6206,17 @@ msgstr "الآن" msgid "operator" msgstr "المشغل أو العامل" -#. Option for the 'Color' (Select) field in DocType 'CRM Deal Status' -#. Option for the 'Color' (Select) field in DocType 'CRM Lead Status' -#: crm/fcrm/doctype/crm_deal_status/crm_deal_status.json -#: crm/fcrm/doctype/crm_lead_status/crm_lead_status.json +#. Option for the 'Color' (Select) field in PageType 'CRM Deal Status' +#. Option for the 'Color' (Select) field in PageType 'CRM Lead Status' +#: crm/fcrm/pagetype/crm_deal_status/crm_deal_status.json +#: crm/fcrm/pagetype/crm_lead_status/crm_lead_status.json msgid "orange" msgstr "البرتقالي" -#. Option for the 'Color' (Select) field in DocType 'CRM Deal Status' -#. Option for the 'Color' (Select) field in DocType 'CRM Lead Status' -#: crm/fcrm/doctype/crm_deal_status/crm_deal_status.json -#: crm/fcrm/doctype/crm_lead_status/crm_lead_status.json +#. Option for the 'Color' (Select) field in PageType 'CRM Deal Status' +#. Option for the 'Color' (Select) field in PageType 'CRM Lead Status' +#: crm/fcrm/pagetype/crm_deal_status/crm_deal_status.json +#: crm/fcrm/pagetype/crm_lead_status/crm_lead_status.json msgid "pink" msgstr "" @@ -6232,10 +6232,10 @@ msgstr "خاص" msgid "public" msgstr "جمهور" -#. Option for the 'Color' (Select) field in DocType 'CRM Deal Status' -#. Option for the 'Color' (Select) field in DocType 'CRM Lead Status' -#: crm/fcrm/doctype/crm_deal_status/crm_deal_status.json -#: crm/fcrm/doctype/crm_lead_status/crm_lead_status.json +#. Option for the 'Color' (Select) field in PageType 'CRM Deal Status' +#. Option for the 'Color' (Select) field in PageType 'CRM Lead Status' +#: crm/fcrm/pagetype/crm_deal_status/crm_deal_status.json +#: crm/fcrm/pagetype/crm_lead_status/crm_lead_status.json msgid "purple" msgstr "أرجواني" @@ -6243,17 +6243,17 @@ msgstr "أرجواني" msgid "received a whatsapp message in {0}" msgstr "" -#. Option for the 'Color' (Select) field in DocType 'CRM Deal Status' -#. Option for the 'Color' (Select) field in DocType 'CRM Lead Status' -#: crm/fcrm/doctype/crm_deal_status/crm_deal_status.json -#: crm/fcrm/doctype/crm_lead_status/crm_lead_status.json +#. Option for the 'Color' (Select) field in PageType 'CRM Deal Status' +#. Option for the 'Color' (Select) field in PageType 'CRM Lead Status' +#: crm/fcrm/pagetype/crm_deal_status/crm_deal_status.json +#: crm/fcrm/pagetype/crm_lead_status/crm_lead_status.json msgid "red" msgstr "أحمر" -#. Option for the 'Color' (Select) field in DocType 'CRM Deal Status' -#. Option for the 'Color' (Select) field in DocType 'CRM Lead Status' -#: crm/fcrm/doctype/crm_deal_status/crm_deal_status.json -#: crm/fcrm/doctype/crm_lead_status/crm_lead_status.json +#. Option for the 'Color' (Select) field in PageType 'CRM Deal Status' +#. Option for the 'Color' (Select) field in PageType 'CRM Lead Status' +#: crm/fcrm/pagetype/crm_deal_status/crm_deal_status.json +#: crm/fcrm/pagetype/crm_lead_status/crm_lead_status.json msgid "teal" msgstr "" @@ -6266,10 +6266,10 @@ msgstr "إلى" msgid "tomorrow" msgstr "غداً" -#. Option for the 'Color' (Select) field in DocType 'CRM Deal Status' -#. Option for the 'Color' (Select) field in DocType 'CRM Lead Status' -#: crm/fcrm/doctype/crm_deal_status/crm_deal_status.json -#: crm/fcrm/doctype/crm_lead_status/crm_lead_status.json +#. Option for the 'Color' (Select) field in PageType 'CRM Deal Status' +#. Option for the 'Color' (Select) field in PageType 'CRM Lead Status' +#: crm/fcrm/pagetype/crm_deal_status/crm_deal_status.json +#: crm/fcrm/pagetype/crm_lead_status/crm_lead_status.json msgid "violet" msgstr "بنفسجي" @@ -6278,10 +6278,10 @@ msgstr "بنفسجي" msgid "which are not compatible with this UI, you will need to recreate the conditions here if you want to manage and add new conditions from this UI." msgstr "" -#. Option for the 'Color' (Select) field in DocType 'CRM Deal Status' -#. Option for the 'Color' (Select) field in DocType 'CRM Lead Status' -#: crm/fcrm/doctype/crm_deal_status/crm_deal_status.json -#: crm/fcrm/doctype/crm_lead_status/crm_lead_status.json +#. Option for the 'Color' (Select) field in PageType 'CRM Deal Status' +#. Option for the 'Color' (Select) field in PageType 'CRM Lead Status' +#: crm/fcrm/pagetype/crm_deal_status/crm_deal_status.json +#: crm/fcrm/pagetype/crm_lead_status/crm_lead_status.json msgid "yellow" msgstr "الأصفر" @@ -6379,7 +6379,7 @@ msgid "⚠️ Method \"{0}\" not found in class." msgstr "" #: frontend/src/data/script.js:83 -msgid "⚠️ No class found for doctype: {0}, it is mandatory to have a class for the parent doctype. it can be empty, but it should be present." +msgid "⚠️ No class found for pagetype: {0}, it is mandatory to have a class for the parent pagetype. it can be empty, but it should be present." msgstr "" #: frontend/src/data/script.js:180 diff --git a/crm/locale/bs.po b/crm/locale/bs.po index 9c08defc..733278ce 100644 --- a/crm/locale/bs.po +++ b/crm/locale/bs.po @@ -1,6 +1,6 @@ msgid "" msgstr "" -"Project-Id-Version: frappe\n" +"Project-Id-Version: jingrow\n" "Report-Msgid-Bugs-To: shariq@jingrow.com\n" "POT-Creation-Date: 2025-09-21 09:35+0000\n" "PO-Revision-Date: 2025-09-22 20:42\n" @@ -11,10 +11,10 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Generated-By: Babel 2.16.0\n" "Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" -"X-Crowdin-Project: frappe\n" +"X-Crowdin-Project: jingrow\n" "X-Crowdin-Project-ID: 639578\n" "X-Crowdin-Language: bs\n" -"X-Crowdin-File: /[frappe.crm] develop/crm/locale/main.pot\n" +"X-Crowdin-File: /[jingrow.crm] develop/crm/locale/main.pot\n" "X-Crowdin-File-ID: 97\n" "Language: bs_BA\n" @@ -55,73 +55,73 @@ msgstr "prije 1 sedmicu" msgid "1 year ago" msgstr "prije 1 godinu" -#. Option for the 'No. of Employees' (Select) field in DocType 'CRM Deal' -#. Option for the 'No. of Employees' (Select) field in DocType 'CRM Lead' -#. Option for the 'No. of Employees' (Select) field in DocType 'CRM +#. Option for the 'No. of Employees' (Select) field in PageType 'CRM Deal' +#. Option for the 'No. of Employees' (Select) field in PageType 'CRM Lead' +#. Option for the 'No. of Employees' (Select) field in PageType 'CRM #. Organization' -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_lead/crm_lead.json -#: crm/fcrm/doctype/crm_organization/crm_organization.json +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_lead/crm_lead.json +#: crm/fcrm/pagetype/crm_organization/crm_organization.json msgid "1-10" msgstr "1-10" -#. Option for the 'No. of Employees' (Select) field in DocType 'CRM Deal' -#. Option for the 'No. of Employees' (Select) field in DocType 'CRM Lead' -#. Option for the 'No. of Employees' (Select) field in DocType 'CRM +#. Option for the 'No. of Employees' (Select) field in PageType 'CRM Deal' +#. Option for the 'No. of Employees' (Select) field in PageType 'CRM Lead' +#. Option for the 'No. of Employees' (Select) field in PageType 'CRM #. Organization' -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_lead/crm_lead.json -#: crm/fcrm/doctype/crm_organization/crm_organization.json +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_lead/crm_lead.json +#: crm/fcrm/pagetype/crm_organization/crm_organization.json msgid "1000+" msgstr "1000+" -#. Option for the 'No. of Employees' (Select) field in DocType 'CRM Deal' -#. Option for the 'No. of Employees' (Select) field in DocType 'CRM Lead' -#. Option for the 'No. of Employees' (Select) field in DocType 'CRM +#. Option for the 'No. of Employees' (Select) field in PageType 'CRM Deal' +#. Option for the 'No. of Employees' (Select) field in PageType 'CRM Lead' +#. Option for the 'No. of Employees' (Select) field in PageType 'CRM #. Organization' -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_lead/crm_lead.json -#: crm/fcrm/doctype/crm_organization/crm_organization.json +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_lead/crm_lead.json +#: crm/fcrm/pagetype/crm_organization/crm_organization.json msgid "11-50" msgstr "11-50" -#. Option for the 'No. of Employees' (Select) field in DocType 'CRM Deal' -#. Option for the 'No. of Employees' (Select) field in DocType 'CRM Lead' -#. Option for the 'No. of Employees' (Select) field in DocType 'CRM +#. Option for the 'No. of Employees' (Select) field in PageType 'CRM Deal' +#. Option for the 'No. of Employees' (Select) field in PageType 'CRM Lead' +#. Option for the 'No. of Employees' (Select) field in PageType 'CRM #. Organization' -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_lead/crm_lead.json -#: crm/fcrm/doctype/crm_organization/crm_organization.json +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_lead/crm_lead.json +#: crm/fcrm/pagetype/crm_organization/crm_organization.json msgid "201-500" msgstr "201-500" -#. Option for the 'No. of Employees' (Select) field in DocType 'CRM Deal' -#. Option for the 'No. of Employees' (Select) field in DocType 'CRM Lead' -#. Option for the 'No. of Employees' (Select) field in DocType 'CRM +#. Option for the 'No. of Employees' (Select) field in PageType 'CRM Deal' +#. Option for the 'No. of Employees' (Select) field in PageType 'CRM Lead' +#. Option for the 'No. of Employees' (Select) field in PageType 'CRM #. Organization' -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_lead/crm_lead.json -#: crm/fcrm/doctype/crm_organization/crm_organization.json +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_lead/crm_lead.json +#: crm/fcrm/pagetype/crm_organization/crm_organization.json msgid "501-1000" msgstr "501-1000" -#. Option for the 'No. of Employees' (Select) field in DocType 'CRM Deal' -#. Option for the 'No. of Employees' (Select) field in DocType 'CRM Lead' -#. Option for the 'No. of Employees' (Select) field in DocType 'CRM +#. Option for the 'No. of Employees' (Select) field in PageType 'CRM Deal' +#. Option for the 'No. of Employees' (Select) field in PageType 'CRM Lead' +#. Option for the 'No. of Employees' (Select) field in PageType 'CRM #. Organization' -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_lead/crm_lead.json -#: crm/fcrm/doctype/crm_organization/crm_organization.json +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_lead/crm_lead.json +#: crm/fcrm/pagetype/crm_organization/crm_organization.json msgid "51-200" msgstr "51-200" -#. Paragraph text in the Frappe CRM Workspace -#: crm/fcrm/workspace/frappe_crm/frappe_crm.json +#. Paragraph text in the Jingrow CRM Workspace +#: crm/fcrm/workspace/jingrow_crm/jingrow_crm.json msgid "META" msgstr "META" -#. Paragraph text in the Frappe CRM Workspace -#: crm/fcrm/workspace/frappe_crm/frappe_crm.json +#. Paragraph text in the Jingrow CRM Workspace +#: crm/fcrm/workspace/jingrow_crm/jingrow_crm.json msgid "SHORTCUTS" msgstr "PREČICE" @@ -130,8 +130,8 @@ msgstr "PREČICE" msgid "

Dear {{ lead_name }},

\\n\\n

This is a reminder for the payment of {{ grand_total }}.

\\n\\n

Thanks,

\\n

Frappé

" msgstr "

Poštovani {{ lead_name }},

\\n\\n

Ovo je podsjetnik za plaćanje {{ grand_total }}.

\\n\\n

Hvala,

\\n

Frappé

" -#. Header text in the Frappe CRM Workspace -#: crm/fcrm/workspace/frappe_crm/frappe_crm.json +#. Header text in the Jingrow CRM Workspace +#: crm/fcrm/workspace/jingrow_crm/jingrow_crm.json msgid "PORTAL" msgstr "PORTAL" @@ -139,7 +139,7 @@ msgstr "PORTAL" msgid "@John, can you please check this?" msgstr "@John, možeš li provjeriti ovo?" -#: crm/fcrm/doctype/crm_lead/crm_lead.py:56 +#: crm/fcrm/pagetype/crm_lead/crm_lead.py:56 msgid "A Lead requires either a person's name or an organization's name" msgstr "Potencijalni Klijent zahtijeva ili ime osobe ili ime organizacije" @@ -147,14 +147,14 @@ msgstr "Potencijalni Klijent zahtijeva ili ime osobe ili ime organizacije" msgid "A new account has been created for you at {0}" msgstr "Za vas je kreiran novi račun na {0}" -#. Label of the api_key (Data) field in DocType 'CRM Exotel Settings' -#. Label of the api_key (Data) field in DocType 'CRM Twilio Settings' -#. Label of the api_key (Data) field in DocType 'ERPNext CRM Settings' -#. Label of the api_key (Data) field in DocType 'Helpdesk CRM Settings' -#: crm/fcrm/doctype/crm_exotel_settings/crm_exotel_settings.json -#: crm/fcrm/doctype/crm_twilio_settings/crm_twilio_settings.json -#: crm/fcrm/doctype/erpnext_crm_settings/erpnext_crm_settings.json -#: crm/fcrm/doctype/helpdesk_crm_settings/helpdesk_crm_settings.json +#. Label of the api_key (Data) field in PageType 'CRM Exotel Settings' +#. Label of the api_key (Data) field in PageType 'CRM Twilio Settings' +#. Label of the api_key (Data) field in PageType 'ERPNext CRM Settings' +#. Label of the api_key (Data) field in PageType 'Helpdesk CRM Settings' +#: crm/fcrm/pagetype/crm_exotel_settings/crm_exotel_settings.json +#: crm/fcrm/pagetype/crm_twilio_settings/crm_twilio_settings.json +#: crm/fcrm/pagetype/erpnext_crm_settings/erpnext_crm_settings.json +#: crm/fcrm/pagetype/helpdesk_crm_settings/helpdesk_crm_settings.json msgid "API Key" msgstr "API ključ" @@ -162,17 +162,17 @@ msgstr "API ključ" msgid "API Key is required" msgstr "API Ključ je obavezan" -#. Label of the api_secret (Password) field in DocType 'CRM Twilio Settings' -#. Label of the api_secret (Password) field in DocType 'ERPNext CRM Settings' -#. Label of the api_secret (Password) field in DocType 'Helpdesk CRM Settings' -#: crm/fcrm/doctype/crm_twilio_settings/crm_twilio_settings.json -#: crm/fcrm/doctype/erpnext_crm_settings/erpnext_crm_settings.json -#: crm/fcrm/doctype/helpdesk_crm_settings/helpdesk_crm_settings.json +#. Label of the api_secret (Password) field in PageType 'CRM Twilio Settings' +#. Label of the api_secret (Password) field in PageType 'ERPNext CRM Settings' +#. Label of the api_secret (Password) field in PageType 'Helpdesk CRM Settings' +#: crm/fcrm/pagetype/crm_twilio_settings/crm_twilio_settings.json +#: crm/fcrm/pagetype/erpnext_crm_settings/erpnext_crm_settings.json +#: crm/fcrm/pagetype/helpdesk_crm_settings/helpdesk_crm_settings.json msgid "API Secret" msgstr "API Tajna" -#. Label of the api_token (Password) field in DocType 'CRM Exotel Settings' -#: crm/fcrm/doctype/crm_exotel_settings/crm_exotel_settings.json +#. Label of the api_token (Password) field in PageType 'CRM Exotel Settings' +#: crm/fcrm/pagetype/crm_exotel_settings/crm_exotel_settings.json msgid "API Token" msgstr "API Token" @@ -180,7 +180,7 @@ msgstr "API Token" msgid "Accept" msgstr "Prihvati" -#: crm/fcrm/doctype/crm_invitation/crm_invitation.js:7 +#: crm/fcrm/pagetype/crm_invitation/crm_invitation.js:7 msgid "Accept Invitation" msgstr "Prihvati Poziv" @@ -188,22 +188,22 @@ msgstr "Prihvati Poziv" msgid "Accept call" msgstr "Prihvati poziv" -#. Option for the 'Status' (Select) field in DocType 'CRM Invitation' -#: crm/fcrm/doctype/crm_invitation/crm_invitation.json +#. Option for the 'Status' (Select) field in PageType 'CRM Invitation' +#: crm/fcrm/pagetype/crm_invitation/crm_invitation.json msgid "Accepted" msgstr "Prihvaćeno" -#. Label of the accepted_at (Datetime) field in DocType 'CRM Invitation' -#: crm/fcrm/doctype/crm_invitation/crm_invitation.json +#. Label of the accepted_at (Datetime) field in PageType 'CRM Invitation' +#: crm/fcrm/pagetype/crm_invitation/crm_invitation.json msgid "Accepted At" msgstr "Prihvaćen" -#. Label of the access_key (Data) field in DocType 'FCRM Settings' -#: crm/fcrm/doctype/fcrm_settings/fcrm_settings.json +#. Label of the access_key (Data) field in PageType 'FCRM Settings' +#: crm/fcrm/pagetype/fcrm_settings/fcrm_settings.json msgid "Access Key" msgstr "Pristupni Ključ" -#: crm/fcrm/doctype/fcrm_settings/fcrm_settings.py:156 +#: crm/fcrm/pagetype/fcrm_settings/fcrm_settings.py:156 msgid "Access Key is required for Service Provider: {0}" msgstr "Pristupni ključ je potreban za davaoca usluga: {0}" @@ -219,10 +219,10 @@ msgstr "Pristupni ključ za Pružatelja Usluge Kursa. Potreban za preuzimnje kur msgid "Account Name" msgstr "Naziv Računa" -#. Label of the account_sid (Data) field in DocType 'CRM Exotel Settings' -#. Label of the account_sid (Data) field in DocType 'CRM Twilio Settings' -#: crm/fcrm/doctype/crm_exotel_settings/crm_exotel_settings.json -#: crm/fcrm/doctype/crm_twilio_settings/crm_twilio_settings.json +#. Label of the account_sid (Data) field in PageType 'CRM Exotel Settings' +#. Label of the account_sid (Data) field in PageType 'CRM Twilio Settings' +#: crm/fcrm/pagetype/crm_exotel_settings/crm_exotel_settings.json +#: crm/fcrm/pagetype/crm_twilio_settings/crm_twilio_settings.json msgid "Account SID" msgstr "SID Računa" @@ -296,9 +296,9 @@ msgstr "Dodaj Sortiranje" msgid "Add Tab" msgstr "Dodaj Karticu" -#. Label of the add_weekly_holidays_section (Section Break) field in DocType +#. Label of the add_weekly_holidays_section (Section Break) field in PageType #. 'CRM Holiday List' -#: crm/fcrm/doctype/crm_holiday_list/crm_holiday_list.json +#: crm/fcrm/pagetype/crm_holiday_list/crm_holiday_list.json msgid "Add Weekly Holidays" msgstr "Dodaj sedmične praznike" @@ -363,8 +363,8 @@ msgstr "Dodaj bilješku" msgid "Add sample data" msgstr "Dodaj primjere podataka" -#. Description of the 'Icon' (Code) field in DocType 'CRM Dropdown Item' -#: crm/fcrm/doctype/crm_dropdown_item/crm_dropdown_item.json +#. Description of the 'Icon' (Code) field in PageType 'CRM Dropdown Item' +#: crm/fcrm/pagetype/crm_dropdown_item/crm_dropdown_item.json msgid "Add svg code or use feather icons e.g 'settings'" msgstr "Dodaj svg kod ili koristite ikone perja, npr. 'postavke'" @@ -372,8 +372,8 @@ msgstr "Dodaj svg kod ili koristite ikone perja, npr. 'postavke'" msgid "Add task" msgstr "Dodaj zadatak" -#. Label of the add_to_holidays (Button) field in DocType 'CRM Holiday List' -#: crm/fcrm/doctype/crm_holiday_list/crm_holiday_list.json +#. Label of the add_to_holidays (Button) field in PageType 'CRM Holiday List' +#: crm/fcrm/pagetype/crm_holiday_list/crm_holiday_list.json msgid "Add to Holidays" msgstr "Dodaj Praznicima" @@ -385,8 +385,8 @@ msgstr "Dodaj komentar" msgid "Add, edit, and manage email templates for various CRM communications" msgstr "Dodaj, uredi i upravljaj šablonima e-pošte za različite CRM komunikacije" -#. Label of the address (Link) field in DocType 'CRM Organization' -#: crm/fcrm/doctype/crm_organization/crm_organization.json +#. Label of the address (Link) field in PageType 'CRM Organization' +#: crm/fcrm/pagetype/crm_organization/crm_organization.json msgid "Address" msgstr "Adresa" @@ -406,14 +406,14 @@ msgid "Agent is unavailable to take the call, please call after some time." msgstr "Agent nije dostupan da preuzme poziv, nazovite nakon nekog vremena." #. Name of a role -#: crm/fcrm/doctype/crm_exotel_settings/crm_exotel_settings.json -#: crm/fcrm/doctype/crm_fields_layout/crm_fields_layout.json -#: crm/fcrm/doctype/crm_form_script/crm_form_script.json -#: crm/fcrm/doctype/crm_industry/crm_industry.json -#: crm/fcrm/doctype/crm_lead/crm_lead.json -#: crm/fcrm/doctype/crm_lead_source/crm_lead_source.json -#: crm/fcrm/doctype/crm_lead_status/crm_lead_status.json -#: crm/fcrm/doctype/fcrm_settings/fcrm_settings.json +#: crm/fcrm/pagetype/crm_exotel_settings/crm_exotel_settings.json +#: crm/fcrm/pagetype/crm_fields_layout/crm_fields_layout.json +#: crm/fcrm/pagetype/crm_form_script/crm_form_script.json +#: crm/fcrm/pagetype/crm_industry/crm_industry.json +#: crm/fcrm/pagetype/crm_lead/crm_lead.json +#: crm/fcrm/pagetype/crm_lead_source/crm_lead_source.json +#: crm/fcrm/pagetype/crm_lead_status/crm_lead_status.json +#: crm/fcrm/pagetype/fcrm_settings/fcrm_settings.json #: frontend/src/components/Settings/EmailTemplate/EmailTemplates.vue:76 #: frontend/src/components/Settings/Users.vue:85 msgid "All" @@ -426,16 +426,16 @@ msgstr "Sve" msgid "All day" msgstr "Cijeli dan" -#. Label of the amount (Currency) field in DocType 'CRM Products' -#: crm/fcrm/doctype/crm_products/crm_products.json +#. Label of the amount (Currency) field in PageType 'CRM Products' +#: crm/fcrm/pagetype/crm_products/crm_products.json #: frontend/src/pages/Contact.vue:499 frontend/src/pages/MobileContact.vue:507 #: frontend/src/pages/MobileOrganization.vue:451 #: frontend/src/pages/Organization.vue:472 msgid "Amount" msgstr "Iznos" -#. Description of the 'Net Amount' (Currency) field in DocType 'CRM Products' -#: crm/fcrm/doctype/crm_products/crm_products.json +#. Description of the 'Net Amount' (Currency) field in PageType 'CRM Products' +#: crm/fcrm/pagetype/crm_products/crm_products.json msgid "Amount after discount" msgstr "Iznos nakon popusta" @@ -447,13 +447,13 @@ msgstr "Došlo je do greške" msgid "An error occurred while updating the document" msgstr "Došlo je do greške prilikom ažuriranja dokumenta" -#. Description of the 'Favicon' (Attach) field in DocType 'FCRM Settings' -#: crm/fcrm/doctype/fcrm_settings/fcrm_settings.json +#. Description of the 'Favicon' (Attach) field in PageType 'FCRM Settings' +#: crm/fcrm/pagetype/fcrm_settings/fcrm_settings.json msgid "An icon file with .ico extension. Should be 16 x 16 px. Generated using a favicon generator. [favicon-generator.org]" msgstr "Datoteka ikone s nastavkom .ico. Trebala bi biti 16 x 16 px. Generirano pomoću generatora favicona. [favicon-generator.org]" -#. Description of the 'Logo' (Attach) field in DocType 'FCRM Settings' -#: crm/fcrm/doctype/fcrm_settings/fcrm_settings.json +#. Description of the 'Logo' (Attach) field in PageType 'FCRM Settings' +#: crm/fcrm/pagetype/fcrm_settings/fcrm_settings.json msgid "An image with 1:1 & 2:1 ratio is preferred" msgstr "Slika sa omjerom 1:1 i 2:1 je poželjna" @@ -461,12 +461,12 @@ msgstr "Slika sa omjerom 1:1 i 2:1 je poželjna" msgid "And" msgstr "I" -#. Label of the annual_revenue (Currency) field in DocType 'CRM Deal' -#. Label of the annual_revenue (Currency) field in DocType 'CRM Lead' -#. Label of the annual_revenue (Currency) field in DocType 'CRM Organization' -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_lead/crm_lead.json -#: crm/fcrm/doctype/crm_organization/crm_organization.json +#. Label of the annual_revenue (Currency) field in PageType 'CRM Deal' +#. Label of the annual_revenue (Currency) field in PageType 'CRM Lead' +#. Label of the annual_revenue (Currency) field in PageType 'CRM Organization' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_lead/crm_lead.json +#: crm/fcrm/pagetype/crm_organization/crm_organization.json msgid "Annual Revenue" msgstr "Godišnji Promet" @@ -488,13 +488,13 @@ msgstr "Pojavljuje se pored naslova na kartici vašeg pretraživača. Preporuče msgid "Apply" msgstr "Primjeni" -#. Label of the apply_on (Link) field in DocType 'CRM Service Level Agreement' -#: crm/fcrm/doctype/crm_service_level_agreement/crm_service_level_agreement.json +#. Label of the apply_on (Link) field in PageType 'CRM Service Level Agreement' +#: crm/fcrm/pagetype/crm_service_level_agreement/crm_service_level_agreement.json msgid "Apply On" msgstr "Primijeni na" -#. Label of the view (Select) field in DocType 'CRM Form Script' -#: crm/fcrm/doctype/crm_form_script/crm_form_script.json +#. Label of the view (Select) field in PageType 'CRM Form Script' +#: crm/fcrm/pagetype/crm_form_script/crm_form_script.json msgid "Apply To" msgstr "Primijeni na" @@ -540,10 +540,10 @@ msgid "Are you sure you want to go back? Unsaved changes will be lost." msgstr "Jeste li sigurni da se želite vratiti? Nesačuvane promjene će biti izgubljene." #: frontend/src/composables/frappecloud.js:24 -msgid "Are you sure you want to login to your Frappe Cloud dashboard?" -msgstr "Jeste li sigurni da se želite prijaviti na svoju Frappe Cloud Nadzornu Tablu?" +msgid "Are you sure you want to login to your Jingrow Cloud dashboard?" +msgstr "Jeste li sigurni da se želite prijaviti na svoju Jingrow Cloud Nadzornu Tablu?" -#: crm/fcrm/doctype/erpnext_crm_settings/erpnext_crm_settings.js:9 +#: crm/fcrm/pagetype/erpnext_crm_settings/erpnext_crm_settings.js:9 msgid "Are you sure you want to reset 'Create Quotation from CRM Deal' Form Script?" msgstr "Jeste li sigurni da želite poništiti skriptu forme 'Kreiraj Ponudu iz Posla'?" @@ -555,7 +555,7 @@ msgstr "Jeste li sigurni da želite postaviti valutu kao {0}? Ovo se kasnije ne msgid "Are you sure you want to unlink {0} linked item(s)?" msgstr "Jeste li sigurni da želite ukloniti vezu sa {0} povezanih artikala?" -#: crm/fcrm/doctype/fcrm_settings/fcrm_settings.py:193 +#: crm/fcrm/pagetype/fcrm_settings/fcrm_settings.py:193 msgid "Ask your manager to set up the Exchange Rate Provider, as default provider does not support currency conversion for {0} to {1}." msgstr "Zamolite odgovornog da postavi pružatelja kursa, jer zadani pružatelj ne podržava pretvorbu valuta iz {0} u {1}." @@ -581,8 +581,8 @@ msgstr "Dodijeli" msgid "Assign to me" msgstr "Dodijeli meni" -#. Label of the assigned_to (Link) field in DocType 'CRM Task' -#: crm/fcrm/doctype/crm_task/crm_task.json +#. Label of the assigned_to (Link) field in PageType 'CRM Task' +#: crm/fcrm/pagetype/crm_task/crm_task.json msgid "Assigned To" msgstr "Dodijeljeno" @@ -594,13 +594,13 @@ msgstr "Pravila Dodjele" msgid "Assignees" msgstr "Dodijeljeni" -#. Option for the 'Type' (Select) field in DocType 'CRM Notification' -#: crm/fcrm/doctype/crm_notification/crm_notification.json +#. Option for the 'Type' (Select) field in PageType 'CRM Notification' +#: crm/fcrm/pagetype/crm_notification/crm_notification.json msgid "Assignment" msgstr "Dodjela" -#. Label of a shortcut in the Frappe CRM Workspace -#: crm/fcrm/workspace/frappe_crm/frappe_crm.json +#. Label of a shortcut in the Jingrow CRM Workspace +#: crm/fcrm/workspace/jingrow_crm/jingrow_crm.json msgid "Assignment Rule" msgstr "Pravilo Dodjele" @@ -678,14 +678,14 @@ msgstr "Prilozi" msgid "Attendees" msgstr "Učesnici" -#. Label of the auth_token (Password) field in DocType 'CRM Twilio Settings' -#: crm/fcrm/doctype/crm_twilio_settings/crm_twilio_settings.json +#. Label of the auth_token (Password) field in PageType 'CRM Twilio Settings' +#: crm/fcrm/pagetype/crm_twilio_settings/crm_twilio_settings.json msgid "Auth Token" msgstr "Auth Token" -#. Label of the auto_update_expected_deal_value (Check) field in DocType 'FCRM +#. Label of the auto_update_expected_deal_value (Check) field in PageType 'FCRM #. Settings' -#: crm/fcrm/doctype/fcrm_settings/fcrm_settings.json +#: crm/fcrm/pagetype/fcrm_settings/fcrm_settings.json msgid "Auto Update Expected Deal Value" msgstr "Automatsko ažuriranje očekivane vrijednosti ponude" @@ -702,8 +702,8 @@ msgid "Auto update of expected deal value enabled" msgstr "Automatsko ažuriranje očekivane vrijednosti posla omogućeno" #. Description of the 'Auto Update Expected Deal Value' (Check) field in -#. DocType 'FCRM Settings' -#: crm/fcrm/doctype/fcrm_settings/fcrm_settings.json +#. PageType 'FCRM Settings' +#: crm/fcrm/pagetype/fcrm_settings/fcrm_settings.json #: frontend/src/components/Settings/ForecastingSettings.vue:46 msgid "Automatically update \"Expected Deal Value\" based on the total value of associated products in a deal" msgstr "Automatski ažuriraj \"Očekivanu vrijednost ponude\" na temelju ukupne vrijednosti povezanih proizvoda u ponudi" @@ -793,8 +793,8 @@ msgstr "Nazad" msgid "Back to file upload" msgstr "Nazad na otpremanje datoteke" -#. Option for the 'Status' (Select) field in DocType 'CRM Task' -#: crm/fcrm/doctype/crm_task/crm_task.json +#. Option for the 'Status' (Select) field in PageType 'CRM Task' +#: crm/fcrm/pagetype/crm_task/crm_task.json msgid "Backlog" msgstr "Zaostatak" @@ -818,8 +818,8 @@ msgstr "Naziv robne marke" msgid "Brand settings" msgstr "Postavke robne marke" -#. Label of the branding_tab (Tab Break) field in DocType 'FCRM Settings' -#: crm/fcrm/doctype/fcrm_settings/fcrm_settings.json +#. Label of the branding_tab (Tab Break) field in PageType 'FCRM Settings' +#: crm/fcrm/pagetype/fcrm_settings/fcrm_settings.json msgid "Branding" msgstr "Brendiranje" @@ -827,8 +827,8 @@ msgstr "Brendiranje" msgid "Bulk Edit" msgstr "Grupno Uređivanje" -#. Option for the 'Status' (Select) field in DocType 'CRM Call Log' -#: crm/fcrm/doctype/crm_call_log/crm_call_log.json +#. Option for the 'Status' (Select) field in PageType 'CRM Call Log' +#: crm/fcrm/pagetype/crm_call_log/crm_call_log.json msgid "Busy" msgstr "Zauzeto" @@ -838,174 +838,174 @@ msgstr "Zauzeto" msgid "CC" msgstr "CC" -#. Name of a DocType -#: crm/fcrm/doctype/crm_call_log/crm_call_log.json +#. Name of a PageType +#: crm/fcrm/pagetype/crm_call_log/crm_call_log.json msgid "CRM Call Log" msgstr "Zapisi Poziva" -#. Name of a DocType -#: crm/fcrm/doctype/crm_communication_status/crm_communication_status.json +#. Name of a PageType +#: crm/fcrm/pagetype/crm_communication_status/crm_communication_status.json msgid "CRM Communication Status" msgstr "Status Konverzacije" -#. Name of a DocType -#: crm/fcrm/doctype/crm_contacts/crm_contacts.json +#. Name of a PageType +#: crm/fcrm/pagetype/crm_contacts/crm_contacts.json msgid "CRM Contacts" msgstr "Kontakti" -#. Name of a DocType -#: crm/fcrm/doctype/crm_dashboard/crm_dashboard.json +#. Name of a PageType +#: crm/fcrm/pagetype/crm_dashboard/crm_dashboard.json #: frontend/src/pages/Dashboard.vue:304 msgid "CRM Dashboard" msgstr "Nadzorna Tabla" -#. Name of a DocType -#: crm/fcrm/doctype/crm_deal/crm_deal.json +#. Name of a PageType +#: crm/fcrm/pagetype/crm_deal/crm_deal.json msgid "CRM Deal" msgstr "Posao" -#. Name of a DocType -#: crm/fcrm/doctype/crm_deal_status/crm_deal_status.json +#. Name of a PageType +#: crm/fcrm/pagetype/crm_deal_status/crm_deal_status.json msgid "CRM Deal Status" msgstr "Status Posla" -#. Name of a DocType -#: crm/fcrm/doctype/crm_dropdown_item/crm_dropdown_item.json +#. Name of a PageType +#: crm/fcrm/pagetype/crm_dropdown_item/crm_dropdown_item.json msgid "CRM Dropdown Item" msgstr "Padajuća Stavka" -#. Name of a DocType -#: crm/fcrm/doctype/crm_exotel_settings/crm_exotel_settings.json +#. Name of a PageType +#: crm/fcrm/pagetype/crm_exotel_settings/crm_exotel_settings.json msgid "CRM Exotel Settings" msgstr "Exotel Postavke" -#. Name of a DocType -#: crm/fcrm/doctype/crm_fields_layout/crm_fields_layout.json +#. Name of a PageType +#: crm/fcrm/pagetype/crm_fields_layout/crm_fields_layout.json msgid "CRM Fields Layout" msgstr "Izgled Polja" -#. Name of a DocType -#: crm/fcrm/doctype/crm_form_script/crm_form_script.json +#. Name of a PageType +#: crm/fcrm/pagetype/crm_form_script/crm_form_script.json msgid "CRM Form Script" msgstr "Skripta Forme" -#. Name of a DocType -#: crm/fcrm/doctype/crm_global_settings/crm_global_settings.json +#. Name of a PageType +#: crm/fcrm/pagetype/crm_global_settings/crm_global_settings.json msgid "CRM Global Settings" msgstr "Globalne Postavke" -#. Name of a DocType -#: crm/fcrm/doctype/crm_holiday/crm_holiday.json +#. Name of a PageType +#: crm/fcrm/pagetype/crm_holiday/crm_holiday.json msgid "CRM Holiday" msgstr "Praznik" -#. Name of a DocType -#: crm/fcrm/doctype/crm_holiday_list/crm_holiday_list.json +#. Name of a PageType +#: crm/fcrm/pagetype/crm_holiday_list/crm_holiday_list.json msgid "CRM Holiday List" msgstr "Lista Praznika" -#. Name of a DocType -#: crm/fcrm/doctype/crm_industry/crm_industry.json +#. Name of a PageType +#: crm/fcrm/pagetype/crm_industry/crm_industry.json msgid "CRM Industry" msgstr "Industrija" -#. Name of a DocType -#: crm/fcrm/doctype/crm_invitation/crm_invitation.json +#. Name of a PageType +#: crm/fcrm/pagetype/crm_invitation/crm_invitation.json msgid "CRM Invitation" msgstr "Pozivnica" -#. Name of a DocType -#: crm/fcrm/doctype/crm_lead/crm_lead.json +#. Name of a PageType +#: crm/fcrm/pagetype/crm_lead/crm_lead.json msgid "CRM Lead" msgstr "Potencijalni Klijent" -#. Name of a DocType -#: crm/fcrm/doctype/crm_lead_source/crm_lead_source.json +#. Name of a PageType +#: crm/fcrm/pagetype/crm_lead_source/crm_lead_source.json msgid "CRM Lead Source" msgstr "Izvor Potencijalnog Klijenta" -#. Name of a DocType -#: crm/fcrm/doctype/crm_lead_status/crm_lead_status.json +#. Name of a PageType +#: crm/fcrm/pagetype/crm_lead_status/crm_lead_status.json msgid "CRM Lead Status" msgstr "Status Potencijalnog Klijenta" -#. Name of a DocType -#: crm/fcrm/doctype/crm_lost_reason/crm_lost_reason.json +#. Name of a PageType +#: crm/fcrm/pagetype/crm_lost_reason/crm_lost_reason.json msgid "CRM Lost Reason" msgstr "Razlog Gubitka" -#. Name of a DocType -#: crm/fcrm/doctype/crm_notification/crm_notification.json +#. Name of a PageType +#: crm/fcrm/pagetype/crm_notification/crm_notification.json msgid "CRM Notification" msgstr "Obavještenje" -#. Name of a DocType -#: crm/fcrm/doctype/crm_organization/crm_organization.json +#. Name of a PageType +#: crm/fcrm/pagetype/crm_organization/crm_organization.json msgid "CRM Organization" msgstr "Organizacija" -#. Label of a shortcut in the Frappe CRM Workspace -#: crm/fcrm/workspace/frappe_crm/frappe_crm.json +#. Label of a shortcut in the Jingrow CRM Workspace +#: crm/fcrm/workspace/jingrow_crm/jingrow_crm.json msgid "CRM Portal Page" msgstr "Stranica Portala" -#. Name of a DocType -#: crm/fcrm/doctype/crm_product/crm_product.json +#. Name of a PageType +#: crm/fcrm/pagetype/crm_product/crm_product.json msgid "CRM Product" msgstr "Artikal" -#. Name of a DocType -#: crm/fcrm/doctype/crm_products/crm_products.json +#. Name of a PageType +#: crm/fcrm/pagetype/crm_products/crm_products.json msgid "CRM Products" msgstr "Artikli" -#. Name of a DocType -#: crm/fcrm/doctype/crm_service_day/crm_service_day.json +#. Name of a PageType +#: crm/fcrm/pagetype/crm_service_day/crm_service_day.json msgid "CRM Service Day" msgstr "Servisni Dan" -#. Name of a DocType -#: crm/fcrm/doctype/crm_service_level_agreement/crm_service_level_agreement.json +#. Name of a PageType +#: crm/fcrm/pagetype/crm_service_level_agreement/crm_service_level_agreement.json msgid "CRM Service Level Agreement" msgstr "Standard Nivo Servisa" -#. Name of a DocType -#: crm/fcrm/doctype/crm_service_level_priority/crm_service_level_priority.json +#. Name of a PageType +#: crm/fcrm/pagetype/crm_service_level_priority/crm_service_level_priority.json msgid "CRM Service Level Priority" msgstr "Prioritet Nivoa Servisa" -#. Name of a DocType -#: crm/fcrm/doctype/crm_status_change_log/crm_status_change_log.json +#. Name of a PageType +#: crm/fcrm/pagetype/crm_status_change_log/crm_status_change_log.json msgid "CRM Status Change Log" msgstr "Zapisnik Promjena Statusa" -#. Name of a DocType -#: crm/fcrm/doctype/crm_task/crm_task.json +#. Name of a PageType +#: crm/fcrm/pagetype/crm_task/crm_task.json msgid "CRM Task" msgstr "Zadatak" -#. Name of a DocType -#: crm/fcrm/doctype/crm_telephony_agent/crm_telephony_agent.json +#. Name of a PageType +#: crm/fcrm/pagetype/crm_telephony_agent/crm_telephony_agent.json msgid "CRM Telephony Agent" msgstr "Telefonski Agent" -#. Name of a DocType -#: crm/fcrm/doctype/crm_telephony_phone/crm_telephony_phone.json +#. Name of a PageType +#: crm/fcrm/pagetype/crm_telephony_phone/crm_telephony_phone.json msgid "CRM Telephony Phone" msgstr "Telefonija Telefon" -#. Name of a DocType -#: crm/fcrm/doctype/crm_territory/crm_territory.json +#. Name of a PageType +#: crm/fcrm/pagetype/crm_territory/crm_territory.json msgid "CRM Territory" msgstr "Distrikt" -#. Name of a DocType -#: crm/fcrm/doctype/crm_twilio_settings/crm_twilio_settings.json +#. Name of a PageType +#: crm/fcrm/pagetype/crm_twilio_settings/crm_twilio_settings.json msgid "CRM Twilio Settings" msgstr "Twilio Postavke" -#. Name of a DocType -#: crm/fcrm/doctype/crm_view_settings/crm_view_settings.json +#. Name of a PageType +#: crm/fcrm/pagetype/crm_view_settings/crm_view_settings.json msgid "CRM View Settings" msgstr "Postavke Prikaza" @@ -1021,13 +1021,13 @@ msgstr "CSV" msgid "Call Details" msgstr "Detalji Poziva" -#. Label of the receiver (Link) field in DocType 'CRM Call Log' -#: crm/fcrm/doctype/crm_call_log/crm_call_log.json +#. Label of the receiver (Link) field in PageType 'CRM Call Log' +#: crm/fcrm/pagetype/crm_call_log/crm_call_log.json msgid "Call Received By" msgstr "Poziv Primljen Od" -#. Description of the 'Duration' (Duration) field in DocType 'CRM Call Log' -#: crm/fcrm/doctype/crm_call_log/crm_call_log.json +#. Description of the 'Duration' (Duration) field in PageType 'CRM Call Log' +#: crm/fcrm/pagetype/crm_call_log/crm_call_log.json msgid "Call duration in seconds" msgstr "Trajanje poziva u sekundama" @@ -1045,8 +1045,8 @@ msgstr "Pozovi pomoću {0}" msgid "Call with John Doe" msgstr "Poziv sa John Doeom" -#. Label of the caller (Link) field in DocType 'CRM Call Log' -#: crm/fcrm/doctype/crm_call_log/crm_call_log.json +#. Label of the caller (Link) field in PageType 'CRM Call Log' +#: crm/fcrm/pagetype/crm_call_log/crm_call_log.json msgid "Caller" msgstr "Pozivatelj" @@ -1083,10 +1083,10 @@ msgstr "Kamera" msgid "Cancel" msgstr "Otkaži" -#. Option for the 'Status' (Select) field in DocType 'CRM Call Log' -#. Option for the 'Status' (Select) field in DocType 'CRM Task' -#: crm/fcrm/doctype/crm_call_log/crm_call_log.json -#: crm/fcrm/doctype/crm_task/crm_task.json +#. Option for the 'Status' (Select) field in PageType 'CRM Call Log' +#. Option for the 'Status' (Select) field in PageType 'CRM Task' +#: crm/fcrm/pagetype/crm_call_log/crm_call_log.json +#: crm/fcrm/pagetype/crm_task/crm_task.json msgid "Canceled" msgstr "Otkazano" @@ -1094,7 +1094,7 @@ msgstr "Otkazano" msgid "Cannot change role of user with Admin access" msgstr "Nije moguće promijeniti ulogu korisnika s administratorskim pristupom" -#: crm/fcrm/doctype/fcrm_settings/fcrm_settings.py:34 +#: crm/fcrm/pagetype/fcrm_settings/fcrm_settings.py:34 msgid "Cannot delete standard items {0}" msgstr "Nije moguće izbrisati standardne stavke {0}" @@ -1189,8 +1189,8 @@ msgstr "Očisti Dodjelu" msgid "Clear Sort" msgstr "Očisti Sortiranje" -#. Label of the clear_table (Button) field in DocType 'CRM Holiday List' -#: crm/fcrm/doctype/crm_holiday_list/crm_holiday_list.json +#. Label of the clear_table (Button) field in PageType 'CRM Holiday List' +#: crm/fcrm/pagetype/crm_holiday_list/crm_holiday_list.json msgid "Clear Table" msgstr "Očisti Tabelu" @@ -1211,8 +1211,8 @@ msgstr "Zatvori" msgid "Close panel" msgstr "Zatvori panel" -#. Label of the closed_date (Date) field in DocType 'CRM Deal' -#: crm/fcrm/doctype/crm_deal/crm_deal.json +#. Label of the closed_date (Date) field in PageType 'CRM Deal' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json msgid "Closed Date" msgstr "Datum zaključenja" @@ -1224,10 +1224,10 @@ msgstr "Sklopi" msgid "Collapsible" msgstr "Sklopivo" -#. Label of the color (Select) field in DocType 'CRM Deal Status' -#. Label of the color (Select) field in DocType 'CRM Lead Status' -#: crm/fcrm/doctype/crm_deal_status/crm_deal_status.json -#: crm/fcrm/doctype/crm_lead_status/crm_lead_status.json +#. Label of the color (Select) field in PageType 'CRM Deal Status' +#. Label of the color (Select) field in PageType 'CRM Lead Status' +#: crm/fcrm/pagetype/crm_deal_status/crm_deal_status.json +#: crm/fcrm/pagetype/crm_lead_status/crm_lead_status.json msgid "Color" msgstr "Boja" @@ -1235,20 +1235,20 @@ msgstr "Boja" msgid "Column" msgstr "Kolona" -#. Label of the column_field (Data) field in DocType 'CRM View Settings' -#: crm/fcrm/doctype/crm_view_settings/crm_view_settings.json +#. Label of the column_field (Data) field in PageType 'CRM View Settings' +#: crm/fcrm/pagetype/crm_view_settings/crm_view_settings.json #: frontend/src/components/Kanban/KanbanSettings.vue:12 msgid "Column Field" msgstr "Polje Kolone" -#. Label of the columns (Code) field in DocType 'CRM View Settings' -#: crm/fcrm/doctype/crm_view_settings/crm_view_settings.json +#. Label of the columns (Code) field in PageType 'CRM View Settings' +#: crm/fcrm/pagetype/crm_view_settings/crm_view_settings.json #: frontend/src/components/ColumnSettings.vue:4 msgid "Columns" msgstr "Kolone" -#. Label of the comment (Link) field in DocType 'CRM Notification' -#: crm/fcrm/doctype/crm_notification/crm_notification.json +#. Label of the comment (Link) field in PageType 'CRM Notification' +#: crm/fcrm/pagetype/crm_notification/crm_notification.json #: frontend/src/components/CommentBox.vue:78 #: frontend/src/components/CommunicationArea.vue:16 #: frontend/src/components/Layouts/AppSidebar.vue:579 @@ -1264,20 +1264,20 @@ msgstr "Komentari" msgid "Common reasons for losing deals" msgstr "Uobičajeni razlozi za gubitak poslova" -#. Label of the communication_status (Link) field in DocType 'CRM Deal' -#. Label of the communication_status (Link) field in DocType 'CRM Lead' -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_lead/crm_lead.json +#. Label of the communication_status (Link) field in PageType 'CRM Deal' +#. Label of the communication_status (Link) field in PageType 'CRM Lead' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_lead/crm_lead.json msgid "Communication Status" msgstr "Status Konverzacije" -#. Label of a shortcut in the Frappe CRM Workspace -#: crm/fcrm/workspace/frappe_crm/frappe_crm.json +#. Label of a shortcut in the Jingrow CRM Workspace +#: crm/fcrm/workspace/jingrow_crm/jingrow_crm.json msgid "Communication Statuses" msgstr "Status Konverzacije" -#. Label of the erpnext_company (Data) field in DocType 'ERPNext CRM Settings' -#: crm/fcrm/doctype/erpnext_crm_settings/erpnext_crm_settings.json +#. Label of the erpnext_company (Data) field in PageType 'ERPNext CRM Settings' +#: crm/fcrm/pagetype/erpnext_crm_settings/erpnext_crm_settings.json msgid "Company in ERPNext Site" msgstr "Kompanija U Sistemu" @@ -1285,18 +1285,18 @@ msgstr "Kompanija U Sistemu" msgid "Complete Registration" msgstr "Završi Registraciju" -#. Option for the 'Status' (Select) field in DocType 'CRM Call Log' -#: crm/fcrm/doctype/crm_call_log/crm_call_log.json +#. Option for the 'Status' (Select) field in PageType 'CRM Call Log' +#: crm/fcrm/pagetype/crm_call_log/crm_call_log.json msgid "Completed" msgstr "Završeno" -#. Option for the 'Device' (Select) field in DocType 'CRM Telephony Agent' -#: crm/fcrm/doctype/crm_telephony_agent/crm_telephony_agent.json +#. Option for the 'Device' (Select) field in PageType 'CRM Telephony Agent' +#: crm/fcrm/pagetype/crm_telephony_agent/crm_telephony_agent.json msgid "Computer" msgstr "Računar" -#. Label of the condition (Code) field in DocType 'CRM Service Level Agreement' -#: crm/fcrm/doctype/crm_service_level_agreement/crm_service_level_agreement.json +#. Label of the condition (Code) field in PageType 'CRM Service Level Agreement' +#: crm/fcrm/pagetype/crm_service_level_agreement/crm_service_level_agreement.json msgid "Condition" msgstr "Uslov" @@ -1354,17 +1354,17 @@ msgstr "Potvrdi prepisivanje" msgid "Connect your email" msgstr "Poveži e-poštu" -#. Label of the contact (Link) field in DocType 'CRM Contacts' -#. Label of the contact (Link) field in DocType 'CRM Deal' -#: crm/fcrm/doctype/crm_contacts/crm_contacts.json -#: crm/fcrm/doctype/crm_deal/crm_deal.json +#. Label of the contact (Link) field in PageType 'CRM Contacts' +#. Label of the contact (Link) field in PageType 'CRM Deal' +#: crm/fcrm/pagetype/crm_contacts/crm_contacts.json +#: crm/fcrm/pagetype/crm_deal/crm_deal.json #: frontend/src/components/Layouts/AppSidebar.vue:552 #: frontend/src/components/Modals/ConvertToDealModal.vue:51 #: frontend/src/pages/MobileLead.vue:145 msgid "Contact" msgstr "Kontakt" -#: crm/fcrm/doctype/crm_lead/crm_lead.py:212 +#: crm/fcrm/pagetype/crm_lead/crm_lead.py:212 msgid "Contact Already Exists" msgstr "Kontakt već postoji" @@ -1384,7 +1384,7 @@ msgstr "Kontakt je dodan" msgid "Contact already added" msgstr "Kontakt je već dodan" -#: crm/fcrm/doctype/crm_lead/crm_lead.py:211 +#: crm/fcrm/pagetype/crm_lead/crm_lead.py:211 msgid "Contact already exists with {0}" msgstr "Kontakt već postoji sa {0}" @@ -1405,18 +1405,18 @@ msgstr "Kontakt je uklonjen" msgid "Contact updated" msgstr "Kontakt ažuriran" -#. Label of the contacts_tab (Tab Break) field in DocType 'CRM Deal' -#. Label of the contacts (Table) field in DocType 'CRM Deal' -#. Label of a shortcut in the Frappe CRM Workspace -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/workspace/frappe_crm/frappe_crm.json +#. Label of the contacts_tab (Tab Break) field in PageType 'CRM Deal' +#. Label of the contacts (Table) field in PageType 'CRM Deal' +#. Label of a shortcut in the Jingrow CRM Workspace +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/workspace/jingrow_crm/jingrow_crm.json #: frontend/src/pages/Contact.vue:234 frontend/src/pages/MobileContact.vue:212 #: frontend/src/pages/MobileOrganization.vue:331 msgid "Contacts" msgstr "Kontakti" -#. Label of the content (Text Editor) field in DocType 'FCRM Note' -#: crm/fcrm/doctype/fcrm_note/fcrm_note.json +#. Label of the content (Text Editor) field in PageType 'FCRM Note' +#: crm/fcrm/pagetype/fcrm_note/fcrm_note.json #: frontend/src/components/Modals/NoteModal.vue:33 #: frontend/src/components/Settings/EmailTemplate/EditEmailTemplate.vue:89 #: frontend/src/components/Settings/EmailTemplate/EditEmailTemplate.vue:102 @@ -1456,8 +1456,8 @@ msgstr "Pretvori potencijalnog klijenta u posao" msgid "Convert to Deal" msgstr "Pretvori u Posao" -#. Label of the converted (Check) field in DocType 'CRM Lead' -#: crm/fcrm/doctype/crm_lead/crm_lead.json +#. Label of the converted (Check) field in PageType 'CRM Lead' +#: crm/fcrm/pagetype/crm_lead/crm_lead.json msgid "Converted" msgstr "Pretvoreno" @@ -1533,9 +1533,9 @@ msgstr "Kreiraj Prikaz" msgid "Create an event" msgstr "Kreiraj događaj" -#. Label of the create_customer_on_status_change (Check) field in DocType +#. Label of the create_customer_on_status_change (Check) field in PageType #. 'ERPNext CRM Settings' -#: crm/fcrm/doctype/erpnext_crm_settings/erpnext_crm_settings.json +#: crm/fcrm/pagetype/erpnext_crm_settings/erpnext_crm_settings.json msgid "Create customer on status change" msgstr "Kreiraj Klijenta kod promjene statusa" @@ -1560,13 +1560,13 @@ msgstr "Kreiraj bilješku" msgid "Create your first task" msgstr "Kreiraj zadatak" -#. Label of the currency (Link) field in DocType 'CRM Deal' -#. Label of the currency (Link) field in DocType 'CRM Organization' -#. Label of the currency (Link) field in DocType 'FCRM Settings' -#. Label of the currency_tab (Tab Break) field in DocType 'FCRM Settings' -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_organization/crm_organization.json -#: crm/fcrm/doctype/fcrm_settings/fcrm_settings.json +#. Label of the currency (Link) field in PageType 'CRM Deal' +#. Label of the currency (Link) field in PageType 'CRM Organization' +#. Label of the currency (Link) field in PageType 'FCRM Settings' +#. Label of the currency_tab (Tab Break) field in PageType 'FCRM Settings' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_organization/crm_organization.json +#: crm/fcrm/pagetype/fcrm_settings/fcrm_settings.json #: frontend/src/components/Settings/CurrencySettings.vue:31 msgid "Currency" msgstr "Valuta" @@ -1631,13 +1631,13 @@ msgstr "Dnevni rezultat potencijalnih klijenata, poslova i dobivenih poslova" msgid "Data" msgstr "Podaci" -#. Option for the 'Type' (Select) field in DocType 'CRM Fields Layout' -#: crm/fcrm/doctype/crm_fields_layout/crm_fields_layout.json +#. Option for the 'Type' (Select) field in PageType 'CRM Fields Layout' +#: crm/fcrm/pagetype/crm_fields_layout/crm_fields_layout.json msgid "Data Fields" msgstr "Polja Podataka" -#. Label of the date (Date) field in DocType 'CRM Holiday' -#: crm/api/dashboard.py:601 crm/fcrm/doctype/crm_holiday/crm_holiday.json +#. Label of the date (Date) field in PageType 'CRM Holiday' +#: crm/api/dashboard.py:601 crm/fcrm/pagetype/crm_holiday/crm_holiday.json #: frontend/src/components/Calendar/CalendarEventPanel.vue:202 msgid "Date" msgstr "Datum" @@ -1660,23 +1660,23 @@ msgstr "Datum & Vrijeme" msgid "Deal" msgstr "Posao" -#. Label of the deal_owner (Link) field in DocType 'CRM Deal' -#: crm/fcrm/doctype/crm_deal/crm_deal.json +#. Label of the deal_owner (Link) field in PageType 'CRM Deal' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json msgid "Deal Owner" msgstr "Odgovorni" -#. Label of the deal_status (Link) field in DocType 'ERPNext CRM Settings' -#: crm/fcrm/doctype/erpnext_crm_settings/erpnext_crm_settings.json +#. Label of the deal_status (Link) field in PageType 'ERPNext CRM Settings' +#: crm/fcrm/pagetype/erpnext_crm_settings/erpnext_crm_settings.json msgid "Deal Status" msgstr "Status Posla" -#. Label of a shortcut in the Frappe CRM Workspace -#: crm/fcrm/workspace/frappe_crm/frappe_crm.json +#. Label of a shortcut in the Jingrow CRM Workspace +#: crm/fcrm/workspace/jingrow_crm/jingrow_crm.json msgid "Deal Statuses" msgstr "Status Posla" -#. Label of the deal_value (Currency) field in DocType 'CRM Deal' -#: crm/fcrm/doctype/crm_deal/crm_deal.json +#. Label of the deal_value (Currency) field in PageType 'CRM Deal' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json msgid "Deal Value" msgstr "Vrijednost posla" @@ -1694,8 +1694,8 @@ msgstr "Odgovorni Posla" msgid "Deal value" msgstr "Vrijednost posla" -#. Label of a shortcut in the Frappe CRM Workspace -#: crm/fcrm/workspace/frappe_crm/frappe_crm.json +#. Label of a shortcut in the Jingrow CRM Workspace +#: crm/fcrm/workspace/jingrow_crm/jingrow_crm.json #: frontend/src/pages/Deal.vue:480 frontend/src/pages/MobileContact.vue:288 #: frontend/src/pages/MobileDeal.vue:384 #: frontend/src/pages/MobileOrganization.vue:325 @@ -1732,8 +1732,8 @@ msgstr "Poslovi po distriktu" msgid "Dear {{ lead_name }}, \\n\\nThis is a reminder for the payment of {{ grand_total }}. \\n\\nThanks, \\nFrappé" msgstr "Poštovani {{ lead_name }}, \\n\\nOvo je podsjetnik za plaćanje {{ grand_total }}. \\n\\nHvala, \\nFrappé" -#. Label of the default (Check) field in DocType 'CRM Service Level Agreement' -#: crm/fcrm/doctype/crm_service_level_agreement/crm_service_level_agreement.json +#. Label of the default (Check) field in PageType 'CRM Service Level Agreement' +#: crm/fcrm/pagetype/crm_service_level_agreement/crm_service_level_agreement.json msgid "Default" msgstr "Standard" @@ -1745,8 +1745,8 @@ msgstr "Standard Sanduče Pristigle e-pošte" msgid "Default Incoming" msgstr "Standard Dolazna" -#. Label of the default_medium (Select) field in DocType 'CRM Telephony Agent' -#: crm/fcrm/doctype/crm_telephony_agent/crm_telephony_agent.json +#. Label of the default_medium (Select) field in PageType 'CRM Telephony Agent' +#: crm/fcrm/pagetype/crm_telephony_agent/crm_telephony_agent.json msgid "Default Medium" msgstr "Standard Medij" @@ -1754,9 +1754,9 @@ msgstr "Standard Medij" msgid "Default Outgoing" msgstr "Standard Odlazna" -#. Label of the default_priority (Check) field in DocType 'CRM Service Level +#. Label of the default_priority (Check) field in PageType 'CRM Service Level #. Priority' -#: crm/fcrm/doctype/crm_service_level_priority/crm_service_level_priority.json +#: crm/fcrm/pagetype/crm_service_level_priority/crm_service_level_priority.json msgid "Default Priority" msgstr "Standard Prioritet" @@ -1768,7 +1768,7 @@ msgstr "Standard Slanja" msgid "Default Sending and Inbox" msgstr "Standard Slanja i Prijema" -#: crm/fcrm/doctype/crm_service_level_agreement/crm_service_level_agreement.py:33 +#: crm/fcrm/pagetype/crm_service_level_agreement/crm_service_level_agreement.py:33 msgid "Default Service Level Agreement already exists for {0}" msgstr "Ugovor Standard Nivo Servisa već postoji za {0}." @@ -1788,8 +1788,8 @@ msgstr "Standard medij za pozivanje uspješno ažuriran" msgid "Default medium" msgstr "Standard Medij" -#: crm/fcrm/doctype/fcrm_settings/fcrm_settings.js:18 -#: crm/fcrm/doctype/fcrm_settings/fcrm_settings.js:30 +#: crm/fcrm/pagetype/fcrm_settings/fcrm_settings.js:18 +#: crm/fcrm/pagetype/fcrm_settings/fcrm_settings.js:30 msgid "Default statuses, custom fields and layouts restored successfully." msgstr "Standard status, prilagođena polja i izgledi uspješno su vraćeni." @@ -1825,7 +1825,7 @@ msgstr "Standard status, prilagođena polja i izgledi uspješno su vraćeni." msgid "Delete" msgstr "Izbriši" -#: crm/fcrm/doctype/fcrm_settings/fcrm_settings.js:26 +#: crm/fcrm/pagetype/fcrm_settings/fcrm_settings.js:26 msgid "Delete & Restore" msgstr "Izbriši & Vrati" @@ -1883,14 +1883,14 @@ msgstr "Obriši {0} artikal(a)" msgid "Delete {0} items" msgstr "Obriši {0} artikala" -#. Label of the description (Text Editor) field in DocType 'CRM Holiday' -#. Label of the description (Text Editor) field in DocType 'CRM Lost Reason' -#. Label of the description (Text Editor) field in DocType 'CRM Product' -#. Label of the description (Text Editor) field in DocType 'CRM Task' -#: crm/fcrm/doctype/crm_holiday/crm_holiday.json -#: crm/fcrm/doctype/crm_lost_reason/crm_lost_reason.json -#: crm/fcrm/doctype/crm_product/crm_product.json -#: crm/fcrm/doctype/crm_task/crm_task.json +#. Label of the description (Text Editor) field in PageType 'CRM Holiday' +#. Label of the description (Text Editor) field in PageType 'CRM Lost Reason' +#. Label of the description (Text Editor) field in PageType 'CRM Product' +#. Label of the description (Text Editor) field in PageType 'CRM Task' +#: crm/fcrm/pagetype/crm_holiday/crm_holiday.json +#: crm/fcrm/pagetype/crm_lost_reason/crm_lost_reason.json +#: crm/fcrm/pagetype/crm_product/crm_product.json +#: crm/fcrm/pagetype/crm_task/crm_task.json #: frontend/src/components/Calendar/CalendarEventPanel.vue:152 #: frontend/src/components/Modals/EventModal.vue:134 #: frontend/src/components/Modals/TaskModal.vue:36 @@ -1907,29 +1907,29 @@ msgstr "Opis je obavezan" msgid "Desk" msgstr "Radni Prostor" -#. Label of the details (Tab Break) field in DocType 'CRM Lead' -#. Label of the details (Text Editor) field in DocType 'CRM Lead Source' -#: crm/fcrm/doctype/crm_lead/crm_lead.json -#: crm/fcrm/doctype/crm_lead_source/crm_lead_source.json +#. Label of the details (Tab Break) field in PageType 'CRM Lead' +#. Label of the details (Text Editor) field in PageType 'CRM Lead Source' +#: crm/fcrm/pagetype/crm_lead/crm_lead.json +#: crm/fcrm/pagetype/crm_lead_source/crm_lead_source.json #: frontend/src/pages/MobileContact.vue:283 #: frontend/src/pages/MobileDeal.vue:424 frontend/src/pages/MobileLead.vue:331 #: frontend/src/pages/MobileOrganization.vue:320 msgid "Details" msgstr "Detalji" -#. Label of the call_receiving_device (Select) field in DocType 'CRM Telephony +#. Label of the call_receiving_device (Select) field in PageType 'CRM Telephony #. Agent' -#: crm/fcrm/doctype/crm_telephony_agent/crm_telephony_agent.json +#: crm/fcrm/pagetype/crm_telephony_agent/crm_telephony_agent.json #: frontend/src/components/FilesUploader/FilesUploaderArea.vue:39 msgid "Device" msgstr "Uređaj" -#: crm/fcrm/doctype/crm_form_script/crm_form_script.js:30 +#: crm/fcrm/pagetype/crm_form_script/crm_form_script.js:30 msgid "Disable" msgstr "Onemogući" -#. Label of the disabled (Check) field in DocType 'CRM Product' -#: crm/fcrm/doctype/crm_product/crm_product.json +#. Label of the disabled (Check) field in PageType 'CRM Product' +#: crm/fcrm/pagetype/crm_product/crm_product.json msgid "Disabled" msgstr "Onemogućeno" @@ -1943,27 +1943,27 @@ msgstr "Odbaci" msgid "Discard unsaved changes?" msgstr "Odbaciti nesačuvane promjene?" -#. Label of the discount_percentage (Percent) field in DocType 'CRM Products' -#: crm/fcrm/doctype/crm_products/crm_products.json +#. Label of the discount_percentage (Percent) field in PageType 'CRM Products' +#: crm/fcrm/pagetype/crm_products/crm_products.json msgid "Discount %" msgstr "Popust %" -#. Label of the discount_amount (Currency) field in DocType 'CRM Products' -#: crm/fcrm/doctype/crm_products/crm_products.json +#. Label of the discount_amount (Currency) field in PageType 'CRM Products' +#: crm/fcrm/pagetype/crm_products/crm_products.json msgid "Discount Amount" msgstr "Iznos Popusta" -#. Label of the dt (Link) field in DocType 'CRM Form Script' -#. Label of the dt (Link) field in DocType 'CRM Global Settings' -#. Label of the dt (Link) field in DocType 'CRM View Settings' -#: crm/fcrm/doctype/crm_form_script/crm_form_script.json -#: crm/fcrm/doctype/crm_global_settings/crm_global_settings.json -#: crm/fcrm/doctype/crm_view_settings/crm_view_settings.json -msgid "DocType" -msgstr "DocType" +#. Label of the dt (Link) field in PageType 'CRM Form Script' +#. Label of the dt (Link) field in PageType 'CRM Global Settings' +#. Label of the dt (Link) field in PageType 'CRM View Settings' +#: crm/fcrm/pagetype/crm_form_script/crm_form_script.json +#: crm/fcrm/pagetype/crm_global_settings/crm_global_settings.json +#: crm/fcrm/pagetype/crm_view_settings/crm_view_settings.json +msgid "PageType" +msgstr "PageType" -#. Label of the dt (Link) field in DocType 'CRM Fields Layout' -#: crm/fcrm/doctype/crm_fields_layout/crm_fields_layout.json +#. Label of the dt (Link) field in PageType 'CRM Fields Layout' +#: crm/fcrm/pagetype/crm_fields_layout/crm_fields_layout.json msgid "Document Type" msgstr "Tip Dokumenta" @@ -1983,8 +1983,8 @@ msgstr "Dokument je uspješno ažuriran" msgid "Documentation" msgstr "Dokumentacija" -#. Option for the 'Status' (Select) field in DocType 'CRM Task' -#: crm/fcrm/doctype/crm_task/crm_task.json +#. Option for the 'Status' (Select) field in PageType 'CRM Task' +#: crm/fcrm/pagetype/crm_task/crm_task.json msgid "Done" msgstr "Gotovo" @@ -2006,13 +2006,13 @@ msgstr "Povuci i Ispusti datoteke ovdje ili ih učitaj iz" msgid "Drop files here" msgstr "Ispusti datoteke ovdje" -#. Label of the dropdown_items_tab (Tab Break) field in DocType 'FCRM Settings' -#: crm/fcrm/doctype/fcrm_settings/fcrm_settings.json +#. Label of the dropdown_items_tab (Tab Break) field in PageType 'FCRM Settings' +#: crm/fcrm/pagetype/fcrm_settings/fcrm_settings.json msgid "Dropdown Items" msgstr "Padajuće Stavke" -#. Label of the due_date (Datetime) field in DocType 'CRM Task' -#: crm/fcrm/doctype/crm_task/crm_task.json +#. Label of the due_date (Datetime) field in PageType 'CRM Task' +#: crm/fcrm/pagetype/crm_task/crm_task.json msgid "Due Date" msgstr "Krajnji Rok" @@ -2048,10 +2048,10 @@ msgstr "Dupliciraj događaj" msgid "Duplicate template" msgstr "Dupliciraj šablon" -#. Label of the duration (Duration) field in DocType 'CRM Call Log' -#. Label of the duration (Duration) field in DocType 'CRM Status Change Log' -#: crm/fcrm/doctype/crm_call_log/crm_call_log.json -#: crm/fcrm/doctype/crm_status_change_log/crm_status_change_log.json +#. Label of the duration (Duration) field in PageType 'CRM Call Log' +#. Label of the duration (Duration) field in PageType 'CRM Status Change Log' +#: crm/fcrm/pagetype/crm_call_log/crm_call_log.json +#: crm/fcrm/pagetype/crm_status_change_log/crm_status_change_log.json msgid "Duration" msgstr "Trajanje" @@ -2060,28 +2060,28 @@ msgstr "Trajanje" msgid "ERPNext" msgstr "Sistem" -#. Name of a DocType -#: crm/fcrm/doctype/erpnext_crm_settings/erpnext_crm_settings.json +#. Name of a PageType +#: crm/fcrm/pagetype/erpnext_crm_settings/erpnext_crm_settings.json msgid "ERPNext CRM Settings" msgstr "Postavke Sistema za Prodajnu Podršku" -#. Label of the section_break_oubd (Section Break) field in DocType 'ERPNext +#. Label of the section_break_oubd (Section Break) field in PageType 'ERPNext #. CRM Settings' -#: crm/fcrm/doctype/erpnext_crm_settings/erpnext_crm_settings.json +#: crm/fcrm/pagetype/erpnext_crm_settings/erpnext_crm_settings.json msgid "ERPNext Site API's" msgstr "API-ji Web Stranice Sistema" -#. Label of the erpnext_site_url (Data) field in DocType 'ERPNext CRM Settings' -#: crm/fcrm/doctype/erpnext_crm_settings/erpnext_crm_settings.json +#. Label of the erpnext_site_url (Data) field in PageType 'ERPNext CRM Settings' +#: crm/fcrm/pagetype/erpnext_crm_settings/erpnext_crm_settings.json msgid "ERPNext Site URL" msgstr "URL Web Stranice Sistema" -#: crm/fcrm/doctype/erpnext_crm_settings/erpnext_crm_settings.py:25 +#: crm/fcrm/pagetype/erpnext_crm_settings/erpnext_crm_settings.py:25 msgid "ERPNext is not installed in the current site" msgstr "Sistem nije instaliran na trenutnoj Web Stranici" -#: crm/fcrm/doctype/erpnext_crm_settings/erpnext_crm_settings.py:98 -#: crm/fcrm/doctype/erpnext_crm_settings/erpnext_crm_settings.py:124 +#: crm/fcrm/pagetype/erpnext_crm_settings/erpnext_crm_settings.py:98 +#: crm/fcrm/pagetype/erpnext_crm_settings/erpnext_crm_settings.py:124 msgid "ERPNext is not integrated with the CRM" msgstr "Sistem nije integrisan sa Prodajnom Podrškom" @@ -2191,12 +2191,12 @@ msgstr "Uređivanje Reda {0}" msgid "Editing event" msgstr "Uređivanje događaja" -#. Label of the email (Data) field in DocType 'CRM Contacts' -#. Label of the email (Data) field in DocType 'CRM Invitation' -#. Label of the email (Data) field in DocType 'CRM Lead' -#: crm/fcrm/doctype/crm_contacts/crm_contacts.json -#: crm/fcrm/doctype/crm_invitation/crm_invitation.json -#: crm/fcrm/doctype/crm_lead/crm_lead.json frontend/src/pages/Contact.vue:510 +#. Label of the email (Data) field in PageType 'CRM Contacts' +#. Label of the email (Data) field in PageType 'CRM Invitation' +#. Label of the email (Data) field in PageType 'CRM Lead' +#: crm/fcrm/pagetype/crm_contacts/crm_contacts.json +#: crm/fcrm/pagetype/crm_invitation/crm_invitation.json +#: crm/fcrm/pagetype/crm_lead/crm_lead.json frontend/src/pages/Contact.vue:510 #: frontend/src/pages/MobileContact.vue:518 #: frontend/src/pages/MobileOrganization.vue:462 #: frontend/src/pages/MobileOrganization.vue:490 @@ -2213,8 +2213,8 @@ msgstr "Računi e-pošte" msgid "Email ID is required" msgstr "Adresa e-pošte je obavezna" -#. Label of the email_sent_at (Datetime) field in DocType 'CRM Invitation' -#: crm/fcrm/doctype/crm_invitation/crm_invitation.json +#. Label of the email_sent_at (Datetime) field in PageType 'CRM Invitation' +#: crm/fcrm/pagetype/crm_invitation/crm_invitation.json msgid "Email Sent At" msgstr "E-pošta poslana u" @@ -2272,12 +2272,12 @@ msgstr "Prazno - Odaberi polje po kojem ćete filtrirati" msgid "Empty - Choose a field to sort by" msgstr "Prazno - Odaberi polje po kojem ćete sortirati" -#: crm/fcrm/doctype/crm_form_script/crm_form_script.js:30 +#: crm/fcrm/pagetype/crm_form_script/crm_form_script.js:30 msgid "Enable" msgstr "Omogući" -#. Label of the enable_forecasting (Check) field in DocType 'FCRM Settings' -#: crm/fcrm/doctype/fcrm_settings/fcrm_settings.json +#. Label of the enable_forecasting (Check) field in PageType 'FCRM Settings' +#: crm/fcrm/pagetype/fcrm_settings/fcrm_settings.json msgid "Enable Forecasting" msgstr "Omogući Predviđanje" @@ -2293,18 +2293,18 @@ msgstr "Omogući Odlaznu" msgid "Enable forecasting" msgstr "Omogući Predviđanje" -#. Label of the enabled (Check) field in DocType 'CRM Exotel Settings' -#. Label of the enabled (Check) field in DocType 'CRM Form Script' -#. Label of the enabled (Check) field in DocType 'CRM Service Level Agreement' -#. Label of the enabled (Check) field in DocType 'CRM Twilio Settings' -#. Label of the enabled (Check) field in DocType 'ERPNext CRM Settings' -#. Label of the enabled (Check) field in DocType 'Helpdesk CRM Settings' -#: crm/fcrm/doctype/crm_exotel_settings/crm_exotel_settings.json -#: crm/fcrm/doctype/crm_form_script/crm_form_script.json -#: crm/fcrm/doctype/crm_service_level_agreement/crm_service_level_agreement.json -#: crm/fcrm/doctype/crm_twilio_settings/crm_twilio_settings.json -#: crm/fcrm/doctype/erpnext_crm_settings/erpnext_crm_settings.json -#: crm/fcrm/doctype/helpdesk_crm_settings/helpdesk_crm_settings.json +#. Label of the enabled (Check) field in PageType 'CRM Exotel Settings' +#. Label of the enabled (Check) field in PageType 'CRM Form Script' +#. Label of the enabled (Check) field in PageType 'CRM Service Level Agreement' +#. Label of the enabled (Check) field in PageType 'CRM Twilio Settings' +#. Label of the enabled (Check) field in PageType 'ERPNext CRM Settings' +#. Label of the enabled (Check) field in PageType 'Helpdesk CRM Settings' +#: crm/fcrm/pagetype/crm_exotel_settings/crm_exotel_settings.json +#: crm/fcrm/pagetype/crm_form_script/crm_form_script.json +#: crm/fcrm/pagetype/crm_service_level_agreement/crm_service_level_agreement.json +#: crm/fcrm/pagetype/crm_twilio_settings/crm_twilio_settings.json +#: crm/fcrm/pagetype/erpnext_crm_settings/erpnext_crm_settings.json +#: crm/fcrm/pagetype/helpdesk_crm_settings/helpdesk_crm_settings.json #: frontend/src/components/Settings/AssignmentRules/AssignmentRuleView.vue:32 #: frontend/src/components/Settings/AssignmentRules/AssignmentRulesList.vue:21 #: frontend/src/components/Settings/EmailTemplate/EditEmailTemplate.vue:18 @@ -2313,15 +2313,15 @@ msgstr "Omogući Predviđanje" msgid "Enabled" msgstr "Omogućeno" -#. Label of the end_date (Date) field in DocType 'CRM Service Level Agreement' -#: crm/fcrm/doctype/crm_service_level_agreement/crm_service_level_agreement.json +#. Label of the end_date (Date) field in PageType 'CRM Service Level Agreement' +#: crm/fcrm/pagetype/crm_service_level_agreement/crm_service_level_agreement.json msgid "End Date" msgstr "Datum završetka" -#. Label of the end_time (Datetime) field in DocType 'CRM Call Log' -#. Label of the end_time (Time) field in DocType 'CRM Service Day' -#: crm/fcrm/doctype/crm_call_log/crm_call_log.json -#: crm/fcrm/doctype/crm_service_day/crm_service_day.json +#. Label of the end_time (Datetime) field in PageType 'CRM Call Log' +#. Label of the end_time (Time) field in PageType 'CRM Service Day' +#: crm/fcrm/pagetype/crm_call_log/crm_call_log.json +#: crm/fcrm/pagetype/crm_service_day/crm_service_day.json #: frontend/src/components/Calendar/CalendarEventPanel.vue:242 #: frontend/src/components/Modals/EventModal.vue:112 msgid "End Time" @@ -2362,15 +2362,15 @@ msgstr "Greška pri pretvaranju u posao: {0}" msgid "Error updating field" msgstr "Greška pri ažuriranju polja" -#: crm/fcrm/doctype/erpnext_crm_settings/erpnext_crm_settings.py:279 +#: crm/fcrm/pagetype/erpnext_crm_settings/erpnext_crm_settings.py:279 msgid "Error while creating customer in ERPNext, check error log for more details" msgstr "Greška prilikom kreiranja klijenta u Sistemu, provjerite zapisnik grešaka za više detalja" -#: crm/fcrm/doctype/erpnext_crm_settings/erpnext_crm_settings.py:191 +#: crm/fcrm/pagetype/erpnext_crm_settings/erpnext_crm_settings.py:191 msgid "Error while creating prospect in ERPNext, check error log for more details" msgstr "Greška prilikom kreiranja potencijalnog klijenta u Sistemu, provjeri zapisnik grešaka za više detalja" -#: crm/fcrm/doctype/erpnext_crm_settings/erpnext_crm_settings.py:117 +#: crm/fcrm/pagetype/erpnext_crm_settings/erpnext_crm_settings.py:117 msgid "Error while fetching customer in ERPNext, check error log for more details" msgstr "Greška prilikom preuzimanja klijenta u Sistem, provjeri zapisnik grešaka za više detalja" @@ -2395,16 +2395,16 @@ msgstr "Događaji" msgid "Excel" msgstr "Excel" -#. Label of the exchange_rate (Float) field in DocType 'CRM Deal' -#. Label of the exchange_rate (Float) field in DocType 'CRM Organization' -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_organization/crm_organization.json +#. Label of the exchange_rate (Float) field in PageType 'CRM Deal' +#. Label of the exchange_rate (Float) field in PageType 'CRM Organization' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_organization/crm_organization.json msgid "Exchange Rate" msgstr "Devizni Kurs" -#. Label of the exchange_rate_provider_section (Section Break) field in DocType +#. Label of the exchange_rate_provider_section (Section Break) field in PageType #. 'FCRM Settings' -#: crm/fcrm/doctype/fcrm_settings/fcrm_settings.json +#: crm/fcrm/pagetype/fcrm_settings/fcrm_settings.json msgid "Exchange Rate Provider" msgstr "Pružatelj Usluga Kursa" @@ -2412,12 +2412,12 @@ msgstr "Pružatelj Usluga Kursa" msgid "Exchange rate provider" msgstr "Pružatelj Usluga Kursa" -#. Option for the 'Telephony Medium' (Select) field in DocType 'CRM Call Log' -#. Label of the exotel (Check) field in DocType 'CRM Telephony Agent' -#. Option for the 'Default Medium' (Select) field in DocType 'CRM Telephony +#. Option for the 'Telephony Medium' (Select) field in PageType 'CRM Call Log' +#. Label of the exotel (Check) field in PageType 'CRM Telephony Agent' +#. Option for the 'Default Medium' (Select) field in PageType 'CRM Telephony #. Agent' -#: crm/fcrm/doctype/crm_call_log/crm_call_log.json -#: crm/fcrm/doctype/crm_telephony_agent/crm_telephony_agent.json +#: crm/fcrm/pagetype/crm_call_log/crm_call_log.json +#: crm/fcrm/pagetype/crm_telephony_agent/crm_telephony_agent.json #: frontend/src/components/Layouts/AppSidebar.vue:602 #: frontend/src/components/Settings/TelephonySettings.vue:41 #: frontend/src/components/Settings/TelephonySettings.vue:63 @@ -2428,8 +2428,8 @@ msgstr "Exotel" msgid "Exotel Exception" msgstr "Exotel Iznimka" -#. Label of the exotel_number (Data) field in DocType 'CRM Telephony Agent' -#: crm/fcrm/doctype/crm_telephony_agent/crm_telephony_agent.json +#. Label of the exotel_number (Data) field in PageType 'CRM Telephony Agent' +#: crm/fcrm/pagetype/crm_telephony_agent/crm_telephony_agent.json msgid "Exotel Number" msgstr "Exotel Broj" @@ -2453,26 +2453,26 @@ msgstr "Postavke Exotela uspješno ažurirane" msgid "Expand" msgstr "Proširi" -#. Label of the expected_closure_date (Date) field in DocType 'CRM Deal' -#: crm/fcrm/doctype/crm_deal/crm_deal.json +#. Label of the expected_closure_date (Date) field in PageType 'CRM Deal' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json msgid "Expected Closure Date" msgstr "Očekivani datum zatvaranja" -#: crm/fcrm/doctype/crm_deal/crm_deal.py:173 +#: crm/fcrm/pagetype/crm_deal/crm_deal.py:173 msgid "Expected Closure Date is required." msgstr "Očekivani datum zatvaranja je obavezan." -#. Label of the expected_deal_value (Currency) field in DocType 'CRM Deal' -#: crm/fcrm/doctype/crm_deal/crm_deal.json +#. Label of the expected_deal_value (Currency) field in PageType 'CRM Deal' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json msgid "Expected Deal Value" msgstr "Očekivana vrijednost posla" -#: crm/fcrm/doctype/crm_deal/crm_deal.py:171 +#: crm/fcrm/pagetype/crm_deal/crm_deal.py:171 msgid "Expected Deal Value is required." msgstr "Očekivana vrijednost posla je obavezna." -#. Option for the 'Status' (Select) field in DocType 'CRM Invitation' -#: crm/fcrm/doctype/crm_invitation/crm_invitation.json +#. Option for the 'Status' (Select) field in PageType 'CRM Invitation' +#: crm/fcrm/pagetype/crm_invitation/crm_invitation.json msgid "Expired" msgstr "Isteklo" @@ -2489,22 +2489,22 @@ msgstr "Izvezi Sve {0} Zapis(e)" msgid "Export Type" msgstr "Tip Izvoza" -#. Name of a DocType -#: crm/fcrm/doctype/fcrm_note/fcrm_note.json +#. Name of a PageType +#: crm/fcrm/pagetype/fcrm_note/fcrm_note.json msgid "FCRM Note" msgstr "Napomena" -#. Name of a DocType -#: crm/fcrm/doctype/fcrm_settings/fcrm_settings.json +#. Name of a PageType +#: crm/fcrm/pagetype/fcrm_settings/fcrm_settings.json msgid "FCRM Settings" msgstr "Postavke" -#. Option for the 'Status' (Select) field in DocType 'CRM Call Log' -#. Option for the 'SLA Status' (Select) field in DocType 'CRM Deal' -#. Option for the 'SLA Status' (Select) field in DocType 'CRM Lead' -#: crm/fcrm/doctype/crm_call_log/crm_call_log.json -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_lead/crm_lead.json +#. Option for the 'Status' (Select) field in PageType 'CRM Call Log' +#. Option for the 'SLA Status' (Select) field in PageType 'CRM Deal' +#. Option for the 'SLA Status' (Select) field in PageType 'CRM Lead' +#: crm/fcrm/pagetype/crm_call_log/crm_call_log.json +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_lead/crm_lead.json msgid "Failed" msgstr "Neuspješno" @@ -2528,7 +2528,7 @@ msgstr "Nije uspjelo kreiranje šablona" msgid "Failed to delete template" msgstr "Brisanje šablona nije uspjelo" -#: crm/fcrm/doctype/fcrm_settings/fcrm_settings.py:205 +#: crm/fcrm/pagetype/fcrm_settings/fcrm_settings.py:205 msgid "Failed to fetch exchange rate from {0} to {1} on {2}. Please check your internet connection or try again later." msgstr "Nije moguće preuzeti kurs iz {0} u {1} {2}. Molimo provjerite internet vezu ili pokušajte ponovo kasnije." @@ -2561,8 +2561,8 @@ msgstr "Ažuriranje profila nije uspjelo" msgid "Failed to update template" msgstr "Ažuriranje šablona nije uspjelo" -#. Label of the favicon (Attach) field in DocType 'FCRM Settings' -#: crm/fcrm/doctype/fcrm_settings/fcrm_settings.json +#. Label of the favicon (Attach) field in PageType 'FCRM Settings' +#: crm/fcrm/pagetype/fcrm_settings/fcrm_settings.json #: frontend/src/components/Settings/BrandSettings.vue:87 msgid "Favicon" msgstr "Favicon" @@ -2586,23 +2586,23 @@ msgid "File \"{0}\" was skipped because only {1} uploads are allowed" msgstr "Datoteka \"{0}\" je preskočena jer je dopušteno samo {1} učitavanje" #: frontend/src/components/FilesUploader/FilesUploaderArea.vue:359 -msgid "File \"{0}\" was skipped because only {1} uploads are allowed for DocType \"{2}\"" -msgstr "Datoteka \"{0}\" je preskočena jer su samo {1} učitavanja dopuštena za DocType \"{2}\"" +msgid "File \"{0}\" was skipped because only {1} uploads are allowed for PageType \"{2}\"" +msgstr "Datoteka \"{0}\" je preskočena jer su samo {1} učitavanja dopuštena za PageType \"{2}\"" #: frontend/src/components/Filter.vue:6 msgid "Filter" msgstr "Filter" -#. Label of the filters (Code) field in DocType 'CRM View Settings' -#. Label of the filters_tab (Tab Break) field in DocType 'CRM View Settings' -#: crm/fcrm/doctype/crm_view_settings/crm_view_settings.json +#. Label of the filters (Code) field in PageType 'CRM View Settings' +#. Label of the filters_tab (Tab Break) field in PageType 'CRM View Settings' +#: crm/fcrm/pagetype/crm_view_settings/crm_view_settings.json msgid "Filters" msgstr "Filteri" -#. Label of the first_name (Data) field in DocType 'CRM Deal' -#. Label of the first_name (Data) field in DocType 'CRM Lead' -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_lead/crm_lead.json +#. Label of the first_name (Data) field in PageType 'CRM Deal' +#. Label of the first_name (Data) field in PageType 'CRM Lead' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_lead/crm_lead.json #: frontend/src/components/ColumnSettings.vue:103 #: frontend/src/components/Filter.vue:57 frontend/src/components/Filter.vue:88 #: frontend/src/components/SortBy.vue:6 frontend/src/components/SortBy.vue:103 @@ -2614,30 +2614,30 @@ msgstr "Ime" msgid "First Name is mandatory" msgstr "Ime je obavezno" -#. Label of the first_responded_on (Datetime) field in DocType 'CRM Deal' -#. Label of the first_responded_on (Datetime) field in DocType 'CRM Lead' -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_lead/crm_lead.json +#. Label of the first_responded_on (Datetime) field in PageType 'CRM Deal' +#. Label of the first_responded_on (Datetime) field in PageType 'CRM Lead' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_lead/crm_lead.json msgid "First Responded On" msgstr "Prvi Odgovor" -#. Option for the 'SLA Status' (Select) field in DocType 'CRM Deal' -#. Option for the 'SLA Status' (Select) field in DocType 'CRM Lead' -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_lead/crm_lead.json +#. Option for the 'SLA Status' (Select) field in PageType 'CRM Deal' +#. Option for the 'SLA Status' (Select) field in PageType 'CRM Lead' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_lead/crm_lead.json msgid "First Response Due" msgstr "Rok za Prvi Odgovor" -#. Label of the first_response_time (Duration) field in DocType 'CRM Service +#. Label of the first_response_time (Duration) field in PageType 'CRM Service #. Level Priority' -#: crm/fcrm/doctype/crm_service_level_priority/crm_service_level_priority.json +#: crm/fcrm/pagetype/crm_service_level_priority/crm_service_level_priority.json msgid "First Response TIme" msgstr "Vrijeme Prvog Odgovora" -#. Label of the first_response_time (Duration) field in DocType 'CRM Deal' -#. Label of the first_response_time (Duration) field in DocType 'CRM Lead' -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_lead/crm_lead.json +#. Label of the first_response_time (Duration) field in PageType 'CRM Deal' +#. Label of the first_response_time (Duration) field in PageType 'CRM Lead' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_lead/crm_lead.json msgid "First Response Time" msgstr "Vrijeme Prvog Odgovora" @@ -2670,66 +2670,66 @@ msgstr "Predviđanje je uspješno onemogućeno" msgid "Forecasting enabled successfully" msgstr "Predviđanje je uspješno omogućeno" -#. Option for the 'Apply To' (Select) field in DocType 'CRM Form Script' -#: crm/fcrm/doctype/crm_form_script/crm_form_script.json +#. Option for the 'Apply To' (Select) field in PageType 'CRM Form Script' +#: crm/fcrm/pagetype/crm_form_script/crm_form_script.json msgid "Form" msgstr "Forma" -#: crm/fcrm/doctype/erpnext_crm_settings/erpnext_crm_settings.js:19 +#: crm/fcrm/pagetype/erpnext_crm_settings/erpnext_crm_settings.js:19 msgid "Form Script updated successfully" msgstr "Skripta Forme je uspješno ažurirana" #. Name of a Workspace -#: crm/fcrm/workspace/frappe_crm/frappe_crm.json -msgid "Frappe CRM" +#: crm/fcrm/workspace/jingrow_crm/jingrow_crm.json +msgid "Jingrow CRM" msgstr "Podrška Prodaje" #: frontend/src/components/Layouts/AppSidebar.vue:608 -msgid "Frappe CRM mobile" +msgid "Jingrow CRM mobile" msgstr "Mobilna Aplikacija" -#. Option for the 'Weekly Off' (Select) field in DocType 'CRM Holiday List' -#. Option for the 'Workday' (Select) field in DocType 'CRM Service Day' -#: crm/fcrm/doctype/crm_holiday_list/crm_holiday_list.json -#: crm/fcrm/doctype/crm_service_day/crm_service_day.json +#. Option for the 'Weekly Off' (Select) field in PageType 'CRM Holiday List' +#. Option for the 'Workday' (Select) field in PageType 'CRM Service Day' +#: crm/fcrm/pagetype/crm_holiday_list/crm_holiday_list.json +#: crm/fcrm/pagetype/crm_service_day/crm_service_day.json msgid "Friday" msgstr "Petak" -#. Label of the from (Data) field in DocType 'CRM Call Log' -#. Label of the from (Data) field in DocType 'CRM Status Change Log' -#: crm/fcrm/doctype/crm_call_log/crm_call_log.json -#: crm/fcrm/doctype/crm_status_change_log/crm_status_change_log.json +#. Label of the from (Data) field in PageType 'CRM Call Log' +#. Label of the from (Data) field in PageType 'CRM Status Change Log' +#: crm/fcrm/pagetype/crm_call_log/crm_call_log.json +#: crm/fcrm/pagetype/crm_status_change_log/crm_status_change_log.json msgid "From" msgstr "Od" -#. Label of the from_date (Date) field in DocType 'CRM Holiday List' -#. Label of the from_date (Datetime) field in DocType 'CRM Status Change Log' -#: crm/fcrm/doctype/crm_holiday_list/crm_holiday_list.json -#: crm/fcrm/doctype/crm_status_change_log/crm_status_change_log.json +#. Label of the from_date (Date) field in PageType 'CRM Holiday List' +#. Label of the from_date (Datetime) field in PageType 'CRM Status Change Log' +#: crm/fcrm/pagetype/crm_holiday_list/crm_holiday_list.json +#: crm/fcrm/pagetype/crm_status_change_log/crm_status_change_log.json msgid "From Date" msgstr "Od Datuma" -#. Label of the from_type (Data) field in DocType 'CRM Status Change Log' -#: crm/fcrm/doctype/crm_status_change_log/crm_status_change_log.json +#. Label of the from_type (Data) field in PageType 'CRM Status Change Log' +#: crm/fcrm/pagetype/crm_status_change_log/crm_status_change_log.json msgid "From Type" msgstr "Od Tipa" -#. Label of the from_user (Link) field in DocType 'CRM Notification' -#: crm/fcrm/doctype/crm_notification/crm_notification.json +#. Label of the from_user (Link) field in PageType 'CRM Notification' +#: crm/fcrm/pagetype/crm_notification/crm_notification.json msgid "From User" msgstr "Od korisnika" -#. Option for the 'SLA Status' (Select) field in DocType 'CRM Deal' -#. Option for the 'SLA Status' (Select) field in DocType 'CRM Lead' -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_lead/crm_lead.json +#. Option for the 'SLA Status' (Select) field in PageType 'CRM Deal' +#. Option for the 'SLA Status' (Select) field in PageType 'CRM Lead' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_lead/crm_lead.json msgid "Fulfilled" msgstr "Ispunjeno" -#. Label of the full_name (Data) field in DocType 'CRM Contacts' -#. Label of the lead_name (Data) field in DocType 'CRM Lead' -#: crm/fcrm/doctype/crm_contacts/crm_contacts.json -#: crm/fcrm/doctype/crm_lead/crm_lead.json +#. Label of the full_name (Data) field in PageType 'CRM Contacts' +#. Label of the lead_name (Data) field in PageType 'CRM Lead' +#: crm/fcrm/pagetype/crm_contacts/crm_contacts.json +#: crm/fcrm/pagetype/crm_lead/crm_lead.json msgid "Full Name" msgstr "Puno Ime" @@ -2742,12 +2742,12 @@ msgstr "Konverzija lijevka" msgid "GMT+5:30" msgstr "GMT+5:30" -#. Label of the gender (Link) field in DocType 'CRM Contacts' -#. Label of the gender (Link) field in DocType 'CRM Deal' -#. Label of the gender (Link) field in DocType 'CRM Lead' -#: crm/fcrm/doctype/crm_contacts/crm_contacts.json -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_lead/crm_lead.json +#. Label of the gender (Link) field in PageType 'CRM Contacts' +#. Label of the gender (Link) field in PageType 'CRM Deal' +#. Label of the gender (Link) field in PageType 'CRM Lead' +#: crm/fcrm/pagetype/crm_contacts/crm_contacts.json +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_lead/crm_lead.json msgid "Gender" msgstr "Rod" @@ -2771,20 +2771,20 @@ msgstr "Idi na stranicu pozivnica" msgid "Go to website" msgstr "Idi na web stranicu" -#. Option for the 'Type' (Select) field in DocType 'CRM Fields Layout' -#: crm/fcrm/doctype/crm_fields_layout/crm_fields_layout.json +#. Option for the 'Type' (Select) field in PageType 'CRM Fields Layout' +#: crm/fcrm/pagetype/crm_fields_layout/crm_fields_layout.json msgid "Grid Row" msgstr "Red Mreže" -#. Label of the group_by_tab (Tab Break) field in DocType 'CRM View Settings' -#: crm/fcrm/doctype/crm_view_settings/crm_view_settings.json +#. Label of the group_by_tab (Tab Break) field in PageType 'CRM View Settings' +#: crm/fcrm/pagetype/crm_view_settings/crm_view_settings.json #: frontend/src/components/ViewControls.vue:379 #: frontend/src/components/ViewControls.vue:611 frontend/src/utils/view.js:16 msgid "Group By" msgstr "Grupiši po" -#. Label of the group_by_field (Data) field in DocType 'CRM View Settings' -#: crm/fcrm/doctype/crm_view_settings/crm_view_settings.json +#. Label of the group_by_field (Data) field in PageType 'CRM View Settings' +#: crm/fcrm/pagetype/crm_view_settings/crm_view_settings.json msgid "Group By Field" msgstr "Grupiraj po Polju" @@ -2808,28 +2808,28 @@ msgstr "Pomoć" msgid "Helpdesk" msgstr "Podrška" -#. Name of a DocType -#: crm/fcrm/doctype/helpdesk_crm_settings/helpdesk_crm_settings.json +#. Name of a PageType +#: crm/fcrm/pagetype/helpdesk_crm_settings/helpdesk_crm_settings.json msgid "Helpdesk CRM Settings" msgstr "Helpdesk Postavke Prodajne Podršku" -#. Label of the helpdesk_site_apis_section (Section Break) field in DocType +#. Label of the helpdesk_site_apis_section (Section Break) field in PageType #. 'Helpdesk CRM Settings' -#: crm/fcrm/doctype/helpdesk_crm_settings/helpdesk_crm_settings.json +#: crm/fcrm/pagetype/helpdesk_crm_settings/helpdesk_crm_settings.json msgid "Helpdesk Site API's" msgstr "API Helpdesk sajta" -#. Label of the helpdesk_site_url (Data) field in DocType 'Helpdesk CRM +#. Label of the helpdesk_site_url (Data) field in PageType 'Helpdesk CRM #. Settings' -#: crm/fcrm/doctype/helpdesk_crm_settings/helpdesk_crm_settings.json +#: crm/fcrm/pagetype/helpdesk_crm_settings/helpdesk_crm_settings.json msgid "Helpdesk Site URL" msgstr "URL Helpdesk sajta" -#: crm/fcrm/doctype/helpdesk_crm_settings/helpdesk_crm_settings.py:18 +#: crm/fcrm/pagetype/helpdesk_crm_settings/helpdesk_crm_settings.py:18 msgid "Helpdesk is not installed in the current site" msgstr "Helpdesk nije instaliran na trenutnom sajtu" -#: crm/fcrm/doctype/helpdesk_crm_settings/helpdesk_crm_settings.py:40 +#: crm/fcrm/pagetype/helpdesk_crm_settings/helpdesk_crm_settings.py:40 msgid "Helpdesk is not integrated with the CRM" msgstr "Helpdesk nije integrisan sa Prodajnom Podrškom" @@ -2845,8 +2845,8 @@ msgstr "Helpdeks Postavke ažurirane" msgid "Hi John, \\n\\nCan you please provide more details on this..." msgstr "Zdravo Johne, \\n\\nMožete li dati više detalja o ovome..." -#. Label of the hidden (Check) field in DocType 'CRM Dropdown Item' -#: crm/fcrm/doctype/crm_dropdown_item/crm_dropdown_item.json +#. Label of the hidden (Check) field in PageType 'CRM Dropdown Item' +#: crm/fcrm/pagetype/crm_dropdown_item/crm_dropdown_item.json msgid "Hidden" msgstr "Sakriveno" @@ -2877,26 +2877,26 @@ msgstr "Sakrij oznaku" msgid "Hide preview" msgstr "Sakrij Pregled" -#. Option for the 'Priority' (Select) field in DocType 'CRM Task' -#: crm/fcrm/doctype/crm_task/crm_task.json +#. Option for the 'Priority' (Select) field in PageType 'CRM Task' +#: crm/fcrm/pagetype/crm_task/crm_task.json msgid "High" msgstr "Visoki" -#. Label of the holiday_list (Link) field in DocType 'CRM Service Level +#. Label of the holiday_list (Link) field in PageType 'CRM Service Level #. Agreement' -#: crm/fcrm/doctype/crm_service_level_agreement/crm_service_level_agreement.json +#: crm/fcrm/pagetype/crm_service_level_agreement/crm_service_level_agreement.json msgid "Holiday List" msgstr "Lista Praznika" -#. Label of the holiday_list_name (Data) field in DocType 'CRM Holiday List' -#: crm/fcrm/doctype/crm_holiday_list/crm_holiday_list.json +#. Label of the holiday_list_name (Data) field in PageType 'CRM Holiday List' +#: crm/fcrm/pagetype/crm_holiday_list/crm_holiday_list.json msgid "Holiday List Name" msgstr "Naziv Liste Praznika" -#. Label of the holidays_section (Section Break) field in DocType 'CRM Holiday +#. Label of the holidays_section (Section Break) field in PageType 'CRM Holiday #. List' -#. Label of the holidays (Table) field in DocType 'CRM Holiday List' -#: crm/fcrm/doctype/crm_holiday_list/crm_holiday_list.json +#. Label of the holidays (Table) field in PageType 'CRM Holiday List' +#: crm/fcrm/pagetype/crm_holiday_list/crm_holiday_list.json msgid "Holidays" msgstr "Praznici" @@ -2914,15 +2914,15 @@ msgstr "Kućne akcije" msgid "I understand, add conditions" msgstr "Razumijem, dodaj uslove" -#. Label of the id (Data) field in DocType 'CRM Call Log' -#: crm/fcrm/doctype/crm_call_log/crm_call_log.json +#. Label of the id (Data) field in PageType 'CRM Call Log' +#: crm/fcrm/pagetype/crm_call_log/crm_call_log.json msgid "ID" msgstr "ID" -#. Label of the icon (Code) field in DocType 'CRM Dropdown Item' -#. Label of the icon (Data) field in DocType 'CRM View Settings' -#: crm/fcrm/doctype/crm_dropdown_item/crm_dropdown_item.json -#: crm/fcrm/doctype/crm_view_settings/crm_view_settings.json +#. Label of the icon (Code) field in PageType 'CRM Dropdown Item' +#. Label of the icon (Data) field in PageType 'CRM View Settings' +#: crm/fcrm/pagetype/crm_dropdown_item/crm_dropdown_item.json +#: crm/fcrm/pagetype/crm_view_settings/crm_view_settings.json msgid "Icon" msgstr "Ikona" @@ -2942,10 +2942,10 @@ msgstr "Ako je omogućeno, odlazna e-pošta može se slati s ovog računa." msgid "If enabled, records can be created from the incoming emails on this account." msgstr "Ako je omogućeno, zapisi se mogu kreirati iz dolazne e-pošte na ovom računu." -#. Label of the image (Attach Image) field in DocType 'CRM Lead' -#. Label of the image (Attach Image) field in DocType 'CRM Product' -#: crm/fcrm/doctype/crm_lead/crm_lead.json -#: crm/fcrm/doctype/crm_product/crm_product.json +#. Label of the image (Attach Image) field in PageType 'CRM Lead' +#. Label of the image (Attach Image) field in PageType 'CRM Product' +#: crm/fcrm/pagetype/crm_lead/crm_lead.json +#: crm/fcrm/pagetype/crm_product/crm_product.json msgid "Image" msgstr "Slika" @@ -2957,10 +2957,10 @@ msgstr "Slika" msgid "In" msgstr "U" -#. Option for the 'Status' (Select) field in DocType 'CRM Call Log' -#. Option for the 'Status' (Select) field in DocType 'CRM Task' -#: crm/fcrm/doctype/crm_call_log/crm_call_log.json -#: crm/fcrm/doctype/crm_task/crm_task.json +#. Option for the 'Status' (Select) field in PageType 'CRM Call Log' +#. Option for the 'Status' (Select) field in PageType 'CRM Task' +#: crm/fcrm/pagetype/crm_call_log/crm_call_log.json +#: crm/fcrm/pagetype/crm_task/crm_task.json msgid "In Progress" msgstr "U Toku" @@ -2976,8 +2976,8 @@ msgstr "Dolazni Poziv" msgid "Inbox" msgstr "Pristigla Pošta" -#. Option for the 'Type' (Select) field in DocType 'CRM Call Log' -#: crm/fcrm/doctype/crm_call_log/crm_call_log.json +#. Option for the 'Type' (Select) field in PageType 'CRM Call Log' +#: crm/fcrm/pagetype/crm_call_log/crm_call_log.json msgid "Incoming" msgstr "Dolazeći" @@ -2985,24 +2985,24 @@ msgstr "Dolazeći" msgid "Incoming call..." msgstr "Dolazni poziv..." -#. Label of a shortcut in the Frappe CRM Workspace -#: crm/fcrm/workspace/frappe_crm/frappe_crm.json +#. Label of a shortcut in the Jingrow CRM Workspace +#: crm/fcrm/workspace/jingrow_crm/jingrow_crm.json msgid "Industries" msgstr "Industrije" -#. Label of the industry (Link) field in DocType 'CRM Deal' -#. Label of the industry (Data) field in DocType 'CRM Industry' -#. Label of the industry (Link) field in DocType 'CRM Lead' -#. Label of the industry (Link) field in DocType 'CRM Organization' -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_industry/crm_industry.json -#: crm/fcrm/doctype/crm_lead/crm_lead.json -#: crm/fcrm/doctype/crm_organization/crm_organization.json +#. Label of the industry (Link) field in PageType 'CRM Deal' +#. Label of the industry (Data) field in PageType 'CRM Industry' +#. Label of the industry (Link) field in PageType 'CRM Lead' +#. Label of the industry (Link) field in PageType 'CRM Organization' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_industry/crm_industry.json +#: crm/fcrm/pagetype/crm_lead/crm_lead.json +#: crm/fcrm/pagetype/crm_organization/crm_organization.json msgid "Industry" msgstr "Industrija" -#. Option for the 'Status' (Select) field in DocType 'CRM Call Log' -#: crm/fcrm/doctype/crm_call_log/crm_call_log.json +#. Option for the 'Status' (Select) field in PageType 'CRM Call Log' +#: crm/fcrm/pagetype/crm_call_log/crm_call_log.json msgid "Initiated" msgstr "Pokrenut" @@ -3037,7 +3037,7 @@ msgstr "Integracije" msgid "Introduction" msgstr "Uvod" -#: crm/fcrm/doctype/crm_twilio_settings/crm_twilio_settings.py:33 +#: crm/fcrm/pagetype/crm_twilio_settings/crm_twilio_settings.py:33 msgid "Invalid Account SID or Auth Token." msgstr "Nevažeći SID računa ili Auth Token." @@ -3054,7 +3054,7 @@ msgstr "Nevažeći Exotel Broj" msgid "Invalid chart name" msgstr "Nevažeći naziv grafikona" -#: crm/fcrm/doctype/crm_exotel_settings/crm_exotel_settings.py:25 +#: crm/fcrm/pagetype/crm_exotel_settings/crm_exotel_settings.py:25 msgid "Invalid credentials" msgstr "Nevažeći akreditivi" @@ -3103,8 +3103,8 @@ msgstr "Pozovi korisnike da pristupe CRM-u. Navedi njihove uloge kako biste kont msgid "Invite your team" msgstr "Pozovi tim" -#. Label of the invited_by (Link) field in DocType 'CRM Invitation' -#: crm/fcrm/doctype/crm_invitation/crm_invitation.json +#. Label of the invited_by (Link) field in PageType 'CRM Invitation' +#: crm/fcrm/pagetype/crm_invitation/crm_invitation.json msgid "Invited By" msgstr "Pozvan(a) od" @@ -3118,59 +3118,59 @@ msgstr "Pozvan(a) od" msgid "Is" msgstr "Je" -#. Label of the is_default (Check) field in DocType 'CRM View Settings' -#: crm/fcrm/doctype/crm_view_settings/crm_view_settings.json +#. Label of the is_default (Check) field in PageType 'CRM View Settings' +#: crm/fcrm/pagetype/crm_view_settings/crm_view_settings.json msgid "Is Default" msgstr "Je Standard" -#. Label of the is_erpnext_in_different_site (Check) field in DocType 'ERPNext +#. Label of the is_erpnext_in_different_site (Check) field in PageType 'ERPNext #. CRM Settings' -#: crm/fcrm/doctype/erpnext_crm_settings/erpnext_crm_settings.json +#: crm/fcrm/pagetype/erpnext_crm_settings/erpnext_crm_settings.json msgid "Is ERPNext installed on a different site?" msgstr "Da li je Sistem instaliran na drugoj web stranici?" -#. Label of the is_group (Check) field in DocType 'CRM Territory' -#: crm/fcrm/doctype/crm_territory/crm_territory.json +#. Label of the is_group (Check) field in PageType 'CRM Territory' +#: crm/fcrm/pagetype/crm_territory/crm_territory.json msgid "Is Group" msgstr "Grupa" -#. Label of the is_helpdesk_in_different_site (Check) field in DocType +#. Label of the is_helpdesk_in_different_site (Check) field in PageType #. 'Helpdesk CRM Settings' -#: crm/fcrm/doctype/helpdesk_crm_settings/helpdesk_crm_settings.json +#: crm/fcrm/pagetype/helpdesk_crm_settings/helpdesk_crm_settings.json msgid "Is Helpdesk installed on a different site?" msgstr "Da li je Helpdesk instaliran na drugom sajtu?" -#. Label of the is_primary (Check) field in DocType 'CRM Contacts' -#. Label of the is_primary (Check) field in DocType 'CRM Telephony Phone' -#: crm/fcrm/doctype/crm_contacts/crm_contacts.json -#: crm/fcrm/doctype/crm_telephony_phone/crm_telephony_phone.json +#. Label of the is_primary (Check) field in PageType 'CRM Contacts' +#. Label of the is_primary (Check) field in PageType 'CRM Telephony Phone' +#: crm/fcrm/pagetype/crm_contacts/crm_contacts.json +#: crm/fcrm/pagetype/crm_telephony_phone/crm_telephony_phone.json msgid "Is Primary" msgstr "Primarno je" -#. Label of the is_standard (Check) field in DocType 'CRM Dropdown Item' -#. Label of the is_standard (Check) field in DocType 'CRM Form Script' -#. Label of the is_standard (Check) field in DocType 'CRM View Settings' -#: crm/fcrm/doctype/crm_dropdown_item/crm_dropdown_item.json -#: crm/fcrm/doctype/crm_form_script/crm_form_script.json -#: crm/fcrm/doctype/crm_view_settings/crm_view_settings.json +#. Label of the is_standard (Check) field in PageType 'CRM Dropdown Item' +#. Label of the is_standard (Check) field in PageType 'CRM Form Script' +#. Label of the is_standard (Check) field in PageType 'CRM View Settings' +#: crm/fcrm/pagetype/crm_dropdown_item/crm_dropdown_item.json +#: crm/fcrm/pagetype/crm_form_script/crm_form_script.json +#: crm/fcrm/pagetype/crm_view_settings/crm_view_settings.json msgid "Is Standard" msgstr "Je standardno" -#. Description of the 'Enable Forecasting' (Check) field in DocType 'FCRM +#. Description of the 'Enable Forecasting' (Check) field in PageType 'FCRM #. Settings' -#: crm/fcrm/doctype/fcrm_settings/fcrm_settings.json +#: crm/fcrm/pagetype/fcrm_settings/fcrm_settings.json msgid "It will make deal's \"Expected Closure Date\" & \"Expected Deal Value\" mandatory to get accurate forecasting insights" msgstr "\"Očekivani datum zaključenja\" i \"Očekivana vrijednost posla\" će biti obavezni za dobijanje tačnih uvida u predviđanja" -#. Label of the json (JSON) field in DocType 'CRM Global Settings' -#: crm/fcrm/doctype/crm_global_settings/crm_global_settings.json +#. Label of the json (JSON) field in PageType 'CRM Global Settings' +#: crm/fcrm/pagetype/crm_global_settings/crm_global_settings.json msgid "JSON" msgstr "JSON" -#. Label of the job_title (Data) field in DocType 'CRM Deal' -#. Label of the job_title (Data) field in DocType 'CRM Lead' -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_lead/crm_lead.json +#. Label of the job_title (Data) field in PageType 'CRM Deal' +#. Label of the job_title (Data) field in PageType 'CRM Lead' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_lead/crm_lead.json msgid "Job Title" msgstr "Naziv Posla" @@ -3182,20 +3182,20 @@ msgstr "Naziv Posla" msgid "John Doe" msgstr "John Doe" -#. Label of the kanban_tab (Tab Break) field in DocType 'CRM View Settings' -#: crm/fcrm/doctype/crm_view_settings/crm_view_settings.json +#. Label of the kanban_tab (Tab Break) field in PageType 'CRM View Settings' +#: crm/fcrm/pagetype/crm_view_settings/crm_view_settings.json #: frontend/src/components/ViewControls.vue:384 #: frontend/src/components/ViewControls.vue:600 frontend/src/utils/view.js:20 msgid "Kanban" msgstr "Kanban" -#. Label of the kanban_columns (Code) field in DocType 'CRM View Settings' -#: crm/fcrm/doctype/crm_view_settings/crm_view_settings.json +#. Label of the kanban_columns (Code) field in PageType 'CRM View Settings' +#: crm/fcrm/pagetype/crm_view_settings/crm_view_settings.json msgid "Kanban Columns" msgstr "Kolone Oglasne Table" -#. Label of the kanban_fields (Code) field in DocType 'CRM View Settings' -#: crm/fcrm/doctype/crm_view_settings/crm_view_settings.json +#. Label of the kanban_fields (Code) field in PageType 'CRM View Settings' +#: crm/fcrm/pagetype/crm_view_settings/crm_view_settings.json msgid "Kanban Fields" msgstr "Polja Oglasne Table" @@ -3204,15 +3204,15 @@ msgstr "Polja Oglasne Table" msgid "Kanban Settings" msgstr "Postavke Oglasne Table" -#. Label of the key (Data) field in DocType 'CRM Invitation' -#: crm/fcrm/doctype/crm_invitation/crm_invitation.json +#. Label of the key (Data) field in PageType 'CRM Invitation' +#: crm/fcrm/pagetype/crm_invitation/crm_invitation.json msgid "Key" msgstr "Ključ" -#. Label of the label (Data) field in DocType 'CRM Dropdown Item' -#. Label of the label (Data) field in DocType 'CRM View Settings' -#: crm/fcrm/doctype/crm_dropdown_item/crm_dropdown_item.json -#: crm/fcrm/doctype/crm_view_settings/crm_view_settings.json +#. Label of the label (Data) field in PageType 'CRM Dropdown Item' +#. Label of the label (Data) field in PageType 'CRM View Settings' +#: crm/fcrm/pagetype/crm_dropdown_item/crm_dropdown_item.json +#: crm/fcrm/pagetype/crm_view_settings/crm_view_settings.json #: frontend/src/components/ColumnSettings.vue:100 msgid "Label" msgstr "Oznaka" @@ -3229,10 +3229,10 @@ msgstr "Poslednjih 6 Meseci" msgid "Last Month" msgstr "Zadnji mjesec" -#. Label of the last_name (Data) field in DocType 'CRM Deal' -#. Label of the last_name (Data) field in DocType 'CRM Lead' -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_lead/crm_lead.json +#. Label of the last_name (Data) field in PageType 'CRM Deal' +#. Label of the last_name (Data) field in PageType 'CRM Lead' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_lead/crm_lead.json msgid "Last Name" msgstr "Prezime" @@ -3240,9 +3240,9 @@ msgstr "Prezime" msgid "Last Quarter" msgstr "Zadnji kvartal" -#. Label of the last_status_change_log (Link) field in DocType 'CRM Status +#. Label of the last_status_change_log (Link) field in PageType 'CRM Status #. Change Log' -#: crm/fcrm/doctype/crm_status_change_log/crm_status_change_log.json +#: crm/fcrm/pagetype/crm_status_change_log/crm_status_change_log.json msgid "Last Status Change Log" msgstr "Zapisnik Promjena Posljednjeg Statusa" @@ -3270,15 +3270,15 @@ msgstr "Prezime" msgid "Last user assigned by this rule" msgstr "Posljednji korisnik dodijeljen ovim pravilom" -#. Label of the layout (Code) field in DocType 'CRM Dashboard' -#. Label of the layout (Code) field in DocType 'CRM Fields Layout' -#: crm/fcrm/doctype/crm_dashboard/crm_dashboard.json -#: crm/fcrm/doctype/crm_fields_layout/crm_fields_layout.json +#. Label of the layout (Code) field in PageType 'CRM Dashboard' +#. Label of the layout (Code) field in PageType 'CRM Fields Layout' +#: crm/fcrm/pagetype/crm_dashboard/crm_dashboard.json +#: crm/fcrm/pagetype/crm_fields_layout/crm_fields_layout.json msgid "Layout" msgstr "Izgled" -#. Label of the lead (Link) field in DocType 'CRM Deal' -#: crm/fcrm/doctype/crm_deal/crm_deal.json +#. Label of the lead (Link) field in PageType 'CRM Deal' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json #: frontend/src/components/Calendar/CalendarEventPanel.vue:263 #: frontend/src/components/Calendar/CalendarEventPanel.vue:288 #: frontend/src/components/Layouts/AppSidebar.vue:550 @@ -3291,32 +3291,32 @@ msgstr "Izgled" msgid "Lead" msgstr "Potencijalni Klijent" -#. Label of the lead_details_tab (Tab Break) field in DocType 'CRM Deal' -#: crm/fcrm/doctype/crm_deal/crm_deal.json +#. Label of the lead_details_tab (Tab Break) field in PageType 'CRM Deal' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json msgid "Lead Details" msgstr "Detalji Potencijalnog Klijenta" -#. Label of the lead_name (Data) field in DocType 'CRM Deal' -#: crm/fcrm/doctype/crm_deal/crm_deal.json +#. Label of the lead_name (Data) field in PageType 'CRM Deal' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json msgid "Lead Name" msgstr "Naziv Potencijalnog Klijenta" -#. Label of the lead_owner (Link) field in DocType 'CRM Lead' -#: crm/fcrm/doctype/crm_lead/crm_lead.json +#. Label of the lead_owner (Link) field in PageType 'CRM Lead' +#: crm/fcrm/pagetype/crm_lead/crm_lead.json msgid "Lead Owner" msgstr "Odgovorni" -#: crm/fcrm/doctype/crm_lead/crm_lead.py:73 +#: crm/fcrm/pagetype/crm_lead/crm_lead.py:73 msgid "Lead Owner cannot be same as the Lead Email Address" msgstr "Odgovorni za Potencijalnog Klijenta ne može biti isti kao i adresa e-pošte potencijalnog klijenta" -#. Label of a shortcut in the Frappe CRM Workspace -#: crm/fcrm/workspace/frappe_crm/frappe_crm.json +#. Label of a shortcut in the Jingrow CRM Workspace +#: crm/fcrm/workspace/jingrow_crm/jingrow_crm.json msgid "Lead Sources" msgstr "Izvor Potencijalnog Klijenta" -#. Label of a shortcut in the Frappe CRM Workspace -#: crm/fcrm/workspace/frappe_crm/frappe_crm.json +#. Label of a shortcut in the Jingrow CRM Workspace +#: crm/fcrm/workspace/jingrow_crm/jingrow_crm.json msgid "Lead Statuses" msgstr "Status Potencijalnog Klijenta" @@ -3328,8 +3328,8 @@ msgstr "Analiza kanala generisanja potencijalnih klijenata" msgid "Lead to deal conversion pipeline" msgstr "Konverzija potencijalnih klijenata u poslove" -#. Label of a shortcut in the Frappe CRM Workspace -#: crm/fcrm/workspace/frappe_crm/frappe_crm.json +#. Label of a shortcut in the Jingrow CRM Workspace +#: crm/fcrm/workspace/jingrow_crm/jingrow_crm.json #: frontend/src/pages/InvalidPage.vue:9 frontend/src/pages/Lead.vue:340 #: frontend/src/pages/MobileLead.vue:291 msgid "Leads" @@ -3345,8 +3345,8 @@ msgstr "Potencijalni klijenti po izvoru" msgid "Learn about conditions" msgstr "Saznajte više o uslovima" -#. Label of the lft (Int) field in DocType 'CRM Territory' -#: crm/fcrm/doctype/crm_territory/crm_territory.json +#. Label of the lft (Int) field in PageType 'CRM Territory' +#: crm/fcrm/pagetype/crm_territory/crm_territory.json msgid "Left" msgstr "Lijevo" @@ -3367,15 +3367,15 @@ msgstr "Lajk" msgid "Link" msgstr "Veza" -#. Label of the links (Table) field in DocType 'CRM Call Log' -#: crm/fcrm/doctype/crm_call_log/crm_call_log.json +#. Label of the links (Table) field in PageType 'CRM Call Log' +#: crm/fcrm/pagetype/crm_call_log/crm_call_log.json msgid "Links" msgstr "Veze" -#. Option for the 'Apply To' (Select) field in DocType 'CRM Form Script' -#. Label of the list_tab (Tab Break) field in DocType 'CRM View Settings' -#: crm/fcrm/doctype/crm_form_script/crm_form_script.json -#: crm/fcrm/doctype/crm_view_settings/crm_view_settings.json +#. Option for the 'Apply To' (Select) field in PageType 'CRM Form Script' +#. Label of the list_tab (Tab Break) field in PageType 'CRM View Settings' +#: crm/fcrm/pagetype/crm_form_script/crm_form_script.json +#: crm/fcrm/pagetype/crm_view_settings/crm_view_settings.json #: frontend/src/components/ViewControls.vue:374 #: frontend/src/components/ViewControls.vue:589 frontend/src/utils/view.js:12 msgid "List" @@ -3385,9 +3385,9 @@ msgstr "Lista" msgid "Listen" msgstr "Slušaj" -#. Label of the load_default_columns (Check) field in DocType 'CRM View +#. Label of the load_default_columns (Check) field in PageType 'CRM View #. Settings' -#: crm/fcrm/doctype/crm_view_settings/crm_view_settings.json +#: crm/fcrm/pagetype/crm_view_settings/crm_view_settings.json msgid "Load Default Columns" msgstr "Učitaj Standard Kolone" @@ -3403,10 +3403,10 @@ msgstr "Učitaj Još" msgid "Loading..." msgstr "Učitavanje u toku..." -#. Label of the log_tab (Tab Break) field in DocType 'CRM Deal' -#. Label of the log_tab (Tab Break) field in DocType 'CRM Lead' -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_lead/crm_lead.json +#. Label of the log_tab (Tab Break) field in PageType 'CRM Deal' +#. Label of the log_tab (Tab Break) field in PageType 'CRM Lead' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_lead/crm_lead.json msgid "Log" msgstr "Zapisnik" @@ -3417,28 +3417,28 @@ msgid "Log a Call" msgstr "Zabilježi poziv" #: frontend/src/composables/frappecloud.js:23 -msgid "Login to Frappe Cloud?" -msgstr "Prijavi se na Frappe Cloud?" +msgid "Login to Jingrow Cloud?" +msgstr "Prijavi se na Jingrow Cloud?" -#. Label of the brand_logo (Attach) field in DocType 'FCRM Settings' -#: crm/fcrm/doctype/fcrm_settings/fcrm_settings.json +#. Label of the brand_logo (Attach) field in PageType 'FCRM Settings' +#: crm/fcrm/pagetype/fcrm_settings/fcrm_settings.json msgid "Logo" msgstr "Logo" -#. Option for the 'Type' (Select) field in DocType 'CRM Deal Status' -#: crm/fcrm/doctype/crm_deal_status/crm_deal_status.json +#. Option for the 'Type' (Select) field in PageType 'CRM Deal Status' +#: crm/fcrm/pagetype/crm_deal_status/crm_deal_status.json msgid "Lost" msgstr "Izgubljen(a)" -#. Label of the lost_notes (Text) field in DocType 'CRM Deal' -#: crm/fcrm/doctype/crm_deal/crm_deal.json +#. Label of the lost_notes (Text) field in PageType 'CRM Deal' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json msgid "Lost Notes" msgstr "Bilješke Izgubljenog Posla" -#. Label of the lost_reason (Link) field in DocType 'CRM Deal' -#. Label of the lost_reason (Data) field in DocType 'CRM Lost Reason' -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_lost_reason/crm_lost_reason.json +#. Label of the lost_reason (Link) field in PageType 'CRM Deal' +#. Label of the lost_reason (Data) field in PageType 'CRM Lost Reason' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_lost_reason/crm_lost_reason.json msgid "Lost Reason" msgstr "Izgubljen(a) Razlog" @@ -3464,8 +3464,8 @@ msgstr "Razlog gubitka posla" msgid "Lost reason is required" msgstr "Razlog gubitka je obavezan" -#. Option for the 'Priority' (Select) field in DocType 'CRM Task' -#: crm/fcrm/doctype/crm_task/crm_task.json +#. Option for the 'Priority' (Select) field in PageType 'CRM Task' +#: crm/fcrm/pagetype/crm_task/crm_task.json msgid "Low" msgstr "Nisko" @@ -3542,8 +3542,8 @@ msgstr "Upravitelj" msgid "Mandatory field error: {0}" msgstr "Greška obaveznog polja: {0}" -#. Option for the 'Telephony Medium' (Select) field in DocType 'CRM Call Log' -#: crm/fcrm/doctype/crm_call_log/crm_call_log.json +#. Option for the 'Telephony Medium' (Select) field in PageType 'CRM Call Log' +#: crm/fcrm/pagetype/crm_call_log/crm_call_log.json msgid "Manual" msgstr "Ručno" @@ -3562,25 +3562,25 @@ msgstr "Postavke" msgid "May 1, 2025" msgstr "1. maj 2025." -#. Label of the medium (Data) field in DocType 'CRM Call Log' -#. Option for the 'Priority' (Select) field in DocType 'CRM Task' -#: crm/fcrm/doctype/crm_call_log/crm_call_log.json -#: crm/fcrm/doctype/crm_task/crm_task.json +#. Label of the medium (Data) field in PageType 'CRM Call Log' +#. Option for the 'Priority' (Select) field in PageType 'CRM Task' +#: crm/fcrm/pagetype/crm_call_log/crm_call_log.json +#: crm/fcrm/pagetype/crm_task/crm_task.json msgid "Medium" msgstr "Srednje" -#. Option for the 'Type' (Select) field in DocType 'CRM Notification' -#: crm/fcrm/doctype/crm_notification/crm_notification.json +#. Option for the 'Type' (Select) field in PageType 'CRM Notification' +#: crm/fcrm/pagetype/crm_notification/crm_notification.json msgid "Mention" msgstr "Spominjanje" -#. Label of the message (HTML Editor) field in DocType 'CRM Notification' -#: crm/fcrm/doctype/crm_notification/crm_notification.json +#. Label of the message (HTML Editor) field in PageType 'CRM Notification' +#: crm/fcrm/pagetype/crm_notification/crm_notification.json msgid "Message" msgstr "Poruka" -#. Label of the middle_name (Data) field in DocType 'CRM Lead' -#: crm/fcrm/doctype/crm_lead/crm_lead.json +#. Label of the middle_name (Data) field in PageType 'CRM Lead' +#: crm/fcrm/pagetype/crm_lead/crm_lead.json msgid "Middle Name" msgstr "Srednje ime" @@ -3588,10 +3588,10 @@ msgstr "Srednje ime" msgid "Minimize" msgstr "Minimiziraj" -#. Label of the mobile_no (Data) field in DocType 'CRM Contacts' -#. Label of the mobile_no (Data) field in DocType 'CRM Lead' -#: crm/fcrm/doctype/crm_contacts/crm_contacts.json -#: crm/fcrm/doctype/crm_lead/crm_lead.json +#. Label of the mobile_no (Data) field in PageType 'CRM Contacts' +#. Label of the mobile_no (Data) field in PageType 'CRM Lead' +#: crm/fcrm/pagetype/crm_contacts/crm_contacts.json +#: crm/fcrm/pagetype/crm_lead/crm_lead.json msgid "Mobile No" msgstr "Mobilni Broj" @@ -3600,8 +3600,8 @@ msgstr "Mobilni Broj" msgid "Mobile No should be a number" msgstr "Broj mobilnog telefona trebao bi biti broj" -#. Label of the mobile_no (Data) field in DocType 'CRM Telephony Agent' -#: crm/fcrm/doctype/crm_telephony_agent/crm_telephony_agent.json +#. Label of the mobile_no (Data) field in PageType 'CRM Telephony Agent' +#: crm/fcrm/pagetype/crm_telephony_agent/crm_telephony_agent.json msgid "Mobile No." msgstr "Mobilni Broj." @@ -3623,10 +3623,10 @@ msgstr "Instalacija mobilne aplikacije" msgid "Mobile no" msgstr "Mobilni Broj" -#. Option for the 'Weekly Off' (Select) field in DocType 'CRM Holiday List' -#. Option for the 'Workday' (Select) field in DocType 'CRM Service Day' -#: crm/fcrm/doctype/crm_holiday_list/crm_holiday_list.json -#: crm/fcrm/doctype/crm_service_day/crm_service_day.json +#. Option for the 'Weekly Off' (Select) field in PageType 'CRM Holiday List' +#. Option for the 'Workday' (Select) field in PageType 'CRM Service Day' +#: crm/fcrm/pagetype/crm_holiday_list/crm_holiday_list.json +#: crm/fcrm/pagetype/crm_service_day/crm_service_day.json msgid "Monday" msgstr "Ponedjeljak" @@ -3658,12 +3658,12 @@ msgstr "Pređi na prethodnu karticu" msgid "My Open Deals" msgstr "Moji Otvoreni Poslovi" -#. Label of the title (Data) field in DocType 'CRM Dashboard' -#. Label of the name1 (Data) field in DocType 'CRM Dropdown Item' -#. Label of the brand_name (Data) field in DocType 'FCRM Settings' -#: crm/fcrm/doctype/crm_dashboard/crm_dashboard.json -#: crm/fcrm/doctype/crm_dropdown_item/crm_dropdown_item.json -#: crm/fcrm/doctype/fcrm_settings/fcrm_settings.json +#. Label of the title (Data) field in PageType 'CRM Dashboard' +#. Label of the name1 (Data) field in PageType 'CRM Dropdown Item' +#. Label of the brand_name (Data) field in PageType 'FCRM Settings' +#: crm/fcrm/pagetype/crm_dashboard/crm_dashboard.json +#: crm/fcrm/pagetype/crm_dropdown_item/crm_dropdown_item.json +#: crm/fcrm/pagetype/fcrm_settings/fcrm_settings.json #: frontend/src/components/Settings/AssignmentRules/AssignmentRuleView.vue:51 #: frontend/src/components/Settings/AssignmentRules/AssignmentRuleView.vue:52 #: frontend/src/components/Settings/EmailTemplate/EditEmailTemplate.vue:39 @@ -3680,10 +3680,10 @@ msgstr "Naziv" msgid "Name is required" msgstr "Ime je obavezno" -#. Label of the naming_series (Select) field in DocType 'CRM Deal' -#. Label of the naming_series (Select) field in DocType 'CRM Product' -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_product/crm_product.json +#. Label of the naming_series (Select) field in PageType 'CRM Deal' +#. Label of the naming_series (Select) field in PageType 'CRM Product' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_product/crm_product.json msgid "Naming Series" msgstr "Imenovanje serije" @@ -3691,15 +3691,15 @@ msgstr "Imenovanje serije" msgid "Nested conditions" msgstr "Ugniježđeni uslovi" -#. Label of the net_amount (Currency) field in DocType 'CRM Products' -#: crm/fcrm/doctype/crm_products/crm_products.json +#. Label of the net_amount (Currency) field in PageType 'CRM Products' +#: crm/fcrm/pagetype/crm_products/crm_products.json msgid "Net Amount" msgstr "Neto Iznos" -#. Label of the net_total (Currency) field in DocType 'CRM Deal' -#. Label of the net_total (Currency) field in DocType 'CRM Lead' -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_lead/crm_lead.json +#. Label of the net_total (Currency) field in PageType 'CRM Deal' +#. Label of the net_total (Currency) field in PageType 'CRM Lead' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_lead/crm_lead.json msgid "Net Total" msgstr "Neto Ukupno" @@ -3814,8 +3814,8 @@ msgstr "Sljedeći Mjesec" msgid "Next Quarter" msgstr "Sljedeći Kvartal" -#. Label of the next_step (Data) field in DocType 'CRM Deal' -#: crm/fcrm/doctype/crm_deal/crm_deal.json +#. Label of the next_step (Data) field in PageType 'CRM Deal' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json msgid "Next Step" msgstr "Sledeći Korak" @@ -3831,8 +3831,8 @@ msgstr "Sljedeća Godina" msgid "No" msgstr "Ne" -#. Option for the 'Status' (Select) field in DocType 'CRM Call Log' -#: crm/fcrm/doctype/crm_call_log/crm_call_log.json +#. Option for the 'Status' (Select) field in PageType 'CRM Call Log' +#: crm/fcrm/pagetype/crm_call_log/crm_call_log.json msgid "No Answer" msgstr "Bez Odgovora" @@ -3930,12 +3930,12 @@ msgstr "Nema {0} Dostupnog" msgid "No {0} Found" msgstr "{0}" -#. Label of the no_of_employees (Select) field in DocType 'CRM Deal' -#. Label of the no_of_employees (Select) field in DocType 'CRM Lead' -#. Label of the no_of_employees (Select) field in DocType 'CRM Organization' -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_lead/crm_lead.json -#: crm/fcrm/doctype/crm_organization/crm_organization.json +#. Label of the no_of_employees (Select) field in PageType 'CRM Deal' +#. Label of the no_of_employees (Select) field in PageType 'CRM Lead' +#. Label of the no_of_employees (Select) field in PageType 'CRM Organization' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_lead/crm_lead.json +#: crm/fcrm/pagetype/crm_organization/crm_organization.json msgid "No. of Employees" msgstr "Personalni Broj" @@ -3981,24 +3981,24 @@ msgstr "Nije Kao" msgid "Not Saved" msgstr "Nespremljeno" -#: crm/fcrm/doctype/crm_deal/crm_deal.py:272 +#: crm/fcrm/pagetype/crm_deal/crm_deal.py:272 msgid "Not allowed to add contact to Deal" msgstr "Nije dozvoljeno dodavanje kontakta u ponudu" -#: crm/fcrm/doctype/crm_lead/crm_lead.py:408 +#: crm/fcrm/pagetype/crm_lead/crm_lead.py:408 msgid "Not allowed to convert Lead to Deal" msgstr "Nije dozvoljeno pretvaranje Potencijalnog Klijenta u Posao" -#: crm/fcrm/doctype/crm_deal/crm_deal.py:283 +#: crm/fcrm/pagetype/crm_deal/crm_deal.py:283 msgid "Not allowed to remove contact from Deal" msgstr "Nije dozvoljeno uklanjanje kontakta iz Posla" -#: crm/fcrm/doctype/crm_deal/crm_deal.py:294 +#: crm/fcrm/pagetype/crm_deal/crm_deal.py:294 msgid "Not allowed to set primary contact for Deal" msgstr "Nije dozvoljeno postavljanje primarnog kontakta za Posao" -#. Label of the note (Link) field in DocType 'CRM Call Log' -#: crm/fcrm/doctype/crm_call_log/crm_call_log.json +#. Label of the note (Link) field in PageType 'CRM Call Log' +#: crm/fcrm/pagetype/crm_call_log/crm_call_log.json #: frontend/src/components/Layouts/AppSidebar.vue:554 msgid "Note" msgstr "Napomena" @@ -4017,22 +4017,22 @@ msgstr "Prikaz Napomena" msgid "Notification" msgstr "Obavijest" -#. Label of the notification_text (Text) field in DocType 'CRM Notification' -#: crm/fcrm/doctype/crm_notification/crm_notification.json +#. Label of the notification_text (Text) field in PageType 'CRM Notification' +#: crm/fcrm/pagetype/crm_notification/crm_notification.json msgid "Notification Text" msgstr "Tekst Obaviještenja" -#. Label of the notification_type_doc (Dynamic Link) field in DocType 'CRM +#. Label of the notification_type_pg (Dynamic Link) field in PageType 'CRM #. Notification' -#: crm/fcrm/doctype/crm_notification/crm_notification.json -msgid "Notification Type Doc" +#: crm/fcrm/pagetype/crm_notification/crm_notification.json +msgid "Notification Type Pg" msgstr "Dokument Tip Obavještenja" -#. Label of the notification_type_doctype (Link) field in DocType 'CRM +#. Label of the notification_type_pagetype (Link) field in PageType 'CRM #. Notification' -#: crm/fcrm/doctype/crm_notification/crm_notification.json -msgid "Notification Type Doctype" -msgstr "DocType Tip Obavještenja" +#: crm/fcrm/pagetype/crm_notification/crm_notification.json +msgid "Notification Type Pagetype" +msgstr "PageType Tip Obavještenja" #: frontend/src/components/Layouts/AppSidebar.vue:13 #: frontend/src/components/Mobile/MobileSidebar.vue:23 @@ -4041,8 +4041,8 @@ msgstr "DocType Tip Obavještenja" msgid "Notifications" msgstr "Obavještenja" -#. Label of the number (Data) field in DocType 'CRM Telephony Phone' -#: crm/fcrm/doctype/crm_telephony_phone/crm_telephony_phone.json +#. Label of the number (Data) field in PageType 'CRM Telephony Phone' +#: crm/fcrm/pagetype/crm_telephony_phone/crm_telephony_phone.json msgid "Number" msgstr "Broj" @@ -4064,18 +4064,18 @@ msgstr "Broj poslova i ukupna vrijednost po prodavaču" msgid "Old Condition" msgstr "Stari uslov" -#. Label of the old_parent (Link) field in DocType 'CRM Territory' -#: crm/fcrm/doctype/crm_territory/crm_territory.json +#. Label of the old_parent (Link) field in PageType 'CRM Territory' +#: crm/fcrm/pagetype/crm_territory/crm_territory.json msgid "Old Parent" msgstr "Stari Nadređeni" -#. Option for the 'Type' (Select) field in DocType 'CRM Deal Status' -#: crm/fcrm/doctype/crm_deal_status/crm_deal_status.json +#. Option for the 'Type' (Select) field in PageType 'CRM Deal Status' +#: crm/fcrm/pagetype/crm_deal_status/crm_deal_status.json msgid "On Hold" msgstr "Na čekanju" -#. Option for the 'Type' (Select) field in DocType 'CRM Deal Status' -#: crm/fcrm/doctype/crm_deal_status/crm_deal_status.json +#. Option for the 'Type' (Select) field in PageType 'CRM Deal Status' +#: crm/fcrm/pagetype/crm_deal_status/crm_deal_status.json msgid "Ongoing" msgstr "U toku" @@ -4088,13 +4088,13 @@ msgstr "Poslovi u toku" msgid "Only image files are allowed" msgstr "Dozvoljene su samo slikovne datoteke" -#: crm/fcrm/doctype/crm_deal/crm_deal.py:60 -#: crm/fcrm/doctype/crm_telephony_agent/crm_telephony_agent.py:23 +#: crm/fcrm/pagetype/crm_deal/crm_deal.py:60 +#: crm/fcrm/pagetype/crm_telephony_agent/crm_telephony_agent.py:23 msgid "Only one {0} can be set as primary." msgstr "Samo jedan {0} može biti postavljen kao primarni." -#. Option for the 'Type' (Select) field in DocType 'CRM Deal Status' -#: crm/fcrm/doctype/crm_deal_status/crm_deal_status.json +#. Option for the 'Type' (Select) field in PageType 'CRM Deal Status' +#: crm/fcrm/pagetype/crm_deal_status/crm_deal_status.json msgid "Open" msgstr "Otvori" @@ -4108,13 +4108,13 @@ msgstr "Otvori Posao" msgid "Open Lead" msgstr "Otvori Potencijalni Klijent" -#: crm/fcrm/doctype/crm_deal/crm_deal.js:6 -#: crm/fcrm/doctype/crm_lead/crm_lead.js:6 +#: crm/fcrm/pagetype/crm_deal/crm_deal.js:6 +#: crm/fcrm/pagetype/crm_lead/crm_lead.js:6 msgid "Open in Portal" msgstr "Otvori u Portalu" -#. Label of the open_in_new_window (Check) field in DocType 'CRM Dropdown Item' -#: crm/fcrm/doctype/crm_dropdown_item/crm_dropdown_item.json +#. Label of the open_in_new_window (Check) field in PageType 'CRM Dropdown Item' +#: crm/fcrm/pagetype/crm_dropdown_item/crm_dropdown_item.json msgid "Open in new window" msgstr "Otvori u novom prozoru" @@ -4136,17 +4136,17 @@ msgstr "Opcije" msgid "Or create leads manually" msgstr "Ili manualno kreiraj potencijalne klijente" -#. Label of the order_by_tab (Tab Break) field in DocType 'CRM View Settings' -#. Label of the order_by (Code) field in DocType 'CRM View Settings' -#: crm/fcrm/doctype/crm_view_settings/crm_view_settings.json +#. Label of the order_by_tab (Tab Break) field in PageType 'CRM View Settings' +#. Label of the order_by (Code) field in PageType 'CRM View Settings' +#: crm/fcrm/pagetype/crm_view_settings/crm_view_settings.json msgid "Order By" msgstr "Sortiraj prema" -#. Label of the organization (Link) field in DocType 'CRM Deal' -#. Label of the organization_tab (Tab Break) field in DocType 'CRM Deal' -#. Label of the organization (Data) field in DocType 'CRM Lead' -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_lead/crm_lead.json +#. Label of the organization (Link) field in PageType 'CRM Deal' +#. Label of the organization_tab (Tab Break) field in PageType 'CRM Deal' +#. Label of the organization (Data) field in PageType 'CRM Lead' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_lead/crm_lead.json #: frontend/src/components/Layouts/AppSidebar.vue:553 #: frontend/src/components/Modals/ConvertToDealModal.vue:25 #: frontend/src/pages/Contact.vue:494 frontend/src/pages/MobileContact.vue:502 @@ -4158,22 +4158,22 @@ msgstr "Sortiraj prema" msgid "Organization" msgstr "Organizacija" -#. Label of the organization_details_section (Section Break) field in DocType +#. Label of the organization_details_section (Section Break) field in PageType #. 'CRM Deal' -#: crm/fcrm/doctype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_deal/crm_deal.json msgid "Organization Details" msgstr "Detalji Organizacije" -#. Label of the organization_logo (Attach Image) field in DocType 'CRM +#. Label of the organization_logo (Attach Image) field in PageType 'CRM #. Organization' -#: crm/fcrm/doctype/crm_organization/crm_organization.json +#: crm/fcrm/pagetype/crm_organization/crm_organization.json msgid "Organization Logo" msgstr "Logo Organizacije" -#. Label of the organization_name (Data) field in DocType 'CRM Deal' -#. Label of the organization_name (Data) field in DocType 'CRM Organization' -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_organization/crm_organization.json +#. Label of the organization_name (Data) field in PageType 'CRM Deal' +#. Label of the organization_name (Data) field in PageType 'CRM Organization' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_organization/crm_organization.json msgid "Organization Name" msgstr "Naziv Organizacije" @@ -4181,8 +4181,8 @@ msgstr "Naziv Organizacije" msgid "Organization logo" msgstr "Logo Organizacije" -#. Label of a shortcut in the Frappe CRM Workspace -#: crm/fcrm/workspace/frappe_crm/frappe_crm.json +#. Label of a shortcut in the Jingrow CRM Workspace +#: crm/fcrm/workspace/jingrow_crm/jingrow_crm.json #: frontend/src/pages/MobileOrganization.vue:205 #: frontend/src/pages/Organization.vue:234 msgid "Organizations" @@ -4196,8 +4196,8 @@ msgstr "Organizator" msgid "Other features" msgstr "Ostale karakteristike" -#. Label of the organization_tab (Tab Break) field in DocType 'CRM Lead' -#: crm/fcrm/doctype/crm_lead/crm_lead.json +#. Label of the organization_tab (Tab Break) field in PageType 'CRM Lead' +#: crm/fcrm/pagetype/crm_lead/crm_lead.json msgid "Others" msgstr "Ostalo" @@ -4205,13 +4205,13 @@ msgstr "Ostalo" msgid "Outbound Call" msgstr "Odlazni Poziv" -#. Option for the 'Type' (Select) field in DocType 'CRM Call Log' -#: crm/fcrm/doctype/crm_call_log/crm_call_log.json +#. Option for the 'Type' (Select) field in PageType 'CRM Call Log' +#: crm/fcrm/pagetype/crm_call_log/crm_call_log.json msgid "Outgoing" msgstr "Odlazno" -#. Label of the log_owner (Link) field in DocType 'CRM Status Change Log' -#: crm/fcrm/doctype/crm_status_change_log/crm_status_change_log.json +#. Label of the log_owner (Link) field in PageType 'CRM Status Change Log' +#: crm/fcrm/pagetype/crm_status_change_log/crm_status_change_log.json msgid "Owner" msgstr "Odgovorni" @@ -4219,8 +4219,8 @@ msgstr "Odgovorni" msgid "Owner: {0}" msgstr "Vlasnik: {0}" -#. Label of the parent_crm_territory (Link) field in DocType 'CRM Territory' -#: crm/fcrm/doctype/crm_territory/crm_territory.json +#. Label of the parent_crm_territory (Link) field in PageType 'CRM Territory' +#: crm/fcrm/pagetype/crm_territory/crm_territory.json msgid "Parent CRM Territory" msgstr "Nadređeni Distrikt" @@ -4251,8 +4251,8 @@ msgstr "Podsjetnik Plaćanja" msgid "Payment Reminder from Frappé - (#{{ name }})" msgstr "Podsjetnik za plaćanje od Frappéa - (#{{ name }})" -#. Option for the 'Status' (Select) field in DocType 'CRM Invitation' -#: crm/fcrm/doctype/crm_invitation/crm_invitation.json +#. Option for the 'Status' (Select) field in PageType 'CRM Invitation' +#: crm/fcrm/pagetype/crm_invitation/crm_invitation.json msgid "Pending" msgstr "Na čekanju" @@ -4264,10 +4264,10 @@ msgstr "Pozivnice na Čekanju" msgid "Period" msgstr "Period" -#. Label of the person_section (Section Break) field in DocType 'CRM Deal' -#. Label of the person_tab (Tab Break) field in DocType 'CRM Lead' -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_lead/crm_lead.json +#. Label of the person_section (Section Break) field in PageType 'CRM Deal' +#. Label of the person_tab (Tab Break) field in PageType 'CRM Lead' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_lead/crm_lead.json msgid "Person" msgstr "Osoba" @@ -4275,19 +4275,19 @@ msgstr "Osoba" msgid "Personal Settings" msgstr "Lične Postavke" -#. Label of the phone (Data) field in DocType 'CRM Contacts' -#. Label of the phone (Data) field in DocType 'CRM Lead' -#. Option for the 'Device' (Select) field in DocType 'CRM Telephony Agent' -#: crm/fcrm/doctype/crm_contacts/crm_contacts.json -#: crm/fcrm/doctype/crm_lead/crm_lead.json -#: crm/fcrm/doctype/crm_telephony_agent/crm_telephony_agent.json +#. Label of the phone (Data) field in PageType 'CRM Contacts' +#. Label of the phone (Data) field in PageType 'CRM Lead' +#. Option for the 'Device' (Select) field in PageType 'CRM Telephony Agent' +#: crm/fcrm/pagetype/crm_contacts/crm_contacts.json +#: crm/fcrm/pagetype/crm_lead/crm_lead.json +#: crm/fcrm/pagetype/crm_telephony_agent/crm_telephony_agent.json #: frontend/src/pages/MobileOrganization.vue:495 #: frontend/src/pages/Organization.vue:516 msgid "Phone" msgstr "Telefon" -#. Label of the phone_nos (Table) field in DocType 'CRM Telephony Agent' -#: crm/fcrm/doctype/crm_telephony_agent/crm_telephony_agent.json +#. Label of the phone_nos (Table) field in PageType 'CRM Telephony Agent' +#: crm/fcrm/pagetype/crm_telephony_agent/crm_telephony_agent.json msgid "Phone Numbers" msgstr "Telefonski Brojevi" @@ -4295,8 +4295,8 @@ msgstr "Telefonski Brojevi" msgid "Pin View" msgstr "Prikači Prikaz" -#. Label of the pinned (Check) field in DocType 'CRM View Settings' -#: crm/fcrm/doctype/crm_view_settings/crm_view_settings.json +#. Label of the pinned (Check) field in PageType 'CRM View Settings' +#: crm/fcrm/pagetype/crm_view_settings/crm_view_settings.json msgid "Pinned" msgstr "Zakačen" @@ -4346,7 +4346,7 @@ msgstr "Odaberi postojeći kontakt" msgid "Please select an existing organization" msgstr "Odaberi postojeću organizaciju" -#: crm/fcrm/doctype/helpdesk_crm_settings/helpdesk_crm_settings.py:126 +#: crm/fcrm/pagetype/helpdesk_crm_settings/helpdesk_crm_settings.py:126 msgid "Please set Email Address" msgstr "Postavi adresu e-pošte" @@ -4354,18 +4354,18 @@ msgstr "Postavi adresu e-pošte" msgid "Please setup Exotel intergration" msgstr "Podesi Exotel integraciju" -#: crm/fcrm/doctype/crm_deal/crm_deal.py:181 +#: crm/fcrm/pagetype/crm_deal/crm_deal.py:181 msgid "Please specify a reason for losing the deal." msgstr "Navedi razlog gubitka posla." -#: crm/fcrm/doctype/crm_deal/crm_deal.py:183 +#: crm/fcrm/pagetype/crm_deal/crm_deal.py:183 msgid "Please specify the reason for losing the deal." msgstr "Navedi razlog gubitka posla." -#. Label of the position (Int) field in DocType 'CRM Deal Status' -#. Label of the position (Int) field in DocType 'CRM Lead Status' -#: crm/fcrm/doctype/crm_deal_status/crm_deal_status.json -#: crm/fcrm/doctype/crm_lead_status/crm_lead_status.json +#. Label of the position (Int) field in PageType 'CRM Deal Status' +#. Label of the position (Int) field in PageType 'CRM Lead Status' +#: crm/fcrm/pagetype/crm_deal_status/crm_deal_status.json +#: crm/fcrm/pagetype/crm_lead_status/crm_lead_status.json msgid "Position" msgstr "Pozicija" @@ -4373,18 +4373,18 @@ msgstr "Pozicija" msgid "Primary" msgstr "Primarni" -#. Label of the email (Data) field in DocType 'CRM Deal' -#: crm/fcrm/doctype/crm_deal/crm_deal.json +#. Label of the email (Data) field in PageType 'CRM Deal' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json msgid "Primary Email" msgstr "Primarna e-pošta" -#. Label of the mobile_no (Data) field in DocType 'CRM Deal' -#: crm/fcrm/doctype/crm_deal/crm_deal.json +#. Label of the mobile_no (Data) field in PageType 'CRM Deal' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json msgid "Primary Mobile No" msgstr "Primarni broj mobilnog telefona" -#. Label of the phone (Data) field in DocType 'CRM Deal' -#: crm/fcrm/doctype/crm_deal/crm_deal.json +#. Label of the phone (Data) field in PageType 'CRM Deal' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json msgid "Primary Phone" msgstr "Primarni Telefon" @@ -4392,57 +4392,57 @@ msgstr "Primarni Telefon" msgid "Primary contact set" msgstr "Primarni Kontakt postavljen" -#. Label of the priorities (Table) field in DocType 'CRM Service Level +#. Label of the priorities (Table) field in PageType 'CRM Service Level #. Agreement' -#: crm/fcrm/doctype/crm_service_level_agreement/crm_service_level_agreement.json +#: crm/fcrm/pagetype/crm_service_level_agreement/crm_service_level_agreement.json msgid "Priorities" msgstr "Prioriteti" -#. Label of the priority (Link) field in DocType 'CRM Service Level Priority' -#. Label of the priority (Select) field in DocType 'CRM Task' -#: crm/fcrm/doctype/crm_service_level_priority/crm_service_level_priority.json -#: crm/fcrm/doctype/crm_task/crm_task.json +#. Label of the priority (Link) field in PageType 'CRM Service Level Priority' +#. Label of the priority (Select) field in PageType 'CRM Task' +#: crm/fcrm/pagetype/crm_service_level_priority/crm_service_level_priority.json +#: crm/fcrm/pagetype/crm_task/crm_task.json #: frontend/src/components/Settings/AssignmentRules/AssignmentRuleView.vue:64 #: frontend/src/components/Settings/AssignmentRules/AssignmentRulesList.vue:20 msgid "Priority" msgstr "Prioritet" -#. Label of the private (Check) field in DocType 'CRM Dashboard' -#: crm/fcrm/doctype/crm_dashboard/crm_dashboard.json +#. Label of the private (Check) field in PageType 'CRM Dashboard' +#: crm/fcrm/pagetype/crm_dashboard/crm_dashboard.json #: frontend/src/components/FilesUploader/FilesUploaderArea.vue:89 msgid "Private" msgstr "Privatno" -#. Label of the probability (Percent) field in DocType 'CRM Deal' -#. Label of the probability (Percent) field in DocType 'CRM Deal Status' -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_deal_status/crm_deal_status.json +#. Label of the probability (Percent) field in PageType 'CRM Deal' +#. Label of the probability (Percent) field in PageType 'CRM Deal Status' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_deal_status/crm_deal_status.json msgid "Probability" msgstr "Vjerovatnoća" -#. Label of the product_code (Link) field in DocType 'CRM Products' -#: crm/fcrm/doctype/crm_products/crm_products.json +#. Label of the product_code (Link) field in PageType 'CRM Products' +#: crm/fcrm/pagetype/crm_products/crm_products.json msgid "Product" msgstr "Proizvod" -#. Label of the product_code (Data) field in DocType 'CRM Product' -#: crm/fcrm/doctype/crm_product/crm_product.json +#. Label of the product_code (Data) field in PageType 'CRM Product' +#: crm/fcrm/pagetype/crm_product/crm_product.json msgid "Product Code" msgstr "Šifra Artikla" -#. Label of the product_name (Data) field in DocType 'CRM Product' -#. Label of the product_name (Data) field in DocType 'CRM Products' -#: crm/fcrm/doctype/crm_product/crm_product.json -#: crm/fcrm/doctype/crm_products/crm_products.json +#. Label of the product_name (Data) field in PageType 'CRM Product' +#. Label of the product_name (Data) field in PageType 'CRM Products' +#: crm/fcrm/pagetype/crm_product/crm_product.json +#: crm/fcrm/pagetype/crm_products/crm_products.json msgid "Product Name" msgstr "Naziv Artikla" -#. Label of the products_tab (Tab Break) field in DocType 'CRM Deal' -#. Label of the products (Table) field in DocType 'CRM Deal' -#. Label of the products_tab (Tab Break) field in DocType 'CRM Lead' -#. Label of the products (Table) field in DocType 'CRM Lead' -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_lead/crm_lead.json +#. Label of the products_tab (Tab Break) field in PageType 'CRM Deal' +#. Label of the products (Table) field in PageType 'CRM Deal' +#. Label of the products_tab (Tab Break) field in PageType 'CRM Lead' +#. Label of the products (Table) field in PageType 'CRM Lead' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_lead/crm_lead.json msgid "Products" msgstr "Proizvodi" @@ -4459,8 +4459,8 @@ msgstr "Profil uspješno ažuriran" msgid "Projected vs actual revenue based on deal probability" msgstr "Predviđeni u odnosu na stvarni prihod na osnovu vjerovatnoće posla" -#. Label of the public (Check) field in DocType 'CRM View Settings' -#: crm/fcrm/doctype/crm_view_settings/crm_view_settings.json +#. Label of the public (Check) field in PageType 'CRM View Settings' +#: crm/fcrm/pagetype/crm_view_settings/crm_view_settings.json msgid "Public" msgstr "Javno" @@ -4472,23 +4472,23 @@ msgstr "Javni Prikazi" msgid "Public view" msgstr "Javni Prikaz" -#. Label of the qty (Float) field in DocType 'CRM Products' -#: crm/fcrm/doctype/crm_products/crm_products.json +#. Label of the qty (Float) field in PageType 'CRM Products' +#: crm/fcrm/pagetype/crm_products/crm_products.json msgid "Quantity" msgstr "Količina" -#. Option for the 'Status' (Select) field in DocType 'CRM Call Log' -#: crm/fcrm/doctype/crm_call_log/crm_call_log.json +#. Option for the 'Status' (Select) field in PageType 'CRM Call Log' +#: crm/fcrm/pagetype/crm_call_log/crm_call_log.json msgid "Queued" msgstr "U Redu" -#. Option for the 'Type' (Select) field in DocType 'CRM Fields Layout' -#: crm/fcrm/doctype/crm_fields_layout/crm_fields_layout.json +#. Option for the 'Type' (Select) field in PageType 'CRM Fields Layout' +#: crm/fcrm/pagetype/crm_fields_layout/crm_fields_layout.json msgid "Quick Entry" msgstr "Brzi Unos" -#. Option for the 'Type' (Select) field in DocType 'CRM Global Settings' -#: crm/fcrm/doctype/crm_global_settings/crm_global_settings.json +#. Option for the 'Type' (Select) field in PageType 'CRM Global Settings' +#: crm/fcrm/pagetype/crm_global_settings/crm_global_settings.json msgid "Quick Filters" msgstr "Brzi Filteri" @@ -4500,13 +4500,13 @@ msgstr "Brzi Filteri uspješno ažurirani" msgid "Quick entry layout" msgstr "Raspored za brzi unos" -#. Label of the rate (Currency) field in DocType 'CRM Products' -#: crm/fcrm/doctype/crm_products/crm_products.json +#. Label of the rate (Currency) field in PageType 'CRM Products' +#: crm/fcrm/pagetype/crm_products/crm_products.json msgid "Rate" msgstr "Cijena" -#. Label of the read (Check) field in DocType 'CRM Notification' -#: crm/fcrm/doctype/crm_notification/crm_notification.json +#. Label of the read (Check) field in PageType 'CRM Notification' +#: crm/fcrm/pagetype/crm_notification/crm_notification.json msgid "Read" msgstr "Čitaj" @@ -4514,48 +4514,48 @@ msgstr "Čitaj" msgid "Reason" msgstr "Razlog" -#. Label of the record_calls (Check) field in DocType 'CRM Twilio Settings' -#: crm/fcrm/doctype/crm_twilio_settings/crm_twilio_settings.json +#. Label of the record_calls (Check) field in PageType 'CRM Twilio Settings' +#: crm/fcrm/pagetype/crm_twilio_settings/crm_twilio_settings.json msgid "Record Calls" msgstr "Snimaj Poziv" -#. Label of the record_call (Check) field in DocType 'CRM Exotel Settings' -#: crm/fcrm/doctype/crm_exotel_settings/crm_exotel_settings.json +#. Label of the record_call (Check) field in PageType 'CRM Exotel Settings' +#: crm/fcrm/pagetype/crm_exotel_settings/crm_exotel_settings.json msgid "Record Outgoing Calls" msgstr "Snimaj Odlazne Pozive" -#. Label of the recording_url (Data) field in DocType 'CRM Call Log' -#: crm/fcrm/doctype/crm_call_log/crm_call_log.json +#. Label of the recording_url (Data) field in PageType 'CRM Call Log' +#: crm/fcrm/pagetype/crm_call_log/crm_call_log.json msgid "Recording URL" msgstr "URL Snimanja" -#. Label of the reference_name (Dynamic Link) field in DocType 'CRM +#. Label of the reference_name (Dynamic Link) field in PageType 'CRM #. Notification' -#. Label of the reference_docname (Dynamic Link) field in DocType 'CRM Task' -#. Label of the reference_docname (Dynamic Link) field in DocType 'FCRM Note' -#: crm/fcrm/doctype/crm_notification/crm_notification.json -#: crm/fcrm/doctype/crm_task/crm_task.json -#: crm/fcrm/doctype/fcrm_note/fcrm_note.json -msgid "Reference Doc" +#. Label of the reference_docname (Dynamic Link) field in PageType 'CRM Task' +#. Label of the reference_docname (Dynamic Link) field in PageType 'FCRM Note' +#: crm/fcrm/pagetype/crm_notification/crm_notification.json +#: crm/fcrm/pagetype/crm_task/crm_task.json +#: crm/fcrm/pagetype/fcrm_note/fcrm_note.json +msgid "Reference Pg" msgstr "Referentni Dokument" -#. Label of the reference_doctype (Link) field in DocType 'CRM Notification' -#: crm/fcrm/doctype/crm_notification/crm_notification.json -msgid "Reference Doctype" -msgstr "Referentni Doctype" +#. Label of the reference_pagetype (Link) field in PageType 'CRM Notification' +#: crm/fcrm/pagetype/crm_notification/crm_notification.json +msgid "Reference Pagetype" +msgstr "Referentni Pagetype" -#. Label of the reference_doctype (Link) field in DocType 'CRM Call Log' -#. Label of the reference_doctype (Link) field in DocType 'CRM Task' -#. Label of the reference_doctype (Link) field in DocType 'FCRM Note' -#: crm/fcrm/doctype/crm_call_log/crm_call_log.json -#: crm/fcrm/doctype/crm_task/crm_task.json -#: crm/fcrm/doctype/fcrm_note/fcrm_note.json +#. Label of the reference_pagetype (Link) field in PageType 'CRM Call Log' +#. Label of the reference_pagetype (Link) field in PageType 'CRM Task' +#. Label of the reference_pagetype (Link) field in PageType 'FCRM Note' +#: crm/fcrm/pagetype/crm_call_log/crm_call_log.json +#: crm/fcrm/pagetype/crm_task/crm_task.json +#: crm/fcrm/pagetype/fcrm_note/fcrm_note.json msgid "Reference Document Type" msgstr "Referentna vrsta dokumenta" -#. Label of the reference_docname (Dynamic Link) field in DocType 'CRM Call +#. Label of the reference_docname (Dynamic Link) field in PageType 'CRM Call #. Log' -#: crm/fcrm/doctype/crm_call_log/crm_call_log.json +#: crm/fcrm/pagetype/crm_call_log/crm_call_log.json msgid "Reference Name" msgstr "Referentni Naziv" @@ -4625,8 +4625,8 @@ msgstr "Odgovori Svima" msgid "Report an Issue" msgstr "Prijavi Slučaj" -#. Option for the 'Type' (Select) field in DocType 'CRM Fields Layout' -#: crm/fcrm/doctype/crm_fields_layout/crm_fields_layout.json +#. Option for the 'Type' (Select) field in PageType 'CRM Fields Layout' +#: crm/fcrm/pagetype/crm_fields_layout/crm_fields_layout.json msgid "Required Fields" msgstr "Obavezna Polja" @@ -4642,7 +4642,7 @@ msgstr "Poništi" msgid "Reset Changes" msgstr "Poništi Promjene" -#: crm/fcrm/doctype/erpnext_crm_settings/erpnext_crm_settings.js:7 +#: crm/fcrm/pagetype/erpnext_crm_settings/erpnext_crm_settings.js:7 msgid "Reset ERPNext Form Script" msgstr "Poništi Sistemsku Skriptu Forme" @@ -4654,35 +4654,35 @@ msgstr "Vrati na Standard" msgid "Reset to default" msgstr "Vrati na Standard" -#. Label of the response_by (Datetime) field in DocType 'CRM Deal' -#. Label of the response_by (Datetime) field in DocType 'CRM Lead' -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_lead/crm_lead.json +#. Label of the response_by (Datetime) field in PageType 'CRM Deal' +#. Label of the response_by (Datetime) field in PageType 'CRM Lead' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_lead/crm_lead.json msgid "Response By" msgstr "Odgovor od" -#. Label of the response_details_section (Section Break) field in DocType 'CRM +#. Label of the response_details_section (Section Break) field in PageType 'CRM #. Deal' -#. Label of the response_details_section (Section Break) field in DocType 'CRM +#. Label of the response_details_section (Section Break) field in PageType 'CRM #. Lead' -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_lead/crm_lead.json +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_lead/crm_lead.json msgid "Response Details" msgstr "Detalji Odgovora" -#. Label of the section_break_ufaf (Section Break) field in DocType 'CRM +#. Label of the section_break_ufaf (Section Break) field in PageType 'CRM #. Service Level Agreement' -#: crm/fcrm/doctype/crm_service_level_agreement/crm_service_level_agreement.json +#: crm/fcrm/pagetype/crm_service_level_agreement/crm_service_level_agreement.json msgid "Response and Follow Up" msgstr "Odgovor i Praćenje" -#: crm/fcrm/doctype/fcrm_settings/fcrm_settings.js:14 +#: crm/fcrm/pagetype/fcrm_settings/fcrm_settings.js:14 msgid "Restore" msgstr "Vrati" -#. Label of the restore_defaults (Button) field in DocType 'FCRM Settings' -#: crm/fcrm/doctype/fcrm_settings/fcrm_settings.js:13 -#: crm/fcrm/doctype/fcrm_settings/fcrm_settings.json +#. Label of the restore_defaults (Button) field in PageType 'FCRM Settings' +#: crm/fcrm/pagetype/fcrm_settings/fcrm_settings.js:13 +#: crm/fcrm/pagetype/fcrm_settings/fcrm_settings.json msgid "Restore Defaults" msgstr "Vrati Standard Postavke" @@ -4699,13 +4699,13 @@ msgstr "Prihod" msgid "Rich Text" msgstr "Rich Text" -#. Label of the rgt (Int) field in DocType 'CRM Territory' -#: crm/fcrm/doctype/crm_territory/crm_territory.json +#. Label of the rgt (Int) field in PageType 'CRM Territory' +#: crm/fcrm/pagetype/crm_territory/crm_territory.json msgid "Right" msgstr "Desno" -#. Option for the 'Status' (Select) field in DocType 'CRM Call Log' -#: crm/fcrm/doctype/crm_call_log/crm_call_log.json +#. Option for the 'Status' (Select) field in PageType 'CRM Call Log' +#: crm/fcrm/pagetype/crm_call_log/crm_call_log.json msgid "Ringing" msgstr "Zvoni" @@ -4714,55 +4714,55 @@ msgstr "Zvoni" msgid "Ringing..." msgstr "Zvoni..." -#. Label of the role (Select) field in DocType 'CRM Invitation' -#: crm/fcrm/doctype/crm_invitation/crm_invitation.json +#. Label of the role (Select) field in PageType 'CRM Invitation' +#: crm/fcrm/pagetype/crm_invitation/crm_invitation.json #: frontend/src/components/Modals/AddExistingUserModal.vue:46 msgid "Role" msgstr "Uloga" -#. Option for the 'Type' (Select) field in DocType 'CRM Dropdown Item' -#. Label of the route (Data) field in DocType 'CRM Dropdown Item' -#: crm/fcrm/doctype/crm_dropdown_item/crm_dropdown_item.json +#. Option for the 'Type' (Select) field in PageType 'CRM Dropdown Item' +#. Label of the route (Data) field in PageType 'CRM Dropdown Item' +#: crm/fcrm/pagetype/crm_dropdown_item/crm_dropdown_item.json msgid "Route" msgstr "Ruta" -#. Label of the route_name (Data) field in DocType 'CRM View Settings' -#: crm/fcrm/doctype/crm_view_settings/crm_view_settings.json +#. Label of the route_name (Data) field in PageType 'CRM View Settings' +#: crm/fcrm/pagetype/crm_view_settings/crm_view_settings.json msgid "Route Name" msgstr "Naziv Rute" -#. Label of the rows (Code) field in DocType 'CRM View Settings' -#: crm/fcrm/doctype/crm_view_settings/crm_view_settings.json +#. Label of the rows (Code) field in PageType 'CRM View Settings' +#: crm/fcrm/pagetype/crm_view_settings/crm_view_settings.json msgid "Rows" msgstr "Redovi" -#. Label of the sla_tab (Tab Break) field in DocType 'CRM Deal' -#. Label of the sla (Link) field in DocType 'CRM Deal' -#. Label of the sla_tab (Tab Break) field in DocType 'CRM Lead' -#. Label of the sla (Link) field in DocType 'CRM Lead' -#. Label of a shortcut in the Frappe CRM Workspace -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_lead/crm_lead.json -#: crm/fcrm/workspace/frappe_crm/frappe_crm.json +#. Label of the sla_tab (Tab Break) field in PageType 'CRM Deal' +#. Label of the sla (Link) field in PageType 'CRM Deal' +#. Label of the sla_tab (Tab Break) field in PageType 'CRM Lead' +#. Label of the sla (Link) field in PageType 'CRM Lead' +#. Label of a shortcut in the Jingrow CRM Workspace +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_lead/crm_lead.json +#: crm/fcrm/workspace/jingrow_crm/jingrow_crm.json msgid "SLA" msgstr "Standard Nivo Ugovor" -#. Label of the sla_creation (Datetime) field in DocType 'CRM Deal' -#. Label of the sla_creation (Datetime) field in DocType 'CRM Lead' -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_lead/crm_lead.json +#. Label of the sla_creation (Datetime) field in PageType 'CRM Deal' +#. Label of the sla_creation (Datetime) field in PageType 'CRM Lead' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_lead/crm_lead.json msgid "SLA Creation" msgstr "Kreiranje Standard Nivo Ugovora" -#. Label of the sla_name (Data) field in DocType 'CRM Service Level Agreement' -#: crm/fcrm/doctype/crm_service_level_agreement/crm_service_level_agreement.json +#. Label of the sla_name (Data) field in PageType 'CRM Service Level Agreement' +#: crm/fcrm/pagetype/crm_service_level_agreement/crm_service_level_agreement.json msgid "SLA Name" msgstr "Naziv Standard Nivo Ugovora" -#. Label of the sla_status (Select) field in DocType 'CRM Deal' -#. Label of the sla_status (Select) field in DocType 'CRM Lead' -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_lead/crm_lead.json +#. Label of the sla_status (Select) field in PageType 'CRM Deal' +#. Label of the sla_status (Select) field in PageType 'CRM Lead' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_lead/crm_lead.json msgid "SLA Status" msgstr "Status Standard Nivo Ugovora" @@ -4771,57 +4771,57 @@ msgid "SUBJECT" msgstr "PREDMET" #. Name of a role -#. Option for the 'Role' (Select) field in DocType 'CRM Invitation' -#: crm/fcrm/doctype/crm_call_log/crm_call_log.json -#: crm/fcrm/doctype/crm_communication_status/crm_communication_status.json -#: crm/fcrm/doctype/crm_dashboard/crm_dashboard.json -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_deal_status/crm_deal_status.json -#: crm/fcrm/doctype/crm_exotel_settings/crm_exotel_settings.json -#: crm/fcrm/doctype/crm_form_script/crm_form_script.json -#: crm/fcrm/doctype/crm_global_settings/crm_global_settings.json -#: crm/fcrm/doctype/crm_holiday_list/crm_holiday_list.json -#: crm/fcrm/doctype/crm_industry/crm_industry.json -#: crm/fcrm/doctype/crm_invitation/crm_invitation.json -#: crm/fcrm/doctype/crm_lead/crm_lead.json -#: crm/fcrm/doctype/crm_lead_source/crm_lead_source.json -#: crm/fcrm/doctype/crm_lead_status/crm_lead_status.json -#: crm/fcrm/doctype/crm_lost_reason/crm_lost_reason.json -#: crm/fcrm/doctype/crm_notification/crm_notification.json -#: crm/fcrm/doctype/crm_organization/crm_organization.json -#: crm/fcrm/doctype/crm_service_level_agreement/crm_service_level_agreement.json -#: crm/fcrm/doctype/crm_task/crm_task.json -#: crm/fcrm/doctype/crm_territory/crm_territory.json -#: crm/fcrm/doctype/crm_twilio_settings/crm_twilio_settings.json -#: crm/fcrm/doctype/crm_view_settings/crm_view_settings.json -#: crm/fcrm/doctype/erpnext_crm_settings/erpnext_crm_settings.json -#: crm/fcrm/doctype/fcrm_note/fcrm_note.json -#: crm/fcrm/doctype/fcrm_settings/fcrm_settings.json -#: crm/fcrm/doctype/helpdesk_crm_settings/helpdesk_crm_settings.json +#. Option for the 'Role' (Select) field in PageType 'CRM Invitation' +#: crm/fcrm/pagetype/crm_call_log/crm_call_log.json +#: crm/fcrm/pagetype/crm_communication_status/crm_communication_status.json +#: crm/fcrm/pagetype/crm_dashboard/crm_dashboard.json +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_deal_status/crm_deal_status.json +#: crm/fcrm/pagetype/crm_exotel_settings/crm_exotel_settings.json +#: crm/fcrm/pagetype/crm_form_script/crm_form_script.json +#: crm/fcrm/pagetype/crm_global_settings/crm_global_settings.json +#: crm/fcrm/pagetype/crm_holiday_list/crm_holiday_list.json +#: crm/fcrm/pagetype/crm_industry/crm_industry.json +#: crm/fcrm/pagetype/crm_invitation/crm_invitation.json +#: crm/fcrm/pagetype/crm_lead/crm_lead.json +#: crm/fcrm/pagetype/crm_lead_source/crm_lead_source.json +#: crm/fcrm/pagetype/crm_lead_status/crm_lead_status.json +#: crm/fcrm/pagetype/crm_lost_reason/crm_lost_reason.json +#: crm/fcrm/pagetype/crm_notification/crm_notification.json +#: crm/fcrm/pagetype/crm_organization/crm_organization.json +#: crm/fcrm/pagetype/crm_service_level_agreement/crm_service_level_agreement.json +#: crm/fcrm/pagetype/crm_task/crm_task.json +#: crm/fcrm/pagetype/crm_territory/crm_territory.json +#: crm/fcrm/pagetype/crm_twilio_settings/crm_twilio_settings.json +#: crm/fcrm/pagetype/crm_view_settings/crm_view_settings.json +#: crm/fcrm/pagetype/erpnext_crm_settings/erpnext_crm_settings.json +#: crm/fcrm/pagetype/fcrm_note/fcrm_note.json +#: crm/fcrm/pagetype/fcrm_settings/fcrm_settings.json +#: crm/fcrm/pagetype/helpdesk_crm_settings/helpdesk_crm_settings.json msgid "Sales Manager" msgstr "Upravitelj Prodaje" #. Name of a role -#. Option for the 'Role' (Select) field in DocType 'CRM Invitation' -#: crm/fcrm/doctype/crm_call_log/crm_call_log.json -#: crm/fcrm/doctype/crm_communication_status/crm_communication_status.json -#: crm/fcrm/doctype/crm_dashboard/crm_dashboard.json -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_deal_status/crm_deal_status.json -#: crm/fcrm/doctype/crm_global_settings/crm_global_settings.json -#: crm/fcrm/doctype/crm_holiday_list/crm_holiday_list.json -#: crm/fcrm/doctype/crm_industry/crm_industry.json -#: crm/fcrm/doctype/crm_invitation/crm_invitation.json -#: crm/fcrm/doctype/crm_lead/crm_lead.json -#: crm/fcrm/doctype/crm_lead_source/crm_lead_source.json -#: crm/fcrm/doctype/crm_lead_status/crm_lead_status.json -#: crm/fcrm/doctype/crm_lost_reason/crm_lost_reason.json -#: crm/fcrm/doctype/crm_notification/crm_notification.json -#: crm/fcrm/doctype/crm_organization/crm_organization.json -#: crm/fcrm/doctype/crm_task/crm_task.json -#: crm/fcrm/doctype/crm_territory/crm_territory.json -#: crm/fcrm/doctype/crm_view_settings/crm_view_settings.json -#: crm/fcrm/doctype/fcrm_note/fcrm_note.json +#. Option for the 'Role' (Select) field in PageType 'CRM Invitation' +#: crm/fcrm/pagetype/crm_call_log/crm_call_log.json +#: crm/fcrm/pagetype/crm_communication_status/crm_communication_status.json +#: crm/fcrm/pagetype/crm_dashboard/crm_dashboard.json +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_deal_status/crm_deal_status.json +#: crm/fcrm/pagetype/crm_global_settings/crm_global_settings.json +#: crm/fcrm/pagetype/crm_holiday_list/crm_holiday_list.json +#: crm/fcrm/pagetype/crm_industry/crm_industry.json +#: crm/fcrm/pagetype/crm_invitation/crm_invitation.json +#: crm/fcrm/pagetype/crm_lead/crm_lead.json +#: crm/fcrm/pagetype/crm_lead_source/crm_lead_source.json +#: crm/fcrm/pagetype/crm_lead_status/crm_lead_status.json +#: crm/fcrm/pagetype/crm_lost_reason/crm_lost_reason.json +#: crm/fcrm/pagetype/crm_notification/crm_notification.json +#: crm/fcrm/pagetype/crm_organization/crm_organization.json +#: crm/fcrm/pagetype/crm_task/crm_task.json +#: crm/fcrm/pagetype/crm_territory/crm_territory.json +#: crm/fcrm/pagetype/crm_view_settings/crm_view_settings.json +#: crm/fcrm/pagetype/fcrm_note/fcrm_note.json #: frontend/src/components/Modals/AddExistingUserModal.vue:92 #: frontend/src/components/Settings/InviteUserPage.vue:156 #: frontend/src/components/Settings/InviteUserPage.vue:163 @@ -4845,17 +4845,17 @@ msgstr "Korisnik Prodaje" msgid "Salesperson" msgstr "Prodavač" -#. Label of the salutation (Link) field in DocType 'CRM Deal' -#. Label of the salutation (Link) field in DocType 'CRM Lead' -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_lead/crm_lead.json +#. Label of the salutation (Link) field in PageType 'CRM Deal' +#. Label of the salutation (Link) field in PageType 'CRM Lead' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_lead/crm_lead.json msgid "Salutation" msgstr "Titula" -#. Option for the 'Weekly Off' (Select) field in DocType 'CRM Holiday List' -#. Option for the 'Workday' (Select) field in DocType 'CRM Service Day' -#: crm/fcrm/doctype/crm_holiday_list/crm_holiday_list.json -#: crm/fcrm/doctype/crm_service_day/crm_service_day.json +#. Option for the 'Weekly Off' (Select) field in PageType 'CRM Holiday List' +#. Option for the 'Workday' (Select) field in PageType 'CRM Service Day' +#: crm/fcrm/pagetype/crm_holiday_list/crm_holiday_list.json +#: crm/fcrm/pagetype/crm_service_day/crm_service_day.json msgid "Saturday" msgstr "Subota" @@ -4904,8 +4904,8 @@ msgstr "Zakaži Događaj" msgid "Schedule an event" msgstr "Zakaži Događaj" -#. Label of the script (Code) field in DocType 'CRM Form Script' -#: crm/fcrm/doctype/crm_form_script/crm_form_script.json +#. Label of the script (Code) field in PageType 'CRM Form Script' +#: crm/fcrm/pagetype/crm_form_script/crm_form_script.json msgid "Script" msgstr "Skripta" @@ -4973,18 +4973,18 @@ msgstr "Pošalji e-poštu" msgid "Send invites to" msgstr "Pošalji pozivnice" -#. Option for the 'Type' (Select) field in DocType 'CRM Dropdown Item' -#: crm/fcrm/doctype/crm_dropdown_item/crm_dropdown_item.json +#. Option for the 'Type' (Select) field in PageType 'CRM Dropdown Item' +#: crm/fcrm/pagetype/crm_dropdown_item/crm_dropdown_item.json msgid "Separator" msgstr "Separator" -#. Label of the naming_series (Select) field in DocType 'CRM Lead' -#: crm/fcrm/doctype/crm_lead/crm_lead.json +#. Label of the naming_series (Select) field in PageType 'CRM Lead' +#: crm/fcrm/pagetype/crm_lead/crm_lead.json msgid "Series" msgstr "Numeričke Serije" -#. Label of the service_provider (Select) field in DocType 'FCRM Settings' -#: crm/fcrm/doctype/fcrm_settings/fcrm_settings.json +#. Label of the service_provider (Select) field in PageType 'FCRM Settings' +#: crm/fcrm/pagetype/fcrm_settings/fcrm_settings.json msgid "Service Provider" msgstr "Dobavljač Servisa" @@ -5029,8 +5029,8 @@ msgid "Setting up" msgstr "Postavljanje" #: frontend/src/components/Settings/emailConfig.js:145 -msgid "Setting up Frappe Mail requires you to have an API key and API Secret of your email account. Read more " -msgstr "Za postavljanje Frappe Mail-a potrebno je da imate API Ključ i API Tajnu za račun e-pošte. Pročitaj više. " +msgid "Setting up Jingrow Mail requires you to have an API key and API Secret of your email account. Read more " +msgstr "Za postavljanje Jingrow Mail-a potrebno je da imate API Ključ i API Tajnu za račun e-pošte. Pročitaj više. " #: frontend/src/components/Settings/emailConfig.js:97 msgid "Setting up GMail requires you to enable two factor authentication\n" @@ -5068,8 +5068,8 @@ msgid "Setting up Yandex requires you to enable two factor authentication\n" msgstr "Za podešavanje Yandexa potrebno je omogućiti dvofaktorsku autentifikaciju\n" "\t\t i lozinke specifične za aplikaciju. Pročitaj više " -#. Label of the defaults_tab (Tab Break) field in DocType 'FCRM Settings' -#: crm/fcrm/doctype/fcrm_settings/fcrm_settings.json +#. Label of the defaults_tab (Tab Break) field in PageType 'FCRM Settings' +#: crm/fcrm/pagetype/fcrm_settings/fcrm_settings.json #: frontend/src/components/Layouts/AppSidebar.vue:537 #: frontend/src/components/Settings/Settings.vue:12 msgid "Settings" @@ -5079,7 +5079,7 @@ msgstr "Postavke" msgid "Setup Email" msgstr "Postavljanje e-pošte" -#: crm/fcrm/doctype/fcrm_settings/fcrm_settings.py:199 +#: crm/fcrm/pagetype/fcrm_settings/fcrm_settings.py:199 msgid "Setup the Exchange Rate Provider as 'Exchangerate Host' in settings, as default provider does not support currency conversion for {0} to {1}." msgstr "Postavite Pružatelja Usluge Kursa kao 'Pružitelja Usluge Kursa' u postavkama, jer standard pružatelj ne podržava pretvorbu valuta iz {0} u {1}." @@ -5114,21 +5114,21 @@ msgstr "Prikaži manje" msgid "Show preview" msgstr "Prikaži pregled" -#. Option for the 'Type' (Select) field in DocType 'CRM Fields Layout' -#: crm/fcrm/doctype/crm_fields_layout/crm_fields_layout.json +#. Option for the 'Type' (Select) field in PageType 'CRM Fields Layout' +#: crm/fcrm/pagetype/crm_fields_layout/crm_fields_layout.json msgid "Side Panel" msgstr "Bočni Panel" -#. Option for the 'Type' (Select) field in DocType 'CRM Global Settings' -#: crm/fcrm/doctype/crm_global_settings/crm_global_settings.json +#. Option for the 'Type' (Select) field in PageType 'CRM Global Settings' +#: crm/fcrm/pagetype/crm_global_settings/crm_global_settings.json msgid "Sidebar Items" msgstr "Stavke bočne trake" -#. Description of the 'Condition' (Code) field in DocType 'CRM Service Level +#. Description of the 'Condition' (Code) field in PageType 'CRM Service Level #. Agreement' -#: crm/fcrm/doctype/crm_service_level_agreement/crm_service_level_agreement.json -msgid "Simple Python Expression, Example: doc.status == 'Open' and doc.lead_source == 'Ads'" -msgstr "Jednostavan Python Izraz, Primjer: doc.status == 'Open' i doc.lead_source == 'Ads'" +#: crm/fcrm/pagetype/crm_service_level_agreement/crm_service_level_agreement.json +msgid "Simple Python Expression, Example: pg.status == 'Open' and pg.lead_source == 'Ads'" +msgstr "Jednostavan Python Izraz, Primjer: pg.status == 'Open' i pg.lead_source == 'Ads'" #: frontend/src/components/AssignTo.vue:83 msgid "Since you removed {0} from the assignee, the {0} has also been removed." @@ -5151,16 +5151,16 @@ msgstr "Došlo je do greške prilikom ažuriranja pravila dodjeljivanja" msgid "Sort" msgstr "Sortiraj" -#. Label of the source (Link) field in DocType 'CRM Deal' -#. Label of the source (Link) field in DocType 'CRM Lead' -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_lead/crm_lead.json +#. Label of the source (Link) field in PageType 'CRM Deal' +#. Label of the source (Link) field in PageType 'CRM Lead' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_lead/crm_lead.json #: frontend/src/components/Modals/EditValueModal.vue:10 msgid "Source" msgstr "Izvor" -#. Label of the source_name (Data) field in DocType 'CRM Lead Source' -#: crm/fcrm/doctype/crm_lead_source/crm_lead_source.json +#. Label of the source_name (Data) field in PageType 'CRM Lead Source' +#: crm/fcrm/pagetype/crm_lead_source/crm_lead_source.json msgid "Source Name" msgstr "Naziv Izvora" @@ -5173,12 +5173,12 @@ msgstr "Razmak" msgid "Stage" msgstr "Faza" -#: crm/fcrm/doctype/crm_form_script/crm_form_script.js:15 +#: crm/fcrm/pagetype/crm_form_script/crm_form_script.js:15 msgid "Standard Form Scripts can not be modified, duplicate the Form Script instead." msgstr "Standard Skripte Forme ne mogu se mijenjati, umjesto toga kopiraj Skriptu Forme." -#. Label of the standard_rate (Currency) field in DocType 'CRM Product' -#: crm/fcrm/doctype/crm_product/crm_product.json +#. Label of the standard_rate (Currency) field in PageType 'CRM Product' +#: crm/fcrm/pagetype/crm_product/crm_product.json msgid "Standard Selling Rate" msgstr "Standardna Prodajna Cijena" @@ -5186,18 +5186,18 @@ msgstr "Standardna Prodajna Cijena" msgid "Standard Views" msgstr "Standard Prikazi" -#. Label of the start_date (Date) field in DocType 'CRM Service Level +#. Label of the start_date (Date) field in PageType 'CRM Service Level #. Agreement' -#. Label of the start_date (Date) field in DocType 'CRM Task' -#: crm/fcrm/doctype/crm_service_level_agreement/crm_service_level_agreement.json -#: crm/fcrm/doctype/crm_task/crm_task.json +#. Label of the start_date (Date) field in PageType 'CRM Task' +#: crm/fcrm/pagetype/crm_service_level_agreement/crm_service_level_agreement.json +#: crm/fcrm/pagetype/crm_task/crm_task.json msgid "Start Date" msgstr "Start Datum" -#. Label of the start_time (Datetime) field in DocType 'CRM Call Log' -#. Label of the start_time (Time) field in DocType 'CRM Service Day' -#: crm/fcrm/doctype/crm_call_log/crm_call_log.json -#: crm/fcrm/doctype/crm_service_day/crm_service_day.json +#. Label of the start_time (Datetime) field in PageType 'CRM Call Log' +#. Label of the start_time (Time) field in PageType 'CRM Service Day' +#: crm/fcrm/pagetype/crm_call_log/crm_call_log.json +#: crm/fcrm/pagetype/crm_service_day/crm_service_day.json #: frontend/src/components/Calendar/CalendarEventPanel.vue:234 #: frontend/src/components/Modals/EventModal.vue:103 msgid "Start Time" @@ -5211,32 +5211,32 @@ msgstr "Vrijeme početka i završetka su obavezni" msgid "Start with sample 10 leads" msgstr "Počni s uzorkom od 10 potencijalnih klijenata" -#. Label of the status (Select) field in DocType 'CRM Call Log' -#. Label of the status (Data) field in DocType 'CRM Communication Status' -#. Label of the status (Link) field in DocType 'CRM Deal' -#. Label of the deal_status (Data) field in DocType 'CRM Deal Status' -#. Label of the status (Select) field in DocType 'CRM Invitation' -#. Label of the status (Link) field in DocType 'CRM Lead' -#. Label of the lead_status (Data) field in DocType 'CRM Lead Status' -#. Label of the status (Select) field in DocType 'CRM Task' -#: crm/fcrm/doctype/crm_call_log/crm_call_log.json -#: crm/fcrm/doctype/crm_communication_status/crm_communication_status.json -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_deal_status/crm_deal_status.json -#: crm/fcrm/doctype/crm_invitation/crm_invitation.json -#: crm/fcrm/doctype/crm_lead/crm_lead.json -#: crm/fcrm/doctype/crm_lead_status/crm_lead_status.json -#: crm/fcrm/doctype/crm_task/crm_task.json frontend/src/pages/Contact.vue:505 +#. Label of the status (Select) field in PageType 'CRM Call Log' +#. Label of the status (Data) field in PageType 'CRM Communication Status' +#. Label of the status (Link) field in PageType 'CRM Deal' +#. Label of the deal_status (Data) field in PageType 'CRM Deal Status' +#. Label of the status (Select) field in PageType 'CRM Invitation' +#. Label of the status (Link) field in PageType 'CRM Lead' +#. Label of the lead_status (Data) field in PageType 'CRM Lead Status' +#. Label of the status (Select) field in PageType 'CRM Task' +#: crm/fcrm/pagetype/crm_call_log/crm_call_log.json +#: crm/fcrm/pagetype/crm_communication_status/crm_communication_status.json +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_deal_status/crm_deal_status.json +#: crm/fcrm/pagetype/crm_invitation/crm_invitation.json +#: crm/fcrm/pagetype/crm_lead/crm_lead.json +#: crm/fcrm/pagetype/crm_lead_status/crm_lead_status.json +#: crm/fcrm/pagetype/crm_task/crm_task.json frontend/src/pages/Contact.vue:505 #: frontend/src/pages/MobileContact.vue:513 #: frontend/src/pages/MobileOrganization.vue:457 #: frontend/src/pages/Organization.vue:478 msgid "Status" msgstr "Status" -#. Label of the status_change_log (Table) field in DocType 'CRM Deal' -#. Label of the status_change_log (Table) field in DocType 'CRM Lead' -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_lead/crm_lead.json +#. Label of the status_change_log (Table) field in PageType 'CRM Deal' +#. Label of the status_change_log (Table) field in PageType 'CRM Lead' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_lead/crm_lead.json msgid "Status Change Log" msgstr "Zapisnik Promjena Statusa" @@ -5245,8 +5245,8 @@ msgstr "Zapisnik Promjena Statusa" msgid "Status is required" msgstr "Status je obavezan" -#. Label of the subdomain (Data) field in DocType 'CRM Exotel Settings' -#: crm/fcrm/doctype/crm_exotel_settings/crm_exotel_settings.json +#. Label of the subdomain (Data) field in PageType 'CRM Exotel Settings' +#: crm/fcrm/pagetype/crm_exotel_settings/crm_exotel_settings.json msgid "Subdomain" msgstr "Poddomena" @@ -5264,10 +5264,10 @@ msgstr "Predmet je obavezan" msgid "Subject: {0}" msgstr "Predmet: {0}" -#. Option for the 'Weekly Off' (Select) field in DocType 'CRM Holiday List' -#. Option for the 'Workday' (Select) field in DocType 'CRM Service Day' -#: crm/fcrm/doctype/crm_holiday_list/crm_holiday_list.json -#: crm/fcrm/doctype/crm_service_day/crm_service_day.json +#. Option for the 'Weekly Off' (Select) field in PageType 'CRM Holiday List' +#. Option for the 'Workday' (Select) field in PageType 'CRM Service Day' +#: crm/fcrm/pagetype/crm_holiday_list/crm_holiday_list.json +#: crm/fcrm/pagetype/crm_service_day/crm_service_day.json msgid "Sunday" msgstr "Nedjelja" @@ -5288,21 +5288,21 @@ msgid "System Configuration" msgstr "Konfiguracija Sistema" #. Name of a role -#. Option for the 'Role' (Select) field in DocType 'CRM Invitation' -#: crm/fcrm/doctype/crm_dashboard/crm_dashboard.json -#: crm/fcrm/doctype/crm_exotel_settings/crm_exotel_settings.json -#: crm/fcrm/doctype/crm_fields_layout/crm_fields_layout.json -#: crm/fcrm/doctype/crm_global_settings/crm_global_settings.json -#: crm/fcrm/doctype/crm_invitation/crm_invitation.json -#: crm/fcrm/doctype/crm_lead_source/crm_lead_source.json -#: crm/fcrm/doctype/crm_lost_reason/crm_lost_reason.json -#: crm/fcrm/doctype/crm_notification/crm_notification.json -#: crm/fcrm/doctype/crm_product/crm_product.json -#: crm/fcrm/doctype/crm_telephony_agent/crm_telephony_agent.json -#: crm/fcrm/doctype/crm_twilio_settings/crm_twilio_settings.json -#: crm/fcrm/doctype/erpnext_crm_settings/erpnext_crm_settings.json -#: crm/fcrm/doctype/fcrm_settings/fcrm_settings.json -#: crm/fcrm/doctype/helpdesk_crm_settings/helpdesk_crm_settings.json +#. Option for the 'Role' (Select) field in PageType 'CRM Invitation' +#: crm/fcrm/pagetype/crm_dashboard/crm_dashboard.json +#: crm/fcrm/pagetype/crm_exotel_settings/crm_exotel_settings.json +#: crm/fcrm/pagetype/crm_fields_layout/crm_fields_layout.json +#: crm/fcrm/pagetype/crm_global_settings/crm_global_settings.json +#: crm/fcrm/pagetype/crm_invitation/crm_invitation.json +#: crm/fcrm/pagetype/crm_lead_source/crm_lead_source.json +#: crm/fcrm/pagetype/crm_lost_reason/crm_lost_reason.json +#: crm/fcrm/pagetype/crm_notification/crm_notification.json +#: crm/fcrm/pagetype/crm_product/crm_product.json +#: crm/fcrm/pagetype/crm_telephony_agent/crm_telephony_agent.json +#: crm/fcrm/pagetype/crm_twilio_settings/crm_twilio_settings.json +#: crm/fcrm/pagetype/erpnext_crm_settings/erpnext_crm_settings.json +#: crm/fcrm/pagetype/fcrm_settings/fcrm_settings.json +#: crm/fcrm/pagetype/helpdesk_crm_settings/helpdesk_crm_settings.json msgid "System Manager" msgstr "Upravitelj Sistema" @@ -5314,8 +5314,8 @@ msgstr "ZA" msgid "Take a note..." msgstr "Zabilježi..." -#. Option for the 'Type' (Select) field in DocType 'CRM Notification' -#: crm/fcrm/doctype/crm_notification/crm_notification.json +#. Option for the 'Type' (Select) field in PageType 'CRM Notification' +#: crm/fcrm/pagetype/crm_notification/crm_notification.json #: frontend/src/components/Layouts/AppSidebar.vue:555 msgid "Task" msgstr "Zadatak" @@ -5333,8 +5333,8 @@ msgstr "Telegram Kanal" msgid "Telephony" msgstr "Telefonija" -#. Label of the telephony_medium (Select) field in DocType 'CRM Call Log' -#: crm/fcrm/doctype/crm_call_log/crm_call_log.json +#. Label of the telephony_medium (Select) field in PageType 'CRM Call Log' +#: crm/fcrm/pagetype/crm_call_log/crm_call_log.json msgid "Telephony Medium" msgstr "Medij Telefonije" @@ -5370,27 +5370,27 @@ msgstr "Šablon je uspješno preimenovan" msgid "Template updated successfully" msgstr "Šablon je uspješno ažuriran" -#. Label of a shortcut in the Frappe CRM Workspace -#: crm/fcrm/workspace/frappe_crm/frappe_crm.json +#. Label of a shortcut in the Jingrow CRM Workspace +#: crm/fcrm/workspace/jingrow_crm/jingrow_crm.json msgid "Territories" msgstr "Distrikti" -#. Label of the territory (Link) field in DocType 'CRM Deal' -#. Label of the territory (Link) field in DocType 'CRM Lead' -#. Label of the territory (Link) field in DocType 'CRM Organization' -#: crm/api/dashboard.py:1022 crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_lead/crm_lead.json -#: crm/fcrm/doctype/crm_organization/crm_organization.json +#. Label of the territory (Link) field in PageType 'CRM Deal' +#. Label of the territory (Link) field in PageType 'CRM Lead' +#. Label of the territory (Link) field in PageType 'CRM Organization' +#: crm/api/dashboard.py:1022 crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_lead/crm_lead.json +#: crm/fcrm/pagetype/crm_organization/crm_organization.json msgid "Territory" msgstr "Distrikt" -#. Label of the territory_manager (Link) field in DocType 'CRM Territory' -#: crm/fcrm/doctype/crm_territory/crm_territory.json +#. Label of the territory_manager (Link) field in PageType 'CRM Territory' +#: crm/fcrm/pagetype/crm_territory/crm_territory.json msgid "Territory Manager" msgstr "Upravitelj Distrikta" -#. Label of the territory_name (Data) field in DocType 'CRM Territory' -#: crm/fcrm/doctype/crm_territory/crm_territory.json +#. Label of the territory_name (Data) field in PageType 'CRM Territory' +#: crm/fcrm/pagetype/crm_territory/crm_territory.json msgid "Territory Name" msgstr "Naziv Distrikta" @@ -5398,22 +5398,22 @@ msgstr "Naziv Distrikta" msgid "Thanks" msgstr "Hvala" -#: crm/fcrm/doctype/crm_service_level_agreement/crm_service_level_agreement.py:46 +#: crm/fcrm/pagetype/crm_service_level_agreement/crm_service_level_agreement.py:46 msgid "The Condition '{0}' is invalid: {1}" msgstr "Uvjet '{0}' je nevažeći: {1}" -#. Description of the 'Exchange Rate' (Float) field in DocType 'CRM Deal' -#: crm/fcrm/doctype/crm_deal/crm_deal.json +#. Description of the 'Exchange Rate' (Float) field in PageType 'CRM Deal' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json msgid "The rate used to convert the deal’s currency to your crm's base currency (set in CRM Settings). It is set once when the currency is first added and doesn't change automatically." msgstr "Kurs koji se koristi za konverziju valute posla u osnovnu valutu CRM-a (postavljeno u Postavkama CRM-a). Postavlja se jednom kada se valuta prvi put doda i ne mijenja se automatski." -#. Description of the 'Exchange Rate' (Float) field in DocType 'CRM +#. Description of the 'Exchange Rate' (Float) field in PageType 'CRM #. Organization' -#: crm/fcrm/doctype/crm_organization/crm_organization.json +#: crm/fcrm/pagetype/crm_organization/crm_organization.json msgid "The rate used to convert the organization’s currency to your crm's base currency (set in CRM Settings). It is set once when the currency is first added and doesn't change automatically." msgstr "Kurs koji se koristi za konverziju valute organizacije u osnovnu valutu CRM-a (postavljeno u Postavkama CRM-a). Postavlja se jednom kada se valuta prvi put doda i ne mijenja se automatski." -#: crm/fcrm/doctype/crm_service_level_agreement/crm_service_level_agreement.js:14 +#: crm/fcrm/pagetype/crm_service_level_agreement/crm_service_level_agreement.js:14 msgid "There can only be one default priority in Priorities table" msgstr "U tabeli prioriteta može postojati samo jedan standard prioritet" @@ -5450,14 +5450,14 @@ msgstr "Ovo će izbrisati odabrane artikle i artikle povezane s njima. Jeste li msgid "This will delete selected items and unlink linked items to it, are you sure?" msgstr "Ovo će izbrisati odabrane artikle i prekinuti vezu s njima. Jeste li sigurni?" -#: crm/fcrm/doctype/fcrm_settings/fcrm_settings.js:9 +#: crm/fcrm/pagetype/fcrm_settings/fcrm_settings.js:9 msgid "This will restore (if not exist) all the default statuses, custom fields and layouts. Delete & Restore will delete default layouts and then restore them." msgstr "Ovo će vratiti (ako ne postoje) sve standard statuse, prilagođena polja i izglede. Izbriši & Vrati će izbrisati standard izglede, a zatim ih vratiti." -#. Option for the 'Weekly Off' (Select) field in DocType 'CRM Holiday List' -#. Option for the 'Workday' (Select) field in DocType 'CRM Service Day' -#: crm/fcrm/doctype/crm_holiday_list/crm_holiday_list.json -#: crm/fcrm/doctype/crm_service_day/crm_service_day.json +#. Option for the 'Weekly Off' (Select) field in PageType 'CRM Holiday List' +#. Option for the 'Workday' (Select) field in PageType 'CRM Service Day' +#: crm/fcrm/pagetype/crm_holiday_list/crm_holiday_list.json +#: crm/fcrm/pagetype/crm_service_day/crm_service_day.json msgid "Thursday" msgstr "Četvrtak" @@ -5469,18 +5469,18 @@ msgstr "Vrijeme" msgid "Timespan" msgstr "Vremenski Razmak" -#. Label of the title (Data) field in DocType 'CRM Task' -#. Label of the title (Data) field in DocType 'FCRM Note' -#: crm/fcrm/doctype/crm_task/crm_task.json -#: crm/fcrm/doctype/fcrm_note/fcrm_note.json +#. Label of the title (Data) field in PageType 'CRM Task' +#. Label of the title (Data) field in PageType 'FCRM Note' +#: crm/fcrm/pagetype/crm_task/crm_task.json +#: crm/fcrm/pagetype/fcrm_note/fcrm_note.json #: frontend/src/components/Modals/EventModal.vue:43 #: frontend/src/components/Modals/NoteModal.vue:26 #: frontend/src/components/Modals/TaskModal.vue:25 msgid "Title" msgstr "Naziv" -#. Label of the title_field (Data) field in DocType 'CRM View Settings' -#: crm/fcrm/doctype/crm_view_settings/crm_view_settings.json +#. Label of the title_field (Data) field in PageType 'CRM View Settings' +#: crm/fcrm/pagetype/crm_view_settings/crm_view_settings.json #: frontend/src/components/Kanban/KanbanSettings.vue:29 msgid "Title Field" msgstr "Polje naslova" @@ -5490,28 +5490,28 @@ msgstr "Polje naslova" msgid "Title is required" msgstr "Naziv je obavezan" -#. Label of the to (Data) field in DocType 'CRM Call Log' -#. Label of the to (Data) field in DocType 'CRM Status Change Log' -#: crm/fcrm/doctype/crm_call_log/crm_call_log.json -#: crm/fcrm/doctype/crm_status_change_log/crm_status_change_log.json +#. Label of the to (Data) field in PageType 'CRM Call Log' +#. Label of the to (Data) field in PageType 'CRM Status Change Log' +#: crm/fcrm/pagetype/crm_call_log/crm_call_log.json +#: crm/fcrm/pagetype/crm_status_change_log/crm_status_change_log.json #: frontend/src/components/Activities/EmailArea.vue:53 msgid "To" msgstr "Do" -#. Label of the to_date (Date) field in DocType 'CRM Holiday List' -#. Label of the to_date (Datetime) field in DocType 'CRM Status Change Log' -#: crm/fcrm/doctype/crm_holiday_list/crm_holiday_list.json -#: crm/fcrm/doctype/crm_status_change_log/crm_status_change_log.json +#. Label of the to_date (Date) field in PageType 'CRM Holiday List' +#. Label of the to_date (Datetime) field in PageType 'CRM Status Change Log' +#: crm/fcrm/pagetype/crm_holiday_list/crm_holiday_list.json +#: crm/fcrm/pagetype/crm_status_change_log/crm_status_change_log.json msgid "To Date" msgstr "Do Datuma" -#. Label of the to_type (Data) field in DocType 'CRM Status Change Log' -#: crm/fcrm/doctype/crm_status_change_log/crm_status_change_log.json +#. Label of the to_type (Data) field in PageType 'CRM Status Change Log' +#: crm/fcrm/pagetype/crm_status_change_log/crm_status_change_log.json msgid "To Type" msgstr "Do Tipa" -#. Label of the to_user (Link) field in DocType 'CRM Notification' -#: crm/fcrm/doctype/crm_notification/crm_notification.json +#. Label of the to_user (Link) field in PageType 'CRM Notification' +#: crm/fcrm/pagetype/crm_notification/crm_notification.json msgid "To User" msgstr "Za korisnika" @@ -5523,8 +5523,8 @@ msgstr "Da biste saznali više o postavljanju računa e-pošte, klikni" msgid "Today" msgstr "Danas" -#. Option for the 'Status' (Select) field in DocType 'CRM Task' -#: crm/fcrm/doctype/crm_task/crm_task.json +#. Option for the 'Status' (Select) field in PageType 'CRM Task' +#: crm/fcrm/pagetype/crm_task/crm_task.json msgid "Todo" msgstr "Za Uraditi" @@ -5541,22 +5541,22 @@ msgstr "Sutra" msgid "Took a call with John Doe and discussed the new project." msgstr "Imao poziv sa John Doeom i razgovor o novom projektu." -#. Label of the total (Currency) field in DocType 'CRM Deal' -#. Label of the total (Currency) field in DocType 'CRM Lead' -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_lead/crm_lead.json +#. Label of the total (Currency) field in PageType 'CRM Deal' +#. Label of the total (Currency) field in PageType 'CRM Lead' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_lead/crm_lead.json msgid "Total" msgstr "Ukupno" -#. Label of the total_holidays (Int) field in DocType 'CRM Holiday List' -#: crm/fcrm/doctype/crm_holiday_list/crm_holiday_list.json +#. Label of the total_holidays (Int) field in PageType 'CRM Holiday List' +#: crm/fcrm/pagetype/crm_holiday_list/crm_holiday_list.json msgid "Total Holidays" msgstr "Ukupno Praznika" -#. Description of the 'Net Total' (Currency) field in DocType 'CRM Deal' -#. Description of the 'Net Total' (Currency) field in DocType 'CRM Lead' -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_lead/crm_lead.json +#. Description of the 'Net Total' (Currency) field in PageType 'CRM Deal' +#. Description of the 'Net Total' (Currency) field in PageType 'CRM Lead' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_lead/crm_lead.json msgid "Total after discount" msgstr "Ukupno nakon popusta" @@ -5577,10 +5577,10 @@ msgstr "Ukupan broj izgubljenih poslova" msgid "Total number of won deals based on its closure date" msgstr "Ukupan broj dobivenih poslova na osnovu datuma zaključenja" -#. Option for the 'Weekly Off' (Select) field in DocType 'CRM Holiday List' -#. Option for the 'Workday' (Select) field in DocType 'CRM Service Day' -#: crm/fcrm/doctype/crm_holiday_list/crm_holiday_list.json -#: crm/fcrm/doctype/crm_service_day/crm_service_day.json +#. Option for the 'Weekly Off' (Select) field in PageType 'CRM Holiday List' +#. Option for the 'Workday' (Select) field in PageType 'CRM Service Day' +#: crm/fcrm/pagetype/crm_holiday_list/crm_holiday_list.json +#: crm/fcrm/pagetype/crm_service_day/crm_service_day.json msgid "Tuesday" msgstr "Utorak" @@ -5588,30 +5588,30 @@ msgstr "Utorak" msgid "Turn into a group" msgstr "Pretvori u grupu" -#. Label of the twiml_sid (Data) field in DocType 'CRM Twilio Settings' -#: crm/fcrm/doctype/crm_twilio_settings/crm_twilio_settings.json +#. Label of the twiml_sid (Data) field in PageType 'CRM Twilio Settings' +#: crm/fcrm/pagetype/crm_twilio_settings/crm_twilio_settings.json msgid "TwiML SID" msgstr "TwiML SID" -#. Option for the 'Telephony Medium' (Select) field in DocType 'CRM Call Log' -#. Label of the twilio (Check) field in DocType 'CRM Telephony Agent' -#. Option for the 'Default Medium' (Select) field in DocType 'CRM Telephony +#. Option for the 'Telephony Medium' (Select) field in PageType 'CRM Call Log' +#. Label of the twilio (Check) field in PageType 'CRM Telephony Agent' +#. Option for the 'Default Medium' (Select) field in PageType 'CRM Telephony #. Agent' -#: crm/fcrm/doctype/crm_call_log/crm_call_log.json -#: crm/fcrm/doctype/crm_telephony_agent/crm_telephony_agent.json +#: crm/fcrm/pagetype/crm_call_log/crm_call_log.json +#: crm/fcrm/pagetype/crm_telephony_agent/crm_telephony_agent.json #: frontend/src/components/Layouts/AppSidebar.vue:601 #: frontend/src/components/Settings/TelephonySettings.vue:40 #: frontend/src/components/Settings/TelephonySettings.vue:50 msgid "Twilio" msgstr "Twilio" -#: crm/fcrm/doctype/crm_twilio_settings/crm_twilio_settings.py:59 -#: crm/fcrm/doctype/crm_twilio_settings/crm_twilio_settings.py:60 +#: crm/fcrm/pagetype/crm_twilio_settings/crm_twilio_settings.py:59 +#: crm/fcrm/pagetype/crm_twilio_settings/crm_twilio_settings.py:60 msgid "Twilio API credential creation error." msgstr "Greška pri kreiranju akreditiva za Twilio API." -#. Label of the twilio_number (Data) field in DocType 'CRM Telephony Agent' -#: crm/fcrm/doctype/crm_telephony_agent/crm_telephony_agent.json +#. Label of the twilio_number (Data) field in PageType 'CRM Telephony Agent' +#: crm/fcrm/pagetype/crm_telephony_agent/crm_telephony_agent.json msgid "Twilio Number" msgstr "Twilio Broj" @@ -5623,20 +5623,20 @@ msgstr "Twilio nije omogućen" msgid "Twilio settings updated successfully" msgstr "Twilio postavke uspješno ažurirane" -#. Label of the type (Select) field in DocType 'CRM Call Log' -#. Label of the type (Select) field in DocType 'CRM Deal Status' -#. Label of the type (Select) field in DocType 'CRM Dropdown Item' -#. Label of the type (Select) field in DocType 'CRM Fields Layout' -#. Label of the type (Select) field in DocType 'CRM Global Settings' -#. Label of the type (Select) field in DocType 'CRM Notification' -#. Label of the type (Select) field in DocType 'CRM View Settings' -#: crm/fcrm/doctype/crm_call_log/crm_call_log.json -#: crm/fcrm/doctype/crm_deal_status/crm_deal_status.json -#: crm/fcrm/doctype/crm_dropdown_item/crm_dropdown_item.json -#: crm/fcrm/doctype/crm_fields_layout/crm_fields_layout.json -#: crm/fcrm/doctype/crm_global_settings/crm_global_settings.json -#: crm/fcrm/doctype/crm_notification/crm_notification.json -#: crm/fcrm/doctype/crm_view_settings/crm_view_settings.json +#. Label of the type (Select) field in PageType 'CRM Call Log' +#. Label of the type (Select) field in PageType 'CRM Deal Status' +#. Label of the type (Select) field in PageType 'CRM Dropdown Item' +#. Label of the type (Select) field in PageType 'CRM Fields Layout' +#. Label of the type (Select) field in PageType 'CRM Global Settings' +#. Label of the type (Select) field in PageType 'CRM Notification' +#. Label of the type (Select) field in PageType 'CRM View Settings' +#: crm/fcrm/pagetype/crm_call_log/crm_call_log.json +#: crm/fcrm/pagetype/crm_deal_status/crm_deal_status.json +#: crm/fcrm/pagetype/crm_dropdown_item/crm_dropdown_item.json +#: crm/fcrm/pagetype/crm_fields_layout/crm_fields_layout.json +#: crm/fcrm/pagetype/crm_global_settings/crm_global_settings.json +#: crm/fcrm/pagetype/crm_notification/crm_notification.json +#: crm/fcrm/pagetype/crm_view_settings/crm_view_settings.json msgid "Type" msgstr "Tip" @@ -5778,12 +5778,12 @@ msgstr "Učitaj Sliku" msgid "Uploading {0}%" msgstr "Prijenos {0}%" -#. Label of the user (Link) field in DocType 'CRM Dashboard' -#. Label of the user (Link) field in DocType 'CRM Telephony Agent' -#. Label of the user (Link) field in DocType 'CRM View Settings' -#: crm/fcrm/doctype/crm_dashboard/crm_dashboard.json -#: crm/fcrm/doctype/crm_telephony_agent/crm_telephony_agent.json -#: crm/fcrm/doctype/crm_view_settings/crm_view_settings.json +#. Label of the user (Link) field in PageType 'CRM Dashboard' +#. Label of the user (Link) field in PageType 'CRM Telephony Agent' +#. Label of the user (Link) field in PageType 'CRM View Settings' +#: crm/fcrm/pagetype/crm_dashboard/crm_dashboard.json +#: crm/fcrm/pagetype/crm_telephony_agent/crm_telephony_agent.json +#: crm/fcrm/pagetype/crm_view_settings/crm_view_settings.json msgid "User" msgstr "Korisnik" @@ -5791,8 +5791,8 @@ msgstr "Korisnik" msgid "User Management" msgstr "Upravljanje Korisnicima" -#. Label of the user_name (Data) field in DocType 'CRM Telephony Agent' -#: crm/fcrm/doctype/crm_telephony_agent/crm_telephony_agent.json +#. Label of the user_name (Data) field in PageType 'CRM Telephony Agent' +#: crm/fcrm/pagetype/crm_telephony_agent/crm_telephony_agent.json msgid "User Name" msgstr "Korisničko ime" @@ -5814,9 +5814,9 @@ msgstr "Korisnici su uspješno dodani" msgid "Users are required" msgstr "Korisnici su obavezni" -#. Label of the section_break_nevd (Section Break) field in DocType 'CRM +#. Label of the section_break_nevd (Section Break) field in PageType 'CRM #. Service Level Agreement' -#: crm/fcrm/doctype/crm_service_level_agreement/crm_service_level_agreement.json +#: crm/fcrm/pagetype/crm_service_level_agreement/crm_service_level_agreement.json msgid "Validity" msgstr "Validnost" @@ -5840,33 +5840,33 @@ msgstr "Pogledi" msgid "Web form" msgstr "Web forma" -#. Label of the webhook_verify_token (Data) field in DocType 'CRM Exotel +#. Label of the webhook_verify_token (Data) field in PageType 'CRM Exotel #. Settings' -#: crm/fcrm/doctype/crm_exotel_settings/crm_exotel_settings.json +#: crm/fcrm/pagetype/crm_exotel_settings/crm_exotel_settings.json msgid "Webhook Verify Token" msgstr "Webhook Verify Token" -#. Label of the website (Data) field in DocType 'CRM Deal' -#. Label of the website (Data) field in DocType 'CRM Lead' -#. Label of the website (Data) field in DocType 'CRM Organization' -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_lead/crm_lead.json -#: crm/fcrm/doctype/crm_organization/crm_organization.json +#. Label of the website (Data) field in PageType 'CRM Deal' +#. Label of the website (Data) field in PageType 'CRM Lead' +#. Label of the website (Data) field in PageType 'CRM Organization' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_lead/crm_lead.json +#: crm/fcrm/pagetype/crm_organization/crm_organization.json #: frontend/src/components/Modals/AboutModal.vue:52 msgid "Website" msgstr "Web Stranica" -#. Option for the 'Weekly Off' (Select) field in DocType 'CRM Holiday List' -#. Option for the 'Workday' (Select) field in DocType 'CRM Service Day' -#: crm/fcrm/doctype/crm_holiday_list/crm_holiday_list.json -#: crm/fcrm/doctype/crm_service_day/crm_service_day.json +#. Option for the 'Weekly Off' (Select) field in PageType 'CRM Holiday List' +#. Option for the 'Workday' (Select) field in PageType 'CRM Service Day' +#: crm/fcrm/pagetype/crm_holiday_list/crm_holiday_list.json +#: crm/fcrm/pagetype/crm_service_day/crm_service_day.json msgid "Wednesday" msgstr "Srijeda" -#. Label of the weekly_off (Check) field in DocType 'CRM Holiday' -#. Label of the weekly_off (Select) field in DocType 'CRM Holiday List' -#: crm/fcrm/doctype/crm_holiday/crm_holiday.json -#: crm/fcrm/doctype/crm_holiday_list/crm_holiday_list.json +#. Label of the weekly_off (Check) field in PageType 'CRM Holiday' +#. Label of the weekly_off (Select) field in PageType 'CRM Holiday List' +#: crm/fcrm/pagetype/crm_holiday/crm_holiday.json +#: crm/fcrm/pagetype/crm_holiday_list/crm_holiday_list.json msgid "Weekly Off" msgstr "Neradni Dan" @@ -5874,7 +5874,7 @@ msgstr "Neradni Dan" msgid "Welcome Message" msgstr "Poruka Dobrodošlice" -#: crm/fcrm/doctype/helpdesk_crm_settings/helpdesk_crm_settings.py:155 +#: crm/fcrm/pagetype/helpdesk_crm_settings/helpdesk_crm_settings.py:155 msgid "Welcome to Helpdesk" msgstr "Dobro došli u Helpdesk" @@ -5882,8 +5882,8 @@ msgstr "Dobro došli u Helpdesk" msgid "Welcome {0}, lets add your first lead" msgstr "Dobrodošli {0}, hajde da dodamo vašeg prvog potencijalnog klijenta" -#. Option for the 'Type' (Select) field in DocType 'CRM Notification' -#: crm/fcrm/doctype/crm_notification/crm_notification.json +#. Option for the 'Type' (Select) field in PageType 'CRM Notification' +#: crm/fcrm/pagetype/crm_notification/crm_notification.json #: frontend/src/components/Layouts/AppSidebar.vue:603 #: frontend/src/components/Settings/Settings.vue:190 #: frontend/src/pages/Deal.vue:572 frontend/src/pages/Lead.vue:429 @@ -5908,8 +5908,8 @@ msgstr "Širina" msgid "Width can be in number, pixel or rem (eg. 3, 30px, 10rem)" msgstr "Širina može biti u broju, pikselima ili remima (npr. 3, 30px, 10rem)" -#. Option for the 'Type' (Select) field in DocType 'CRM Deal Status' -#: crm/fcrm/doctype/crm_deal_status/crm_deal_status.json +#. Option for the 'Type' (Select) field in PageType 'CRM Deal Status' +#: crm/fcrm/pagetype/crm_deal_status/crm_deal_status.json msgid "Won" msgstr "Dobiveni" @@ -5918,16 +5918,16 @@ msgstr "Dobiveni" msgid "Won deals" msgstr "Dobiveni poslovi" -#. Label of the workday (Select) field in DocType 'CRM Service Day' -#: crm/fcrm/doctype/crm_service_day/crm_service_day.json +#. Label of the workday (Select) field in PageType 'CRM Service Day' +#: crm/fcrm/pagetype/crm_service_day/crm_service_day.json msgid "Workday" msgstr "Radni Dan" -#. Label of the section_break_rmgo (Section Break) field in DocType 'CRM +#. Label of the section_break_rmgo (Section Break) field in PageType 'CRM #. Service Level Agreement' -#. Label of the working_hours (Table) field in DocType 'CRM Service Level +#. Label of the working_hours (Table) field in PageType 'CRM Service Level #. Agreement' -#: crm/fcrm/doctype/crm_service_level_agreement/crm_service_level_agreement.json +#: crm/fcrm/pagetype/crm_service_level_agreement/crm_service_level_agreement.json msgid "Working Hours" msgstr "Radno Vrijeme" @@ -5973,7 +5973,7 @@ msgstr "Nemate podešen broj mobilnog telefona u vašem Telefonskom Agentu" msgid "You do not have permission to access this document" msgstr "Nemate dozvolu za pristup ovom dokumentu" -#: crm/fcrm/doctype/crm_form_script/crm_form_script.py:24 +#: crm/fcrm/pagetype/crm_form_script/crm_form_script.py:24 msgid "You need to be in developer mode to edit a Standard Form Script" msgstr "Morate biti u modu za programere da biste uređivali skriptu standardne forme" @@ -6001,10 +6001,10 @@ msgstr "Vaši stari uslovi će biti prepisani. Jeste li sigurni da želite saču msgid "added a" msgstr "dodao" -#. Option for the 'Color' (Select) field in DocType 'CRM Deal Status' -#. Option for the 'Color' (Select) field in DocType 'CRM Lead Status' -#: crm/fcrm/doctype/crm_deal_status/crm_deal_status.json -#: crm/fcrm/doctype/crm_lead_status/crm_lead_status.json +#. Option for the 'Color' (Select) field in PageType 'CRM Deal Status' +#. Option for the 'Color' (Select) field in PageType 'CRM Lead Status' +#: crm/fcrm/pagetype/crm_deal_status/crm_deal_status.json +#: crm/fcrm/pagetype/crm_lead_status/crm_lead_status.json msgid "amber" msgstr "jantar" @@ -6016,17 +6016,17 @@ msgstr "vam je dodijelio novi zadatak {0}" msgid "assigned a {0} {1} to you" msgstr "vam je dodijelio {0} {1}" -#. Option for the 'Color' (Select) field in DocType 'CRM Deal Status' -#. Option for the 'Color' (Select) field in DocType 'CRM Lead Status' -#: crm/fcrm/doctype/crm_deal_status/crm_deal_status.json -#: crm/fcrm/doctype/crm_lead_status/crm_lead_status.json +#. Option for the 'Color' (Select) field in PageType 'CRM Deal Status' +#. Option for the 'Color' (Select) field in PageType 'CRM Lead Status' +#: crm/fcrm/pagetype/crm_deal_status/crm_deal_status.json +#: crm/fcrm/pagetype/crm_lead_status/crm_lead_status.json msgid "black" msgstr "crna" -#. Option for the 'Color' (Select) field in DocType 'CRM Deal Status' -#. Option for the 'Color' (Select) field in DocType 'CRM Lead Status' -#: crm/fcrm/doctype/crm_deal_status/crm_deal_status.json -#: crm/fcrm/doctype/crm_lead_status/crm_lead_status.json +#. Option for the 'Color' (Select) field in PageType 'CRM Deal Status' +#. Option for the 'Color' (Select) field in PageType 'CRM Lead Status' +#: crm/fcrm/pagetype/crm_deal_status/crm_deal_status.json +#: crm/fcrm/pagetype/crm_lead_status/crm_lead_status.json msgid "blue" msgstr "plava" @@ -6043,10 +6043,10 @@ msgstr "komentar" msgid "condition" msgstr "uslov" -#. Option for the 'Color' (Select) field in DocType 'CRM Deal Status' -#. Option for the 'Color' (Select) field in DocType 'CRM Lead Status' -#: crm/fcrm/doctype/crm_deal_status/crm_deal_status.json -#: crm/fcrm/doctype/crm_lead_status/crm_lead_status.json +#. Option for the 'Color' (Select) field in PageType 'CRM Deal Status' +#. Option for the 'Color' (Select) field in PageType 'CRM Lead Status' +#: crm/fcrm/pagetype/crm_deal_status/crm_deal_status.json +#: crm/fcrm/pagetype/crm_lead_status/crm_lead_status.json msgid "cyan" msgstr "cijan" @@ -6065,33 +6065,33 @@ msgstr "radni Prostor" msgid "email already exists" msgstr "e-pošta već postoji" -#. Option for the 'Service Provider' (Select) field in DocType 'FCRM Settings' -#: crm/fcrm/doctype/fcrm_settings/fcrm_settings.json +#. Option for the 'Service Provider' (Select) field in PageType 'FCRM Settings' +#: crm/fcrm/pagetype/fcrm_settings/fcrm_settings.json #: frontend/src/components/Settings/CurrencySettings.vue:106 msgid "exchangerate.host" msgstr "exchangerate.host" -#. Option for the 'Service Provider' (Select) field in DocType 'FCRM Settings' -#: crm/fcrm/doctype/fcrm_settings/fcrm_settings.json +#. Option for the 'Service Provider' (Select) field in PageType 'FCRM Settings' +#: crm/fcrm/pagetype/fcrm_settings/fcrm_settings.json msgid "frankfurter.app" msgstr "frankfurter.app" -#. Option for the 'Color' (Select) field in DocType 'CRM Deal Status' -#. Option for the 'Color' (Select) field in DocType 'CRM Lead Status' -#: crm/fcrm/doctype/crm_deal_status/crm_deal_status.json -#: crm/fcrm/doctype/crm_lead_status/crm_lead_status.json +#. Option for the 'Color' (Select) field in PageType 'CRM Deal Status' +#. Option for the 'Color' (Select) field in PageType 'CRM Lead Status' +#: crm/fcrm/pagetype/crm_deal_status/crm_deal_status.json +#: crm/fcrm/pagetype/crm_lead_status/crm_lead_status.json msgid "gray" msgstr "sivo" -#. Option for the 'Color' (Select) field in DocType 'CRM Deal Status' -#. Option for the 'Color' (Select) field in DocType 'CRM Lead Status' -#: crm/fcrm/doctype/crm_deal_status/crm_deal_status.json -#: crm/fcrm/doctype/crm_lead_status/crm_lead_status.json +#. Option for the 'Color' (Select) field in PageType 'CRM Deal Status' +#. Option for the 'Color' (Select) field in PageType 'CRM Lead Status' +#: crm/fcrm/pagetype/crm_deal_status/crm_deal_status.json +#: crm/fcrm/pagetype/crm_lead_status/crm_lead_status.json msgid "green" msgstr "zeleno" -#. Option for the 'Type' (Select) field in DocType 'CRM View Settings' -#: crm/fcrm/doctype/crm_view_settings/crm_view_settings.json +#. Option for the 'Type' (Select) field in PageType 'CRM View Settings' +#: crm/fcrm/pagetype/crm_view_settings/crm_view_settings.json msgid "group_by" msgstr "grupiraj_po" @@ -6176,12 +6176,12 @@ msgstr "john@doe.com" msgid "just now" msgstr "upravo sada" -#. Option for the 'Type' (Select) field in DocType 'CRM View Settings' -#: crm/fcrm/doctype/crm_view_settings/crm_view_settings.json +#. Option for the 'Type' (Select) field in PageType 'CRM View Settings' +#: crm/fcrm/pagetype/crm_view_settings/crm_view_settings.json msgid "kanban" msgstr "oglasna Tabla" -#: crm/api/doc.py:40 crm/api/doc.py:158 crm/api/doc.py:503 +#: crm/api/pg.py:40 crm/api/pg.py:158 crm/api/pg.py:503 msgid "label" msgstr "oznaka" @@ -6190,8 +6190,8 @@ msgstr "oznaka" msgid "leads" msgstr "potencijalni Klijenti" -#. Option for the 'Type' (Select) field in DocType 'CRM View Settings' -#: crm/fcrm/doctype/crm_view_settings/crm_view_settings.json +#. Option for the 'Type' (Select) field in PageType 'CRM View Settings' +#: crm/fcrm/pagetype/crm_view_settings/crm_view_settings.json msgid "list" msgstr "lista" @@ -6212,17 +6212,17 @@ msgstr "sad" msgid "operator" msgstr "operater" -#. Option for the 'Color' (Select) field in DocType 'CRM Deal Status' -#. Option for the 'Color' (Select) field in DocType 'CRM Lead Status' -#: crm/fcrm/doctype/crm_deal_status/crm_deal_status.json -#: crm/fcrm/doctype/crm_lead_status/crm_lead_status.json +#. Option for the 'Color' (Select) field in PageType 'CRM Deal Status' +#. Option for the 'Color' (Select) field in PageType 'CRM Lead Status' +#: crm/fcrm/pagetype/crm_deal_status/crm_deal_status.json +#: crm/fcrm/pagetype/crm_lead_status/crm_lead_status.json msgid "orange" msgstr "narandžasta" -#. Option for the 'Color' (Select) field in DocType 'CRM Deal Status' -#. Option for the 'Color' (Select) field in DocType 'CRM Lead Status' -#: crm/fcrm/doctype/crm_deal_status/crm_deal_status.json -#: crm/fcrm/doctype/crm_lead_status/crm_lead_status.json +#. Option for the 'Color' (Select) field in PageType 'CRM Deal Status' +#. Option for the 'Color' (Select) field in PageType 'CRM Lead Status' +#: crm/fcrm/pagetype/crm_deal_status/crm_deal_status.json +#: crm/fcrm/pagetype/crm_lead_status/crm_lead_status.json msgid "pink" msgstr "roze" @@ -6238,10 +6238,10 @@ msgstr "privatno" msgid "public" msgstr "javno" -#. Option for the 'Color' (Select) field in DocType 'CRM Deal Status' -#. Option for the 'Color' (Select) field in DocType 'CRM Lead Status' -#: crm/fcrm/doctype/crm_deal_status/crm_deal_status.json -#: crm/fcrm/doctype/crm_lead_status/crm_lead_status.json +#. Option for the 'Color' (Select) field in PageType 'CRM Deal Status' +#. Option for the 'Color' (Select) field in PageType 'CRM Lead Status' +#: crm/fcrm/pagetype/crm_deal_status/crm_deal_status.json +#: crm/fcrm/pagetype/crm_lead_status/crm_lead_status.json msgid "purple" msgstr "ljubičasta" @@ -6249,17 +6249,17 @@ msgstr "ljubičasta" msgid "received a whatsapp message in {0}" msgstr "primio WhatsApp poruku u {0}" -#. Option for the 'Color' (Select) field in DocType 'CRM Deal Status' -#. Option for the 'Color' (Select) field in DocType 'CRM Lead Status' -#: crm/fcrm/doctype/crm_deal_status/crm_deal_status.json -#: crm/fcrm/doctype/crm_lead_status/crm_lead_status.json +#. Option for the 'Color' (Select) field in PageType 'CRM Deal Status' +#. Option for the 'Color' (Select) field in PageType 'CRM Lead Status' +#: crm/fcrm/pagetype/crm_deal_status/crm_deal_status.json +#: crm/fcrm/pagetype/crm_lead_status/crm_lead_status.json msgid "red" msgstr "crveno" -#. Option for the 'Color' (Select) field in DocType 'CRM Deal Status' -#. Option for the 'Color' (Select) field in DocType 'CRM Lead Status' -#: crm/fcrm/doctype/crm_deal_status/crm_deal_status.json -#: crm/fcrm/doctype/crm_lead_status/crm_lead_status.json +#. Option for the 'Color' (Select) field in PageType 'CRM Deal Status' +#. Option for the 'Color' (Select) field in PageType 'CRM Lead Status' +#: crm/fcrm/pagetype/crm_deal_status/crm_deal_status.json +#: crm/fcrm/pagetype/crm_lead_status/crm_lead_status.json msgid "teal" msgstr "plavozelena" @@ -6272,10 +6272,10 @@ msgstr "do" msgid "tomorrow" msgstr "sutra" -#. Option for the 'Color' (Select) field in DocType 'CRM Deal Status' -#. Option for the 'Color' (Select) field in DocType 'CRM Lead Status' -#: crm/fcrm/doctype/crm_deal_status/crm_deal_status.json -#: crm/fcrm/doctype/crm_lead_status/crm_lead_status.json +#. Option for the 'Color' (Select) field in PageType 'CRM Deal Status' +#. Option for the 'Color' (Select) field in PageType 'CRM Lead Status' +#: crm/fcrm/pagetype/crm_deal_status/crm_deal_status.json +#: crm/fcrm/pagetype/crm_lead_status/crm_lead_status.json msgid "violet" msgstr "ljubičasta" @@ -6284,10 +6284,10 @@ msgstr "ljubičasta" msgid "which are not compatible with this UI, you will need to recreate the conditions here if you want to manage and add new conditions from this UI." msgstr "koji nisu kompatibilni s ovim korisničkim interfejsom, morat ćete ponovo kreirati uslove ovdje ako želite upravljati i dodavati nove uslove iz ovog korisničkog interfejsa." -#. Option for the 'Color' (Select) field in DocType 'CRM Deal Status' -#. Option for the 'Color' (Select) field in DocType 'CRM Lead Status' -#: crm/fcrm/doctype/crm_deal_status/crm_deal_status.json -#: crm/fcrm/doctype/crm_lead_status/crm_lead_status.json +#. Option for the 'Color' (Select) field in PageType 'CRM Deal Status' +#. Option for the 'Color' (Select) field in PageType 'CRM Lead Status' +#: crm/fcrm/pagetype/crm_deal_status/crm_deal_status.json +#: crm/fcrm/pagetype/crm_lead_status/crm_lead_status.json msgid "yellow" msgstr "žuta" @@ -6385,8 +6385,8 @@ msgid "⚠️ Method \"{0}\" not found in class." msgstr "⚠️ Metoda \"{0}\" nije pronađena u klasi." #: frontend/src/data/script.js:83 -msgid "⚠️ No class found for doctype: {0}, it is mandatory to have a class for the parent doctype. it can be empty, but it should be present." -msgstr "⚠️ Nije pronađena klasa za doctype: {0}, obavezno je imati klasu za nadređeni doctype. Može biti prazna, ali treba biti prisutna." +msgid "⚠️ No class found for pagetype: {0}, it is mandatory to have a class for the parent pagetype. it can be empty, but it should be present." +msgstr "⚠️ Nije pronađena klasa za pagetype: {0}, obavezno je imati klasu za nadređeni pagetype. Može biti prazna, ali treba biti prisutna." #: frontend/src/data/script.js:180 msgid "⚠️ No data found for parent field: {0}" diff --git a/crm/locale/cs.po b/crm/locale/cs.po index 69245bf9..14aa9d29 100644 --- a/crm/locale/cs.po +++ b/crm/locale/cs.po @@ -1,6 +1,6 @@ msgid "" msgstr "" -"Project-Id-Version: frappe\n" +"Project-Id-Version: jingrow\n" "Report-Msgid-Bugs-To: shariq@jingrow.com\n" "POT-Creation-Date: 2025-09-21 09:35+0000\n" "PO-Revision-Date: 2025-09-22 20:42\n" @@ -11,10 +11,10 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Generated-By: Babel 2.16.0\n" "Plural-Forms: nplurals=4; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 3;\n" -"X-Crowdin-Project: frappe\n" +"X-Crowdin-Project: jingrow\n" "X-Crowdin-Project-ID: 639578\n" "X-Crowdin-Language: cs\n" -"X-Crowdin-File: /[frappe.crm] develop/crm/locale/main.pot\n" +"X-Crowdin-File: /[jingrow.crm] develop/crm/locale/main.pot\n" "X-Crowdin-File-ID: 97\n" "Language: cs_CZ\n" @@ -55,73 +55,73 @@ msgstr "" msgid "1 year ago" msgstr "" -#. Option for the 'No. of Employees' (Select) field in DocType 'CRM Deal' -#. Option for the 'No. of Employees' (Select) field in DocType 'CRM Lead' -#. Option for the 'No. of Employees' (Select) field in DocType 'CRM +#. Option for the 'No. of Employees' (Select) field in PageType 'CRM Deal' +#. Option for the 'No. of Employees' (Select) field in PageType 'CRM Lead' +#. Option for the 'No. of Employees' (Select) field in PageType 'CRM #. Organization' -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_lead/crm_lead.json -#: crm/fcrm/doctype/crm_organization/crm_organization.json +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_lead/crm_lead.json +#: crm/fcrm/pagetype/crm_organization/crm_organization.json msgid "1-10" msgstr "" -#. Option for the 'No. of Employees' (Select) field in DocType 'CRM Deal' -#. Option for the 'No. of Employees' (Select) field in DocType 'CRM Lead' -#. Option for the 'No. of Employees' (Select) field in DocType 'CRM +#. Option for the 'No. of Employees' (Select) field in PageType 'CRM Deal' +#. Option for the 'No. of Employees' (Select) field in PageType 'CRM Lead' +#. Option for the 'No. of Employees' (Select) field in PageType 'CRM #. Organization' -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_lead/crm_lead.json -#: crm/fcrm/doctype/crm_organization/crm_organization.json +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_lead/crm_lead.json +#: crm/fcrm/pagetype/crm_organization/crm_organization.json msgid "1000+" msgstr "" -#. Option for the 'No. of Employees' (Select) field in DocType 'CRM Deal' -#. Option for the 'No. of Employees' (Select) field in DocType 'CRM Lead' -#. Option for the 'No. of Employees' (Select) field in DocType 'CRM +#. Option for the 'No. of Employees' (Select) field in PageType 'CRM Deal' +#. Option for the 'No. of Employees' (Select) field in PageType 'CRM Lead' +#. Option for the 'No. of Employees' (Select) field in PageType 'CRM #. Organization' -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_lead/crm_lead.json -#: crm/fcrm/doctype/crm_organization/crm_organization.json +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_lead/crm_lead.json +#: crm/fcrm/pagetype/crm_organization/crm_organization.json msgid "11-50" msgstr "" -#. Option for the 'No. of Employees' (Select) field in DocType 'CRM Deal' -#. Option for the 'No. of Employees' (Select) field in DocType 'CRM Lead' -#. Option for the 'No. of Employees' (Select) field in DocType 'CRM +#. Option for the 'No. of Employees' (Select) field in PageType 'CRM Deal' +#. Option for the 'No. of Employees' (Select) field in PageType 'CRM Lead' +#. Option for the 'No. of Employees' (Select) field in PageType 'CRM #. Organization' -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_lead/crm_lead.json -#: crm/fcrm/doctype/crm_organization/crm_organization.json +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_lead/crm_lead.json +#: crm/fcrm/pagetype/crm_organization/crm_organization.json msgid "201-500" msgstr "" -#. Option for the 'No. of Employees' (Select) field in DocType 'CRM Deal' -#. Option for the 'No. of Employees' (Select) field in DocType 'CRM Lead' -#. Option for the 'No. of Employees' (Select) field in DocType 'CRM +#. Option for the 'No. of Employees' (Select) field in PageType 'CRM Deal' +#. Option for the 'No. of Employees' (Select) field in PageType 'CRM Lead' +#. Option for the 'No. of Employees' (Select) field in PageType 'CRM #. Organization' -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_lead/crm_lead.json -#: crm/fcrm/doctype/crm_organization/crm_organization.json +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_lead/crm_lead.json +#: crm/fcrm/pagetype/crm_organization/crm_organization.json msgid "501-1000" msgstr "" -#. Option for the 'No. of Employees' (Select) field in DocType 'CRM Deal' -#. Option for the 'No. of Employees' (Select) field in DocType 'CRM Lead' -#. Option for the 'No. of Employees' (Select) field in DocType 'CRM +#. Option for the 'No. of Employees' (Select) field in PageType 'CRM Deal' +#. Option for the 'No. of Employees' (Select) field in PageType 'CRM Lead' +#. Option for the 'No. of Employees' (Select) field in PageType 'CRM #. Organization' -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_lead/crm_lead.json -#: crm/fcrm/doctype/crm_organization/crm_organization.json +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_lead/crm_lead.json +#: crm/fcrm/pagetype/crm_organization/crm_organization.json msgid "51-200" msgstr "" -#. Paragraph text in the Frappe CRM Workspace -#: crm/fcrm/workspace/frappe_crm/frappe_crm.json +#. Paragraph text in the Jingrow CRM Workspace +#: crm/fcrm/workspace/jingrow_crm/jingrow_crm.json msgid "META" msgstr "" -#. Paragraph text in the Frappe CRM Workspace -#: crm/fcrm/workspace/frappe_crm/frappe_crm.json +#. Paragraph text in the Jingrow CRM Workspace +#: crm/fcrm/workspace/jingrow_crm/jingrow_crm.json msgid "SHORTCUTS" msgstr "" @@ -130,8 +130,8 @@ msgstr "" msgid "

Dear {{ lead_name }},

\\n\\n

This is a reminder for the payment of {{ grand_total }}.

\\n\\n

Thanks,

\\n

Frappé

" msgstr "" -#. Header text in the Frappe CRM Workspace -#: crm/fcrm/workspace/frappe_crm/frappe_crm.json +#. Header text in the Jingrow CRM Workspace +#: crm/fcrm/workspace/jingrow_crm/jingrow_crm.json msgid "PORTAL" msgstr "" @@ -139,7 +139,7 @@ msgstr "" msgid "@John, can you please check this?" msgstr "" -#: crm/fcrm/doctype/crm_lead/crm_lead.py:56 +#: crm/fcrm/pagetype/crm_lead/crm_lead.py:56 msgid "A Lead requires either a person's name or an organization's name" msgstr "" @@ -147,14 +147,14 @@ msgstr "" msgid "A new account has been created for you at {0}" msgstr "" -#. Label of the api_key (Data) field in DocType 'CRM Exotel Settings' -#. Label of the api_key (Data) field in DocType 'CRM Twilio Settings' -#. Label of the api_key (Data) field in DocType 'ERPNext CRM Settings' -#. Label of the api_key (Data) field in DocType 'Helpdesk CRM Settings' -#: crm/fcrm/doctype/crm_exotel_settings/crm_exotel_settings.json -#: crm/fcrm/doctype/crm_twilio_settings/crm_twilio_settings.json -#: crm/fcrm/doctype/erpnext_crm_settings/erpnext_crm_settings.json -#: crm/fcrm/doctype/helpdesk_crm_settings/helpdesk_crm_settings.json +#. Label of the api_key (Data) field in PageType 'CRM Exotel Settings' +#. Label of the api_key (Data) field in PageType 'CRM Twilio Settings' +#. Label of the api_key (Data) field in PageType 'ERPNext CRM Settings' +#. Label of the api_key (Data) field in PageType 'Helpdesk CRM Settings' +#: crm/fcrm/pagetype/crm_exotel_settings/crm_exotel_settings.json +#: crm/fcrm/pagetype/crm_twilio_settings/crm_twilio_settings.json +#: crm/fcrm/pagetype/erpnext_crm_settings/erpnext_crm_settings.json +#: crm/fcrm/pagetype/helpdesk_crm_settings/helpdesk_crm_settings.json msgid "API Key" msgstr "" @@ -162,17 +162,17 @@ msgstr "" msgid "API Key is required" msgstr "" -#. Label of the api_secret (Password) field in DocType 'CRM Twilio Settings' -#. Label of the api_secret (Password) field in DocType 'ERPNext CRM Settings' -#. Label of the api_secret (Password) field in DocType 'Helpdesk CRM Settings' -#: crm/fcrm/doctype/crm_twilio_settings/crm_twilio_settings.json -#: crm/fcrm/doctype/erpnext_crm_settings/erpnext_crm_settings.json -#: crm/fcrm/doctype/helpdesk_crm_settings/helpdesk_crm_settings.json +#. Label of the api_secret (Password) field in PageType 'CRM Twilio Settings' +#. Label of the api_secret (Password) field in PageType 'ERPNext CRM Settings' +#. Label of the api_secret (Password) field in PageType 'Helpdesk CRM Settings' +#: crm/fcrm/pagetype/crm_twilio_settings/crm_twilio_settings.json +#: crm/fcrm/pagetype/erpnext_crm_settings/erpnext_crm_settings.json +#: crm/fcrm/pagetype/helpdesk_crm_settings/helpdesk_crm_settings.json msgid "API Secret" msgstr "" -#. Label of the api_token (Password) field in DocType 'CRM Exotel Settings' -#: crm/fcrm/doctype/crm_exotel_settings/crm_exotel_settings.json +#. Label of the api_token (Password) field in PageType 'CRM Exotel Settings' +#: crm/fcrm/pagetype/crm_exotel_settings/crm_exotel_settings.json msgid "API Token" msgstr "" @@ -180,7 +180,7 @@ msgstr "" msgid "Accept" msgstr "" -#: crm/fcrm/doctype/crm_invitation/crm_invitation.js:7 +#: crm/fcrm/pagetype/crm_invitation/crm_invitation.js:7 msgid "Accept Invitation" msgstr "" @@ -188,22 +188,22 @@ msgstr "" msgid "Accept call" msgstr "" -#. Option for the 'Status' (Select) field in DocType 'CRM Invitation' -#: crm/fcrm/doctype/crm_invitation/crm_invitation.json +#. Option for the 'Status' (Select) field in PageType 'CRM Invitation' +#: crm/fcrm/pagetype/crm_invitation/crm_invitation.json msgid "Accepted" msgstr "" -#. Label of the accepted_at (Datetime) field in DocType 'CRM Invitation' -#: crm/fcrm/doctype/crm_invitation/crm_invitation.json +#. Label of the accepted_at (Datetime) field in PageType 'CRM Invitation' +#: crm/fcrm/pagetype/crm_invitation/crm_invitation.json msgid "Accepted At" msgstr "" -#. Label of the access_key (Data) field in DocType 'FCRM Settings' -#: crm/fcrm/doctype/fcrm_settings/fcrm_settings.json +#. Label of the access_key (Data) field in PageType 'FCRM Settings' +#: crm/fcrm/pagetype/fcrm_settings/fcrm_settings.json msgid "Access Key" msgstr "" -#: crm/fcrm/doctype/fcrm_settings/fcrm_settings.py:156 +#: crm/fcrm/pagetype/fcrm_settings/fcrm_settings.py:156 msgid "Access Key is required for Service Provider: {0}" msgstr "" @@ -219,10 +219,10 @@ msgstr "" msgid "Account Name" msgstr "Název účtu" -#. Label of the account_sid (Data) field in DocType 'CRM Exotel Settings' -#. Label of the account_sid (Data) field in DocType 'CRM Twilio Settings' -#: crm/fcrm/doctype/crm_exotel_settings/crm_exotel_settings.json -#: crm/fcrm/doctype/crm_twilio_settings/crm_twilio_settings.json +#. Label of the account_sid (Data) field in PageType 'CRM Exotel Settings' +#. Label of the account_sid (Data) field in PageType 'CRM Twilio Settings' +#: crm/fcrm/pagetype/crm_exotel_settings/crm_exotel_settings.json +#: crm/fcrm/pagetype/crm_twilio_settings/crm_twilio_settings.json msgid "Account SID" msgstr "" @@ -296,9 +296,9 @@ msgstr "" msgid "Add Tab" msgstr "" -#. Label of the add_weekly_holidays_section (Section Break) field in DocType +#. Label of the add_weekly_holidays_section (Section Break) field in PageType #. 'CRM Holiday List' -#: crm/fcrm/doctype/crm_holiday_list/crm_holiday_list.json +#: crm/fcrm/pagetype/crm_holiday_list/crm_holiday_list.json msgid "Add Weekly Holidays" msgstr "" @@ -363,8 +363,8 @@ msgstr "" msgid "Add sample data" msgstr "" -#. Description of the 'Icon' (Code) field in DocType 'CRM Dropdown Item' -#: crm/fcrm/doctype/crm_dropdown_item/crm_dropdown_item.json +#. Description of the 'Icon' (Code) field in PageType 'CRM Dropdown Item' +#: crm/fcrm/pagetype/crm_dropdown_item/crm_dropdown_item.json msgid "Add svg code or use feather icons e.g 'settings'" msgstr "" @@ -372,8 +372,8 @@ msgstr "" msgid "Add task" msgstr "" -#. Label of the add_to_holidays (Button) field in DocType 'CRM Holiday List' -#: crm/fcrm/doctype/crm_holiday_list/crm_holiday_list.json +#. Label of the add_to_holidays (Button) field in PageType 'CRM Holiday List' +#: crm/fcrm/pagetype/crm_holiday_list/crm_holiday_list.json msgid "Add to Holidays" msgstr "" @@ -385,8 +385,8 @@ msgstr "" msgid "Add, edit, and manage email templates for various CRM communications" msgstr "" -#. Label of the address (Link) field in DocType 'CRM Organization' -#: crm/fcrm/doctype/crm_organization/crm_organization.json +#. Label of the address (Link) field in PageType 'CRM Organization' +#: crm/fcrm/pagetype/crm_organization/crm_organization.json msgid "Address" msgstr "" @@ -406,14 +406,14 @@ msgid "Agent is unavailable to take the call, please call after some time." msgstr "" #. Name of a role -#: crm/fcrm/doctype/crm_exotel_settings/crm_exotel_settings.json -#: crm/fcrm/doctype/crm_fields_layout/crm_fields_layout.json -#: crm/fcrm/doctype/crm_form_script/crm_form_script.json -#: crm/fcrm/doctype/crm_industry/crm_industry.json -#: crm/fcrm/doctype/crm_lead/crm_lead.json -#: crm/fcrm/doctype/crm_lead_source/crm_lead_source.json -#: crm/fcrm/doctype/crm_lead_status/crm_lead_status.json -#: crm/fcrm/doctype/fcrm_settings/fcrm_settings.json +#: crm/fcrm/pagetype/crm_exotel_settings/crm_exotel_settings.json +#: crm/fcrm/pagetype/crm_fields_layout/crm_fields_layout.json +#: crm/fcrm/pagetype/crm_form_script/crm_form_script.json +#: crm/fcrm/pagetype/crm_industry/crm_industry.json +#: crm/fcrm/pagetype/crm_lead/crm_lead.json +#: crm/fcrm/pagetype/crm_lead_source/crm_lead_source.json +#: crm/fcrm/pagetype/crm_lead_status/crm_lead_status.json +#: crm/fcrm/pagetype/fcrm_settings/fcrm_settings.json #: frontend/src/components/Settings/EmailTemplate/EmailTemplates.vue:76 #: frontend/src/components/Settings/Users.vue:85 msgid "All" @@ -426,16 +426,16 @@ msgstr "" msgid "All day" msgstr "" -#. Label of the amount (Currency) field in DocType 'CRM Products' -#: crm/fcrm/doctype/crm_products/crm_products.json +#. Label of the amount (Currency) field in PageType 'CRM Products' +#: crm/fcrm/pagetype/crm_products/crm_products.json #: frontend/src/pages/Contact.vue:499 frontend/src/pages/MobileContact.vue:507 #: frontend/src/pages/MobileOrganization.vue:451 #: frontend/src/pages/Organization.vue:472 msgid "Amount" msgstr "" -#. Description of the 'Net Amount' (Currency) field in DocType 'CRM Products' -#: crm/fcrm/doctype/crm_products/crm_products.json +#. Description of the 'Net Amount' (Currency) field in PageType 'CRM Products' +#: crm/fcrm/pagetype/crm_products/crm_products.json msgid "Amount after discount" msgstr "" @@ -447,13 +447,13 @@ msgstr "" msgid "An error occurred while updating the document" msgstr "" -#. Description of the 'Favicon' (Attach) field in DocType 'FCRM Settings' -#: crm/fcrm/doctype/fcrm_settings/fcrm_settings.json +#. Description of the 'Favicon' (Attach) field in PageType 'FCRM Settings' +#: crm/fcrm/pagetype/fcrm_settings/fcrm_settings.json msgid "An icon file with .ico extension. Should be 16 x 16 px. Generated using a favicon generator. [favicon-generator.org]" msgstr "" -#. Description of the 'Logo' (Attach) field in DocType 'FCRM Settings' -#: crm/fcrm/doctype/fcrm_settings/fcrm_settings.json +#. Description of the 'Logo' (Attach) field in PageType 'FCRM Settings' +#: crm/fcrm/pagetype/fcrm_settings/fcrm_settings.json msgid "An image with 1:1 & 2:1 ratio is preferred" msgstr "" @@ -461,12 +461,12 @@ msgstr "" msgid "And" msgstr "" -#. Label of the annual_revenue (Currency) field in DocType 'CRM Deal' -#. Label of the annual_revenue (Currency) field in DocType 'CRM Lead' -#. Label of the annual_revenue (Currency) field in DocType 'CRM Organization' -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_lead/crm_lead.json -#: crm/fcrm/doctype/crm_organization/crm_organization.json +#. Label of the annual_revenue (Currency) field in PageType 'CRM Deal' +#. Label of the annual_revenue (Currency) field in PageType 'CRM Lead' +#. Label of the annual_revenue (Currency) field in PageType 'CRM Organization' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_lead/crm_lead.json +#: crm/fcrm/pagetype/crm_organization/crm_organization.json msgid "Annual Revenue" msgstr "" @@ -488,13 +488,13 @@ msgstr "" msgid "Apply" msgstr "" -#. Label of the apply_on (Link) field in DocType 'CRM Service Level Agreement' -#: crm/fcrm/doctype/crm_service_level_agreement/crm_service_level_agreement.json +#. Label of the apply_on (Link) field in PageType 'CRM Service Level Agreement' +#: crm/fcrm/pagetype/crm_service_level_agreement/crm_service_level_agreement.json msgid "Apply On" msgstr "" -#. Label of the view (Select) field in DocType 'CRM Form Script' -#: crm/fcrm/doctype/crm_form_script/crm_form_script.json +#. Label of the view (Select) field in PageType 'CRM Form Script' +#: crm/fcrm/pagetype/crm_form_script/crm_form_script.json msgid "Apply To" msgstr "" @@ -540,10 +540,10 @@ msgid "Are you sure you want to go back? Unsaved changes will be lost." msgstr "" #: frontend/src/composables/frappecloud.js:24 -msgid "Are you sure you want to login to your Frappe Cloud dashboard?" +msgid "Are you sure you want to login to your Jingrow Cloud dashboard?" msgstr "" -#: crm/fcrm/doctype/erpnext_crm_settings/erpnext_crm_settings.js:9 +#: crm/fcrm/pagetype/erpnext_crm_settings/erpnext_crm_settings.js:9 msgid "Are you sure you want to reset 'Create Quotation from CRM Deal' Form Script?" msgstr "" @@ -555,7 +555,7 @@ msgstr "" msgid "Are you sure you want to unlink {0} linked item(s)?" msgstr "" -#: crm/fcrm/doctype/fcrm_settings/fcrm_settings.py:193 +#: crm/fcrm/pagetype/fcrm_settings/fcrm_settings.py:193 msgid "Ask your manager to set up the Exchange Rate Provider, as default provider does not support currency conversion for {0} to {1}." msgstr "" @@ -581,8 +581,8 @@ msgstr "" msgid "Assign to me" msgstr "" -#. Label of the assigned_to (Link) field in DocType 'CRM Task' -#: crm/fcrm/doctype/crm_task/crm_task.json +#. Label of the assigned_to (Link) field in PageType 'CRM Task' +#: crm/fcrm/pagetype/crm_task/crm_task.json msgid "Assigned To" msgstr "" @@ -594,13 +594,13 @@ msgstr "" msgid "Assignees" msgstr "" -#. Option for the 'Type' (Select) field in DocType 'CRM Notification' -#: crm/fcrm/doctype/crm_notification/crm_notification.json +#. Option for the 'Type' (Select) field in PageType 'CRM Notification' +#: crm/fcrm/pagetype/crm_notification/crm_notification.json msgid "Assignment" msgstr "" -#. Label of a shortcut in the Frappe CRM Workspace -#: crm/fcrm/workspace/frappe_crm/frappe_crm.json +#. Label of a shortcut in the Jingrow CRM Workspace +#: crm/fcrm/workspace/jingrow_crm/jingrow_crm.json msgid "Assignment Rule" msgstr "" @@ -678,14 +678,14 @@ msgstr "" msgid "Attendees" msgstr "Účastníci" -#. Label of the auth_token (Password) field in DocType 'CRM Twilio Settings' -#: crm/fcrm/doctype/crm_twilio_settings/crm_twilio_settings.json +#. Label of the auth_token (Password) field in PageType 'CRM Twilio Settings' +#: crm/fcrm/pagetype/crm_twilio_settings/crm_twilio_settings.json msgid "Auth Token" msgstr "" -#. Label of the auto_update_expected_deal_value (Check) field in DocType 'FCRM +#. Label of the auto_update_expected_deal_value (Check) field in PageType 'FCRM #. Settings' -#: crm/fcrm/doctype/fcrm_settings/fcrm_settings.json +#: crm/fcrm/pagetype/fcrm_settings/fcrm_settings.json msgid "Auto Update Expected Deal Value" msgstr "" @@ -702,8 +702,8 @@ msgid "Auto update of expected deal value enabled" msgstr "" #. Description of the 'Auto Update Expected Deal Value' (Check) field in -#. DocType 'FCRM Settings' -#: crm/fcrm/doctype/fcrm_settings/fcrm_settings.json +#. PageType 'FCRM Settings' +#: crm/fcrm/pagetype/fcrm_settings/fcrm_settings.json #: frontend/src/components/Settings/ForecastingSettings.vue:46 msgid "Automatically update \"Expected Deal Value\" based on the total value of associated products in a deal" msgstr "" @@ -793,8 +793,8 @@ msgstr "" msgid "Back to file upload" msgstr "" -#. Option for the 'Status' (Select) field in DocType 'CRM Task' -#: crm/fcrm/doctype/crm_task/crm_task.json +#. Option for the 'Status' (Select) field in PageType 'CRM Task' +#: crm/fcrm/pagetype/crm_task/crm_task.json msgid "Backlog" msgstr "" @@ -818,8 +818,8 @@ msgstr "" msgid "Brand settings" msgstr "" -#. Label of the branding_tab (Tab Break) field in DocType 'FCRM Settings' -#: crm/fcrm/doctype/fcrm_settings/fcrm_settings.json +#. Label of the branding_tab (Tab Break) field in PageType 'FCRM Settings' +#: crm/fcrm/pagetype/fcrm_settings/fcrm_settings.json msgid "Branding" msgstr "" @@ -827,8 +827,8 @@ msgstr "" msgid "Bulk Edit" msgstr "" -#. Option for the 'Status' (Select) field in DocType 'CRM Call Log' -#: crm/fcrm/doctype/crm_call_log/crm_call_log.json +#. Option for the 'Status' (Select) field in PageType 'CRM Call Log' +#: crm/fcrm/pagetype/crm_call_log/crm_call_log.json msgid "Busy" msgstr "" @@ -838,174 +838,174 @@ msgstr "" msgid "CC" msgstr "" -#. Name of a DocType -#: crm/fcrm/doctype/crm_call_log/crm_call_log.json +#. Name of a PageType +#: crm/fcrm/pagetype/crm_call_log/crm_call_log.json msgid "CRM Call Log" msgstr "" -#. Name of a DocType -#: crm/fcrm/doctype/crm_communication_status/crm_communication_status.json +#. Name of a PageType +#: crm/fcrm/pagetype/crm_communication_status/crm_communication_status.json msgid "CRM Communication Status" msgstr "" -#. Name of a DocType -#: crm/fcrm/doctype/crm_contacts/crm_contacts.json +#. Name of a PageType +#: crm/fcrm/pagetype/crm_contacts/crm_contacts.json msgid "CRM Contacts" msgstr "" -#. Name of a DocType -#: crm/fcrm/doctype/crm_dashboard/crm_dashboard.json +#. Name of a PageType +#: crm/fcrm/pagetype/crm_dashboard/crm_dashboard.json #: frontend/src/pages/Dashboard.vue:304 msgid "CRM Dashboard" msgstr "" -#. Name of a DocType -#: crm/fcrm/doctype/crm_deal/crm_deal.json +#. Name of a PageType +#: crm/fcrm/pagetype/crm_deal/crm_deal.json msgid "CRM Deal" msgstr "" -#. Name of a DocType -#: crm/fcrm/doctype/crm_deal_status/crm_deal_status.json +#. Name of a PageType +#: crm/fcrm/pagetype/crm_deal_status/crm_deal_status.json msgid "CRM Deal Status" msgstr "" -#. Name of a DocType -#: crm/fcrm/doctype/crm_dropdown_item/crm_dropdown_item.json +#. Name of a PageType +#: crm/fcrm/pagetype/crm_dropdown_item/crm_dropdown_item.json msgid "CRM Dropdown Item" msgstr "" -#. Name of a DocType -#: crm/fcrm/doctype/crm_exotel_settings/crm_exotel_settings.json +#. Name of a PageType +#: crm/fcrm/pagetype/crm_exotel_settings/crm_exotel_settings.json msgid "CRM Exotel Settings" msgstr "" -#. Name of a DocType -#: crm/fcrm/doctype/crm_fields_layout/crm_fields_layout.json +#. Name of a PageType +#: crm/fcrm/pagetype/crm_fields_layout/crm_fields_layout.json msgid "CRM Fields Layout" msgstr "" -#. Name of a DocType -#: crm/fcrm/doctype/crm_form_script/crm_form_script.json +#. Name of a PageType +#: crm/fcrm/pagetype/crm_form_script/crm_form_script.json msgid "CRM Form Script" msgstr "" -#. Name of a DocType -#: crm/fcrm/doctype/crm_global_settings/crm_global_settings.json +#. Name of a PageType +#: crm/fcrm/pagetype/crm_global_settings/crm_global_settings.json msgid "CRM Global Settings" msgstr "" -#. Name of a DocType -#: crm/fcrm/doctype/crm_holiday/crm_holiday.json +#. Name of a PageType +#: crm/fcrm/pagetype/crm_holiday/crm_holiday.json msgid "CRM Holiday" msgstr "" -#. Name of a DocType -#: crm/fcrm/doctype/crm_holiday_list/crm_holiday_list.json +#. Name of a PageType +#: crm/fcrm/pagetype/crm_holiday_list/crm_holiday_list.json msgid "CRM Holiday List" msgstr "" -#. Name of a DocType -#: crm/fcrm/doctype/crm_industry/crm_industry.json +#. Name of a PageType +#: crm/fcrm/pagetype/crm_industry/crm_industry.json msgid "CRM Industry" msgstr "" -#. Name of a DocType -#: crm/fcrm/doctype/crm_invitation/crm_invitation.json +#. Name of a PageType +#: crm/fcrm/pagetype/crm_invitation/crm_invitation.json msgid "CRM Invitation" msgstr "" -#. Name of a DocType -#: crm/fcrm/doctype/crm_lead/crm_lead.json +#. Name of a PageType +#: crm/fcrm/pagetype/crm_lead/crm_lead.json msgid "CRM Lead" msgstr "" -#. Name of a DocType -#: crm/fcrm/doctype/crm_lead_source/crm_lead_source.json +#. Name of a PageType +#: crm/fcrm/pagetype/crm_lead_source/crm_lead_source.json msgid "CRM Lead Source" msgstr "" -#. Name of a DocType -#: crm/fcrm/doctype/crm_lead_status/crm_lead_status.json +#. Name of a PageType +#: crm/fcrm/pagetype/crm_lead_status/crm_lead_status.json msgid "CRM Lead Status" msgstr "" -#. Name of a DocType -#: crm/fcrm/doctype/crm_lost_reason/crm_lost_reason.json +#. Name of a PageType +#: crm/fcrm/pagetype/crm_lost_reason/crm_lost_reason.json msgid "CRM Lost Reason" msgstr "" -#. Name of a DocType -#: crm/fcrm/doctype/crm_notification/crm_notification.json +#. Name of a PageType +#: crm/fcrm/pagetype/crm_notification/crm_notification.json msgid "CRM Notification" msgstr "" -#. Name of a DocType -#: crm/fcrm/doctype/crm_organization/crm_organization.json +#. Name of a PageType +#: crm/fcrm/pagetype/crm_organization/crm_organization.json msgid "CRM Organization" msgstr "" -#. Label of a shortcut in the Frappe CRM Workspace -#: crm/fcrm/workspace/frappe_crm/frappe_crm.json +#. Label of a shortcut in the Jingrow CRM Workspace +#: crm/fcrm/workspace/jingrow_crm/jingrow_crm.json msgid "CRM Portal Page" msgstr "" -#. Name of a DocType -#: crm/fcrm/doctype/crm_product/crm_product.json +#. Name of a PageType +#: crm/fcrm/pagetype/crm_product/crm_product.json msgid "CRM Product" msgstr "" -#. Name of a DocType -#: crm/fcrm/doctype/crm_products/crm_products.json +#. Name of a PageType +#: crm/fcrm/pagetype/crm_products/crm_products.json msgid "CRM Products" msgstr "" -#. Name of a DocType -#: crm/fcrm/doctype/crm_service_day/crm_service_day.json +#. Name of a PageType +#: crm/fcrm/pagetype/crm_service_day/crm_service_day.json msgid "CRM Service Day" msgstr "" -#. Name of a DocType -#: crm/fcrm/doctype/crm_service_level_agreement/crm_service_level_agreement.json +#. Name of a PageType +#: crm/fcrm/pagetype/crm_service_level_agreement/crm_service_level_agreement.json msgid "CRM Service Level Agreement" msgstr "" -#. Name of a DocType -#: crm/fcrm/doctype/crm_service_level_priority/crm_service_level_priority.json +#. Name of a PageType +#: crm/fcrm/pagetype/crm_service_level_priority/crm_service_level_priority.json msgid "CRM Service Level Priority" msgstr "" -#. Name of a DocType -#: crm/fcrm/doctype/crm_status_change_log/crm_status_change_log.json +#. Name of a PageType +#: crm/fcrm/pagetype/crm_status_change_log/crm_status_change_log.json msgid "CRM Status Change Log" msgstr "" -#. Name of a DocType -#: crm/fcrm/doctype/crm_task/crm_task.json +#. Name of a PageType +#: crm/fcrm/pagetype/crm_task/crm_task.json msgid "CRM Task" msgstr "" -#. Name of a DocType -#: crm/fcrm/doctype/crm_telephony_agent/crm_telephony_agent.json +#. Name of a PageType +#: crm/fcrm/pagetype/crm_telephony_agent/crm_telephony_agent.json msgid "CRM Telephony Agent" msgstr "" -#. Name of a DocType -#: crm/fcrm/doctype/crm_telephony_phone/crm_telephony_phone.json +#. Name of a PageType +#: crm/fcrm/pagetype/crm_telephony_phone/crm_telephony_phone.json msgid "CRM Telephony Phone" msgstr "" -#. Name of a DocType -#: crm/fcrm/doctype/crm_territory/crm_territory.json +#. Name of a PageType +#: crm/fcrm/pagetype/crm_territory/crm_territory.json msgid "CRM Territory" msgstr "" -#. Name of a DocType -#: crm/fcrm/doctype/crm_twilio_settings/crm_twilio_settings.json +#. Name of a PageType +#: crm/fcrm/pagetype/crm_twilio_settings/crm_twilio_settings.json msgid "CRM Twilio Settings" msgstr "" -#. Name of a DocType -#: crm/fcrm/doctype/crm_view_settings/crm_view_settings.json +#. Name of a PageType +#: crm/fcrm/pagetype/crm_view_settings/crm_view_settings.json msgid "CRM View Settings" msgstr "" @@ -1021,13 +1021,13 @@ msgstr "" msgid "Call Details" msgstr "" -#. Label of the receiver (Link) field in DocType 'CRM Call Log' -#: crm/fcrm/doctype/crm_call_log/crm_call_log.json +#. Label of the receiver (Link) field in PageType 'CRM Call Log' +#: crm/fcrm/pagetype/crm_call_log/crm_call_log.json msgid "Call Received By" msgstr "" -#. Description of the 'Duration' (Duration) field in DocType 'CRM Call Log' -#: crm/fcrm/doctype/crm_call_log/crm_call_log.json +#. Description of the 'Duration' (Duration) field in PageType 'CRM Call Log' +#: crm/fcrm/pagetype/crm_call_log/crm_call_log.json msgid "Call duration in seconds" msgstr "" @@ -1045,8 +1045,8 @@ msgstr "" msgid "Call with John Doe" msgstr "" -#. Label of the caller (Link) field in DocType 'CRM Call Log' -#: crm/fcrm/doctype/crm_call_log/crm_call_log.json +#. Label of the caller (Link) field in PageType 'CRM Call Log' +#: crm/fcrm/pagetype/crm_call_log/crm_call_log.json msgid "Caller" msgstr "" @@ -1083,10 +1083,10 @@ msgstr "" msgid "Cancel" msgstr "" -#. Option for the 'Status' (Select) field in DocType 'CRM Call Log' -#. Option for the 'Status' (Select) field in DocType 'CRM Task' -#: crm/fcrm/doctype/crm_call_log/crm_call_log.json -#: crm/fcrm/doctype/crm_task/crm_task.json +#. Option for the 'Status' (Select) field in PageType 'CRM Call Log' +#. Option for the 'Status' (Select) field in PageType 'CRM Task' +#: crm/fcrm/pagetype/crm_call_log/crm_call_log.json +#: crm/fcrm/pagetype/crm_task/crm_task.json msgid "Canceled" msgstr "" @@ -1094,7 +1094,7 @@ msgstr "" msgid "Cannot change role of user with Admin access" msgstr "" -#: crm/fcrm/doctype/fcrm_settings/fcrm_settings.py:34 +#: crm/fcrm/pagetype/fcrm_settings/fcrm_settings.py:34 msgid "Cannot delete standard items {0}" msgstr "" @@ -1189,8 +1189,8 @@ msgstr "" msgid "Clear Sort" msgstr "" -#. Label of the clear_table (Button) field in DocType 'CRM Holiday List' -#: crm/fcrm/doctype/crm_holiday_list/crm_holiday_list.json +#. Label of the clear_table (Button) field in PageType 'CRM Holiday List' +#: crm/fcrm/pagetype/crm_holiday_list/crm_holiday_list.json msgid "Clear Table" msgstr "" @@ -1211,8 +1211,8 @@ msgstr "" msgid "Close panel" msgstr "" -#. Label of the closed_date (Date) field in DocType 'CRM Deal' -#: crm/fcrm/doctype/crm_deal/crm_deal.json +#. Label of the closed_date (Date) field in PageType 'CRM Deal' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json msgid "Closed Date" msgstr "" @@ -1224,10 +1224,10 @@ msgstr "" msgid "Collapsible" msgstr "" -#. Label of the color (Select) field in DocType 'CRM Deal Status' -#. Label of the color (Select) field in DocType 'CRM Lead Status' -#: crm/fcrm/doctype/crm_deal_status/crm_deal_status.json -#: crm/fcrm/doctype/crm_lead_status/crm_lead_status.json +#. Label of the color (Select) field in PageType 'CRM Deal Status' +#. Label of the color (Select) field in PageType 'CRM Lead Status' +#: crm/fcrm/pagetype/crm_deal_status/crm_deal_status.json +#: crm/fcrm/pagetype/crm_lead_status/crm_lead_status.json msgid "Color" msgstr "" @@ -1235,20 +1235,20 @@ msgstr "" msgid "Column" msgstr "" -#. Label of the column_field (Data) field in DocType 'CRM View Settings' -#: crm/fcrm/doctype/crm_view_settings/crm_view_settings.json +#. Label of the column_field (Data) field in PageType 'CRM View Settings' +#: crm/fcrm/pagetype/crm_view_settings/crm_view_settings.json #: frontend/src/components/Kanban/KanbanSettings.vue:12 msgid "Column Field" msgstr "" -#. Label of the columns (Code) field in DocType 'CRM View Settings' -#: crm/fcrm/doctype/crm_view_settings/crm_view_settings.json +#. Label of the columns (Code) field in PageType 'CRM View Settings' +#: crm/fcrm/pagetype/crm_view_settings/crm_view_settings.json #: frontend/src/components/ColumnSettings.vue:4 msgid "Columns" msgstr "" -#. Label of the comment (Link) field in DocType 'CRM Notification' -#: crm/fcrm/doctype/crm_notification/crm_notification.json +#. Label of the comment (Link) field in PageType 'CRM Notification' +#: crm/fcrm/pagetype/crm_notification/crm_notification.json #: frontend/src/components/CommentBox.vue:78 #: frontend/src/components/CommunicationArea.vue:16 #: frontend/src/components/Layouts/AppSidebar.vue:579 @@ -1264,20 +1264,20 @@ msgstr "" msgid "Common reasons for losing deals" msgstr "" -#. Label of the communication_status (Link) field in DocType 'CRM Deal' -#. Label of the communication_status (Link) field in DocType 'CRM Lead' -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_lead/crm_lead.json +#. Label of the communication_status (Link) field in PageType 'CRM Deal' +#. Label of the communication_status (Link) field in PageType 'CRM Lead' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_lead/crm_lead.json msgid "Communication Status" msgstr "" -#. Label of a shortcut in the Frappe CRM Workspace -#: crm/fcrm/workspace/frappe_crm/frappe_crm.json +#. Label of a shortcut in the Jingrow CRM Workspace +#: crm/fcrm/workspace/jingrow_crm/jingrow_crm.json msgid "Communication Statuses" msgstr "" -#. Label of the erpnext_company (Data) field in DocType 'ERPNext CRM Settings' -#: crm/fcrm/doctype/erpnext_crm_settings/erpnext_crm_settings.json +#. Label of the erpnext_company (Data) field in PageType 'ERPNext CRM Settings' +#: crm/fcrm/pagetype/erpnext_crm_settings/erpnext_crm_settings.json msgid "Company in ERPNext Site" msgstr "" @@ -1285,18 +1285,18 @@ msgstr "" msgid "Complete Registration" msgstr "" -#. Option for the 'Status' (Select) field in DocType 'CRM Call Log' -#: crm/fcrm/doctype/crm_call_log/crm_call_log.json +#. Option for the 'Status' (Select) field in PageType 'CRM Call Log' +#: crm/fcrm/pagetype/crm_call_log/crm_call_log.json msgid "Completed" msgstr "" -#. Option for the 'Device' (Select) field in DocType 'CRM Telephony Agent' -#: crm/fcrm/doctype/crm_telephony_agent/crm_telephony_agent.json +#. Option for the 'Device' (Select) field in PageType 'CRM Telephony Agent' +#: crm/fcrm/pagetype/crm_telephony_agent/crm_telephony_agent.json msgid "Computer" msgstr "" -#. Label of the condition (Code) field in DocType 'CRM Service Level Agreement' -#: crm/fcrm/doctype/crm_service_level_agreement/crm_service_level_agreement.json +#. Label of the condition (Code) field in PageType 'CRM Service Level Agreement' +#: crm/fcrm/pagetype/crm_service_level_agreement/crm_service_level_agreement.json msgid "Condition" msgstr "" @@ -1354,17 +1354,17 @@ msgstr "" msgid "Connect your email" msgstr "" -#. Label of the contact (Link) field in DocType 'CRM Contacts' -#. Label of the contact (Link) field in DocType 'CRM Deal' -#: crm/fcrm/doctype/crm_contacts/crm_contacts.json -#: crm/fcrm/doctype/crm_deal/crm_deal.json +#. Label of the contact (Link) field in PageType 'CRM Contacts' +#. Label of the contact (Link) field in PageType 'CRM Deal' +#: crm/fcrm/pagetype/crm_contacts/crm_contacts.json +#: crm/fcrm/pagetype/crm_deal/crm_deal.json #: frontend/src/components/Layouts/AppSidebar.vue:552 #: frontend/src/components/Modals/ConvertToDealModal.vue:51 #: frontend/src/pages/MobileLead.vue:145 msgid "Contact" msgstr "" -#: crm/fcrm/doctype/crm_lead/crm_lead.py:212 +#: crm/fcrm/pagetype/crm_lead/crm_lead.py:212 msgid "Contact Already Exists" msgstr "" @@ -1384,7 +1384,7 @@ msgstr "" msgid "Contact already added" msgstr "" -#: crm/fcrm/doctype/crm_lead/crm_lead.py:211 +#: crm/fcrm/pagetype/crm_lead/crm_lead.py:211 msgid "Contact already exists with {0}" msgstr "" @@ -1405,18 +1405,18 @@ msgstr "" msgid "Contact updated" msgstr "" -#. Label of the contacts_tab (Tab Break) field in DocType 'CRM Deal' -#. Label of the contacts (Table) field in DocType 'CRM Deal' -#. Label of a shortcut in the Frappe CRM Workspace -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/workspace/frappe_crm/frappe_crm.json +#. Label of the contacts_tab (Tab Break) field in PageType 'CRM Deal' +#. Label of the contacts (Table) field in PageType 'CRM Deal' +#. Label of a shortcut in the Jingrow CRM Workspace +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/workspace/jingrow_crm/jingrow_crm.json #: frontend/src/pages/Contact.vue:234 frontend/src/pages/MobileContact.vue:212 #: frontend/src/pages/MobileOrganization.vue:331 msgid "Contacts" msgstr "" -#. Label of the content (Text Editor) field in DocType 'FCRM Note' -#: crm/fcrm/doctype/fcrm_note/fcrm_note.json +#. Label of the content (Text Editor) field in PageType 'FCRM Note' +#: crm/fcrm/pagetype/fcrm_note/fcrm_note.json #: frontend/src/components/Modals/NoteModal.vue:33 #: frontend/src/components/Settings/EmailTemplate/EditEmailTemplate.vue:89 #: frontend/src/components/Settings/EmailTemplate/EditEmailTemplate.vue:102 @@ -1456,8 +1456,8 @@ msgstr "" msgid "Convert to Deal" msgstr "" -#. Label of the converted (Check) field in DocType 'CRM Lead' -#: crm/fcrm/doctype/crm_lead/crm_lead.json +#. Label of the converted (Check) field in PageType 'CRM Lead' +#: crm/fcrm/pagetype/crm_lead/crm_lead.json msgid "Converted" msgstr "" @@ -1533,9 +1533,9 @@ msgstr "" msgid "Create an event" msgstr "" -#. Label of the create_customer_on_status_change (Check) field in DocType +#. Label of the create_customer_on_status_change (Check) field in PageType #. 'ERPNext CRM Settings' -#: crm/fcrm/doctype/erpnext_crm_settings/erpnext_crm_settings.json +#: crm/fcrm/pagetype/erpnext_crm_settings/erpnext_crm_settings.json msgid "Create customer on status change" msgstr "" @@ -1560,13 +1560,13 @@ msgstr "" msgid "Create your first task" msgstr "" -#. Label of the currency (Link) field in DocType 'CRM Deal' -#. Label of the currency (Link) field in DocType 'CRM Organization' -#. Label of the currency (Link) field in DocType 'FCRM Settings' -#. Label of the currency_tab (Tab Break) field in DocType 'FCRM Settings' -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_organization/crm_organization.json -#: crm/fcrm/doctype/fcrm_settings/fcrm_settings.json +#. Label of the currency (Link) field in PageType 'CRM Deal' +#. Label of the currency (Link) field in PageType 'CRM Organization' +#. Label of the currency (Link) field in PageType 'FCRM Settings' +#. Label of the currency_tab (Tab Break) field in PageType 'FCRM Settings' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_organization/crm_organization.json +#: crm/fcrm/pagetype/fcrm_settings/fcrm_settings.json #: frontend/src/components/Settings/CurrencySettings.vue:31 msgid "Currency" msgstr "" @@ -1631,13 +1631,13 @@ msgstr "" msgid "Data" msgstr "" -#. Option for the 'Type' (Select) field in DocType 'CRM Fields Layout' -#: crm/fcrm/doctype/crm_fields_layout/crm_fields_layout.json +#. Option for the 'Type' (Select) field in PageType 'CRM Fields Layout' +#: crm/fcrm/pagetype/crm_fields_layout/crm_fields_layout.json msgid "Data Fields" msgstr "" -#. Label of the date (Date) field in DocType 'CRM Holiday' -#: crm/api/dashboard.py:601 crm/fcrm/doctype/crm_holiday/crm_holiday.json +#. Label of the date (Date) field in PageType 'CRM Holiday' +#: crm/api/dashboard.py:601 crm/fcrm/pagetype/crm_holiday/crm_holiday.json #: frontend/src/components/Calendar/CalendarEventPanel.vue:202 msgid "Date" msgstr "" @@ -1660,23 +1660,23 @@ msgstr "" msgid "Deal" msgstr "" -#. Label of the deal_owner (Link) field in DocType 'CRM Deal' -#: crm/fcrm/doctype/crm_deal/crm_deal.json +#. Label of the deal_owner (Link) field in PageType 'CRM Deal' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json msgid "Deal Owner" msgstr "" -#. Label of the deal_status (Link) field in DocType 'ERPNext CRM Settings' -#: crm/fcrm/doctype/erpnext_crm_settings/erpnext_crm_settings.json +#. Label of the deal_status (Link) field in PageType 'ERPNext CRM Settings' +#: crm/fcrm/pagetype/erpnext_crm_settings/erpnext_crm_settings.json msgid "Deal Status" msgstr "" -#. Label of a shortcut in the Frappe CRM Workspace -#: crm/fcrm/workspace/frappe_crm/frappe_crm.json +#. Label of a shortcut in the Jingrow CRM Workspace +#: crm/fcrm/workspace/jingrow_crm/jingrow_crm.json msgid "Deal Statuses" msgstr "" -#. Label of the deal_value (Currency) field in DocType 'CRM Deal' -#: crm/fcrm/doctype/crm_deal/crm_deal.json +#. Label of the deal_value (Currency) field in PageType 'CRM Deal' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json msgid "Deal Value" msgstr "" @@ -1694,8 +1694,8 @@ msgstr "" msgid "Deal value" msgstr "" -#. Label of a shortcut in the Frappe CRM Workspace -#: crm/fcrm/workspace/frappe_crm/frappe_crm.json +#. Label of a shortcut in the Jingrow CRM Workspace +#: crm/fcrm/workspace/jingrow_crm/jingrow_crm.json #: frontend/src/pages/Deal.vue:480 frontend/src/pages/MobileContact.vue:288 #: frontend/src/pages/MobileDeal.vue:384 #: frontend/src/pages/MobileOrganization.vue:325 @@ -1732,8 +1732,8 @@ msgstr "" msgid "Dear {{ lead_name }}, \\n\\nThis is a reminder for the payment of {{ grand_total }}. \\n\\nThanks, \\nFrappé" msgstr "" -#. Label of the default (Check) field in DocType 'CRM Service Level Agreement' -#: crm/fcrm/doctype/crm_service_level_agreement/crm_service_level_agreement.json +#. Label of the default (Check) field in PageType 'CRM Service Level Agreement' +#: crm/fcrm/pagetype/crm_service_level_agreement/crm_service_level_agreement.json msgid "Default" msgstr "" @@ -1745,8 +1745,8 @@ msgstr "" msgid "Default Incoming" msgstr "" -#. Label of the default_medium (Select) field in DocType 'CRM Telephony Agent' -#: crm/fcrm/doctype/crm_telephony_agent/crm_telephony_agent.json +#. Label of the default_medium (Select) field in PageType 'CRM Telephony Agent' +#: crm/fcrm/pagetype/crm_telephony_agent/crm_telephony_agent.json msgid "Default Medium" msgstr "" @@ -1754,9 +1754,9 @@ msgstr "" msgid "Default Outgoing" msgstr "" -#. Label of the default_priority (Check) field in DocType 'CRM Service Level +#. Label of the default_priority (Check) field in PageType 'CRM Service Level #. Priority' -#: crm/fcrm/doctype/crm_service_level_priority/crm_service_level_priority.json +#: crm/fcrm/pagetype/crm_service_level_priority/crm_service_level_priority.json msgid "Default Priority" msgstr "" @@ -1768,7 +1768,7 @@ msgstr "" msgid "Default Sending and Inbox" msgstr "" -#: crm/fcrm/doctype/crm_service_level_agreement/crm_service_level_agreement.py:33 +#: crm/fcrm/pagetype/crm_service_level_agreement/crm_service_level_agreement.py:33 msgid "Default Service Level Agreement already exists for {0}" msgstr "" @@ -1788,8 +1788,8 @@ msgstr "" msgid "Default medium" msgstr "" -#: crm/fcrm/doctype/fcrm_settings/fcrm_settings.js:18 -#: crm/fcrm/doctype/fcrm_settings/fcrm_settings.js:30 +#: crm/fcrm/pagetype/fcrm_settings/fcrm_settings.js:18 +#: crm/fcrm/pagetype/fcrm_settings/fcrm_settings.js:30 msgid "Default statuses, custom fields and layouts restored successfully." msgstr "" @@ -1825,7 +1825,7 @@ msgstr "" msgid "Delete" msgstr "" -#: crm/fcrm/doctype/fcrm_settings/fcrm_settings.js:26 +#: crm/fcrm/pagetype/fcrm_settings/fcrm_settings.js:26 msgid "Delete & Restore" msgstr "" @@ -1883,14 +1883,14 @@ msgstr "" msgid "Delete {0} items" msgstr "" -#. Label of the description (Text Editor) field in DocType 'CRM Holiday' -#. Label of the description (Text Editor) field in DocType 'CRM Lost Reason' -#. Label of the description (Text Editor) field in DocType 'CRM Product' -#. Label of the description (Text Editor) field in DocType 'CRM Task' -#: crm/fcrm/doctype/crm_holiday/crm_holiday.json -#: crm/fcrm/doctype/crm_lost_reason/crm_lost_reason.json -#: crm/fcrm/doctype/crm_product/crm_product.json -#: crm/fcrm/doctype/crm_task/crm_task.json +#. Label of the description (Text Editor) field in PageType 'CRM Holiday' +#. Label of the description (Text Editor) field in PageType 'CRM Lost Reason' +#. Label of the description (Text Editor) field in PageType 'CRM Product' +#. Label of the description (Text Editor) field in PageType 'CRM Task' +#: crm/fcrm/pagetype/crm_holiday/crm_holiday.json +#: crm/fcrm/pagetype/crm_lost_reason/crm_lost_reason.json +#: crm/fcrm/pagetype/crm_product/crm_product.json +#: crm/fcrm/pagetype/crm_task/crm_task.json #: frontend/src/components/Calendar/CalendarEventPanel.vue:152 #: frontend/src/components/Modals/EventModal.vue:134 #: frontend/src/components/Modals/TaskModal.vue:36 @@ -1907,29 +1907,29 @@ msgstr "" msgid "Desk" msgstr "" -#. Label of the details (Tab Break) field in DocType 'CRM Lead' -#. Label of the details (Text Editor) field in DocType 'CRM Lead Source' -#: crm/fcrm/doctype/crm_lead/crm_lead.json -#: crm/fcrm/doctype/crm_lead_source/crm_lead_source.json +#. Label of the details (Tab Break) field in PageType 'CRM Lead' +#. Label of the details (Text Editor) field in PageType 'CRM Lead Source' +#: crm/fcrm/pagetype/crm_lead/crm_lead.json +#: crm/fcrm/pagetype/crm_lead_source/crm_lead_source.json #: frontend/src/pages/MobileContact.vue:283 #: frontend/src/pages/MobileDeal.vue:424 frontend/src/pages/MobileLead.vue:331 #: frontend/src/pages/MobileOrganization.vue:320 msgid "Details" msgstr "" -#. Label of the call_receiving_device (Select) field in DocType 'CRM Telephony +#. Label of the call_receiving_device (Select) field in PageType 'CRM Telephony #. Agent' -#: crm/fcrm/doctype/crm_telephony_agent/crm_telephony_agent.json +#: crm/fcrm/pagetype/crm_telephony_agent/crm_telephony_agent.json #: frontend/src/components/FilesUploader/FilesUploaderArea.vue:39 msgid "Device" msgstr "" -#: crm/fcrm/doctype/crm_form_script/crm_form_script.js:30 +#: crm/fcrm/pagetype/crm_form_script/crm_form_script.js:30 msgid "Disable" msgstr "" -#. Label of the disabled (Check) field in DocType 'CRM Product' -#: crm/fcrm/doctype/crm_product/crm_product.json +#. Label of the disabled (Check) field in PageType 'CRM Product' +#: crm/fcrm/pagetype/crm_product/crm_product.json msgid "Disabled" msgstr "Zakázáno" @@ -1943,27 +1943,27 @@ msgstr "" msgid "Discard unsaved changes?" msgstr "" -#. Label of the discount_percentage (Percent) field in DocType 'CRM Products' -#: crm/fcrm/doctype/crm_products/crm_products.json +#. Label of the discount_percentage (Percent) field in PageType 'CRM Products' +#: crm/fcrm/pagetype/crm_products/crm_products.json msgid "Discount %" msgstr "" -#. Label of the discount_amount (Currency) field in DocType 'CRM Products' -#: crm/fcrm/doctype/crm_products/crm_products.json +#. Label of the discount_amount (Currency) field in PageType 'CRM Products' +#: crm/fcrm/pagetype/crm_products/crm_products.json msgid "Discount Amount" msgstr "" -#. Label of the dt (Link) field in DocType 'CRM Form Script' -#. Label of the dt (Link) field in DocType 'CRM Global Settings' -#. Label of the dt (Link) field in DocType 'CRM View Settings' -#: crm/fcrm/doctype/crm_form_script/crm_form_script.json -#: crm/fcrm/doctype/crm_global_settings/crm_global_settings.json -#: crm/fcrm/doctype/crm_view_settings/crm_view_settings.json -msgid "DocType" +#. Label of the dt (Link) field in PageType 'CRM Form Script' +#. Label of the dt (Link) field in PageType 'CRM Global Settings' +#. Label of the dt (Link) field in PageType 'CRM View Settings' +#: crm/fcrm/pagetype/crm_form_script/crm_form_script.json +#: crm/fcrm/pagetype/crm_global_settings/crm_global_settings.json +#: crm/fcrm/pagetype/crm_view_settings/crm_view_settings.json +msgid "PageType" msgstr "" -#. Label of the dt (Link) field in DocType 'CRM Fields Layout' -#: crm/fcrm/doctype/crm_fields_layout/crm_fields_layout.json +#. Label of the dt (Link) field in PageType 'CRM Fields Layout' +#: crm/fcrm/pagetype/crm_fields_layout/crm_fields_layout.json msgid "Document Type" msgstr "" @@ -1983,8 +1983,8 @@ msgstr "" msgid "Documentation" msgstr "" -#. Option for the 'Status' (Select) field in DocType 'CRM Task' -#: crm/fcrm/doctype/crm_task/crm_task.json +#. Option for the 'Status' (Select) field in PageType 'CRM Task' +#: crm/fcrm/pagetype/crm_task/crm_task.json msgid "Done" msgstr "" @@ -2006,13 +2006,13 @@ msgstr "" msgid "Drop files here" msgstr "" -#. Label of the dropdown_items_tab (Tab Break) field in DocType 'FCRM Settings' -#: crm/fcrm/doctype/fcrm_settings/fcrm_settings.json +#. Label of the dropdown_items_tab (Tab Break) field in PageType 'FCRM Settings' +#: crm/fcrm/pagetype/fcrm_settings/fcrm_settings.json msgid "Dropdown Items" msgstr "" -#. Label of the due_date (Datetime) field in DocType 'CRM Task' -#: crm/fcrm/doctype/crm_task/crm_task.json +#. Label of the due_date (Datetime) field in PageType 'CRM Task' +#: crm/fcrm/pagetype/crm_task/crm_task.json msgid "Due Date" msgstr "" @@ -2048,10 +2048,10 @@ msgstr "" msgid "Duplicate template" msgstr "" -#. Label of the duration (Duration) field in DocType 'CRM Call Log' -#. Label of the duration (Duration) field in DocType 'CRM Status Change Log' -#: crm/fcrm/doctype/crm_call_log/crm_call_log.json -#: crm/fcrm/doctype/crm_status_change_log/crm_status_change_log.json +#. Label of the duration (Duration) field in PageType 'CRM Call Log' +#. Label of the duration (Duration) field in PageType 'CRM Status Change Log' +#: crm/fcrm/pagetype/crm_call_log/crm_call_log.json +#: crm/fcrm/pagetype/crm_status_change_log/crm_status_change_log.json msgid "Duration" msgstr "" @@ -2060,28 +2060,28 @@ msgstr "" msgid "ERPNext" msgstr "" -#. Name of a DocType -#: crm/fcrm/doctype/erpnext_crm_settings/erpnext_crm_settings.json +#. Name of a PageType +#: crm/fcrm/pagetype/erpnext_crm_settings/erpnext_crm_settings.json msgid "ERPNext CRM Settings" msgstr "" -#. Label of the section_break_oubd (Section Break) field in DocType 'ERPNext +#. Label of the section_break_oubd (Section Break) field in PageType 'ERPNext #. CRM Settings' -#: crm/fcrm/doctype/erpnext_crm_settings/erpnext_crm_settings.json +#: crm/fcrm/pagetype/erpnext_crm_settings/erpnext_crm_settings.json msgid "ERPNext Site API's" msgstr "" -#. Label of the erpnext_site_url (Data) field in DocType 'ERPNext CRM Settings' -#: crm/fcrm/doctype/erpnext_crm_settings/erpnext_crm_settings.json +#. Label of the erpnext_site_url (Data) field in PageType 'ERPNext CRM Settings' +#: crm/fcrm/pagetype/erpnext_crm_settings/erpnext_crm_settings.json msgid "ERPNext Site URL" msgstr "" -#: crm/fcrm/doctype/erpnext_crm_settings/erpnext_crm_settings.py:25 +#: crm/fcrm/pagetype/erpnext_crm_settings/erpnext_crm_settings.py:25 msgid "ERPNext is not installed in the current site" msgstr "" -#: crm/fcrm/doctype/erpnext_crm_settings/erpnext_crm_settings.py:98 -#: crm/fcrm/doctype/erpnext_crm_settings/erpnext_crm_settings.py:124 +#: crm/fcrm/pagetype/erpnext_crm_settings/erpnext_crm_settings.py:98 +#: crm/fcrm/pagetype/erpnext_crm_settings/erpnext_crm_settings.py:124 msgid "ERPNext is not integrated with the CRM" msgstr "" @@ -2191,12 +2191,12 @@ msgstr "" msgid "Editing event" msgstr "" -#. Label of the email (Data) field in DocType 'CRM Contacts' -#. Label of the email (Data) field in DocType 'CRM Invitation' -#. Label of the email (Data) field in DocType 'CRM Lead' -#: crm/fcrm/doctype/crm_contacts/crm_contacts.json -#: crm/fcrm/doctype/crm_invitation/crm_invitation.json -#: crm/fcrm/doctype/crm_lead/crm_lead.json frontend/src/pages/Contact.vue:510 +#. Label of the email (Data) field in PageType 'CRM Contacts' +#. Label of the email (Data) field in PageType 'CRM Invitation' +#. Label of the email (Data) field in PageType 'CRM Lead' +#: crm/fcrm/pagetype/crm_contacts/crm_contacts.json +#: crm/fcrm/pagetype/crm_invitation/crm_invitation.json +#: crm/fcrm/pagetype/crm_lead/crm_lead.json frontend/src/pages/Contact.vue:510 #: frontend/src/pages/MobileContact.vue:518 #: frontend/src/pages/MobileOrganization.vue:462 #: frontend/src/pages/MobileOrganization.vue:490 @@ -2213,8 +2213,8 @@ msgstr "" msgid "Email ID is required" msgstr "" -#. Label of the email_sent_at (Datetime) field in DocType 'CRM Invitation' -#: crm/fcrm/doctype/crm_invitation/crm_invitation.json +#. Label of the email_sent_at (Datetime) field in PageType 'CRM Invitation' +#: crm/fcrm/pagetype/crm_invitation/crm_invitation.json msgid "Email Sent At" msgstr "" @@ -2272,12 +2272,12 @@ msgstr "" msgid "Empty - Choose a field to sort by" msgstr "" -#: crm/fcrm/doctype/crm_form_script/crm_form_script.js:30 +#: crm/fcrm/pagetype/crm_form_script/crm_form_script.js:30 msgid "Enable" msgstr "" -#. Label of the enable_forecasting (Check) field in DocType 'FCRM Settings' -#: crm/fcrm/doctype/fcrm_settings/fcrm_settings.json +#. Label of the enable_forecasting (Check) field in PageType 'FCRM Settings' +#: crm/fcrm/pagetype/fcrm_settings/fcrm_settings.json msgid "Enable Forecasting" msgstr "" @@ -2293,18 +2293,18 @@ msgstr "" msgid "Enable forecasting" msgstr "" -#. Label of the enabled (Check) field in DocType 'CRM Exotel Settings' -#. Label of the enabled (Check) field in DocType 'CRM Form Script' -#. Label of the enabled (Check) field in DocType 'CRM Service Level Agreement' -#. Label of the enabled (Check) field in DocType 'CRM Twilio Settings' -#. Label of the enabled (Check) field in DocType 'ERPNext CRM Settings' -#. Label of the enabled (Check) field in DocType 'Helpdesk CRM Settings' -#: crm/fcrm/doctype/crm_exotel_settings/crm_exotel_settings.json -#: crm/fcrm/doctype/crm_form_script/crm_form_script.json -#: crm/fcrm/doctype/crm_service_level_agreement/crm_service_level_agreement.json -#: crm/fcrm/doctype/crm_twilio_settings/crm_twilio_settings.json -#: crm/fcrm/doctype/erpnext_crm_settings/erpnext_crm_settings.json -#: crm/fcrm/doctype/helpdesk_crm_settings/helpdesk_crm_settings.json +#. Label of the enabled (Check) field in PageType 'CRM Exotel Settings' +#. Label of the enabled (Check) field in PageType 'CRM Form Script' +#. Label of the enabled (Check) field in PageType 'CRM Service Level Agreement' +#. Label of the enabled (Check) field in PageType 'CRM Twilio Settings' +#. Label of the enabled (Check) field in PageType 'ERPNext CRM Settings' +#. Label of the enabled (Check) field in PageType 'Helpdesk CRM Settings' +#: crm/fcrm/pagetype/crm_exotel_settings/crm_exotel_settings.json +#: crm/fcrm/pagetype/crm_form_script/crm_form_script.json +#: crm/fcrm/pagetype/crm_service_level_agreement/crm_service_level_agreement.json +#: crm/fcrm/pagetype/crm_twilio_settings/crm_twilio_settings.json +#: crm/fcrm/pagetype/erpnext_crm_settings/erpnext_crm_settings.json +#: crm/fcrm/pagetype/helpdesk_crm_settings/helpdesk_crm_settings.json #: frontend/src/components/Settings/AssignmentRules/AssignmentRuleView.vue:32 #: frontend/src/components/Settings/AssignmentRules/AssignmentRulesList.vue:21 #: frontend/src/components/Settings/EmailTemplate/EditEmailTemplate.vue:18 @@ -2313,15 +2313,15 @@ msgstr "" msgid "Enabled" msgstr "" -#. Label of the end_date (Date) field in DocType 'CRM Service Level Agreement' -#: crm/fcrm/doctype/crm_service_level_agreement/crm_service_level_agreement.json +#. Label of the end_date (Date) field in PageType 'CRM Service Level Agreement' +#: crm/fcrm/pagetype/crm_service_level_agreement/crm_service_level_agreement.json msgid "End Date" msgstr "" -#. Label of the end_time (Datetime) field in DocType 'CRM Call Log' -#. Label of the end_time (Time) field in DocType 'CRM Service Day' -#: crm/fcrm/doctype/crm_call_log/crm_call_log.json -#: crm/fcrm/doctype/crm_service_day/crm_service_day.json +#. Label of the end_time (Datetime) field in PageType 'CRM Call Log' +#. Label of the end_time (Time) field in PageType 'CRM Service Day' +#: crm/fcrm/pagetype/crm_call_log/crm_call_log.json +#: crm/fcrm/pagetype/crm_service_day/crm_service_day.json #: frontend/src/components/Calendar/CalendarEventPanel.vue:242 #: frontend/src/components/Modals/EventModal.vue:112 msgid "End Time" @@ -2362,15 +2362,15 @@ msgstr "" msgid "Error updating field" msgstr "" -#: crm/fcrm/doctype/erpnext_crm_settings/erpnext_crm_settings.py:279 +#: crm/fcrm/pagetype/erpnext_crm_settings/erpnext_crm_settings.py:279 msgid "Error while creating customer in ERPNext, check error log for more details" msgstr "" -#: crm/fcrm/doctype/erpnext_crm_settings/erpnext_crm_settings.py:191 +#: crm/fcrm/pagetype/erpnext_crm_settings/erpnext_crm_settings.py:191 msgid "Error while creating prospect in ERPNext, check error log for more details" msgstr "" -#: crm/fcrm/doctype/erpnext_crm_settings/erpnext_crm_settings.py:117 +#: crm/fcrm/pagetype/erpnext_crm_settings/erpnext_crm_settings.py:117 msgid "Error while fetching customer in ERPNext, check error log for more details" msgstr "" @@ -2395,16 +2395,16 @@ msgstr "" msgid "Excel" msgstr "" -#. Label of the exchange_rate (Float) field in DocType 'CRM Deal' -#. Label of the exchange_rate (Float) field in DocType 'CRM Organization' -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_organization/crm_organization.json +#. Label of the exchange_rate (Float) field in PageType 'CRM Deal' +#. Label of the exchange_rate (Float) field in PageType 'CRM Organization' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_organization/crm_organization.json msgid "Exchange Rate" msgstr "" -#. Label of the exchange_rate_provider_section (Section Break) field in DocType +#. Label of the exchange_rate_provider_section (Section Break) field in PageType #. 'FCRM Settings' -#: crm/fcrm/doctype/fcrm_settings/fcrm_settings.json +#: crm/fcrm/pagetype/fcrm_settings/fcrm_settings.json msgid "Exchange Rate Provider" msgstr "" @@ -2412,12 +2412,12 @@ msgstr "" msgid "Exchange rate provider" msgstr "" -#. Option for the 'Telephony Medium' (Select) field in DocType 'CRM Call Log' -#. Label of the exotel (Check) field in DocType 'CRM Telephony Agent' -#. Option for the 'Default Medium' (Select) field in DocType 'CRM Telephony +#. Option for the 'Telephony Medium' (Select) field in PageType 'CRM Call Log' +#. Label of the exotel (Check) field in PageType 'CRM Telephony Agent' +#. Option for the 'Default Medium' (Select) field in PageType 'CRM Telephony #. Agent' -#: crm/fcrm/doctype/crm_call_log/crm_call_log.json -#: crm/fcrm/doctype/crm_telephony_agent/crm_telephony_agent.json +#: crm/fcrm/pagetype/crm_call_log/crm_call_log.json +#: crm/fcrm/pagetype/crm_telephony_agent/crm_telephony_agent.json #: frontend/src/components/Layouts/AppSidebar.vue:602 #: frontend/src/components/Settings/TelephonySettings.vue:41 #: frontend/src/components/Settings/TelephonySettings.vue:63 @@ -2428,8 +2428,8 @@ msgstr "" msgid "Exotel Exception" msgstr "" -#. Label of the exotel_number (Data) field in DocType 'CRM Telephony Agent' -#: crm/fcrm/doctype/crm_telephony_agent/crm_telephony_agent.json +#. Label of the exotel_number (Data) field in PageType 'CRM Telephony Agent' +#: crm/fcrm/pagetype/crm_telephony_agent/crm_telephony_agent.json msgid "Exotel Number" msgstr "" @@ -2453,26 +2453,26 @@ msgstr "" msgid "Expand" msgstr "" -#. Label of the expected_closure_date (Date) field in DocType 'CRM Deal' -#: crm/fcrm/doctype/crm_deal/crm_deal.json +#. Label of the expected_closure_date (Date) field in PageType 'CRM Deal' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json msgid "Expected Closure Date" msgstr "" -#: crm/fcrm/doctype/crm_deal/crm_deal.py:173 +#: crm/fcrm/pagetype/crm_deal/crm_deal.py:173 msgid "Expected Closure Date is required." msgstr "" -#. Label of the expected_deal_value (Currency) field in DocType 'CRM Deal' -#: crm/fcrm/doctype/crm_deal/crm_deal.json +#. Label of the expected_deal_value (Currency) field in PageType 'CRM Deal' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json msgid "Expected Deal Value" msgstr "" -#: crm/fcrm/doctype/crm_deal/crm_deal.py:171 +#: crm/fcrm/pagetype/crm_deal/crm_deal.py:171 msgid "Expected Deal Value is required." msgstr "" -#. Option for the 'Status' (Select) field in DocType 'CRM Invitation' -#: crm/fcrm/doctype/crm_invitation/crm_invitation.json +#. Option for the 'Status' (Select) field in PageType 'CRM Invitation' +#: crm/fcrm/pagetype/crm_invitation/crm_invitation.json msgid "Expired" msgstr "" @@ -2489,22 +2489,22 @@ msgstr "" msgid "Export Type" msgstr "" -#. Name of a DocType -#: crm/fcrm/doctype/fcrm_note/fcrm_note.json +#. Name of a PageType +#: crm/fcrm/pagetype/fcrm_note/fcrm_note.json msgid "FCRM Note" msgstr "" -#. Name of a DocType -#: crm/fcrm/doctype/fcrm_settings/fcrm_settings.json +#. Name of a PageType +#: crm/fcrm/pagetype/fcrm_settings/fcrm_settings.json msgid "FCRM Settings" msgstr "" -#. Option for the 'Status' (Select) field in DocType 'CRM Call Log' -#. Option for the 'SLA Status' (Select) field in DocType 'CRM Deal' -#. Option for the 'SLA Status' (Select) field in DocType 'CRM Lead' -#: crm/fcrm/doctype/crm_call_log/crm_call_log.json -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_lead/crm_lead.json +#. Option for the 'Status' (Select) field in PageType 'CRM Call Log' +#. Option for the 'SLA Status' (Select) field in PageType 'CRM Deal' +#. Option for the 'SLA Status' (Select) field in PageType 'CRM Lead' +#: crm/fcrm/pagetype/crm_call_log/crm_call_log.json +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_lead/crm_lead.json msgid "Failed" msgstr "" @@ -2528,7 +2528,7 @@ msgstr "" msgid "Failed to delete template" msgstr "" -#: crm/fcrm/doctype/fcrm_settings/fcrm_settings.py:205 +#: crm/fcrm/pagetype/fcrm_settings/fcrm_settings.py:205 msgid "Failed to fetch exchange rate from {0} to {1} on {2}. Please check your internet connection or try again later." msgstr "" @@ -2561,8 +2561,8 @@ msgstr "" msgid "Failed to update template" msgstr "" -#. Label of the favicon (Attach) field in DocType 'FCRM Settings' -#: crm/fcrm/doctype/fcrm_settings/fcrm_settings.json +#. Label of the favicon (Attach) field in PageType 'FCRM Settings' +#: crm/fcrm/pagetype/fcrm_settings/fcrm_settings.json #: frontend/src/components/Settings/BrandSettings.vue:87 msgid "Favicon" msgstr "" @@ -2586,23 +2586,23 @@ msgid "File \"{0}\" was skipped because only {1} uploads are allowed" msgstr "" #: frontend/src/components/FilesUploader/FilesUploaderArea.vue:359 -msgid "File \"{0}\" was skipped because only {1} uploads are allowed for DocType \"{2}\"" +msgid "File \"{0}\" was skipped because only {1} uploads are allowed for PageType \"{2}\"" msgstr "" #: frontend/src/components/Filter.vue:6 msgid "Filter" msgstr "" -#. Label of the filters (Code) field in DocType 'CRM View Settings' -#. Label of the filters_tab (Tab Break) field in DocType 'CRM View Settings' -#: crm/fcrm/doctype/crm_view_settings/crm_view_settings.json +#. Label of the filters (Code) field in PageType 'CRM View Settings' +#. Label of the filters_tab (Tab Break) field in PageType 'CRM View Settings' +#: crm/fcrm/pagetype/crm_view_settings/crm_view_settings.json msgid "Filters" msgstr "" -#. Label of the first_name (Data) field in DocType 'CRM Deal' -#. Label of the first_name (Data) field in DocType 'CRM Lead' -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_lead/crm_lead.json +#. Label of the first_name (Data) field in PageType 'CRM Deal' +#. Label of the first_name (Data) field in PageType 'CRM Lead' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_lead/crm_lead.json #: frontend/src/components/ColumnSettings.vue:103 #: frontend/src/components/Filter.vue:57 frontend/src/components/Filter.vue:88 #: frontend/src/components/SortBy.vue:6 frontend/src/components/SortBy.vue:103 @@ -2614,30 +2614,30 @@ msgstr "" msgid "First Name is mandatory" msgstr "" -#. Label of the first_responded_on (Datetime) field in DocType 'CRM Deal' -#. Label of the first_responded_on (Datetime) field in DocType 'CRM Lead' -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_lead/crm_lead.json +#. Label of the first_responded_on (Datetime) field in PageType 'CRM Deal' +#. Label of the first_responded_on (Datetime) field in PageType 'CRM Lead' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_lead/crm_lead.json msgid "First Responded On" msgstr "" -#. Option for the 'SLA Status' (Select) field in DocType 'CRM Deal' -#. Option for the 'SLA Status' (Select) field in DocType 'CRM Lead' -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_lead/crm_lead.json +#. Option for the 'SLA Status' (Select) field in PageType 'CRM Deal' +#. Option for the 'SLA Status' (Select) field in PageType 'CRM Lead' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_lead/crm_lead.json msgid "First Response Due" msgstr "" -#. Label of the first_response_time (Duration) field in DocType 'CRM Service +#. Label of the first_response_time (Duration) field in PageType 'CRM Service #. Level Priority' -#: crm/fcrm/doctype/crm_service_level_priority/crm_service_level_priority.json +#: crm/fcrm/pagetype/crm_service_level_priority/crm_service_level_priority.json msgid "First Response TIme" msgstr "" -#. Label of the first_response_time (Duration) field in DocType 'CRM Deal' -#. Label of the first_response_time (Duration) field in DocType 'CRM Lead' -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_lead/crm_lead.json +#. Label of the first_response_time (Duration) field in PageType 'CRM Deal' +#. Label of the first_response_time (Duration) field in PageType 'CRM Lead' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_lead/crm_lead.json msgid "First Response Time" msgstr "" @@ -2670,66 +2670,66 @@ msgstr "" msgid "Forecasting enabled successfully" msgstr "" -#. Option for the 'Apply To' (Select) field in DocType 'CRM Form Script' -#: crm/fcrm/doctype/crm_form_script/crm_form_script.json +#. Option for the 'Apply To' (Select) field in PageType 'CRM Form Script' +#: crm/fcrm/pagetype/crm_form_script/crm_form_script.json msgid "Form" msgstr "" -#: crm/fcrm/doctype/erpnext_crm_settings/erpnext_crm_settings.js:19 +#: crm/fcrm/pagetype/erpnext_crm_settings/erpnext_crm_settings.js:19 msgid "Form Script updated successfully" msgstr "" #. Name of a Workspace -#: crm/fcrm/workspace/frappe_crm/frappe_crm.json -msgid "Frappe CRM" +#: crm/fcrm/workspace/jingrow_crm/jingrow_crm.json +msgid "Jingrow CRM" msgstr "" #: frontend/src/components/Layouts/AppSidebar.vue:608 -msgid "Frappe CRM mobile" +msgid "Jingrow CRM mobile" msgstr "" -#. Option for the 'Weekly Off' (Select) field in DocType 'CRM Holiday List' -#. Option for the 'Workday' (Select) field in DocType 'CRM Service Day' -#: crm/fcrm/doctype/crm_holiday_list/crm_holiday_list.json -#: crm/fcrm/doctype/crm_service_day/crm_service_day.json +#. Option for the 'Weekly Off' (Select) field in PageType 'CRM Holiday List' +#. Option for the 'Workday' (Select) field in PageType 'CRM Service Day' +#: crm/fcrm/pagetype/crm_holiday_list/crm_holiday_list.json +#: crm/fcrm/pagetype/crm_service_day/crm_service_day.json msgid "Friday" msgstr "" -#. Label of the from (Data) field in DocType 'CRM Call Log' -#. Label of the from (Data) field in DocType 'CRM Status Change Log' -#: crm/fcrm/doctype/crm_call_log/crm_call_log.json -#: crm/fcrm/doctype/crm_status_change_log/crm_status_change_log.json +#. Label of the from (Data) field in PageType 'CRM Call Log' +#. Label of the from (Data) field in PageType 'CRM Status Change Log' +#: crm/fcrm/pagetype/crm_call_log/crm_call_log.json +#: crm/fcrm/pagetype/crm_status_change_log/crm_status_change_log.json msgid "From" msgstr "" -#. Label of the from_date (Date) field in DocType 'CRM Holiday List' -#. Label of the from_date (Datetime) field in DocType 'CRM Status Change Log' -#: crm/fcrm/doctype/crm_holiday_list/crm_holiday_list.json -#: crm/fcrm/doctype/crm_status_change_log/crm_status_change_log.json +#. Label of the from_date (Date) field in PageType 'CRM Holiday List' +#. Label of the from_date (Datetime) field in PageType 'CRM Status Change Log' +#: crm/fcrm/pagetype/crm_holiday_list/crm_holiday_list.json +#: crm/fcrm/pagetype/crm_status_change_log/crm_status_change_log.json msgid "From Date" msgstr "" -#. Label of the from_type (Data) field in DocType 'CRM Status Change Log' -#: crm/fcrm/doctype/crm_status_change_log/crm_status_change_log.json +#. Label of the from_type (Data) field in PageType 'CRM Status Change Log' +#: crm/fcrm/pagetype/crm_status_change_log/crm_status_change_log.json msgid "From Type" msgstr "" -#. Label of the from_user (Link) field in DocType 'CRM Notification' -#: crm/fcrm/doctype/crm_notification/crm_notification.json +#. Label of the from_user (Link) field in PageType 'CRM Notification' +#: crm/fcrm/pagetype/crm_notification/crm_notification.json msgid "From User" msgstr "" -#. Option for the 'SLA Status' (Select) field in DocType 'CRM Deal' -#. Option for the 'SLA Status' (Select) field in DocType 'CRM Lead' -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_lead/crm_lead.json +#. Option for the 'SLA Status' (Select) field in PageType 'CRM Deal' +#. Option for the 'SLA Status' (Select) field in PageType 'CRM Lead' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_lead/crm_lead.json msgid "Fulfilled" msgstr "" -#. Label of the full_name (Data) field in DocType 'CRM Contacts' -#. Label of the lead_name (Data) field in DocType 'CRM Lead' -#: crm/fcrm/doctype/crm_contacts/crm_contacts.json -#: crm/fcrm/doctype/crm_lead/crm_lead.json +#. Label of the full_name (Data) field in PageType 'CRM Contacts' +#. Label of the lead_name (Data) field in PageType 'CRM Lead' +#: crm/fcrm/pagetype/crm_contacts/crm_contacts.json +#: crm/fcrm/pagetype/crm_lead/crm_lead.json msgid "Full Name" msgstr "" @@ -2742,12 +2742,12 @@ msgstr "" msgid "GMT+5:30" msgstr "" -#. Label of the gender (Link) field in DocType 'CRM Contacts' -#. Label of the gender (Link) field in DocType 'CRM Deal' -#. Label of the gender (Link) field in DocType 'CRM Lead' -#: crm/fcrm/doctype/crm_contacts/crm_contacts.json -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_lead/crm_lead.json +#. Label of the gender (Link) field in PageType 'CRM Contacts' +#. Label of the gender (Link) field in PageType 'CRM Deal' +#. Label of the gender (Link) field in PageType 'CRM Lead' +#: crm/fcrm/pagetype/crm_contacts/crm_contacts.json +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_lead/crm_lead.json msgid "Gender" msgstr "" @@ -2771,20 +2771,20 @@ msgstr "" msgid "Go to website" msgstr "" -#. Option for the 'Type' (Select) field in DocType 'CRM Fields Layout' -#: crm/fcrm/doctype/crm_fields_layout/crm_fields_layout.json +#. Option for the 'Type' (Select) field in PageType 'CRM Fields Layout' +#: crm/fcrm/pagetype/crm_fields_layout/crm_fields_layout.json msgid "Grid Row" msgstr "" -#. Label of the group_by_tab (Tab Break) field in DocType 'CRM View Settings' -#: crm/fcrm/doctype/crm_view_settings/crm_view_settings.json +#. Label of the group_by_tab (Tab Break) field in PageType 'CRM View Settings' +#: crm/fcrm/pagetype/crm_view_settings/crm_view_settings.json #: frontend/src/components/ViewControls.vue:379 #: frontend/src/components/ViewControls.vue:611 frontend/src/utils/view.js:16 msgid "Group By" msgstr "" -#. Label of the group_by_field (Data) field in DocType 'CRM View Settings' -#: crm/fcrm/doctype/crm_view_settings/crm_view_settings.json +#. Label of the group_by_field (Data) field in PageType 'CRM View Settings' +#: crm/fcrm/pagetype/crm_view_settings/crm_view_settings.json msgid "Group By Field" msgstr "" @@ -2808,28 +2808,28 @@ msgstr "Pomoc" msgid "Helpdesk" msgstr "" -#. Name of a DocType -#: crm/fcrm/doctype/helpdesk_crm_settings/helpdesk_crm_settings.json +#. Name of a PageType +#: crm/fcrm/pagetype/helpdesk_crm_settings/helpdesk_crm_settings.json msgid "Helpdesk CRM Settings" msgstr "" -#. Label of the helpdesk_site_apis_section (Section Break) field in DocType +#. Label of the helpdesk_site_apis_section (Section Break) field in PageType #. 'Helpdesk CRM Settings' -#: crm/fcrm/doctype/helpdesk_crm_settings/helpdesk_crm_settings.json +#: crm/fcrm/pagetype/helpdesk_crm_settings/helpdesk_crm_settings.json msgid "Helpdesk Site API's" msgstr "" -#. Label of the helpdesk_site_url (Data) field in DocType 'Helpdesk CRM +#. Label of the helpdesk_site_url (Data) field in PageType 'Helpdesk CRM #. Settings' -#: crm/fcrm/doctype/helpdesk_crm_settings/helpdesk_crm_settings.json +#: crm/fcrm/pagetype/helpdesk_crm_settings/helpdesk_crm_settings.json msgid "Helpdesk Site URL" msgstr "" -#: crm/fcrm/doctype/helpdesk_crm_settings/helpdesk_crm_settings.py:18 +#: crm/fcrm/pagetype/helpdesk_crm_settings/helpdesk_crm_settings.py:18 msgid "Helpdesk is not installed in the current site" msgstr "" -#: crm/fcrm/doctype/helpdesk_crm_settings/helpdesk_crm_settings.py:40 +#: crm/fcrm/pagetype/helpdesk_crm_settings/helpdesk_crm_settings.py:40 msgid "Helpdesk is not integrated with the CRM" msgstr "" @@ -2845,8 +2845,8 @@ msgstr "" msgid "Hi John, \\n\\nCan you please provide more details on this..." msgstr "" -#. Label of the hidden (Check) field in DocType 'CRM Dropdown Item' -#: crm/fcrm/doctype/crm_dropdown_item/crm_dropdown_item.json +#. Label of the hidden (Check) field in PageType 'CRM Dropdown Item' +#: crm/fcrm/pagetype/crm_dropdown_item/crm_dropdown_item.json msgid "Hidden" msgstr "" @@ -2877,26 +2877,26 @@ msgstr "" msgid "Hide preview" msgstr "" -#. Option for the 'Priority' (Select) field in DocType 'CRM Task' -#: crm/fcrm/doctype/crm_task/crm_task.json +#. Option for the 'Priority' (Select) field in PageType 'CRM Task' +#: crm/fcrm/pagetype/crm_task/crm_task.json msgid "High" msgstr "" -#. Label of the holiday_list (Link) field in DocType 'CRM Service Level +#. Label of the holiday_list (Link) field in PageType 'CRM Service Level #. Agreement' -#: crm/fcrm/doctype/crm_service_level_agreement/crm_service_level_agreement.json +#: crm/fcrm/pagetype/crm_service_level_agreement/crm_service_level_agreement.json msgid "Holiday List" msgstr "" -#. Label of the holiday_list_name (Data) field in DocType 'CRM Holiday List' -#: crm/fcrm/doctype/crm_holiday_list/crm_holiday_list.json +#. Label of the holiday_list_name (Data) field in PageType 'CRM Holiday List' +#: crm/fcrm/pagetype/crm_holiday_list/crm_holiday_list.json msgid "Holiday List Name" msgstr "" -#. Label of the holidays_section (Section Break) field in DocType 'CRM Holiday +#. Label of the holidays_section (Section Break) field in PageType 'CRM Holiday #. List' -#. Label of the holidays (Table) field in DocType 'CRM Holiday List' -#: crm/fcrm/doctype/crm_holiday_list/crm_holiday_list.json +#. Label of the holidays (Table) field in PageType 'CRM Holiday List' +#: crm/fcrm/pagetype/crm_holiday_list/crm_holiday_list.json msgid "Holidays" msgstr "" @@ -2914,15 +2914,15 @@ msgstr "" msgid "I understand, add conditions" msgstr "" -#. Label of the id (Data) field in DocType 'CRM Call Log' -#: crm/fcrm/doctype/crm_call_log/crm_call_log.json +#. Label of the id (Data) field in PageType 'CRM Call Log' +#: crm/fcrm/pagetype/crm_call_log/crm_call_log.json msgid "ID" msgstr "" -#. Label of the icon (Code) field in DocType 'CRM Dropdown Item' -#. Label of the icon (Data) field in DocType 'CRM View Settings' -#: crm/fcrm/doctype/crm_dropdown_item/crm_dropdown_item.json -#: crm/fcrm/doctype/crm_view_settings/crm_view_settings.json +#. Label of the icon (Code) field in PageType 'CRM Dropdown Item' +#. Label of the icon (Data) field in PageType 'CRM View Settings' +#: crm/fcrm/pagetype/crm_dropdown_item/crm_dropdown_item.json +#: crm/fcrm/pagetype/crm_view_settings/crm_view_settings.json msgid "Icon" msgstr "" @@ -2942,10 +2942,10 @@ msgstr "" msgid "If enabled, records can be created from the incoming emails on this account." msgstr "" -#. Label of the image (Attach Image) field in DocType 'CRM Lead' -#. Label of the image (Attach Image) field in DocType 'CRM Product' -#: crm/fcrm/doctype/crm_lead/crm_lead.json -#: crm/fcrm/doctype/crm_product/crm_product.json +#. Label of the image (Attach Image) field in PageType 'CRM Lead' +#. Label of the image (Attach Image) field in PageType 'CRM Product' +#: crm/fcrm/pagetype/crm_lead/crm_lead.json +#: crm/fcrm/pagetype/crm_product/crm_product.json msgid "Image" msgstr "" @@ -2957,10 +2957,10 @@ msgstr "" msgid "In" msgstr "" -#. Option for the 'Status' (Select) field in DocType 'CRM Call Log' -#. Option for the 'Status' (Select) field in DocType 'CRM Task' -#: crm/fcrm/doctype/crm_call_log/crm_call_log.json -#: crm/fcrm/doctype/crm_task/crm_task.json +#. Option for the 'Status' (Select) field in PageType 'CRM Call Log' +#. Option for the 'Status' (Select) field in PageType 'CRM Task' +#: crm/fcrm/pagetype/crm_call_log/crm_call_log.json +#: crm/fcrm/pagetype/crm_task/crm_task.json msgid "In Progress" msgstr "" @@ -2976,8 +2976,8 @@ msgstr "" msgid "Inbox" msgstr "" -#. Option for the 'Type' (Select) field in DocType 'CRM Call Log' -#: crm/fcrm/doctype/crm_call_log/crm_call_log.json +#. Option for the 'Type' (Select) field in PageType 'CRM Call Log' +#: crm/fcrm/pagetype/crm_call_log/crm_call_log.json msgid "Incoming" msgstr "" @@ -2985,24 +2985,24 @@ msgstr "" msgid "Incoming call..." msgstr "" -#. Label of a shortcut in the Frappe CRM Workspace -#: crm/fcrm/workspace/frappe_crm/frappe_crm.json +#. Label of a shortcut in the Jingrow CRM Workspace +#: crm/fcrm/workspace/jingrow_crm/jingrow_crm.json msgid "Industries" msgstr "" -#. Label of the industry (Link) field in DocType 'CRM Deal' -#. Label of the industry (Data) field in DocType 'CRM Industry' -#. Label of the industry (Link) field in DocType 'CRM Lead' -#. Label of the industry (Link) field in DocType 'CRM Organization' -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_industry/crm_industry.json -#: crm/fcrm/doctype/crm_lead/crm_lead.json -#: crm/fcrm/doctype/crm_organization/crm_organization.json +#. Label of the industry (Link) field in PageType 'CRM Deal' +#. Label of the industry (Data) field in PageType 'CRM Industry' +#. Label of the industry (Link) field in PageType 'CRM Lead' +#. Label of the industry (Link) field in PageType 'CRM Organization' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_industry/crm_industry.json +#: crm/fcrm/pagetype/crm_lead/crm_lead.json +#: crm/fcrm/pagetype/crm_organization/crm_organization.json msgid "Industry" msgstr "" -#. Option for the 'Status' (Select) field in DocType 'CRM Call Log' -#: crm/fcrm/doctype/crm_call_log/crm_call_log.json +#. Option for the 'Status' (Select) field in PageType 'CRM Call Log' +#: crm/fcrm/pagetype/crm_call_log/crm_call_log.json msgid "Initiated" msgstr "" @@ -3037,7 +3037,7 @@ msgstr "Integrace" msgid "Introduction" msgstr "Úvod" -#: crm/fcrm/doctype/crm_twilio_settings/crm_twilio_settings.py:33 +#: crm/fcrm/pagetype/crm_twilio_settings/crm_twilio_settings.py:33 msgid "Invalid Account SID or Auth Token." msgstr "" @@ -3054,7 +3054,7 @@ msgstr "" msgid "Invalid chart name" msgstr "" -#: crm/fcrm/doctype/crm_exotel_settings/crm_exotel_settings.py:25 +#: crm/fcrm/pagetype/crm_exotel_settings/crm_exotel_settings.py:25 msgid "Invalid credentials" msgstr "" @@ -3103,8 +3103,8 @@ msgstr "" msgid "Invite your team" msgstr "" -#. Label of the invited_by (Link) field in DocType 'CRM Invitation' -#: crm/fcrm/doctype/crm_invitation/crm_invitation.json +#. Label of the invited_by (Link) field in PageType 'CRM Invitation' +#: crm/fcrm/pagetype/crm_invitation/crm_invitation.json msgid "Invited By" msgstr "" @@ -3118,59 +3118,59 @@ msgstr "" msgid "Is" msgstr "" -#. Label of the is_default (Check) field in DocType 'CRM View Settings' -#: crm/fcrm/doctype/crm_view_settings/crm_view_settings.json +#. Label of the is_default (Check) field in PageType 'CRM View Settings' +#: crm/fcrm/pagetype/crm_view_settings/crm_view_settings.json msgid "Is Default" msgstr "" -#. Label of the is_erpnext_in_different_site (Check) field in DocType 'ERPNext +#. Label of the is_erpnext_in_different_site (Check) field in PageType 'ERPNext #. CRM Settings' -#: crm/fcrm/doctype/erpnext_crm_settings/erpnext_crm_settings.json +#: crm/fcrm/pagetype/erpnext_crm_settings/erpnext_crm_settings.json msgid "Is ERPNext installed on a different site?" msgstr "" -#. Label of the is_group (Check) field in DocType 'CRM Territory' -#: crm/fcrm/doctype/crm_territory/crm_territory.json +#. Label of the is_group (Check) field in PageType 'CRM Territory' +#: crm/fcrm/pagetype/crm_territory/crm_territory.json msgid "Is Group" msgstr "" -#. Label of the is_helpdesk_in_different_site (Check) field in DocType +#. Label of the is_helpdesk_in_different_site (Check) field in PageType #. 'Helpdesk CRM Settings' -#: crm/fcrm/doctype/helpdesk_crm_settings/helpdesk_crm_settings.json +#: crm/fcrm/pagetype/helpdesk_crm_settings/helpdesk_crm_settings.json msgid "Is Helpdesk installed on a different site?" msgstr "" -#. Label of the is_primary (Check) field in DocType 'CRM Contacts' -#. Label of the is_primary (Check) field in DocType 'CRM Telephony Phone' -#: crm/fcrm/doctype/crm_contacts/crm_contacts.json -#: crm/fcrm/doctype/crm_telephony_phone/crm_telephony_phone.json +#. Label of the is_primary (Check) field in PageType 'CRM Contacts' +#. Label of the is_primary (Check) field in PageType 'CRM Telephony Phone' +#: crm/fcrm/pagetype/crm_contacts/crm_contacts.json +#: crm/fcrm/pagetype/crm_telephony_phone/crm_telephony_phone.json msgid "Is Primary" msgstr "" -#. Label of the is_standard (Check) field in DocType 'CRM Dropdown Item' -#. Label of the is_standard (Check) field in DocType 'CRM Form Script' -#. Label of the is_standard (Check) field in DocType 'CRM View Settings' -#: crm/fcrm/doctype/crm_dropdown_item/crm_dropdown_item.json -#: crm/fcrm/doctype/crm_form_script/crm_form_script.json -#: crm/fcrm/doctype/crm_view_settings/crm_view_settings.json +#. Label of the is_standard (Check) field in PageType 'CRM Dropdown Item' +#. Label of the is_standard (Check) field in PageType 'CRM Form Script' +#. Label of the is_standard (Check) field in PageType 'CRM View Settings' +#: crm/fcrm/pagetype/crm_dropdown_item/crm_dropdown_item.json +#: crm/fcrm/pagetype/crm_form_script/crm_form_script.json +#: crm/fcrm/pagetype/crm_view_settings/crm_view_settings.json msgid "Is Standard" msgstr "" -#. Description of the 'Enable Forecasting' (Check) field in DocType 'FCRM +#. Description of the 'Enable Forecasting' (Check) field in PageType 'FCRM #. Settings' -#: crm/fcrm/doctype/fcrm_settings/fcrm_settings.json +#: crm/fcrm/pagetype/fcrm_settings/fcrm_settings.json msgid "It will make deal's \"Expected Closure Date\" & \"Expected Deal Value\" mandatory to get accurate forecasting insights" msgstr "" -#. Label of the json (JSON) field in DocType 'CRM Global Settings' -#: crm/fcrm/doctype/crm_global_settings/crm_global_settings.json +#. Label of the json (JSON) field in PageType 'CRM Global Settings' +#: crm/fcrm/pagetype/crm_global_settings/crm_global_settings.json msgid "JSON" msgstr "" -#. Label of the job_title (Data) field in DocType 'CRM Deal' -#. Label of the job_title (Data) field in DocType 'CRM Lead' -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_lead/crm_lead.json +#. Label of the job_title (Data) field in PageType 'CRM Deal' +#. Label of the job_title (Data) field in PageType 'CRM Lead' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_lead/crm_lead.json msgid "Job Title" msgstr "" @@ -3182,20 +3182,20 @@ msgstr "" msgid "John Doe" msgstr "" -#. Label of the kanban_tab (Tab Break) field in DocType 'CRM View Settings' -#: crm/fcrm/doctype/crm_view_settings/crm_view_settings.json +#. Label of the kanban_tab (Tab Break) field in PageType 'CRM View Settings' +#: crm/fcrm/pagetype/crm_view_settings/crm_view_settings.json #: frontend/src/components/ViewControls.vue:384 #: frontend/src/components/ViewControls.vue:600 frontend/src/utils/view.js:20 msgid "Kanban" msgstr "" -#. Label of the kanban_columns (Code) field in DocType 'CRM View Settings' -#: crm/fcrm/doctype/crm_view_settings/crm_view_settings.json +#. Label of the kanban_columns (Code) field in PageType 'CRM View Settings' +#: crm/fcrm/pagetype/crm_view_settings/crm_view_settings.json msgid "Kanban Columns" msgstr "" -#. Label of the kanban_fields (Code) field in DocType 'CRM View Settings' -#: crm/fcrm/doctype/crm_view_settings/crm_view_settings.json +#. Label of the kanban_fields (Code) field in PageType 'CRM View Settings' +#: crm/fcrm/pagetype/crm_view_settings/crm_view_settings.json msgid "Kanban Fields" msgstr "" @@ -3204,15 +3204,15 @@ msgstr "" msgid "Kanban Settings" msgstr "" -#. Label of the key (Data) field in DocType 'CRM Invitation' -#: crm/fcrm/doctype/crm_invitation/crm_invitation.json +#. Label of the key (Data) field in PageType 'CRM Invitation' +#: crm/fcrm/pagetype/crm_invitation/crm_invitation.json msgid "Key" msgstr "" -#. Label of the label (Data) field in DocType 'CRM Dropdown Item' -#. Label of the label (Data) field in DocType 'CRM View Settings' -#: crm/fcrm/doctype/crm_dropdown_item/crm_dropdown_item.json -#: crm/fcrm/doctype/crm_view_settings/crm_view_settings.json +#. Label of the label (Data) field in PageType 'CRM Dropdown Item' +#. Label of the label (Data) field in PageType 'CRM View Settings' +#: crm/fcrm/pagetype/crm_dropdown_item/crm_dropdown_item.json +#: crm/fcrm/pagetype/crm_view_settings/crm_view_settings.json #: frontend/src/components/ColumnSettings.vue:100 msgid "Label" msgstr "" @@ -3229,10 +3229,10 @@ msgstr "" msgid "Last Month" msgstr "" -#. Label of the last_name (Data) field in DocType 'CRM Deal' -#. Label of the last_name (Data) field in DocType 'CRM Lead' -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_lead/crm_lead.json +#. Label of the last_name (Data) field in PageType 'CRM Deal' +#. Label of the last_name (Data) field in PageType 'CRM Lead' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_lead/crm_lead.json msgid "Last Name" msgstr "" @@ -3240,9 +3240,9 @@ msgstr "" msgid "Last Quarter" msgstr "" -#. Label of the last_status_change_log (Link) field in DocType 'CRM Status +#. Label of the last_status_change_log (Link) field in PageType 'CRM Status #. Change Log' -#: crm/fcrm/doctype/crm_status_change_log/crm_status_change_log.json +#: crm/fcrm/pagetype/crm_status_change_log/crm_status_change_log.json msgid "Last Status Change Log" msgstr "" @@ -3270,15 +3270,15 @@ msgstr "" msgid "Last user assigned by this rule" msgstr "" -#. Label of the layout (Code) field in DocType 'CRM Dashboard' -#. Label of the layout (Code) field in DocType 'CRM Fields Layout' -#: crm/fcrm/doctype/crm_dashboard/crm_dashboard.json -#: crm/fcrm/doctype/crm_fields_layout/crm_fields_layout.json +#. Label of the layout (Code) field in PageType 'CRM Dashboard' +#. Label of the layout (Code) field in PageType 'CRM Fields Layout' +#: crm/fcrm/pagetype/crm_dashboard/crm_dashboard.json +#: crm/fcrm/pagetype/crm_fields_layout/crm_fields_layout.json msgid "Layout" msgstr "" -#. Label of the lead (Link) field in DocType 'CRM Deal' -#: crm/fcrm/doctype/crm_deal/crm_deal.json +#. Label of the lead (Link) field in PageType 'CRM Deal' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json #: frontend/src/components/Calendar/CalendarEventPanel.vue:263 #: frontend/src/components/Calendar/CalendarEventPanel.vue:288 #: frontend/src/components/Layouts/AppSidebar.vue:550 @@ -3291,32 +3291,32 @@ msgstr "" msgid "Lead" msgstr "" -#. Label of the lead_details_tab (Tab Break) field in DocType 'CRM Deal' -#: crm/fcrm/doctype/crm_deal/crm_deal.json +#. Label of the lead_details_tab (Tab Break) field in PageType 'CRM Deal' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json msgid "Lead Details" msgstr "" -#. Label of the lead_name (Data) field in DocType 'CRM Deal' -#: crm/fcrm/doctype/crm_deal/crm_deal.json +#. Label of the lead_name (Data) field in PageType 'CRM Deal' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json msgid "Lead Name" msgstr "" -#. Label of the lead_owner (Link) field in DocType 'CRM Lead' -#: crm/fcrm/doctype/crm_lead/crm_lead.json +#. Label of the lead_owner (Link) field in PageType 'CRM Lead' +#: crm/fcrm/pagetype/crm_lead/crm_lead.json msgid "Lead Owner" msgstr "" -#: crm/fcrm/doctype/crm_lead/crm_lead.py:73 +#: crm/fcrm/pagetype/crm_lead/crm_lead.py:73 msgid "Lead Owner cannot be same as the Lead Email Address" msgstr "" -#. Label of a shortcut in the Frappe CRM Workspace -#: crm/fcrm/workspace/frappe_crm/frappe_crm.json +#. Label of a shortcut in the Jingrow CRM Workspace +#: crm/fcrm/workspace/jingrow_crm/jingrow_crm.json msgid "Lead Sources" msgstr "" -#. Label of a shortcut in the Frappe CRM Workspace -#: crm/fcrm/workspace/frappe_crm/frappe_crm.json +#. Label of a shortcut in the Jingrow CRM Workspace +#: crm/fcrm/workspace/jingrow_crm/jingrow_crm.json msgid "Lead Statuses" msgstr "" @@ -3328,8 +3328,8 @@ msgstr "" msgid "Lead to deal conversion pipeline" msgstr "" -#. Label of a shortcut in the Frappe CRM Workspace -#: crm/fcrm/workspace/frappe_crm/frappe_crm.json +#. Label of a shortcut in the Jingrow CRM Workspace +#: crm/fcrm/workspace/jingrow_crm/jingrow_crm.json #: frontend/src/pages/InvalidPage.vue:9 frontend/src/pages/Lead.vue:340 #: frontend/src/pages/MobileLead.vue:291 msgid "Leads" @@ -3345,8 +3345,8 @@ msgstr "" msgid "Learn about conditions" msgstr "" -#. Label of the lft (Int) field in DocType 'CRM Territory' -#: crm/fcrm/doctype/crm_territory/crm_territory.json +#. Label of the lft (Int) field in PageType 'CRM Territory' +#: crm/fcrm/pagetype/crm_territory/crm_territory.json msgid "Left" msgstr "" @@ -3367,15 +3367,15 @@ msgstr "" msgid "Link" msgstr "" -#. Label of the links (Table) field in DocType 'CRM Call Log' -#: crm/fcrm/doctype/crm_call_log/crm_call_log.json +#. Label of the links (Table) field in PageType 'CRM Call Log' +#: crm/fcrm/pagetype/crm_call_log/crm_call_log.json msgid "Links" msgstr "" -#. Option for the 'Apply To' (Select) field in DocType 'CRM Form Script' -#. Label of the list_tab (Tab Break) field in DocType 'CRM View Settings' -#: crm/fcrm/doctype/crm_form_script/crm_form_script.json -#: crm/fcrm/doctype/crm_view_settings/crm_view_settings.json +#. Option for the 'Apply To' (Select) field in PageType 'CRM Form Script' +#. Label of the list_tab (Tab Break) field in PageType 'CRM View Settings' +#: crm/fcrm/pagetype/crm_form_script/crm_form_script.json +#: crm/fcrm/pagetype/crm_view_settings/crm_view_settings.json #: frontend/src/components/ViewControls.vue:374 #: frontend/src/components/ViewControls.vue:589 frontend/src/utils/view.js:12 msgid "List" @@ -3385,9 +3385,9 @@ msgstr "" msgid "Listen" msgstr "" -#. Label of the load_default_columns (Check) field in DocType 'CRM View +#. Label of the load_default_columns (Check) field in PageType 'CRM View #. Settings' -#: crm/fcrm/doctype/crm_view_settings/crm_view_settings.json +#: crm/fcrm/pagetype/crm_view_settings/crm_view_settings.json msgid "Load Default Columns" msgstr "" @@ -3403,10 +3403,10 @@ msgstr "" msgid "Loading..." msgstr "" -#. Label of the log_tab (Tab Break) field in DocType 'CRM Deal' -#. Label of the log_tab (Tab Break) field in DocType 'CRM Lead' -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_lead/crm_lead.json +#. Label of the log_tab (Tab Break) field in PageType 'CRM Deal' +#. Label of the log_tab (Tab Break) field in PageType 'CRM Lead' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_lead/crm_lead.json msgid "Log" msgstr "" @@ -3417,28 +3417,28 @@ msgid "Log a Call" msgstr "" #: frontend/src/composables/frappecloud.js:23 -msgid "Login to Frappe Cloud?" +msgid "Login to Jingrow Cloud?" msgstr "" -#. Label of the brand_logo (Attach) field in DocType 'FCRM Settings' -#: crm/fcrm/doctype/fcrm_settings/fcrm_settings.json +#. Label of the brand_logo (Attach) field in PageType 'FCRM Settings' +#: crm/fcrm/pagetype/fcrm_settings/fcrm_settings.json msgid "Logo" msgstr "" -#. Option for the 'Type' (Select) field in DocType 'CRM Deal Status' -#: crm/fcrm/doctype/crm_deal_status/crm_deal_status.json +#. Option for the 'Type' (Select) field in PageType 'CRM Deal Status' +#: crm/fcrm/pagetype/crm_deal_status/crm_deal_status.json msgid "Lost" msgstr "" -#. Label of the lost_notes (Text) field in DocType 'CRM Deal' -#: crm/fcrm/doctype/crm_deal/crm_deal.json +#. Label of the lost_notes (Text) field in PageType 'CRM Deal' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json msgid "Lost Notes" msgstr "" -#. Label of the lost_reason (Link) field in DocType 'CRM Deal' -#. Label of the lost_reason (Data) field in DocType 'CRM Lost Reason' -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_lost_reason/crm_lost_reason.json +#. Label of the lost_reason (Link) field in PageType 'CRM Deal' +#. Label of the lost_reason (Data) field in PageType 'CRM Lost Reason' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_lost_reason/crm_lost_reason.json msgid "Lost Reason" msgstr "" @@ -3464,8 +3464,8 @@ msgstr "" msgid "Lost reason is required" msgstr "" -#. Option for the 'Priority' (Select) field in DocType 'CRM Task' -#: crm/fcrm/doctype/crm_task/crm_task.json +#. Option for the 'Priority' (Select) field in PageType 'CRM Task' +#: crm/fcrm/pagetype/crm_task/crm_task.json msgid "Low" msgstr "" @@ -3542,8 +3542,8 @@ msgstr "Manažer" msgid "Mandatory field error: {0}" msgstr "" -#. Option for the 'Telephony Medium' (Select) field in DocType 'CRM Call Log' -#: crm/fcrm/doctype/crm_call_log/crm_call_log.json +#. Option for the 'Telephony Medium' (Select) field in PageType 'CRM Call Log' +#: crm/fcrm/pagetype/crm_call_log/crm_call_log.json msgid "Manual" msgstr "" @@ -3562,25 +3562,25 @@ msgstr "" msgid "May 1, 2025" msgstr "" -#. Label of the medium (Data) field in DocType 'CRM Call Log' -#. Option for the 'Priority' (Select) field in DocType 'CRM Task' -#: crm/fcrm/doctype/crm_call_log/crm_call_log.json -#: crm/fcrm/doctype/crm_task/crm_task.json +#. Label of the medium (Data) field in PageType 'CRM Call Log' +#. Option for the 'Priority' (Select) field in PageType 'CRM Task' +#: crm/fcrm/pagetype/crm_call_log/crm_call_log.json +#: crm/fcrm/pagetype/crm_task/crm_task.json msgid "Medium" msgstr "" -#. Option for the 'Type' (Select) field in DocType 'CRM Notification' -#: crm/fcrm/doctype/crm_notification/crm_notification.json +#. Option for the 'Type' (Select) field in PageType 'CRM Notification' +#: crm/fcrm/pagetype/crm_notification/crm_notification.json msgid "Mention" msgstr "" -#. Label of the message (HTML Editor) field in DocType 'CRM Notification' -#: crm/fcrm/doctype/crm_notification/crm_notification.json +#. Label of the message (HTML Editor) field in PageType 'CRM Notification' +#: crm/fcrm/pagetype/crm_notification/crm_notification.json msgid "Message" msgstr "" -#. Label of the middle_name (Data) field in DocType 'CRM Lead' -#: crm/fcrm/doctype/crm_lead/crm_lead.json +#. Label of the middle_name (Data) field in PageType 'CRM Lead' +#: crm/fcrm/pagetype/crm_lead/crm_lead.json msgid "Middle Name" msgstr "" @@ -3588,10 +3588,10 @@ msgstr "" msgid "Minimize" msgstr "" -#. Label of the mobile_no (Data) field in DocType 'CRM Contacts' -#. Label of the mobile_no (Data) field in DocType 'CRM Lead' -#: crm/fcrm/doctype/crm_contacts/crm_contacts.json -#: crm/fcrm/doctype/crm_lead/crm_lead.json +#. Label of the mobile_no (Data) field in PageType 'CRM Contacts' +#. Label of the mobile_no (Data) field in PageType 'CRM Lead' +#: crm/fcrm/pagetype/crm_contacts/crm_contacts.json +#: crm/fcrm/pagetype/crm_lead/crm_lead.json msgid "Mobile No" msgstr "" @@ -3600,8 +3600,8 @@ msgstr "" msgid "Mobile No should be a number" msgstr "" -#. Label of the mobile_no (Data) field in DocType 'CRM Telephony Agent' -#: crm/fcrm/doctype/crm_telephony_agent/crm_telephony_agent.json +#. Label of the mobile_no (Data) field in PageType 'CRM Telephony Agent' +#: crm/fcrm/pagetype/crm_telephony_agent/crm_telephony_agent.json msgid "Mobile No." msgstr "" @@ -3623,10 +3623,10 @@ msgstr "" msgid "Mobile no" msgstr "" -#. Option for the 'Weekly Off' (Select) field in DocType 'CRM Holiday List' -#. Option for the 'Workday' (Select) field in DocType 'CRM Service Day' -#: crm/fcrm/doctype/crm_holiday_list/crm_holiday_list.json -#: crm/fcrm/doctype/crm_service_day/crm_service_day.json +#. Option for the 'Weekly Off' (Select) field in PageType 'CRM Holiday List' +#. Option for the 'Workday' (Select) field in PageType 'CRM Service Day' +#: crm/fcrm/pagetype/crm_holiday_list/crm_holiday_list.json +#: crm/fcrm/pagetype/crm_service_day/crm_service_day.json msgid "Monday" msgstr "" @@ -3658,12 +3658,12 @@ msgstr "" msgid "My Open Deals" msgstr "" -#. Label of the title (Data) field in DocType 'CRM Dashboard' -#. Label of the name1 (Data) field in DocType 'CRM Dropdown Item' -#. Label of the brand_name (Data) field in DocType 'FCRM Settings' -#: crm/fcrm/doctype/crm_dashboard/crm_dashboard.json -#: crm/fcrm/doctype/crm_dropdown_item/crm_dropdown_item.json -#: crm/fcrm/doctype/fcrm_settings/fcrm_settings.json +#. Label of the title (Data) field in PageType 'CRM Dashboard' +#. Label of the name1 (Data) field in PageType 'CRM Dropdown Item' +#. Label of the brand_name (Data) field in PageType 'FCRM Settings' +#: crm/fcrm/pagetype/crm_dashboard/crm_dashboard.json +#: crm/fcrm/pagetype/crm_dropdown_item/crm_dropdown_item.json +#: crm/fcrm/pagetype/fcrm_settings/fcrm_settings.json #: frontend/src/components/Settings/AssignmentRules/AssignmentRuleView.vue:51 #: frontend/src/components/Settings/AssignmentRules/AssignmentRuleView.vue:52 #: frontend/src/components/Settings/EmailTemplate/EditEmailTemplate.vue:39 @@ -3680,10 +3680,10 @@ msgstr "" msgid "Name is required" msgstr "" -#. Label of the naming_series (Select) field in DocType 'CRM Deal' -#. Label of the naming_series (Select) field in DocType 'CRM Product' -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_product/crm_product.json +#. Label of the naming_series (Select) field in PageType 'CRM Deal' +#. Label of the naming_series (Select) field in PageType 'CRM Product' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_product/crm_product.json msgid "Naming Series" msgstr "" @@ -3691,15 +3691,15 @@ msgstr "" msgid "Nested conditions" msgstr "" -#. Label of the net_amount (Currency) field in DocType 'CRM Products' -#: crm/fcrm/doctype/crm_products/crm_products.json +#. Label of the net_amount (Currency) field in PageType 'CRM Products' +#: crm/fcrm/pagetype/crm_products/crm_products.json msgid "Net Amount" msgstr "" -#. Label of the net_total (Currency) field in DocType 'CRM Deal' -#. Label of the net_total (Currency) field in DocType 'CRM Lead' -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_lead/crm_lead.json +#. Label of the net_total (Currency) field in PageType 'CRM Deal' +#. Label of the net_total (Currency) field in PageType 'CRM Lead' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_lead/crm_lead.json msgid "Net Total" msgstr "" @@ -3814,8 +3814,8 @@ msgstr "" msgid "Next Quarter" msgstr "" -#. Label of the next_step (Data) field in DocType 'CRM Deal' -#: crm/fcrm/doctype/crm_deal/crm_deal.json +#. Label of the next_step (Data) field in PageType 'CRM Deal' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json msgid "Next Step" msgstr "" @@ -3831,8 +3831,8 @@ msgstr "" msgid "No" msgstr "" -#. Option for the 'Status' (Select) field in DocType 'CRM Call Log' -#: crm/fcrm/doctype/crm_call_log/crm_call_log.json +#. Option for the 'Status' (Select) field in PageType 'CRM Call Log' +#: crm/fcrm/pagetype/crm_call_log/crm_call_log.json msgid "No Answer" msgstr "" @@ -3930,12 +3930,12 @@ msgstr "" msgid "No {0} Found" msgstr "" -#. Label of the no_of_employees (Select) field in DocType 'CRM Deal' -#. Label of the no_of_employees (Select) field in DocType 'CRM Lead' -#. Label of the no_of_employees (Select) field in DocType 'CRM Organization' -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_lead/crm_lead.json -#: crm/fcrm/doctype/crm_organization/crm_organization.json +#. Label of the no_of_employees (Select) field in PageType 'CRM Deal' +#. Label of the no_of_employees (Select) field in PageType 'CRM Lead' +#. Label of the no_of_employees (Select) field in PageType 'CRM Organization' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_lead/crm_lead.json +#: crm/fcrm/pagetype/crm_organization/crm_organization.json msgid "No. of Employees" msgstr "" @@ -3981,24 +3981,24 @@ msgstr "" msgid "Not Saved" msgstr "" -#: crm/fcrm/doctype/crm_deal/crm_deal.py:272 +#: crm/fcrm/pagetype/crm_deal/crm_deal.py:272 msgid "Not allowed to add contact to Deal" msgstr "" -#: crm/fcrm/doctype/crm_lead/crm_lead.py:408 +#: crm/fcrm/pagetype/crm_lead/crm_lead.py:408 msgid "Not allowed to convert Lead to Deal" msgstr "" -#: crm/fcrm/doctype/crm_deal/crm_deal.py:283 +#: crm/fcrm/pagetype/crm_deal/crm_deal.py:283 msgid "Not allowed to remove contact from Deal" msgstr "" -#: crm/fcrm/doctype/crm_deal/crm_deal.py:294 +#: crm/fcrm/pagetype/crm_deal/crm_deal.py:294 msgid "Not allowed to set primary contact for Deal" msgstr "" -#. Label of the note (Link) field in DocType 'CRM Call Log' -#: crm/fcrm/doctype/crm_call_log/crm_call_log.json +#. Label of the note (Link) field in PageType 'CRM Call Log' +#: crm/fcrm/pagetype/crm_call_log/crm_call_log.json #: frontend/src/components/Layouts/AppSidebar.vue:554 msgid "Note" msgstr "" @@ -4017,21 +4017,21 @@ msgstr "" msgid "Notification" msgstr "" -#. Label of the notification_text (Text) field in DocType 'CRM Notification' -#: crm/fcrm/doctype/crm_notification/crm_notification.json +#. Label of the notification_text (Text) field in PageType 'CRM Notification' +#: crm/fcrm/pagetype/crm_notification/crm_notification.json msgid "Notification Text" msgstr "" -#. Label of the notification_type_doc (Dynamic Link) field in DocType 'CRM +#. Label of the notification_type_pg (Dynamic Link) field in PageType 'CRM #. Notification' -#: crm/fcrm/doctype/crm_notification/crm_notification.json -msgid "Notification Type Doc" +#: crm/fcrm/pagetype/crm_notification/crm_notification.json +msgid "Notification Type Pg" msgstr "" -#. Label of the notification_type_doctype (Link) field in DocType 'CRM +#. Label of the notification_type_pagetype (Link) field in PageType 'CRM #. Notification' -#: crm/fcrm/doctype/crm_notification/crm_notification.json -msgid "Notification Type Doctype" +#: crm/fcrm/pagetype/crm_notification/crm_notification.json +msgid "Notification Type Pagetype" msgstr "" #: frontend/src/components/Layouts/AppSidebar.vue:13 @@ -4041,8 +4041,8 @@ msgstr "" msgid "Notifications" msgstr "" -#. Label of the number (Data) field in DocType 'CRM Telephony Phone' -#: crm/fcrm/doctype/crm_telephony_phone/crm_telephony_phone.json +#. Label of the number (Data) field in PageType 'CRM Telephony Phone' +#: crm/fcrm/pagetype/crm_telephony_phone/crm_telephony_phone.json msgid "Number" msgstr "" @@ -4064,18 +4064,18 @@ msgstr "" msgid "Old Condition" msgstr "" -#. Label of the old_parent (Link) field in DocType 'CRM Territory' -#: crm/fcrm/doctype/crm_territory/crm_territory.json +#. Label of the old_parent (Link) field in PageType 'CRM Territory' +#: crm/fcrm/pagetype/crm_territory/crm_territory.json msgid "Old Parent" msgstr "" -#. Option for the 'Type' (Select) field in DocType 'CRM Deal Status' -#: crm/fcrm/doctype/crm_deal_status/crm_deal_status.json +#. Option for the 'Type' (Select) field in PageType 'CRM Deal Status' +#: crm/fcrm/pagetype/crm_deal_status/crm_deal_status.json msgid "On Hold" msgstr "" -#. Option for the 'Type' (Select) field in DocType 'CRM Deal Status' -#: crm/fcrm/doctype/crm_deal_status/crm_deal_status.json +#. Option for the 'Type' (Select) field in PageType 'CRM Deal Status' +#: crm/fcrm/pagetype/crm_deal_status/crm_deal_status.json msgid "Ongoing" msgstr "" @@ -4088,13 +4088,13 @@ msgstr "" msgid "Only image files are allowed" msgstr "" -#: crm/fcrm/doctype/crm_deal/crm_deal.py:60 -#: crm/fcrm/doctype/crm_telephony_agent/crm_telephony_agent.py:23 +#: crm/fcrm/pagetype/crm_deal/crm_deal.py:60 +#: crm/fcrm/pagetype/crm_telephony_agent/crm_telephony_agent.py:23 msgid "Only one {0} can be set as primary." msgstr "" -#. Option for the 'Type' (Select) field in DocType 'CRM Deal Status' -#: crm/fcrm/doctype/crm_deal_status/crm_deal_status.json +#. Option for the 'Type' (Select) field in PageType 'CRM Deal Status' +#: crm/fcrm/pagetype/crm_deal_status/crm_deal_status.json msgid "Open" msgstr "Otevřít" @@ -4108,13 +4108,13 @@ msgstr "" msgid "Open Lead" msgstr "" -#: crm/fcrm/doctype/crm_deal/crm_deal.js:6 -#: crm/fcrm/doctype/crm_lead/crm_lead.js:6 +#: crm/fcrm/pagetype/crm_deal/crm_deal.js:6 +#: crm/fcrm/pagetype/crm_lead/crm_lead.js:6 msgid "Open in Portal" msgstr "" -#. Label of the open_in_new_window (Check) field in DocType 'CRM Dropdown Item' -#: crm/fcrm/doctype/crm_dropdown_item/crm_dropdown_item.json +#. Label of the open_in_new_window (Check) field in PageType 'CRM Dropdown Item' +#: crm/fcrm/pagetype/crm_dropdown_item/crm_dropdown_item.json msgid "Open in new window" msgstr "" @@ -4136,17 +4136,17 @@ msgstr "" msgid "Or create leads manually" msgstr "" -#. Label of the order_by_tab (Tab Break) field in DocType 'CRM View Settings' -#. Label of the order_by (Code) field in DocType 'CRM View Settings' -#: crm/fcrm/doctype/crm_view_settings/crm_view_settings.json +#. Label of the order_by_tab (Tab Break) field in PageType 'CRM View Settings' +#. Label of the order_by (Code) field in PageType 'CRM View Settings' +#: crm/fcrm/pagetype/crm_view_settings/crm_view_settings.json msgid "Order By" msgstr "" -#. Label of the organization (Link) field in DocType 'CRM Deal' -#. Label of the organization_tab (Tab Break) field in DocType 'CRM Deal' -#. Label of the organization (Data) field in DocType 'CRM Lead' -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_lead/crm_lead.json +#. Label of the organization (Link) field in PageType 'CRM Deal' +#. Label of the organization_tab (Tab Break) field in PageType 'CRM Deal' +#. Label of the organization (Data) field in PageType 'CRM Lead' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_lead/crm_lead.json #: frontend/src/components/Layouts/AppSidebar.vue:553 #: frontend/src/components/Modals/ConvertToDealModal.vue:25 #: frontend/src/pages/Contact.vue:494 frontend/src/pages/MobileContact.vue:502 @@ -4158,22 +4158,22 @@ msgstr "" msgid "Organization" msgstr "" -#. Label of the organization_details_section (Section Break) field in DocType +#. Label of the organization_details_section (Section Break) field in PageType #. 'CRM Deal' -#: crm/fcrm/doctype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_deal/crm_deal.json msgid "Organization Details" msgstr "" -#. Label of the organization_logo (Attach Image) field in DocType 'CRM +#. Label of the organization_logo (Attach Image) field in PageType 'CRM #. Organization' -#: crm/fcrm/doctype/crm_organization/crm_organization.json +#: crm/fcrm/pagetype/crm_organization/crm_organization.json msgid "Organization Logo" msgstr "" -#. Label of the organization_name (Data) field in DocType 'CRM Deal' -#. Label of the organization_name (Data) field in DocType 'CRM Organization' -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_organization/crm_organization.json +#. Label of the organization_name (Data) field in PageType 'CRM Deal' +#. Label of the organization_name (Data) field in PageType 'CRM Organization' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_organization/crm_organization.json msgid "Organization Name" msgstr "" @@ -4181,8 +4181,8 @@ msgstr "" msgid "Organization logo" msgstr "" -#. Label of a shortcut in the Frappe CRM Workspace -#: crm/fcrm/workspace/frappe_crm/frappe_crm.json +#. Label of a shortcut in the Jingrow CRM Workspace +#: crm/fcrm/workspace/jingrow_crm/jingrow_crm.json #: frontend/src/pages/MobileOrganization.vue:205 #: frontend/src/pages/Organization.vue:234 msgid "Organizations" @@ -4196,8 +4196,8 @@ msgstr "" msgid "Other features" msgstr "" -#. Label of the organization_tab (Tab Break) field in DocType 'CRM Lead' -#: crm/fcrm/doctype/crm_lead/crm_lead.json +#. Label of the organization_tab (Tab Break) field in PageType 'CRM Lead' +#: crm/fcrm/pagetype/crm_lead/crm_lead.json msgid "Others" msgstr "" @@ -4205,13 +4205,13 @@ msgstr "" msgid "Outbound Call" msgstr "" -#. Option for the 'Type' (Select) field in DocType 'CRM Call Log' -#: crm/fcrm/doctype/crm_call_log/crm_call_log.json +#. Option for the 'Type' (Select) field in PageType 'CRM Call Log' +#: crm/fcrm/pagetype/crm_call_log/crm_call_log.json msgid "Outgoing" msgstr "" -#. Label of the log_owner (Link) field in DocType 'CRM Status Change Log' -#: crm/fcrm/doctype/crm_status_change_log/crm_status_change_log.json +#. Label of the log_owner (Link) field in PageType 'CRM Status Change Log' +#: crm/fcrm/pagetype/crm_status_change_log/crm_status_change_log.json msgid "Owner" msgstr "" @@ -4219,8 +4219,8 @@ msgstr "" msgid "Owner: {0}" msgstr "" -#. Label of the parent_crm_territory (Link) field in DocType 'CRM Territory' -#: crm/fcrm/doctype/crm_territory/crm_territory.json +#. Label of the parent_crm_territory (Link) field in PageType 'CRM Territory' +#: crm/fcrm/pagetype/crm_territory/crm_territory.json msgid "Parent CRM Territory" msgstr "" @@ -4251,8 +4251,8 @@ msgstr "" msgid "Payment Reminder from Frappé - (#{{ name }})" msgstr "" -#. Option for the 'Status' (Select) field in DocType 'CRM Invitation' -#: crm/fcrm/doctype/crm_invitation/crm_invitation.json +#. Option for the 'Status' (Select) field in PageType 'CRM Invitation' +#: crm/fcrm/pagetype/crm_invitation/crm_invitation.json msgid "Pending" msgstr "" @@ -4264,10 +4264,10 @@ msgstr "" msgid "Period" msgstr "" -#. Label of the person_section (Section Break) field in DocType 'CRM Deal' -#. Label of the person_tab (Tab Break) field in DocType 'CRM Lead' -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_lead/crm_lead.json +#. Label of the person_section (Section Break) field in PageType 'CRM Deal' +#. Label of the person_tab (Tab Break) field in PageType 'CRM Lead' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_lead/crm_lead.json msgid "Person" msgstr "" @@ -4275,19 +4275,19 @@ msgstr "" msgid "Personal Settings" msgstr "" -#. Label of the phone (Data) field in DocType 'CRM Contacts' -#. Label of the phone (Data) field in DocType 'CRM Lead' -#. Option for the 'Device' (Select) field in DocType 'CRM Telephony Agent' -#: crm/fcrm/doctype/crm_contacts/crm_contacts.json -#: crm/fcrm/doctype/crm_lead/crm_lead.json -#: crm/fcrm/doctype/crm_telephony_agent/crm_telephony_agent.json +#. Label of the phone (Data) field in PageType 'CRM Contacts' +#. Label of the phone (Data) field in PageType 'CRM Lead' +#. Option for the 'Device' (Select) field in PageType 'CRM Telephony Agent' +#: crm/fcrm/pagetype/crm_contacts/crm_contacts.json +#: crm/fcrm/pagetype/crm_lead/crm_lead.json +#: crm/fcrm/pagetype/crm_telephony_agent/crm_telephony_agent.json #: frontend/src/pages/MobileOrganization.vue:495 #: frontend/src/pages/Organization.vue:516 msgid "Phone" msgstr "" -#. Label of the phone_nos (Table) field in DocType 'CRM Telephony Agent' -#: crm/fcrm/doctype/crm_telephony_agent/crm_telephony_agent.json +#. Label of the phone_nos (Table) field in PageType 'CRM Telephony Agent' +#: crm/fcrm/pagetype/crm_telephony_agent/crm_telephony_agent.json msgid "Phone Numbers" msgstr "" @@ -4295,8 +4295,8 @@ msgstr "" msgid "Pin View" msgstr "" -#. Label of the pinned (Check) field in DocType 'CRM View Settings' -#: crm/fcrm/doctype/crm_view_settings/crm_view_settings.json +#. Label of the pinned (Check) field in PageType 'CRM View Settings' +#: crm/fcrm/pagetype/crm_view_settings/crm_view_settings.json msgid "Pinned" msgstr "" @@ -4346,7 +4346,7 @@ msgstr "" msgid "Please select an existing organization" msgstr "" -#: crm/fcrm/doctype/helpdesk_crm_settings/helpdesk_crm_settings.py:126 +#: crm/fcrm/pagetype/helpdesk_crm_settings/helpdesk_crm_settings.py:126 msgid "Please set Email Address" msgstr "" @@ -4354,18 +4354,18 @@ msgstr "" msgid "Please setup Exotel intergration" msgstr "" -#: crm/fcrm/doctype/crm_deal/crm_deal.py:181 +#: crm/fcrm/pagetype/crm_deal/crm_deal.py:181 msgid "Please specify a reason for losing the deal." msgstr "" -#: crm/fcrm/doctype/crm_deal/crm_deal.py:183 +#: crm/fcrm/pagetype/crm_deal/crm_deal.py:183 msgid "Please specify the reason for losing the deal." msgstr "" -#. Label of the position (Int) field in DocType 'CRM Deal Status' -#. Label of the position (Int) field in DocType 'CRM Lead Status' -#: crm/fcrm/doctype/crm_deal_status/crm_deal_status.json -#: crm/fcrm/doctype/crm_lead_status/crm_lead_status.json +#. Label of the position (Int) field in PageType 'CRM Deal Status' +#. Label of the position (Int) field in PageType 'CRM Lead Status' +#: crm/fcrm/pagetype/crm_deal_status/crm_deal_status.json +#: crm/fcrm/pagetype/crm_lead_status/crm_lead_status.json msgid "Position" msgstr "" @@ -4373,18 +4373,18 @@ msgstr "" msgid "Primary" msgstr "" -#. Label of the email (Data) field in DocType 'CRM Deal' -#: crm/fcrm/doctype/crm_deal/crm_deal.json +#. Label of the email (Data) field in PageType 'CRM Deal' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json msgid "Primary Email" msgstr "" -#. Label of the mobile_no (Data) field in DocType 'CRM Deal' -#: crm/fcrm/doctype/crm_deal/crm_deal.json +#. Label of the mobile_no (Data) field in PageType 'CRM Deal' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json msgid "Primary Mobile No" msgstr "" -#. Label of the phone (Data) field in DocType 'CRM Deal' -#: crm/fcrm/doctype/crm_deal/crm_deal.json +#. Label of the phone (Data) field in PageType 'CRM Deal' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json msgid "Primary Phone" msgstr "" @@ -4392,57 +4392,57 @@ msgstr "" msgid "Primary contact set" msgstr "" -#. Label of the priorities (Table) field in DocType 'CRM Service Level +#. Label of the priorities (Table) field in PageType 'CRM Service Level #. Agreement' -#: crm/fcrm/doctype/crm_service_level_agreement/crm_service_level_agreement.json +#: crm/fcrm/pagetype/crm_service_level_agreement/crm_service_level_agreement.json msgid "Priorities" msgstr "" -#. Label of the priority (Link) field in DocType 'CRM Service Level Priority' -#. Label of the priority (Select) field in DocType 'CRM Task' -#: crm/fcrm/doctype/crm_service_level_priority/crm_service_level_priority.json -#: crm/fcrm/doctype/crm_task/crm_task.json +#. Label of the priority (Link) field in PageType 'CRM Service Level Priority' +#. Label of the priority (Select) field in PageType 'CRM Task' +#: crm/fcrm/pagetype/crm_service_level_priority/crm_service_level_priority.json +#: crm/fcrm/pagetype/crm_task/crm_task.json #: frontend/src/components/Settings/AssignmentRules/AssignmentRuleView.vue:64 #: frontend/src/components/Settings/AssignmentRules/AssignmentRulesList.vue:20 msgid "Priority" msgstr "" -#. Label of the private (Check) field in DocType 'CRM Dashboard' -#: crm/fcrm/doctype/crm_dashboard/crm_dashboard.json +#. Label of the private (Check) field in PageType 'CRM Dashboard' +#: crm/fcrm/pagetype/crm_dashboard/crm_dashboard.json #: frontend/src/components/FilesUploader/FilesUploaderArea.vue:89 msgid "Private" msgstr "" -#. Label of the probability (Percent) field in DocType 'CRM Deal' -#. Label of the probability (Percent) field in DocType 'CRM Deal Status' -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_deal_status/crm_deal_status.json +#. Label of the probability (Percent) field in PageType 'CRM Deal' +#. Label of the probability (Percent) field in PageType 'CRM Deal Status' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_deal_status/crm_deal_status.json msgid "Probability" msgstr "" -#. Label of the product_code (Link) field in DocType 'CRM Products' -#: crm/fcrm/doctype/crm_products/crm_products.json +#. Label of the product_code (Link) field in PageType 'CRM Products' +#: crm/fcrm/pagetype/crm_products/crm_products.json msgid "Product" msgstr "" -#. Label of the product_code (Data) field in DocType 'CRM Product' -#: crm/fcrm/doctype/crm_product/crm_product.json +#. Label of the product_code (Data) field in PageType 'CRM Product' +#: crm/fcrm/pagetype/crm_product/crm_product.json msgid "Product Code" msgstr "" -#. Label of the product_name (Data) field in DocType 'CRM Product' -#. Label of the product_name (Data) field in DocType 'CRM Products' -#: crm/fcrm/doctype/crm_product/crm_product.json -#: crm/fcrm/doctype/crm_products/crm_products.json +#. Label of the product_name (Data) field in PageType 'CRM Product' +#. Label of the product_name (Data) field in PageType 'CRM Products' +#: crm/fcrm/pagetype/crm_product/crm_product.json +#: crm/fcrm/pagetype/crm_products/crm_products.json msgid "Product Name" msgstr "" -#. Label of the products_tab (Tab Break) field in DocType 'CRM Deal' -#. Label of the products (Table) field in DocType 'CRM Deal' -#. Label of the products_tab (Tab Break) field in DocType 'CRM Lead' -#. Label of the products (Table) field in DocType 'CRM Lead' -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_lead/crm_lead.json +#. Label of the products_tab (Tab Break) field in PageType 'CRM Deal' +#. Label of the products (Table) field in PageType 'CRM Deal' +#. Label of the products_tab (Tab Break) field in PageType 'CRM Lead' +#. Label of the products (Table) field in PageType 'CRM Lead' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_lead/crm_lead.json msgid "Products" msgstr "" @@ -4459,8 +4459,8 @@ msgstr "" msgid "Projected vs actual revenue based on deal probability" msgstr "" -#. Label of the public (Check) field in DocType 'CRM View Settings' -#: crm/fcrm/doctype/crm_view_settings/crm_view_settings.json +#. Label of the public (Check) field in PageType 'CRM View Settings' +#: crm/fcrm/pagetype/crm_view_settings/crm_view_settings.json msgid "Public" msgstr "" @@ -4472,23 +4472,23 @@ msgstr "" msgid "Public view" msgstr "" -#. Label of the qty (Float) field in DocType 'CRM Products' -#: crm/fcrm/doctype/crm_products/crm_products.json +#. Label of the qty (Float) field in PageType 'CRM Products' +#: crm/fcrm/pagetype/crm_products/crm_products.json msgid "Quantity" msgstr "" -#. Option for the 'Status' (Select) field in DocType 'CRM Call Log' -#: crm/fcrm/doctype/crm_call_log/crm_call_log.json +#. Option for the 'Status' (Select) field in PageType 'CRM Call Log' +#: crm/fcrm/pagetype/crm_call_log/crm_call_log.json msgid "Queued" msgstr "" -#. Option for the 'Type' (Select) field in DocType 'CRM Fields Layout' -#: crm/fcrm/doctype/crm_fields_layout/crm_fields_layout.json +#. Option for the 'Type' (Select) field in PageType 'CRM Fields Layout' +#: crm/fcrm/pagetype/crm_fields_layout/crm_fields_layout.json msgid "Quick Entry" msgstr "" -#. Option for the 'Type' (Select) field in DocType 'CRM Global Settings' -#: crm/fcrm/doctype/crm_global_settings/crm_global_settings.json +#. Option for the 'Type' (Select) field in PageType 'CRM Global Settings' +#: crm/fcrm/pagetype/crm_global_settings/crm_global_settings.json msgid "Quick Filters" msgstr "" @@ -4500,13 +4500,13 @@ msgstr "" msgid "Quick entry layout" msgstr "" -#. Label of the rate (Currency) field in DocType 'CRM Products' -#: crm/fcrm/doctype/crm_products/crm_products.json +#. Label of the rate (Currency) field in PageType 'CRM Products' +#: crm/fcrm/pagetype/crm_products/crm_products.json msgid "Rate" msgstr "" -#. Label of the read (Check) field in DocType 'CRM Notification' -#: crm/fcrm/doctype/crm_notification/crm_notification.json +#. Label of the read (Check) field in PageType 'CRM Notification' +#: crm/fcrm/pagetype/crm_notification/crm_notification.json msgid "Read" msgstr "" @@ -4514,48 +4514,48 @@ msgstr "" msgid "Reason" msgstr "" -#. Label of the record_calls (Check) field in DocType 'CRM Twilio Settings' -#: crm/fcrm/doctype/crm_twilio_settings/crm_twilio_settings.json +#. Label of the record_calls (Check) field in PageType 'CRM Twilio Settings' +#: crm/fcrm/pagetype/crm_twilio_settings/crm_twilio_settings.json msgid "Record Calls" msgstr "" -#. Label of the record_call (Check) field in DocType 'CRM Exotel Settings' -#: crm/fcrm/doctype/crm_exotel_settings/crm_exotel_settings.json +#. Label of the record_call (Check) field in PageType 'CRM Exotel Settings' +#: crm/fcrm/pagetype/crm_exotel_settings/crm_exotel_settings.json msgid "Record Outgoing Calls" msgstr "" -#. Label of the recording_url (Data) field in DocType 'CRM Call Log' -#: crm/fcrm/doctype/crm_call_log/crm_call_log.json +#. Label of the recording_url (Data) field in PageType 'CRM Call Log' +#: crm/fcrm/pagetype/crm_call_log/crm_call_log.json msgid "Recording URL" msgstr "" -#. Label of the reference_name (Dynamic Link) field in DocType 'CRM +#. Label of the reference_name (Dynamic Link) field in PageType 'CRM #. Notification' -#. Label of the reference_docname (Dynamic Link) field in DocType 'CRM Task' -#. Label of the reference_docname (Dynamic Link) field in DocType 'FCRM Note' -#: crm/fcrm/doctype/crm_notification/crm_notification.json -#: crm/fcrm/doctype/crm_task/crm_task.json -#: crm/fcrm/doctype/fcrm_note/fcrm_note.json -msgid "Reference Doc" +#. Label of the reference_docname (Dynamic Link) field in PageType 'CRM Task' +#. Label of the reference_docname (Dynamic Link) field in PageType 'FCRM Note' +#: crm/fcrm/pagetype/crm_notification/crm_notification.json +#: crm/fcrm/pagetype/crm_task/crm_task.json +#: crm/fcrm/pagetype/fcrm_note/fcrm_note.json +msgid "Reference Pg" msgstr "" -#. Label of the reference_doctype (Link) field in DocType 'CRM Notification' -#: crm/fcrm/doctype/crm_notification/crm_notification.json -msgid "Reference Doctype" +#. Label of the reference_pagetype (Link) field in PageType 'CRM Notification' +#: crm/fcrm/pagetype/crm_notification/crm_notification.json +msgid "Reference Pagetype" msgstr "" -#. Label of the reference_doctype (Link) field in DocType 'CRM Call Log' -#. Label of the reference_doctype (Link) field in DocType 'CRM Task' -#. Label of the reference_doctype (Link) field in DocType 'FCRM Note' -#: crm/fcrm/doctype/crm_call_log/crm_call_log.json -#: crm/fcrm/doctype/crm_task/crm_task.json -#: crm/fcrm/doctype/fcrm_note/fcrm_note.json +#. Label of the reference_pagetype (Link) field in PageType 'CRM Call Log' +#. Label of the reference_pagetype (Link) field in PageType 'CRM Task' +#. Label of the reference_pagetype (Link) field in PageType 'FCRM Note' +#: crm/fcrm/pagetype/crm_call_log/crm_call_log.json +#: crm/fcrm/pagetype/crm_task/crm_task.json +#: crm/fcrm/pagetype/fcrm_note/fcrm_note.json msgid "Reference Document Type" msgstr "" -#. Label of the reference_docname (Dynamic Link) field in DocType 'CRM Call +#. Label of the reference_docname (Dynamic Link) field in PageType 'CRM Call #. Log' -#: crm/fcrm/doctype/crm_call_log/crm_call_log.json +#: crm/fcrm/pagetype/crm_call_log/crm_call_log.json msgid "Reference Name" msgstr "" @@ -4625,8 +4625,8 @@ msgstr "" msgid "Report an Issue" msgstr "" -#. Option for the 'Type' (Select) field in DocType 'CRM Fields Layout' -#: crm/fcrm/doctype/crm_fields_layout/crm_fields_layout.json +#. Option for the 'Type' (Select) field in PageType 'CRM Fields Layout' +#: crm/fcrm/pagetype/crm_fields_layout/crm_fields_layout.json msgid "Required Fields" msgstr "" @@ -4642,7 +4642,7 @@ msgstr "" msgid "Reset Changes" msgstr "" -#: crm/fcrm/doctype/erpnext_crm_settings/erpnext_crm_settings.js:7 +#: crm/fcrm/pagetype/erpnext_crm_settings/erpnext_crm_settings.js:7 msgid "Reset ERPNext Form Script" msgstr "" @@ -4654,35 +4654,35 @@ msgstr "" msgid "Reset to default" msgstr "" -#. Label of the response_by (Datetime) field in DocType 'CRM Deal' -#. Label of the response_by (Datetime) field in DocType 'CRM Lead' -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_lead/crm_lead.json +#. Label of the response_by (Datetime) field in PageType 'CRM Deal' +#. Label of the response_by (Datetime) field in PageType 'CRM Lead' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_lead/crm_lead.json msgid "Response By" msgstr "" -#. Label of the response_details_section (Section Break) field in DocType 'CRM +#. Label of the response_details_section (Section Break) field in PageType 'CRM #. Deal' -#. Label of the response_details_section (Section Break) field in DocType 'CRM +#. Label of the response_details_section (Section Break) field in PageType 'CRM #. Lead' -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_lead/crm_lead.json +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_lead/crm_lead.json msgid "Response Details" msgstr "" -#. Label of the section_break_ufaf (Section Break) field in DocType 'CRM +#. Label of the section_break_ufaf (Section Break) field in PageType 'CRM #. Service Level Agreement' -#: crm/fcrm/doctype/crm_service_level_agreement/crm_service_level_agreement.json +#: crm/fcrm/pagetype/crm_service_level_agreement/crm_service_level_agreement.json msgid "Response and Follow Up" msgstr "" -#: crm/fcrm/doctype/fcrm_settings/fcrm_settings.js:14 +#: crm/fcrm/pagetype/fcrm_settings/fcrm_settings.js:14 msgid "Restore" msgstr "" -#. Label of the restore_defaults (Button) field in DocType 'FCRM Settings' -#: crm/fcrm/doctype/fcrm_settings/fcrm_settings.js:13 -#: crm/fcrm/doctype/fcrm_settings/fcrm_settings.json +#. Label of the restore_defaults (Button) field in PageType 'FCRM Settings' +#: crm/fcrm/pagetype/fcrm_settings/fcrm_settings.js:13 +#: crm/fcrm/pagetype/fcrm_settings/fcrm_settings.json msgid "Restore Defaults" msgstr "" @@ -4699,13 +4699,13 @@ msgstr "" msgid "Rich Text" msgstr "" -#. Label of the rgt (Int) field in DocType 'CRM Territory' -#: crm/fcrm/doctype/crm_territory/crm_territory.json +#. Label of the rgt (Int) field in PageType 'CRM Territory' +#: crm/fcrm/pagetype/crm_territory/crm_territory.json msgid "Right" msgstr "" -#. Option for the 'Status' (Select) field in DocType 'CRM Call Log' -#: crm/fcrm/doctype/crm_call_log/crm_call_log.json +#. Option for the 'Status' (Select) field in PageType 'CRM Call Log' +#: crm/fcrm/pagetype/crm_call_log/crm_call_log.json msgid "Ringing" msgstr "" @@ -4714,55 +4714,55 @@ msgstr "" msgid "Ringing..." msgstr "" -#. Label of the role (Select) field in DocType 'CRM Invitation' -#: crm/fcrm/doctype/crm_invitation/crm_invitation.json +#. Label of the role (Select) field in PageType 'CRM Invitation' +#: crm/fcrm/pagetype/crm_invitation/crm_invitation.json #: frontend/src/components/Modals/AddExistingUserModal.vue:46 msgid "Role" msgstr "" -#. Option for the 'Type' (Select) field in DocType 'CRM Dropdown Item' -#. Label of the route (Data) field in DocType 'CRM Dropdown Item' -#: crm/fcrm/doctype/crm_dropdown_item/crm_dropdown_item.json +#. Option for the 'Type' (Select) field in PageType 'CRM Dropdown Item' +#. Label of the route (Data) field in PageType 'CRM Dropdown Item' +#: crm/fcrm/pagetype/crm_dropdown_item/crm_dropdown_item.json msgid "Route" msgstr "" -#. Label of the route_name (Data) field in DocType 'CRM View Settings' -#: crm/fcrm/doctype/crm_view_settings/crm_view_settings.json +#. Label of the route_name (Data) field in PageType 'CRM View Settings' +#: crm/fcrm/pagetype/crm_view_settings/crm_view_settings.json msgid "Route Name" msgstr "" -#. Label of the rows (Code) field in DocType 'CRM View Settings' -#: crm/fcrm/doctype/crm_view_settings/crm_view_settings.json +#. Label of the rows (Code) field in PageType 'CRM View Settings' +#: crm/fcrm/pagetype/crm_view_settings/crm_view_settings.json msgid "Rows" msgstr "" -#. Label of the sla_tab (Tab Break) field in DocType 'CRM Deal' -#. Label of the sla (Link) field in DocType 'CRM Deal' -#. Label of the sla_tab (Tab Break) field in DocType 'CRM Lead' -#. Label of the sla (Link) field in DocType 'CRM Lead' -#. Label of a shortcut in the Frappe CRM Workspace -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_lead/crm_lead.json -#: crm/fcrm/workspace/frappe_crm/frappe_crm.json +#. Label of the sla_tab (Tab Break) field in PageType 'CRM Deal' +#. Label of the sla (Link) field in PageType 'CRM Deal' +#. Label of the sla_tab (Tab Break) field in PageType 'CRM Lead' +#. Label of the sla (Link) field in PageType 'CRM Lead' +#. Label of a shortcut in the Jingrow CRM Workspace +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_lead/crm_lead.json +#: crm/fcrm/workspace/jingrow_crm/jingrow_crm.json msgid "SLA" msgstr "" -#. Label of the sla_creation (Datetime) field in DocType 'CRM Deal' -#. Label of the sla_creation (Datetime) field in DocType 'CRM Lead' -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_lead/crm_lead.json +#. Label of the sla_creation (Datetime) field in PageType 'CRM Deal' +#. Label of the sla_creation (Datetime) field in PageType 'CRM Lead' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_lead/crm_lead.json msgid "SLA Creation" msgstr "" -#. Label of the sla_name (Data) field in DocType 'CRM Service Level Agreement' -#: crm/fcrm/doctype/crm_service_level_agreement/crm_service_level_agreement.json +#. Label of the sla_name (Data) field in PageType 'CRM Service Level Agreement' +#: crm/fcrm/pagetype/crm_service_level_agreement/crm_service_level_agreement.json msgid "SLA Name" msgstr "" -#. Label of the sla_status (Select) field in DocType 'CRM Deal' -#. Label of the sla_status (Select) field in DocType 'CRM Lead' -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_lead/crm_lead.json +#. Label of the sla_status (Select) field in PageType 'CRM Deal' +#. Label of the sla_status (Select) field in PageType 'CRM Lead' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_lead/crm_lead.json msgid "SLA Status" msgstr "" @@ -4771,57 +4771,57 @@ msgid "SUBJECT" msgstr "" #. Name of a role -#. Option for the 'Role' (Select) field in DocType 'CRM Invitation' -#: crm/fcrm/doctype/crm_call_log/crm_call_log.json -#: crm/fcrm/doctype/crm_communication_status/crm_communication_status.json -#: crm/fcrm/doctype/crm_dashboard/crm_dashboard.json -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_deal_status/crm_deal_status.json -#: crm/fcrm/doctype/crm_exotel_settings/crm_exotel_settings.json -#: crm/fcrm/doctype/crm_form_script/crm_form_script.json -#: crm/fcrm/doctype/crm_global_settings/crm_global_settings.json -#: crm/fcrm/doctype/crm_holiday_list/crm_holiday_list.json -#: crm/fcrm/doctype/crm_industry/crm_industry.json -#: crm/fcrm/doctype/crm_invitation/crm_invitation.json -#: crm/fcrm/doctype/crm_lead/crm_lead.json -#: crm/fcrm/doctype/crm_lead_source/crm_lead_source.json -#: crm/fcrm/doctype/crm_lead_status/crm_lead_status.json -#: crm/fcrm/doctype/crm_lost_reason/crm_lost_reason.json -#: crm/fcrm/doctype/crm_notification/crm_notification.json -#: crm/fcrm/doctype/crm_organization/crm_organization.json -#: crm/fcrm/doctype/crm_service_level_agreement/crm_service_level_agreement.json -#: crm/fcrm/doctype/crm_task/crm_task.json -#: crm/fcrm/doctype/crm_territory/crm_territory.json -#: crm/fcrm/doctype/crm_twilio_settings/crm_twilio_settings.json -#: crm/fcrm/doctype/crm_view_settings/crm_view_settings.json -#: crm/fcrm/doctype/erpnext_crm_settings/erpnext_crm_settings.json -#: crm/fcrm/doctype/fcrm_note/fcrm_note.json -#: crm/fcrm/doctype/fcrm_settings/fcrm_settings.json -#: crm/fcrm/doctype/helpdesk_crm_settings/helpdesk_crm_settings.json +#. Option for the 'Role' (Select) field in PageType 'CRM Invitation' +#: crm/fcrm/pagetype/crm_call_log/crm_call_log.json +#: crm/fcrm/pagetype/crm_communication_status/crm_communication_status.json +#: crm/fcrm/pagetype/crm_dashboard/crm_dashboard.json +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_deal_status/crm_deal_status.json +#: crm/fcrm/pagetype/crm_exotel_settings/crm_exotel_settings.json +#: crm/fcrm/pagetype/crm_form_script/crm_form_script.json +#: crm/fcrm/pagetype/crm_global_settings/crm_global_settings.json +#: crm/fcrm/pagetype/crm_holiday_list/crm_holiday_list.json +#: crm/fcrm/pagetype/crm_industry/crm_industry.json +#: crm/fcrm/pagetype/crm_invitation/crm_invitation.json +#: crm/fcrm/pagetype/crm_lead/crm_lead.json +#: crm/fcrm/pagetype/crm_lead_source/crm_lead_source.json +#: crm/fcrm/pagetype/crm_lead_status/crm_lead_status.json +#: crm/fcrm/pagetype/crm_lost_reason/crm_lost_reason.json +#: crm/fcrm/pagetype/crm_notification/crm_notification.json +#: crm/fcrm/pagetype/crm_organization/crm_organization.json +#: crm/fcrm/pagetype/crm_service_level_agreement/crm_service_level_agreement.json +#: crm/fcrm/pagetype/crm_task/crm_task.json +#: crm/fcrm/pagetype/crm_territory/crm_territory.json +#: crm/fcrm/pagetype/crm_twilio_settings/crm_twilio_settings.json +#: crm/fcrm/pagetype/crm_view_settings/crm_view_settings.json +#: crm/fcrm/pagetype/erpnext_crm_settings/erpnext_crm_settings.json +#: crm/fcrm/pagetype/fcrm_note/fcrm_note.json +#: crm/fcrm/pagetype/fcrm_settings/fcrm_settings.json +#: crm/fcrm/pagetype/helpdesk_crm_settings/helpdesk_crm_settings.json msgid "Sales Manager" msgstr "" #. Name of a role -#. Option for the 'Role' (Select) field in DocType 'CRM Invitation' -#: crm/fcrm/doctype/crm_call_log/crm_call_log.json -#: crm/fcrm/doctype/crm_communication_status/crm_communication_status.json -#: crm/fcrm/doctype/crm_dashboard/crm_dashboard.json -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_deal_status/crm_deal_status.json -#: crm/fcrm/doctype/crm_global_settings/crm_global_settings.json -#: crm/fcrm/doctype/crm_holiday_list/crm_holiday_list.json -#: crm/fcrm/doctype/crm_industry/crm_industry.json -#: crm/fcrm/doctype/crm_invitation/crm_invitation.json -#: crm/fcrm/doctype/crm_lead/crm_lead.json -#: crm/fcrm/doctype/crm_lead_source/crm_lead_source.json -#: crm/fcrm/doctype/crm_lead_status/crm_lead_status.json -#: crm/fcrm/doctype/crm_lost_reason/crm_lost_reason.json -#: crm/fcrm/doctype/crm_notification/crm_notification.json -#: crm/fcrm/doctype/crm_organization/crm_organization.json -#: crm/fcrm/doctype/crm_task/crm_task.json -#: crm/fcrm/doctype/crm_territory/crm_territory.json -#: crm/fcrm/doctype/crm_view_settings/crm_view_settings.json -#: crm/fcrm/doctype/fcrm_note/fcrm_note.json +#. Option for the 'Role' (Select) field in PageType 'CRM Invitation' +#: crm/fcrm/pagetype/crm_call_log/crm_call_log.json +#: crm/fcrm/pagetype/crm_communication_status/crm_communication_status.json +#: crm/fcrm/pagetype/crm_dashboard/crm_dashboard.json +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_deal_status/crm_deal_status.json +#: crm/fcrm/pagetype/crm_global_settings/crm_global_settings.json +#: crm/fcrm/pagetype/crm_holiday_list/crm_holiday_list.json +#: crm/fcrm/pagetype/crm_industry/crm_industry.json +#: crm/fcrm/pagetype/crm_invitation/crm_invitation.json +#: crm/fcrm/pagetype/crm_lead/crm_lead.json +#: crm/fcrm/pagetype/crm_lead_source/crm_lead_source.json +#: crm/fcrm/pagetype/crm_lead_status/crm_lead_status.json +#: crm/fcrm/pagetype/crm_lost_reason/crm_lost_reason.json +#: crm/fcrm/pagetype/crm_notification/crm_notification.json +#: crm/fcrm/pagetype/crm_organization/crm_organization.json +#: crm/fcrm/pagetype/crm_task/crm_task.json +#: crm/fcrm/pagetype/crm_territory/crm_territory.json +#: crm/fcrm/pagetype/crm_view_settings/crm_view_settings.json +#: crm/fcrm/pagetype/fcrm_note/fcrm_note.json #: frontend/src/components/Modals/AddExistingUserModal.vue:92 #: frontend/src/components/Settings/InviteUserPage.vue:156 #: frontend/src/components/Settings/InviteUserPage.vue:163 @@ -4845,17 +4845,17 @@ msgstr "" msgid "Salesperson" msgstr "" -#. Label of the salutation (Link) field in DocType 'CRM Deal' -#. Label of the salutation (Link) field in DocType 'CRM Lead' -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_lead/crm_lead.json +#. Label of the salutation (Link) field in PageType 'CRM Deal' +#. Label of the salutation (Link) field in PageType 'CRM Lead' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_lead/crm_lead.json msgid "Salutation" msgstr "" -#. Option for the 'Weekly Off' (Select) field in DocType 'CRM Holiday List' -#. Option for the 'Workday' (Select) field in DocType 'CRM Service Day' -#: crm/fcrm/doctype/crm_holiday_list/crm_holiday_list.json -#: crm/fcrm/doctype/crm_service_day/crm_service_day.json +#. Option for the 'Weekly Off' (Select) field in PageType 'CRM Holiday List' +#. Option for the 'Workday' (Select) field in PageType 'CRM Service Day' +#: crm/fcrm/pagetype/crm_holiday_list/crm_holiday_list.json +#: crm/fcrm/pagetype/crm_service_day/crm_service_day.json msgid "Saturday" msgstr "" @@ -4904,8 +4904,8 @@ msgstr "" msgid "Schedule an event" msgstr "" -#. Label of the script (Code) field in DocType 'CRM Form Script' -#: crm/fcrm/doctype/crm_form_script/crm_form_script.json +#. Label of the script (Code) field in PageType 'CRM Form Script' +#: crm/fcrm/pagetype/crm_form_script/crm_form_script.json msgid "Script" msgstr "" @@ -4973,18 +4973,18 @@ msgstr "" msgid "Send invites to" msgstr "" -#. Option for the 'Type' (Select) field in DocType 'CRM Dropdown Item' -#: crm/fcrm/doctype/crm_dropdown_item/crm_dropdown_item.json +#. Option for the 'Type' (Select) field in PageType 'CRM Dropdown Item' +#: crm/fcrm/pagetype/crm_dropdown_item/crm_dropdown_item.json msgid "Separator" msgstr "" -#. Label of the naming_series (Select) field in DocType 'CRM Lead' -#: crm/fcrm/doctype/crm_lead/crm_lead.json +#. Label of the naming_series (Select) field in PageType 'CRM Lead' +#: crm/fcrm/pagetype/crm_lead/crm_lead.json msgid "Series" msgstr "" -#. Label of the service_provider (Select) field in DocType 'FCRM Settings' -#: crm/fcrm/doctype/fcrm_settings/fcrm_settings.json +#. Label of the service_provider (Select) field in PageType 'FCRM Settings' +#: crm/fcrm/pagetype/fcrm_settings/fcrm_settings.json msgid "Service Provider" msgstr "" @@ -5029,7 +5029,7 @@ msgid "Setting up" msgstr "" #: frontend/src/components/Settings/emailConfig.js:145 -msgid "Setting up Frappe Mail requires you to have an API key and API Secret of your email account. Read more " +msgid "Setting up Jingrow Mail requires you to have an API key and API Secret of your email account. Read more " msgstr "" #: frontend/src/components/Settings/emailConfig.js:97 @@ -5062,8 +5062,8 @@ msgid "Setting up Yandex requires you to enable two factor authentication\n" "\t\t and app specific passwords. Read more " msgstr "" -#. Label of the defaults_tab (Tab Break) field in DocType 'FCRM Settings' -#: crm/fcrm/doctype/fcrm_settings/fcrm_settings.json +#. Label of the defaults_tab (Tab Break) field in PageType 'FCRM Settings' +#: crm/fcrm/pagetype/fcrm_settings/fcrm_settings.json #: frontend/src/components/Layouts/AppSidebar.vue:537 #: frontend/src/components/Settings/Settings.vue:12 msgid "Settings" @@ -5073,7 +5073,7 @@ msgstr "" msgid "Setup Email" msgstr "" -#: crm/fcrm/doctype/fcrm_settings/fcrm_settings.py:199 +#: crm/fcrm/pagetype/fcrm_settings/fcrm_settings.py:199 msgid "Setup the Exchange Rate Provider as 'Exchangerate Host' in settings, as default provider does not support currency conversion for {0} to {1}." msgstr "" @@ -5108,20 +5108,20 @@ msgstr "" msgid "Show preview" msgstr "" -#. Option for the 'Type' (Select) field in DocType 'CRM Fields Layout' -#: crm/fcrm/doctype/crm_fields_layout/crm_fields_layout.json +#. Option for the 'Type' (Select) field in PageType 'CRM Fields Layout' +#: crm/fcrm/pagetype/crm_fields_layout/crm_fields_layout.json msgid "Side Panel" msgstr "" -#. Option for the 'Type' (Select) field in DocType 'CRM Global Settings' -#: crm/fcrm/doctype/crm_global_settings/crm_global_settings.json +#. Option for the 'Type' (Select) field in PageType 'CRM Global Settings' +#: crm/fcrm/pagetype/crm_global_settings/crm_global_settings.json msgid "Sidebar Items" msgstr "" -#. Description of the 'Condition' (Code) field in DocType 'CRM Service Level +#. Description of the 'Condition' (Code) field in PageType 'CRM Service Level #. Agreement' -#: crm/fcrm/doctype/crm_service_level_agreement/crm_service_level_agreement.json -msgid "Simple Python Expression, Example: doc.status == 'Open' and doc.lead_source == 'Ads'" +#: crm/fcrm/pagetype/crm_service_level_agreement/crm_service_level_agreement.json +msgid "Simple Python Expression, Example: pg.status == 'Open' and pg.lead_source == 'Ads'" msgstr "" #: frontend/src/components/AssignTo.vue:83 @@ -5145,16 +5145,16 @@ msgstr "" msgid "Sort" msgstr "" -#. Label of the source (Link) field in DocType 'CRM Deal' -#. Label of the source (Link) field in DocType 'CRM Lead' -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_lead/crm_lead.json +#. Label of the source (Link) field in PageType 'CRM Deal' +#. Label of the source (Link) field in PageType 'CRM Lead' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_lead/crm_lead.json #: frontend/src/components/Modals/EditValueModal.vue:10 msgid "Source" msgstr "" -#. Label of the source_name (Data) field in DocType 'CRM Lead Source' -#: crm/fcrm/doctype/crm_lead_source/crm_lead_source.json +#. Label of the source_name (Data) field in PageType 'CRM Lead Source' +#: crm/fcrm/pagetype/crm_lead_source/crm_lead_source.json msgid "Source Name" msgstr "" @@ -5167,12 +5167,12 @@ msgstr "" msgid "Stage" msgstr "Fáze" -#: crm/fcrm/doctype/crm_form_script/crm_form_script.js:15 +#: crm/fcrm/pagetype/crm_form_script/crm_form_script.js:15 msgid "Standard Form Scripts can not be modified, duplicate the Form Script instead." msgstr "" -#. Label of the standard_rate (Currency) field in DocType 'CRM Product' -#: crm/fcrm/doctype/crm_product/crm_product.json +#. Label of the standard_rate (Currency) field in PageType 'CRM Product' +#: crm/fcrm/pagetype/crm_product/crm_product.json msgid "Standard Selling Rate" msgstr "" @@ -5180,18 +5180,18 @@ msgstr "" msgid "Standard Views" msgstr "" -#. Label of the start_date (Date) field in DocType 'CRM Service Level +#. Label of the start_date (Date) field in PageType 'CRM Service Level #. Agreement' -#. Label of the start_date (Date) field in DocType 'CRM Task' -#: crm/fcrm/doctype/crm_service_level_agreement/crm_service_level_agreement.json -#: crm/fcrm/doctype/crm_task/crm_task.json +#. Label of the start_date (Date) field in PageType 'CRM Task' +#: crm/fcrm/pagetype/crm_service_level_agreement/crm_service_level_agreement.json +#: crm/fcrm/pagetype/crm_task/crm_task.json msgid "Start Date" msgstr "" -#. Label of the start_time (Datetime) field in DocType 'CRM Call Log' -#. Label of the start_time (Time) field in DocType 'CRM Service Day' -#: crm/fcrm/doctype/crm_call_log/crm_call_log.json -#: crm/fcrm/doctype/crm_service_day/crm_service_day.json +#. Label of the start_time (Datetime) field in PageType 'CRM Call Log' +#. Label of the start_time (Time) field in PageType 'CRM Service Day' +#: crm/fcrm/pagetype/crm_call_log/crm_call_log.json +#: crm/fcrm/pagetype/crm_service_day/crm_service_day.json #: frontend/src/components/Calendar/CalendarEventPanel.vue:234 #: frontend/src/components/Modals/EventModal.vue:103 msgid "Start Time" @@ -5205,32 +5205,32 @@ msgstr "" msgid "Start with sample 10 leads" msgstr "" -#. Label of the status (Select) field in DocType 'CRM Call Log' -#. Label of the status (Data) field in DocType 'CRM Communication Status' -#. Label of the status (Link) field in DocType 'CRM Deal' -#. Label of the deal_status (Data) field in DocType 'CRM Deal Status' -#. Label of the status (Select) field in DocType 'CRM Invitation' -#. Label of the status (Link) field in DocType 'CRM Lead' -#. Label of the lead_status (Data) field in DocType 'CRM Lead Status' -#. Label of the status (Select) field in DocType 'CRM Task' -#: crm/fcrm/doctype/crm_call_log/crm_call_log.json -#: crm/fcrm/doctype/crm_communication_status/crm_communication_status.json -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_deal_status/crm_deal_status.json -#: crm/fcrm/doctype/crm_invitation/crm_invitation.json -#: crm/fcrm/doctype/crm_lead/crm_lead.json -#: crm/fcrm/doctype/crm_lead_status/crm_lead_status.json -#: crm/fcrm/doctype/crm_task/crm_task.json frontend/src/pages/Contact.vue:505 +#. Label of the status (Select) field in PageType 'CRM Call Log' +#. Label of the status (Data) field in PageType 'CRM Communication Status' +#. Label of the status (Link) field in PageType 'CRM Deal' +#. Label of the deal_status (Data) field in PageType 'CRM Deal Status' +#. Label of the status (Select) field in PageType 'CRM Invitation' +#. Label of the status (Link) field in PageType 'CRM Lead' +#. Label of the lead_status (Data) field in PageType 'CRM Lead Status' +#. Label of the status (Select) field in PageType 'CRM Task' +#: crm/fcrm/pagetype/crm_call_log/crm_call_log.json +#: crm/fcrm/pagetype/crm_communication_status/crm_communication_status.json +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_deal_status/crm_deal_status.json +#: crm/fcrm/pagetype/crm_invitation/crm_invitation.json +#: crm/fcrm/pagetype/crm_lead/crm_lead.json +#: crm/fcrm/pagetype/crm_lead_status/crm_lead_status.json +#: crm/fcrm/pagetype/crm_task/crm_task.json frontend/src/pages/Contact.vue:505 #: frontend/src/pages/MobileContact.vue:513 #: frontend/src/pages/MobileOrganization.vue:457 #: frontend/src/pages/Organization.vue:478 msgid "Status" msgstr "" -#. Label of the status_change_log (Table) field in DocType 'CRM Deal' -#. Label of the status_change_log (Table) field in DocType 'CRM Lead' -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_lead/crm_lead.json +#. Label of the status_change_log (Table) field in PageType 'CRM Deal' +#. Label of the status_change_log (Table) field in PageType 'CRM Lead' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_lead/crm_lead.json msgid "Status Change Log" msgstr "" @@ -5239,8 +5239,8 @@ msgstr "" msgid "Status is required" msgstr "" -#. Label of the subdomain (Data) field in DocType 'CRM Exotel Settings' -#: crm/fcrm/doctype/crm_exotel_settings/crm_exotel_settings.json +#. Label of the subdomain (Data) field in PageType 'CRM Exotel Settings' +#: crm/fcrm/pagetype/crm_exotel_settings/crm_exotel_settings.json msgid "Subdomain" msgstr "" @@ -5258,10 +5258,10 @@ msgstr "" msgid "Subject: {0}" msgstr "" -#. Option for the 'Weekly Off' (Select) field in DocType 'CRM Holiday List' -#. Option for the 'Workday' (Select) field in DocType 'CRM Service Day' -#: crm/fcrm/doctype/crm_holiday_list/crm_holiday_list.json -#: crm/fcrm/doctype/crm_service_day/crm_service_day.json +#. Option for the 'Weekly Off' (Select) field in PageType 'CRM Holiday List' +#. Option for the 'Workday' (Select) field in PageType 'CRM Service Day' +#: crm/fcrm/pagetype/crm_holiday_list/crm_holiday_list.json +#: crm/fcrm/pagetype/crm_service_day/crm_service_day.json msgid "Sunday" msgstr "" @@ -5282,21 +5282,21 @@ msgid "System Configuration" msgstr "" #. Name of a role -#. Option for the 'Role' (Select) field in DocType 'CRM Invitation' -#: crm/fcrm/doctype/crm_dashboard/crm_dashboard.json -#: crm/fcrm/doctype/crm_exotel_settings/crm_exotel_settings.json -#: crm/fcrm/doctype/crm_fields_layout/crm_fields_layout.json -#: crm/fcrm/doctype/crm_global_settings/crm_global_settings.json -#: crm/fcrm/doctype/crm_invitation/crm_invitation.json -#: crm/fcrm/doctype/crm_lead_source/crm_lead_source.json -#: crm/fcrm/doctype/crm_lost_reason/crm_lost_reason.json -#: crm/fcrm/doctype/crm_notification/crm_notification.json -#: crm/fcrm/doctype/crm_product/crm_product.json -#: crm/fcrm/doctype/crm_telephony_agent/crm_telephony_agent.json -#: crm/fcrm/doctype/crm_twilio_settings/crm_twilio_settings.json -#: crm/fcrm/doctype/erpnext_crm_settings/erpnext_crm_settings.json -#: crm/fcrm/doctype/fcrm_settings/fcrm_settings.json -#: crm/fcrm/doctype/helpdesk_crm_settings/helpdesk_crm_settings.json +#. Option for the 'Role' (Select) field in PageType 'CRM Invitation' +#: crm/fcrm/pagetype/crm_dashboard/crm_dashboard.json +#: crm/fcrm/pagetype/crm_exotel_settings/crm_exotel_settings.json +#: crm/fcrm/pagetype/crm_fields_layout/crm_fields_layout.json +#: crm/fcrm/pagetype/crm_global_settings/crm_global_settings.json +#: crm/fcrm/pagetype/crm_invitation/crm_invitation.json +#: crm/fcrm/pagetype/crm_lead_source/crm_lead_source.json +#: crm/fcrm/pagetype/crm_lost_reason/crm_lost_reason.json +#: crm/fcrm/pagetype/crm_notification/crm_notification.json +#: crm/fcrm/pagetype/crm_product/crm_product.json +#: crm/fcrm/pagetype/crm_telephony_agent/crm_telephony_agent.json +#: crm/fcrm/pagetype/crm_twilio_settings/crm_twilio_settings.json +#: crm/fcrm/pagetype/erpnext_crm_settings/erpnext_crm_settings.json +#: crm/fcrm/pagetype/fcrm_settings/fcrm_settings.json +#: crm/fcrm/pagetype/helpdesk_crm_settings/helpdesk_crm_settings.json msgid "System Manager" msgstr "" @@ -5308,8 +5308,8 @@ msgstr "" msgid "Take a note..." msgstr "" -#. Option for the 'Type' (Select) field in DocType 'CRM Notification' -#: crm/fcrm/doctype/crm_notification/crm_notification.json +#. Option for the 'Type' (Select) field in PageType 'CRM Notification' +#: crm/fcrm/pagetype/crm_notification/crm_notification.json #: frontend/src/components/Layouts/AppSidebar.vue:555 msgid "Task" msgstr "" @@ -5327,8 +5327,8 @@ msgstr "" msgid "Telephony" msgstr "" -#. Label of the telephony_medium (Select) field in DocType 'CRM Call Log' -#: crm/fcrm/doctype/crm_call_log/crm_call_log.json +#. Label of the telephony_medium (Select) field in PageType 'CRM Call Log' +#: crm/fcrm/pagetype/crm_call_log/crm_call_log.json msgid "Telephony Medium" msgstr "" @@ -5364,27 +5364,27 @@ msgstr "" msgid "Template updated successfully" msgstr "" -#. Label of a shortcut in the Frappe CRM Workspace -#: crm/fcrm/workspace/frappe_crm/frappe_crm.json +#. Label of a shortcut in the Jingrow CRM Workspace +#: crm/fcrm/workspace/jingrow_crm/jingrow_crm.json msgid "Territories" msgstr "" -#. Label of the territory (Link) field in DocType 'CRM Deal' -#. Label of the territory (Link) field in DocType 'CRM Lead' -#. Label of the territory (Link) field in DocType 'CRM Organization' -#: crm/api/dashboard.py:1022 crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_lead/crm_lead.json -#: crm/fcrm/doctype/crm_organization/crm_organization.json +#. Label of the territory (Link) field in PageType 'CRM Deal' +#. Label of the territory (Link) field in PageType 'CRM Lead' +#. Label of the territory (Link) field in PageType 'CRM Organization' +#: crm/api/dashboard.py:1022 crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_lead/crm_lead.json +#: crm/fcrm/pagetype/crm_organization/crm_organization.json msgid "Territory" msgstr "" -#. Label of the territory_manager (Link) field in DocType 'CRM Territory' -#: crm/fcrm/doctype/crm_territory/crm_territory.json +#. Label of the territory_manager (Link) field in PageType 'CRM Territory' +#: crm/fcrm/pagetype/crm_territory/crm_territory.json msgid "Territory Manager" msgstr "" -#. Label of the territory_name (Data) field in DocType 'CRM Territory' -#: crm/fcrm/doctype/crm_territory/crm_territory.json +#. Label of the territory_name (Data) field in PageType 'CRM Territory' +#: crm/fcrm/pagetype/crm_territory/crm_territory.json msgid "Territory Name" msgstr "" @@ -5392,22 +5392,22 @@ msgstr "" msgid "Thanks" msgstr "" -#: crm/fcrm/doctype/crm_service_level_agreement/crm_service_level_agreement.py:46 +#: crm/fcrm/pagetype/crm_service_level_agreement/crm_service_level_agreement.py:46 msgid "The Condition '{0}' is invalid: {1}" msgstr "" -#. Description of the 'Exchange Rate' (Float) field in DocType 'CRM Deal' -#: crm/fcrm/doctype/crm_deal/crm_deal.json +#. Description of the 'Exchange Rate' (Float) field in PageType 'CRM Deal' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json msgid "The rate used to convert the deal’s currency to your crm's base currency (set in CRM Settings). It is set once when the currency is first added and doesn't change automatically." msgstr "" -#. Description of the 'Exchange Rate' (Float) field in DocType 'CRM +#. Description of the 'Exchange Rate' (Float) field in PageType 'CRM #. Organization' -#: crm/fcrm/doctype/crm_organization/crm_organization.json +#: crm/fcrm/pagetype/crm_organization/crm_organization.json msgid "The rate used to convert the organization’s currency to your crm's base currency (set in CRM Settings). It is set once when the currency is first added and doesn't change automatically." msgstr "" -#: crm/fcrm/doctype/crm_service_level_agreement/crm_service_level_agreement.js:14 +#: crm/fcrm/pagetype/crm_service_level_agreement/crm_service_level_agreement.js:14 msgid "There can only be one default priority in Priorities table" msgstr "" @@ -5444,14 +5444,14 @@ msgstr "" msgid "This will delete selected items and unlink linked items to it, are you sure?" msgstr "" -#: crm/fcrm/doctype/fcrm_settings/fcrm_settings.js:9 +#: crm/fcrm/pagetype/fcrm_settings/fcrm_settings.js:9 msgid "This will restore (if not exist) all the default statuses, custom fields and layouts. Delete & Restore will delete default layouts and then restore them." msgstr "" -#. Option for the 'Weekly Off' (Select) field in DocType 'CRM Holiday List' -#. Option for the 'Workday' (Select) field in DocType 'CRM Service Day' -#: crm/fcrm/doctype/crm_holiday_list/crm_holiday_list.json -#: crm/fcrm/doctype/crm_service_day/crm_service_day.json +#. Option for the 'Weekly Off' (Select) field in PageType 'CRM Holiday List' +#. Option for the 'Workday' (Select) field in PageType 'CRM Service Day' +#: crm/fcrm/pagetype/crm_holiday_list/crm_holiday_list.json +#: crm/fcrm/pagetype/crm_service_day/crm_service_day.json msgid "Thursday" msgstr "" @@ -5463,18 +5463,18 @@ msgstr "Čas" msgid "Timespan" msgstr "" -#. Label of the title (Data) field in DocType 'CRM Task' -#. Label of the title (Data) field in DocType 'FCRM Note' -#: crm/fcrm/doctype/crm_task/crm_task.json -#: crm/fcrm/doctype/fcrm_note/fcrm_note.json +#. Label of the title (Data) field in PageType 'CRM Task' +#. Label of the title (Data) field in PageType 'FCRM Note' +#: crm/fcrm/pagetype/crm_task/crm_task.json +#: crm/fcrm/pagetype/fcrm_note/fcrm_note.json #: frontend/src/components/Modals/EventModal.vue:43 #: frontend/src/components/Modals/NoteModal.vue:26 #: frontend/src/components/Modals/TaskModal.vue:25 msgid "Title" msgstr "" -#. Label of the title_field (Data) field in DocType 'CRM View Settings' -#: crm/fcrm/doctype/crm_view_settings/crm_view_settings.json +#. Label of the title_field (Data) field in PageType 'CRM View Settings' +#: crm/fcrm/pagetype/crm_view_settings/crm_view_settings.json #: frontend/src/components/Kanban/KanbanSettings.vue:29 msgid "Title Field" msgstr "" @@ -5484,28 +5484,28 @@ msgstr "" msgid "Title is required" msgstr "" -#. Label of the to (Data) field in DocType 'CRM Call Log' -#. Label of the to (Data) field in DocType 'CRM Status Change Log' -#: crm/fcrm/doctype/crm_call_log/crm_call_log.json -#: crm/fcrm/doctype/crm_status_change_log/crm_status_change_log.json +#. Label of the to (Data) field in PageType 'CRM Call Log' +#. Label of the to (Data) field in PageType 'CRM Status Change Log' +#: crm/fcrm/pagetype/crm_call_log/crm_call_log.json +#: crm/fcrm/pagetype/crm_status_change_log/crm_status_change_log.json #: frontend/src/components/Activities/EmailArea.vue:53 msgid "To" msgstr "" -#. Label of the to_date (Date) field in DocType 'CRM Holiday List' -#. Label of the to_date (Datetime) field in DocType 'CRM Status Change Log' -#: crm/fcrm/doctype/crm_holiday_list/crm_holiday_list.json -#: crm/fcrm/doctype/crm_status_change_log/crm_status_change_log.json +#. Label of the to_date (Date) field in PageType 'CRM Holiday List' +#. Label of the to_date (Datetime) field in PageType 'CRM Status Change Log' +#: crm/fcrm/pagetype/crm_holiday_list/crm_holiday_list.json +#: crm/fcrm/pagetype/crm_status_change_log/crm_status_change_log.json msgid "To Date" msgstr "" -#. Label of the to_type (Data) field in DocType 'CRM Status Change Log' -#: crm/fcrm/doctype/crm_status_change_log/crm_status_change_log.json +#. Label of the to_type (Data) field in PageType 'CRM Status Change Log' +#: crm/fcrm/pagetype/crm_status_change_log/crm_status_change_log.json msgid "To Type" msgstr "" -#. Label of the to_user (Link) field in DocType 'CRM Notification' -#: crm/fcrm/doctype/crm_notification/crm_notification.json +#. Label of the to_user (Link) field in PageType 'CRM Notification' +#: crm/fcrm/pagetype/crm_notification/crm_notification.json msgid "To User" msgstr "" @@ -5517,8 +5517,8 @@ msgstr "" msgid "Today" msgstr "" -#. Option for the 'Status' (Select) field in DocType 'CRM Task' -#: crm/fcrm/doctype/crm_task/crm_task.json +#. Option for the 'Status' (Select) field in PageType 'CRM Task' +#: crm/fcrm/pagetype/crm_task/crm_task.json msgid "Todo" msgstr "" @@ -5535,22 +5535,22 @@ msgstr "" msgid "Took a call with John Doe and discussed the new project." msgstr "" -#. Label of the total (Currency) field in DocType 'CRM Deal' -#. Label of the total (Currency) field in DocType 'CRM Lead' -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_lead/crm_lead.json +#. Label of the total (Currency) field in PageType 'CRM Deal' +#. Label of the total (Currency) field in PageType 'CRM Lead' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_lead/crm_lead.json msgid "Total" msgstr "Celkem" -#. Label of the total_holidays (Int) field in DocType 'CRM Holiday List' -#: crm/fcrm/doctype/crm_holiday_list/crm_holiday_list.json +#. Label of the total_holidays (Int) field in PageType 'CRM Holiday List' +#: crm/fcrm/pagetype/crm_holiday_list/crm_holiday_list.json msgid "Total Holidays" msgstr "" -#. Description of the 'Net Total' (Currency) field in DocType 'CRM Deal' -#. Description of the 'Net Total' (Currency) field in DocType 'CRM Lead' -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_lead/crm_lead.json +#. Description of the 'Net Total' (Currency) field in PageType 'CRM Deal' +#. Description of the 'Net Total' (Currency) field in PageType 'CRM Lead' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_lead/crm_lead.json msgid "Total after discount" msgstr "" @@ -5571,10 +5571,10 @@ msgstr "" msgid "Total number of won deals based on its closure date" msgstr "" -#. Option for the 'Weekly Off' (Select) field in DocType 'CRM Holiday List' -#. Option for the 'Workday' (Select) field in DocType 'CRM Service Day' -#: crm/fcrm/doctype/crm_holiday_list/crm_holiday_list.json -#: crm/fcrm/doctype/crm_service_day/crm_service_day.json +#. Option for the 'Weekly Off' (Select) field in PageType 'CRM Holiday List' +#. Option for the 'Workday' (Select) field in PageType 'CRM Service Day' +#: crm/fcrm/pagetype/crm_holiday_list/crm_holiday_list.json +#: crm/fcrm/pagetype/crm_service_day/crm_service_day.json msgid "Tuesday" msgstr "" @@ -5582,30 +5582,30 @@ msgstr "" msgid "Turn into a group" msgstr "" -#. Label of the twiml_sid (Data) field in DocType 'CRM Twilio Settings' -#: crm/fcrm/doctype/crm_twilio_settings/crm_twilio_settings.json +#. Label of the twiml_sid (Data) field in PageType 'CRM Twilio Settings' +#: crm/fcrm/pagetype/crm_twilio_settings/crm_twilio_settings.json msgid "TwiML SID" msgstr "" -#. Option for the 'Telephony Medium' (Select) field in DocType 'CRM Call Log' -#. Label of the twilio (Check) field in DocType 'CRM Telephony Agent' -#. Option for the 'Default Medium' (Select) field in DocType 'CRM Telephony +#. Option for the 'Telephony Medium' (Select) field in PageType 'CRM Call Log' +#. Label of the twilio (Check) field in PageType 'CRM Telephony Agent' +#. Option for the 'Default Medium' (Select) field in PageType 'CRM Telephony #. Agent' -#: crm/fcrm/doctype/crm_call_log/crm_call_log.json -#: crm/fcrm/doctype/crm_telephony_agent/crm_telephony_agent.json +#: crm/fcrm/pagetype/crm_call_log/crm_call_log.json +#: crm/fcrm/pagetype/crm_telephony_agent/crm_telephony_agent.json #: frontend/src/components/Layouts/AppSidebar.vue:601 #: frontend/src/components/Settings/TelephonySettings.vue:40 #: frontend/src/components/Settings/TelephonySettings.vue:50 msgid "Twilio" msgstr "" -#: crm/fcrm/doctype/crm_twilio_settings/crm_twilio_settings.py:59 -#: crm/fcrm/doctype/crm_twilio_settings/crm_twilio_settings.py:60 +#: crm/fcrm/pagetype/crm_twilio_settings/crm_twilio_settings.py:59 +#: crm/fcrm/pagetype/crm_twilio_settings/crm_twilio_settings.py:60 msgid "Twilio API credential creation error." msgstr "" -#. Label of the twilio_number (Data) field in DocType 'CRM Telephony Agent' -#: crm/fcrm/doctype/crm_telephony_agent/crm_telephony_agent.json +#. Label of the twilio_number (Data) field in PageType 'CRM Telephony Agent' +#: crm/fcrm/pagetype/crm_telephony_agent/crm_telephony_agent.json msgid "Twilio Number" msgstr "" @@ -5617,20 +5617,20 @@ msgstr "" msgid "Twilio settings updated successfully" msgstr "" -#. Label of the type (Select) field in DocType 'CRM Call Log' -#. Label of the type (Select) field in DocType 'CRM Deal Status' -#. Label of the type (Select) field in DocType 'CRM Dropdown Item' -#. Label of the type (Select) field in DocType 'CRM Fields Layout' -#. Label of the type (Select) field in DocType 'CRM Global Settings' -#. Label of the type (Select) field in DocType 'CRM Notification' -#. Label of the type (Select) field in DocType 'CRM View Settings' -#: crm/fcrm/doctype/crm_call_log/crm_call_log.json -#: crm/fcrm/doctype/crm_deal_status/crm_deal_status.json -#: crm/fcrm/doctype/crm_dropdown_item/crm_dropdown_item.json -#: crm/fcrm/doctype/crm_fields_layout/crm_fields_layout.json -#: crm/fcrm/doctype/crm_global_settings/crm_global_settings.json -#: crm/fcrm/doctype/crm_notification/crm_notification.json -#: crm/fcrm/doctype/crm_view_settings/crm_view_settings.json +#. Label of the type (Select) field in PageType 'CRM Call Log' +#. Label of the type (Select) field in PageType 'CRM Deal Status' +#. Label of the type (Select) field in PageType 'CRM Dropdown Item' +#. Label of the type (Select) field in PageType 'CRM Fields Layout' +#. Label of the type (Select) field in PageType 'CRM Global Settings' +#. Label of the type (Select) field in PageType 'CRM Notification' +#. Label of the type (Select) field in PageType 'CRM View Settings' +#: crm/fcrm/pagetype/crm_call_log/crm_call_log.json +#: crm/fcrm/pagetype/crm_deal_status/crm_deal_status.json +#: crm/fcrm/pagetype/crm_dropdown_item/crm_dropdown_item.json +#: crm/fcrm/pagetype/crm_fields_layout/crm_fields_layout.json +#: crm/fcrm/pagetype/crm_global_settings/crm_global_settings.json +#: crm/fcrm/pagetype/crm_notification/crm_notification.json +#: crm/fcrm/pagetype/crm_view_settings/crm_view_settings.json msgid "Type" msgstr "" @@ -5772,12 +5772,12 @@ msgstr "" msgid "Uploading {0}%" msgstr "" -#. Label of the user (Link) field in DocType 'CRM Dashboard' -#. Label of the user (Link) field in DocType 'CRM Telephony Agent' -#. Label of the user (Link) field in DocType 'CRM View Settings' -#: crm/fcrm/doctype/crm_dashboard/crm_dashboard.json -#: crm/fcrm/doctype/crm_telephony_agent/crm_telephony_agent.json -#: crm/fcrm/doctype/crm_view_settings/crm_view_settings.json +#. Label of the user (Link) field in PageType 'CRM Dashboard' +#. Label of the user (Link) field in PageType 'CRM Telephony Agent' +#. Label of the user (Link) field in PageType 'CRM View Settings' +#: crm/fcrm/pagetype/crm_dashboard/crm_dashboard.json +#: crm/fcrm/pagetype/crm_telephony_agent/crm_telephony_agent.json +#: crm/fcrm/pagetype/crm_view_settings/crm_view_settings.json msgid "User" msgstr "" @@ -5785,8 +5785,8 @@ msgstr "" msgid "User Management" msgstr "" -#. Label of the user_name (Data) field in DocType 'CRM Telephony Agent' -#: crm/fcrm/doctype/crm_telephony_agent/crm_telephony_agent.json +#. Label of the user_name (Data) field in PageType 'CRM Telephony Agent' +#: crm/fcrm/pagetype/crm_telephony_agent/crm_telephony_agent.json msgid "User Name" msgstr "" @@ -5808,9 +5808,9 @@ msgstr "" msgid "Users are required" msgstr "" -#. Label of the section_break_nevd (Section Break) field in DocType 'CRM +#. Label of the section_break_nevd (Section Break) field in PageType 'CRM #. Service Level Agreement' -#: crm/fcrm/doctype/crm_service_level_agreement/crm_service_level_agreement.json +#: crm/fcrm/pagetype/crm_service_level_agreement/crm_service_level_agreement.json msgid "Validity" msgstr "" @@ -5834,33 +5834,33 @@ msgstr "" msgid "Web form" msgstr "" -#. Label of the webhook_verify_token (Data) field in DocType 'CRM Exotel +#. Label of the webhook_verify_token (Data) field in PageType 'CRM Exotel #. Settings' -#: crm/fcrm/doctype/crm_exotel_settings/crm_exotel_settings.json +#: crm/fcrm/pagetype/crm_exotel_settings/crm_exotel_settings.json msgid "Webhook Verify Token" msgstr "" -#. Label of the website (Data) field in DocType 'CRM Deal' -#. Label of the website (Data) field in DocType 'CRM Lead' -#. Label of the website (Data) field in DocType 'CRM Organization' -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_lead/crm_lead.json -#: crm/fcrm/doctype/crm_organization/crm_organization.json +#. Label of the website (Data) field in PageType 'CRM Deal' +#. Label of the website (Data) field in PageType 'CRM Lead' +#. Label of the website (Data) field in PageType 'CRM Organization' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_lead/crm_lead.json +#: crm/fcrm/pagetype/crm_organization/crm_organization.json #: frontend/src/components/Modals/AboutModal.vue:52 msgid "Website" msgstr "" -#. Option for the 'Weekly Off' (Select) field in DocType 'CRM Holiday List' -#. Option for the 'Workday' (Select) field in DocType 'CRM Service Day' -#: crm/fcrm/doctype/crm_holiday_list/crm_holiday_list.json -#: crm/fcrm/doctype/crm_service_day/crm_service_day.json +#. Option for the 'Weekly Off' (Select) field in PageType 'CRM Holiday List' +#. Option for the 'Workday' (Select) field in PageType 'CRM Service Day' +#: crm/fcrm/pagetype/crm_holiday_list/crm_holiday_list.json +#: crm/fcrm/pagetype/crm_service_day/crm_service_day.json msgid "Wednesday" msgstr "" -#. Label of the weekly_off (Check) field in DocType 'CRM Holiday' -#. Label of the weekly_off (Select) field in DocType 'CRM Holiday List' -#: crm/fcrm/doctype/crm_holiday/crm_holiday.json -#: crm/fcrm/doctype/crm_holiday_list/crm_holiday_list.json +#. Label of the weekly_off (Check) field in PageType 'CRM Holiday' +#. Label of the weekly_off (Select) field in PageType 'CRM Holiday List' +#: crm/fcrm/pagetype/crm_holiday/crm_holiday.json +#: crm/fcrm/pagetype/crm_holiday_list/crm_holiday_list.json msgid "Weekly Off" msgstr "" @@ -5868,7 +5868,7 @@ msgstr "" msgid "Welcome Message" msgstr "" -#: crm/fcrm/doctype/helpdesk_crm_settings/helpdesk_crm_settings.py:155 +#: crm/fcrm/pagetype/helpdesk_crm_settings/helpdesk_crm_settings.py:155 msgid "Welcome to Helpdesk" msgstr "" @@ -5876,8 +5876,8 @@ msgstr "" msgid "Welcome {0}, lets add your first lead" msgstr "" -#. Option for the 'Type' (Select) field in DocType 'CRM Notification' -#: crm/fcrm/doctype/crm_notification/crm_notification.json +#. Option for the 'Type' (Select) field in PageType 'CRM Notification' +#: crm/fcrm/pagetype/crm_notification/crm_notification.json #: frontend/src/components/Layouts/AppSidebar.vue:603 #: frontend/src/components/Settings/Settings.vue:190 #: frontend/src/pages/Deal.vue:572 frontend/src/pages/Lead.vue:429 @@ -5902,8 +5902,8 @@ msgstr "" msgid "Width can be in number, pixel or rem (eg. 3, 30px, 10rem)" msgstr "" -#. Option for the 'Type' (Select) field in DocType 'CRM Deal Status' -#: crm/fcrm/doctype/crm_deal_status/crm_deal_status.json +#. Option for the 'Type' (Select) field in PageType 'CRM Deal Status' +#: crm/fcrm/pagetype/crm_deal_status/crm_deal_status.json msgid "Won" msgstr "" @@ -5912,16 +5912,16 @@ msgstr "" msgid "Won deals" msgstr "" -#. Label of the workday (Select) field in DocType 'CRM Service Day' -#: crm/fcrm/doctype/crm_service_day/crm_service_day.json +#. Label of the workday (Select) field in PageType 'CRM Service Day' +#: crm/fcrm/pagetype/crm_service_day/crm_service_day.json msgid "Workday" msgstr "" -#. Label of the section_break_rmgo (Section Break) field in DocType 'CRM +#. Label of the section_break_rmgo (Section Break) field in PageType 'CRM #. Service Level Agreement' -#. Label of the working_hours (Table) field in DocType 'CRM Service Level +#. Label of the working_hours (Table) field in PageType 'CRM Service Level #. Agreement' -#: crm/fcrm/doctype/crm_service_level_agreement/crm_service_level_agreement.json +#: crm/fcrm/pagetype/crm_service_level_agreement/crm_service_level_agreement.json msgid "Working Hours" msgstr "" @@ -5967,7 +5967,7 @@ msgstr "" msgid "You do not have permission to access this document" msgstr "" -#: crm/fcrm/doctype/crm_form_script/crm_form_script.py:24 +#: crm/fcrm/pagetype/crm_form_script/crm_form_script.py:24 msgid "You need to be in developer mode to edit a Standard Form Script" msgstr "" @@ -5995,10 +5995,10 @@ msgstr "" msgid "added a" msgstr "" -#. Option for the 'Color' (Select) field in DocType 'CRM Deal Status' -#. Option for the 'Color' (Select) field in DocType 'CRM Lead Status' -#: crm/fcrm/doctype/crm_deal_status/crm_deal_status.json -#: crm/fcrm/doctype/crm_lead_status/crm_lead_status.json +#. Option for the 'Color' (Select) field in PageType 'CRM Deal Status' +#. Option for the 'Color' (Select) field in PageType 'CRM Lead Status' +#: crm/fcrm/pagetype/crm_deal_status/crm_deal_status.json +#: crm/fcrm/pagetype/crm_lead_status/crm_lead_status.json msgid "amber" msgstr "" @@ -6010,17 +6010,17 @@ msgstr "" msgid "assigned a {0} {1} to you" msgstr "" -#. Option for the 'Color' (Select) field in DocType 'CRM Deal Status' -#. Option for the 'Color' (Select) field in DocType 'CRM Lead Status' -#: crm/fcrm/doctype/crm_deal_status/crm_deal_status.json -#: crm/fcrm/doctype/crm_lead_status/crm_lead_status.json +#. Option for the 'Color' (Select) field in PageType 'CRM Deal Status' +#. Option for the 'Color' (Select) field in PageType 'CRM Lead Status' +#: crm/fcrm/pagetype/crm_deal_status/crm_deal_status.json +#: crm/fcrm/pagetype/crm_lead_status/crm_lead_status.json msgid "black" msgstr "" -#. Option for the 'Color' (Select) field in DocType 'CRM Deal Status' -#. Option for the 'Color' (Select) field in DocType 'CRM Lead Status' -#: crm/fcrm/doctype/crm_deal_status/crm_deal_status.json -#: crm/fcrm/doctype/crm_lead_status/crm_lead_status.json +#. Option for the 'Color' (Select) field in PageType 'CRM Deal Status' +#. Option for the 'Color' (Select) field in PageType 'CRM Lead Status' +#: crm/fcrm/pagetype/crm_deal_status/crm_deal_status.json +#: crm/fcrm/pagetype/crm_lead_status/crm_lead_status.json msgid "blue" msgstr "" @@ -6037,10 +6037,10 @@ msgstr "" msgid "condition" msgstr "podmínka" -#. Option for the 'Color' (Select) field in DocType 'CRM Deal Status' -#. Option for the 'Color' (Select) field in DocType 'CRM Lead Status' -#: crm/fcrm/doctype/crm_deal_status/crm_deal_status.json -#: crm/fcrm/doctype/crm_lead_status/crm_lead_status.json +#. Option for the 'Color' (Select) field in PageType 'CRM Deal Status' +#. Option for the 'Color' (Select) field in PageType 'CRM Lead Status' +#: crm/fcrm/pagetype/crm_deal_status/crm_deal_status.json +#: crm/fcrm/pagetype/crm_lead_status/crm_lead_status.json msgid "cyan" msgstr "" @@ -6059,33 +6059,33 @@ msgstr "pracovní plocha" msgid "email already exists" msgstr "" -#. Option for the 'Service Provider' (Select) field in DocType 'FCRM Settings' -#: crm/fcrm/doctype/fcrm_settings/fcrm_settings.json +#. Option for the 'Service Provider' (Select) field in PageType 'FCRM Settings' +#: crm/fcrm/pagetype/fcrm_settings/fcrm_settings.json #: frontend/src/components/Settings/CurrencySettings.vue:106 msgid "exchangerate.host" msgstr "" -#. Option for the 'Service Provider' (Select) field in DocType 'FCRM Settings' -#: crm/fcrm/doctype/fcrm_settings/fcrm_settings.json +#. Option for the 'Service Provider' (Select) field in PageType 'FCRM Settings' +#: crm/fcrm/pagetype/fcrm_settings/fcrm_settings.json msgid "frankfurter.app" msgstr "" -#. Option for the 'Color' (Select) field in DocType 'CRM Deal Status' -#. Option for the 'Color' (Select) field in DocType 'CRM Lead Status' -#: crm/fcrm/doctype/crm_deal_status/crm_deal_status.json -#: crm/fcrm/doctype/crm_lead_status/crm_lead_status.json +#. Option for the 'Color' (Select) field in PageType 'CRM Deal Status' +#. Option for the 'Color' (Select) field in PageType 'CRM Lead Status' +#: crm/fcrm/pagetype/crm_deal_status/crm_deal_status.json +#: crm/fcrm/pagetype/crm_lead_status/crm_lead_status.json msgid "gray" msgstr "" -#. Option for the 'Color' (Select) field in DocType 'CRM Deal Status' -#. Option for the 'Color' (Select) field in DocType 'CRM Lead Status' -#: crm/fcrm/doctype/crm_deal_status/crm_deal_status.json -#: crm/fcrm/doctype/crm_lead_status/crm_lead_status.json +#. Option for the 'Color' (Select) field in PageType 'CRM Deal Status' +#. Option for the 'Color' (Select) field in PageType 'CRM Lead Status' +#: crm/fcrm/pagetype/crm_deal_status/crm_deal_status.json +#: crm/fcrm/pagetype/crm_lead_status/crm_lead_status.json msgid "green" msgstr "" -#. Option for the 'Type' (Select) field in DocType 'CRM View Settings' -#: crm/fcrm/doctype/crm_view_settings/crm_view_settings.json +#. Option for the 'Type' (Select) field in PageType 'CRM View Settings' +#: crm/fcrm/pagetype/crm_view_settings/crm_view_settings.json msgid "group_by" msgstr "" @@ -6170,12 +6170,12 @@ msgstr "" msgid "just now" msgstr "" -#. Option for the 'Type' (Select) field in DocType 'CRM View Settings' -#: crm/fcrm/doctype/crm_view_settings/crm_view_settings.json +#. Option for the 'Type' (Select) field in PageType 'CRM View Settings' +#: crm/fcrm/pagetype/crm_view_settings/crm_view_settings.json msgid "kanban" msgstr "" -#: crm/api/doc.py:40 crm/api/doc.py:158 crm/api/doc.py:503 +#: crm/api/pg.py:40 crm/api/pg.py:158 crm/api/pg.py:503 msgid "label" msgstr "" @@ -6184,8 +6184,8 @@ msgstr "" msgid "leads" msgstr "zájemci" -#. Option for the 'Type' (Select) field in DocType 'CRM View Settings' -#: crm/fcrm/doctype/crm_view_settings/crm_view_settings.json +#. Option for the 'Type' (Select) field in PageType 'CRM View Settings' +#: crm/fcrm/pagetype/crm_view_settings/crm_view_settings.json msgid "list" msgstr "" @@ -6206,17 +6206,17 @@ msgstr "" msgid "operator" msgstr "" -#. Option for the 'Color' (Select) field in DocType 'CRM Deal Status' -#. Option for the 'Color' (Select) field in DocType 'CRM Lead Status' -#: crm/fcrm/doctype/crm_deal_status/crm_deal_status.json -#: crm/fcrm/doctype/crm_lead_status/crm_lead_status.json +#. Option for the 'Color' (Select) field in PageType 'CRM Deal Status' +#. Option for the 'Color' (Select) field in PageType 'CRM Lead Status' +#: crm/fcrm/pagetype/crm_deal_status/crm_deal_status.json +#: crm/fcrm/pagetype/crm_lead_status/crm_lead_status.json msgid "orange" msgstr "" -#. Option for the 'Color' (Select) field in DocType 'CRM Deal Status' -#. Option for the 'Color' (Select) field in DocType 'CRM Lead Status' -#: crm/fcrm/doctype/crm_deal_status/crm_deal_status.json -#: crm/fcrm/doctype/crm_lead_status/crm_lead_status.json +#. Option for the 'Color' (Select) field in PageType 'CRM Deal Status' +#. Option for the 'Color' (Select) field in PageType 'CRM Lead Status' +#: crm/fcrm/pagetype/crm_deal_status/crm_deal_status.json +#: crm/fcrm/pagetype/crm_lead_status/crm_lead_status.json msgid "pink" msgstr "" @@ -6232,10 +6232,10 @@ msgstr "" msgid "public" msgstr "" -#. Option for the 'Color' (Select) field in DocType 'CRM Deal Status' -#. Option for the 'Color' (Select) field in DocType 'CRM Lead Status' -#: crm/fcrm/doctype/crm_deal_status/crm_deal_status.json -#: crm/fcrm/doctype/crm_lead_status/crm_lead_status.json +#. Option for the 'Color' (Select) field in PageType 'CRM Deal Status' +#. Option for the 'Color' (Select) field in PageType 'CRM Lead Status' +#: crm/fcrm/pagetype/crm_deal_status/crm_deal_status.json +#: crm/fcrm/pagetype/crm_lead_status/crm_lead_status.json msgid "purple" msgstr "" @@ -6243,17 +6243,17 @@ msgstr "" msgid "received a whatsapp message in {0}" msgstr "" -#. Option for the 'Color' (Select) field in DocType 'CRM Deal Status' -#. Option for the 'Color' (Select) field in DocType 'CRM Lead Status' -#: crm/fcrm/doctype/crm_deal_status/crm_deal_status.json -#: crm/fcrm/doctype/crm_lead_status/crm_lead_status.json +#. Option for the 'Color' (Select) field in PageType 'CRM Deal Status' +#. Option for the 'Color' (Select) field in PageType 'CRM Lead Status' +#: crm/fcrm/pagetype/crm_deal_status/crm_deal_status.json +#: crm/fcrm/pagetype/crm_lead_status/crm_lead_status.json msgid "red" msgstr "" -#. Option for the 'Color' (Select) field in DocType 'CRM Deal Status' -#. Option for the 'Color' (Select) field in DocType 'CRM Lead Status' -#: crm/fcrm/doctype/crm_deal_status/crm_deal_status.json -#: crm/fcrm/doctype/crm_lead_status/crm_lead_status.json +#. Option for the 'Color' (Select) field in PageType 'CRM Deal Status' +#. Option for the 'Color' (Select) field in PageType 'CRM Lead Status' +#: crm/fcrm/pagetype/crm_deal_status/crm_deal_status.json +#: crm/fcrm/pagetype/crm_lead_status/crm_lead_status.json msgid "teal" msgstr "" @@ -6266,10 +6266,10 @@ msgstr "" msgid "tomorrow" msgstr "zítra" -#. Option for the 'Color' (Select) field in DocType 'CRM Deal Status' -#. Option for the 'Color' (Select) field in DocType 'CRM Lead Status' -#: crm/fcrm/doctype/crm_deal_status/crm_deal_status.json -#: crm/fcrm/doctype/crm_lead_status/crm_lead_status.json +#. Option for the 'Color' (Select) field in PageType 'CRM Deal Status' +#. Option for the 'Color' (Select) field in PageType 'CRM Lead Status' +#: crm/fcrm/pagetype/crm_deal_status/crm_deal_status.json +#: crm/fcrm/pagetype/crm_lead_status/crm_lead_status.json msgid "violet" msgstr "" @@ -6278,10 +6278,10 @@ msgstr "" msgid "which are not compatible with this UI, you will need to recreate the conditions here if you want to manage and add new conditions from this UI." msgstr "" -#. Option for the 'Color' (Select) field in DocType 'CRM Deal Status' -#. Option for the 'Color' (Select) field in DocType 'CRM Lead Status' -#: crm/fcrm/doctype/crm_deal_status/crm_deal_status.json -#: crm/fcrm/doctype/crm_lead_status/crm_lead_status.json +#. Option for the 'Color' (Select) field in PageType 'CRM Deal Status' +#. Option for the 'Color' (Select) field in PageType 'CRM Lead Status' +#: crm/fcrm/pagetype/crm_deal_status/crm_deal_status.json +#: crm/fcrm/pagetype/crm_lead_status/crm_lead_status.json msgid "yellow" msgstr "" @@ -6379,7 +6379,7 @@ msgid "⚠️ Method \"{0}\" not found in class." msgstr "" #: frontend/src/data/script.js:83 -msgid "⚠️ No class found for doctype: {0}, it is mandatory to have a class for the parent doctype. it can be empty, but it should be present." +msgid "⚠️ No class found for pagetype: {0}, it is mandatory to have a class for the parent pagetype. it can be empty, but it should be present." msgstr "" #: frontend/src/data/script.js:180 diff --git a/crm/locale/da.po b/crm/locale/da.po index b26633fe..eb73c9da 100644 --- a/crm/locale/da.po +++ b/crm/locale/da.po @@ -1,6 +1,6 @@ msgid "" msgstr "" -"Project-Id-Version: frappe\n" +"Project-Id-Version: jingrow\n" "Report-Msgid-Bugs-To: shariq@jingrow.com\n" "POT-Creation-Date: 2025-09-21 09:35+0000\n" "PO-Revision-Date: 2025-09-22 20:42\n" @@ -11,10 +11,10 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Generated-By: Babel 2.16.0\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -"X-Crowdin-Project: frappe\n" +"X-Crowdin-Project: jingrow\n" "X-Crowdin-Project-ID: 639578\n" "X-Crowdin-Language: da\n" -"X-Crowdin-File: /[frappe.crm] develop/crm/locale/main.pot\n" +"X-Crowdin-File: /[jingrow.crm] develop/crm/locale/main.pot\n" "X-Crowdin-File-ID: 97\n" "Language: da_DK\n" @@ -55,73 +55,73 @@ msgstr "1 uge siden" msgid "1 year ago" msgstr "1 år siden" -#. Option for the 'No. of Employees' (Select) field in DocType 'CRM Deal' -#. Option for the 'No. of Employees' (Select) field in DocType 'CRM Lead' -#. Option for the 'No. of Employees' (Select) field in DocType 'CRM +#. Option for the 'No. of Employees' (Select) field in PageType 'CRM Deal' +#. Option for the 'No. of Employees' (Select) field in PageType 'CRM Lead' +#. Option for the 'No. of Employees' (Select) field in PageType 'CRM #. Organization' -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_lead/crm_lead.json -#: crm/fcrm/doctype/crm_organization/crm_organization.json +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_lead/crm_lead.json +#: crm/fcrm/pagetype/crm_organization/crm_organization.json msgid "1-10" msgstr "1-10" -#. Option for the 'No. of Employees' (Select) field in DocType 'CRM Deal' -#. Option for the 'No. of Employees' (Select) field in DocType 'CRM Lead' -#. Option for the 'No. of Employees' (Select) field in DocType 'CRM +#. Option for the 'No. of Employees' (Select) field in PageType 'CRM Deal' +#. Option for the 'No. of Employees' (Select) field in PageType 'CRM Lead' +#. Option for the 'No. of Employees' (Select) field in PageType 'CRM #. Organization' -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_lead/crm_lead.json -#: crm/fcrm/doctype/crm_organization/crm_organization.json +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_lead/crm_lead.json +#: crm/fcrm/pagetype/crm_organization/crm_organization.json msgid "1000+" msgstr "1000+" -#. Option for the 'No. of Employees' (Select) field in DocType 'CRM Deal' -#. Option for the 'No. of Employees' (Select) field in DocType 'CRM Lead' -#. Option for the 'No. of Employees' (Select) field in DocType 'CRM +#. Option for the 'No. of Employees' (Select) field in PageType 'CRM Deal' +#. Option for the 'No. of Employees' (Select) field in PageType 'CRM Lead' +#. Option for the 'No. of Employees' (Select) field in PageType 'CRM #. Organization' -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_lead/crm_lead.json -#: crm/fcrm/doctype/crm_organization/crm_organization.json +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_lead/crm_lead.json +#: crm/fcrm/pagetype/crm_organization/crm_organization.json msgid "11-50" msgstr "11-50" -#. Option for the 'No. of Employees' (Select) field in DocType 'CRM Deal' -#. Option for the 'No. of Employees' (Select) field in DocType 'CRM Lead' -#. Option for the 'No. of Employees' (Select) field in DocType 'CRM +#. Option for the 'No. of Employees' (Select) field in PageType 'CRM Deal' +#. Option for the 'No. of Employees' (Select) field in PageType 'CRM Lead' +#. Option for the 'No. of Employees' (Select) field in PageType 'CRM #. Organization' -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_lead/crm_lead.json -#: crm/fcrm/doctype/crm_organization/crm_organization.json +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_lead/crm_lead.json +#: crm/fcrm/pagetype/crm_organization/crm_organization.json msgid "201-500" msgstr "201-500" -#. Option for the 'No. of Employees' (Select) field in DocType 'CRM Deal' -#. Option for the 'No. of Employees' (Select) field in DocType 'CRM Lead' -#. Option for the 'No. of Employees' (Select) field in DocType 'CRM +#. Option for the 'No. of Employees' (Select) field in PageType 'CRM Deal' +#. Option for the 'No. of Employees' (Select) field in PageType 'CRM Lead' +#. Option for the 'No. of Employees' (Select) field in PageType 'CRM #. Organization' -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_lead/crm_lead.json -#: crm/fcrm/doctype/crm_organization/crm_organization.json +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_lead/crm_lead.json +#: crm/fcrm/pagetype/crm_organization/crm_organization.json msgid "501-1000" msgstr "501-1000" -#. Option for the 'No. of Employees' (Select) field in DocType 'CRM Deal' -#. Option for the 'No. of Employees' (Select) field in DocType 'CRM Lead' -#. Option for the 'No. of Employees' (Select) field in DocType 'CRM +#. Option for the 'No. of Employees' (Select) field in PageType 'CRM Deal' +#. Option for the 'No. of Employees' (Select) field in PageType 'CRM Lead' +#. Option for the 'No. of Employees' (Select) field in PageType 'CRM #. Organization' -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_lead/crm_lead.json -#: crm/fcrm/doctype/crm_organization/crm_organization.json +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_lead/crm_lead.json +#: crm/fcrm/pagetype/crm_organization/crm_organization.json msgid "51-200" msgstr "51-200" -#. Paragraph text in the Frappe CRM Workspace -#: crm/fcrm/workspace/frappe_crm/frappe_crm.json +#. Paragraph text in the Jingrow CRM Workspace +#: crm/fcrm/workspace/jingrow_crm/jingrow_crm.json msgid "META" msgstr "META" -#. Paragraph text in the Frappe CRM Workspace -#: crm/fcrm/workspace/frappe_crm/frappe_crm.json +#. Paragraph text in the Jingrow CRM Workspace +#: crm/fcrm/workspace/jingrow_crm/jingrow_crm.json msgid "SHORTCUTS" msgstr "GENVEJE" @@ -130,8 +130,8 @@ msgstr "GENVEJE" msgid "

Dear {{ lead_name }},

\\n\\n

This is a reminder for the payment of {{ grand_total }}.

\\n\\n

Thanks,

\\n

Frappé

" msgstr "

Kære {{ lead_name }},

\\n\\n

Dette er en påmindelse om betaling af {{ grand_total }}.

\\n\\n

Tak for det,

\\n

Frappé

" -#. Header text in the Frappe CRM Workspace -#: crm/fcrm/workspace/frappe_crm/frappe_crm.json +#. Header text in the Jingrow CRM Workspace +#: crm/fcrm/workspace/jingrow_crm/jingrow_crm.json msgid "PORTAL" msgstr "PORTAL" @@ -139,7 +139,7 @@ msgstr "PORTAL" msgid "@John, can you please check this?" msgstr "@John, kan du tjekke dette?" -#: crm/fcrm/doctype/crm_lead/crm_lead.py:56 +#: crm/fcrm/pagetype/crm_lead/crm_lead.py:56 msgid "A Lead requires either a person's name or an organization's name" msgstr "En Lead kræver enten en persons navn eller en organisations navn" @@ -147,14 +147,14 @@ msgstr "En Lead kræver enten en persons navn eller en organisations navn" msgid "A new account has been created for you at {0}" msgstr "En ny konto er blevet oprettet til dig på {0}" -#. Label of the api_key (Data) field in DocType 'CRM Exotel Settings' -#. Label of the api_key (Data) field in DocType 'CRM Twilio Settings' -#. Label of the api_key (Data) field in DocType 'ERPNext CRM Settings' -#. Label of the api_key (Data) field in DocType 'Helpdesk CRM Settings' -#: crm/fcrm/doctype/crm_exotel_settings/crm_exotel_settings.json -#: crm/fcrm/doctype/crm_twilio_settings/crm_twilio_settings.json -#: crm/fcrm/doctype/erpnext_crm_settings/erpnext_crm_settings.json -#: crm/fcrm/doctype/helpdesk_crm_settings/helpdesk_crm_settings.json +#. Label of the api_key (Data) field in PageType 'CRM Exotel Settings' +#. Label of the api_key (Data) field in PageType 'CRM Twilio Settings' +#. Label of the api_key (Data) field in PageType 'ERPNext CRM Settings' +#. Label of the api_key (Data) field in PageType 'Helpdesk CRM Settings' +#: crm/fcrm/pagetype/crm_exotel_settings/crm_exotel_settings.json +#: crm/fcrm/pagetype/crm_twilio_settings/crm_twilio_settings.json +#: crm/fcrm/pagetype/erpnext_crm_settings/erpnext_crm_settings.json +#: crm/fcrm/pagetype/helpdesk_crm_settings/helpdesk_crm_settings.json msgid "API Key" msgstr "API Nøgle" @@ -162,17 +162,17 @@ msgstr "API Nøgle" msgid "API Key is required" msgstr "API Nøgle er påkrævet" -#. Label of the api_secret (Password) field in DocType 'CRM Twilio Settings' -#. Label of the api_secret (Password) field in DocType 'ERPNext CRM Settings' -#. Label of the api_secret (Password) field in DocType 'Helpdesk CRM Settings' -#: crm/fcrm/doctype/crm_twilio_settings/crm_twilio_settings.json -#: crm/fcrm/doctype/erpnext_crm_settings/erpnext_crm_settings.json -#: crm/fcrm/doctype/helpdesk_crm_settings/helpdesk_crm_settings.json +#. Label of the api_secret (Password) field in PageType 'CRM Twilio Settings' +#. Label of the api_secret (Password) field in PageType 'ERPNext CRM Settings' +#. Label of the api_secret (Password) field in PageType 'Helpdesk CRM Settings' +#: crm/fcrm/pagetype/crm_twilio_settings/crm_twilio_settings.json +#: crm/fcrm/pagetype/erpnext_crm_settings/erpnext_crm_settings.json +#: crm/fcrm/pagetype/helpdesk_crm_settings/helpdesk_crm_settings.json msgid "API Secret" msgstr "API Hemmelighed" -#. Label of the api_token (Password) field in DocType 'CRM Exotel Settings' -#: crm/fcrm/doctype/crm_exotel_settings/crm_exotel_settings.json +#. Label of the api_token (Password) field in PageType 'CRM Exotel Settings' +#: crm/fcrm/pagetype/crm_exotel_settings/crm_exotel_settings.json msgid "API Token" msgstr "API Token" @@ -180,7 +180,7 @@ msgstr "API Token" msgid "Accept" msgstr "Accepter" -#: crm/fcrm/doctype/crm_invitation/crm_invitation.js:7 +#: crm/fcrm/pagetype/crm_invitation/crm_invitation.js:7 msgid "Accept Invitation" msgstr "Accepter Invitation" @@ -188,22 +188,22 @@ msgstr "Accepter Invitation" msgid "Accept call" msgstr "Accepter opkald" -#. Option for the 'Status' (Select) field in DocType 'CRM Invitation' -#: crm/fcrm/doctype/crm_invitation/crm_invitation.json +#. Option for the 'Status' (Select) field in PageType 'CRM Invitation' +#: crm/fcrm/pagetype/crm_invitation/crm_invitation.json msgid "Accepted" msgstr "Accepteret" -#. Label of the accepted_at (Datetime) field in DocType 'CRM Invitation' -#: crm/fcrm/doctype/crm_invitation/crm_invitation.json +#. Label of the accepted_at (Datetime) field in PageType 'CRM Invitation' +#: crm/fcrm/pagetype/crm_invitation/crm_invitation.json msgid "Accepted At" msgstr "Accepteret" -#. Label of the access_key (Data) field in DocType 'FCRM Settings' -#: crm/fcrm/doctype/fcrm_settings/fcrm_settings.json +#. Label of the access_key (Data) field in PageType 'FCRM Settings' +#: crm/fcrm/pagetype/fcrm_settings/fcrm_settings.json msgid "Access Key" msgstr "Adgangs Nøgle" -#: crm/fcrm/doctype/fcrm_settings/fcrm_settings.py:156 +#: crm/fcrm/pagetype/fcrm_settings/fcrm_settings.py:156 msgid "Access Key is required for Service Provider: {0}" msgstr "Adgangsnøgle kræves for tjenesteudbyder: {0}" @@ -219,10 +219,10 @@ msgstr "Adgangsnøgle til Exchangerate Host. Kræves for at hente valutakurser." msgid "Account Name" msgstr "Konto Navn" -#. Label of the account_sid (Data) field in DocType 'CRM Exotel Settings' -#. Label of the account_sid (Data) field in DocType 'CRM Twilio Settings' -#: crm/fcrm/doctype/crm_exotel_settings/crm_exotel_settings.json -#: crm/fcrm/doctype/crm_twilio_settings/crm_twilio_settings.json +#. Label of the account_sid (Data) field in PageType 'CRM Exotel Settings' +#. Label of the account_sid (Data) field in PageType 'CRM Twilio Settings' +#: crm/fcrm/pagetype/crm_exotel_settings/crm_exotel_settings.json +#: crm/fcrm/pagetype/crm_twilio_settings/crm_twilio_settings.json msgid "Account SID" msgstr "Konto SID" @@ -296,9 +296,9 @@ msgstr "Tilføj Sortering" msgid "Add Tab" msgstr "Tilføj Faneblad" -#. Label of the add_weekly_holidays_section (Section Break) field in DocType +#. Label of the add_weekly_holidays_section (Section Break) field in PageType #. 'CRM Holiday List' -#: crm/fcrm/doctype/crm_holiday_list/crm_holiday_list.json +#: crm/fcrm/pagetype/crm_holiday_list/crm_holiday_list.json msgid "Add Weekly Holidays" msgstr "Tilføj Ugentlige Helligdage" @@ -363,8 +363,8 @@ msgstr "Tilføj note" msgid "Add sample data" msgstr "Tilføj eksempel data" -#. Description of the 'Icon' (Code) field in DocType 'CRM Dropdown Item' -#: crm/fcrm/doctype/crm_dropdown_item/crm_dropdown_item.json +#. Description of the 'Icon' (Code) field in PageType 'CRM Dropdown Item' +#: crm/fcrm/pagetype/crm_dropdown_item/crm_dropdown_item.json msgid "Add svg code or use feather icons e.g 'settings'" msgstr "Tilføj svg-kode eller brug fjerikoner, f.eks. 'indstillinger'" @@ -372,8 +372,8 @@ msgstr "Tilføj svg-kode eller brug fjerikoner, f.eks. 'indstillinger'" msgid "Add task" msgstr "Tilføj opgave" -#. Label of the add_to_holidays (Button) field in DocType 'CRM Holiday List' -#: crm/fcrm/doctype/crm_holiday_list/crm_holiday_list.json +#. Label of the add_to_holidays (Button) field in PageType 'CRM Holiday List' +#: crm/fcrm/pagetype/crm_holiday_list/crm_holiday_list.json msgid "Add to Holidays" msgstr "Tilføj til Helligdage" @@ -385,8 +385,8 @@ msgstr "Tilføj din første kommentar" msgid "Add, edit, and manage email templates for various CRM communications" msgstr "Tilføj, rediger og administrer e-mail-skabeloner til forskellige CRM-kommunikationer" -#. Label of the address (Link) field in DocType 'CRM Organization' -#: crm/fcrm/doctype/crm_organization/crm_organization.json +#. Label of the address (Link) field in PageType 'CRM Organization' +#: crm/fcrm/pagetype/crm_organization/crm_organization.json msgid "Address" msgstr "Adresse" @@ -406,14 +406,14 @@ msgid "Agent is unavailable to take the call, please call after some time." msgstr "Agenten kan ikke besvare opkaldet. Ring venligst senere." #. Name of a role -#: crm/fcrm/doctype/crm_exotel_settings/crm_exotel_settings.json -#: crm/fcrm/doctype/crm_fields_layout/crm_fields_layout.json -#: crm/fcrm/doctype/crm_form_script/crm_form_script.json -#: crm/fcrm/doctype/crm_industry/crm_industry.json -#: crm/fcrm/doctype/crm_lead/crm_lead.json -#: crm/fcrm/doctype/crm_lead_source/crm_lead_source.json -#: crm/fcrm/doctype/crm_lead_status/crm_lead_status.json -#: crm/fcrm/doctype/fcrm_settings/fcrm_settings.json +#: crm/fcrm/pagetype/crm_exotel_settings/crm_exotel_settings.json +#: crm/fcrm/pagetype/crm_fields_layout/crm_fields_layout.json +#: crm/fcrm/pagetype/crm_form_script/crm_form_script.json +#: crm/fcrm/pagetype/crm_industry/crm_industry.json +#: crm/fcrm/pagetype/crm_lead/crm_lead.json +#: crm/fcrm/pagetype/crm_lead_source/crm_lead_source.json +#: crm/fcrm/pagetype/crm_lead_status/crm_lead_status.json +#: crm/fcrm/pagetype/fcrm_settings/fcrm_settings.json #: frontend/src/components/Settings/EmailTemplate/EmailTemplates.vue:76 #: frontend/src/components/Settings/Users.vue:85 msgid "All" @@ -426,16 +426,16 @@ msgstr "Alle" msgid "All day" msgstr "Hele dagen" -#. Label of the amount (Currency) field in DocType 'CRM Products' -#: crm/fcrm/doctype/crm_products/crm_products.json +#. Label of the amount (Currency) field in PageType 'CRM Products' +#: crm/fcrm/pagetype/crm_products/crm_products.json #: frontend/src/pages/Contact.vue:499 frontend/src/pages/MobileContact.vue:507 #: frontend/src/pages/MobileOrganization.vue:451 #: frontend/src/pages/Organization.vue:472 msgid "Amount" msgstr "Beløb" -#. Description of the 'Net Amount' (Currency) field in DocType 'CRM Products' -#: crm/fcrm/doctype/crm_products/crm_products.json +#. Description of the 'Net Amount' (Currency) field in PageType 'CRM Products' +#: crm/fcrm/pagetype/crm_products/crm_products.json msgid "Amount after discount" msgstr "Beløb efter rabat" @@ -447,13 +447,13 @@ msgstr "Der opstod en fejl" msgid "An error occurred while updating the document" msgstr "Der opstod en fejl under opdatering af dokumentet" -#. Description of the 'Favicon' (Attach) field in DocType 'FCRM Settings' -#: crm/fcrm/doctype/fcrm_settings/fcrm_settings.json +#. Description of the 'Favicon' (Attach) field in PageType 'FCRM Settings' +#: crm/fcrm/pagetype/fcrm_settings/fcrm_settings.json msgid "An icon file with .ico extension. Should be 16 x 16 px. Generated using a favicon generator. [favicon-generator.org]" msgstr "En ikonfil med filtypenavnet .ico. Skal være 16 x 16 px. Genereret ved hjælp af en favicon-generator. [favicon-generator.org]" -#. Description of the 'Logo' (Attach) field in DocType 'FCRM Settings' -#: crm/fcrm/doctype/fcrm_settings/fcrm_settings.json +#. Description of the 'Logo' (Attach) field in PageType 'FCRM Settings' +#: crm/fcrm/pagetype/fcrm_settings/fcrm_settings.json msgid "An image with 1:1 & 2:1 ratio is preferred" msgstr "Et billede med forholdet 1:1 og 2:1 foretrækkes" @@ -461,12 +461,12 @@ msgstr "Et billede med forholdet 1:1 og 2:1 foretrækkes" msgid "And" msgstr "Og" -#. Label of the annual_revenue (Currency) field in DocType 'CRM Deal' -#. Label of the annual_revenue (Currency) field in DocType 'CRM Lead' -#. Label of the annual_revenue (Currency) field in DocType 'CRM Organization' -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_lead/crm_lead.json -#: crm/fcrm/doctype/crm_organization/crm_organization.json +#. Label of the annual_revenue (Currency) field in PageType 'CRM Deal' +#. Label of the annual_revenue (Currency) field in PageType 'CRM Lead' +#. Label of the annual_revenue (Currency) field in PageType 'CRM Organization' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_lead/crm_lead.json +#: crm/fcrm/pagetype/crm_organization/crm_organization.json msgid "Annual Revenue" msgstr "Årlig Omsætning" @@ -488,13 +488,13 @@ msgstr "" msgid "Apply" msgstr "Anvend" -#. Label of the apply_on (Link) field in DocType 'CRM Service Level Agreement' -#: crm/fcrm/doctype/crm_service_level_agreement/crm_service_level_agreement.json +#. Label of the apply_on (Link) field in PageType 'CRM Service Level Agreement' +#: crm/fcrm/pagetype/crm_service_level_agreement/crm_service_level_agreement.json msgid "Apply On" msgstr "Anvend On" -#. Label of the view (Select) field in DocType 'CRM Form Script' -#: crm/fcrm/doctype/crm_form_script/crm_form_script.json +#. Label of the view (Select) field in PageType 'CRM Form Script' +#: crm/fcrm/pagetype/crm_form_script/crm_form_script.json msgid "Apply To" msgstr "Anvend For" @@ -540,10 +540,10 @@ msgid "Are you sure you want to go back? Unsaved changes will be lost." msgstr "" #: frontend/src/composables/frappecloud.js:24 -msgid "Are you sure you want to login to your Frappe Cloud dashboard?" +msgid "Are you sure you want to login to your Jingrow Cloud dashboard?" msgstr "" -#: crm/fcrm/doctype/erpnext_crm_settings/erpnext_crm_settings.js:9 +#: crm/fcrm/pagetype/erpnext_crm_settings/erpnext_crm_settings.js:9 msgid "Are you sure you want to reset 'Create Quotation from CRM Deal' Form Script?" msgstr "" @@ -555,7 +555,7 @@ msgstr "" msgid "Are you sure you want to unlink {0} linked item(s)?" msgstr "" -#: crm/fcrm/doctype/fcrm_settings/fcrm_settings.py:193 +#: crm/fcrm/pagetype/fcrm_settings/fcrm_settings.py:193 msgid "Ask your manager to set up the Exchange Rate Provider, as default provider does not support currency conversion for {0} to {1}." msgstr "" @@ -581,8 +581,8 @@ msgstr "Tildel til" msgid "Assign to me" msgstr "Tildel til mig" -#. Label of the assigned_to (Link) field in DocType 'CRM Task' -#: crm/fcrm/doctype/crm_task/crm_task.json +#. Label of the assigned_to (Link) field in PageType 'CRM Task' +#: crm/fcrm/pagetype/crm_task/crm_task.json msgid "Assigned To" msgstr "Tildelt Til" @@ -594,13 +594,13 @@ msgstr "Tildelte Regler" msgid "Assignees" msgstr "Tildelte" -#. Option for the 'Type' (Select) field in DocType 'CRM Notification' -#: crm/fcrm/doctype/crm_notification/crm_notification.json +#. Option for the 'Type' (Select) field in PageType 'CRM Notification' +#: crm/fcrm/pagetype/crm_notification/crm_notification.json msgid "Assignment" msgstr "Tildeling" -#. Label of a shortcut in the Frappe CRM Workspace -#: crm/fcrm/workspace/frappe_crm/frappe_crm.json +#. Label of a shortcut in the Jingrow CRM Workspace +#: crm/fcrm/workspace/jingrow_crm/jingrow_crm.json msgid "Assignment Rule" msgstr "Tildeling Regel" @@ -678,14 +678,14 @@ msgstr "Vedhæftninger" msgid "Attendees" msgstr "" -#. Label of the auth_token (Password) field in DocType 'CRM Twilio Settings' -#: crm/fcrm/doctype/crm_twilio_settings/crm_twilio_settings.json +#. Label of the auth_token (Password) field in PageType 'CRM Twilio Settings' +#: crm/fcrm/pagetype/crm_twilio_settings/crm_twilio_settings.json msgid "Auth Token" msgstr "Auth Token" -#. Label of the auto_update_expected_deal_value (Check) field in DocType 'FCRM +#. Label of the auto_update_expected_deal_value (Check) field in PageType 'FCRM #. Settings' -#: crm/fcrm/doctype/fcrm_settings/fcrm_settings.json +#: crm/fcrm/pagetype/fcrm_settings/fcrm_settings.json msgid "Auto Update Expected Deal Value" msgstr "" @@ -702,8 +702,8 @@ msgid "Auto update of expected deal value enabled" msgstr "" #. Description of the 'Auto Update Expected Deal Value' (Check) field in -#. DocType 'FCRM Settings' -#: crm/fcrm/doctype/fcrm_settings/fcrm_settings.json +#. PageType 'FCRM Settings' +#: crm/fcrm/pagetype/fcrm_settings/fcrm_settings.json #: frontend/src/components/Settings/ForecastingSettings.vue:46 msgid "Automatically update \"Expected Deal Value\" based on the total value of associated products in a deal" msgstr "" @@ -793,8 +793,8 @@ msgstr "Tilbage" msgid "Back to file upload" msgstr "Tilbage til fil upload" -#. Option for the 'Status' (Select) field in DocType 'CRM Task' -#: crm/fcrm/doctype/crm_task/crm_task.json +#. Option for the 'Status' (Select) field in PageType 'CRM Task' +#: crm/fcrm/pagetype/crm_task/crm_task.json msgid "Backlog" msgstr "Efterslæb" @@ -818,8 +818,8 @@ msgstr "Varemærke navn" msgid "Brand settings" msgstr "Varemærke Indstillinger" -#. Label of the branding_tab (Tab Break) field in DocType 'FCRM Settings' -#: crm/fcrm/doctype/fcrm_settings/fcrm_settings.json +#. Label of the branding_tab (Tab Break) field in PageType 'FCRM Settings' +#: crm/fcrm/pagetype/fcrm_settings/fcrm_settings.json msgid "Branding" msgstr "Branding" @@ -827,8 +827,8 @@ msgstr "Branding" msgid "Bulk Edit" msgstr "Masse Rediger" -#. Option for the 'Status' (Select) field in DocType 'CRM Call Log' -#: crm/fcrm/doctype/crm_call_log/crm_call_log.json +#. Option for the 'Status' (Select) field in PageType 'CRM Call Log' +#: crm/fcrm/pagetype/crm_call_log/crm_call_log.json msgid "Busy" msgstr "Optaget" @@ -838,174 +838,174 @@ msgstr "Optaget" msgid "CC" msgstr "CC" -#. Name of a DocType -#: crm/fcrm/doctype/crm_call_log/crm_call_log.json +#. Name of a PageType +#: crm/fcrm/pagetype/crm_call_log/crm_call_log.json msgid "CRM Call Log" msgstr "Opkaldslog" -#. Name of a DocType -#: crm/fcrm/doctype/crm_communication_status/crm_communication_status.json +#. Name of a PageType +#: crm/fcrm/pagetype/crm_communication_status/crm_communication_status.json msgid "CRM Communication Status" msgstr "Kommunikationsstatus" -#. Name of a DocType -#: crm/fcrm/doctype/crm_contacts/crm_contacts.json +#. Name of a PageType +#: crm/fcrm/pagetype/crm_contacts/crm_contacts.json msgid "CRM Contacts" msgstr "Kontakter" -#. Name of a DocType -#: crm/fcrm/doctype/crm_dashboard/crm_dashboard.json +#. Name of a PageType +#: crm/fcrm/pagetype/crm_dashboard/crm_dashboard.json #: frontend/src/pages/Dashboard.vue:304 msgid "CRM Dashboard" msgstr "Oversigt Panel" -#. Name of a DocType -#: crm/fcrm/doctype/crm_deal/crm_deal.json +#. Name of a PageType +#: crm/fcrm/pagetype/crm_deal/crm_deal.json msgid "CRM Deal" msgstr "Forretning" -#. Name of a DocType -#: crm/fcrm/doctype/crm_deal_status/crm_deal_status.json +#. Name of a PageType +#: crm/fcrm/pagetype/crm_deal_status/crm_deal_status.json msgid "CRM Deal Status" msgstr "Aftale Status" -#. Name of a DocType -#: crm/fcrm/doctype/crm_dropdown_item/crm_dropdown_item.json +#. Name of a PageType +#: crm/fcrm/pagetype/crm_dropdown_item/crm_dropdown_item.json msgid "CRM Dropdown Item" msgstr "" -#. Name of a DocType -#: crm/fcrm/doctype/crm_exotel_settings/crm_exotel_settings.json +#. Name of a PageType +#: crm/fcrm/pagetype/crm_exotel_settings/crm_exotel_settings.json msgid "CRM Exotel Settings" msgstr "Exotel Indstillinger" -#. Name of a DocType -#: crm/fcrm/doctype/crm_fields_layout/crm_fields_layout.json +#. Name of a PageType +#: crm/fcrm/pagetype/crm_fields_layout/crm_fields_layout.json msgid "CRM Fields Layout" msgstr "Feltlayout" -#. Name of a DocType -#: crm/fcrm/doctype/crm_form_script/crm_form_script.json +#. Name of a PageType +#: crm/fcrm/pagetype/crm_form_script/crm_form_script.json msgid "CRM Form Script" msgstr "Formular Script" -#. Name of a DocType -#: crm/fcrm/doctype/crm_global_settings/crm_global_settings.json +#. Name of a PageType +#: crm/fcrm/pagetype/crm_global_settings/crm_global_settings.json msgid "CRM Global Settings" msgstr "Globale Indstillinger" -#. Name of a DocType -#: crm/fcrm/doctype/crm_holiday/crm_holiday.json +#. Name of a PageType +#: crm/fcrm/pagetype/crm_holiday/crm_holiday.json msgid "CRM Holiday" msgstr "Ferie" -#. Name of a DocType -#: crm/fcrm/doctype/crm_holiday_list/crm_holiday_list.json +#. Name of a PageType +#: crm/fcrm/pagetype/crm_holiday_list/crm_holiday_list.json msgid "CRM Holiday List" msgstr "Ferie Liste" -#. Name of a DocType -#: crm/fcrm/doctype/crm_industry/crm_industry.json +#. Name of a PageType +#: crm/fcrm/pagetype/crm_industry/crm_industry.json msgid "CRM Industry" msgstr "Branch" -#. Name of a DocType -#: crm/fcrm/doctype/crm_invitation/crm_invitation.json +#. Name of a PageType +#: crm/fcrm/pagetype/crm_invitation/crm_invitation.json msgid "CRM Invitation" msgstr "Invitation" -#. Name of a DocType -#: crm/fcrm/doctype/crm_lead/crm_lead.json +#. Name of a PageType +#: crm/fcrm/pagetype/crm_lead/crm_lead.json msgid "CRM Lead" msgstr "Potentiel Kunde" -#. Name of a DocType -#: crm/fcrm/doctype/crm_lead_source/crm_lead_source.json +#. Name of a PageType +#: crm/fcrm/pagetype/crm_lead_source/crm_lead_source.json msgid "CRM Lead Source" msgstr "" -#. Name of a DocType -#: crm/fcrm/doctype/crm_lead_status/crm_lead_status.json +#. Name of a PageType +#: crm/fcrm/pagetype/crm_lead_status/crm_lead_status.json msgid "CRM Lead Status" msgstr "" -#. Name of a DocType -#: crm/fcrm/doctype/crm_lost_reason/crm_lost_reason.json +#. Name of a PageType +#: crm/fcrm/pagetype/crm_lost_reason/crm_lost_reason.json msgid "CRM Lost Reason" msgstr "" -#. Name of a DocType -#: crm/fcrm/doctype/crm_notification/crm_notification.json +#. Name of a PageType +#: crm/fcrm/pagetype/crm_notification/crm_notification.json msgid "CRM Notification" msgstr "" -#. Name of a DocType -#: crm/fcrm/doctype/crm_organization/crm_organization.json +#. Name of a PageType +#: crm/fcrm/pagetype/crm_organization/crm_organization.json msgid "CRM Organization" msgstr "" -#. Label of a shortcut in the Frappe CRM Workspace -#: crm/fcrm/workspace/frappe_crm/frappe_crm.json +#. Label of a shortcut in the Jingrow CRM Workspace +#: crm/fcrm/workspace/jingrow_crm/jingrow_crm.json msgid "CRM Portal Page" msgstr "Portal Side" -#. Name of a DocType -#: crm/fcrm/doctype/crm_product/crm_product.json +#. Name of a PageType +#: crm/fcrm/pagetype/crm_product/crm_product.json msgid "CRM Product" msgstr "Artikel" -#. Name of a DocType -#: crm/fcrm/doctype/crm_products/crm_products.json +#. Name of a PageType +#: crm/fcrm/pagetype/crm_products/crm_products.json msgid "CRM Products" msgstr "Artikler" -#. Name of a DocType -#: crm/fcrm/doctype/crm_service_day/crm_service_day.json +#. Name of a PageType +#: crm/fcrm/pagetype/crm_service_day/crm_service_day.json msgid "CRM Service Day" msgstr "Service Dag" -#. Name of a DocType -#: crm/fcrm/doctype/crm_service_level_agreement/crm_service_level_agreement.json +#. Name of a PageType +#: crm/fcrm/pagetype/crm_service_level_agreement/crm_service_level_agreement.json msgid "CRM Service Level Agreement" msgstr "Service Niveau Aftale" -#. Name of a DocType -#: crm/fcrm/doctype/crm_service_level_priority/crm_service_level_priority.json +#. Name of a PageType +#: crm/fcrm/pagetype/crm_service_level_priority/crm_service_level_priority.json msgid "CRM Service Level Priority" msgstr "Service Niveau Prioritet" -#. Name of a DocType -#: crm/fcrm/doctype/crm_status_change_log/crm_status_change_log.json +#. Name of a PageType +#: crm/fcrm/pagetype/crm_status_change_log/crm_status_change_log.json msgid "CRM Status Change Log" msgstr "Status Ændringslog" -#. Name of a DocType -#: crm/fcrm/doctype/crm_task/crm_task.json +#. Name of a PageType +#: crm/fcrm/pagetype/crm_task/crm_task.json msgid "CRM Task" msgstr "Opgave" -#. Name of a DocType -#: crm/fcrm/doctype/crm_telephony_agent/crm_telephony_agent.json +#. Name of a PageType +#: crm/fcrm/pagetype/crm_telephony_agent/crm_telephony_agent.json msgid "CRM Telephony Agent" msgstr "Telefoni Agent" -#. Name of a DocType -#: crm/fcrm/doctype/crm_telephony_phone/crm_telephony_phone.json +#. Name of a PageType +#: crm/fcrm/pagetype/crm_telephony_phone/crm_telephony_phone.json msgid "CRM Telephony Phone" msgstr "Telefoni Telefon" -#. Name of a DocType -#: crm/fcrm/doctype/crm_territory/crm_territory.json +#. Name of a PageType +#: crm/fcrm/pagetype/crm_territory/crm_territory.json msgid "CRM Territory" msgstr "Distrikt" -#. Name of a DocType -#: crm/fcrm/doctype/crm_twilio_settings/crm_twilio_settings.json +#. Name of a PageType +#: crm/fcrm/pagetype/crm_twilio_settings/crm_twilio_settings.json msgid "CRM Twilio Settings" msgstr "Twilio Indstillinger" -#. Name of a DocType -#: crm/fcrm/doctype/crm_view_settings/crm_view_settings.json +#. Name of a PageType +#: crm/fcrm/pagetype/crm_view_settings/crm_view_settings.json msgid "CRM View Settings" msgstr "Visning Indstillinger" @@ -1021,13 +1021,13 @@ msgstr "CSV" msgid "Call Details" msgstr "Opkalds Detaljer" -#. Label of the receiver (Link) field in DocType 'CRM Call Log' -#: crm/fcrm/doctype/crm_call_log/crm_call_log.json +#. Label of the receiver (Link) field in PageType 'CRM Call Log' +#: crm/fcrm/pagetype/crm_call_log/crm_call_log.json msgid "Call Received By" msgstr "Opkaldet Modtaget Af" -#. Description of the 'Duration' (Duration) field in DocType 'CRM Call Log' -#: crm/fcrm/doctype/crm_call_log/crm_call_log.json +#. Description of the 'Duration' (Duration) field in PageType 'CRM Call Log' +#: crm/fcrm/pagetype/crm_call_log/crm_call_log.json msgid "Call duration in seconds" msgstr "Opkaldets varighed i sekunder" @@ -1045,8 +1045,8 @@ msgstr "Opkald via {0}" msgid "Call with John Doe" msgstr "Opkald med John Doe" -#. Label of the caller (Link) field in DocType 'CRM Call Log' -#: crm/fcrm/doctype/crm_call_log/crm_call_log.json +#. Label of the caller (Link) field in PageType 'CRM Call Log' +#: crm/fcrm/pagetype/crm_call_log/crm_call_log.json msgid "Caller" msgstr "Opkalder" @@ -1083,10 +1083,10 @@ msgstr "Kamera" msgid "Cancel" msgstr "Annuller" -#. Option for the 'Status' (Select) field in DocType 'CRM Call Log' -#. Option for the 'Status' (Select) field in DocType 'CRM Task' -#: crm/fcrm/doctype/crm_call_log/crm_call_log.json -#: crm/fcrm/doctype/crm_task/crm_task.json +#. Option for the 'Status' (Select) field in PageType 'CRM Call Log' +#. Option for the 'Status' (Select) field in PageType 'CRM Task' +#: crm/fcrm/pagetype/crm_call_log/crm_call_log.json +#: crm/fcrm/pagetype/crm_task/crm_task.json msgid "Canceled" msgstr "Annulleret" @@ -1094,7 +1094,7 @@ msgstr "Annulleret" msgid "Cannot change role of user with Admin access" msgstr "" -#: crm/fcrm/doctype/fcrm_settings/fcrm_settings.py:34 +#: crm/fcrm/pagetype/fcrm_settings/fcrm_settings.py:34 msgid "Cannot delete standard items {0}" msgstr "" @@ -1189,8 +1189,8 @@ msgstr "" msgid "Clear Sort" msgstr "" -#. Label of the clear_table (Button) field in DocType 'CRM Holiday List' -#: crm/fcrm/doctype/crm_holiday_list/crm_holiday_list.json +#. Label of the clear_table (Button) field in PageType 'CRM Holiday List' +#: crm/fcrm/pagetype/crm_holiday_list/crm_holiday_list.json msgid "Clear Table" msgstr "" @@ -1211,8 +1211,8 @@ msgstr "Luk" msgid "Close panel" msgstr "" -#. Label of the closed_date (Date) field in DocType 'CRM Deal' -#: crm/fcrm/doctype/crm_deal/crm_deal.json +#. Label of the closed_date (Date) field in PageType 'CRM Deal' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json msgid "Closed Date" msgstr "" @@ -1224,10 +1224,10 @@ msgstr "" msgid "Collapsible" msgstr "Sammenklappelig" -#. Label of the color (Select) field in DocType 'CRM Deal Status' -#. Label of the color (Select) field in DocType 'CRM Lead Status' -#: crm/fcrm/doctype/crm_deal_status/crm_deal_status.json -#: crm/fcrm/doctype/crm_lead_status/crm_lead_status.json +#. Label of the color (Select) field in PageType 'CRM Deal Status' +#. Label of the color (Select) field in PageType 'CRM Lead Status' +#: crm/fcrm/pagetype/crm_deal_status/crm_deal_status.json +#: crm/fcrm/pagetype/crm_lead_status/crm_lead_status.json msgid "Color" msgstr "Farve" @@ -1235,20 +1235,20 @@ msgstr "Farve" msgid "Column" msgstr "Kolonne" -#. Label of the column_field (Data) field in DocType 'CRM View Settings' -#: crm/fcrm/doctype/crm_view_settings/crm_view_settings.json +#. Label of the column_field (Data) field in PageType 'CRM View Settings' +#: crm/fcrm/pagetype/crm_view_settings/crm_view_settings.json #: frontend/src/components/Kanban/KanbanSettings.vue:12 msgid "Column Field" msgstr "Kolonne Felt" -#. Label of the columns (Code) field in DocType 'CRM View Settings' -#: crm/fcrm/doctype/crm_view_settings/crm_view_settings.json +#. Label of the columns (Code) field in PageType 'CRM View Settings' +#: crm/fcrm/pagetype/crm_view_settings/crm_view_settings.json #: frontend/src/components/ColumnSettings.vue:4 msgid "Columns" msgstr "Kolonner" -#. Label of the comment (Link) field in DocType 'CRM Notification' -#: crm/fcrm/doctype/crm_notification/crm_notification.json +#. Label of the comment (Link) field in PageType 'CRM Notification' +#: crm/fcrm/pagetype/crm_notification/crm_notification.json #: frontend/src/components/CommentBox.vue:78 #: frontend/src/components/CommunicationArea.vue:16 #: frontend/src/components/Layouts/AppSidebar.vue:579 @@ -1264,20 +1264,20 @@ msgstr "Kommentarer" msgid "Common reasons for losing deals" msgstr "" -#. Label of the communication_status (Link) field in DocType 'CRM Deal' -#. Label of the communication_status (Link) field in DocType 'CRM Lead' -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_lead/crm_lead.json +#. Label of the communication_status (Link) field in PageType 'CRM Deal' +#. Label of the communication_status (Link) field in PageType 'CRM Lead' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_lead/crm_lead.json msgid "Communication Status" msgstr "" -#. Label of a shortcut in the Frappe CRM Workspace -#: crm/fcrm/workspace/frappe_crm/frappe_crm.json +#. Label of a shortcut in the Jingrow CRM Workspace +#: crm/fcrm/workspace/jingrow_crm/jingrow_crm.json msgid "Communication Statuses" msgstr "" -#. Label of the erpnext_company (Data) field in DocType 'ERPNext CRM Settings' -#: crm/fcrm/doctype/erpnext_crm_settings/erpnext_crm_settings.json +#. Label of the erpnext_company (Data) field in PageType 'ERPNext CRM Settings' +#: crm/fcrm/pagetype/erpnext_crm_settings/erpnext_crm_settings.json msgid "Company in ERPNext Site" msgstr "" @@ -1285,18 +1285,18 @@ msgstr "" msgid "Complete Registration" msgstr "" -#. Option for the 'Status' (Select) field in DocType 'CRM Call Log' -#: crm/fcrm/doctype/crm_call_log/crm_call_log.json +#. Option for the 'Status' (Select) field in PageType 'CRM Call Log' +#: crm/fcrm/pagetype/crm_call_log/crm_call_log.json msgid "Completed" msgstr "Udført" -#. Option for the 'Device' (Select) field in DocType 'CRM Telephony Agent' -#: crm/fcrm/doctype/crm_telephony_agent/crm_telephony_agent.json +#. Option for the 'Device' (Select) field in PageType 'CRM Telephony Agent' +#: crm/fcrm/pagetype/crm_telephony_agent/crm_telephony_agent.json msgid "Computer" msgstr "Computer" -#. Label of the condition (Code) field in DocType 'CRM Service Level Agreement' -#: crm/fcrm/doctype/crm_service_level_agreement/crm_service_level_agreement.json +#. Label of the condition (Code) field in PageType 'CRM Service Level Agreement' +#: crm/fcrm/pagetype/crm_service_level_agreement/crm_service_level_agreement.json msgid "Condition" msgstr "Tilstand" @@ -1354,17 +1354,17 @@ msgstr "" msgid "Connect your email" msgstr "Tilslut din e-mail" -#. Label of the contact (Link) field in DocType 'CRM Contacts' -#. Label of the contact (Link) field in DocType 'CRM Deal' -#: crm/fcrm/doctype/crm_contacts/crm_contacts.json -#: crm/fcrm/doctype/crm_deal/crm_deal.json +#. Label of the contact (Link) field in PageType 'CRM Contacts' +#. Label of the contact (Link) field in PageType 'CRM Deal' +#: crm/fcrm/pagetype/crm_contacts/crm_contacts.json +#: crm/fcrm/pagetype/crm_deal/crm_deal.json #: frontend/src/components/Layouts/AppSidebar.vue:552 #: frontend/src/components/Modals/ConvertToDealModal.vue:51 #: frontend/src/pages/MobileLead.vue:145 msgid "Contact" msgstr "Kontakt" -#: crm/fcrm/doctype/crm_lead/crm_lead.py:212 +#: crm/fcrm/pagetype/crm_lead/crm_lead.py:212 msgid "Contact Already Exists" msgstr "Kontakt Findes Allerede" @@ -1384,7 +1384,7 @@ msgstr "Kontakt tilføjet" msgid "Contact already added" msgstr "Kontakt allerede tilføjet" -#: crm/fcrm/doctype/crm_lead/crm_lead.py:211 +#: crm/fcrm/pagetype/crm_lead/crm_lead.py:211 msgid "Contact already exists with {0}" msgstr "" @@ -1405,18 +1405,18 @@ msgstr "" msgid "Contact updated" msgstr "" -#. Label of the contacts_tab (Tab Break) field in DocType 'CRM Deal' -#. Label of the contacts (Table) field in DocType 'CRM Deal' -#. Label of a shortcut in the Frappe CRM Workspace -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/workspace/frappe_crm/frappe_crm.json +#. Label of the contacts_tab (Tab Break) field in PageType 'CRM Deal' +#. Label of the contacts (Table) field in PageType 'CRM Deal' +#. Label of a shortcut in the Jingrow CRM Workspace +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/workspace/jingrow_crm/jingrow_crm.json #: frontend/src/pages/Contact.vue:234 frontend/src/pages/MobileContact.vue:212 #: frontend/src/pages/MobileOrganization.vue:331 msgid "Contacts" msgstr "Kontakter" -#. Label of the content (Text Editor) field in DocType 'FCRM Note' -#: crm/fcrm/doctype/fcrm_note/fcrm_note.json +#. Label of the content (Text Editor) field in PageType 'FCRM Note' +#: crm/fcrm/pagetype/fcrm_note/fcrm_note.json #: frontend/src/components/Modals/NoteModal.vue:33 #: frontend/src/components/Settings/EmailTemplate/EditEmailTemplate.vue:89 #: frontend/src/components/Settings/EmailTemplate/EditEmailTemplate.vue:102 @@ -1456,8 +1456,8 @@ msgstr "Konverter Emne til aftale" msgid "Convert to Deal" msgstr "Konverter til Aftale" -#. Label of the converted (Check) field in DocType 'CRM Lead' -#: crm/fcrm/doctype/crm_lead/crm_lead.json +#. Label of the converted (Check) field in PageType 'CRM Lead' +#: crm/fcrm/pagetype/crm_lead/crm_lead.json msgid "Converted" msgstr "Konverteret" @@ -1533,9 +1533,9 @@ msgstr "" msgid "Create an event" msgstr "" -#. Label of the create_customer_on_status_change (Check) field in DocType +#. Label of the create_customer_on_status_change (Check) field in PageType #. 'ERPNext CRM Settings' -#: crm/fcrm/doctype/erpnext_crm_settings/erpnext_crm_settings.json +#: crm/fcrm/pagetype/erpnext_crm_settings/erpnext_crm_settings.json msgid "Create customer on status change" msgstr "" @@ -1560,13 +1560,13 @@ msgstr "" msgid "Create your first task" msgstr "" -#. Label of the currency (Link) field in DocType 'CRM Deal' -#. Label of the currency (Link) field in DocType 'CRM Organization' -#. Label of the currency (Link) field in DocType 'FCRM Settings' -#. Label of the currency_tab (Tab Break) field in DocType 'FCRM Settings' -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_organization/crm_organization.json -#: crm/fcrm/doctype/fcrm_settings/fcrm_settings.json +#. Label of the currency (Link) field in PageType 'CRM Deal' +#. Label of the currency (Link) field in PageType 'CRM Organization' +#. Label of the currency (Link) field in PageType 'FCRM Settings' +#. Label of the currency_tab (Tab Break) field in PageType 'FCRM Settings' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_organization/crm_organization.json +#: crm/fcrm/pagetype/fcrm_settings/fcrm_settings.json #: frontend/src/components/Settings/CurrencySettings.vue:31 msgid "Currency" msgstr "Valuta" @@ -1631,13 +1631,13 @@ msgstr "" msgid "Data" msgstr "Data" -#. Option for the 'Type' (Select) field in DocType 'CRM Fields Layout' -#: crm/fcrm/doctype/crm_fields_layout/crm_fields_layout.json +#. Option for the 'Type' (Select) field in PageType 'CRM Fields Layout' +#: crm/fcrm/pagetype/crm_fields_layout/crm_fields_layout.json msgid "Data Fields" msgstr "Data Felter" -#. Label of the date (Date) field in DocType 'CRM Holiday' -#: crm/api/dashboard.py:601 crm/fcrm/doctype/crm_holiday/crm_holiday.json +#. Label of the date (Date) field in PageType 'CRM Holiday' +#: crm/api/dashboard.py:601 crm/fcrm/pagetype/crm_holiday/crm_holiday.json #: frontend/src/components/Calendar/CalendarEventPanel.vue:202 msgid "Date" msgstr "Dato" @@ -1660,23 +1660,23 @@ msgstr "" msgid "Deal" msgstr "Aftale" -#. Label of the deal_owner (Link) field in DocType 'CRM Deal' -#: crm/fcrm/doctype/crm_deal/crm_deal.json +#. Label of the deal_owner (Link) field in PageType 'CRM Deal' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json msgid "Deal Owner" msgstr "Aftale Ejer" -#. Label of the deal_status (Link) field in DocType 'ERPNext CRM Settings' -#: crm/fcrm/doctype/erpnext_crm_settings/erpnext_crm_settings.json +#. Label of the deal_status (Link) field in PageType 'ERPNext CRM Settings' +#: crm/fcrm/pagetype/erpnext_crm_settings/erpnext_crm_settings.json msgid "Deal Status" msgstr "Aftale Status" -#. Label of a shortcut in the Frappe CRM Workspace -#: crm/fcrm/workspace/frappe_crm/frappe_crm.json +#. Label of a shortcut in the Jingrow CRM Workspace +#: crm/fcrm/workspace/jingrow_crm/jingrow_crm.json msgid "Deal Statuses" msgstr "Aftale Statuser" -#. Label of the deal_value (Currency) field in DocType 'CRM Deal' -#: crm/fcrm/doctype/crm_deal/crm_deal.json +#. Label of the deal_value (Currency) field in PageType 'CRM Deal' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json msgid "Deal Value" msgstr "Aftal Værdi" @@ -1694,8 +1694,8 @@ msgstr "" msgid "Deal value" msgstr "" -#. Label of a shortcut in the Frappe CRM Workspace -#: crm/fcrm/workspace/frappe_crm/frappe_crm.json +#. Label of a shortcut in the Jingrow CRM Workspace +#: crm/fcrm/workspace/jingrow_crm/jingrow_crm.json #: frontend/src/pages/Deal.vue:480 frontend/src/pages/MobileContact.vue:288 #: frontend/src/pages/MobileDeal.vue:384 #: frontend/src/pages/MobileOrganization.vue:325 @@ -1732,8 +1732,8 @@ msgstr "" msgid "Dear {{ lead_name }}, \\n\\nThis is a reminder for the payment of {{ grand_total }}. \\n\\nThanks, \\nFrappé" msgstr "" -#. Label of the default (Check) field in DocType 'CRM Service Level Agreement' -#: crm/fcrm/doctype/crm_service_level_agreement/crm_service_level_agreement.json +#. Label of the default (Check) field in PageType 'CRM Service Level Agreement' +#: crm/fcrm/pagetype/crm_service_level_agreement/crm_service_level_agreement.json msgid "Default" msgstr "Standard" @@ -1745,8 +1745,8 @@ msgstr "" msgid "Default Incoming" msgstr "" -#. Label of the default_medium (Select) field in DocType 'CRM Telephony Agent' -#: crm/fcrm/doctype/crm_telephony_agent/crm_telephony_agent.json +#. Label of the default_medium (Select) field in PageType 'CRM Telephony Agent' +#: crm/fcrm/pagetype/crm_telephony_agent/crm_telephony_agent.json msgid "Default Medium" msgstr "" @@ -1754,9 +1754,9 @@ msgstr "" msgid "Default Outgoing" msgstr "" -#. Label of the default_priority (Check) field in DocType 'CRM Service Level +#. Label of the default_priority (Check) field in PageType 'CRM Service Level #. Priority' -#: crm/fcrm/doctype/crm_service_level_priority/crm_service_level_priority.json +#: crm/fcrm/pagetype/crm_service_level_priority/crm_service_level_priority.json msgid "Default Priority" msgstr "" @@ -1768,7 +1768,7 @@ msgstr "" msgid "Default Sending and Inbox" msgstr "" -#: crm/fcrm/doctype/crm_service_level_agreement/crm_service_level_agreement.py:33 +#: crm/fcrm/pagetype/crm_service_level_agreement/crm_service_level_agreement.py:33 msgid "Default Service Level Agreement already exists for {0}" msgstr "" @@ -1788,8 +1788,8 @@ msgstr "" msgid "Default medium" msgstr "" -#: crm/fcrm/doctype/fcrm_settings/fcrm_settings.js:18 -#: crm/fcrm/doctype/fcrm_settings/fcrm_settings.js:30 +#: crm/fcrm/pagetype/fcrm_settings/fcrm_settings.js:18 +#: crm/fcrm/pagetype/fcrm_settings/fcrm_settings.js:30 msgid "Default statuses, custom fields and layouts restored successfully." msgstr "" @@ -1825,7 +1825,7 @@ msgstr "" msgid "Delete" msgstr "" -#: crm/fcrm/doctype/fcrm_settings/fcrm_settings.js:26 +#: crm/fcrm/pagetype/fcrm_settings/fcrm_settings.js:26 msgid "Delete & Restore" msgstr "" @@ -1883,14 +1883,14 @@ msgstr "" msgid "Delete {0} items" msgstr "" -#. Label of the description (Text Editor) field in DocType 'CRM Holiday' -#. Label of the description (Text Editor) field in DocType 'CRM Lost Reason' -#. Label of the description (Text Editor) field in DocType 'CRM Product' -#. Label of the description (Text Editor) field in DocType 'CRM Task' -#: crm/fcrm/doctype/crm_holiday/crm_holiday.json -#: crm/fcrm/doctype/crm_lost_reason/crm_lost_reason.json -#: crm/fcrm/doctype/crm_product/crm_product.json -#: crm/fcrm/doctype/crm_task/crm_task.json +#. Label of the description (Text Editor) field in PageType 'CRM Holiday' +#. Label of the description (Text Editor) field in PageType 'CRM Lost Reason' +#. Label of the description (Text Editor) field in PageType 'CRM Product' +#. Label of the description (Text Editor) field in PageType 'CRM Task' +#: crm/fcrm/pagetype/crm_holiday/crm_holiday.json +#: crm/fcrm/pagetype/crm_lost_reason/crm_lost_reason.json +#: crm/fcrm/pagetype/crm_product/crm_product.json +#: crm/fcrm/pagetype/crm_task/crm_task.json #: frontend/src/components/Calendar/CalendarEventPanel.vue:152 #: frontend/src/components/Modals/EventModal.vue:134 #: frontend/src/components/Modals/TaskModal.vue:36 @@ -1907,29 +1907,29 @@ msgstr "" msgid "Desk" msgstr "" -#. Label of the details (Tab Break) field in DocType 'CRM Lead' -#. Label of the details (Text Editor) field in DocType 'CRM Lead Source' -#: crm/fcrm/doctype/crm_lead/crm_lead.json -#: crm/fcrm/doctype/crm_lead_source/crm_lead_source.json +#. Label of the details (Tab Break) field in PageType 'CRM Lead' +#. Label of the details (Text Editor) field in PageType 'CRM Lead Source' +#: crm/fcrm/pagetype/crm_lead/crm_lead.json +#: crm/fcrm/pagetype/crm_lead_source/crm_lead_source.json #: frontend/src/pages/MobileContact.vue:283 #: frontend/src/pages/MobileDeal.vue:424 frontend/src/pages/MobileLead.vue:331 #: frontend/src/pages/MobileOrganization.vue:320 msgid "Details" msgstr "" -#. Label of the call_receiving_device (Select) field in DocType 'CRM Telephony +#. Label of the call_receiving_device (Select) field in PageType 'CRM Telephony #. Agent' -#: crm/fcrm/doctype/crm_telephony_agent/crm_telephony_agent.json +#: crm/fcrm/pagetype/crm_telephony_agent/crm_telephony_agent.json #: frontend/src/components/FilesUploader/FilesUploaderArea.vue:39 msgid "Device" msgstr "" -#: crm/fcrm/doctype/crm_form_script/crm_form_script.js:30 +#: crm/fcrm/pagetype/crm_form_script/crm_form_script.js:30 msgid "Disable" msgstr "" -#. Label of the disabled (Check) field in DocType 'CRM Product' -#: crm/fcrm/doctype/crm_product/crm_product.json +#. Label of the disabled (Check) field in PageType 'CRM Product' +#: crm/fcrm/pagetype/crm_product/crm_product.json msgid "Disabled" msgstr "Deaktiveret" @@ -1943,27 +1943,27 @@ msgstr "" msgid "Discard unsaved changes?" msgstr "" -#. Label of the discount_percentage (Percent) field in DocType 'CRM Products' -#: crm/fcrm/doctype/crm_products/crm_products.json +#. Label of the discount_percentage (Percent) field in PageType 'CRM Products' +#: crm/fcrm/pagetype/crm_products/crm_products.json msgid "Discount %" msgstr "" -#. Label of the discount_amount (Currency) field in DocType 'CRM Products' -#: crm/fcrm/doctype/crm_products/crm_products.json +#. Label of the discount_amount (Currency) field in PageType 'CRM Products' +#: crm/fcrm/pagetype/crm_products/crm_products.json msgid "Discount Amount" msgstr "" -#. Label of the dt (Link) field in DocType 'CRM Form Script' -#. Label of the dt (Link) field in DocType 'CRM Global Settings' -#. Label of the dt (Link) field in DocType 'CRM View Settings' -#: crm/fcrm/doctype/crm_form_script/crm_form_script.json -#: crm/fcrm/doctype/crm_global_settings/crm_global_settings.json -#: crm/fcrm/doctype/crm_view_settings/crm_view_settings.json -msgid "DocType" +#. Label of the dt (Link) field in PageType 'CRM Form Script' +#. Label of the dt (Link) field in PageType 'CRM Global Settings' +#. Label of the dt (Link) field in PageType 'CRM View Settings' +#: crm/fcrm/pagetype/crm_form_script/crm_form_script.json +#: crm/fcrm/pagetype/crm_global_settings/crm_global_settings.json +#: crm/fcrm/pagetype/crm_view_settings/crm_view_settings.json +msgid "PageType" msgstr "" -#. Label of the dt (Link) field in DocType 'CRM Fields Layout' -#: crm/fcrm/doctype/crm_fields_layout/crm_fields_layout.json +#. Label of the dt (Link) field in PageType 'CRM Fields Layout' +#: crm/fcrm/pagetype/crm_fields_layout/crm_fields_layout.json msgid "Document Type" msgstr "" @@ -1983,8 +1983,8 @@ msgstr "" msgid "Documentation" msgstr "" -#. Option for the 'Status' (Select) field in DocType 'CRM Task' -#: crm/fcrm/doctype/crm_task/crm_task.json +#. Option for the 'Status' (Select) field in PageType 'CRM Task' +#: crm/fcrm/pagetype/crm_task/crm_task.json msgid "Done" msgstr "" @@ -2006,13 +2006,13 @@ msgstr "" msgid "Drop files here" msgstr "" -#. Label of the dropdown_items_tab (Tab Break) field in DocType 'FCRM Settings' -#: crm/fcrm/doctype/fcrm_settings/fcrm_settings.json +#. Label of the dropdown_items_tab (Tab Break) field in PageType 'FCRM Settings' +#: crm/fcrm/pagetype/fcrm_settings/fcrm_settings.json msgid "Dropdown Items" msgstr "" -#. Label of the due_date (Datetime) field in DocType 'CRM Task' -#: crm/fcrm/doctype/crm_task/crm_task.json +#. Label of the due_date (Datetime) field in PageType 'CRM Task' +#: crm/fcrm/pagetype/crm_task/crm_task.json msgid "Due Date" msgstr "" @@ -2048,10 +2048,10 @@ msgstr "" msgid "Duplicate template" msgstr "" -#. Label of the duration (Duration) field in DocType 'CRM Call Log' -#. Label of the duration (Duration) field in DocType 'CRM Status Change Log' -#: crm/fcrm/doctype/crm_call_log/crm_call_log.json -#: crm/fcrm/doctype/crm_status_change_log/crm_status_change_log.json +#. Label of the duration (Duration) field in PageType 'CRM Call Log' +#. Label of the duration (Duration) field in PageType 'CRM Status Change Log' +#: crm/fcrm/pagetype/crm_call_log/crm_call_log.json +#: crm/fcrm/pagetype/crm_status_change_log/crm_status_change_log.json msgid "Duration" msgstr "" @@ -2060,28 +2060,28 @@ msgstr "" msgid "ERPNext" msgstr "" -#. Name of a DocType -#: crm/fcrm/doctype/erpnext_crm_settings/erpnext_crm_settings.json +#. Name of a PageType +#: crm/fcrm/pagetype/erpnext_crm_settings/erpnext_crm_settings.json msgid "ERPNext CRM Settings" msgstr "" -#. Label of the section_break_oubd (Section Break) field in DocType 'ERPNext +#. Label of the section_break_oubd (Section Break) field in PageType 'ERPNext #. CRM Settings' -#: crm/fcrm/doctype/erpnext_crm_settings/erpnext_crm_settings.json +#: crm/fcrm/pagetype/erpnext_crm_settings/erpnext_crm_settings.json msgid "ERPNext Site API's" msgstr "" -#. Label of the erpnext_site_url (Data) field in DocType 'ERPNext CRM Settings' -#: crm/fcrm/doctype/erpnext_crm_settings/erpnext_crm_settings.json +#. Label of the erpnext_site_url (Data) field in PageType 'ERPNext CRM Settings' +#: crm/fcrm/pagetype/erpnext_crm_settings/erpnext_crm_settings.json msgid "ERPNext Site URL" msgstr "" -#: crm/fcrm/doctype/erpnext_crm_settings/erpnext_crm_settings.py:25 +#: crm/fcrm/pagetype/erpnext_crm_settings/erpnext_crm_settings.py:25 msgid "ERPNext is not installed in the current site" msgstr "" -#: crm/fcrm/doctype/erpnext_crm_settings/erpnext_crm_settings.py:98 -#: crm/fcrm/doctype/erpnext_crm_settings/erpnext_crm_settings.py:124 +#: crm/fcrm/pagetype/erpnext_crm_settings/erpnext_crm_settings.py:98 +#: crm/fcrm/pagetype/erpnext_crm_settings/erpnext_crm_settings.py:124 msgid "ERPNext is not integrated with the CRM" msgstr "" @@ -2191,12 +2191,12 @@ msgstr "" msgid "Editing event" msgstr "" -#. Label of the email (Data) field in DocType 'CRM Contacts' -#. Label of the email (Data) field in DocType 'CRM Invitation' -#. Label of the email (Data) field in DocType 'CRM Lead' -#: crm/fcrm/doctype/crm_contacts/crm_contacts.json -#: crm/fcrm/doctype/crm_invitation/crm_invitation.json -#: crm/fcrm/doctype/crm_lead/crm_lead.json frontend/src/pages/Contact.vue:510 +#. Label of the email (Data) field in PageType 'CRM Contacts' +#. Label of the email (Data) field in PageType 'CRM Invitation' +#. Label of the email (Data) field in PageType 'CRM Lead' +#: crm/fcrm/pagetype/crm_contacts/crm_contacts.json +#: crm/fcrm/pagetype/crm_invitation/crm_invitation.json +#: crm/fcrm/pagetype/crm_lead/crm_lead.json frontend/src/pages/Contact.vue:510 #: frontend/src/pages/MobileContact.vue:518 #: frontend/src/pages/MobileOrganization.vue:462 #: frontend/src/pages/MobileOrganization.vue:490 @@ -2213,8 +2213,8 @@ msgstr "" msgid "Email ID is required" msgstr "" -#. Label of the email_sent_at (Datetime) field in DocType 'CRM Invitation' -#: crm/fcrm/doctype/crm_invitation/crm_invitation.json +#. Label of the email_sent_at (Datetime) field in PageType 'CRM Invitation' +#: crm/fcrm/pagetype/crm_invitation/crm_invitation.json msgid "Email Sent At" msgstr "" @@ -2272,12 +2272,12 @@ msgstr "" msgid "Empty - Choose a field to sort by" msgstr "" -#: crm/fcrm/doctype/crm_form_script/crm_form_script.js:30 +#: crm/fcrm/pagetype/crm_form_script/crm_form_script.js:30 msgid "Enable" msgstr "" -#. Label of the enable_forecasting (Check) field in DocType 'FCRM Settings' -#: crm/fcrm/doctype/fcrm_settings/fcrm_settings.json +#. Label of the enable_forecasting (Check) field in PageType 'FCRM Settings' +#: crm/fcrm/pagetype/fcrm_settings/fcrm_settings.json msgid "Enable Forecasting" msgstr "" @@ -2293,18 +2293,18 @@ msgstr "" msgid "Enable forecasting" msgstr "" -#. Label of the enabled (Check) field in DocType 'CRM Exotel Settings' -#. Label of the enabled (Check) field in DocType 'CRM Form Script' -#. Label of the enabled (Check) field in DocType 'CRM Service Level Agreement' -#. Label of the enabled (Check) field in DocType 'CRM Twilio Settings' -#. Label of the enabled (Check) field in DocType 'ERPNext CRM Settings' -#. Label of the enabled (Check) field in DocType 'Helpdesk CRM Settings' -#: crm/fcrm/doctype/crm_exotel_settings/crm_exotel_settings.json -#: crm/fcrm/doctype/crm_form_script/crm_form_script.json -#: crm/fcrm/doctype/crm_service_level_agreement/crm_service_level_agreement.json -#: crm/fcrm/doctype/crm_twilio_settings/crm_twilio_settings.json -#: crm/fcrm/doctype/erpnext_crm_settings/erpnext_crm_settings.json -#: crm/fcrm/doctype/helpdesk_crm_settings/helpdesk_crm_settings.json +#. Label of the enabled (Check) field in PageType 'CRM Exotel Settings' +#. Label of the enabled (Check) field in PageType 'CRM Form Script' +#. Label of the enabled (Check) field in PageType 'CRM Service Level Agreement' +#. Label of the enabled (Check) field in PageType 'CRM Twilio Settings' +#. Label of the enabled (Check) field in PageType 'ERPNext CRM Settings' +#. Label of the enabled (Check) field in PageType 'Helpdesk CRM Settings' +#: crm/fcrm/pagetype/crm_exotel_settings/crm_exotel_settings.json +#: crm/fcrm/pagetype/crm_form_script/crm_form_script.json +#: crm/fcrm/pagetype/crm_service_level_agreement/crm_service_level_agreement.json +#: crm/fcrm/pagetype/crm_twilio_settings/crm_twilio_settings.json +#: crm/fcrm/pagetype/erpnext_crm_settings/erpnext_crm_settings.json +#: crm/fcrm/pagetype/helpdesk_crm_settings/helpdesk_crm_settings.json #: frontend/src/components/Settings/AssignmentRules/AssignmentRuleView.vue:32 #: frontend/src/components/Settings/AssignmentRules/AssignmentRulesList.vue:21 #: frontend/src/components/Settings/EmailTemplate/EditEmailTemplate.vue:18 @@ -2313,15 +2313,15 @@ msgstr "" msgid "Enabled" msgstr "" -#. Label of the end_date (Date) field in DocType 'CRM Service Level Agreement' -#: crm/fcrm/doctype/crm_service_level_agreement/crm_service_level_agreement.json +#. Label of the end_date (Date) field in PageType 'CRM Service Level Agreement' +#: crm/fcrm/pagetype/crm_service_level_agreement/crm_service_level_agreement.json msgid "End Date" msgstr "" -#. Label of the end_time (Datetime) field in DocType 'CRM Call Log' -#. Label of the end_time (Time) field in DocType 'CRM Service Day' -#: crm/fcrm/doctype/crm_call_log/crm_call_log.json -#: crm/fcrm/doctype/crm_service_day/crm_service_day.json +#. Label of the end_time (Datetime) field in PageType 'CRM Call Log' +#. Label of the end_time (Time) field in PageType 'CRM Service Day' +#: crm/fcrm/pagetype/crm_call_log/crm_call_log.json +#: crm/fcrm/pagetype/crm_service_day/crm_service_day.json #: frontend/src/components/Calendar/CalendarEventPanel.vue:242 #: frontend/src/components/Modals/EventModal.vue:112 msgid "End Time" @@ -2362,15 +2362,15 @@ msgstr "" msgid "Error updating field" msgstr "" -#: crm/fcrm/doctype/erpnext_crm_settings/erpnext_crm_settings.py:279 +#: crm/fcrm/pagetype/erpnext_crm_settings/erpnext_crm_settings.py:279 msgid "Error while creating customer in ERPNext, check error log for more details" msgstr "" -#: crm/fcrm/doctype/erpnext_crm_settings/erpnext_crm_settings.py:191 +#: crm/fcrm/pagetype/erpnext_crm_settings/erpnext_crm_settings.py:191 msgid "Error while creating prospect in ERPNext, check error log for more details" msgstr "" -#: crm/fcrm/doctype/erpnext_crm_settings/erpnext_crm_settings.py:117 +#: crm/fcrm/pagetype/erpnext_crm_settings/erpnext_crm_settings.py:117 msgid "Error while fetching customer in ERPNext, check error log for more details" msgstr "" @@ -2395,16 +2395,16 @@ msgstr "" msgid "Excel" msgstr "" -#. Label of the exchange_rate (Float) field in DocType 'CRM Deal' -#. Label of the exchange_rate (Float) field in DocType 'CRM Organization' -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_organization/crm_organization.json +#. Label of the exchange_rate (Float) field in PageType 'CRM Deal' +#. Label of the exchange_rate (Float) field in PageType 'CRM Organization' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_organization/crm_organization.json msgid "Exchange Rate" msgstr "" -#. Label of the exchange_rate_provider_section (Section Break) field in DocType +#. Label of the exchange_rate_provider_section (Section Break) field in PageType #. 'FCRM Settings' -#: crm/fcrm/doctype/fcrm_settings/fcrm_settings.json +#: crm/fcrm/pagetype/fcrm_settings/fcrm_settings.json msgid "Exchange Rate Provider" msgstr "" @@ -2412,12 +2412,12 @@ msgstr "" msgid "Exchange rate provider" msgstr "" -#. Option for the 'Telephony Medium' (Select) field in DocType 'CRM Call Log' -#. Label of the exotel (Check) field in DocType 'CRM Telephony Agent' -#. Option for the 'Default Medium' (Select) field in DocType 'CRM Telephony +#. Option for the 'Telephony Medium' (Select) field in PageType 'CRM Call Log' +#. Label of the exotel (Check) field in PageType 'CRM Telephony Agent' +#. Option for the 'Default Medium' (Select) field in PageType 'CRM Telephony #. Agent' -#: crm/fcrm/doctype/crm_call_log/crm_call_log.json -#: crm/fcrm/doctype/crm_telephony_agent/crm_telephony_agent.json +#: crm/fcrm/pagetype/crm_call_log/crm_call_log.json +#: crm/fcrm/pagetype/crm_telephony_agent/crm_telephony_agent.json #: frontend/src/components/Layouts/AppSidebar.vue:602 #: frontend/src/components/Settings/TelephonySettings.vue:41 #: frontend/src/components/Settings/TelephonySettings.vue:63 @@ -2428,8 +2428,8 @@ msgstr "" msgid "Exotel Exception" msgstr "" -#. Label of the exotel_number (Data) field in DocType 'CRM Telephony Agent' -#: crm/fcrm/doctype/crm_telephony_agent/crm_telephony_agent.json +#. Label of the exotel_number (Data) field in PageType 'CRM Telephony Agent' +#: crm/fcrm/pagetype/crm_telephony_agent/crm_telephony_agent.json msgid "Exotel Number" msgstr "" @@ -2453,26 +2453,26 @@ msgstr "" msgid "Expand" msgstr "" -#. Label of the expected_closure_date (Date) field in DocType 'CRM Deal' -#: crm/fcrm/doctype/crm_deal/crm_deal.json +#. Label of the expected_closure_date (Date) field in PageType 'CRM Deal' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json msgid "Expected Closure Date" msgstr "" -#: crm/fcrm/doctype/crm_deal/crm_deal.py:173 +#: crm/fcrm/pagetype/crm_deal/crm_deal.py:173 msgid "Expected Closure Date is required." msgstr "" -#. Label of the expected_deal_value (Currency) field in DocType 'CRM Deal' -#: crm/fcrm/doctype/crm_deal/crm_deal.json +#. Label of the expected_deal_value (Currency) field in PageType 'CRM Deal' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json msgid "Expected Deal Value" msgstr "" -#: crm/fcrm/doctype/crm_deal/crm_deal.py:171 +#: crm/fcrm/pagetype/crm_deal/crm_deal.py:171 msgid "Expected Deal Value is required." msgstr "" -#. Option for the 'Status' (Select) field in DocType 'CRM Invitation' -#: crm/fcrm/doctype/crm_invitation/crm_invitation.json +#. Option for the 'Status' (Select) field in PageType 'CRM Invitation' +#: crm/fcrm/pagetype/crm_invitation/crm_invitation.json msgid "Expired" msgstr "" @@ -2489,22 +2489,22 @@ msgstr "" msgid "Export Type" msgstr "" -#. Name of a DocType -#: crm/fcrm/doctype/fcrm_note/fcrm_note.json +#. Name of a PageType +#: crm/fcrm/pagetype/fcrm_note/fcrm_note.json msgid "FCRM Note" msgstr "" -#. Name of a DocType -#: crm/fcrm/doctype/fcrm_settings/fcrm_settings.json +#. Name of a PageType +#: crm/fcrm/pagetype/fcrm_settings/fcrm_settings.json msgid "FCRM Settings" msgstr "" -#. Option for the 'Status' (Select) field in DocType 'CRM Call Log' -#. Option for the 'SLA Status' (Select) field in DocType 'CRM Deal' -#. Option for the 'SLA Status' (Select) field in DocType 'CRM Lead' -#: crm/fcrm/doctype/crm_call_log/crm_call_log.json -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_lead/crm_lead.json +#. Option for the 'Status' (Select) field in PageType 'CRM Call Log' +#. Option for the 'SLA Status' (Select) field in PageType 'CRM Deal' +#. Option for the 'SLA Status' (Select) field in PageType 'CRM Lead' +#: crm/fcrm/pagetype/crm_call_log/crm_call_log.json +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_lead/crm_lead.json msgid "Failed" msgstr "" @@ -2528,7 +2528,7 @@ msgstr "" msgid "Failed to delete template" msgstr "" -#: crm/fcrm/doctype/fcrm_settings/fcrm_settings.py:205 +#: crm/fcrm/pagetype/fcrm_settings/fcrm_settings.py:205 msgid "Failed to fetch exchange rate from {0} to {1} on {2}. Please check your internet connection or try again later." msgstr "" @@ -2561,8 +2561,8 @@ msgstr "" msgid "Failed to update template" msgstr "" -#. Label of the favicon (Attach) field in DocType 'FCRM Settings' -#: crm/fcrm/doctype/fcrm_settings/fcrm_settings.json +#. Label of the favicon (Attach) field in PageType 'FCRM Settings' +#: crm/fcrm/pagetype/fcrm_settings/fcrm_settings.json #: frontend/src/components/Settings/BrandSettings.vue:87 msgid "Favicon" msgstr "" @@ -2586,23 +2586,23 @@ msgid "File \"{0}\" was skipped because only {1} uploads are allowed" msgstr "" #: frontend/src/components/FilesUploader/FilesUploaderArea.vue:359 -msgid "File \"{0}\" was skipped because only {1} uploads are allowed for DocType \"{2}\"" +msgid "File \"{0}\" was skipped because only {1} uploads are allowed for PageType \"{2}\"" msgstr "" #: frontend/src/components/Filter.vue:6 msgid "Filter" msgstr "" -#. Label of the filters (Code) field in DocType 'CRM View Settings' -#. Label of the filters_tab (Tab Break) field in DocType 'CRM View Settings' -#: crm/fcrm/doctype/crm_view_settings/crm_view_settings.json +#. Label of the filters (Code) field in PageType 'CRM View Settings' +#. Label of the filters_tab (Tab Break) field in PageType 'CRM View Settings' +#: crm/fcrm/pagetype/crm_view_settings/crm_view_settings.json msgid "Filters" msgstr "" -#. Label of the first_name (Data) field in DocType 'CRM Deal' -#. Label of the first_name (Data) field in DocType 'CRM Lead' -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_lead/crm_lead.json +#. Label of the first_name (Data) field in PageType 'CRM Deal' +#. Label of the first_name (Data) field in PageType 'CRM Lead' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_lead/crm_lead.json #: frontend/src/components/ColumnSettings.vue:103 #: frontend/src/components/Filter.vue:57 frontend/src/components/Filter.vue:88 #: frontend/src/components/SortBy.vue:6 frontend/src/components/SortBy.vue:103 @@ -2614,30 +2614,30 @@ msgstr "" msgid "First Name is mandatory" msgstr "" -#. Label of the first_responded_on (Datetime) field in DocType 'CRM Deal' -#. Label of the first_responded_on (Datetime) field in DocType 'CRM Lead' -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_lead/crm_lead.json +#. Label of the first_responded_on (Datetime) field in PageType 'CRM Deal' +#. Label of the first_responded_on (Datetime) field in PageType 'CRM Lead' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_lead/crm_lead.json msgid "First Responded On" msgstr "" -#. Option for the 'SLA Status' (Select) field in DocType 'CRM Deal' -#. Option for the 'SLA Status' (Select) field in DocType 'CRM Lead' -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_lead/crm_lead.json +#. Option for the 'SLA Status' (Select) field in PageType 'CRM Deal' +#. Option for the 'SLA Status' (Select) field in PageType 'CRM Lead' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_lead/crm_lead.json msgid "First Response Due" msgstr "" -#. Label of the first_response_time (Duration) field in DocType 'CRM Service +#. Label of the first_response_time (Duration) field in PageType 'CRM Service #. Level Priority' -#: crm/fcrm/doctype/crm_service_level_priority/crm_service_level_priority.json +#: crm/fcrm/pagetype/crm_service_level_priority/crm_service_level_priority.json msgid "First Response TIme" msgstr "" -#. Label of the first_response_time (Duration) field in DocType 'CRM Deal' -#. Label of the first_response_time (Duration) field in DocType 'CRM Lead' -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_lead/crm_lead.json +#. Label of the first_response_time (Duration) field in PageType 'CRM Deal' +#. Label of the first_response_time (Duration) field in PageType 'CRM Lead' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_lead/crm_lead.json msgid "First Response Time" msgstr "" @@ -2670,66 +2670,66 @@ msgstr "" msgid "Forecasting enabled successfully" msgstr "" -#. Option for the 'Apply To' (Select) field in DocType 'CRM Form Script' -#: crm/fcrm/doctype/crm_form_script/crm_form_script.json +#. Option for the 'Apply To' (Select) field in PageType 'CRM Form Script' +#: crm/fcrm/pagetype/crm_form_script/crm_form_script.json msgid "Form" msgstr "" -#: crm/fcrm/doctype/erpnext_crm_settings/erpnext_crm_settings.js:19 +#: crm/fcrm/pagetype/erpnext_crm_settings/erpnext_crm_settings.js:19 msgid "Form Script updated successfully" msgstr "" #. Name of a Workspace -#: crm/fcrm/workspace/frappe_crm/frappe_crm.json -msgid "Frappe CRM" +#: crm/fcrm/workspace/jingrow_crm/jingrow_crm.json +msgid "Jingrow CRM" msgstr "" #: frontend/src/components/Layouts/AppSidebar.vue:608 -msgid "Frappe CRM mobile" +msgid "Jingrow CRM mobile" msgstr "" -#. Option for the 'Weekly Off' (Select) field in DocType 'CRM Holiday List' -#. Option for the 'Workday' (Select) field in DocType 'CRM Service Day' -#: crm/fcrm/doctype/crm_holiday_list/crm_holiday_list.json -#: crm/fcrm/doctype/crm_service_day/crm_service_day.json +#. Option for the 'Weekly Off' (Select) field in PageType 'CRM Holiday List' +#. Option for the 'Workday' (Select) field in PageType 'CRM Service Day' +#: crm/fcrm/pagetype/crm_holiday_list/crm_holiday_list.json +#: crm/fcrm/pagetype/crm_service_day/crm_service_day.json msgid "Friday" msgstr "" -#. Label of the from (Data) field in DocType 'CRM Call Log' -#. Label of the from (Data) field in DocType 'CRM Status Change Log' -#: crm/fcrm/doctype/crm_call_log/crm_call_log.json -#: crm/fcrm/doctype/crm_status_change_log/crm_status_change_log.json +#. Label of the from (Data) field in PageType 'CRM Call Log' +#. Label of the from (Data) field in PageType 'CRM Status Change Log' +#: crm/fcrm/pagetype/crm_call_log/crm_call_log.json +#: crm/fcrm/pagetype/crm_status_change_log/crm_status_change_log.json msgid "From" msgstr "" -#. Label of the from_date (Date) field in DocType 'CRM Holiday List' -#. Label of the from_date (Datetime) field in DocType 'CRM Status Change Log' -#: crm/fcrm/doctype/crm_holiday_list/crm_holiday_list.json -#: crm/fcrm/doctype/crm_status_change_log/crm_status_change_log.json +#. Label of the from_date (Date) field in PageType 'CRM Holiday List' +#. Label of the from_date (Datetime) field in PageType 'CRM Status Change Log' +#: crm/fcrm/pagetype/crm_holiday_list/crm_holiday_list.json +#: crm/fcrm/pagetype/crm_status_change_log/crm_status_change_log.json msgid "From Date" msgstr "" -#. Label of the from_type (Data) field in DocType 'CRM Status Change Log' -#: crm/fcrm/doctype/crm_status_change_log/crm_status_change_log.json +#. Label of the from_type (Data) field in PageType 'CRM Status Change Log' +#: crm/fcrm/pagetype/crm_status_change_log/crm_status_change_log.json msgid "From Type" msgstr "" -#. Label of the from_user (Link) field in DocType 'CRM Notification' -#: crm/fcrm/doctype/crm_notification/crm_notification.json +#. Label of the from_user (Link) field in PageType 'CRM Notification' +#: crm/fcrm/pagetype/crm_notification/crm_notification.json msgid "From User" msgstr "" -#. Option for the 'SLA Status' (Select) field in DocType 'CRM Deal' -#. Option for the 'SLA Status' (Select) field in DocType 'CRM Lead' -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_lead/crm_lead.json +#. Option for the 'SLA Status' (Select) field in PageType 'CRM Deal' +#. Option for the 'SLA Status' (Select) field in PageType 'CRM Lead' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_lead/crm_lead.json msgid "Fulfilled" msgstr "" -#. Label of the full_name (Data) field in DocType 'CRM Contacts' -#. Label of the lead_name (Data) field in DocType 'CRM Lead' -#: crm/fcrm/doctype/crm_contacts/crm_contacts.json -#: crm/fcrm/doctype/crm_lead/crm_lead.json +#. Label of the full_name (Data) field in PageType 'CRM Contacts' +#. Label of the lead_name (Data) field in PageType 'CRM Lead' +#: crm/fcrm/pagetype/crm_contacts/crm_contacts.json +#: crm/fcrm/pagetype/crm_lead/crm_lead.json msgid "Full Name" msgstr "" @@ -2742,12 +2742,12 @@ msgstr "" msgid "GMT+5:30" msgstr "" -#. Label of the gender (Link) field in DocType 'CRM Contacts' -#. Label of the gender (Link) field in DocType 'CRM Deal' -#. Label of the gender (Link) field in DocType 'CRM Lead' -#: crm/fcrm/doctype/crm_contacts/crm_contacts.json -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_lead/crm_lead.json +#. Label of the gender (Link) field in PageType 'CRM Contacts' +#. Label of the gender (Link) field in PageType 'CRM Deal' +#. Label of the gender (Link) field in PageType 'CRM Lead' +#: crm/fcrm/pagetype/crm_contacts/crm_contacts.json +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_lead/crm_lead.json msgid "Gender" msgstr "" @@ -2771,20 +2771,20 @@ msgstr "" msgid "Go to website" msgstr "" -#. Option for the 'Type' (Select) field in DocType 'CRM Fields Layout' -#: crm/fcrm/doctype/crm_fields_layout/crm_fields_layout.json +#. Option for the 'Type' (Select) field in PageType 'CRM Fields Layout' +#: crm/fcrm/pagetype/crm_fields_layout/crm_fields_layout.json msgid "Grid Row" msgstr "" -#. Label of the group_by_tab (Tab Break) field in DocType 'CRM View Settings' -#: crm/fcrm/doctype/crm_view_settings/crm_view_settings.json +#. Label of the group_by_tab (Tab Break) field in PageType 'CRM View Settings' +#: crm/fcrm/pagetype/crm_view_settings/crm_view_settings.json #: frontend/src/components/ViewControls.vue:379 #: frontend/src/components/ViewControls.vue:611 frontend/src/utils/view.js:16 msgid "Group By" msgstr "" -#. Label of the group_by_field (Data) field in DocType 'CRM View Settings' -#: crm/fcrm/doctype/crm_view_settings/crm_view_settings.json +#. Label of the group_by_field (Data) field in PageType 'CRM View Settings' +#: crm/fcrm/pagetype/crm_view_settings/crm_view_settings.json msgid "Group By Field" msgstr "" @@ -2808,28 +2808,28 @@ msgstr "" msgid "Helpdesk" msgstr "" -#. Name of a DocType -#: crm/fcrm/doctype/helpdesk_crm_settings/helpdesk_crm_settings.json +#. Name of a PageType +#: crm/fcrm/pagetype/helpdesk_crm_settings/helpdesk_crm_settings.json msgid "Helpdesk CRM Settings" msgstr "" -#. Label of the helpdesk_site_apis_section (Section Break) field in DocType +#. Label of the helpdesk_site_apis_section (Section Break) field in PageType #. 'Helpdesk CRM Settings' -#: crm/fcrm/doctype/helpdesk_crm_settings/helpdesk_crm_settings.json +#: crm/fcrm/pagetype/helpdesk_crm_settings/helpdesk_crm_settings.json msgid "Helpdesk Site API's" msgstr "" -#. Label of the helpdesk_site_url (Data) field in DocType 'Helpdesk CRM +#. Label of the helpdesk_site_url (Data) field in PageType 'Helpdesk CRM #. Settings' -#: crm/fcrm/doctype/helpdesk_crm_settings/helpdesk_crm_settings.json +#: crm/fcrm/pagetype/helpdesk_crm_settings/helpdesk_crm_settings.json msgid "Helpdesk Site URL" msgstr "" -#: crm/fcrm/doctype/helpdesk_crm_settings/helpdesk_crm_settings.py:18 +#: crm/fcrm/pagetype/helpdesk_crm_settings/helpdesk_crm_settings.py:18 msgid "Helpdesk is not installed in the current site" msgstr "" -#: crm/fcrm/doctype/helpdesk_crm_settings/helpdesk_crm_settings.py:40 +#: crm/fcrm/pagetype/helpdesk_crm_settings/helpdesk_crm_settings.py:40 msgid "Helpdesk is not integrated with the CRM" msgstr "" @@ -2845,8 +2845,8 @@ msgstr "" msgid "Hi John, \\n\\nCan you please provide more details on this..." msgstr "" -#. Label of the hidden (Check) field in DocType 'CRM Dropdown Item' -#: crm/fcrm/doctype/crm_dropdown_item/crm_dropdown_item.json +#. Label of the hidden (Check) field in PageType 'CRM Dropdown Item' +#: crm/fcrm/pagetype/crm_dropdown_item/crm_dropdown_item.json msgid "Hidden" msgstr "" @@ -2877,26 +2877,26 @@ msgstr "" msgid "Hide preview" msgstr "" -#. Option for the 'Priority' (Select) field in DocType 'CRM Task' -#: crm/fcrm/doctype/crm_task/crm_task.json +#. Option for the 'Priority' (Select) field in PageType 'CRM Task' +#: crm/fcrm/pagetype/crm_task/crm_task.json msgid "High" msgstr "" -#. Label of the holiday_list (Link) field in DocType 'CRM Service Level +#. Label of the holiday_list (Link) field in PageType 'CRM Service Level #. Agreement' -#: crm/fcrm/doctype/crm_service_level_agreement/crm_service_level_agreement.json +#: crm/fcrm/pagetype/crm_service_level_agreement/crm_service_level_agreement.json msgid "Holiday List" msgstr "" -#. Label of the holiday_list_name (Data) field in DocType 'CRM Holiday List' -#: crm/fcrm/doctype/crm_holiday_list/crm_holiday_list.json +#. Label of the holiday_list_name (Data) field in PageType 'CRM Holiday List' +#: crm/fcrm/pagetype/crm_holiday_list/crm_holiday_list.json msgid "Holiday List Name" msgstr "" -#. Label of the holidays_section (Section Break) field in DocType 'CRM Holiday +#. Label of the holidays_section (Section Break) field in PageType 'CRM Holiday #. List' -#. Label of the holidays (Table) field in DocType 'CRM Holiday List' -#: crm/fcrm/doctype/crm_holiday_list/crm_holiday_list.json +#. Label of the holidays (Table) field in PageType 'CRM Holiday List' +#: crm/fcrm/pagetype/crm_holiday_list/crm_holiday_list.json msgid "Holidays" msgstr "" @@ -2914,15 +2914,15 @@ msgstr "" msgid "I understand, add conditions" msgstr "" -#. Label of the id (Data) field in DocType 'CRM Call Log' -#: crm/fcrm/doctype/crm_call_log/crm_call_log.json +#. Label of the id (Data) field in PageType 'CRM Call Log' +#: crm/fcrm/pagetype/crm_call_log/crm_call_log.json msgid "ID" msgstr "" -#. Label of the icon (Code) field in DocType 'CRM Dropdown Item' -#. Label of the icon (Data) field in DocType 'CRM View Settings' -#: crm/fcrm/doctype/crm_dropdown_item/crm_dropdown_item.json -#: crm/fcrm/doctype/crm_view_settings/crm_view_settings.json +#. Label of the icon (Code) field in PageType 'CRM Dropdown Item' +#. Label of the icon (Data) field in PageType 'CRM View Settings' +#: crm/fcrm/pagetype/crm_dropdown_item/crm_dropdown_item.json +#: crm/fcrm/pagetype/crm_view_settings/crm_view_settings.json msgid "Icon" msgstr "" @@ -2942,10 +2942,10 @@ msgstr "" msgid "If enabled, records can be created from the incoming emails on this account." msgstr "" -#. Label of the image (Attach Image) field in DocType 'CRM Lead' -#. Label of the image (Attach Image) field in DocType 'CRM Product' -#: crm/fcrm/doctype/crm_lead/crm_lead.json -#: crm/fcrm/doctype/crm_product/crm_product.json +#. Label of the image (Attach Image) field in PageType 'CRM Lead' +#. Label of the image (Attach Image) field in PageType 'CRM Product' +#: crm/fcrm/pagetype/crm_lead/crm_lead.json +#: crm/fcrm/pagetype/crm_product/crm_product.json msgid "Image" msgstr "" @@ -2957,10 +2957,10 @@ msgstr "" msgid "In" msgstr "" -#. Option for the 'Status' (Select) field in DocType 'CRM Call Log' -#. Option for the 'Status' (Select) field in DocType 'CRM Task' -#: crm/fcrm/doctype/crm_call_log/crm_call_log.json -#: crm/fcrm/doctype/crm_task/crm_task.json +#. Option for the 'Status' (Select) field in PageType 'CRM Call Log' +#. Option for the 'Status' (Select) field in PageType 'CRM Task' +#: crm/fcrm/pagetype/crm_call_log/crm_call_log.json +#: crm/fcrm/pagetype/crm_task/crm_task.json msgid "In Progress" msgstr "" @@ -2976,8 +2976,8 @@ msgstr "" msgid "Inbox" msgstr "" -#. Option for the 'Type' (Select) field in DocType 'CRM Call Log' -#: crm/fcrm/doctype/crm_call_log/crm_call_log.json +#. Option for the 'Type' (Select) field in PageType 'CRM Call Log' +#: crm/fcrm/pagetype/crm_call_log/crm_call_log.json msgid "Incoming" msgstr "" @@ -2985,24 +2985,24 @@ msgstr "" msgid "Incoming call..." msgstr "" -#. Label of a shortcut in the Frappe CRM Workspace -#: crm/fcrm/workspace/frappe_crm/frappe_crm.json +#. Label of a shortcut in the Jingrow CRM Workspace +#: crm/fcrm/workspace/jingrow_crm/jingrow_crm.json msgid "Industries" msgstr "" -#. Label of the industry (Link) field in DocType 'CRM Deal' -#. Label of the industry (Data) field in DocType 'CRM Industry' -#. Label of the industry (Link) field in DocType 'CRM Lead' -#. Label of the industry (Link) field in DocType 'CRM Organization' -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_industry/crm_industry.json -#: crm/fcrm/doctype/crm_lead/crm_lead.json -#: crm/fcrm/doctype/crm_organization/crm_organization.json +#. Label of the industry (Link) field in PageType 'CRM Deal' +#. Label of the industry (Data) field in PageType 'CRM Industry' +#. Label of the industry (Link) field in PageType 'CRM Lead' +#. Label of the industry (Link) field in PageType 'CRM Organization' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_industry/crm_industry.json +#: crm/fcrm/pagetype/crm_lead/crm_lead.json +#: crm/fcrm/pagetype/crm_organization/crm_organization.json msgid "Industry" msgstr "" -#. Option for the 'Status' (Select) field in DocType 'CRM Call Log' -#: crm/fcrm/doctype/crm_call_log/crm_call_log.json +#. Option for the 'Status' (Select) field in PageType 'CRM Call Log' +#: crm/fcrm/pagetype/crm_call_log/crm_call_log.json msgid "Initiated" msgstr "" @@ -3037,7 +3037,7 @@ msgstr "" msgid "Introduction" msgstr "" -#: crm/fcrm/doctype/crm_twilio_settings/crm_twilio_settings.py:33 +#: crm/fcrm/pagetype/crm_twilio_settings/crm_twilio_settings.py:33 msgid "Invalid Account SID or Auth Token." msgstr "" @@ -3054,7 +3054,7 @@ msgstr "" msgid "Invalid chart name" msgstr "" -#: crm/fcrm/doctype/crm_exotel_settings/crm_exotel_settings.py:25 +#: crm/fcrm/pagetype/crm_exotel_settings/crm_exotel_settings.py:25 msgid "Invalid credentials" msgstr "" @@ -3103,8 +3103,8 @@ msgstr "" msgid "Invite your team" msgstr "" -#. Label of the invited_by (Link) field in DocType 'CRM Invitation' -#: crm/fcrm/doctype/crm_invitation/crm_invitation.json +#. Label of the invited_by (Link) field in PageType 'CRM Invitation' +#: crm/fcrm/pagetype/crm_invitation/crm_invitation.json msgid "Invited By" msgstr "" @@ -3118,59 +3118,59 @@ msgstr "" msgid "Is" msgstr "" -#. Label of the is_default (Check) field in DocType 'CRM View Settings' -#: crm/fcrm/doctype/crm_view_settings/crm_view_settings.json +#. Label of the is_default (Check) field in PageType 'CRM View Settings' +#: crm/fcrm/pagetype/crm_view_settings/crm_view_settings.json msgid "Is Default" msgstr "" -#. Label of the is_erpnext_in_different_site (Check) field in DocType 'ERPNext +#. Label of the is_erpnext_in_different_site (Check) field in PageType 'ERPNext #. CRM Settings' -#: crm/fcrm/doctype/erpnext_crm_settings/erpnext_crm_settings.json +#: crm/fcrm/pagetype/erpnext_crm_settings/erpnext_crm_settings.json msgid "Is ERPNext installed on a different site?" msgstr "" -#. Label of the is_group (Check) field in DocType 'CRM Territory' -#: crm/fcrm/doctype/crm_territory/crm_territory.json +#. Label of the is_group (Check) field in PageType 'CRM Territory' +#: crm/fcrm/pagetype/crm_territory/crm_territory.json msgid "Is Group" msgstr "" -#. Label of the is_helpdesk_in_different_site (Check) field in DocType +#. Label of the is_helpdesk_in_different_site (Check) field in PageType #. 'Helpdesk CRM Settings' -#: crm/fcrm/doctype/helpdesk_crm_settings/helpdesk_crm_settings.json +#: crm/fcrm/pagetype/helpdesk_crm_settings/helpdesk_crm_settings.json msgid "Is Helpdesk installed on a different site?" msgstr "" -#. Label of the is_primary (Check) field in DocType 'CRM Contacts' -#. Label of the is_primary (Check) field in DocType 'CRM Telephony Phone' -#: crm/fcrm/doctype/crm_contacts/crm_contacts.json -#: crm/fcrm/doctype/crm_telephony_phone/crm_telephony_phone.json +#. Label of the is_primary (Check) field in PageType 'CRM Contacts' +#. Label of the is_primary (Check) field in PageType 'CRM Telephony Phone' +#: crm/fcrm/pagetype/crm_contacts/crm_contacts.json +#: crm/fcrm/pagetype/crm_telephony_phone/crm_telephony_phone.json msgid "Is Primary" msgstr "" -#. Label of the is_standard (Check) field in DocType 'CRM Dropdown Item' -#. Label of the is_standard (Check) field in DocType 'CRM Form Script' -#. Label of the is_standard (Check) field in DocType 'CRM View Settings' -#: crm/fcrm/doctype/crm_dropdown_item/crm_dropdown_item.json -#: crm/fcrm/doctype/crm_form_script/crm_form_script.json -#: crm/fcrm/doctype/crm_view_settings/crm_view_settings.json +#. Label of the is_standard (Check) field in PageType 'CRM Dropdown Item' +#. Label of the is_standard (Check) field in PageType 'CRM Form Script' +#. Label of the is_standard (Check) field in PageType 'CRM View Settings' +#: crm/fcrm/pagetype/crm_dropdown_item/crm_dropdown_item.json +#: crm/fcrm/pagetype/crm_form_script/crm_form_script.json +#: crm/fcrm/pagetype/crm_view_settings/crm_view_settings.json msgid "Is Standard" msgstr "" -#. Description of the 'Enable Forecasting' (Check) field in DocType 'FCRM +#. Description of the 'Enable Forecasting' (Check) field in PageType 'FCRM #. Settings' -#: crm/fcrm/doctype/fcrm_settings/fcrm_settings.json +#: crm/fcrm/pagetype/fcrm_settings/fcrm_settings.json msgid "It will make deal's \"Expected Closure Date\" & \"Expected Deal Value\" mandatory to get accurate forecasting insights" msgstr "" -#. Label of the json (JSON) field in DocType 'CRM Global Settings' -#: crm/fcrm/doctype/crm_global_settings/crm_global_settings.json +#. Label of the json (JSON) field in PageType 'CRM Global Settings' +#: crm/fcrm/pagetype/crm_global_settings/crm_global_settings.json msgid "JSON" msgstr "" -#. Label of the job_title (Data) field in DocType 'CRM Deal' -#. Label of the job_title (Data) field in DocType 'CRM Lead' -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_lead/crm_lead.json +#. Label of the job_title (Data) field in PageType 'CRM Deal' +#. Label of the job_title (Data) field in PageType 'CRM Lead' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_lead/crm_lead.json msgid "Job Title" msgstr "" @@ -3182,20 +3182,20 @@ msgstr "" msgid "John Doe" msgstr "" -#. Label of the kanban_tab (Tab Break) field in DocType 'CRM View Settings' -#: crm/fcrm/doctype/crm_view_settings/crm_view_settings.json +#. Label of the kanban_tab (Tab Break) field in PageType 'CRM View Settings' +#: crm/fcrm/pagetype/crm_view_settings/crm_view_settings.json #: frontend/src/components/ViewControls.vue:384 #: frontend/src/components/ViewControls.vue:600 frontend/src/utils/view.js:20 msgid "Kanban" msgstr "" -#. Label of the kanban_columns (Code) field in DocType 'CRM View Settings' -#: crm/fcrm/doctype/crm_view_settings/crm_view_settings.json +#. Label of the kanban_columns (Code) field in PageType 'CRM View Settings' +#: crm/fcrm/pagetype/crm_view_settings/crm_view_settings.json msgid "Kanban Columns" msgstr "" -#. Label of the kanban_fields (Code) field in DocType 'CRM View Settings' -#: crm/fcrm/doctype/crm_view_settings/crm_view_settings.json +#. Label of the kanban_fields (Code) field in PageType 'CRM View Settings' +#: crm/fcrm/pagetype/crm_view_settings/crm_view_settings.json msgid "Kanban Fields" msgstr "" @@ -3204,15 +3204,15 @@ msgstr "" msgid "Kanban Settings" msgstr "" -#. Label of the key (Data) field in DocType 'CRM Invitation' -#: crm/fcrm/doctype/crm_invitation/crm_invitation.json +#. Label of the key (Data) field in PageType 'CRM Invitation' +#: crm/fcrm/pagetype/crm_invitation/crm_invitation.json msgid "Key" msgstr "" -#. Label of the label (Data) field in DocType 'CRM Dropdown Item' -#. Label of the label (Data) field in DocType 'CRM View Settings' -#: crm/fcrm/doctype/crm_dropdown_item/crm_dropdown_item.json -#: crm/fcrm/doctype/crm_view_settings/crm_view_settings.json +#. Label of the label (Data) field in PageType 'CRM Dropdown Item' +#. Label of the label (Data) field in PageType 'CRM View Settings' +#: crm/fcrm/pagetype/crm_dropdown_item/crm_dropdown_item.json +#: crm/fcrm/pagetype/crm_view_settings/crm_view_settings.json #: frontend/src/components/ColumnSettings.vue:100 msgid "Label" msgstr "" @@ -3229,10 +3229,10 @@ msgstr "" msgid "Last Month" msgstr "" -#. Label of the last_name (Data) field in DocType 'CRM Deal' -#. Label of the last_name (Data) field in DocType 'CRM Lead' -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_lead/crm_lead.json +#. Label of the last_name (Data) field in PageType 'CRM Deal' +#. Label of the last_name (Data) field in PageType 'CRM Lead' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_lead/crm_lead.json msgid "Last Name" msgstr "" @@ -3240,9 +3240,9 @@ msgstr "" msgid "Last Quarter" msgstr "" -#. Label of the last_status_change_log (Link) field in DocType 'CRM Status +#. Label of the last_status_change_log (Link) field in PageType 'CRM Status #. Change Log' -#: crm/fcrm/doctype/crm_status_change_log/crm_status_change_log.json +#: crm/fcrm/pagetype/crm_status_change_log/crm_status_change_log.json msgid "Last Status Change Log" msgstr "" @@ -3270,15 +3270,15 @@ msgstr "" msgid "Last user assigned by this rule" msgstr "" -#. Label of the layout (Code) field in DocType 'CRM Dashboard' -#. Label of the layout (Code) field in DocType 'CRM Fields Layout' -#: crm/fcrm/doctype/crm_dashboard/crm_dashboard.json -#: crm/fcrm/doctype/crm_fields_layout/crm_fields_layout.json +#. Label of the layout (Code) field in PageType 'CRM Dashboard' +#. Label of the layout (Code) field in PageType 'CRM Fields Layout' +#: crm/fcrm/pagetype/crm_dashboard/crm_dashboard.json +#: crm/fcrm/pagetype/crm_fields_layout/crm_fields_layout.json msgid "Layout" msgstr "" -#. Label of the lead (Link) field in DocType 'CRM Deal' -#: crm/fcrm/doctype/crm_deal/crm_deal.json +#. Label of the lead (Link) field in PageType 'CRM Deal' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json #: frontend/src/components/Calendar/CalendarEventPanel.vue:263 #: frontend/src/components/Calendar/CalendarEventPanel.vue:288 #: frontend/src/components/Layouts/AppSidebar.vue:550 @@ -3291,32 +3291,32 @@ msgstr "" msgid "Lead" msgstr "" -#. Label of the lead_details_tab (Tab Break) field in DocType 'CRM Deal' -#: crm/fcrm/doctype/crm_deal/crm_deal.json +#. Label of the lead_details_tab (Tab Break) field in PageType 'CRM Deal' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json msgid "Lead Details" msgstr "" -#. Label of the lead_name (Data) field in DocType 'CRM Deal' -#: crm/fcrm/doctype/crm_deal/crm_deal.json +#. Label of the lead_name (Data) field in PageType 'CRM Deal' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json msgid "Lead Name" msgstr "" -#. Label of the lead_owner (Link) field in DocType 'CRM Lead' -#: crm/fcrm/doctype/crm_lead/crm_lead.json +#. Label of the lead_owner (Link) field in PageType 'CRM Lead' +#: crm/fcrm/pagetype/crm_lead/crm_lead.json msgid "Lead Owner" msgstr "" -#: crm/fcrm/doctype/crm_lead/crm_lead.py:73 +#: crm/fcrm/pagetype/crm_lead/crm_lead.py:73 msgid "Lead Owner cannot be same as the Lead Email Address" msgstr "" -#. Label of a shortcut in the Frappe CRM Workspace -#: crm/fcrm/workspace/frappe_crm/frappe_crm.json +#. Label of a shortcut in the Jingrow CRM Workspace +#: crm/fcrm/workspace/jingrow_crm/jingrow_crm.json msgid "Lead Sources" msgstr "" -#. Label of a shortcut in the Frappe CRM Workspace -#: crm/fcrm/workspace/frappe_crm/frappe_crm.json +#. Label of a shortcut in the Jingrow CRM Workspace +#: crm/fcrm/workspace/jingrow_crm/jingrow_crm.json msgid "Lead Statuses" msgstr "" @@ -3328,8 +3328,8 @@ msgstr "" msgid "Lead to deal conversion pipeline" msgstr "" -#. Label of a shortcut in the Frappe CRM Workspace -#: crm/fcrm/workspace/frappe_crm/frappe_crm.json +#. Label of a shortcut in the Jingrow CRM Workspace +#: crm/fcrm/workspace/jingrow_crm/jingrow_crm.json #: frontend/src/pages/InvalidPage.vue:9 frontend/src/pages/Lead.vue:340 #: frontend/src/pages/MobileLead.vue:291 msgid "Leads" @@ -3345,8 +3345,8 @@ msgstr "" msgid "Learn about conditions" msgstr "" -#. Label of the lft (Int) field in DocType 'CRM Territory' -#: crm/fcrm/doctype/crm_territory/crm_territory.json +#. Label of the lft (Int) field in PageType 'CRM Territory' +#: crm/fcrm/pagetype/crm_territory/crm_territory.json msgid "Left" msgstr "" @@ -3367,15 +3367,15 @@ msgstr "" msgid "Link" msgstr "" -#. Label of the links (Table) field in DocType 'CRM Call Log' -#: crm/fcrm/doctype/crm_call_log/crm_call_log.json +#. Label of the links (Table) field in PageType 'CRM Call Log' +#: crm/fcrm/pagetype/crm_call_log/crm_call_log.json msgid "Links" msgstr "" -#. Option for the 'Apply To' (Select) field in DocType 'CRM Form Script' -#. Label of the list_tab (Tab Break) field in DocType 'CRM View Settings' -#: crm/fcrm/doctype/crm_form_script/crm_form_script.json -#: crm/fcrm/doctype/crm_view_settings/crm_view_settings.json +#. Option for the 'Apply To' (Select) field in PageType 'CRM Form Script' +#. Label of the list_tab (Tab Break) field in PageType 'CRM View Settings' +#: crm/fcrm/pagetype/crm_form_script/crm_form_script.json +#: crm/fcrm/pagetype/crm_view_settings/crm_view_settings.json #: frontend/src/components/ViewControls.vue:374 #: frontend/src/components/ViewControls.vue:589 frontend/src/utils/view.js:12 msgid "List" @@ -3385,9 +3385,9 @@ msgstr "" msgid "Listen" msgstr "" -#. Label of the load_default_columns (Check) field in DocType 'CRM View +#. Label of the load_default_columns (Check) field in PageType 'CRM View #. Settings' -#: crm/fcrm/doctype/crm_view_settings/crm_view_settings.json +#: crm/fcrm/pagetype/crm_view_settings/crm_view_settings.json msgid "Load Default Columns" msgstr "" @@ -3403,10 +3403,10 @@ msgstr "" msgid "Loading..." msgstr "" -#. Label of the log_tab (Tab Break) field in DocType 'CRM Deal' -#. Label of the log_tab (Tab Break) field in DocType 'CRM Lead' -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_lead/crm_lead.json +#. Label of the log_tab (Tab Break) field in PageType 'CRM Deal' +#. Label of the log_tab (Tab Break) field in PageType 'CRM Lead' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_lead/crm_lead.json msgid "Log" msgstr "" @@ -3417,28 +3417,28 @@ msgid "Log a Call" msgstr "" #: frontend/src/composables/frappecloud.js:23 -msgid "Login to Frappe Cloud?" +msgid "Login to Jingrow Cloud?" msgstr "" -#. Label of the brand_logo (Attach) field in DocType 'FCRM Settings' -#: crm/fcrm/doctype/fcrm_settings/fcrm_settings.json +#. Label of the brand_logo (Attach) field in PageType 'FCRM Settings' +#: crm/fcrm/pagetype/fcrm_settings/fcrm_settings.json msgid "Logo" msgstr "" -#. Option for the 'Type' (Select) field in DocType 'CRM Deal Status' -#: crm/fcrm/doctype/crm_deal_status/crm_deal_status.json +#. Option for the 'Type' (Select) field in PageType 'CRM Deal Status' +#: crm/fcrm/pagetype/crm_deal_status/crm_deal_status.json msgid "Lost" msgstr "" -#. Label of the lost_notes (Text) field in DocType 'CRM Deal' -#: crm/fcrm/doctype/crm_deal/crm_deal.json +#. Label of the lost_notes (Text) field in PageType 'CRM Deal' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json msgid "Lost Notes" msgstr "" -#. Label of the lost_reason (Link) field in DocType 'CRM Deal' -#. Label of the lost_reason (Data) field in DocType 'CRM Lost Reason' -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_lost_reason/crm_lost_reason.json +#. Label of the lost_reason (Link) field in PageType 'CRM Deal' +#. Label of the lost_reason (Data) field in PageType 'CRM Lost Reason' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_lost_reason/crm_lost_reason.json msgid "Lost Reason" msgstr "" @@ -3464,8 +3464,8 @@ msgstr "" msgid "Lost reason is required" msgstr "" -#. Option for the 'Priority' (Select) field in DocType 'CRM Task' -#: crm/fcrm/doctype/crm_task/crm_task.json +#. Option for the 'Priority' (Select) field in PageType 'CRM Task' +#: crm/fcrm/pagetype/crm_task/crm_task.json msgid "Low" msgstr "" @@ -3542,8 +3542,8 @@ msgstr "" msgid "Mandatory field error: {0}" msgstr "" -#. Option for the 'Telephony Medium' (Select) field in DocType 'CRM Call Log' -#: crm/fcrm/doctype/crm_call_log/crm_call_log.json +#. Option for the 'Telephony Medium' (Select) field in PageType 'CRM Call Log' +#: crm/fcrm/pagetype/crm_call_log/crm_call_log.json msgid "Manual" msgstr "" @@ -3562,25 +3562,25 @@ msgstr "" msgid "May 1, 2025" msgstr "" -#. Label of the medium (Data) field in DocType 'CRM Call Log' -#. Option for the 'Priority' (Select) field in DocType 'CRM Task' -#: crm/fcrm/doctype/crm_call_log/crm_call_log.json -#: crm/fcrm/doctype/crm_task/crm_task.json +#. Label of the medium (Data) field in PageType 'CRM Call Log' +#. Option for the 'Priority' (Select) field in PageType 'CRM Task' +#: crm/fcrm/pagetype/crm_call_log/crm_call_log.json +#: crm/fcrm/pagetype/crm_task/crm_task.json msgid "Medium" msgstr "" -#. Option for the 'Type' (Select) field in DocType 'CRM Notification' -#: crm/fcrm/doctype/crm_notification/crm_notification.json +#. Option for the 'Type' (Select) field in PageType 'CRM Notification' +#: crm/fcrm/pagetype/crm_notification/crm_notification.json msgid "Mention" msgstr "" -#. Label of the message (HTML Editor) field in DocType 'CRM Notification' -#: crm/fcrm/doctype/crm_notification/crm_notification.json +#. Label of the message (HTML Editor) field in PageType 'CRM Notification' +#: crm/fcrm/pagetype/crm_notification/crm_notification.json msgid "Message" msgstr "" -#. Label of the middle_name (Data) field in DocType 'CRM Lead' -#: crm/fcrm/doctype/crm_lead/crm_lead.json +#. Label of the middle_name (Data) field in PageType 'CRM Lead' +#: crm/fcrm/pagetype/crm_lead/crm_lead.json msgid "Middle Name" msgstr "" @@ -3588,10 +3588,10 @@ msgstr "" msgid "Minimize" msgstr "" -#. Label of the mobile_no (Data) field in DocType 'CRM Contacts' -#. Label of the mobile_no (Data) field in DocType 'CRM Lead' -#: crm/fcrm/doctype/crm_contacts/crm_contacts.json -#: crm/fcrm/doctype/crm_lead/crm_lead.json +#. Label of the mobile_no (Data) field in PageType 'CRM Contacts' +#. Label of the mobile_no (Data) field in PageType 'CRM Lead' +#: crm/fcrm/pagetype/crm_contacts/crm_contacts.json +#: crm/fcrm/pagetype/crm_lead/crm_lead.json msgid "Mobile No" msgstr "" @@ -3600,8 +3600,8 @@ msgstr "" msgid "Mobile No should be a number" msgstr "" -#. Label of the mobile_no (Data) field in DocType 'CRM Telephony Agent' -#: crm/fcrm/doctype/crm_telephony_agent/crm_telephony_agent.json +#. Label of the mobile_no (Data) field in PageType 'CRM Telephony Agent' +#: crm/fcrm/pagetype/crm_telephony_agent/crm_telephony_agent.json msgid "Mobile No." msgstr "" @@ -3623,10 +3623,10 @@ msgstr "" msgid "Mobile no" msgstr "" -#. Option for the 'Weekly Off' (Select) field in DocType 'CRM Holiday List' -#. Option for the 'Workday' (Select) field in DocType 'CRM Service Day' -#: crm/fcrm/doctype/crm_holiday_list/crm_holiday_list.json -#: crm/fcrm/doctype/crm_service_day/crm_service_day.json +#. Option for the 'Weekly Off' (Select) field in PageType 'CRM Holiday List' +#. Option for the 'Workday' (Select) field in PageType 'CRM Service Day' +#: crm/fcrm/pagetype/crm_holiday_list/crm_holiday_list.json +#: crm/fcrm/pagetype/crm_service_day/crm_service_day.json msgid "Monday" msgstr "" @@ -3658,12 +3658,12 @@ msgstr "" msgid "My Open Deals" msgstr "" -#. Label of the title (Data) field in DocType 'CRM Dashboard' -#. Label of the name1 (Data) field in DocType 'CRM Dropdown Item' -#. Label of the brand_name (Data) field in DocType 'FCRM Settings' -#: crm/fcrm/doctype/crm_dashboard/crm_dashboard.json -#: crm/fcrm/doctype/crm_dropdown_item/crm_dropdown_item.json -#: crm/fcrm/doctype/fcrm_settings/fcrm_settings.json +#. Label of the title (Data) field in PageType 'CRM Dashboard' +#. Label of the name1 (Data) field in PageType 'CRM Dropdown Item' +#. Label of the brand_name (Data) field in PageType 'FCRM Settings' +#: crm/fcrm/pagetype/crm_dashboard/crm_dashboard.json +#: crm/fcrm/pagetype/crm_dropdown_item/crm_dropdown_item.json +#: crm/fcrm/pagetype/fcrm_settings/fcrm_settings.json #: frontend/src/components/Settings/AssignmentRules/AssignmentRuleView.vue:51 #: frontend/src/components/Settings/AssignmentRules/AssignmentRuleView.vue:52 #: frontend/src/components/Settings/EmailTemplate/EditEmailTemplate.vue:39 @@ -3680,10 +3680,10 @@ msgstr "" msgid "Name is required" msgstr "" -#. Label of the naming_series (Select) field in DocType 'CRM Deal' -#. Label of the naming_series (Select) field in DocType 'CRM Product' -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_product/crm_product.json +#. Label of the naming_series (Select) field in PageType 'CRM Deal' +#. Label of the naming_series (Select) field in PageType 'CRM Product' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_product/crm_product.json msgid "Naming Series" msgstr "" @@ -3691,15 +3691,15 @@ msgstr "" msgid "Nested conditions" msgstr "" -#. Label of the net_amount (Currency) field in DocType 'CRM Products' -#: crm/fcrm/doctype/crm_products/crm_products.json +#. Label of the net_amount (Currency) field in PageType 'CRM Products' +#: crm/fcrm/pagetype/crm_products/crm_products.json msgid "Net Amount" msgstr "" -#. Label of the net_total (Currency) field in DocType 'CRM Deal' -#. Label of the net_total (Currency) field in DocType 'CRM Lead' -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_lead/crm_lead.json +#. Label of the net_total (Currency) field in PageType 'CRM Deal' +#. Label of the net_total (Currency) field in PageType 'CRM Lead' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_lead/crm_lead.json msgid "Net Total" msgstr "" @@ -3814,8 +3814,8 @@ msgstr "" msgid "Next Quarter" msgstr "" -#. Label of the next_step (Data) field in DocType 'CRM Deal' -#: crm/fcrm/doctype/crm_deal/crm_deal.json +#. Label of the next_step (Data) field in PageType 'CRM Deal' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json msgid "Next Step" msgstr "" @@ -3831,8 +3831,8 @@ msgstr "" msgid "No" msgstr "" -#. Option for the 'Status' (Select) field in DocType 'CRM Call Log' -#: crm/fcrm/doctype/crm_call_log/crm_call_log.json +#. Option for the 'Status' (Select) field in PageType 'CRM Call Log' +#: crm/fcrm/pagetype/crm_call_log/crm_call_log.json msgid "No Answer" msgstr "" @@ -3930,12 +3930,12 @@ msgstr "" msgid "No {0} Found" msgstr "" -#. Label of the no_of_employees (Select) field in DocType 'CRM Deal' -#. Label of the no_of_employees (Select) field in DocType 'CRM Lead' -#. Label of the no_of_employees (Select) field in DocType 'CRM Organization' -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_lead/crm_lead.json -#: crm/fcrm/doctype/crm_organization/crm_organization.json +#. Label of the no_of_employees (Select) field in PageType 'CRM Deal' +#. Label of the no_of_employees (Select) field in PageType 'CRM Lead' +#. Label of the no_of_employees (Select) field in PageType 'CRM Organization' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_lead/crm_lead.json +#: crm/fcrm/pagetype/crm_organization/crm_organization.json msgid "No. of Employees" msgstr "" @@ -3981,24 +3981,24 @@ msgstr "" msgid "Not Saved" msgstr "" -#: crm/fcrm/doctype/crm_deal/crm_deal.py:272 +#: crm/fcrm/pagetype/crm_deal/crm_deal.py:272 msgid "Not allowed to add contact to Deal" msgstr "" -#: crm/fcrm/doctype/crm_lead/crm_lead.py:408 +#: crm/fcrm/pagetype/crm_lead/crm_lead.py:408 msgid "Not allowed to convert Lead to Deal" msgstr "" -#: crm/fcrm/doctype/crm_deal/crm_deal.py:283 +#: crm/fcrm/pagetype/crm_deal/crm_deal.py:283 msgid "Not allowed to remove contact from Deal" msgstr "" -#: crm/fcrm/doctype/crm_deal/crm_deal.py:294 +#: crm/fcrm/pagetype/crm_deal/crm_deal.py:294 msgid "Not allowed to set primary contact for Deal" msgstr "" -#. Label of the note (Link) field in DocType 'CRM Call Log' -#: crm/fcrm/doctype/crm_call_log/crm_call_log.json +#. Label of the note (Link) field in PageType 'CRM Call Log' +#: crm/fcrm/pagetype/crm_call_log/crm_call_log.json #: frontend/src/components/Layouts/AppSidebar.vue:554 msgid "Note" msgstr "" @@ -4017,21 +4017,21 @@ msgstr "" msgid "Notification" msgstr "" -#. Label of the notification_text (Text) field in DocType 'CRM Notification' -#: crm/fcrm/doctype/crm_notification/crm_notification.json +#. Label of the notification_text (Text) field in PageType 'CRM Notification' +#: crm/fcrm/pagetype/crm_notification/crm_notification.json msgid "Notification Text" msgstr "" -#. Label of the notification_type_doc (Dynamic Link) field in DocType 'CRM +#. Label of the notification_type_pg (Dynamic Link) field in PageType 'CRM #. Notification' -#: crm/fcrm/doctype/crm_notification/crm_notification.json -msgid "Notification Type Doc" +#: crm/fcrm/pagetype/crm_notification/crm_notification.json +msgid "Notification Type Pg" msgstr "" -#. Label of the notification_type_doctype (Link) field in DocType 'CRM +#. Label of the notification_type_pagetype (Link) field in PageType 'CRM #. Notification' -#: crm/fcrm/doctype/crm_notification/crm_notification.json -msgid "Notification Type Doctype" +#: crm/fcrm/pagetype/crm_notification/crm_notification.json +msgid "Notification Type Pagetype" msgstr "" #: frontend/src/components/Layouts/AppSidebar.vue:13 @@ -4041,8 +4041,8 @@ msgstr "" msgid "Notifications" msgstr "" -#. Label of the number (Data) field in DocType 'CRM Telephony Phone' -#: crm/fcrm/doctype/crm_telephony_phone/crm_telephony_phone.json +#. Label of the number (Data) field in PageType 'CRM Telephony Phone' +#: crm/fcrm/pagetype/crm_telephony_phone/crm_telephony_phone.json msgid "Number" msgstr "" @@ -4064,18 +4064,18 @@ msgstr "" msgid "Old Condition" msgstr "" -#. Label of the old_parent (Link) field in DocType 'CRM Territory' -#: crm/fcrm/doctype/crm_territory/crm_territory.json +#. Label of the old_parent (Link) field in PageType 'CRM Territory' +#: crm/fcrm/pagetype/crm_territory/crm_territory.json msgid "Old Parent" msgstr "" -#. Option for the 'Type' (Select) field in DocType 'CRM Deal Status' -#: crm/fcrm/doctype/crm_deal_status/crm_deal_status.json +#. Option for the 'Type' (Select) field in PageType 'CRM Deal Status' +#: crm/fcrm/pagetype/crm_deal_status/crm_deal_status.json msgid "On Hold" msgstr "" -#. Option for the 'Type' (Select) field in DocType 'CRM Deal Status' -#: crm/fcrm/doctype/crm_deal_status/crm_deal_status.json +#. Option for the 'Type' (Select) field in PageType 'CRM Deal Status' +#: crm/fcrm/pagetype/crm_deal_status/crm_deal_status.json msgid "Ongoing" msgstr "" @@ -4088,13 +4088,13 @@ msgstr "" msgid "Only image files are allowed" msgstr "" -#: crm/fcrm/doctype/crm_deal/crm_deal.py:60 -#: crm/fcrm/doctype/crm_telephony_agent/crm_telephony_agent.py:23 +#: crm/fcrm/pagetype/crm_deal/crm_deal.py:60 +#: crm/fcrm/pagetype/crm_telephony_agent/crm_telephony_agent.py:23 msgid "Only one {0} can be set as primary." msgstr "" -#. Option for the 'Type' (Select) field in DocType 'CRM Deal Status' -#: crm/fcrm/doctype/crm_deal_status/crm_deal_status.json +#. Option for the 'Type' (Select) field in PageType 'CRM Deal Status' +#: crm/fcrm/pagetype/crm_deal_status/crm_deal_status.json msgid "Open" msgstr "" @@ -4108,13 +4108,13 @@ msgstr "" msgid "Open Lead" msgstr "" -#: crm/fcrm/doctype/crm_deal/crm_deal.js:6 -#: crm/fcrm/doctype/crm_lead/crm_lead.js:6 +#: crm/fcrm/pagetype/crm_deal/crm_deal.js:6 +#: crm/fcrm/pagetype/crm_lead/crm_lead.js:6 msgid "Open in Portal" msgstr "" -#. Label of the open_in_new_window (Check) field in DocType 'CRM Dropdown Item' -#: crm/fcrm/doctype/crm_dropdown_item/crm_dropdown_item.json +#. Label of the open_in_new_window (Check) field in PageType 'CRM Dropdown Item' +#: crm/fcrm/pagetype/crm_dropdown_item/crm_dropdown_item.json msgid "Open in new window" msgstr "" @@ -4136,17 +4136,17 @@ msgstr "" msgid "Or create leads manually" msgstr "" -#. Label of the order_by_tab (Tab Break) field in DocType 'CRM View Settings' -#. Label of the order_by (Code) field in DocType 'CRM View Settings' -#: crm/fcrm/doctype/crm_view_settings/crm_view_settings.json +#. Label of the order_by_tab (Tab Break) field in PageType 'CRM View Settings' +#. Label of the order_by (Code) field in PageType 'CRM View Settings' +#: crm/fcrm/pagetype/crm_view_settings/crm_view_settings.json msgid "Order By" msgstr "" -#. Label of the organization (Link) field in DocType 'CRM Deal' -#. Label of the organization_tab (Tab Break) field in DocType 'CRM Deal' -#. Label of the organization (Data) field in DocType 'CRM Lead' -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_lead/crm_lead.json +#. Label of the organization (Link) field in PageType 'CRM Deal' +#. Label of the organization_tab (Tab Break) field in PageType 'CRM Deal' +#. Label of the organization (Data) field in PageType 'CRM Lead' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_lead/crm_lead.json #: frontend/src/components/Layouts/AppSidebar.vue:553 #: frontend/src/components/Modals/ConvertToDealModal.vue:25 #: frontend/src/pages/Contact.vue:494 frontend/src/pages/MobileContact.vue:502 @@ -4158,22 +4158,22 @@ msgstr "" msgid "Organization" msgstr "" -#. Label of the organization_details_section (Section Break) field in DocType +#. Label of the organization_details_section (Section Break) field in PageType #. 'CRM Deal' -#: crm/fcrm/doctype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_deal/crm_deal.json msgid "Organization Details" msgstr "" -#. Label of the organization_logo (Attach Image) field in DocType 'CRM +#. Label of the organization_logo (Attach Image) field in PageType 'CRM #. Organization' -#: crm/fcrm/doctype/crm_organization/crm_organization.json +#: crm/fcrm/pagetype/crm_organization/crm_organization.json msgid "Organization Logo" msgstr "" -#. Label of the organization_name (Data) field in DocType 'CRM Deal' -#. Label of the organization_name (Data) field in DocType 'CRM Organization' -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_organization/crm_organization.json +#. Label of the organization_name (Data) field in PageType 'CRM Deal' +#. Label of the organization_name (Data) field in PageType 'CRM Organization' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_organization/crm_organization.json msgid "Organization Name" msgstr "" @@ -4181,8 +4181,8 @@ msgstr "" msgid "Organization logo" msgstr "" -#. Label of a shortcut in the Frappe CRM Workspace -#: crm/fcrm/workspace/frappe_crm/frappe_crm.json +#. Label of a shortcut in the Jingrow CRM Workspace +#: crm/fcrm/workspace/jingrow_crm/jingrow_crm.json #: frontend/src/pages/MobileOrganization.vue:205 #: frontend/src/pages/Organization.vue:234 msgid "Organizations" @@ -4196,8 +4196,8 @@ msgstr "" msgid "Other features" msgstr "" -#. Label of the organization_tab (Tab Break) field in DocType 'CRM Lead' -#: crm/fcrm/doctype/crm_lead/crm_lead.json +#. Label of the organization_tab (Tab Break) field in PageType 'CRM Lead' +#: crm/fcrm/pagetype/crm_lead/crm_lead.json msgid "Others" msgstr "" @@ -4205,13 +4205,13 @@ msgstr "" msgid "Outbound Call" msgstr "" -#. Option for the 'Type' (Select) field in DocType 'CRM Call Log' -#: crm/fcrm/doctype/crm_call_log/crm_call_log.json +#. Option for the 'Type' (Select) field in PageType 'CRM Call Log' +#: crm/fcrm/pagetype/crm_call_log/crm_call_log.json msgid "Outgoing" msgstr "" -#. Label of the log_owner (Link) field in DocType 'CRM Status Change Log' -#: crm/fcrm/doctype/crm_status_change_log/crm_status_change_log.json +#. Label of the log_owner (Link) field in PageType 'CRM Status Change Log' +#: crm/fcrm/pagetype/crm_status_change_log/crm_status_change_log.json msgid "Owner" msgstr "" @@ -4219,8 +4219,8 @@ msgstr "" msgid "Owner: {0}" msgstr "" -#. Label of the parent_crm_territory (Link) field in DocType 'CRM Territory' -#: crm/fcrm/doctype/crm_territory/crm_territory.json +#. Label of the parent_crm_territory (Link) field in PageType 'CRM Territory' +#: crm/fcrm/pagetype/crm_territory/crm_territory.json msgid "Parent CRM Territory" msgstr "" @@ -4251,8 +4251,8 @@ msgstr "" msgid "Payment Reminder from Frappé - (#{{ name }})" msgstr "" -#. Option for the 'Status' (Select) field in DocType 'CRM Invitation' -#: crm/fcrm/doctype/crm_invitation/crm_invitation.json +#. Option for the 'Status' (Select) field in PageType 'CRM Invitation' +#: crm/fcrm/pagetype/crm_invitation/crm_invitation.json msgid "Pending" msgstr "" @@ -4264,10 +4264,10 @@ msgstr "" msgid "Period" msgstr "" -#. Label of the person_section (Section Break) field in DocType 'CRM Deal' -#. Label of the person_tab (Tab Break) field in DocType 'CRM Lead' -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_lead/crm_lead.json +#. Label of the person_section (Section Break) field in PageType 'CRM Deal' +#. Label of the person_tab (Tab Break) field in PageType 'CRM Lead' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_lead/crm_lead.json msgid "Person" msgstr "" @@ -4275,19 +4275,19 @@ msgstr "" msgid "Personal Settings" msgstr "" -#. Label of the phone (Data) field in DocType 'CRM Contacts' -#. Label of the phone (Data) field in DocType 'CRM Lead' -#. Option for the 'Device' (Select) field in DocType 'CRM Telephony Agent' -#: crm/fcrm/doctype/crm_contacts/crm_contacts.json -#: crm/fcrm/doctype/crm_lead/crm_lead.json -#: crm/fcrm/doctype/crm_telephony_agent/crm_telephony_agent.json +#. Label of the phone (Data) field in PageType 'CRM Contacts' +#. Label of the phone (Data) field in PageType 'CRM Lead' +#. Option for the 'Device' (Select) field in PageType 'CRM Telephony Agent' +#: crm/fcrm/pagetype/crm_contacts/crm_contacts.json +#: crm/fcrm/pagetype/crm_lead/crm_lead.json +#: crm/fcrm/pagetype/crm_telephony_agent/crm_telephony_agent.json #: frontend/src/pages/MobileOrganization.vue:495 #: frontend/src/pages/Organization.vue:516 msgid "Phone" msgstr "" -#. Label of the phone_nos (Table) field in DocType 'CRM Telephony Agent' -#: crm/fcrm/doctype/crm_telephony_agent/crm_telephony_agent.json +#. Label of the phone_nos (Table) field in PageType 'CRM Telephony Agent' +#: crm/fcrm/pagetype/crm_telephony_agent/crm_telephony_agent.json msgid "Phone Numbers" msgstr "" @@ -4295,8 +4295,8 @@ msgstr "" msgid "Pin View" msgstr "" -#. Label of the pinned (Check) field in DocType 'CRM View Settings' -#: crm/fcrm/doctype/crm_view_settings/crm_view_settings.json +#. Label of the pinned (Check) field in PageType 'CRM View Settings' +#: crm/fcrm/pagetype/crm_view_settings/crm_view_settings.json msgid "Pinned" msgstr "" @@ -4346,7 +4346,7 @@ msgstr "" msgid "Please select an existing organization" msgstr "" -#: crm/fcrm/doctype/helpdesk_crm_settings/helpdesk_crm_settings.py:126 +#: crm/fcrm/pagetype/helpdesk_crm_settings/helpdesk_crm_settings.py:126 msgid "Please set Email Address" msgstr "" @@ -4354,18 +4354,18 @@ msgstr "" msgid "Please setup Exotel intergration" msgstr "" -#: crm/fcrm/doctype/crm_deal/crm_deal.py:181 +#: crm/fcrm/pagetype/crm_deal/crm_deal.py:181 msgid "Please specify a reason for losing the deal." msgstr "" -#: crm/fcrm/doctype/crm_deal/crm_deal.py:183 +#: crm/fcrm/pagetype/crm_deal/crm_deal.py:183 msgid "Please specify the reason for losing the deal." msgstr "" -#. Label of the position (Int) field in DocType 'CRM Deal Status' -#. Label of the position (Int) field in DocType 'CRM Lead Status' -#: crm/fcrm/doctype/crm_deal_status/crm_deal_status.json -#: crm/fcrm/doctype/crm_lead_status/crm_lead_status.json +#. Label of the position (Int) field in PageType 'CRM Deal Status' +#. Label of the position (Int) field in PageType 'CRM Lead Status' +#: crm/fcrm/pagetype/crm_deal_status/crm_deal_status.json +#: crm/fcrm/pagetype/crm_lead_status/crm_lead_status.json msgid "Position" msgstr "" @@ -4373,18 +4373,18 @@ msgstr "" msgid "Primary" msgstr "" -#. Label of the email (Data) field in DocType 'CRM Deal' -#: crm/fcrm/doctype/crm_deal/crm_deal.json +#. Label of the email (Data) field in PageType 'CRM Deal' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json msgid "Primary Email" msgstr "" -#. Label of the mobile_no (Data) field in DocType 'CRM Deal' -#: crm/fcrm/doctype/crm_deal/crm_deal.json +#. Label of the mobile_no (Data) field in PageType 'CRM Deal' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json msgid "Primary Mobile No" msgstr "" -#. Label of the phone (Data) field in DocType 'CRM Deal' -#: crm/fcrm/doctype/crm_deal/crm_deal.json +#. Label of the phone (Data) field in PageType 'CRM Deal' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json msgid "Primary Phone" msgstr "" @@ -4392,57 +4392,57 @@ msgstr "" msgid "Primary contact set" msgstr "" -#. Label of the priorities (Table) field in DocType 'CRM Service Level +#. Label of the priorities (Table) field in PageType 'CRM Service Level #. Agreement' -#: crm/fcrm/doctype/crm_service_level_agreement/crm_service_level_agreement.json +#: crm/fcrm/pagetype/crm_service_level_agreement/crm_service_level_agreement.json msgid "Priorities" msgstr "" -#. Label of the priority (Link) field in DocType 'CRM Service Level Priority' -#. Label of the priority (Select) field in DocType 'CRM Task' -#: crm/fcrm/doctype/crm_service_level_priority/crm_service_level_priority.json -#: crm/fcrm/doctype/crm_task/crm_task.json +#. Label of the priority (Link) field in PageType 'CRM Service Level Priority' +#. Label of the priority (Select) field in PageType 'CRM Task' +#: crm/fcrm/pagetype/crm_service_level_priority/crm_service_level_priority.json +#: crm/fcrm/pagetype/crm_task/crm_task.json #: frontend/src/components/Settings/AssignmentRules/AssignmentRuleView.vue:64 #: frontend/src/components/Settings/AssignmentRules/AssignmentRulesList.vue:20 msgid "Priority" msgstr "" -#. Label of the private (Check) field in DocType 'CRM Dashboard' -#: crm/fcrm/doctype/crm_dashboard/crm_dashboard.json +#. Label of the private (Check) field in PageType 'CRM Dashboard' +#: crm/fcrm/pagetype/crm_dashboard/crm_dashboard.json #: frontend/src/components/FilesUploader/FilesUploaderArea.vue:89 msgid "Private" msgstr "" -#. Label of the probability (Percent) field in DocType 'CRM Deal' -#. Label of the probability (Percent) field in DocType 'CRM Deal Status' -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_deal_status/crm_deal_status.json +#. Label of the probability (Percent) field in PageType 'CRM Deal' +#. Label of the probability (Percent) field in PageType 'CRM Deal Status' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_deal_status/crm_deal_status.json msgid "Probability" msgstr "" -#. Label of the product_code (Link) field in DocType 'CRM Products' -#: crm/fcrm/doctype/crm_products/crm_products.json +#. Label of the product_code (Link) field in PageType 'CRM Products' +#: crm/fcrm/pagetype/crm_products/crm_products.json msgid "Product" msgstr "" -#. Label of the product_code (Data) field in DocType 'CRM Product' -#: crm/fcrm/doctype/crm_product/crm_product.json +#. Label of the product_code (Data) field in PageType 'CRM Product' +#: crm/fcrm/pagetype/crm_product/crm_product.json msgid "Product Code" msgstr "" -#. Label of the product_name (Data) field in DocType 'CRM Product' -#. Label of the product_name (Data) field in DocType 'CRM Products' -#: crm/fcrm/doctype/crm_product/crm_product.json -#: crm/fcrm/doctype/crm_products/crm_products.json +#. Label of the product_name (Data) field in PageType 'CRM Product' +#. Label of the product_name (Data) field in PageType 'CRM Products' +#: crm/fcrm/pagetype/crm_product/crm_product.json +#: crm/fcrm/pagetype/crm_products/crm_products.json msgid "Product Name" msgstr "" -#. Label of the products_tab (Tab Break) field in DocType 'CRM Deal' -#. Label of the products (Table) field in DocType 'CRM Deal' -#. Label of the products_tab (Tab Break) field in DocType 'CRM Lead' -#. Label of the products (Table) field in DocType 'CRM Lead' -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_lead/crm_lead.json +#. Label of the products_tab (Tab Break) field in PageType 'CRM Deal' +#. Label of the products (Table) field in PageType 'CRM Deal' +#. Label of the products_tab (Tab Break) field in PageType 'CRM Lead' +#. Label of the products (Table) field in PageType 'CRM Lead' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_lead/crm_lead.json msgid "Products" msgstr "" @@ -4459,8 +4459,8 @@ msgstr "" msgid "Projected vs actual revenue based on deal probability" msgstr "" -#. Label of the public (Check) field in DocType 'CRM View Settings' -#: crm/fcrm/doctype/crm_view_settings/crm_view_settings.json +#. Label of the public (Check) field in PageType 'CRM View Settings' +#: crm/fcrm/pagetype/crm_view_settings/crm_view_settings.json msgid "Public" msgstr "" @@ -4472,23 +4472,23 @@ msgstr "" msgid "Public view" msgstr "" -#. Label of the qty (Float) field in DocType 'CRM Products' -#: crm/fcrm/doctype/crm_products/crm_products.json +#. Label of the qty (Float) field in PageType 'CRM Products' +#: crm/fcrm/pagetype/crm_products/crm_products.json msgid "Quantity" msgstr "" -#. Option for the 'Status' (Select) field in DocType 'CRM Call Log' -#: crm/fcrm/doctype/crm_call_log/crm_call_log.json +#. Option for the 'Status' (Select) field in PageType 'CRM Call Log' +#: crm/fcrm/pagetype/crm_call_log/crm_call_log.json msgid "Queued" msgstr "" -#. Option for the 'Type' (Select) field in DocType 'CRM Fields Layout' -#: crm/fcrm/doctype/crm_fields_layout/crm_fields_layout.json +#. Option for the 'Type' (Select) field in PageType 'CRM Fields Layout' +#: crm/fcrm/pagetype/crm_fields_layout/crm_fields_layout.json msgid "Quick Entry" msgstr "" -#. Option for the 'Type' (Select) field in DocType 'CRM Global Settings' -#: crm/fcrm/doctype/crm_global_settings/crm_global_settings.json +#. Option for the 'Type' (Select) field in PageType 'CRM Global Settings' +#: crm/fcrm/pagetype/crm_global_settings/crm_global_settings.json msgid "Quick Filters" msgstr "" @@ -4500,13 +4500,13 @@ msgstr "" msgid "Quick entry layout" msgstr "" -#. Label of the rate (Currency) field in DocType 'CRM Products' -#: crm/fcrm/doctype/crm_products/crm_products.json +#. Label of the rate (Currency) field in PageType 'CRM Products' +#: crm/fcrm/pagetype/crm_products/crm_products.json msgid "Rate" msgstr "Pris" -#. Label of the read (Check) field in DocType 'CRM Notification' -#: crm/fcrm/doctype/crm_notification/crm_notification.json +#. Label of the read (Check) field in PageType 'CRM Notification' +#: crm/fcrm/pagetype/crm_notification/crm_notification.json msgid "Read" msgstr "" @@ -4514,48 +4514,48 @@ msgstr "" msgid "Reason" msgstr "" -#. Label of the record_calls (Check) field in DocType 'CRM Twilio Settings' -#: crm/fcrm/doctype/crm_twilio_settings/crm_twilio_settings.json +#. Label of the record_calls (Check) field in PageType 'CRM Twilio Settings' +#: crm/fcrm/pagetype/crm_twilio_settings/crm_twilio_settings.json msgid "Record Calls" msgstr "" -#. Label of the record_call (Check) field in DocType 'CRM Exotel Settings' -#: crm/fcrm/doctype/crm_exotel_settings/crm_exotel_settings.json +#. Label of the record_call (Check) field in PageType 'CRM Exotel Settings' +#: crm/fcrm/pagetype/crm_exotel_settings/crm_exotel_settings.json msgid "Record Outgoing Calls" msgstr "" -#. Label of the recording_url (Data) field in DocType 'CRM Call Log' -#: crm/fcrm/doctype/crm_call_log/crm_call_log.json +#. Label of the recording_url (Data) field in PageType 'CRM Call Log' +#: crm/fcrm/pagetype/crm_call_log/crm_call_log.json msgid "Recording URL" msgstr "" -#. Label of the reference_name (Dynamic Link) field in DocType 'CRM +#. Label of the reference_name (Dynamic Link) field in PageType 'CRM #. Notification' -#. Label of the reference_docname (Dynamic Link) field in DocType 'CRM Task' -#. Label of the reference_docname (Dynamic Link) field in DocType 'FCRM Note' -#: crm/fcrm/doctype/crm_notification/crm_notification.json -#: crm/fcrm/doctype/crm_task/crm_task.json -#: crm/fcrm/doctype/fcrm_note/fcrm_note.json -msgid "Reference Doc" +#. Label of the reference_docname (Dynamic Link) field in PageType 'CRM Task' +#. Label of the reference_docname (Dynamic Link) field in PageType 'FCRM Note' +#: crm/fcrm/pagetype/crm_notification/crm_notification.json +#: crm/fcrm/pagetype/crm_task/crm_task.json +#: crm/fcrm/pagetype/fcrm_note/fcrm_note.json +msgid "Reference Pg" msgstr "" -#. Label of the reference_doctype (Link) field in DocType 'CRM Notification' -#: crm/fcrm/doctype/crm_notification/crm_notification.json -msgid "Reference Doctype" +#. Label of the reference_pagetype (Link) field in PageType 'CRM Notification' +#: crm/fcrm/pagetype/crm_notification/crm_notification.json +msgid "Reference Pagetype" msgstr "" -#. Label of the reference_doctype (Link) field in DocType 'CRM Call Log' -#. Label of the reference_doctype (Link) field in DocType 'CRM Task' -#. Label of the reference_doctype (Link) field in DocType 'FCRM Note' -#: crm/fcrm/doctype/crm_call_log/crm_call_log.json -#: crm/fcrm/doctype/crm_task/crm_task.json -#: crm/fcrm/doctype/fcrm_note/fcrm_note.json +#. Label of the reference_pagetype (Link) field in PageType 'CRM Call Log' +#. Label of the reference_pagetype (Link) field in PageType 'CRM Task' +#. Label of the reference_pagetype (Link) field in PageType 'FCRM Note' +#: crm/fcrm/pagetype/crm_call_log/crm_call_log.json +#: crm/fcrm/pagetype/crm_task/crm_task.json +#: crm/fcrm/pagetype/fcrm_note/fcrm_note.json msgid "Reference Document Type" msgstr "" -#. Label of the reference_docname (Dynamic Link) field in DocType 'CRM Call +#. Label of the reference_docname (Dynamic Link) field in PageType 'CRM Call #. Log' -#: crm/fcrm/doctype/crm_call_log/crm_call_log.json +#: crm/fcrm/pagetype/crm_call_log/crm_call_log.json msgid "Reference Name" msgstr "" @@ -4625,8 +4625,8 @@ msgstr "" msgid "Report an Issue" msgstr "" -#. Option for the 'Type' (Select) field in DocType 'CRM Fields Layout' -#: crm/fcrm/doctype/crm_fields_layout/crm_fields_layout.json +#. Option for the 'Type' (Select) field in PageType 'CRM Fields Layout' +#: crm/fcrm/pagetype/crm_fields_layout/crm_fields_layout.json msgid "Required Fields" msgstr "" @@ -4642,7 +4642,7 @@ msgstr "" msgid "Reset Changes" msgstr "" -#: crm/fcrm/doctype/erpnext_crm_settings/erpnext_crm_settings.js:7 +#: crm/fcrm/pagetype/erpnext_crm_settings/erpnext_crm_settings.js:7 msgid "Reset ERPNext Form Script" msgstr "" @@ -4654,35 +4654,35 @@ msgstr "" msgid "Reset to default" msgstr "" -#. Label of the response_by (Datetime) field in DocType 'CRM Deal' -#. Label of the response_by (Datetime) field in DocType 'CRM Lead' -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_lead/crm_lead.json +#. Label of the response_by (Datetime) field in PageType 'CRM Deal' +#. Label of the response_by (Datetime) field in PageType 'CRM Lead' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_lead/crm_lead.json msgid "Response By" msgstr "" -#. Label of the response_details_section (Section Break) field in DocType 'CRM +#. Label of the response_details_section (Section Break) field in PageType 'CRM #. Deal' -#. Label of the response_details_section (Section Break) field in DocType 'CRM +#. Label of the response_details_section (Section Break) field in PageType 'CRM #. Lead' -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_lead/crm_lead.json +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_lead/crm_lead.json msgid "Response Details" msgstr "" -#. Label of the section_break_ufaf (Section Break) field in DocType 'CRM +#. Label of the section_break_ufaf (Section Break) field in PageType 'CRM #. Service Level Agreement' -#: crm/fcrm/doctype/crm_service_level_agreement/crm_service_level_agreement.json +#: crm/fcrm/pagetype/crm_service_level_agreement/crm_service_level_agreement.json msgid "Response and Follow Up" msgstr "" -#: crm/fcrm/doctype/fcrm_settings/fcrm_settings.js:14 +#: crm/fcrm/pagetype/fcrm_settings/fcrm_settings.js:14 msgid "Restore" msgstr "" -#. Label of the restore_defaults (Button) field in DocType 'FCRM Settings' -#: crm/fcrm/doctype/fcrm_settings/fcrm_settings.js:13 -#: crm/fcrm/doctype/fcrm_settings/fcrm_settings.json +#. Label of the restore_defaults (Button) field in PageType 'FCRM Settings' +#: crm/fcrm/pagetype/fcrm_settings/fcrm_settings.js:13 +#: crm/fcrm/pagetype/fcrm_settings/fcrm_settings.json msgid "Restore Defaults" msgstr "" @@ -4699,13 +4699,13 @@ msgstr "" msgid "Rich Text" msgstr "" -#. Label of the rgt (Int) field in DocType 'CRM Territory' -#: crm/fcrm/doctype/crm_territory/crm_territory.json +#. Label of the rgt (Int) field in PageType 'CRM Territory' +#: crm/fcrm/pagetype/crm_territory/crm_territory.json msgid "Right" msgstr "" -#. Option for the 'Status' (Select) field in DocType 'CRM Call Log' -#: crm/fcrm/doctype/crm_call_log/crm_call_log.json +#. Option for the 'Status' (Select) field in PageType 'CRM Call Log' +#: crm/fcrm/pagetype/crm_call_log/crm_call_log.json msgid "Ringing" msgstr "" @@ -4714,55 +4714,55 @@ msgstr "" msgid "Ringing..." msgstr "" -#. Label of the role (Select) field in DocType 'CRM Invitation' -#: crm/fcrm/doctype/crm_invitation/crm_invitation.json +#. Label of the role (Select) field in PageType 'CRM Invitation' +#: crm/fcrm/pagetype/crm_invitation/crm_invitation.json #: frontend/src/components/Modals/AddExistingUserModal.vue:46 msgid "Role" msgstr "" -#. Option for the 'Type' (Select) field in DocType 'CRM Dropdown Item' -#. Label of the route (Data) field in DocType 'CRM Dropdown Item' -#: crm/fcrm/doctype/crm_dropdown_item/crm_dropdown_item.json +#. Option for the 'Type' (Select) field in PageType 'CRM Dropdown Item' +#. Label of the route (Data) field in PageType 'CRM Dropdown Item' +#: crm/fcrm/pagetype/crm_dropdown_item/crm_dropdown_item.json msgid "Route" msgstr "" -#. Label of the route_name (Data) field in DocType 'CRM View Settings' -#: crm/fcrm/doctype/crm_view_settings/crm_view_settings.json +#. Label of the route_name (Data) field in PageType 'CRM View Settings' +#: crm/fcrm/pagetype/crm_view_settings/crm_view_settings.json msgid "Route Name" msgstr "" -#. Label of the rows (Code) field in DocType 'CRM View Settings' -#: crm/fcrm/doctype/crm_view_settings/crm_view_settings.json +#. Label of the rows (Code) field in PageType 'CRM View Settings' +#: crm/fcrm/pagetype/crm_view_settings/crm_view_settings.json msgid "Rows" msgstr "" -#. Label of the sla_tab (Tab Break) field in DocType 'CRM Deal' -#. Label of the sla (Link) field in DocType 'CRM Deal' -#. Label of the sla_tab (Tab Break) field in DocType 'CRM Lead' -#. Label of the sla (Link) field in DocType 'CRM Lead' -#. Label of a shortcut in the Frappe CRM Workspace -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_lead/crm_lead.json -#: crm/fcrm/workspace/frappe_crm/frappe_crm.json +#. Label of the sla_tab (Tab Break) field in PageType 'CRM Deal' +#. Label of the sla (Link) field in PageType 'CRM Deal' +#. Label of the sla_tab (Tab Break) field in PageType 'CRM Lead' +#. Label of the sla (Link) field in PageType 'CRM Lead' +#. Label of a shortcut in the Jingrow CRM Workspace +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_lead/crm_lead.json +#: crm/fcrm/workspace/jingrow_crm/jingrow_crm.json msgid "SLA" msgstr "" -#. Label of the sla_creation (Datetime) field in DocType 'CRM Deal' -#. Label of the sla_creation (Datetime) field in DocType 'CRM Lead' -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_lead/crm_lead.json +#. Label of the sla_creation (Datetime) field in PageType 'CRM Deal' +#. Label of the sla_creation (Datetime) field in PageType 'CRM Lead' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_lead/crm_lead.json msgid "SLA Creation" msgstr "" -#. Label of the sla_name (Data) field in DocType 'CRM Service Level Agreement' -#: crm/fcrm/doctype/crm_service_level_agreement/crm_service_level_agreement.json +#. Label of the sla_name (Data) field in PageType 'CRM Service Level Agreement' +#: crm/fcrm/pagetype/crm_service_level_agreement/crm_service_level_agreement.json msgid "SLA Name" msgstr "" -#. Label of the sla_status (Select) field in DocType 'CRM Deal' -#. Label of the sla_status (Select) field in DocType 'CRM Lead' -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_lead/crm_lead.json +#. Label of the sla_status (Select) field in PageType 'CRM Deal' +#. Label of the sla_status (Select) field in PageType 'CRM Lead' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_lead/crm_lead.json msgid "SLA Status" msgstr "" @@ -4771,57 +4771,57 @@ msgid "SUBJECT" msgstr "" #. Name of a role -#. Option for the 'Role' (Select) field in DocType 'CRM Invitation' -#: crm/fcrm/doctype/crm_call_log/crm_call_log.json -#: crm/fcrm/doctype/crm_communication_status/crm_communication_status.json -#: crm/fcrm/doctype/crm_dashboard/crm_dashboard.json -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_deal_status/crm_deal_status.json -#: crm/fcrm/doctype/crm_exotel_settings/crm_exotel_settings.json -#: crm/fcrm/doctype/crm_form_script/crm_form_script.json -#: crm/fcrm/doctype/crm_global_settings/crm_global_settings.json -#: crm/fcrm/doctype/crm_holiday_list/crm_holiday_list.json -#: crm/fcrm/doctype/crm_industry/crm_industry.json -#: crm/fcrm/doctype/crm_invitation/crm_invitation.json -#: crm/fcrm/doctype/crm_lead/crm_lead.json -#: crm/fcrm/doctype/crm_lead_source/crm_lead_source.json -#: crm/fcrm/doctype/crm_lead_status/crm_lead_status.json -#: crm/fcrm/doctype/crm_lost_reason/crm_lost_reason.json -#: crm/fcrm/doctype/crm_notification/crm_notification.json -#: crm/fcrm/doctype/crm_organization/crm_organization.json -#: crm/fcrm/doctype/crm_service_level_agreement/crm_service_level_agreement.json -#: crm/fcrm/doctype/crm_task/crm_task.json -#: crm/fcrm/doctype/crm_territory/crm_territory.json -#: crm/fcrm/doctype/crm_twilio_settings/crm_twilio_settings.json -#: crm/fcrm/doctype/crm_view_settings/crm_view_settings.json -#: crm/fcrm/doctype/erpnext_crm_settings/erpnext_crm_settings.json -#: crm/fcrm/doctype/fcrm_note/fcrm_note.json -#: crm/fcrm/doctype/fcrm_settings/fcrm_settings.json -#: crm/fcrm/doctype/helpdesk_crm_settings/helpdesk_crm_settings.json +#. Option for the 'Role' (Select) field in PageType 'CRM Invitation' +#: crm/fcrm/pagetype/crm_call_log/crm_call_log.json +#: crm/fcrm/pagetype/crm_communication_status/crm_communication_status.json +#: crm/fcrm/pagetype/crm_dashboard/crm_dashboard.json +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_deal_status/crm_deal_status.json +#: crm/fcrm/pagetype/crm_exotel_settings/crm_exotel_settings.json +#: crm/fcrm/pagetype/crm_form_script/crm_form_script.json +#: crm/fcrm/pagetype/crm_global_settings/crm_global_settings.json +#: crm/fcrm/pagetype/crm_holiday_list/crm_holiday_list.json +#: crm/fcrm/pagetype/crm_industry/crm_industry.json +#: crm/fcrm/pagetype/crm_invitation/crm_invitation.json +#: crm/fcrm/pagetype/crm_lead/crm_lead.json +#: crm/fcrm/pagetype/crm_lead_source/crm_lead_source.json +#: crm/fcrm/pagetype/crm_lead_status/crm_lead_status.json +#: crm/fcrm/pagetype/crm_lost_reason/crm_lost_reason.json +#: crm/fcrm/pagetype/crm_notification/crm_notification.json +#: crm/fcrm/pagetype/crm_organization/crm_organization.json +#: crm/fcrm/pagetype/crm_service_level_agreement/crm_service_level_agreement.json +#: crm/fcrm/pagetype/crm_task/crm_task.json +#: crm/fcrm/pagetype/crm_territory/crm_territory.json +#: crm/fcrm/pagetype/crm_twilio_settings/crm_twilio_settings.json +#: crm/fcrm/pagetype/crm_view_settings/crm_view_settings.json +#: crm/fcrm/pagetype/erpnext_crm_settings/erpnext_crm_settings.json +#: crm/fcrm/pagetype/fcrm_note/fcrm_note.json +#: crm/fcrm/pagetype/fcrm_settings/fcrm_settings.json +#: crm/fcrm/pagetype/helpdesk_crm_settings/helpdesk_crm_settings.json msgid "Sales Manager" msgstr "" #. Name of a role -#. Option for the 'Role' (Select) field in DocType 'CRM Invitation' -#: crm/fcrm/doctype/crm_call_log/crm_call_log.json -#: crm/fcrm/doctype/crm_communication_status/crm_communication_status.json -#: crm/fcrm/doctype/crm_dashboard/crm_dashboard.json -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_deal_status/crm_deal_status.json -#: crm/fcrm/doctype/crm_global_settings/crm_global_settings.json -#: crm/fcrm/doctype/crm_holiday_list/crm_holiday_list.json -#: crm/fcrm/doctype/crm_industry/crm_industry.json -#: crm/fcrm/doctype/crm_invitation/crm_invitation.json -#: crm/fcrm/doctype/crm_lead/crm_lead.json -#: crm/fcrm/doctype/crm_lead_source/crm_lead_source.json -#: crm/fcrm/doctype/crm_lead_status/crm_lead_status.json -#: crm/fcrm/doctype/crm_lost_reason/crm_lost_reason.json -#: crm/fcrm/doctype/crm_notification/crm_notification.json -#: crm/fcrm/doctype/crm_organization/crm_organization.json -#: crm/fcrm/doctype/crm_task/crm_task.json -#: crm/fcrm/doctype/crm_territory/crm_territory.json -#: crm/fcrm/doctype/crm_view_settings/crm_view_settings.json -#: crm/fcrm/doctype/fcrm_note/fcrm_note.json +#. Option for the 'Role' (Select) field in PageType 'CRM Invitation' +#: crm/fcrm/pagetype/crm_call_log/crm_call_log.json +#: crm/fcrm/pagetype/crm_communication_status/crm_communication_status.json +#: crm/fcrm/pagetype/crm_dashboard/crm_dashboard.json +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_deal_status/crm_deal_status.json +#: crm/fcrm/pagetype/crm_global_settings/crm_global_settings.json +#: crm/fcrm/pagetype/crm_holiday_list/crm_holiday_list.json +#: crm/fcrm/pagetype/crm_industry/crm_industry.json +#: crm/fcrm/pagetype/crm_invitation/crm_invitation.json +#: crm/fcrm/pagetype/crm_lead/crm_lead.json +#: crm/fcrm/pagetype/crm_lead_source/crm_lead_source.json +#: crm/fcrm/pagetype/crm_lead_status/crm_lead_status.json +#: crm/fcrm/pagetype/crm_lost_reason/crm_lost_reason.json +#: crm/fcrm/pagetype/crm_notification/crm_notification.json +#: crm/fcrm/pagetype/crm_organization/crm_organization.json +#: crm/fcrm/pagetype/crm_task/crm_task.json +#: crm/fcrm/pagetype/crm_territory/crm_territory.json +#: crm/fcrm/pagetype/crm_view_settings/crm_view_settings.json +#: crm/fcrm/pagetype/fcrm_note/fcrm_note.json #: frontend/src/components/Modals/AddExistingUserModal.vue:92 #: frontend/src/components/Settings/InviteUserPage.vue:156 #: frontend/src/components/Settings/InviteUserPage.vue:163 @@ -4845,17 +4845,17 @@ msgstr "" msgid "Salesperson" msgstr "" -#. Label of the salutation (Link) field in DocType 'CRM Deal' -#. Label of the salutation (Link) field in DocType 'CRM Lead' -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_lead/crm_lead.json +#. Label of the salutation (Link) field in PageType 'CRM Deal' +#. Label of the salutation (Link) field in PageType 'CRM Lead' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_lead/crm_lead.json msgid "Salutation" msgstr "" -#. Option for the 'Weekly Off' (Select) field in DocType 'CRM Holiday List' -#. Option for the 'Workday' (Select) field in DocType 'CRM Service Day' -#: crm/fcrm/doctype/crm_holiday_list/crm_holiday_list.json -#: crm/fcrm/doctype/crm_service_day/crm_service_day.json +#. Option for the 'Weekly Off' (Select) field in PageType 'CRM Holiday List' +#. Option for the 'Workday' (Select) field in PageType 'CRM Service Day' +#: crm/fcrm/pagetype/crm_holiday_list/crm_holiday_list.json +#: crm/fcrm/pagetype/crm_service_day/crm_service_day.json msgid "Saturday" msgstr "" @@ -4904,8 +4904,8 @@ msgstr "" msgid "Schedule an event" msgstr "" -#. Label of the script (Code) field in DocType 'CRM Form Script' -#: crm/fcrm/doctype/crm_form_script/crm_form_script.json +#. Label of the script (Code) field in PageType 'CRM Form Script' +#: crm/fcrm/pagetype/crm_form_script/crm_form_script.json msgid "Script" msgstr "" @@ -4973,18 +4973,18 @@ msgstr "" msgid "Send invites to" msgstr "" -#. Option for the 'Type' (Select) field in DocType 'CRM Dropdown Item' -#: crm/fcrm/doctype/crm_dropdown_item/crm_dropdown_item.json +#. Option for the 'Type' (Select) field in PageType 'CRM Dropdown Item' +#: crm/fcrm/pagetype/crm_dropdown_item/crm_dropdown_item.json msgid "Separator" msgstr "" -#. Label of the naming_series (Select) field in DocType 'CRM Lead' -#: crm/fcrm/doctype/crm_lead/crm_lead.json +#. Label of the naming_series (Select) field in PageType 'CRM Lead' +#: crm/fcrm/pagetype/crm_lead/crm_lead.json msgid "Series" msgstr "" -#. Label of the service_provider (Select) field in DocType 'FCRM Settings' -#: crm/fcrm/doctype/fcrm_settings/fcrm_settings.json +#. Label of the service_provider (Select) field in PageType 'FCRM Settings' +#: crm/fcrm/pagetype/fcrm_settings/fcrm_settings.json msgid "Service Provider" msgstr "" @@ -5029,7 +5029,7 @@ msgid "Setting up" msgstr "" #: frontend/src/components/Settings/emailConfig.js:145 -msgid "Setting up Frappe Mail requires you to have an API key and API Secret of your email account. Read more " +msgid "Setting up Jingrow Mail requires you to have an API key and API Secret of your email account. Read more " msgstr "" #: frontend/src/components/Settings/emailConfig.js:97 @@ -5062,8 +5062,8 @@ msgid "Setting up Yandex requires you to enable two factor authentication\n" "\t\t and app specific passwords. Read more " msgstr "" -#. Label of the defaults_tab (Tab Break) field in DocType 'FCRM Settings' -#: crm/fcrm/doctype/fcrm_settings/fcrm_settings.json +#. Label of the defaults_tab (Tab Break) field in PageType 'FCRM Settings' +#: crm/fcrm/pagetype/fcrm_settings/fcrm_settings.json #: frontend/src/components/Layouts/AppSidebar.vue:537 #: frontend/src/components/Settings/Settings.vue:12 msgid "Settings" @@ -5073,7 +5073,7 @@ msgstr "" msgid "Setup Email" msgstr "" -#: crm/fcrm/doctype/fcrm_settings/fcrm_settings.py:199 +#: crm/fcrm/pagetype/fcrm_settings/fcrm_settings.py:199 msgid "Setup the Exchange Rate Provider as 'Exchangerate Host' in settings, as default provider does not support currency conversion for {0} to {1}." msgstr "" @@ -5108,20 +5108,20 @@ msgstr "" msgid "Show preview" msgstr "" -#. Option for the 'Type' (Select) field in DocType 'CRM Fields Layout' -#: crm/fcrm/doctype/crm_fields_layout/crm_fields_layout.json +#. Option for the 'Type' (Select) field in PageType 'CRM Fields Layout' +#: crm/fcrm/pagetype/crm_fields_layout/crm_fields_layout.json msgid "Side Panel" msgstr "" -#. Option for the 'Type' (Select) field in DocType 'CRM Global Settings' -#: crm/fcrm/doctype/crm_global_settings/crm_global_settings.json +#. Option for the 'Type' (Select) field in PageType 'CRM Global Settings' +#: crm/fcrm/pagetype/crm_global_settings/crm_global_settings.json msgid "Sidebar Items" msgstr "" -#. Description of the 'Condition' (Code) field in DocType 'CRM Service Level +#. Description of the 'Condition' (Code) field in PageType 'CRM Service Level #. Agreement' -#: crm/fcrm/doctype/crm_service_level_agreement/crm_service_level_agreement.json -msgid "Simple Python Expression, Example: doc.status == 'Open' and doc.lead_source == 'Ads'" +#: crm/fcrm/pagetype/crm_service_level_agreement/crm_service_level_agreement.json +msgid "Simple Python Expression, Example: pg.status == 'Open' and pg.lead_source == 'Ads'" msgstr "" #: frontend/src/components/AssignTo.vue:83 @@ -5145,16 +5145,16 @@ msgstr "" msgid "Sort" msgstr "" -#. Label of the source (Link) field in DocType 'CRM Deal' -#. Label of the source (Link) field in DocType 'CRM Lead' -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_lead/crm_lead.json +#. Label of the source (Link) field in PageType 'CRM Deal' +#. Label of the source (Link) field in PageType 'CRM Lead' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_lead/crm_lead.json #: frontend/src/components/Modals/EditValueModal.vue:10 msgid "Source" msgstr "" -#. Label of the source_name (Data) field in DocType 'CRM Lead Source' -#: crm/fcrm/doctype/crm_lead_source/crm_lead_source.json +#. Label of the source_name (Data) field in PageType 'CRM Lead Source' +#: crm/fcrm/pagetype/crm_lead_source/crm_lead_source.json msgid "Source Name" msgstr "" @@ -5167,12 +5167,12 @@ msgstr "" msgid "Stage" msgstr "" -#: crm/fcrm/doctype/crm_form_script/crm_form_script.js:15 +#: crm/fcrm/pagetype/crm_form_script/crm_form_script.js:15 msgid "Standard Form Scripts can not be modified, duplicate the Form Script instead." msgstr "" -#. Label of the standard_rate (Currency) field in DocType 'CRM Product' -#: crm/fcrm/doctype/crm_product/crm_product.json +#. Label of the standard_rate (Currency) field in PageType 'CRM Product' +#: crm/fcrm/pagetype/crm_product/crm_product.json msgid "Standard Selling Rate" msgstr "" @@ -5180,18 +5180,18 @@ msgstr "" msgid "Standard Views" msgstr "" -#. Label of the start_date (Date) field in DocType 'CRM Service Level +#. Label of the start_date (Date) field in PageType 'CRM Service Level #. Agreement' -#. Label of the start_date (Date) field in DocType 'CRM Task' -#: crm/fcrm/doctype/crm_service_level_agreement/crm_service_level_agreement.json -#: crm/fcrm/doctype/crm_task/crm_task.json +#. Label of the start_date (Date) field in PageType 'CRM Task' +#: crm/fcrm/pagetype/crm_service_level_agreement/crm_service_level_agreement.json +#: crm/fcrm/pagetype/crm_task/crm_task.json msgid "Start Date" msgstr "" -#. Label of the start_time (Datetime) field in DocType 'CRM Call Log' -#. Label of the start_time (Time) field in DocType 'CRM Service Day' -#: crm/fcrm/doctype/crm_call_log/crm_call_log.json -#: crm/fcrm/doctype/crm_service_day/crm_service_day.json +#. Label of the start_time (Datetime) field in PageType 'CRM Call Log' +#. Label of the start_time (Time) field in PageType 'CRM Service Day' +#: crm/fcrm/pagetype/crm_call_log/crm_call_log.json +#: crm/fcrm/pagetype/crm_service_day/crm_service_day.json #: frontend/src/components/Calendar/CalendarEventPanel.vue:234 #: frontend/src/components/Modals/EventModal.vue:103 msgid "Start Time" @@ -5205,32 +5205,32 @@ msgstr "" msgid "Start with sample 10 leads" msgstr "" -#. Label of the status (Select) field in DocType 'CRM Call Log' -#. Label of the status (Data) field in DocType 'CRM Communication Status' -#. Label of the status (Link) field in DocType 'CRM Deal' -#. Label of the deal_status (Data) field in DocType 'CRM Deal Status' -#. Label of the status (Select) field in DocType 'CRM Invitation' -#. Label of the status (Link) field in DocType 'CRM Lead' -#. Label of the lead_status (Data) field in DocType 'CRM Lead Status' -#. Label of the status (Select) field in DocType 'CRM Task' -#: crm/fcrm/doctype/crm_call_log/crm_call_log.json -#: crm/fcrm/doctype/crm_communication_status/crm_communication_status.json -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_deal_status/crm_deal_status.json -#: crm/fcrm/doctype/crm_invitation/crm_invitation.json -#: crm/fcrm/doctype/crm_lead/crm_lead.json -#: crm/fcrm/doctype/crm_lead_status/crm_lead_status.json -#: crm/fcrm/doctype/crm_task/crm_task.json frontend/src/pages/Contact.vue:505 +#. Label of the status (Select) field in PageType 'CRM Call Log' +#. Label of the status (Data) field in PageType 'CRM Communication Status' +#. Label of the status (Link) field in PageType 'CRM Deal' +#. Label of the deal_status (Data) field in PageType 'CRM Deal Status' +#. Label of the status (Select) field in PageType 'CRM Invitation' +#. Label of the status (Link) field in PageType 'CRM Lead' +#. Label of the lead_status (Data) field in PageType 'CRM Lead Status' +#. Label of the status (Select) field in PageType 'CRM Task' +#: crm/fcrm/pagetype/crm_call_log/crm_call_log.json +#: crm/fcrm/pagetype/crm_communication_status/crm_communication_status.json +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_deal_status/crm_deal_status.json +#: crm/fcrm/pagetype/crm_invitation/crm_invitation.json +#: crm/fcrm/pagetype/crm_lead/crm_lead.json +#: crm/fcrm/pagetype/crm_lead_status/crm_lead_status.json +#: crm/fcrm/pagetype/crm_task/crm_task.json frontend/src/pages/Contact.vue:505 #: frontend/src/pages/MobileContact.vue:513 #: frontend/src/pages/MobileOrganization.vue:457 #: frontend/src/pages/Organization.vue:478 msgid "Status" msgstr "" -#. Label of the status_change_log (Table) field in DocType 'CRM Deal' -#. Label of the status_change_log (Table) field in DocType 'CRM Lead' -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_lead/crm_lead.json +#. Label of the status_change_log (Table) field in PageType 'CRM Deal' +#. Label of the status_change_log (Table) field in PageType 'CRM Lead' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_lead/crm_lead.json msgid "Status Change Log" msgstr "" @@ -5239,8 +5239,8 @@ msgstr "" msgid "Status is required" msgstr "" -#. Label of the subdomain (Data) field in DocType 'CRM Exotel Settings' -#: crm/fcrm/doctype/crm_exotel_settings/crm_exotel_settings.json +#. Label of the subdomain (Data) field in PageType 'CRM Exotel Settings' +#: crm/fcrm/pagetype/crm_exotel_settings/crm_exotel_settings.json msgid "Subdomain" msgstr "" @@ -5258,10 +5258,10 @@ msgstr "" msgid "Subject: {0}" msgstr "" -#. Option for the 'Weekly Off' (Select) field in DocType 'CRM Holiday List' -#. Option for the 'Workday' (Select) field in DocType 'CRM Service Day' -#: crm/fcrm/doctype/crm_holiday_list/crm_holiday_list.json -#: crm/fcrm/doctype/crm_service_day/crm_service_day.json +#. Option for the 'Weekly Off' (Select) field in PageType 'CRM Holiday List' +#. Option for the 'Workday' (Select) field in PageType 'CRM Service Day' +#: crm/fcrm/pagetype/crm_holiday_list/crm_holiday_list.json +#: crm/fcrm/pagetype/crm_service_day/crm_service_day.json msgid "Sunday" msgstr "" @@ -5282,21 +5282,21 @@ msgid "System Configuration" msgstr "" #. Name of a role -#. Option for the 'Role' (Select) field in DocType 'CRM Invitation' -#: crm/fcrm/doctype/crm_dashboard/crm_dashboard.json -#: crm/fcrm/doctype/crm_exotel_settings/crm_exotel_settings.json -#: crm/fcrm/doctype/crm_fields_layout/crm_fields_layout.json -#: crm/fcrm/doctype/crm_global_settings/crm_global_settings.json -#: crm/fcrm/doctype/crm_invitation/crm_invitation.json -#: crm/fcrm/doctype/crm_lead_source/crm_lead_source.json -#: crm/fcrm/doctype/crm_lost_reason/crm_lost_reason.json -#: crm/fcrm/doctype/crm_notification/crm_notification.json -#: crm/fcrm/doctype/crm_product/crm_product.json -#: crm/fcrm/doctype/crm_telephony_agent/crm_telephony_agent.json -#: crm/fcrm/doctype/crm_twilio_settings/crm_twilio_settings.json -#: crm/fcrm/doctype/erpnext_crm_settings/erpnext_crm_settings.json -#: crm/fcrm/doctype/fcrm_settings/fcrm_settings.json -#: crm/fcrm/doctype/helpdesk_crm_settings/helpdesk_crm_settings.json +#. Option for the 'Role' (Select) field in PageType 'CRM Invitation' +#: crm/fcrm/pagetype/crm_dashboard/crm_dashboard.json +#: crm/fcrm/pagetype/crm_exotel_settings/crm_exotel_settings.json +#: crm/fcrm/pagetype/crm_fields_layout/crm_fields_layout.json +#: crm/fcrm/pagetype/crm_global_settings/crm_global_settings.json +#: crm/fcrm/pagetype/crm_invitation/crm_invitation.json +#: crm/fcrm/pagetype/crm_lead_source/crm_lead_source.json +#: crm/fcrm/pagetype/crm_lost_reason/crm_lost_reason.json +#: crm/fcrm/pagetype/crm_notification/crm_notification.json +#: crm/fcrm/pagetype/crm_product/crm_product.json +#: crm/fcrm/pagetype/crm_telephony_agent/crm_telephony_agent.json +#: crm/fcrm/pagetype/crm_twilio_settings/crm_twilio_settings.json +#: crm/fcrm/pagetype/erpnext_crm_settings/erpnext_crm_settings.json +#: crm/fcrm/pagetype/fcrm_settings/fcrm_settings.json +#: crm/fcrm/pagetype/helpdesk_crm_settings/helpdesk_crm_settings.json msgid "System Manager" msgstr "" @@ -5308,8 +5308,8 @@ msgstr "" msgid "Take a note..." msgstr "" -#. Option for the 'Type' (Select) field in DocType 'CRM Notification' -#: crm/fcrm/doctype/crm_notification/crm_notification.json +#. Option for the 'Type' (Select) field in PageType 'CRM Notification' +#: crm/fcrm/pagetype/crm_notification/crm_notification.json #: frontend/src/components/Layouts/AppSidebar.vue:555 msgid "Task" msgstr "" @@ -5327,8 +5327,8 @@ msgstr "" msgid "Telephony" msgstr "" -#. Label of the telephony_medium (Select) field in DocType 'CRM Call Log' -#: crm/fcrm/doctype/crm_call_log/crm_call_log.json +#. Label of the telephony_medium (Select) field in PageType 'CRM Call Log' +#: crm/fcrm/pagetype/crm_call_log/crm_call_log.json msgid "Telephony Medium" msgstr "" @@ -5364,27 +5364,27 @@ msgstr "" msgid "Template updated successfully" msgstr "" -#. Label of a shortcut in the Frappe CRM Workspace -#: crm/fcrm/workspace/frappe_crm/frappe_crm.json +#. Label of a shortcut in the Jingrow CRM Workspace +#: crm/fcrm/workspace/jingrow_crm/jingrow_crm.json msgid "Territories" msgstr "" -#. Label of the territory (Link) field in DocType 'CRM Deal' -#. Label of the territory (Link) field in DocType 'CRM Lead' -#. Label of the territory (Link) field in DocType 'CRM Organization' -#: crm/api/dashboard.py:1022 crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_lead/crm_lead.json -#: crm/fcrm/doctype/crm_organization/crm_organization.json +#. Label of the territory (Link) field in PageType 'CRM Deal' +#. Label of the territory (Link) field in PageType 'CRM Lead' +#. Label of the territory (Link) field in PageType 'CRM Organization' +#: crm/api/dashboard.py:1022 crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_lead/crm_lead.json +#: crm/fcrm/pagetype/crm_organization/crm_organization.json msgid "Territory" msgstr "" -#. Label of the territory_manager (Link) field in DocType 'CRM Territory' -#: crm/fcrm/doctype/crm_territory/crm_territory.json +#. Label of the territory_manager (Link) field in PageType 'CRM Territory' +#: crm/fcrm/pagetype/crm_territory/crm_territory.json msgid "Territory Manager" msgstr "" -#. Label of the territory_name (Data) field in DocType 'CRM Territory' -#: crm/fcrm/doctype/crm_territory/crm_territory.json +#. Label of the territory_name (Data) field in PageType 'CRM Territory' +#: crm/fcrm/pagetype/crm_territory/crm_territory.json msgid "Territory Name" msgstr "" @@ -5392,22 +5392,22 @@ msgstr "" msgid "Thanks" msgstr "" -#: crm/fcrm/doctype/crm_service_level_agreement/crm_service_level_agreement.py:46 +#: crm/fcrm/pagetype/crm_service_level_agreement/crm_service_level_agreement.py:46 msgid "The Condition '{0}' is invalid: {1}" msgstr "" -#. Description of the 'Exchange Rate' (Float) field in DocType 'CRM Deal' -#: crm/fcrm/doctype/crm_deal/crm_deal.json +#. Description of the 'Exchange Rate' (Float) field in PageType 'CRM Deal' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json msgid "The rate used to convert the deal’s currency to your crm's base currency (set in CRM Settings). It is set once when the currency is first added and doesn't change automatically." msgstr "" -#. Description of the 'Exchange Rate' (Float) field in DocType 'CRM +#. Description of the 'Exchange Rate' (Float) field in PageType 'CRM #. Organization' -#: crm/fcrm/doctype/crm_organization/crm_organization.json +#: crm/fcrm/pagetype/crm_organization/crm_organization.json msgid "The rate used to convert the organization’s currency to your crm's base currency (set in CRM Settings). It is set once when the currency is first added and doesn't change automatically." msgstr "" -#: crm/fcrm/doctype/crm_service_level_agreement/crm_service_level_agreement.js:14 +#: crm/fcrm/pagetype/crm_service_level_agreement/crm_service_level_agreement.js:14 msgid "There can only be one default priority in Priorities table" msgstr "" @@ -5444,14 +5444,14 @@ msgstr "" msgid "This will delete selected items and unlink linked items to it, are you sure?" msgstr "" -#: crm/fcrm/doctype/fcrm_settings/fcrm_settings.js:9 +#: crm/fcrm/pagetype/fcrm_settings/fcrm_settings.js:9 msgid "This will restore (if not exist) all the default statuses, custom fields and layouts. Delete & Restore will delete default layouts and then restore them." msgstr "" -#. Option for the 'Weekly Off' (Select) field in DocType 'CRM Holiday List' -#. Option for the 'Workday' (Select) field in DocType 'CRM Service Day' -#: crm/fcrm/doctype/crm_holiday_list/crm_holiday_list.json -#: crm/fcrm/doctype/crm_service_day/crm_service_day.json +#. Option for the 'Weekly Off' (Select) field in PageType 'CRM Holiday List' +#. Option for the 'Workday' (Select) field in PageType 'CRM Service Day' +#: crm/fcrm/pagetype/crm_holiday_list/crm_holiday_list.json +#: crm/fcrm/pagetype/crm_service_day/crm_service_day.json msgid "Thursday" msgstr "" @@ -5463,18 +5463,18 @@ msgstr "" msgid "Timespan" msgstr "" -#. Label of the title (Data) field in DocType 'CRM Task' -#. Label of the title (Data) field in DocType 'FCRM Note' -#: crm/fcrm/doctype/crm_task/crm_task.json -#: crm/fcrm/doctype/fcrm_note/fcrm_note.json +#. Label of the title (Data) field in PageType 'CRM Task' +#. Label of the title (Data) field in PageType 'FCRM Note' +#: crm/fcrm/pagetype/crm_task/crm_task.json +#: crm/fcrm/pagetype/fcrm_note/fcrm_note.json #: frontend/src/components/Modals/EventModal.vue:43 #: frontend/src/components/Modals/NoteModal.vue:26 #: frontend/src/components/Modals/TaskModal.vue:25 msgid "Title" msgstr "" -#. Label of the title_field (Data) field in DocType 'CRM View Settings' -#: crm/fcrm/doctype/crm_view_settings/crm_view_settings.json +#. Label of the title_field (Data) field in PageType 'CRM View Settings' +#: crm/fcrm/pagetype/crm_view_settings/crm_view_settings.json #: frontend/src/components/Kanban/KanbanSettings.vue:29 msgid "Title Field" msgstr "" @@ -5484,28 +5484,28 @@ msgstr "" msgid "Title is required" msgstr "" -#. Label of the to (Data) field in DocType 'CRM Call Log' -#. Label of the to (Data) field in DocType 'CRM Status Change Log' -#: crm/fcrm/doctype/crm_call_log/crm_call_log.json -#: crm/fcrm/doctype/crm_status_change_log/crm_status_change_log.json +#. Label of the to (Data) field in PageType 'CRM Call Log' +#. Label of the to (Data) field in PageType 'CRM Status Change Log' +#: crm/fcrm/pagetype/crm_call_log/crm_call_log.json +#: crm/fcrm/pagetype/crm_status_change_log/crm_status_change_log.json #: frontend/src/components/Activities/EmailArea.vue:53 msgid "To" msgstr "" -#. Label of the to_date (Date) field in DocType 'CRM Holiday List' -#. Label of the to_date (Datetime) field in DocType 'CRM Status Change Log' -#: crm/fcrm/doctype/crm_holiday_list/crm_holiday_list.json -#: crm/fcrm/doctype/crm_status_change_log/crm_status_change_log.json +#. Label of the to_date (Date) field in PageType 'CRM Holiday List' +#. Label of the to_date (Datetime) field in PageType 'CRM Status Change Log' +#: crm/fcrm/pagetype/crm_holiday_list/crm_holiday_list.json +#: crm/fcrm/pagetype/crm_status_change_log/crm_status_change_log.json msgid "To Date" msgstr "" -#. Label of the to_type (Data) field in DocType 'CRM Status Change Log' -#: crm/fcrm/doctype/crm_status_change_log/crm_status_change_log.json +#. Label of the to_type (Data) field in PageType 'CRM Status Change Log' +#: crm/fcrm/pagetype/crm_status_change_log/crm_status_change_log.json msgid "To Type" msgstr "" -#. Label of the to_user (Link) field in DocType 'CRM Notification' -#: crm/fcrm/doctype/crm_notification/crm_notification.json +#. Label of the to_user (Link) field in PageType 'CRM Notification' +#: crm/fcrm/pagetype/crm_notification/crm_notification.json msgid "To User" msgstr "" @@ -5517,8 +5517,8 @@ msgstr "" msgid "Today" msgstr "" -#. Option for the 'Status' (Select) field in DocType 'CRM Task' -#: crm/fcrm/doctype/crm_task/crm_task.json +#. Option for the 'Status' (Select) field in PageType 'CRM Task' +#: crm/fcrm/pagetype/crm_task/crm_task.json msgid "Todo" msgstr "" @@ -5535,22 +5535,22 @@ msgstr "" msgid "Took a call with John Doe and discussed the new project." msgstr "" -#. Label of the total (Currency) field in DocType 'CRM Deal' -#. Label of the total (Currency) field in DocType 'CRM Lead' -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_lead/crm_lead.json +#. Label of the total (Currency) field in PageType 'CRM Deal' +#. Label of the total (Currency) field in PageType 'CRM Lead' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_lead/crm_lead.json msgid "Total" msgstr "" -#. Label of the total_holidays (Int) field in DocType 'CRM Holiday List' -#: crm/fcrm/doctype/crm_holiday_list/crm_holiday_list.json +#. Label of the total_holidays (Int) field in PageType 'CRM Holiday List' +#: crm/fcrm/pagetype/crm_holiday_list/crm_holiday_list.json msgid "Total Holidays" msgstr "" -#. Description of the 'Net Total' (Currency) field in DocType 'CRM Deal' -#. Description of the 'Net Total' (Currency) field in DocType 'CRM Lead' -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_lead/crm_lead.json +#. Description of the 'Net Total' (Currency) field in PageType 'CRM Deal' +#. Description of the 'Net Total' (Currency) field in PageType 'CRM Lead' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_lead/crm_lead.json msgid "Total after discount" msgstr "" @@ -5571,10 +5571,10 @@ msgstr "" msgid "Total number of won deals based on its closure date" msgstr "" -#. Option for the 'Weekly Off' (Select) field in DocType 'CRM Holiday List' -#. Option for the 'Workday' (Select) field in DocType 'CRM Service Day' -#: crm/fcrm/doctype/crm_holiday_list/crm_holiday_list.json -#: crm/fcrm/doctype/crm_service_day/crm_service_day.json +#. Option for the 'Weekly Off' (Select) field in PageType 'CRM Holiday List' +#. Option for the 'Workday' (Select) field in PageType 'CRM Service Day' +#: crm/fcrm/pagetype/crm_holiday_list/crm_holiday_list.json +#: crm/fcrm/pagetype/crm_service_day/crm_service_day.json msgid "Tuesday" msgstr "" @@ -5582,30 +5582,30 @@ msgstr "" msgid "Turn into a group" msgstr "" -#. Label of the twiml_sid (Data) field in DocType 'CRM Twilio Settings' -#: crm/fcrm/doctype/crm_twilio_settings/crm_twilio_settings.json +#. Label of the twiml_sid (Data) field in PageType 'CRM Twilio Settings' +#: crm/fcrm/pagetype/crm_twilio_settings/crm_twilio_settings.json msgid "TwiML SID" msgstr "" -#. Option for the 'Telephony Medium' (Select) field in DocType 'CRM Call Log' -#. Label of the twilio (Check) field in DocType 'CRM Telephony Agent' -#. Option for the 'Default Medium' (Select) field in DocType 'CRM Telephony +#. Option for the 'Telephony Medium' (Select) field in PageType 'CRM Call Log' +#. Label of the twilio (Check) field in PageType 'CRM Telephony Agent' +#. Option for the 'Default Medium' (Select) field in PageType 'CRM Telephony #. Agent' -#: crm/fcrm/doctype/crm_call_log/crm_call_log.json -#: crm/fcrm/doctype/crm_telephony_agent/crm_telephony_agent.json +#: crm/fcrm/pagetype/crm_call_log/crm_call_log.json +#: crm/fcrm/pagetype/crm_telephony_agent/crm_telephony_agent.json #: frontend/src/components/Layouts/AppSidebar.vue:601 #: frontend/src/components/Settings/TelephonySettings.vue:40 #: frontend/src/components/Settings/TelephonySettings.vue:50 msgid "Twilio" msgstr "" -#: crm/fcrm/doctype/crm_twilio_settings/crm_twilio_settings.py:59 -#: crm/fcrm/doctype/crm_twilio_settings/crm_twilio_settings.py:60 +#: crm/fcrm/pagetype/crm_twilio_settings/crm_twilio_settings.py:59 +#: crm/fcrm/pagetype/crm_twilio_settings/crm_twilio_settings.py:60 msgid "Twilio API credential creation error." msgstr "" -#. Label of the twilio_number (Data) field in DocType 'CRM Telephony Agent' -#: crm/fcrm/doctype/crm_telephony_agent/crm_telephony_agent.json +#. Label of the twilio_number (Data) field in PageType 'CRM Telephony Agent' +#: crm/fcrm/pagetype/crm_telephony_agent/crm_telephony_agent.json msgid "Twilio Number" msgstr "" @@ -5617,20 +5617,20 @@ msgstr "" msgid "Twilio settings updated successfully" msgstr "" -#. Label of the type (Select) field in DocType 'CRM Call Log' -#. Label of the type (Select) field in DocType 'CRM Deal Status' -#. Label of the type (Select) field in DocType 'CRM Dropdown Item' -#. Label of the type (Select) field in DocType 'CRM Fields Layout' -#. Label of the type (Select) field in DocType 'CRM Global Settings' -#. Label of the type (Select) field in DocType 'CRM Notification' -#. Label of the type (Select) field in DocType 'CRM View Settings' -#: crm/fcrm/doctype/crm_call_log/crm_call_log.json -#: crm/fcrm/doctype/crm_deal_status/crm_deal_status.json -#: crm/fcrm/doctype/crm_dropdown_item/crm_dropdown_item.json -#: crm/fcrm/doctype/crm_fields_layout/crm_fields_layout.json -#: crm/fcrm/doctype/crm_global_settings/crm_global_settings.json -#: crm/fcrm/doctype/crm_notification/crm_notification.json -#: crm/fcrm/doctype/crm_view_settings/crm_view_settings.json +#. Label of the type (Select) field in PageType 'CRM Call Log' +#. Label of the type (Select) field in PageType 'CRM Deal Status' +#. Label of the type (Select) field in PageType 'CRM Dropdown Item' +#. Label of the type (Select) field in PageType 'CRM Fields Layout' +#. Label of the type (Select) field in PageType 'CRM Global Settings' +#. Label of the type (Select) field in PageType 'CRM Notification' +#. Label of the type (Select) field in PageType 'CRM View Settings' +#: crm/fcrm/pagetype/crm_call_log/crm_call_log.json +#: crm/fcrm/pagetype/crm_deal_status/crm_deal_status.json +#: crm/fcrm/pagetype/crm_dropdown_item/crm_dropdown_item.json +#: crm/fcrm/pagetype/crm_fields_layout/crm_fields_layout.json +#: crm/fcrm/pagetype/crm_global_settings/crm_global_settings.json +#: crm/fcrm/pagetype/crm_notification/crm_notification.json +#: crm/fcrm/pagetype/crm_view_settings/crm_view_settings.json msgid "Type" msgstr "" @@ -5772,12 +5772,12 @@ msgstr "" msgid "Uploading {0}%" msgstr "" -#. Label of the user (Link) field in DocType 'CRM Dashboard' -#. Label of the user (Link) field in DocType 'CRM Telephony Agent' -#. Label of the user (Link) field in DocType 'CRM View Settings' -#: crm/fcrm/doctype/crm_dashboard/crm_dashboard.json -#: crm/fcrm/doctype/crm_telephony_agent/crm_telephony_agent.json -#: crm/fcrm/doctype/crm_view_settings/crm_view_settings.json +#. Label of the user (Link) field in PageType 'CRM Dashboard' +#. Label of the user (Link) field in PageType 'CRM Telephony Agent' +#. Label of the user (Link) field in PageType 'CRM View Settings' +#: crm/fcrm/pagetype/crm_dashboard/crm_dashboard.json +#: crm/fcrm/pagetype/crm_telephony_agent/crm_telephony_agent.json +#: crm/fcrm/pagetype/crm_view_settings/crm_view_settings.json msgid "User" msgstr "" @@ -5785,8 +5785,8 @@ msgstr "" msgid "User Management" msgstr "" -#. Label of the user_name (Data) field in DocType 'CRM Telephony Agent' -#: crm/fcrm/doctype/crm_telephony_agent/crm_telephony_agent.json +#. Label of the user_name (Data) field in PageType 'CRM Telephony Agent' +#: crm/fcrm/pagetype/crm_telephony_agent/crm_telephony_agent.json msgid "User Name" msgstr "" @@ -5808,9 +5808,9 @@ msgstr "" msgid "Users are required" msgstr "" -#. Label of the section_break_nevd (Section Break) field in DocType 'CRM +#. Label of the section_break_nevd (Section Break) field in PageType 'CRM #. Service Level Agreement' -#: crm/fcrm/doctype/crm_service_level_agreement/crm_service_level_agreement.json +#: crm/fcrm/pagetype/crm_service_level_agreement/crm_service_level_agreement.json msgid "Validity" msgstr "" @@ -5834,33 +5834,33 @@ msgstr "" msgid "Web form" msgstr "" -#. Label of the webhook_verify_token (Data) field in DocType 'CRM Exotel +#. Label of the webhook_verify_token (Data) field in PageType 'CRM Exotel #. Settings' -#: crm/fcrm/doctype/crm_exotel_settings/crm_exotel_settings.json +#: crm/fcrm/pagetype/crm_exotel_settings/crm_exotel_settings.json msgid "Webhook Verify Token" msgstr "" -#. Label of the website (Data) field in DocType 'CRM Deal' -#. Label of the website (Data) field in DocType 'CRM Lead' -#. Label of the website (Data) field in DocType 'CRM Organization' -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_lead/crm_lead.json -#: crm/fcrm/doctype/crm_organization/crm_organization.json +#. Label of the website (Data) field in PageType 'CRM Deal' +#. Label of the website (Data) field in PageType 'CRM Lead' +#. Label of the website (Data) field in PageType 'CRM Organization' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_lead/crm_lead.json +#: crm/fcrm/pagetype/crm_organization/crm_organization.json #: frontend/src/components/Modals/AboutModal.vue:52 msgid "Website" msgstr "" -#. Option for the 'Weekly Off' (Select) field in DocType 'CRM Holiday List' -#. Option for the 'Workday' (Select) field in DocType 'CRM Service Day' -#: crm/fcrm/doctype/crm_holiday_list/crm_holiday_list.json -#: crm/fcrm/doctype/crm_service_day/crm_service_day.json +#. Option for the 'Weekly Off' (Select) field in PageType 'CRM Holiday List' +#. Option for the 'Workday' (Select) field in PageType 'CRM Service Day' +#: crm/fcrm/pagetype/crm_holiday_list/crm_holiday_list.json +#: crm/fcrm/pagetype/crm_service_day/crm_service_day.json msgid "Wednesday" msgstr "" -#. Label of the weekly_off (Check) field in DocType 'CRM Holiday' -#. Label of the weekly_off (Select) field in DocType 'CRM Holiday List' -#: crm/fcrm/doctype/crm_holiday/crm_holiday.json -#: crm/fcrm/doctype/crm_holiday_list/crm_holiday_list.json +#. Label of the weekly_off (Check) field in PageType 'CRM Holiday' +#. Label of the weekly_off (Select) field in PageType 'CRM Holiday List' +#: crm/fcrm/pagetype/crm_holiday/crm_holiday.json +#: crm/fcrm/pagetype/crm_holiday_list/crm_holiday_list.json msgid "Weekly Off" msgstr "" @@ -5868,7 +5868,7 @@ msgstr "" msgid "Welcome Message" msgstr "" -#: crm/fcrm/doctype/helpdesk_crm_settings/helpdesk_crm_settings.py:155 +#: crm/fcrm/pagetype/helpdesk_crm_settings/helpdesk_crm_settings.py:155 msgid "Welcome to Helpdesk" msgstr "" @@ -5876,8 +5876,8 @@ msgstr "" msgid "Welcome {0}, lets add your first lead" msgstr "" -#. Option for the 'Type' (Select) field in DocType 'CRM Notification' -#: crm/fcrm/doctype/crm_notification/crm_notification.json +#. Option for the 'Type' (Select) field in PageType 'CRM Notification' +#: crm/fcrm/pagetype/crm_notification/crm_notification.json #: frontend/src/components/Layouts/AppSidebar.vue:603 #: frontend/src/components/Settings/Settings.vue:190 #: frontend/src/pages/Deal.vue:572 frontend/src/pages/Lead.vue:429 @@ -5902,8 +5902,8 @@ msgstr "" msgid "Width can be in number, pixel or rem (eg. 3, 30px, 10rem)" msgstr "" -#. Option for the 'Type' (Select) field in DocType 'CRM Deal Status' -#: crm/fcrm/doctype/crm_deal_status/crm_deal_status.json +#. Option for the 'Type' (Select) field in PageType 'CRM Deal Status' +#: crm/fcrm/pagetype/crm_deal_status/crm_deal_status.json msgid "Won" msgstr "" @@ -5912,16 +5912,16 @@ msgstr "" msgid "Won deals" msgstr "" -#. Label of the workday (Select) field in DocType 'CRM Service Day' -#: crm/fcrm/doctype/crm_service_day/crm_service_day.json +#. Label of the workday (Select) field in PageType 'CRM Service Day' +#: crm/fcrm/pagetype/crm_service_day/crm_service_day.json msgid "Workday" msgstr "" -#. Label of the section_break_rmgo (Section Break) field in DocType 'CRM +#. Label of the section_break_rmgo (Section Break) field in PageType 'CRM #. Service Level Agreement' -#. Label of the working_hours (Table) field in DocType 'CRM Service Level +#. Label of the working_hours (Table) field in PageType 'CRM Service Level #. Agreement' -#: crm/fcrm/doctype/crm_service_level_agreement/crm_service_level_agreement.json +#: crm/fcrm/pagetype/crm_service_level_agreement/crm_service_level_agreement.json msgid "Working Hours" msgstr "" @@ -5967,7 +5967,7 @@ msgstr "" msgid "You do not have permission to access this document" msgstr "" -#: crm/fcrm/doctype/crm_form_script/crm_form_script.py:24 +#: crm/fcrm/pagetype/crm_form_script/crm_form_script.py:24 msgid "You need to be in developer mode to edit a Standard Form Script" msgstr "" @@ -5995,10 +5995,10 @@ msgstr "" msgid "added a" msgstr "" -#. Option for the 'Color' (Select) field in DocType 'CRM Deal Status' -#. Option for the 'Color' (Select) field in DocType 'CRM Lead Status' -#: crm/fcrm/doctype/crm_deal_status/crm_deal_status.json -#: crm/fcrm/doctype/crm_lead_status/crm_lead_status.json +#. Option for the 'Color' (Select) field in PageType 'CRM Deal Status' +#. Option for the 'Color' (Select) field in PageType 'CRM Lead Status' +#: crm/fcrm/pagetype/crm_deal_status/crm_deal_status.json +#: crm/fcrm/pagetype/crm_lead_status/crm_lead_status.json msgid "amber" msgstr "" @@ -6010,17 +6010,17 @@ msgstr "" msgid "assigned a {0} {1} to you" msgstr "" -#. Option for the 'Color' (Select) field in DocType 'CRM Deal Status' -#. Option for the 'Color' (Select) field in DocType 'CRM Lead Status' -#: crm/fcrm/doctype/crm_deal_status/crm_deal_status.json -#: crm/fcrm/doctype/crm_lead_status/crm_lead_status.json +#. Option for the 'Color' (Select) field in PageType 'CRM Deal Status' +#. Option for the 'Color' (Select) field in PageType 'CRM Lead Status' +#: crm/fcrm/pagetype/crm_deal_status/crm_deal_status.json +#: crm/fcrm/pagetype/crm_lead_status/crm_lead_status.json msgid "black" msgstr "" -#. Option for the 'Color' (Select) field in DocType 'CRM Deal Status' -#. Option for the 'Color' (Select) field in DocType 'CRM Lead Status' -#: crm/fcrm/doctype/crm_deal_status/crm_deal_status.json -#: crm/fcrm/doctype/crm_lead_status/crm_lead_status.json +#. Option for the 'Color' (Select) field in PageType 'CRM Deal Status' +#. Option for the 'Color' (Select) field in PageType 'CRM Lead Status' +#: crm/fcrm/pagetype/crm_deal_status/crm_deal_status.json +#: crm/fcrm/pagetype/crm_lead_status/crm_lead_status.json msgid "blue" msgstr "" @@ -6037,10 +6037,10 @@ msgstr "" msgid "condition" msgstr "tilstand" -#. Option for the 'Color' (Select) field in DocType 'CRM Deal Status' -#. Option for the 'Color' (Select) field in DocType 'CRM Lead Status' -#: crm/fcrm/doctype/crm_deal_status/crm_deal_status.json -#: crm/fcrm/doctype/crm_lead_status/crm_lead_status.json +#. Option for the 'Color' (Select) field in PageType 'CRM Deal Status' +#. Option for the 'Color' (Select) field in PageType 'CRM Lead Status' +#: crm/fcrm/pagetype/crm_deal_status/crm_deal_status.json +#: crm/fcrm/pagetype/crm_lead_status/crm_lead_status.json msgid "cyan" msgstr "" @@ -6059,33 +6059,33 @@ msgstr "" msgid "email already exists" msgstr "" -#. Option for the 'Service Provider' (Select) field in DocType 'FCRM Settings' -#: crm/fcrm/doctype/fcrm_settings/fcrm_settings.json +#. Option for the 'Service Provider' (Select) field in PageType 'FCRM Settings' +#: crm/fcrm/pagetype/fcrm_settings/fcrm_settings.json #: frontend/src/components/Settings/CurrencySettings.vue:106 msgid "exchangerate.host" msgstr "" -#. Option for the 'Service Provider' (Select) field in DocType 'FCRM Settings' -#: crm/fcrm/doctype/fcrm_settings/fcrm_settings.json +#. Option for the 'Service Provider' (Select) field in PageType 'FCRM Settings' +#: crm/fcrm/pagetype/fcrm_settings/fcrm_settings.json msgid "frankfurter.app" msgstr "" -#. Option for the 'Color' (Select) field in DocType 'CRM Deal Status' -#. Option for the 'Color' (Select) field in DocType 'CRM Lead Status' -#: crm/fcrm/doctype/crm_deal_status/crm_deal_status.json -#: crm/fcrm/doctype/crm_lead_status/crm_lead_status.json +#. Option for the 'Color' (Select) field in PageType 'CRM Deal Status' +#. Option for the 'Color' (Select) field in PageType 'CRM Lead Status' +#: crm/fcrm/pagetype/crm_deal_status/crm_deal_status.json +#: crm/fcrm/pagetype/crm_lead_status/crm_lead_status.json msgid "gray" msgstr "" -#. Option for the 'Color' (Select) field in DocType 'CRM Deal Status' -#. Option for the 'Color' (Select) field in DocType 'CRM Lead Status' -#: crm/fcrm/doctype/crm_deal_status/crm_deal_status.json -#: crm/fcrm/doctype/crm_lead_status/crm_lead_status.json +#. Option for the 'Color' (Select) field in PageType 'CRM Deal Status' +#. Option for the 'Color' (Select) field in PageType 'CRM Lead Status' +#: crm/fcrm/pagetype/crm_deal_status/crm_deal_status.json +#: crm/fcrm/pagetype/crm_lead_status/crm_lead_status.json msgid "green" msgstr "" -#. Option for the 'Type' (Select) field in DocType 'CRM View Settings' -#: crm/fcrm/doctype/crm_view_settings/crm_view_settings.json +#. Option for the 'Type' (Select) field in PageType 'CRM View Settings' +#: crm/fcrm/pagetype/crm_view_settings/crm_view_settings.json msgid "group_by" msgstr "" @@ -6170,12 +6170,12 @@ msgstr "" msgid "just now" msgstr "" -#. Option for the 'Type' (Select) field in DocType 'CRM View Settings' -#: crm/fcrm/doctype/crm_view_settings/crm_view_settings.json +#. Option for the 'Type' (Select) field in PageType 'CRM View Settings' +#: crm/fcrm/pagetype/crm_view_settings/crm_view_settings.json msgid "kanban" msgstr "" -#: crm/api/doc.py:40 crm/api/doc.py:158 crm/api/doc.py:503 +#: crm/api/pg.py:40 crm/api/pg.py:158 crm/api/pg.py:503 msgid "label" msgstr "" @@ -6184,8 +6184,8 @@ msgstr "" msgid "leads" msgstr "" -#. Option for the 'Type' (Select) field in DocType 'CRM View Settings' -#: crm/fcrm/doctype/crm_view_settings/crm_view_settings.json +#. Option for the 'Type' (Select) field in PageType 'CRM View Settings' +#: crm/fcrm/pagetype/crm_view_settings/crm_view_settings.json msgid "list" msgstr "" @@ -6206,17 +6206,17 @@ msgstr "" msgid "operator" msgstr "" -#. Option for the 'Color' (Select) field in DocType 'CRM Deal Status' -#. Option for the 'Color' (Select) field in DocType 'CRM Lead Status' -#: crm/fcrm/doctype/crm_deal_status/crm_deal_status.json -#: crm/fcrm/doctype/crm_lead_status/crm_lead_status.json +#. Option for the 'Color' (Select) field in PageType 'CRM Deal Status' +#. Option for the 'Color' (Select) field in PageType 'CRM Lead Status' +#: crm/fcrm/pagetype/crm_deal_status/crm_deal_status.json +#: crm/fcrm/pagetype/crm_lead_status/crm_lead_status.json msgid "orange" msgstr "" -#. Option for the 'Color' (Select) field in DocType 'CRM Deal Status' -#. Option for the 'Color' (Select) field in DocType 'CRM Lead Status' -#: crm/fcrm/doctype/crm_deal_status/crm_deal_status.json -#: crm/fcrm/doctype/crm_lead_status/crm_lead_status.json +#. Option for the 'Color' (Select) field in PageType 'CRM Deal Status' +#. Option for the 'Color' (Select) field in PageType 'CRM Lead Status' +#: crm/fcrm/pagetype/crm_deal_status/crm_deal_status.json +#: crm/fcrm/pagetype/crm_lead_status/crm_lead_status.json msgid "pink" msgstr "" @@ -6232,10 +6232,10 @@ msgstr "" msgid "public" msgstr "" -#. Option for the 'Color' (Select) field in DocType 'CRM Deal Status' -#. Option for the 'Color' (Select) field in DocType 'CRM Lead Status' -#: crm/fcrm/doctype/crm_deal_status/crm_deal_status.json -#: crm/fcrm/doctype/crm_lead_status/crm_lead_status.json +#. Option for the 'Color' (Select) field in PageType 'CRM Deal Status' +#. Option for the 'Color' (Select) field in PageType 'CRM Lead Status' +#: crm/fcrm/pagetype/crm_deal_status/crm_deal_status.json +#: crm/fcrm/pagetype/crm_lead_status/crm_lead_status.json msgid "purple" msgstr "" @@ -6243,17 +6243,17 @@ msgstr "" msgid "received a whatsapp message in {0}" msgstr "" -#. Option for the 'Color' (Select) field in DocType 'CRM Deal Status' -#. Option for the 'Color' (Select) field in DocType 'CRM Lead Status' -#: crm/fcrm/doctype/crm_deal_status/crm_deal_status.json -#: crm/fcrm/doctype/crm_lead_status/crm_lead_status.json +#. Option for the 'Color' (Select) field in PageType 'CRM Deal Status' +#. Option for the 'Color' (Select) field in PageType 'CRM Lead Status' +#: crm/fcrm/pagetype/crm_deal_status/crm_deal_status.json +#: crm/fcrm/pagetype/crm_lead_status/crm_lead_status.json msgid "red" msgstr "" -#. Option for the 'Color' (Select) field in DocType 'CRM Deal Status' -#. Option for the 'Color' (Select) field in DocType 'CRM Lead Status' -#: crm/fcrm/doctype/crm_deal_status/crm_deal_status.json -#: crm/fcrm/doctype/crm_lead_status/crm_lead_status.json +#. Option for the 'Color' (Select) field in PageType 'CRM Deal Status' +#. Option for the 'Color' (Select) field in PageType 'CRM Lead Status' +#: crm/fcrm/pagetype/crm_deal_status/crm_deal_status.json +#: crm/fcrm/pagetype/crm_lead_status/crm_lead_status.json msgid "teal" msgstr "" @@ -6266,10 +6266,10 @@ msgstr "" msgid "tomorrow" msgstr "" -#. Option for the 'Color' (Select) field in DocType 'CRM Deal Status' -#. Option for the 'Color' (Select) field in DocType 'CRM Lead Status' -#: crm/fcrm/doctype/crm_deal_status/crm_deal_status.json -#: crm/fcrm/doctype/crm_lead_status/crm_lead_status.json +#. Option for the 'Color' (Select) field in PageType 'CRM Deal Status' +#. Option for the 'Color' (Select) field in PageType 'CRM Lead Status' +#: crm/fcrm/pagetype/crm_deal_status/crm_deal_status.json +#: crm/fcrm/pagetype/crm_lead_status/crm_lead_status.json msgid "violet" msgstr "" @@ -6278,10 +6278,10 @@ msgstr "" msgid "which are not compatible with this UI, you will need to recreate the conditions here if you want to manage and add new conditions from this UI." msgstr "" -#. Option for the 'Color' (Select) field in DocType 'CRM Deal Status' -#. Option for the 'Color' (Select) field in DocType 'CRM Lead Status' -#: crm/fcrm/doctype/crm_deal_status/crm_deal_status.json -#: crm/fcrm/doctype/crm_lead_status/crm_lead_status.json +#. Option for the 'Color' (Select) field in PageType 'CRM Deal Status' +#. Option for the 'Color' (Select) field in PageType 'CRM Lead Status' +#: crm/fcrm/pagetype/crm_deal_status/crm_deal_status.json +#: crm/fcrm/pagetype/crm_lead_status/crm_lead_status.json msgid "yellow" msgstr "" @@ -6379,7 +6379,7 @@ msgid "⚠️ Method \"{0}\" not found in class." msgstr "" #: frontend/src/data/script.js:83 -msgid "⚠️ No class found for doctype: {0}, it is mandatory to have a class for the parent doctype. it can be empty, but it should be present." +msgid "⚠️ No class found for pagetype: {0}, it is mandatory to have a class for the parent pagetype. it can be empty, but it should be present." msgstr "" #: frontend/src/data/script.js:180 diff --git a/crm/locale/de.po b/crm/locale/de.po index e3e21909..cf44f2f7 100644 --- a/crm/locale/de.po +++ b/crm/locale/de.po @@ -1,6 +1,6 @@ msgid "" msgstr "" -"Project-Id-Version: frappe\n" +"Project-Id-Version: jingrow\n" "Report-Msgid-Bugs-To: shariq@jingrow.com\n" "POT-Creation-Date: 2025-09-21 09:35+0000\n" "PO-Revision-Date: 2025-09-22 20:42\n" @@ -11,10 +11,10 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Generated-By: Babel 2.16.0\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -"X-Crowdin-Project: frappe\n" +"X-Crowdin-Project: jingrow\n" "X-Crowdin-Project-ID: 639578\n" "X-Crowdin-Language: de\n" -"X-Crowdin-File: /[frappe.crm] develop/crm/locale/main.pot\n" +"X-Crowdin-File: /[jingrow.crm] develop/crm/locale/main.pot\n" "X-Crowdin-File-ID: 97\n" "Language: de_DE\n" @@ -55,83 +55,83 @@ msgstr "vor einer Woche" msgid "1 year ago" msgstr "vor einem Jahr" -#. Option for the 'No. of Employees' (Select) field in DocType 'CRM Deal' -#. Option for the 'No. of Employees' (Select) field in DocType 'CRM Lead' -#. Option for the 'No. of Employees' (Select) field in DocType 'CRM +#. Option for the 'No. of Employees' (Select) field in PageType 'CRM Deal' +#. Option for the 'No. of Employees' (Select) field in PageType 'CRM Lead' +#. Option for the 'No. of Employees' (Select) field in PageType 'CRM #. Organization' -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_lead/crm_lead.json -#: crm/fcrm/doctype/crm_organization/crm_organization.json +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_lead/crm_lead.json +#: crm/fcrm/pagetype/crm_organization/crm_organization.json msgid "1-10" msgstr "1-10" -#. Option for the 'No. of Employees' (Select) field in DocType 'CRM Deal' -#. Option for the 'No. of Employees' (Select) field in DocType 'CRM Lead' -#. Option for the 'No. of Employees' (Select) field in DocType 'CRM +#. Option for the 'No. of Employees' (Select) field in PageType 'CRM Deal' +#. Option for the 'No. of Employees' (Select) field in PageType 'CRM Lead' +#. Option for the 'No. of Employees' (Select) field in PageType 'CRM #. Organization' -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_lead/crm_lead.json -#: crm/fcrm/doctype/crm_organization/crm_organization.json +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_lead/crm_lead.json +#: crm/fcrm/pagetype/crm_organization/crm_organization.json msgid "1000+" msgstr "1000+" -#. Option for the 'No. of Employees' (Select) field in DocType 'CRM Deal' -#. Option for the 'No. of Employees' (Select) field in DocType 'CRM Lead' -#. Option for the 'No. of Employees' (Select) field in DocType 'CRM +#. Option for the 'No. of Employees' (Select) field in PageType 'CRM Deal' +#. Option for the 'No. of Employees' (Select) field in PageType 'CRM Lead' +#. Option for the 'No. of Employees' (Select) field in PageType 'CRM #. Organization' -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_lead/crm_lead.json -#: crm/fcrm/doctype/crm_organization/crm_organization.json +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_lead/crm_lead.json +#: crm/fcrm/pagetype/crm_organization/crm_organization.json msgid "11-50" msgstr "11-50" -#. Option for the 'No. of Employees' (Select) field in DocType 'CRM Deal' -#. Option for the 'No. of Employees' (Select) field in DocType 'CRM Lead' -#. Option for the 'No. of Employees' (Select) field in DocType 'CRM +#. Option for the 'No. of Employees' (Select) field in PageType 'CRM Deal' +#. Option for the 'No. of Employees' (Select) field in PageType 'CRM Lead' +#. Option for the 'No. of Employees' (Select) field in PageType 'CRM #. Organization' -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_lead/crm_lead.json -#: crm/fcrm/doctype/crm_organization/crm_organization.json +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_lead/crm_lead.json +#: crm/fcrm/pagetype/crm_organization/crm_organization.json msgid "201-500" msgstr "201-500" -#. Option for the 'No. of Employees' (Select) field in DocType 'CRM Deal' -#. Option for the 'No. of Employees' (Select) field in DocType 'CRM Lead' -#. Option for the 'No. of Employees' (Select) field in DocType 'CRM +#. Option for the 'No. of Employees' (Select) field in PageType 'CRM Deal' +#. Option for the 'No. of Employees' (Select) field in PageType 'CRM Lead' +#. Option for the 'No. of Employees' (Select) field in PageType 'CRM #. Organization' -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_lead/crm_lead.json -#: crm/fcrm/doctype/crm_organization/crm_organization.json +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_lead/crm_lead.json +#: crm/fcrm/pagetype/crm_organization/crm_organization.json msgid "501-1000" msgstr "501-1000" -#. Option for the 'No. of Employees' (Select) field in DocType 'CRM Deal' -#. Option for the 'No. of Employees' (Select) field in DocType 'CRM Lead' -#. Option for the 'No. of Employees' (Select) field in DocType 'CRM +#. Option for the 'No. of Employees' (Select) field in PageType 'CRM Deal' +#. Option for the 'No. of Employees' (Select) field in PageType 'CRM Lead' +#. Option for the 'No. of Employees' (Select) field in PageType 'CRM #. Organization' -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_lead/crm_lead.json -#: crm/fcrm/doctype/crm_organization/crm_organization.json +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_lead/crm_lead.json +#: crm/fcrm/pagetype/crm_organization/crm_organization.json msgid "51-200" msgstr "51-200" -#. Paragraph text in the Frappe CRM Workspace -#: crm/fcrm/workspace/frappe_crm/frappe_crm.json +#. Paragraph text in the Jingrow CRM Workspace +#: crm/fcrm/workspace/jingrow_crm/jingrow_crm.json msgid "META" msgstr "META" -#. Paragraph text in the Frappe CRM Workspace -#: crm/fcrm/workspace/frappe_crm/frappe_crm.json +#. Paragraph text in the Jingrow CRM Workspace +#: crm/fcrm/workspace/jingrow_crm/jingrow_crm.json msgid "SHORTCUTS" msgstr "Tastenkombinationen" #: frontend/src/components/Settings/EmailTemplate/EditEmailTemplate.vue:95 #: frontend/src/components/Settings/EmailTemplate/NewEmailTemplate.vue:95 msgid "

Dear {{ lead_name }},

\\n\\n

This is a reminder for the payment of {{ grand_total }}.

\\n\\n

Thanks,

\\n

Frappé

" -msgstr "

Sehr geehrter {{ lead_name }},

\\n\\n

Dies ist eine Mahnung für die Zahlung von {{ grand_total }}.

\\n\\n

Danke,

\\n

Frappe

" +msgstr "

Sehr geehrter {{ lead_name }},

\\n\\n

Dies ist eine Mahnung für die Zahlung von {{ grand_total }}.

\\n\\n

Danke,

\\n

Jingrow

" -#. Header text in the Frappe CRM Workspace -#: crm/fcrm/workspace/frappe_crm/frappe_crm.json +#. Header text in the Jingrow CRM Workspace +#: crm/fcrm/workspace/jingrow_crm/jingrow_crm.json msgid "PORTAL" msgstr "PORTAL" @@ -139,7 +139,7 @@ msgstr "PORTAL" msgid "@John, can you please check this?" msgstr "@John, kannst du das bitte überprüfen?" -#: crm/fcrm/doctype/crm_lead/crm_lead.py:56 +#: crm/fcrm/pagetype/crm_lead/crm_lead.py:56 msgid "A Lead requires either a person's name or an organization's name" msgstr "Ein Interessent benötigt entweder den Namen einer Person oder den Namen einer Organisation" @@ -147,14 +147,14 @@ msgstr "Ein Interessent benötigt entweder den Namen einer Person oder den Namen msgid "A new account has been created for you at {0}" msgstr "Ein neues Konto wurde für Sie erstellt auf {0}" -#. Label of the api_key (Data) field in DocType 'CRM Exotel Settings' -#. Label of the api_key (Data) field in DocType 'CRM Twilio Settings' -#. Label of the api_key (Data) field in DocType 'ERPNext CRM Settings' -#. Label of the api_key (Data) field in DocType 'Helpdesk CRM Settings' -#: crm/fcrm/doctype/crm_exotel_settings/crm_exotel_settings.json -#: crm/fcrm/doctype/crm_twilio_settings/crm_twilio_settings.json -#: crm/fcrm/doctype/erpnext_crm_settings/erpnext_crm_settings.json -#: crm/fcrm/doctype/helpdesk_crm_settings/helpdesk_crm_settings.json +#. Label of the api_key (Data) field in PageType 'CRM Exotel Settings' +#. Label of the api_key (Data) field in PageType 'CRM Twilio Settings' +#. Label of the api_key (Data) field in PageType 'ERPNext CRM Settings' +#. Label of the api_key (Data) field in PageType 'Helpdesk CRM Settings' +#: crm/fcrm/pagetype/crm_exotel_settings/crm_exotel_settings.json +#: crm/fcrm/pagetype/crm_twilio_settings/crm_twilio_settings.json +#: crm/fcrm/pagetype/erpnext_crm_settings/erpnext_crm_settings.json +#: crm/fcrm/pagetype/helpdesk_crm_settings/helpdesk_crm_settings.json msgid "API Key" msgstr "API-Schlüssel" @@ -162,17 +162,17 @@ msgstr "API-Schlüssel" msgid "API Key is required" msgstr "" -#. Label of the api_secret (Password) field in DocType 'CRM Twilio Settings' -#. Label of the api_secret (Password) field in DocType 'ERPNext CRM Settings' -#. Label of the api_secret (Password) field in DocType 'Helpdesk CRM Settings' -#: crm/fcrm/doctype/crm_twilio_settings/crm_twilio_settings.json -#: crm/fcrm/doctype/erpnext_crm_settings/erpnext_crm_settings.json -#: crm/fcrm/doctype/helpdesk_crm_settings/helpdesk_crm_settings.json +#. Label of the api_secret (Password) field in PageType 'CRM Twilio Settings' +#. Label of the api_secret (Password) field in PageType 'ERPNext CRM Settings' +#. Label of the api_secret (Password) field in PageType 'Helpdesk CRM Settings' +#: crm/fcrm/pagetype/crm_twilio_settings/crm_twilio_settings.json +#: crm/fcrm/pagetype/erpnext_crm_settings/erpnext_crm_settings.json +#: crm/fcrm/pagetype/helpdesk_crm_settings/helpdesk_crm_settings.json msgid "API Secret" msgstr "API-Geheimnis" -#. Label of the api_token (Password) field in DocType 'CRM Exotel Settings' -#: crm/fcrm/doctype/crm_exotel_settings/crm_exotel_settings.json +#. Label of the api_token (Password) field in PageType 'CRM Exotel Settings' +#: crm/fcrm/pagetype/crm_exotel_settings/crm_exotel_settings.json msgid "API Token" msgstr "API-Schlüssel" @@ -180,7 +180,7 @@ msgstr "API-Schlüssel" msgid "Accept" msgstr "Annehmen" -#: crm/fcrm/doctype/crm_invitation/crm_invitation.js:7 +#: crm/fcrm/pagetype/crm_invitation/crm_invitation.js:7 msgid "Accept Invitation" msgstr "Einladung annehmen" @@ -188,22 +188,22 @@ msgstr "Einladung annehmen" msgid "Accept call" msgstr "" -#. Option for the 'Status' (Select) field in DocType 'CRM Invitation' -#: crm/fcrm/doctype/crm_invitation/crm_invitation.json +#. Option for the 'Status' (Select) field in PageType 'CRM Invitation' +#: crm/fcrm/pagetype/crm_invitation/crm_invitation.json msgid "Accepted" msgstr "Akzeptiert" -#. Label of the accepted_at (Datetime) field in DocType 'CRM Invitation' -#: crm/fcrm/doctype/crm_invitation/crm_invitation.json +#. Label of the accepted_at (Datetime) field in PageType 'CRM Invitation' +#: crm/fcrm/pagetype/crm_invitation/crm_invitation.json msgid "Accepted At" msgstr "Angenommen am" -#. Label of the access_key (Data) field in DocType 'FCRM Settings' -#: crm/fcrm/doctype/fcrm_settings/fcrm_settings.json +#. Label of the access_key (Data) field in PageType 'FCRM Settings' +#: crm/fcrm/pagetype/fcrm_settings/fcrm_settings.json msgid "Access Key" msgstr "Zugriffsschlüssel" -#: crm/fcrm/doctype/fcrm_settings/fcrm_settings.py:156 +#: crm/fcrm/pagetype/fcrm_settings/fcrm_settings.py:156 msgid "Access Key is required for Service Provider: {0}" msgstr "Zugangsschlüssel ist erforderlich für Dienstanbieter: {0}" @@ -219,10 +219,10 @@ msgstr "" msgid "Account Name" msgstr "Kontoname" -#. Label of the account_sid (Data) field in DocType 'CRM Exotel Settings' -#. Label of the account_sid (Data) field in DocType 'CRM Twilio Settings' -#: crm/fcrm/doctype/crm_exotel_settings/crm_exotel_settings.json -#: crm/fcrm/doctype/crm_twilio_settings/crm_twilio_settings.json +#. Label of the account_sid (Data) field in PageType 'CRM Exotel Settings' +#. Label of the account_sid (Data) field in PageType 'CRM Twilio Settings' +#: crm/fcrm/pagetype/crm_exotel_settings/crm_exotel_settings.json +#: crm/fcrm/pagetype/crm_twilio_settings/crm_twilio_settings.json msgid "Account SID" msgstr "Konto-SID" @@ -296,9 +296,9 @@ msgstr "Sortierung hinzufügen" msgid "Add Tab" msgstr "Registerkarte hinzufügen" -#. Label of the add_weekly_holidays_section (Section Break) field in DocType +#. Label of the add_weekly_holidays_section (Section Break) field in PageType #. 'CRM Holiday List' -#: crm/fcrm/doctype/crm_holiday_list/crm_holiday_list.json +#: crm/fcrm/pagetype/crm_holiday_list/crm_holiday_list.json msgid "Add Weekly Holidays" msgstr "Wöchentlich freie Tage hinzufügen" @@ -363,8 +363,8 @@ msgstr "Notiz hinzufügen" msgid "Add sample data" msgstr "" -#. Description of the 'Icon' (Code) field in DocType 'CRM Dropdown Item' -#: crm/fcrm/doctype/crm_dropdown_item/crm_dropdown_item.json +#. Description of the 'Icon' (Code) field in PageType 'CRM Dropdown Item' +#: crm/fcrm/pagetype/crm_dropdown_item/crm_dropdown_item.json msgid "Add svg code or use feather icons e.g 'settings'" msgstr "Fügen Sie SVG-Code hinzu oder verwenden Sie Feather-Icons, z. B. „settings“." @@ -372,8 +372,8 @@ msgstr "Fügen Sie SVG-Code hinzu oder verwenden Sie Feather-Icons, z. B. „set msgid "Add task" msgstr "Aufgabe hinzufügen" -#. Label of the add_to_holidays (Button) field in DocType 'CRM Holiday List' -#: crm/fcrm/doctype/crm_holiday_list/crm_holiday_list.json +#. Label of the add_to_holidays (Button) field in PageType 'CRM Holiday List' +#: crm/fcrm/pagetype/crm_holiday_list/crm_holiday_list.json msgid "Add to Holidays" msgstr "Zu arbeitsfreien Tagen hinzufügen" @@ -385,8 +385,8 @@ msgstr "" msgid "Add, edit, and manage email templates for various CRM communications" msgstr "" -#. Label of the address (Link) field in DocType 'CRM Organization' -#: crm/fcrm/doctype/crm_organization/crm_organization.json +#. Label of the address (Link) field in PageType 'CRM Organization' +#: crm/fcrm/pagetype/crm_organization/crm_organization.json msgid "Address" msgstr "Adresse" @@ -406,14 +406,14 @@ msgid "Agent is unavailable to take the call, please call after some time." msgstr "Der Agent kann den Anruf nicht entgegennehmen. Bitte rufen Sie später an." #. Name of a role -#: crm/fcrm/doctype/crm_exotel_settings/crm_exotel_settings.json -#: crm/fcrm/doctype/crm_fields_layout/crm_fields_layout.json -#: crm/fcrm/doctype/crm_form_script/crm_form_script.json -#: crm/fcrm/doctype/crm_industry/crm_industry.json -#: crm/fcrm/doctype/crm_lead/crm_lead.json -#: crm/fcrm/doctype/crm_lead_source/crm_lead_source.json -#: crm/fcrm/doctype/crm_lead_status/crm_lead_status.json -#: crm/fcrm/doctype/fcrm_settings/fcrm_settings.json +#: crm/fcrm/pagetype/crm_exotel_settings/crm_exotel_settings.json +#: crm/fcrm/pagetype/crm_fields_layout/crm_fields_layout.json +#: crm/fcrm/pagetype/crm_form_script/crm_form_script.json +#: crm/fcrm/pagetype/crm_industry/crm_industry.json +#: crm/fcrm/pagetype/crm_lead/crm_lead.json +#: crm/fcrm/pagetype/crm_lead_source/crm_lead_source.json +#: crm/fcrm/pagetype/crm_lead_status/crm_lead_status.json +#: crm/fcrm/pagetype/fcrm_settings/fcrm_settings.json #: frontend/src/components/Settings/EmailTemplate/EmailTemplates.vue:76 #: frontend/src/components/Settings/Users.vue:85 msgid "All" @@ -426,16 +426,16 @@ msgstr "Alle" msgid "All day" msgstr "" -#. Label of the amount (Currency) field in DocType 'CRM Products' -#: crm/fcrm/doctype/crm_products/crm_products.json +#. Label of the amount (Currency) field in PageType 'CRM Products' +#: crm/fcrm/pagetype/crm_products/crm_products.json #: frontend/src/pages/Contact.vue:499 frontend/src/pages/MobileContact.vue:507 #: frontend/src/pages/MobileOrganization.vue:451 #: frontend/src/pages/Organization.vue:472 msgid "Amount" msgstr "Betrag" -#. Description of the 'Net Amount' (Currency) field in DocType 'CRM Products' -#: crm/fcrm/doctype/crm_products/crm_products.json +#. Description of the 'Net Amount' (Currency) field in PageType 'CRM Products' +#: crm/fcrm/pagetype/crm_products/crm_products.json msgid "Amount after discount" msgstr "" @@ -447,13 +447,13 @@ msgstr "" msgid "An error occurred while updating the document" msgstr "" -#. Description of the 'Favicon' (Attach) field in DocType 'FCRM Settings' -#: crm/fcrm/doctype/fcrm_settings/fcrm_settings.json +#. Description of the 'Favicon' (Attach) field in PageType 'FCRM Settings' +#: crm/fcrm/pagetype/fcrm_settings/fcrm_settings.json msgid "An icon file with .ico extension. Should be 16 x 16 px. Generated using a favicon generator. [favicon-generator.org]" msgstr "Eine Icon-Datei mit ICO-Erweiterung. Sie sollte 16 x 16 pixel groß sein. Wurde unter Verwendung eines Favicon-Generators erstellt. [favicon-generator.org]" -#. Description of the 'Logo' (Attach) field in DocType 'FCRM Settings' -#: crm/fcrm/doctype/fcrm_settings/fcrm_settings.json +#. Description of the 'Logo' (Attach) field in PageType 'FCRM Settings' +#: crm/fcrm/pagetype/fcrm_settings/fcrm_settings.json msgid "An image with 1:1 & 2:1 ratio is preferred" msgstr "Ein Bild mit dem Verhältnis 1:1 & 2:1 wird bevorzugt" @@ -461,12 +461,12 @@ msgstr "Ein Bild mit dem Verhältnis 1:1 & 2:1 wird bevorzugt" msgid "And" msgstr "Und" -#. Label of the annual_revenue (Currency) field in DocType 'CRM Deal' -#. Label of the annual_revenue (Currency) field in DocType 'CRM Lead' -#. Label of the annual_revenue (Currency) field in DocType 'CRM Organization' -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_lead/crm_lead.json -#: crm/fcrm/doctype/crm_organization/crm_organization.json +#. Label of the annual_revenue (Currency) field in PageType 'CRM Deal' +#. Label of the annual_revenue (Currency) field in PageType 'CRM Lead' +#. Label of the annual_revenue (Currency) field in PageType 'CRM Organization' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_lead/crm_lead.json +#: crm/fcrm/pagetype/crm_organization/crm_organization.json msgid "Annual Revenue" msgstr "Jahresumsatz" @@ -488,13 +488,13 @@ msgstr "Erscheint neben dem Titel in Ihrem Browser-Tab. Die empfohlene Größe i msgid "Apply" msgstr "Anwenden" -#. Label of the apply_on (Link) field in DocType 'CRM Service Level Agreement' -#: crm/fcrm/doctype/crm_service_level_agreement/crm_service_level_agreement.json +#. Label of the apply_on (Link) field in PageType 'CRM Service Level Agreement' +#: crm/fcrm/pagetype/crm_service_level_agreement/crm_service_level_agreement.json msgid "Apply On" msgstr "Anwenden auf" -#. Label of the view (Select) field in DocType 'CRM Form Script' -#: crm/fcrm/doctype/crm_form_script/crm_form_script.json +#. Label of the view (Select) field in PageType 'CRM Form Script' +#: crm/fcrm/pagetype/crm_form_script/crm_form_script.json msgid "Apply To" msgstr "Anwenden auf" @@ -540,10 +540,10 @@ msgid "Are you sure you want to go back? Unsaved changes will be lost." msgstr "" #: frontend/src/composables/frappecloud.js:24 -msgid "Are you sure you want to login to your Frappe Cloud dashboard?" -msgstr "Möchten Sie sich wirklich bei Ihrem Frappe Cloud-Dashboard anmelden?" +msgid "Are you sure you want to login to your Jingrow Cloud dashboard?" +msgstr "Möchten Sie sich wirklich bei Ihrem Jingrow Cloud-Dashboard anmelden?" -#: crm/fcrm/doctype/erpnext_crm_settings/erpnext_crm_settings.js:9 +#: crm/fcrm/pagetype/erpnext_crm_settings/erpnext_crm_settings.js:9 msgid "Are you sure you want to reset 'Create Quotation from CRM Deal' Form Script?" msgstr "Möchten Sie das Formularskript „Angebot aus CRM-Deal erstellen“ wirklich zurücksetzen?" @@ -555,7 +555,7 @@ msgstr "" msgid "Are you sure you want to unlink {0} linked item(s)?" msgstr "" -#: crm/fcrm/doctype/fcrm_settings/fcrm_settings.py:193 +#: crm/fcrm/pagetype/fcrm_settings/fcrm_settings.py:193 msgid "Ask your manager to set up the Exchange Rate Provider, as default provider does not support currency conversion for {0} to {1}." msgstr "" @@ -581,8 +581,8 @@ msgstr "Zuweisen an" msgid "Assign to me" msgstr "Mir zuweisen" -#. Label of the assigned_to (Link) field in DocType 'CRM Task' -#: crm/fcrm/doctype/crm_task/crm_task.json +#. Label of the assigned_to (Link) field in PageType 'CRM Task' +#: crm/fcrm/pagetype/crm_task/crm_task.json msgid "Assigned To" msgstr "Zugewiesen zu" @@ -594,13 +594,13 @@ msgstr "" msgid "Assignees" msgstr "" -#. Option for the 'Type' (Select) field in DocType 'CRM Notification' -#: crm/fcrm/doctype/crm_notification/crm_notification.json +#. Option for the 'Type' (Select) field in PageType 'CRM Notification' +#: crm/fcrm/pagetype/crm_notification/crm_notification.json msgid "Assignment" msgstr "Zuordnung" -#. Label of a shortcut in the Frappe CRM Workspace -#: crm/fcrm/workspace/frappe_crm/frappe_crm.json +#. Label of a shortcut in the Jingrow CRM Workspace +#: crm/fcrm/workspace/jingrow_crm/jingrow_crm.json msgid "Assignment Rule" msgstr "Zuweisungsregel" @@ -678,14 +678,14 @@ msgstr "Anhänge" msgid "Attendees" msgstr "Teilnehmer" -#. Label of the auth_token (Password) field in DocType 'CRM Twilio Settings' -#: crm/fcrm/doctype/crm_twilio_settings/crm_twilio_settings.json +#. Label of the auth_token (Password) field in PageType 'CRM Twilio Settings' +#: crm/fcrm/pagetype/crm_twilio_settings/crm_twilio_settings.json msgid "Auth Token" msgstr "Authentifizierungstoken" -#. Label of the auto_update_expected_deal_value (Check) field in DocType 'FCRM +#. Label of the auto_update_expected_deal_value (Check) field in PageType 'FCRM #. Settings' -#: crm/fcrm/doctype/fcrm_settings/fcrm_settings.json +#: crm/fcrm/pagetype/fcrm_settings/fcrm_settings.json msgid "Auto Update Expected Deal Value" msgstr "" @@ -702,8 +702,8 @@ msgid "Auto update of expected deal value enabled" msgstr "" #. Description of the 'Auto Update Expected Deal Value' (Check) field in -#. DocType 'FCRM Settings' -#: crm/fcrm/doctype/fcrm_settings/fcrm_settings.json +#. PageType 'FCRM Settings' +#: crm/fcrm/pagetype/fcrm_settings/fcrm_settings.json #: frontend/src/components/Settings/ForecastingSettings.vue:46 msgid "Automatically update \"Expected Deal Value\" based on the total value of associated products in a deal" msgstr "" @@ -793,8 +793,8 @@ msgstr "Zurück" msgid "Back to file upload" msgstr "Zurück zum Datei-Upload" -#. Option for the 'Status' (Select) field in DocType 'CRM Task' -#: crm/fcrm/doctype/crm_task/crm_task.json +#. Option for the 'Status' (Select) field in PageType 'CRM Task' +#: crm/fcrm/pagetype/crm_task/crm_task.json msgid "Backlog" msgstr "" @@ -818,8 +818,8 @@ msgstr "Markenname" msgid "Brand settings" msgstr "Markeneinstellungen" -#. Label of the branding_tab (Tab Break) field in DocType 'FCRM Settings' -#: crm/fcrm/doctype/fcrm_settings/fcrm_settings.json +#. Label of the branding_tab (Tab Break) field in PageType 'FCRM Settings' +#: crm/fcrm/pagetype/fcrm_settings/fcrm_settings.json msgid "Branding" msgstr "Firmenlogo" @@ -827,8 +827,8 @@ msgstr "Firmenlogo" msgid "Bulk Edit" msgstr "Stapel bearbeiten" -#. Option for the 'Status' (Select) field in DocType 'CRM Call Log' -#: crm/fcrm/doctype/crm_call_log/crm_call_log.json +#. Option for the 'Status' (Select) field in PageType 'CRM Call Log' +#: crm/fcrm/pagetype/crm_call_log/crm_call_log.json msgid "Busy" msgstr "Beschäftigt" @@ -838,174 +838,174 @@ msgstr "Beschäftigt" msgid "CC" msgstr "CC" -#. Name of a DocType -#: crm/fcrm/doctype/crm_call_log/crm_call_log.json +#. Name of a PageType +#: crm/fcrm/pagetype/crm_call_log/crm_call_log.json msgid "CRM Call Log" msgstr "CRM-Anrufprotokoll" -#. Name of a DocType -#: crm/fcrm/doctype/crm_communication_status/crm_communication_status.json +#. Name of a PageType +#: crm/fcrm/pagetype/crm_communication_status/crm_communication_status.json msgid "CRM Communication Status" msgstr "CRM-Kommunikationsstatus" -#. Name of a DocType -#: crm/fcrm/doctype/crm_contacts/crm_contacts.json +#. Name of a PageType +#: crm/fcrm/pagetype/crm_contacts/crm_contacts.json msgid "CRM Contacts" msgstr "CRM-Kontakte" -#. Name of a DocType -#: crm/fcrm/doctype/crm_dashboard/crm_dashboard.json +#. Name of a PageType +#: crm/fcrm/pagetype/crm_dashboard/crm_dashboard.json #: frontend/src/pages/Dashboard.vue:304 msgid "CRM Dashboard" msgstr "" -#. Name of a DocType -#: crm/fcrm/doctype/crm_deal/crm_deal.json +#. Name of a PageType +#: crm/fcrm/pagetype/crm_deal/crm_deal.json msgid "CRM Deal" msgstr "" -#. Name of a DocType -#: crm/fcrm/doctype/crm_deal_status/crm_deal_status.json +#. Name of a PageType +#: crm/fcrm/pagetype/crm_deal_status/crm_deal_status.json msgid "CRM Deal Status" msgstr "" -#. Name of a DocType -#: crm/fcrm/doctype/crm_dropdown_item/crm_dropdown_item.json +#. Name of a PageType +#: crm/fcrm/pagetype/crm_dropdown_item/crm_dropdown_item.json msgid "CRM Dropdown Item" msgstr "" -#. Name of a DocType -#: crm/fcrm/doctype/crm_exotel_settings/crm_exotel_settings.json +#. Name of a PageType +#: crm/fcrm/pagetype/crm_exotel_settings/crm_exotel_settings.json msgid "CRM Exotel Settings" msgstr "" -#. Name of a DocType -#: crm/fcrm/doctype/crm_fields_layout/crm_fields_layout.json +#. Name of a PageType +#: crm/fcrm/pagetype/crm_fields_layout/crm_fields_layout.json msgid "CRM Fields Layout" msgstr "" -#. Name of a DocType -#: crm/fcrm/doctype/crm_form_script/crm_form_script.json +#. Name of a PageType +#: crm/fcrm/pagetype/crm_form_script/crm_form_script.json msgid "CRM Form Script" msgstr "" -#. Name of a DocType -#: crm/fcrm/doctype/crm_global_settings/crm_global_settings.json +#. Name of a PageType +#: crm/fcrm/pagetype/crm_global_settings/crm_global_settings.json msgid "CRM Global Settings" msgstr "" -#. Name of a DocType -#: crm/fcrm/doctype/crm_holiday/crm_holiday.json +#. Name of a PageType +#: crm/fcrm/pagetype/crm_holiday/crm_holiday.json msgid "CRM Holiday" msgstr "CRM Feiertag" -#. Name of a DocType -#: crm/fcrm/doctype/crm_holiday_list/crm_holiday_list.json +#. Name of a PageType +#: crm/fcrm/pagetype/crm_holiday_list/crm_holiday_list.json msgid "CRM Holiday List" msgstr "CRM Feiertagsliste" -#. Name of a DocType -#: crm/fcrm/doctype/crm_industry/crm_industry.json +#. Name of a PageType +#: crm/fcrm/pagetype/crm_industry/crm_industry.json msgid "CRM Industry" msgstr "" -#. Name of a DocType -#: crm/fcrm/doctype/crm_invitation/crm_invitation.json +#. Name of a PageType +#: crm/fcrm/pagetype/crm_invitation/crm_invitation.json msgid "CRM Invitation" msgstr "CRM Einladung" -#. Name of a DocType -#: crm/fcrm/doctype/crm_lead/crm_lead.json +#. Name of a PageType +#: crm/fcrm/pagetype/crm_lead/crm_lead.json msgid "CRM Lead" msgstr "" -#. Name of a DocType -#: crm/fcrm/doctype/crm_lead_source/crm_lead_source.json +#. Name of a PageType +#: crm/fcrm/pagetype/crm_lead_source/crm_lead_source.json msgid "CRM Lead Source" msgstr "" -#. Name of a DocType -#: crm/fcrm/doctype/crm_lead_status/crm_lead_status.json +#. Name of a PageType +#: crm/fcrm/pagetype/crm_lead_status/crm_lead_status.json msgid "CRM Lead Status" msgstr "" -#. Name of a DocType -#: crm/fcrm/doctype/crm_lost_reason/crm_lost_reason.json +#. Name of a PageType +#: crm/fcrm/pagetype/crm_lost_reason/crm_lost_reason.json msgid "CRM Lost Reason" msgstr "" -#. Name of a DocType -#: crm/fcrm/doctype/crm_notification/crm_notification.json +#. Name of a PageType +#: crm/fcrm/pagetype/crm_notification/crm_notification.json msgid "CRM Notification" msgstr "" -#. Name of a DocType -#: crm/fcrm/doctype/crm_organization/crm_organization.json +#. Name of a PageType +#: crm/fcrm/pagetype/crm_organization/crm_organization.json msgid "CRM Organization" msgstr "CRM Organisation" -#. Label of a shortcut in the Frappe CRM Workspace -#: crm/fcrm/workspace/frappe_crm/frappe_crm.json +#. Label of a shortcut in the Jingrow CRM Workspace +#: crm/fcrm/workspace/jingrow_crm/jingrow_crm.json msgid "CRM Portal Page" msgstr "" -#. Name of a DocType -#: crm/fcrm/doctype/crm_product/crm_product.json +#. Name of a PageType +#: crm/fcrm/pagetype/crm_product/crm_product.json msgid "CRM Product" msgstr "" -#. Name of a DocType -#: crm/fcrm/doctype/crm_products/crm_products.json +#. Name of a PageType +#: crm/fcrm/pagetype/crm_products/crm_products.json msgid "CRM Products" msgstr "" -#. Name of a DocType -#: crm/fcrm/doctype/crm_service_day/crm_service_day.json +#. Name of a PageType +#: crm/fcrm/pagetype/crm_service_day/crm_service_day.json msgid "CRM Service Day" msgstr "" -#. Name of a DocType -#: crm/fcrm/doctype/crm_service_level_agreement/crm_service_level_agreement.json +#. Name of a PageType +#: crm/fcrm/pagetype/crm_service_level_agreement/crm_service_level_agreement.json msgid "CRM Service Level Agreement" msgstr "" -#. Name of a DocType -#: crm/fcrm/doctype/crm_service_level_priority/crm_service_level_priority.json +#. Name of a PageType +#: crm/fcrm/pagetype/crm_service_level_priority/crm_service_level_priority.json msgid "CRM Service Level Priority" msgstr "" -#. Name of a DocType -#: crm/fcrm/doctype/crm_status_change_log/crm_status_change_log.json +#. Name of a PageType +#: crm/fcrm/pagetype/crm_status_change_log/crm_status_change_log.json msgid "CRM Status Change Log" msgstr "" -#. Name of a DocType -#: crm/fcrm/doctype/crm_task/crm_task.json +#. Name of a PageType +#: crm/fcrm/pagetype/crm_task/crm_task.json msgid "CRM Task" msgstr "CRM Aufgabe" -#. Name of a DocType -#: crm/fcrm/doctype/crm_telephony_agent/crm_telephony_agent.json +#. Name of a PageType +#: crm/fcrm/pagetype/crm_telephony_agent/crm_telephony_agent.json msgid "CRM Telephony Agent" msgstr "" -#. Name of a DocType -#: crm/fcrm/doctype/crm_telephony_phone/crm_telephony_phone.json +#. Name of a PageType +#: crm/fcrm/pagetype/crm_telephony_phone/crm_telephony_phone.json msgid "CRM Telephony Phone" msgstr "" -#. Name of a DocType -#: crm/fcrm/doctype/crm_territory/crm_territory.json +#. Name of a PageType +#: crm/fcrm/pagetype/crm_territory/crm_territory.json msgid "CRM Territory" msgstr "CRM Gebiet" -#. Name of a DocType -#: crm/fcrm/doctype/crm_twilio_settings/crm_twilio_settings.json +#. Name of a PageType +#: crm/fcrm/pagetype/crm_twilio_settings/crm_twilio_settings.json msgid "CRM Twilio Settings" msgstr "" -#. Name of a DocType -#: crm/fcrm/doctype/crm_view_settings/crm_view_settings.json +#. Name of a PageType +#: crm/fcrm/pagetype/crm_view_settings/crm_view_settings.json msgid "CRM View Settings" msgstr "" @@ -1021,13 +1021,13 @@ msgstr "CSV" msgid "Call Details" msgstr "Anrufdetails" -#. Label of the receiver (Link) field in DocType 'CRM Call Log' -#: crm/fcrm/doctype/crm_call_log/crm_call_log.json +#. Label of the receiver (Link) field in PageType 'CRM Call Log' +#: crm/fcrm/pagetype/crm_call_log/crm_call_log.json msgid "Call Received By" msgstr "Anruf empfangen von" -#. Description of the 'Duration' (Duration) field in DocType 'CRM Call Log' -#: crm/fcrm/doctype/crm_call_log/crm_call_log.json +#. Description of the 'Duration' (Duration) field in PageType 'CRM Call Log' +#: crm/fcrm/pagetype/crm_call_log/crm_call_log.json msgid "Call duration in seconds" msgstr "" @@ -1045,8 +1045,8 @@ msgstr "Anruf mit {0}" msgid "Call with John Doe" msgstr "Anruf bei John Doe" -#. Label of the caller (Link) field in DocType 'CRM Call Log' -#: crm/fcrm/doctype/crm_call_log/crm_call_log.json +#. Label of the caller (Link) field in PageType 'CRM Call Log' +#: crm/fcrm/pagetype/crm_call_log/crm_call_log.json msgid "Caller" msgstr "Anrufer" @@ -1083,10 +1083,10 @@ msgstr "Kamera" msgid "Cancel" msgstr "Abbrechen" -#. Option for the 'Status' (Select) field in DocType 'CRM Call Log' -#. Option for the 'Status' (Select) field in DocType 'CRM Task' -#: crm/fcrm/doctype/crm_call_log/crm_call_log.json -#: crm/fcrm/doctype/crm_task/crm_task.json +#. Option for the 'Status' (Select) field in PageType 'CRM Call Log' +#. Option for the 'Status' (Select) field in PageType 'CRM Task' +#: crm/fcrm/pagetype/crm_call_log/crm_call_log.json +#: crm/fcrm/pagetype/crm_task/crm_task.json msgid "Canceled" msgstr "Abgebrochen" @@ -1094,7 +1094,7 @@ msgstr "Abgebrochen" msgid "Cannot change role of user with Admin access" msgstr "" -#: crm/fcrm/doctype/fcrm_settings/fcrm_settings.py:34 +#: crm/fcrm/pagetype/fcrm_settings/fcrm_settings.py:34 msgid "Cannot delete standard items {0}" msgstr "Standardelemente können nicht gelöscht werden {0}" @@ -1189,8 +1189,8 @@ msgstr "Zuweisung löschen" msgid "Clear Sort" msgstr "Sortierung aufheben" -#. Label of the clear_table (Button) field in DocType 'CRM Holiday List' -#: crm/fcrm/doctype/crm_holiday_list/crm_holiday_list.json +#. Label of the clear_table (Button) field in PageType 'CRM Holiday List' +#: crm/fcrm/pagetype/crm_holiday_list/crm_holiday_list.json msgid "Clear Table" msgstr "Tabelle leeren" @@ -1211,8 +1211,8 @@ msgstr "Schließen" msgid "Close panel" msgstr "" -#. Label of the closed_date (Date) field in DocType 'CRM Deal' -#: crm/fcrm/doctype/crm_deal/crm_deal.json +#. Label of the closed_date (Date) field in PageType 'CRM Deal' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json msgid "Closed Date" msgstr "" @@ -1224,10 +1224,10 @@ msgstr "Zuklappen" msgid "Collapsible" msgstr "Faltbar" -#. Label of the color (Select) field in DocType 'CRM Deal Status' -#. Label of the color (Select) field in DocType 'CRM Lead Status' -#: crm/fcrm/doctype/crm_deal_status/crm_deal_status.json -#: crm/fcrm/doctype/crm_lead_status/crm_lead_status.json +#. Label of the color (Select) field in PageType 'CRM Deal Status' +#. Label of the color (Select) field in PageType 'CRM Lead Status' +#: crm/fcrm/pagetype/crm_deal_status/crm_deal_status.json +#: crm/fcrm/pagetype/crm_lead_status/crm_lead_status.json msgid "Color" msgstr "Farbe" @@ -1235,20 +1235,20 @@ msgstr "Farbe" msgid "Column" msgstr "Spalte" -#. Label of the column_field (Data) field in DocType 'CRM View Settings' -#: crm/fcrm/doctype/crm_view_settings/crm_view_settings.json +#. Label of the column_field (Data) field in PageType 'CRM View Settings' +#: crm/fcrm/pagetype/crm_view_settings/crm_view_settings.json #: frontend/src/components/Kanban/KanbanSettings.vue:12 msgid "Column Field" msgstr "Spaltenfeld" -#. Label of the columns (Code) field in DocType 'CRM View Settings' -#: crm/fcrm/doctype/crm_view_settings/crm_view_settings.json +#. Label of the columns (Code) field in PageType 'CRM View Settings' +#: crm/fcrm/pagetype/crm_view_settings/crm_view_settings.json #: frontend/src/components/ColumnSettings.vue:4 msgid "Columns" msgstr "Spalten" -#. Label of the comment (Link) field in DocType 'CRM Notification' -#: crm/fcrm/doctype/crm_notification/crm_notification.json +#. Label of the comment (Link) field in PageType 'CRM Notification' +#: crm/fcrm/pagetype/crm_notification/crm_notification.json #: frontend/src/components/CommentBox.vue:78 #: frontend/src/components/CommunicationArea.vue:16 #: frontend/src/components/Layouts/AppSidebar.vue:579 @@ -1264,20 +1264,20 @@ msgstr "Kommentare" msgid "Common reasons for losing deals" msgstr "" -#. Label of the communication_status (Link) field in DocType 'CRM Deal' -#. Label of the communication_status (Link) field in DocType 'CRM Lead' -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_lead/crm_lead.json +#. Label of the communication_status (Link) field in PageType 'CRM Deal' +#. Label of the communication_status (Link) field in PageType 'CRM Lead' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_lead/crm_lead.json msgid "Communication Status" msgstr "Kommunikationsstatus" -#. Label of a shortcut in the Frappe CRM Workspace -#: crm/fcrm/workspace/frappe_crm/frappe_crm.json +#. Label of a shortcut in the Jingrow CRM Workspace +#: crm/fcrm/workspace/jingrow_crm/jingrow_crm.json msgid "Communication Statuses" msgstr "Kommunikationsstatus" -#. Label of the erpnext_company (Data) field in DocType 'ERPNext CRM Settings' -#: crm/fcrm/doctype/erpnext_crm_settings/erpnext_crm_settings.json +#. Label of the erpnext_company (Data) field in PageType 'ERPNext CRM Settings' +#: crm/fcrm/pagetype/erpnext_crm_settings/erpnext_crm_settings.json msgid "Company in ERPNext Site" msgstr "" @@ -1285,18 +1285,18 @@ msgstr "" msgid "Complete Registration" msgstr "Anmeldung abschliessen" -#. Option for the 'Status' (Select) field in DocType 'CRM Call Log' -#: crm/fcrm/doctype/crm_call_log/crm_call_log.json +#. Option for the 'Status' (Select) field in PageType 'CRM Call Log' +#: crm/fcrm/pagetype/crm_call_log/crm_call_log.json msgid "Completed" msgstr "Abgeschlossen" -#. Option for the 'Device' (Select) field in DocType 'CRM Telephony Agent' -#: crm/fcrm/doctype/crm_telephony_agent/crm_telephony_agent.json +#. Option for the 'Device' (Select) field in PageType 'CRM Telephony Agent' +#: crm/fcrm/pagetype/crm_telephony_agent/crm_telephony_agent.json msgid "Computer" msgstr "Rechner" -#. Label of the condition (Code) field in DocType 'CRM Service Level Agreement' -#: crm/fcrm/doctype/crm_service_level_agreement/crm_service_level_agreement.json +#. Label of the condition (Code) field in PageType 'CRM Service Level Agreement' +#: crm/fcrm/pagetype/crm_service_level_agreement/crm_service_level_agreement.json msgid "Condition" msgstr "Bedingung" @@ -1354,17 +1354,17 @@ msgstr "" msgid "Connect your email" msgstr "" -#. Label of the contact (Link) field in DocType 'CRM Contacts' -#. Label of the contact (Link) field in DocType 'CRM Deal' -#: crm/fcrm/doctype/crm_contacts/crm_contacts.json -#: crm/fcrm/doctype/crm_deal/crm_deal.json +#. Label of the contact (Link) field in PageType 'CRM Contacts' +#. Label of the contact (Link) field in PageType 'CRM Deal' +#: crm/fcrm/pagetype/crm_contacts/crm_contacts.json +#: crm/fcrm/pagetype/crm_deal/crm_deal.json #: frontend/src/components/Layouts/AppSidebar.vue:552 #: frontend/src/components/Modals/ConvertToDealModal.vue:51 #: frontend/src/pages/MobileLead.vue:145 msgid "Contact" msgstr "Kontakt" -#: crm/fcrm/doctype/crm_lead/crm_lead.py:212 +#: crm/fcrm/pagetype/crm_lead/crm_lead.py:212 msgid "Contact Already Exists" msgstr "Kontakt existiert bereits" @@ -1384,7 +1384,7 @@ msgstr "Kontakt hinzugefügt" msgid "Contact already added" msgstr "Kontakt bereits hinzugefügt" -#: crm/fcrm/doctype/crm_lead/crm_lead.py:211 +#: crm/fcrm/pagetype/crm_lead/crm_lead.py:211 msgid "Contact already exists with {0}" msgstr "Kontakt existiert bereits mit {0}" @@ -1405,18 +1405,18 @@ msgstr "Kontakt entfernt" msgid "Contact updated" msgstr "" -#. Label of the contacts_tab (Tab Break) field in DocType 'CRM Deal' -#. Label of the contacts (Table) field in DocType 'CRM Deal' -#. Label of a shortcut in the Frappe CRM Workspace -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/workspace/frappe_crm/frappe_crm.json +#. Label of the contacts_tab (Tab Break) field in PageType 'CRM Deal' +#. Label of the contacts (Table) field in PageType 'CRM Deal' +#. Label of a shortcut in the Jingrow CRM Workspace +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/workspace/jingrow_crm/jingrow_crm.json #: frontend/src/pages/Contact.vue:234 frontend/src/pages/MobileContact.vue:212 #: frontend/src/pages/MobileOrganization.vue:331 msgid "Contacts" msgstr "Kontakte" -#. Label of the content (Text Editor) field in DocType 'FCRM Note' -#: crm/fcrm/doctype/fcrm_note/fcrm_note.json +#. Label of the content (Text Editor) field in PageType 'FCRM Note' +#: crm/fcrm/pagetype/fcrm_note/fcrm_note.json #: frontend/src/components/Modals/NoteModal.vue:33 #: frontend/src/components/Settings/EmailTemplate/EditEmailTemplate.vue:89 #: frontend/src/components/Settings/EmailTemplate/EditEmailTemplate.vue:102 @@ -1456,8 +1456,8 @@ msgstr "" msgid "Convert to Deal" msgstr "In Deal umwandeln" -#. Label of the converted (Check) field in DocType 'CRM Lead' -#: crm/fcrm/doctype/crm_lead/crm_lead.json +#. Label of the converted (Check) field in PageType 'CRM Lead' +#: crm/fcrm/pagetype/crm_lead/crm_lead.json msgid "Converted" msgstr "umgewandelt" @@ -1533,9 +1533,9 @@ msgstr "Ansicht erstellen" msgid "Create an event" msgstr "" -#. Label of the create_customer_on_status_change (Check) field in DocType +#. Label of the create_customer_on_status_change (Check) field in PageType #. 'ERPNext CRM Settings' -#: crm/fcrm/doctype/erpnext_crm_settings/erpnext_crm_settings.json +#: crm/fcrm/pagetype/erpnext_crm_settings/erpnext_crm_settings.json msgid "Create customer on status change" msgstr "Kunden bei Statusänderung anlegen" @@ -1560,13 +1560,13 @@ msgstr "" msgid "Create your first task" msgstr "Erstellen Sie Ihre erste Aufgabe" -#. Label of the currency (Link) field in DocType 'CRM Deal' -#. Label of the currency (Link) field in DocType 'CRM Organization' -#. Label of the currency (Link) field in DocType 'FCRM Settings' -#. Label of the currency_tab (Tab Break) field in DocType 'FCRM Settings' -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_organization/crm_organization.json -#: crm/fcrm/doctype/fcrm_settings/fcrm_settings.json +#. Label of the currency (Link) field in PageType 'CRM Deal' +#. Label of the currency (Link) field in PageType 'CRM Organization' +#. Label of the currency (Link) field in PageType 'FCRM Settings' +#. Label of the currency_tab (Tab Break) field in PageType 'FCRM Settings' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_organization/crm_organization.json +#: crm/fcrm/pagetype/fcrm_settings/fcrm_settings.json #: frontend/src/components/Settings/CurrencySettings.vue:31 msgid "Currency" msgstr "Währung" @@ -1631,13 +1631,13 @@ msgstr "" msgid "Data" msgstr "Daten" -#. Option for the 'Type' (Select) field in DocType 'CRM Fields Layout' -#: crm/fcrm/doctype/crm_fields_layout/crm_fields_layout.json +#. Option for the 'Type' (Select) field in PageType 'CRM Fields Layout' +#: crm/fcrm/pagetype/crm_fields_layout/crm_fields_layout.json msgid "Data Fields" msgstr "Datenfelder" -#. Label of the date (Date) field in DocType 'CRM Holiday' -#: crm/api/dashboard.py:601 crm/fcrm/doctype/crm_holiday/crm_holiday.json +#. Label of the date (Date) field in PageType 'CRM Holiday' +#: crm/api/dashboard.py:601 crm/fcrm/pagetype/crm_holiday/crm_holiday.json #: frontend/src/components/Calendar/CalendarEventPanel.vue:202 msgid "Date" msgstr "Datum" @@ -1660,23 +1660,23 @@ msgstr "" msgid "Deal" msgstr "Deal" -#. Label of the deal_owner (Link) field in DocType 'CRM Deal' -#: crm/fcrm/doctype/crm_deal/crm_deal.json +#. Label of the deal_owner (Link) field in PageType 'CRM Deal' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json msgid "Deal Owner" msgstr "Besitzer des Deals" -#. Label of the deal_status (Link) field in DocType 'ERPNext CRM Settings' -#: crm/fcrm/doctype/erpnext_crm_settings/erpnext_crm_settings.json +#. Label of the deal_status (Link) field in PageType 'ERPNext CRM Settings' +#: crm/fcrm/pagetype/erpnext_crm_settings/erpnext_crm_settings.json msgid "Deal Status" msgstr "Deal-Status" -#. Label of a shortcut in the Frappe CRM Workspace -#: crm/fcrm/workspace/frappe_crm/frappe_crm.json +#. Label of a shortcut in the Jingrow CRM Workspace +#: crm/fcrm/workspace/jingrow_crm/jingrow_crm.json msgid "Deal Statuses" msgstr "Deal-Status" -#. Label of the deal_value (Currency) field in DocType 'CRM Deal' -#: crm/fcrm/doctype/crm_deal/crm_deal.json +#. Label of the deal_value (Currency) field in PageType 'CRM Deal' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json msgid "Deal Value" msgstr "" @@ -1694,8 +1694,8 @@ msgstr "" msgid "Deal value" msgstr "" -#. Label of a shortcut in the Frappe CRM Workspace -#: crm/fcrm/workspace/frappe_crm/frappe_crm.json +#. Label of a shortcut in the Jingrow CRM Workspace +#: crm/fcrm/workspace/jingrow_crm/jingrow_crm.json #: frontend/src/pages/Deal.vue:480 frontend/src/pages/MobileContact.vue:288 #: frontend/src/pages/MobileDeal.vue:384 #: frontend/src/pages/MobileOrganization.vue:325 @@ -1732,8 +1732,8 @@ msgstr "" msgid "Dear {{ lead_name }}, \\n\\nThis is a reminder for the payment of {{ grand_total }}. \\n\\nThanks, \\nFrappé" msgstr "" -#. Label of the default (Check) field in DocType 'CRM Service Level Agreement' -#: crm/fcrm/doctype/crm_service_level_agreement/crm_service_level_agreement.json +#. Label of the default (Check) field in PageType 'CRM Service Level Agreement' +#: crm/fcrm/pagetype/crm_service_level_agreement/crm_service_level_agreement.json msgid "Default" msgstr "Standard" @@ -1745,8 +1745,8 @@ msgstr "Standard-Posteingang" msgid "Default Incoming" msgstr "Standard-Eingang" -#. Label of the default_medium (Select) field in DocType 'CRM Telephony Agent' -#: crm/fcrm/doctype/crm_telephony_agent/crm_telephony_agent.json +#. Label of the default_medium (Select) field in PageType 'CRM Telephony Agent' +#: crm/fcrm/pagetype/crm_telephony_agent/crm_telephony_agent.json msgid "Default Medium" msgstr "Standardmedium" @@ -1754,9 +1754,9 @@ msgstr "Standardmedium" msgid "Default Outgoing" msgstr "Standard-Ausgang" -#. Label of the default_priority (Check) field in DocType 'CRM Service Level +#. Label of the default_priority (Check) field in PageType 'CRM Service Level #. Priority' -#: crm/fcrm/doctype/crm_service_level_priority/crm_service_level_priority.json +#: crm/fcrm/pagetype/crm_service_level_priority/crm_service_level_priority.json msgid "Default Priority" msgstr "Standardpriorität" @@ -1768,7 +1768,7 @@ msgstr "Standard-Versand" msgid "Default Sending and Inbox" msgstr "Standard-Versand und Posteingang" -#: crm/fcrm/doctype/crm_service_level_agreement/crm_service_level_agreement.py:33 +#: crm/fcrm/pagetype/crm_service_level_agreement/crm_service_level_agreement.py:33 msgid "Default Service Level Agreement already exists for {0}" msgstr "Standard Service Level Agreement existiert bereits für {0}" @@ -1788,8 +1788,8 @@ msgstr "" msgid "Default medium" msgstr "" -#: crm/fcrm/doctype/fcrm_settings/fcrm_settings.js:18 -#: crm/fcrm/doctype/fcrm_settings/fcrm_settings.js:30 +#: crm/fcrm/pagetype/fcrm_settings/fcrm_settings.js:18 +#: crm/fcrm/pagetype/fcrm_settings/fcrm_settings.js:30 msgid "Default statuses, custom fields and layouts restored successfully." msgstr "" @@ -1825,7 +1825,7 @@ msgstr "" msgid "Delete" msgstr "Löschen" -#: crm/fcrm/doctype/fcrm_settings/fcrm_settings.js:26 +#: crm/fcrm/pagetype/fcrm_settings/fcrm_settings.js:26 msgid "Delete & Restore" msgstr "" @@ -1883,14 +1883,14 @@ msgstr "{0} Element(e) löschen" msgid "Delete {0} items" msgstr "{0} Element(e) löschen" -#. Label of the description (Text Editor) field in DocType 'CRM Holiday' -#. Label of the description (Text Editor) field in DocType 'CRM Lost Reason' -#. Label of the description (Text Editor) field in DocType 'CRM Product' -#. Label of the description (Text Editor) field in DocType 'CRM Task' -#: crm/fcrm/doctype/crm_holiday/crm_holiday.json -#: crm/fcrm/doctype/crm_lost_reason/crm_lost_reason.json -#: crm/fcrm/doctype/crm_product/crm_product.json -#: crm/fcrm/doctype/crm_task/crm_task.json +#. Label of the description (Text Editor) field in PageType 'CRM Holiday' +#. Label of the description (Text Editor) field in PageType 'CRM Lost Reason' +#. Label of the description (Text Editor) field in PageType 'CRM Product' +#. Label of the description (Text Editor) field in PageType 'CRM Task' +#: crm/fcrm/pagetype/crm_holiday/crm_holiday.json +#: crm/fcrm/pagetype/crm_lost_reason/crm_lost_reason.json +#: crm/fcrm/pagetype/crm_product/crm_product.json +#: crm/fcrm/pagetype/crm_task/crm_task.json #: frontend/src/components/Calendar/CalendarEventPanel.vue:152 #: frontend/src/components/Modals/EventModal.vue:134 #: frontend/src/components/Modals/TaskModal.vue:36 @@ -1907,29 +1907,29 @@ msgstr "" msgid "Desk" msgstr "Schreibtisch" -#. Label of the details (Tab Break) field in DocType 'CRM Lead' -#. Label of the details (Text Editor) field in DocType 'CRM Lead Source' -#: crm/fcrm/doctype/crm_lead/crm_lead.json -#: crm/fcrm/doctype/crm_lead_source/crm_lead_source.json +#. Label of the details (Tab Break) field in PageType 'CRM Lead' +#. Label of the details (Text Editor) field in PageType 'CRM Lead Source' +#: crm/fcrm/pagetype/crm_lead/crm_lead.json +#: crm/fcrm/pagetype/crm_lead_source/crm_lead_source.json #: frontend/src/pages/MobileContact.vue:283 #: frontend/src/pages/MobileDeal.vue:424 frontend/src/pages/MobileLead.vue:331 #: frontend/src/pages/MobileOrganization.vue:320 msgid "Details" msgstr "Details" -#. Label of the call_receiving_device (Select) field in DocType 'CRM Telephony +#. Label of the call_receiving_device (Select) field in PageType 'CRM Telephony #. Agent' -#: crm/fcrm/doctype/crm_telephony_agent/crm_telephony_agent.json +#: crm/fcrm/pagetype/crm_telephony_agent/crm_telephony_agent.json #: frontend/src/components/FilesUploader/FilesUploaderArea.vue:39 msgid "Device" msgstr "Gerät" -#: crm/fcrm/doctype/crm_form_script/crm_form_script.js:30 +#: crm/fcrm/pagetype/crm_form_script/crm_form_script.js:30 msgid "Disable" msgstr "Deaktivieren" -#. Label of the disabled (Check) field in DocType 'CRM Product' -#: crm/fcrm/doctype/crm_product/crm_product.json +#. Label of the disabled (Check) field in PageType 'CRM Product' +#: crm/fcrm/pagetype/crm_product/crm_product.json msgid "Disabled" msgstr "Deaktiviert" @@ -1943,27 +1943,27 @@ msgstr "Verwerfen" msgid "Discard unsaved changes?" msgstr "" -#. Label of the discount_percentage (Percent) field in DocType 'CRM Products' -#: crm/fcrm/doctype/crm_products/crm_products.json +#. Label of the discount_percentage (Percent) field in PageType 'CRM Products' +#: crm/fcrm/pagetype/crm_products/crm_products.json msgid "Discount %" msgstr "Rabatt %" -#. Label of the discount_amount (Currency) field in DocType 'CRM Products' -#: crm/fcrm/doctype/crm_products/crm_products.json +#. Label of the discount_amount (Currency) field in PageType 'CRM Products' +#: crm/fcrm/pagetype/crm_products/crm_products.json msgid "Discount Amount" msgstr "Rabattbetrag" -#. Label of the dt (Link) field in DocType 'CRM Form Script' -#. Label of the dt (Link) field in DocType 'CRM Global Settings' -#. Label of the dt (Link) field in DocType 'CRM View Settings' -#: crm/fcrm/doctype/crm_form_script/crm_form_script.json -#: crm/fcrm/doctype/crm_global_settings/crm_global_settings.json -#: crm/fcrm/doctype/crm_view_settings/crm_view_settings.json -msgid "DocType" -msgstr "DocType" +#. Label of the dt (Link) field in PageType 'CRM Form Script' +#. Label of the dt (Link) field in PageType 'CRM Global Settings' +#. Label of the dt (Link) field in PageType 'CRM View Settings' +#: crm/fcrm/pagetype/crm_form_script/crm_form_script.json +#: crm/fcrm/pagetype/crm_global_settings/crm_global_settings.json +#: crm/fcrm/pagetype/crm_view_settings/crm_view_settings.json +msgid "PageType" +msgstr "PageType" -#. Label of the dt (Link) field in DocType 'CRM Fields Layout' -#: crm/fcrm/doctype/crm_fields_layout/crm_fields_layout.json +#. Label of the dt (Link) field in PageType 'CRM Fields Layout' +#: crm/fcrm/pagetype/crm_fields_layout/crm_fields_layout.json msgid "Document Type" msgstr "Dokumententyp" @@ -1983,8 +1983,8 @@ msgstr "Dokument erfolgreich aktualisiert" msgid "Documentation" msgstr "Dokumentation" -#. Option for the 'Status' (Select) field in DocType 'CRM Task' -#: crm/fcrm/doctype/crm_task/crm_task.json +#. Option for the 'Status' (Select) field in PageType 'CRM Task' +#: crm/fcrm/pagetype/crm_task/crm_task.json msgid "Done" msgstr "Erledigt" @@ -2006,13 +2006,13 @@ msgstr "Ziehen Sie die Dateien hierher oder laden Sie sie von" msgid "Drop files here" msgstr "Dateien hier ablegen" -#. Label of the dropdown_items_tab (Tab Break) field in DocType 'FCRM Settings' -#: crm/fcrm/doctype/fcrm_settings/fcrm_settings.json +#. Label of the dropdown_items_tab (Tab Break) field in PageType 'FCRM Settings' +#: crm/fcrm/pagetype/fcrm_settings/fcrm_settings.json msgid "Dropdown Items" msgstr "Dropdown-Elemente" -#. Label of the due_date (Datetime) field in DocType 'CRM Task' -#: crm/fcrm/doctype/crm_task/crm_task.json +#. Label of the due_date (Datetime) field in PageType 'CRM Task' +#: crm/fcrm/pagetype/crm_task/crm_task.json msgid "Due Date" msgstr "Fälligkeitsdatum" @@ -2048,10 +2048,10 @@ msgstr "" msgid "Duplicate template" msgstr "Vorlage duplizieren" -#. Label of the duration (Duration) field in DocType 'CRM Call Log' -#. Label of the duration (Duration) field in DocType 'CRM Status Change Log' -#: crm/fcrm/doctype/crm_call_log/crm_call_log.json -#: crm/fcrm/doctype/crm_status_change_log/crm_status_change_log.json +#. Label of the duration (Duration) field in PageType 'CRM Call Log' +#. Label of the duration (Duration) field in PageType 'CRM Status Change Log' +#: crm/fcrm/pagetype/crm_call_log/crm_call_log.json +#: crm/fcrm/pagetype/crm_status_change_log/crm_status_change_log.json msgid "Duration" msgstr "Dauer" @@ -2060,28 +2060,28 @@ msgstr "Dauer" msgid "ERPNext" msgstr "ERPNext" -#. Name of a DocType -#: crm/fcrm/doctype/erpnext_crm_settings/erpnext_crm_settings.json +#. Name of a PageType +#: crm/fcrm/pagetype/erpnext_crm_settings/erpnext_crm_settings.json msgid "ERPNext CRM Settings" msgstr "ERPNext CRM-Einstellungen" -#. Label of the section_break_oubd (Section Break) field in DocType 'ERPNext +#. Label of the section_break_oubd (Section Break) field in PageType 'ERPNext #. CRM Settings' -#: crm/fcrm/doctype/erpnext_crm_settings/erpnext_crm_settings.json +#: crm/fcrm/pagetype/erpnext_crm_settings/erpnext_crm_settings.json msgid "ERPNext Site API's" msgstr "" -#. Label of the erpnext_site_url (Data) field in DocType 'ERPNext CRM Settings' -#: crm/fcrm/doctype/erpnext_crm_settings/erpnext_crm_settings.json +#. Label of the erpnext_site_url (Data) field in PageType 'ERPNext CRM Settings' +#: crm/fcrm/pagetype/erpnext_crm_settings/erpnext_crm_settings.json msgid "ERPNext Site URL" msgstr "" -#: crm/fcrm/doctype/erpnext_crm_settings/erpnext_crm_settings.py:25 +#: crm/fcrm/pagetype/erpnext_crm_settings/erpnext_crm_settings.py:25 msgid "ERPNext is not installed in the current site" msgstr "" -#: crm/fcrm/doctype/erpnext_crm_settings/erpnext_crm_settings.py:98 -#: crm/fcrm/doctype/erpnext_crm_settings/erpnext_crm_settings.py:124 +#: crm/fcrm/pagetype/erpnext_crm_settings/erpnext_crm_settings.py:98 +#: crm/fcrm/pagetype/erpnext_crm_settings/erpnext_crm_settings.py:124 msgid "ERPNext is not integrated with the CRM" msgstr "ERPNext ist nicht mit dem CRM integriert" @@ -2191,12 +2191,12 @@ msgstr "" msgid "Editing event" msgstr "" -#. Label of the email (Data) field in DocType 'CRM Contacts' -#. Label of the email (Data) field in DocType 'CRM Invitation' -#. Label of the email (Data) field in DocType 'CRM Lead' -#: crm/fcrm/doctype/crm_contacts/crm_contacts.json -#: crm/fcrm/doctype/crm_invitation/crm_invitation.json -#: crm/fcrm/doctype/crm_lead/crm_lead.json frontend/src/pages/Contact.vue:510 +#. Label of the email (Data) field in PageType 'CRM Contacts' +#. Label of the email (Data) field in PageType 'CRM Invitation' +#. Label of the email (Data) field in PageType 'CRM Lead' +#: crm/fcrm/pagetype/crm_contacts/crm_contacts.json +#: crm/fcrm/pagetype/crm_invitation/crm_invitation.json +#: crm/fcrm/pagetype/crm_lead/crm_lead.json frontend/src/pages/Contact.vue:510 #: frontend/src/pages/MobileContact.vue:518 #: frontend/src/pages/MobileOrganization.vue:462 #: frontend/src/pages/MobileOrganization.vue:490 @@ -2213,8 +2213,8 @@ msgstr "E-Mail Konten" msgid "Email ID is required" msgstr "E-Mail ID ist erforderlich" -#. Label of the email_sent_at (Datetime) field in DocType 'CRM Invitation' -#: crm/fcrm/doctype/crm_invitation/crm_invitation.json +#. Label of the email_sent_at (Datetime) field in PageType 'CRM Invitation' +#: crm/fcrm/pagetype/crm_invitation/crm_invitation.json msgid "Email Sent At" msgstr "E-Mail gesendet am" @@ -2272,12 +2272,12 @@ msgstr "" msgid "Empty - Choose a field to sort by" msgstr "" -#: crm/fcrm/doctype/crm_form_script/crm_form_script.js:30 +#: crm/fcrm/pagetype/crm_form_script/crm_form_script.js:30 msgid "Enable" msgstr "ermöglichen" -#. Label of the enable_forecasting (Check) field in DocType 'FCRM Settings' -#: crm/fcrm/doctype/fcrm_settings/fcrm_settings.json +#. Label of the enable_forecasting (Check) field in PageType 'FCRM Settings' +#: crm/fcrm/pagetype/fcrm_settings/fcrm_settings.json msgid "Enable Forecasting" msgstr "Vorhersage aktivieren" @@ -2293,18 +2293,18 @@ msgstr "Ausgehend aktivieren" msgid "Enable forecasting" msgstr "Vorhersage aktivieren" -#. Label of the enabled (Check) field in DocType 'CRM Exotel Settings' -#. Label of the enabled (Check) field in DocType 'CRM Form Script' -#. Label of the enabled (Check) field in DocType 'CRM Service Level Agreement' -#. Label of the enabled (Check) field in DocType 'CRM Twilio Settings' -#. Label of the enabled (Check) field in DocType 'ERPNext CRM Settings' -#. Label of the enabled (Check) field in DocType 'Helpdesk CRM Settings' -#: crm/fcrm/doctype/crm_exotel_settings/crm_exotel_settings.json -#: crm/fcrm/doctype/crm_form_script/crm_form_script.json -#: crm/fcrm/doctype/crm_service_level_agreement/crm_service_level_agreement.json -#: crm/fcrm/doctype/crm_twilio_settings/crm_twilio_settings.json -#: crm/fcrm/doctype/erpnext_crm_settings/erpnext_crm_settings.json -#: crm/fcrm/doctype/helpdesk_crm_settings/helpdesk_crm_settings.json +#. Label of the enabled (Check) field in PageType 'CRM Exotel Settings' +#. Label of the enabled (Check) field in PageType 'CRM Form Script' +#. Label of the enabled (Check) field in PageType 'CRM Service Level Agreement' +#. Label of the enabled (Check) field in PageType 'CRM Twilio Settings' +#. Label of the enabled (Check) field in PageType 'ERPNext CRM Settings' +#. Label of the enabled (Check) field in PageType 'Helpdesk CRM Settings' +#: crm/fcrm/pagetype/crm_exotel_settings/crm_exotel_settings.json +#: crm/fcrm/pagetype/crm_form_script/crm_form_script.json +#: crm/fcrm/pagetype/crm_service_level_agreement/crm_service_level_agreement.json +#: crm/fcrm/pagetype/crm_twilio_settings/crm_twilio_settings.json +#: crm/fcrm/pagetype/erpnext_crm_settings/erpnext_crm_settings.json +#: crm/fcrm/pagetype/helpdesk_crm_settings/helpdesk_crm_settings.json #: frontend/src/components/Settings/AssignmentRules/AssignmentRuleView.vue:32 #: frontend/src/components/Settings/AssignmentRules/AssignmentRulesList.vue:21 #: frontend/src/components/Settings/EmailTemplate/EditEmailTemplate.vue:18 @@ -2313,15 +2313,15 @@ msgstr "Vorhersage aktivieren" msgid "Enabled" msgstr "Aktiviert" -#. Label of the end_date (Date) field in DocType 'CRM Service Level Agreement' -#: crm/fcrm/doctype/crm_service_level_agreement/crm_service_level_agreement.json +#. Label of the end_date (Date) field in PageType 'CRM Service Level Agreement' +#: crm/fcrm/pagetype/crm_service_level_agreement/crm_service_level_agreement.json msgid "End Date" msgstr "Enddatum" -#. Label of the end_time (Datetime) field in DocType 'CRM Call Log' -#. Label of the end_time (Time) field in DocType 'CRM Service Day' -#: crm/fcrm/doctype/crm_call_log/crm_call_log.json -#: crm/fcrm/doctype/crm_service_day/crm_service_day.json +#. Label of the end_time (Datetime) field in PageType 'CRM Call Log' +#. Label of the end_time (Time) field in PageType 'CRM Service Day' +#: crm/fcrm/pagetype/crm_call_log/crm_call_log.json +#: crm/fcrm/pagetype/crm_service_day/crm_service_day.json #: frontend/src/components/Calendar/CalendarEventPanel.vue:242 #: frontend/src/components/Modals/EventModal.vue:112 msgid "End Time" @@ -2362,15 +2362,15 @@ msgstr "" msgid "Error updating field" msgstr "" -#: crm/fcrm/doctype/erpnext_crm_settings/erpnext_crm_settings.py:279 +#: crm/fcrm/pagetype/erpnext_crm_settings/erpnext_crm_settings.py:279 msgid "Error while creating customer in ERPNext, check error log for more details" msgstr "" -#: crm/fcrm/doctype/erpnext_crm_settings/erpnext_crm_settings.py:191 +#: crm/fcrm/pagetype/erpnext_crm_settings/erpnext_crm_settings.py:191 msgid "Error while creating prospect in ERPNext, check error log for more details" msgstr "" -#: crm/fcrm/doctype/erpnext_crm_settings/erpnext_crm_settings.py:117 +#: crm/fcrm/pagetype/erpnext_crm_settings/erpnext_crm_settings.py:117 msgid "Error while fetching customer in ERPNext, check error log for more details" msgstr "" @@ -2395,16 +2395,16 @@ msgstr "Ereignisse" msgid "Excel" msgstr "Excel" -#. Label of the exchange_rate (Float) field in DocType 'CRM Deal' -#. Label of the exchange_rate (Float) field in DocType 'CRM Organization' -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_organization/crm_organization.json +#. Label of the exchange_rate (Float) field in PageType 'CRM Deal' +#. Label of the exchange_rate (Float) field in PageType 'CRM Organization' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_organization/crm_organization.json msgid "Exchange Rate" msgstr "Wechselkurs" -#. Label of the exchange_rate_provider_section (Section Break) field in DocType +#. Label of the exchange_rate_provider_section (Section Break) field in PageType #. 'FCRM Settings' -#: crm/fcrm/doctype/fcrm_settings/fcrm_settings.json +#: crm/fcrm/pagetype/fcrm_settings/fcrm_settings.json msgid "Exchange Rate Provider" msgstr "" @@ -2412,12 +2412,12 @@ msgstr "" msgid "Exchange rate provider" msgstr "" -#. Option for the 'Telephony Medium' (Select) field in DocType 'CRM Call Log' -#. Label of the exotel (Check) field in DocType 'CRM Telephony Agent' -#. Option for the 'Default Medium' (Select) field in DocType 'CRM Telephony +#. Option for the 'Telephony Medium' (Select) field in PageType 'CRM Call Log' +#. Label of the exotel (Check) field in PageType 'CRM Telephony Agent' +#. Option for the 'Default Medium' (Select) field in PageType 'CRM Telephony #. Agent' -#: crm/fcrm/doctype/crm_call_log/crm_call_log.json -#: crm/fcrm/doctype/crm_telephony_agent/crm_telephony_agent.json +#: crm/fcrm/pagetype/crm_call_log/crm_call_log.json +#: crm/fcrm/pagetype/crm_telephony_agent/crm_telephony_agent.json #: frontend/src/components/Layouts/AppSidebar.vue:602 #: frontend/src/components/Settings/TelephonySettings.vue:41 #: frontend/src/components/Settings/TelephonySettings.vue:63 @@ -2428,8 +2428,8 @@ msgstr "Exotel" msgid "Exotel Exception" msgstr "" -#. Label of the exotel_number (Data) field in DocType 'CRM Telephony Agent' -#: crm/fcrm/doctype/crm_telephony_agent/crm_telephony_agent.json +#. Label of the exotel_number (Data) field in PageType 'CRM Telephony Agent' +#: crm/fcrm/pagetype/crm_telephony_agent/crm_telephony_agent.json msgid "Exotel Number" msgstr "Exotel-Nummer" @@ -2453,26 +2453,26 @@ msgstr "Exotel-Einstellungen erfolgreich aktualisiert" msgid "Expand" msgstr "Erweitern" -#. Label of the expected_closure_date (Date) field in DocType 'CRM Deal' -#: crm/fcrm/doctype/crm_deal/crm_deal.json +#. Label of the expected_closure_date (Date) field in PageType 'CRM Deal' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json msgid "Expected Closure Date" msgstr "" -#: crm/fcrm/doctype/crm_deal/crm_deal.py:173 +#: crm/fcrm/pagetype/crm_deal/crm_deal.py:173 msgid "Expected Closure Date is required." msgstr "" -#. Label of the expected_deal_value (Currency) field in DocType 'CRM Deal' -#: crm/fcrm/doctype/crm_deal/crm_deal.json +#. Label of the expected_deal_value (Currency) field in PageType 'CRM Deal' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json msgid "Expected Deal Value" msgstr "" -#: crm/fcrm/doctype/crm_deal/crm_deal.py:171 +#: crm/fcrm/pagetype/crm_deal/crm_deal.py:171 msgid "Expected Deal Value is required." msgstr "" -#. Option for the 'Status' (Select) field in DocType 'CRM Invitation' -#: crm/fcrm/doctype/crm_invitation/crm_invitation.json +#. Option for the 'Status' (Select) field in PageType 'CRM Invitation' +#: crm/fcrm/pagetype/crm_invitation/crm_invitation.json msgid "Expired" msgstr "Verfallen" @@ -2489,22 +2489,22 @@ msgstr "Alle {0} Datensätze exportieren" msgid "Export Type" msgstr "Exporttyp" -#. Name of a DocType -#: crm/fcrm/doctype/fcrm_note/fcrm_note.json +#. Name of a PageType +#: crm/fcrm/pagetype/fcrm_note/fcrm_note.json msgid "FCRM Note" msgstr "" -#. Name of a DocType -#: crm/fcrm/doctype/fcrm_settings/fcrm_settings.json +#. Name of a PageType +#: crm/fcrm/pagetype/fcrm_settings/fcrm_settings.json msgid "FCRM Settings" msgstr "" -#. Option for the 'Status' (Select) field in DocType 'CRM Call Log' -#. Option for the 'SLA Status' (Select) field in DocType 'CRM Deal' -#. Option for the 'SLA Status' (Select) field in DocType 'CRM Lead' -#: crm/fcrm/doctype/crm_call_log/crm_call_log.json -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_lead/crm_lead.json +#. Option for the 'Status' (Select) field in PageType 'CRM Call Log' +#. Option for the 'SLA Status' (Select) field in PageType 'CRM Deal' +#. Option for the 'SLA Status' (Select) field in PageType 'CRM Lead' +#: crm/fcrm/pagetype/crm_call_log/crm_call_log.json +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_lead/crm_lead.json msgid "Failed" msgstr "Fehlgeschlagen" @@ -2528,7 +2528,7 @@ msgstr "" msgid "Failed to delete template" msgstr "" -#: crm/fcrm/doctype/fcrm_settings/fcrm_settings.py:205 +#: crm/fcrm/pagetype/fcrm_settings/fcrm_settings.py:205 msgid "Failed to fetch exchange rate from {0} to {1} on {2}. Please check your internet connection or try again later." msgstr "" @@ -2561,8 +2561,8 @@ msgstr "" msgid "Failed to update template" msgstr "" -#. Label of the favicon (Attach) field in DocType 'FCRM Settings' -#: crm/fcrm/doctype/fcrm_settings/fcrm_settings.json +#. Label of the favicon (Attach) field in PageType 'FCRM Settings' +#: crm/fcrm/pagetype/fcrm_settings/fcrm_settings.json #: frontend/src/components/Settings/BrandSettings.vue:87 msgid "Favicon" msgstr "Favicon" @@ -2586,23 +2586,23 @@ msgid "File \"{0}\" was skipped because only {1} uploads are allowed" msgstr "" #: frontend/src/components/FilesUploader/FilesUploaderArea.vue:359 -msgid "File \"{0}\" was skipped because only {1} uploads are allowed for DocType \"{2}\"" +msgid "File \"{0}\" was skipped because only {1} uploads are allowed for PageType \"{2}\"" msgstr "" #: frontend/src/components/Filter.vue:6 msgid "Filter" msgstr "Filter" -#. Label of the filters (Code) field in DocType 'CRM View Settings' -#. Label of the filters_tab (Tab Break) field in DocType 'CRM View Settings' -#: crm/fcrm/doctype/crm_view_settings/crm_view_settings.json +#. Label of the filters (Code) field in PageType 'CRM View Settings' +#. Label of the filters_tab (Tab Break) field in PageType 'CRM View Settings' +#: crm/fcrm/pagetype/crm_view_settings/crm_view_settings.json msgid "Filters" msgstr "Filter" -#. Label of the first_name (Data) field in DocType 'CRM Deal' -#. Label of the first_name (Data) field in DocType 'CRM Lead' -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_lead/crm_lead.json +#. Label of the first_name (Data) field in PageType 'CRM Deal' +#. Label of the first_name (Data) field in PageType 'CRM Lead' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_lead/crm_lead.json #: frontend/src/components/ColumnSettings.vue:103 #: frontend/src/components/Filter.vue:57 frontend/src/components/Filter.vue:88 #: frontend/src/components/SortBy.vue:6 frontend/src/components/SortBy.vue:103 @@ -2614,30 +2614,30 @@ msgstr "Vorname" msgid "First Name is mandatory" msgstr "Vorname ist erforderlich" -#. Label of the first_responded_on (Datetime) field in DocType 'CRM Deal' -#. Label of the first_responded_on (Datetime) field in DocType 'CRM Lead' -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_lead/crm_lead.json +#. Label of the first_responded_on (Datetime) field in PageType 'CRM Deal' +#. Label of the first_responded_on (Datetime) field in PageType 'CRM Lead' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_lead/crm_lead.json msgid "First Responded On" msgstr "Zuerst geantwortet auf" -#. Option for the 'SLA Status' (Select) field in DocType 'CRM Deal' -#. Option for the 'SLA Status' (Select) field in DocType 'CRM Lead' -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_lead/crm_lead.json +#. Option for the 'SLA Status' (Select) field in PageType 'CRM Deal' +#. Option for the 'SLA Status' (Select) field in PageType 'CRM Lead' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_lead/crm_lead.json msgid "First Response Due" msgstr "Erste Antwort fällig" -#. Label of the first_response_time (Duration) field in DocType 'CRM Service +#. Label of the first_response_time (Duration) field in PageType 'CRM Service #. Level Priority' -#: crm/fcrm/doctype/crm_service_level_priority/crm_service_level_priority.json +#: crm/fcrm/pagetype/crm_service_level_priority/crm_service_level_priority.json msgid "First Response TIme" msgstr "" -#. Label of the first_response_time (Duration) field in DocType 'CRM Deal' -#. Label of the first_response_time (Duration) field in DocType 'CRM Lead' -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_lead/crm_lead.json +#. Label of the first_response_time (Duration) field in PageType 'CRM Deal' +#. Label of the first_response_time (Duration) field in PageType 'CRM Lead' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_lead/crm_lead.json msgid "First Response Time" msgstr "Erste Antwortzeit" @@ -2670,66 +2670,66 @@ msgstr "" msgid "Forecasting enabled successfully" msgstr "" -#. Option for the 'Apply To' (Select) field in DocType 'CRM Form Script' -#: crm/fcrm/doctype/crm_form_script/crm_form_script.json +#. Option for the 'Apply To' (Select) field in PageType 'CRM Form Script' +#: crm/fcrm/pagetype/crm_form_script/crm_form_script.json msgid "Form" msgstr "Formular" -#: crm/fcrm/doctype/erpnext_crm_settings/erpnext_crm_settings.js:19 +#: crm/fcrm/pagetype/erpnext_crm_settings/erpnext_crm_settings.js:19 msgid "Form Script updated successfully" msgstr "" #. Name of a Workspace -#: crm/fcrm/workspace/frappe_crm/frappe_crm.json -msgid "Frappe CRM" -msgstr "Frappe CRM" +#: crm/fcrm/workspace/jingrow_crm/jingrow_crm.json +msgid "Jingrow CRM" +msgstr "Jingrow CRM" #: frontend/src/components/Layouts/AppSidebar.vue:608 -msgid "Frappe CRM mobile" +msgid "Jingrow CRM mobile" msgstr "" -#. Option for the 'Weekly Off' (Select) field in DocType 'CRM Holiday List' -#. Option for the 'Workday' (Select) field in DocType 'CRM Service Day' -#: crm/fcrm/doctype/crm_holiday_list/crm_holiday_list.json -#: crm/fcrm/doctype/crm_service_day/crm_service_day.json +#. Option for the 'Weekly Off' (Select) field in PageType 'CRM Holiday List' +#. Option for the 'Workday' (Select) field in PageType 'CRM Service Day' +#: crm/fcrm/pagetype/crm_holiday_list/crm_holiday_list.json +#: crm/fcrm/pagetype/crm_service_day/crm_service_day.json msgid "Friday" msgstr "Freitag" -#. Label of the from (Data) field in DocType 'CRM Call Log' -#. Label of the from (Data) field in DocType 'CRM Status Change Log' -#: crm/fcrm/doctype/crm_call_log/crm_call_log.json -#: crm/fcrm/doctype/crm_status_change_log/crm_status_change_log.json +#. Label of the from (Data) field in PageType 'CRM Call Log' +#. Label of the from (Data) field in PageType 'CRM Status Change Log' +#: crm/fcrm/pagetype/crm_call_log/crm_call_log.json +#: crm/fcrm/pagetype/crm_status_change_log/crm_status_change_log.json msgid "From" msgstr "Von" -#. Label of the from_date (Date) field in DocType 'CRM Holiday List' -#. Label of the from_date (Datetime) field in DocType 'CRM Status Change Log' -#: crm/fcrm/doctype/crm_holiday_list/crm_holiday_list.json -#: crm/fcrm/doctype/crm_status_change_log/crm_status_change_log.json +#. Label of the from_date (Date) field in PageType 'CRM Holiday List' +#. Label of the from_date (Datetime) field in PageType 'CRM Status Change Log' +#: crm/fcrm/pagetype/crm_holiday_list/crm_holiday_list.json +#: crm/fcrm/pagetype/crm_status_change_log/crm_status_change_log.json msgid "From Date" msgstr "Von-Datum" -#. Label of the from_type (Data) field in DocType 'CRM Status Change Log' -#: crm/fcrm/doctype/crm_status_change_log/crm_status_change_log.json +#. Label of the from_type (Data) field in PageType 'CRM Status Change Log' +#: crm/fcrm/pagetype/crm_status_change_log/crm_status_change_log.json msgid "From Type" msgstr "" -#. Label of the from_user (Link) field in DocType 'CRM Notification' -#: crm/fcrm/doctype/crm_notification/crm_notification.json +#. Label of the from_user (Link) field in PageType 'CRM Notification' +#: crm/fcrm/pagetype/crm_notification/crm_notification.json msgid "From User" msgstr "Von Benutzer" -#. Option for the 'SLA Status' (Select) field in DocType 'CRM Deal' -#. Option for the 'SLA Status' (Select) field in DocType 'CRM Lead' -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_lead/crm_lead.json +#. Option for the 'SLA Status' (Select) field in PageType 'CRM Deal' +#. Option for the 'SLA Status' (Select) field in PageType 'CRM Lead' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_lead/crm_lead.json msgid "Fulfilled" msgstr "Erfüllt" -#. Label of the full_name (Data) field in DocType 'CRM Contacts' -#. Label of the lead_name (Data) field in DocType 'CRM Lead' -#: crm/fcrm/doctype/crm_contacts/crm_contacts.json -#: crm/fcrm/doctype/crm_lead/crm_lead.json +#. Label of the full_name (Data) field in PageType 'CRM Contacts' +#. Label of the lead_name (Data) field in PageType 'CRM Lead' +#: crm/fcrm/pagetype/crm_contacts/crm_contacts.json +#: crm/fcrm/pagetype/crm_lead/crm_lead.json msgid "Full Name" msgstr "Vollständiger Name" @@ -2742,12 +2742,12 @@ msgstr "" msgid "GMT+5:30" msgstr "" -#. Label of the gender (Link) field in DocType 'CRM Contacts' -#. Label of the gender (Link) field in DocType 'CRM Deal' -#. Label of the gender (Link) field in DocType 'CRM Lead' -#: crm/fcrm/doctype/crm_contacts/crm_contacts.json -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_lead/crm_lead.json +#. Label of the gender (Link) field in PageType 'CRM Contacts' +#. Label of the gender (Link) field in PageType 'CRM Deal' +#. Label of the gender (Link) field in PageType 'CRM Lead' +#: crm/fcrm/pagetype/crm_contacts/crm_contacts.json +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_lead/crm_lead.json msgid "Gender" msgstr "Geschlecht" @@ -2771,20 +2771,20 @@ msgstr "" msgid "Go to website" msgstr "Gehe zur Website" -#. Option for the 'Type' (Select) field in DocType 'CRM Fields Layout' -#: crm/fcrm/doctype/crm_fields_layout/crm_fields_layout.json +#. Option for the 'Type' (Select) field in PageType 'CRM Fields Layout' +#: crm/fcrm/pagetype/crm_fields_layout/crm_fields_layout.json msgid "Grid Row" msgstr "Rasterzeile" -#. Label of the group_by_tab (Tab Break) field in DocType 'CRM View Settings' -#: crm/fcrm/doctype/crm_view_settings/crm_view_settings.json +#. Label of the group_by_tab (Tab Break) field in PageType 'CRM View Settings' +#: crm/fcrm/pagetype/crm_view_settings/crm_view_settings.json #: frontend/src/components/ViewControls.vue:379 #: frontend/src/components/ViewControls.vue:611 frontend/src/utils/view.js:16 msgid "Group By" msgstr "Gruppiere nach" -#. Label of the group_by_field (Data) field in DocType 'CRM View Settings' -#: crm/fcrm/doctype/crm_view_settings/crm_view_settings.json +#. Label of the group_by_field (Data) field in PageType 'CRM View Settings' +#: crm/fcrm/pagetype/crm_view_settings/crm_view_settings.json msgid "Group By Field" msgstr "Nach Feld gruppieren" @@ -2808,28 +2808,28 @@ msgstr "Hilfe" msgid "Helpdesk" msgstr "" -#. Name of a DocType -#: crm/fcrm/doctype/helpdesk_crm_settings/helpdesk_crm_settings.json +#. Name of a PageType +#: crm/fcrm/pagetype/helpdesk_crm_settings/helpdesk_crm_settings.json msgid "Helpdesk CRM Settings" msgstr "" -#. Label of the helpdesk_site_apis_section (Section Break) field in DocType +#. Label of the helpdesk_site_apis_section (Section Break) field in PageType #. 'Helpdesk CRM Settings' -#: crm/fcrm/doctype/helpdesk_crm_settings/helpdesk_crm_settings.json +#: crm/fcrm/pagetype/helpdesk_crm_settings/helpdesk_crm_settings.json msgid "Helpdesk Site API's" msgstr "" -#. Label of the helpdesk_site_url (Data) field in DocType 'Helpdesk CRM +#. Label of the helpdesk_site_url (Data) field in PageType 'Helpdesk CRM #. Settings' -#: crm/fcrm/doctype/helpdesk_crm_settings/helpdesk_crm_settings.json +#: crm/fcrm/pagetype/helpdesk_crm_settings/helpdesk_crm_settings.json msgid "Helpdesk Site URL" msgstr "" -#: crm/fcrm/doctype/helpdesk_crm_settings/helpdesk_crm_settings.py:18 +#: crm/fcrm/pagetype/helpdesk_crm_settings/helpdesk_crm_settings.py:18 msgid "Helpdesk is not installed in the current site" msgstr "" -#: crm/fcrm/doctype/helpdesk_crm_settings/helpdesk_crm_settings.py:40 +#: crm/fcrm/pagetype/helpdesk_crm_settings/helpdesk_crm_settings.py:40 msgid "Helpdesk is not integrated with the CRM" msgstr "" @@ -2845,8 +2845,8 @@ msgstr "" msgid "Hi John, \\n\\nCan you please provide more details on this..." msgstr "Hallo John, \\n\\nKönnten Sie bitte weitere Details dazu angeben..." -#. Label of the hidden (Check) field in DocType 'CRM Dropdown Item' -#: crm/fcrm/doctype/crm_dropdown_item/crm_dropdown_item.json +#. Label of the hidden (Check) field in PageType 'CRM Dropdown Item' +#: crm/fcrm/pagetype/crm_dropdown_item/crm_dropdown_item.json msgid "Hidden" msgstr "Versteckt" @@ -2877,26 +2877,26 @@ msgstr "Beschriftung ausblenden" msgid "Hide preview" msgstr "Vorschau ausblenden" -#. Option for the 'Priority' (Select) field in DocType 'CRM Task' -#: crm/fcrm/doctype/crm_task/crm_task.json +#. Option for the 'Priority' (Select) field in PageType 'CRM Task' +#: crm/fcrm/pagetype/crm_task/crm_task.json msgid "High" msgstr "Hoch" -#. Label of the holiday_list (Link) field in DocType 'CRM Service Level +#. Label of the holiday_list (Link) field in PageType 'CRM Service Level #. Agreement' -#: crm/fcrm/doctype/crm_service_level_agreement/crm_service_level_agreement.json +#: crm/fcrm/pagetype/crm_service_level_agreement/crm_service_level_agreement.json msgid "Holiday List" msgstr "Feiertagsliste" -#. Label of the holiday_list_name (Data) field in DocType 'CRM Holiday List' -#: crm/fcrm/doctype/crm_holiday_list/crm_holiday_list.json +#. Label of the holiday_list_name (Data) field in PageType 'CRM Holiday List' +#: crm/fcrm/pagetype/crm_holiday_list/crm_holiday_list.json msgid "Holiday List Name" msgstr "Name der Feiertagsliste" -#. Label of the holidays_section (Section Break) field in DocType 'CRM Holiday +#. Label of the holidays_section (Section Break) field in PageType 'CRM Holiday #. List' -#. Label of the holidays (Table) field in DocType 'CRM Holiday List' -#: crm/fcrm/doctype/crm_holiday_list/crm_holiday_list.json +#. Label of the holidays (Table) field in PageType 'CRM Holiday List' +#: crm/fcrm/pagetype/crm_holiday_list/crm_holiday_list.json msgid "Holidays" msgstr "Arbeitsfreie Tage" @@ -2914,15 +2914,15 @@ msgstr "" msgid "I understand, add conditions" msgstr "" -#. Label of the id (Data) field in DocType 'CRM Call Log' -#: crm/fcrm/doctype/crm_call_log/crm_call_log.json +#. Label of the id (Data) field in PageType 'CRM Call Log' +#: crm/fcrm/pagetype/crm_call_log/crm_call_log.json msgid "ID" msgstr "ID" -#. Label of the icon (Code) field in DocType 'CRM Dropdown Item' -#. Label of the icon (Data) field in DocType 'CRM View Settings' -#: crm/fcrm/doctype/crm_dropdown_item/crm_dropdown_item.json -#: crm/fcrm/doctype/crm_view_settings/crm_view_settings.json +#. Label of the icon (Code) field in PageType 'CRM Dropdown Item' +#. Label of the icon (Data) field in PageType 'CRM View Settings' +#: crm/fcrm/pagetype/crm_dropdown_item/crm_dropdown_item.json +#: crm/fcrm/pagetype/crm_view_settings/crm_view_settings.json msgid "Icon" msgstr "Symbol" @@ -2942,10 +2942,10 @@ msgstr "" msgid "If enabled, records can be created from the incoming emails on this account." msgstr "" -#. Label of the image (Attach Image) field in DocType 'CRM Lead' -#. Label of the image (Attach Image) field in DocType 'CRM Product' -#: crm/fcrm/doctype/crm_lead/crm_lead.json -#: crm/fcrm/doctype/crm_product/crm_product.json +#. Label of the image (Attach Image) field in PageType 'CRM Lead' +#. Label of the image (Attach Image) field in PageType 'CRM Product' +#: crm/fcrm/pagetype/crm_lead/crm_lead.json +#: crm/fcrm/pagetype/crm_product/crm_product.json msgid "Image" msgstr "Bild" @@ -2957,10 +2957,10 @@ msgstr "Bild" msgid "In" msgstr "in" -#. Option for the 'Status' (Select) field in DocType 'CRM Call Log' -#. Option for the 'Status' (Select) field in DocType 'CRM Task' -#: crm/fcrm/doctype/crm_call_log/crm_call_log.json -#: crm/fcrm/doctype/crm_task/crm_task.json +#. Option for the 'Status' (Select) field in PageType 'CRM Call Log' +#. Option for the 'Status' (Select) field in PageType 'CRM Task' +#: crm/fcrm/pagetype/crm_call_log/crm_call_log.json +#: crm/fcrm/pagetype/crm_task/crm_task.json msgid "In Progress" msgstr "In Bearbeitung" @@ -2976,8 +2976,8 @@ msgstr "Eingehender Anruf" msgid "Inbox" msgstr "Posteingang" -#. Option for the 'Type' (Select) field in DocType 'CRM Call Log' -#: crm/fcrm/doctype/crm_call_log/crm_call_log.json +#. Option for the 'Type' (Select) field in PageType 'CRM Call Log' +#: crm/fcrm/pagetype/crm_call_log/crm_call_log.json msgid "Incoming" msgstr "Eingehend" @@ -2985,24 +2985,24 @@ msgstr "Eingehend" msgid "Incoming call..." msgstr "Eingehender Anruf..." -#. Label of a shortcut in the Frappe CRM Workspace -#: crm/fcrm/workspace/frappe_crm/frappe_crm.json +#. Label of a shortcut in the Jingrow CRM Workspace +#: crm/fcrm/workspace/jingrow_crm/jingrow_crm.json msgid "Industries" msgstr "Branchen" -#. Label of the industry (Link) field in DocType 'CRM Deal' -#. Label of the industry (Data) field in DocType 'CRM Industry' -#. Label of the industry (Link) field in DocType 'CRM Lead' -#. Label of the industry (Link) field in DocType 'CRM Organization' -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_industry/crm_industry.json -#: crm/fcrm/doctype/crm_lead/crm_lead.json -#: crm/fcrm/doctype/crm_organization/crm_organization.json +#. Label of the industry (Link) field in PageType 'CRM Deal' +#. Label of the industry (Data) field in PageType 'CRM Industry' +#. Label of the industry (Link) field in PageType 'CRM Lead' +#. Label of the industry (Link) field in PageType 'CRM Organization' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_industry/crm_industry.json +#: crm/fcrm/pagetype/crm_lead/crm_lead.json +#: crm/fcrm/pagetype/crm_organization/crm_organization.json msgid "Industry" msgstr "Industrie" -#. Option for the 'Status' (Select) field in DocType 'CRM Call Log' -#: crm/fcrm/doctype/crm_call_log/crm_call_log.json +#. Option for the 'Status' (Select) field in PageType 'CRM Call Log' +#: crm/fcrm/pagetype/crm_call_log/crm_call_log.json msgid "Initiated" msgstr "Initiiert" @@ -3037,7 +3037,7 @@ msgstr "Einbindungen" msgid "Introduction" msgstr "Einleitung" -#: crm/fcrm/doctype/crm_twilio_settings/crm_twilio_settings.py:33 +#: crm/fcrm/pagetype/crm_twilio_settings/crm_twilio_settings.py:33 msgid "Invalid Account SID or Auth Token." msgstr "Ungültige Konto-SID oder ungültiges Authentifizierungstoken." @@ -3054,7 +3054,7 @@ msgstr "Ungültige Exotel-Nummer" msgid "Invalid chart name" msgstr "" -#: crm/fcrm/doctype/crm_exotel_settings/crm_exotel_settings.py:25 +#: crm/fcrm/pagetype/crm_exotel_settings/crm_exotel_settings.py:25 msgid "Invalid credentials" msgstr "Ungültige Anmeldeinformationen" @@ -3103,8 +3103,8 @@ msgstr "" msgid "Invite your team" msgstr "" -#. Label of the invited_by (Link) field in DocType 'CRM Invitation' -#: crm/fcrm/doctype/crm_invitation/crm_invitation.json +#. Label of the invited_by (Link) field in PageType 'CRM Invitation' +#: crm/fcrm/pagetype/crm_invitation/crm_invitation.json msgid "Invited By" msgstr "Eingeladen von" @@ -3118,59 +3118,59 @@ msgstr "Eingeladen von" msgid "Is" msgstr "Ist" -#. Label of the is_default (Check) field in DocType 'CRM View Settings' -#: crm/fcrm/doctype/crm_view_settings/crm_view_settings.json +#. Label of the is_default (Check) field in PageType 'CRM View Settings' +#: crm/fcrm/pagetype/crm_view_settings/crm_view_settings.json msgid "Is Default" msgstr "Ist Standard" -#. Label of the is_erpnext_in_different_site (Check) field in DocType 'ERPNext +#. Label of the is_erpnext_in_different_site (Check) field in PageType 'ERPNext #. CRM Settings' -#: crm/fcrm/doctype/erpnext_crm_settings/erpnext_crm_settings.json +#: crm/fcrm/pagetype/erpnext_crm_settings/erpnext_crm_settings.json msgid "Is ERPNext installed on a different site?" msgstr "Ist ERPNext auf einer anderen Instanz installiert?" -#. Label of the is_group (Check) field in DocType 'CRM Territory' -#: crm/fcrm/doctype/crm_territory/crm_territory.json +#. Label of the is_group (Check) field in PageType 'CRM Territory' +#: crm/fcrm/pagetype/crm_territory/crm_territory.json msgid "Is Group" msgstr "Ist Gruppe" -#. Label of the is_helpdesk_in_different_site (Check) field in DocType +#. Label of the is_helpdesk_in_different_site (Check) field in PageType #. 'Helpdesk CRM Settings' -#: crm/fcrm/doctype/helpdesk_crm_settings/helpdesk_crm_settings.json +#: crm/fcrm/pagetype/helpdesk_crm_settings/helpdesk_crm_settings.json msgid "Is Helpdesk installed on a different site?" msgstr "" -#. Label of the is_primary (Check) field in DocType 'CRM Contacts' -#. Label of the is_primary (Check) field in DocType 'CRM Telephony Phone' -#: crm/fcrm/doctype/crm_contacts/crm_contacts.json -#: crm/fcrm/doctype/crm_telephony_phone/crm_telephony_phone.json +#. Label of the is_primary (Check) field in PageType 'CRM Contacts' +#. Label of the is_primary (Check) field in PageType 'CRM Telephony Phone' +#: crm/fcrm/pagetype/crm_contacts/crm_contacts.json +#: crm/fcrm/pagetype/crm_telephony_phone/crm_telephony_phone.json msgid "Is Primary" msgstr "Ist primär" -#. Label of the is_standard (Check) field in DocType 'CRM Dropdown Item' -#. Label of the is_standard (Check) field in DocType 'CRM Form Script' -#. Label of the is_standard (Check) field in DocType 'CRM View Settings' -#: crm/fcrm/doctype/crm_dropdown_item/crm_dropdown_item.json -#: crm/fcrm/doctype/crm_form_script/crm_form_script.json -#: crm/fcrm/doctype/crm_view_settings/crm_view_settings.json +#. Label of the is_standard (Check) field in PageType 'CRM Dropdown Item' +#. Label of the is_standard (Check) field in PageType 'CRM Form Script' +#. Label of the is_standard (Check) field in PageType 'CRM View Settings' +#: crm/fcrm/pagetype/crm_dropdown_item/crm_dropdown_item.json +#: crm/fcrm/pagetype/crm_form_script/crm_form_script.json +#: crm/fcrm/pagetype/crm_view_settings/crm_view_settings.json msgid "Is Standard" msgstr "Ist Standard" -#. Description of the 'Enable Forecasting' (Check) field in DocType 'FCRM +#. Description of the 'Enable Forecasting' (Check) field in PageType 'FCRM #. Settings' -#: crm/fcrm/doctype/fcrm_settings/fcrm_settings.json +#: crm/fcrm/pagetype/fcrm_settings/fcrm_settings.json msgid "It will make deal's \"Expected Closure Date\" & \"Expected Deal Value\" mandatory to get accurate forecasting insights" msgstr "" -#. Label of the json (JSON) field in DocType 'CRM Global Settings' -#: crm/fcrm/doctype/crm_global_settings/crm_global_settings.json +#. Label of the json (JSON) field in PageType 'CRM Global Settings' +#: crm/fcrm/pagetype/crm_global_settings/crm_global_settings.json msgid "JSON" msgstr "JSON" -#. Label of the job_title (Data) field in DocType 'CRM Deal' -#. Label of the job_title (Data) field in DocType 'CRM Lead' -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_lead/crm_lead.json +#. Label of the job_title (Data) field in PageType 'CRM Deal' +#. Label of the job_title (Data) field in PageType 'CRM Lead' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_lead/crm_lead.json msgid "Job Title" msgstr "Stellenbezeichnung" @@ -3182,20 +3182,20 @@ msgstr "Stellenbezeichnung" msgid "John Doe" msgstr "Max Mustermann" -#. Label of the kanban_tab (Tab Break) field in DocType 'CRM View Settings' -#: crm/fcrm/doctype/crm_view_settings/crm_view_settings.json +#. Label of the kanban_tab (Tab Break) field in PageType 'CRM View Settings' +#: crm/fcrm/pagetype/crm_view_settings/crm_view_settings.json #: frontend/src/components/ViewControls.vue:384 #: frontend/src/components/ViewControls.vue:600 frontend/src/utils/view.js:20 msgid "Kanban" msgstr "Kanban" -#. Label of the kanban_columns (Code) field in DocType 'CRM View Settings' -#: crm/fcrm/doctype/crm_view_settings/crm_view_settings.json +#. Label of the kanban_columns (Code) field in PageType 'CRM View Settings' +#: crm/fcrm/pagetype/crm_view_settings/crm_view_settings.json msgid "Kanban Columns" msgstr "Kanban-Spalten" -#. Label of the kanban_fields (Code) field in DocType 'CRM View Settings' -#: crm/fcrm/doctype/crm_view_settings/crm_view_settings.json +#. Label of the kanban_fields (Code) field in PageType 'CRM View Settings' +#: crm/fcrm/pagetype/crm_view_settings/crm_view_settings.json msgid "Kanban Fields" msgstr "Kanban-Felder" @@ -3204,15 +3204,15 @@ msgstr "Kanban-Felder" msgid "Kanban Settings" msgstr "Kanban-Einstellungen" -#. Label of the key (Data) field in DocType 'CRM Invitation' -#: crm/fcrm/doctype/crm_invitation/crm_invitation.json +#. Label of the key (Data) field in PageType 'CRM Invitation' +#: crm/fcrm/pagetype/crm_invitation/crm_invitation.json msgid "Key" msgstr "Schlüssel" -#. Label of the label (Data) field in DocType 'CRM Dropdown Item' -#. Label of the label (Data) field in DocType 'CRM View Settings' -#: crm/fcrm/doctype/crm_dropdown_item/crm_dropdown_item.json -#: crm/fcrm/doctype/crm_view_settings/crm_view_settings.json +#. Label of the label (Data) field in PageType 'CRM Dropdown Item' +#. Label of the label (Data) field in PageType 'CRM View Settings' +#: crm/fcrm/pagetype/crm_dropdown_item/crm_dropdown_item.json +#: crm/fcrm/pagetype/crm_view_settings/crm_view_settings.json #: frontend/src/components/ColumnSettings.vue:100 msgid "Label" msgstr "Bezeichnung" @@ -3229,10 +3229,10 @@ msgstr "Letzte 6 Monate" msgid "Last Month" msgstr "Vergangener Monat" -#. Label of the last_name (Data) field in DocType 'CRM Deal' -#. Label of the last_name (Data) field in DocType 'CRM Lead' -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_lead/crm_lead.json +#. Label of the last_name (Data) field in PageType 'CRM Deal' +#. Label of the last_name (Data) field in PageType 'CRM Lead' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_lead/crm_lead.json msgid "Last Name" msgstr "Nachname" @@ -3240,9 +3240,9 @@ msgstr "Nachname" msgid "Last Quarter" msgstr "Vergangenes Quartal" -#. Label of the last_status_change_log (Link) field in DocType 'CRM Status +#. Label of the last_status_change_log (Link) field in PageType 'CRM Status #. Change Log' -#: crm/fcrm/doctype/crm_status_change_log/crm_status_change_log.json +#: crm/fcrm/pagetype/crm_status_change_log/crm_status_change_log.json msgid "Last Status Change Log" msgstr "" @@ -3270,15 +3270,15 @@ msgstr "" msgid "Last user assigned by this rule" msgstr "" -#. Label of the layout (Code) field in DocType 'CRM Dashboard' -#. Label of the layout (Code) field in DocType 'CRM Fields Layout' -#: crm/fcrm/doctype/crm_dashboard/crm_dashboard.json -#: crm/fcrm/doctype/crm_fields_layout/crm_fields_layout.json +#. Label of the layout (Code) field in PageType 'CRM Dashboard' +#. Label of the layout (Code) field in PageType 'CRM Fields Layout' +#: crm/fcrm/pagetype/crm_dashboard/crm_dashboard.json +#: crm/fcrm/pagetype/crm_fields_layout/crm_fields_layout.json msgid "Layout" msgstr "Layout" -#. Label of the lead (Link) field in DocType 'CRM Deal' -#: crm/fcrm/doctype/crm_deal/crm_deal.json +#. Label of the lead (Link) field in PageType 'CRM Deal' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json #: frontend/src/components/Calendar/CalendarEventPanel.vue:263 #: frontend/src/components/Calendar/CalendarEventPanel.vue:288 #: frontend/src/components/Layouts/AppSidebar.vue:550 @@ -3291,32 +3291,32 @@ msgstr "Layout" msgid "Lead" msgstr "Interessent" -#. Label of the lead_details_tab (Tab Break) field in DocType 'CRM Deal' -#: crm/fcrm/doctype/crm_deal/crm_deal.json +#. Label of the lead_details_tab (Tab Break) field in PageType 'CRM Deal' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json msgid "Lead Details" msgstr "Einzelheiten zum Interessent" -#. Label of the lead_name (Data) field in DocType 'CRM Deal' -#: crm/fcrm/doctype/crm_deal/crm_deal.json +#. Label of the lead_name (Data) field in PageType 'CRM Deal' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json msgid "Lead Name" msgstr "Name Interessent" -#. Label of the lead_owner (Link) field in DocType 'CRM Lead' -#: crm/fcrm/doctype/crm_lead/crm_lead.json +#. Label of the lead_owner (Link) field in PageType 'CRM Lead' +#: crm/fcrm/pagetype/crm_lead/crm_lead.json msgid "Lead Owner" msgstr "Verantwortlicher" -#: crm/fcrm/doctype/crm_lead/crm_lead.py:73 +#: crm/fcrm/pagetype/crm_lead/crm_lead.py:73 msgid "Lead Owner cannot be same as the Lead Email Address" msgstr "Der Eigentümer des Interessenten darf nicht mit der E-Mail-Adresse des Interessenten übereinstimmen" -#. Label of a shortcut in the Frappe CRM Workspace -#: crm/fcrm/workspace/frappe_crm/frappe_crm.json +#. Label of a shortcut in the Jingrow CRM Workspace +#: crm/fcrm/workspace/jingrow_crm/jingrow_crm.json msgid "Lead Sources" msgstr "" -#. Label of a shortcut in the Frappe CRM Workspace -#: crm/fcrm/workspace/frappe_crm/frappe_crm.json +#. Label of a shortcut in the Jingrow CRM Workspace +#: crm/fcrm/workspace/jingrow_crm/jingrow_crm.json msgid "Lead Statuses" msgstr "" @@ -3328,8 +3328,8 @@ msgstr "" msgid "Lead to deal conversion pipeline" msgstr "" -#. Label of a shortcut in the Frappe CRM Workspace -#: crm/fcrm/workspace/frappe_crm/frappe_crm.json +#. Label of a shortcut in the Jingrow CRM Workspace +#: crm/fcrm/workspace/jingrow_crm/jingrow_crm.json #: frontend/src/pages/InvalidPage.vue:9 frontend/src/pages/Lead.vue:340 #: frontend/src/pages/MobileLead.vue:291 msgid "Leads" @@ -3345,8 +3345,8 @@ msgstr "" msgid "Learn about conditions" msgstr "" -#. Label of the lft (Int) field in DocType 'CRM Territory' -#: crm/fcrm/doctype/crm_territory/crm_territory.json +#. Label of the lft (Int) field in PageType 'CRM Territory' +#: crm/fcrm/pagetype/crm_territory/crm_territory.json msgid "Left" msgstr "Links" @@ -3367,15 +3367,15 @@ msgstr "Wie" msgid "Link" msgstr "Verknüpfung" -#. Label of the links (Table) field in DocType 'CRM Call Log' -#: crm/fcrm/doctype/crm_call_log/crm_call_log.json +#. Label of the links (Table) field in PageType 'CRM Call Log' +#: crm/fcrm/pagetype/crm_call_log/crm_call_log.json msgid "Links" msgstr "Verknüpfungen" -#. Option for the 'Apply To' (Select) field in DocType 'CRM Form Script' -#. Label of the list_tab (Tab Break) field in DocType 'CRM View Settings' -#: crm/fcrm/doctype/crm_form_script/crm_form_script.json -#: crm/fcrm/doctype/crm_view_settings/crm_view_settings.json +#. Option for the 'Apply To' (Select) field in PageType 'CRM Form Script' +#. Label of the list_tab (Tab Break) field in PageType 'CRM View Settings' +#: crm/fcrm/pagetype/crm_form_script/crm_form_script.json +#: crm/fcrm/pagetype/crm_view_settings/crm_view_settings.json #: frontend/src/components/ViewControls.vue:374 #: frontend/src/components/ViewControls.vue:589 frontend/src/utils/view.js:12 msgid "List" @@ -3385,9 +3385,9 @@ msgstr "Liste" msgid "Listen" msgstr "Anhören" -#. Label of the load_default_columns (Check) field in DocType 'CRM View +#. Label of the load_default_columns (Check) field in PageType 'CRM View #. Settings' -#: crm/fcrm/doctype/crm_view_settings/crm_view_settings.json +#: crm/fcrm/pagetype/crm_view_settings/crm_view_settings.json msgid "Load Default Columns" msgstr "Standardspalten laden" @@ -3403,10 +3403,10 @@ msgstr "Mehr laden" msgid "Loading..." msgstr "Laden ..." -#. Label of the log_tab (Tab Break) field in DocType 'CRM Deal' -#. Label of the log_tab (Tab Break) field in DocType 'CRM Lead' -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_lead/crm_lead.json +#. Label of the log_tab (Tab Break) field in PageType 'CRM Deal' +#. Label of the log_tab (Tab Break) field in PageType 'CRM Lead' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_lead/crm_lead.json msgid "Log" msgstr "Protokoll" @@ -3417,28 +3417,28 @@ msgid "Log a Call" msgstr "" #: frontend/src/composables/frappecloud.js:23 -msgid "Login to Frappe Cloud?" -msgstr "Melden Sie sich bei Frappe Cloud an?" +msgid "Login to Jingrow Cloud?" +msgstr "Melden Sie sich bei Jingrow Cloud an?" -#. Label of the brand_logo (Attach) field in DocType 'FCRM Settings' -#: crm/fcrm/doctype/fcrm_settings/fcrm_settings.json +#. Label of the brand_logo (Attach) field in PageType 'FCRM Settings' +#: crm/fcrm/pagetype/fcrm_settings/fcrm_settings.json msgid "Logo" msgstr "Logo" -#. Option for the 'Type' (Select) field in DocType 'CRM Deal Status' -#: crm/fcrm/doctype/crm_deal_status/crm_deal_status.json +#. Option for the 'Type' (Select) field in PageType 'CRM Deal Status' +#: crm/fcrm/pagetype/crm_deal_status/crm_deal_status.json msgid "Lost" msgstr "Verloren" -#. Label of the lost_notes (Text) field in DocType 'CRM Deal' -#: crm/fcrm/doctype/crm_deal/crm_deal.json +#. Label of the lost_notes (Text) field in PageType 'CRM Deal' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json msgid "Lost Notes" msgstr "" -#. Label of the lost_reason (Link) field in DocType 'CRM Deal' -#. Label of the lost_reason (Data) field in DocType 'CRM Lost Reason' -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_lost_reason/crm_lost_reason.json +#. Label of the lost_reason (Link) field in PageType 'CRM Deal' +#. Label of the lost_reason (Data) field in PageType 'CRM Lost Reason' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_lost_reason/crm_lost_reason.json msgid "Lost Reason" msgstr "Grund für Verlust" @@ -3464,8 +3464,8 @@ msgstr "" msgid "Lost reason is required" msgstr "" -#. Option for the 'Priority' (Select) field in DocType 'CRM Task' -#: crm/fcrm/doctype/crm_task/crm_task.json +#. Option for the 'Priority' (Select) field in PageType 'CRM Task' +#: crm/fcrm/pagetype/crm_task/crm_task.json msgid "Low" msgstr "Niedrig" @@ -3542,8 +3542,8 @@ msgstr "Manager:in" msgid "Mandatory field error: {0}" msgstr "" -#. Option for the 'Telephony Medium' (Select) field in DocType 'CRM Call Log' -#: crm/fcrm/doctype/crm_call_log/crm_call_log.json +#. Option for the 'Telephony Medium' (Select) field in PageType 'CRM Call Log' +#: crm/fcrm/pagetype/crm_call_log/crm_call_log.json msgid "Manual" msgstr "Manuell" @@ -3562,25 +3562,25 @@ msgstr "Stammdaten" msgid "May 1, 2025" msgstr "" -#. Label of the medium (Data) field in DocType 'CRM Call Log' -#. Option for the 'Priority' (Select) field in DocType 'CRM Task' -#: crm/fcrm/doctype/crm_call_log/crm_call_log.json -#: crm/fcrm/doctype/crm_task/crm_task.json +#. Label of the medium (Data) field in PageType 'CRM Call Log' +#. Option for the 'Priority' (Select) field in PageType 'CRM Task' +#: crm/fcrm/pagetype/crm_call_log/crm_call_log.json +#: crm/fcrm/pagetype/crm_task/crm_task.json msgid "Medium" msgstr "Mittel" -#. Option for the 'Type' (Select) field in DocType 'CRM Notification' -#: crm/fcrm/doctype/crm_notification/crm_notification.json +#. Option for the 'Type' (Select) field in PageType 'CRM Notification' +#: crm/fcrm/pagetype/crm_notification/crm_notification.json msgid "Mention" msgstr "Erwähnen" -#. Label of the message (HTML Editor) field in DocType 'CRM Notification' -#: crm/fcrm/doctype/crm_notification/crm_notification.json +#. Label of the message (HTML Editor) field in PageType 'CRM Notification' +#: crm/fcrm/pagetype/crm_notification/crm_notification.json msgid "Message" msgstr "Nachricht" -#. Label of the middle_name (Data) field in DocType 'CRM Lead' -#: crm/fcrm/doctype/crm_lead/crm_lead.json +#. Label of the middle_name (Data) field in PageType 'CRM Lead' +#: crm/fcrm/pagetype/crm_lead/crm_lead.json msgid "Middle Name" msgstr "Zweiter Vorname" @@ -3588,10 +3588,10 @@ msgstr "Zweiter Vorname" msgid "Minimize" msgstr "" -#. Label of the mobile_no (Data) field in DocType 'CRM Contacts' -#. Label of the mobile_no (Data) field in DocType 'CRM Lead' -#: crm/fcrm/doctype/crm_contacts/crm_contacts.json -#: crm/fcrm/doctype/crm_lead/crm_lead.json +#. Label of the mobile_no (Data) field in PageType 'CRM Contacts' +#. Label of the mobile_no (Data) field in PageType 'CRM Lead' +#: crm/fcrm/pagetype/crm_contacts/crm_contacts.json +#: crm/fcrm/pagetype/crm_lead/crm_lead.json msgid "Mobile No" msgstr "Mobilfunknummer" @@ -3600,8 +3600,8 @@ msgstr "Mobilfunknummer" msgid "Mobile No should be a number" msgstr "" -#. Label of the mobile_no (Data) field in DocType 'CRM Telephony Agent' -#: crm/fcrm/doctype/crm_telephony_agent/crm_telephony_agent.json +#. Label of the mobile_no (Data) field in PageType 'CRM Telephony Agent' +#: crm/fcrm/pagetype/crm_telephony_agent/crm_telephony_agent.json msgid "Mobile No." msgstr "Mobilfunknummer." @@ -3623,10 +3623,10 @@ msgstr "" msgid "Mobile no" msgstr "" -#. Option for the 'Weekly Off' (Select) field in DocType 'CRM Holiday List' -#. Option for the 'Workday' (Select) field in DocType 'CRM Service Day' -#: crm/fcrm/doctype/crm_holiday_list/crm_holiday_list.json -#: crm/fcrm/doctype/crm_service_day/crm_service_day.json +#. Option for the 'Weekly Off' (Select) field in PageType 'CRM Holiday List' +#. Option for the 'Workday' (Select) field in PageType 'CRM Service Day' +#: crm/fcrm/pagetype/crm_holiday_list/crm_holiday_list.json +#: crm/fcrm/pagetype/crm_service_day/crm_service_day.json msgid "Monday" msgstr "Montag" @@ -3658,12 +3658,12 @@ msgstr "Auf vorherige Registerkarte verschieben" msgid "My Open Deals" msgstr "" -#. Label of the title (Data) field in DocType 'CRM Dashboard' -#. Label of the name1 (Data) field in DocType 'CRM Dropdown Item' -#. Label of the brand_name (Data) field in DocType 'FCRM Settings' -#: crm/fcrm/doctype/crm_dashboard/crm_dashboard.json -#: crm/fcrm/doctype/crm_dropdown_item/crm_dropdown_item.json -#: crm/fcrm/doctype/fcrm_settings/fcrm_settings.json +#. Label of the title (Data) field in PageType 'CRM Dashboard' +#. Label of the name1 (Data) field in PageType 'CRM Dropdown Item' +#. Label of the brand_name (Data) field in PageType 'FCRM Settings' +#: crm/fcrm/pagetype/crm_dashboard/crm_dashboard.json +#: crm/fcrm/pagetype/crm_dropdown_item/crm_dropdown_item.json +#: crm/fcrm/pagetype/fcrm_settings/fcrm_settings.json #: frontend/src/components/Settings/AssignmentRules/AssignmentRuleView.vue:51 #: frontend/src/components/Settings/AssignmentRules/AssignmentRuleView.vue:52 #: frontend/src/components/Settings/EmailTemplate/EditEmailTemplate.vue:39 @@ -3680,10 +3680,10 @@ msgstr "Name" msgid "Name is required" msgstr "" -#. Label of the naming_series (Select) field in DocType 'CRM Deal' -#. Label of the naming_series (Select) field in DocType 'CRM Product' -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_product/crm_product.json +#. Label of the naming_series (Select) field in PageType 'CRM Deal' +#. Label of the naming_series (Select) field in PageType 'CRM Product' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_product/crm_product.json msgid "Naming Series" msgstr "Nummernkreis" @@ -3691,15 +3691,15 @@ msgstr "Nummernkreis" msgid "Nested conditions" msgstr "" -#. Label of the net_amount (Currency) field in DocType 'CRM Products' -#: crm/fcrm/doctype/crm_products/crm_products.json +#. Label of the net_amount (Currency) field in PageType 'CRM Products' +#: crm/fcrm/pagetype/crm_products/crm_products.json msgid "Net Amount" msgstr "Nettobetrag" -#. Label of the net_total (Currency) field in DocType 'CRM Deal' -#. Label of the net_total (Currency) field in DocType 'CRM Lead' -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_lead/crm_lead.json +#. Label of the net_total (Currency) field in PageType 'CRM Deal' +#. Label of the net_total (Currency) field in PageType 'CRM Lead' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_lead/crm_lead.json msgid "Net Total" msgstr "Nettosumme" @@ -3814,8 +3814,8 @@ msgstr "Nächster Monat" msgid "Next Quarter" msgstr "Nächstes Quartal" -#. Label of the next_step (Data) field in DocType 'CRM Deal' -#: crm/fcrm/doctype/crm_deal/crm_deal.json +#. Label of the next_step (Data) field in PageType 'CRM Deal' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json msgid "Next Step" msgstr "" @@ -3831,8 +3831,8 @@ msgstr "Nächstes Jahr" msgid "No" msgstr "Nein" -#. Option for the 'Status' (Select) field in DocType 'CRM Call Log' -#: crm/fcrm/doctype/crm_call_log/crm_call_log.json +#. Option for the 'Status' (Select) field in PageType 'CRM Call Log' +#: crm/fcrm/pagetype/crm_call_log/crm_call_log.json msgid "No Answer" msgstr "Keine Antwort" @@ -3930,12 +3930,12 @@ msgstr "" msgid "No {0} Found" msgstr "Kein {0} gefunden" -#. Label of the no_of_employees (Select) field in DocType 'CRM Deal' -#. Label of the no_of_employees (Select) field in DocType 'CRM Lead' -#. Label of the no_of_employees (Select) field in DocType 'CRM Organization' -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_lead/crm_lead.json -#: crm/fcrm/doctype/crm_organization/crm_organization.json +#. Label of the no_of_employees (Select) field in PageType 'CRM Deal' +#. Label of the no_of_employees (Select) field in PageType 'CRM Lead' +#. Label of the no_of_employees (Select) field in PageType 'CRM Organization' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_lead/crm_lead.json +#: crm/fcrm/pagetype/crm_organization/crm_organization.json msgid "No. of Employees" msgstr "Anzahl Mitarbeiter" @@ -3981,24 +3981,24 @@ msgstr "Nicht wie" msgid "Not Saved" msgstr "Nicht gespeichert" -#: crm/fcrm/doctype/crm_deal/crm_deal.py:272 +#: crm/fcrm/pagetype/crm_deal/crm_deal.py:272 msgid "Not allowed to add contact to Deal" msgstr "" -#: crm/fcrm/doctype/crm_lead/crm_lead.py:408 +#: crm/fcrm/pagetype/crm_lead/crm_lead.py:408 msgid "Not allowed to convert Lead to Deal" msgstr "" -#: crm/fcrm/doctype/crm_deal/crm_deal.py:283 +#: crm/fcrm/pagetype/crm_deal/crm_deal.py:283 msgid "Not allowed to remove contact from Deal" msgstr "" -#: crm/fcrm/doctype/crm_deal/crm_deal.py:294 +#: crm/fcrm/pagetype/crm_deal/crm_deal.py:294 msgid "Not allowed to set primary contact for Deal" msgstr "" -#. Label of the note (Link) field in DocType 'CRM Call Log' -#: crm/fcrm/doctype/crm_call_log/crm_call_log.json +#. Label of the note (Link) field in PageType 'CRM Call Log' +#: crm/fcrm/pagetype/crm_call_log/crm_call_log.json #: frontend/src/components/Layouts/AppSidebar.vue:554 msgid "Note" msgstr "Anmerkung" @@ -4017,21 +4017,21 @@ msgstr "" msgid "Notification" msgstr "Benachrichtigung" -#. Label of the notification_text (Text) field in DocType 'CRM Notification' -#: crm/fcrm/doctype/crm_notification/crm_notification.json +#. Label of the notification_text (Text) field in PageType 'CRM Notification' +#: crm/fcrm/pagetype/crm_notification/crm_notification.json msgid "Notification Text" msgstr "" -#. Label of the notification_type_doc (Dynamic Link) field in DocType 'CRM +#. Label of the notification_type_pg (Dynamic Link) field in PageType 'CRM #. Notification' -#: crm/fcrm/doctype/crm_notification/crm_notification.json -msgid "Notification Type Doc" +#: crm/fcrm/pagetype/crm_notification/crm_notification.json +msgid "Notification Type Pg" msgstr "" -#. Label of the notification_type_doctype (Link) field in DocType 'CRM +#. Label of the notification_type_pagetype (Link) field in PageType 'CRM #. Notification' -#: crm/fcrm/doctype/crm_notification/crm_notification.json -msgid "Notification Type Doctype" +#: crm/fcrm/pagetype/crm_notification/crm_notification.json +msgid "Notification Type Pagetype" msgstr "" #: frontend/src/components/Layouts/AppSidebar.vue:13 @@ -4041,8 +4041,8 @@ msgstr "" msgid "Notifications" msgstr "Benachrichtigungen" -#. Label of the number (Data) field in DocType 'CRM Telephony Phone' -#: crm/fcrm/doctype/crm_telephony_phone/crm_telephony_phone.json +#. Label of the number (Data) field in PageType 'CRM Telephony Phone' +#: crm/fcrm/pagetype/crm_telephony_phone/crm_telephony_phone.json msgid "Number" msgstr "Nummer" @@ -4064,18 +4064,18 @@ msgstr "" msgid "Old Condition" msgstr "" -#. Label of the old_parent (Link) field in DocType 'CRM Territory' -#: crm/fcrm/doctype/crm_territory/crm_territory.json +#. Label of the old_parent (Link) field in PageType 'CRM Territory' +#: crm/fcrm/pagetype/crm_territory/crm_territory.json msgid "Old Parent" msgstr "Alte übergeordnetes Element" -#. Option for the 'Type' (Select) field in DocType 'CRM Deal Status' -#: crm/fcrm/doctype/crm_deal_status/crm_deal_status.json +#. Option for the 'Type' (Select) field in PageType 'CRM Deal Status' +#: crm/fcrm/pagetype/crm_deal_status/crm_deal_status.json msgid "On Hold" msgstr "Zurückgestellt" -#. Option for the 'Type' (Select) field in DocType 'CRM Deal Status' -#: crm/fcrm/doctype/crm_deal_status/crm_deal_status.json +#. Option for the 'Type' (Select) field in PageType 'CRM Deal Status' +#: crm/fcrm/pagetype/crm_deal_status/crm_deal_status.json msgid "Ongoing" msgstr "" @@ -4088,13 +4088,13 @@ msgstr "" msgid "Only image files are allowed" msgstr "" -#: crm/fcrm/doctype/crm_deal/crm_deal.py:60 -#: crm/fcrm/doctype/crm_telephony_agent/crm_telephony_agent.py:23 +#: crm/fcrm/pagetype/crm_deal/crm_deal.py:60 +#: crm/fcrm/pagetype/crm_telephony_agent/crm_telephony_agent.py:23 msgid "Only one {0} can be set as primary." msgstr "Es kann nur eine {0} als primäre festgelegt werden." -#. Option for the 'Type' (Select) field in DocType 'CRM Deal Status' -#: crm/fcrm/doctype/crm_deal_status/crm_deal_status.json +#. Option for the 'Type' (Select) field in PageType 'CRM Deal Status' +#: crm/fcrm/pagetype/crm_deal_status/crm_deal_status.json msgid "Open" msgstr "Offen" @@ -4108,13 +4108,13 @@ msgstr "" msgid "Open Lead" msgstr "" -#: crm/fcrm/doctype/crm_deal/crm_deal.js:6 -#: crm/fcrm/doctype/crm_lead/crm_lead.js:6 +#: crm/fcrm/pagetype/crm_deal/crm_deal.js:6 +#: crm/fcrm/pagetype/crm_lead/crm_lead.js:6 msgid "Open in Portal" msgstr "Im Portal öffnen" -#. Label of the open_in_new_window (Check) field in DocType 'CRM Dropdown Item' -#: crm/fcrm/doctype/crm_dropdown_item/crm_dropdown_item.json +#. Label of the open_in_new_window (Check) field in PageType 'CRM Dropdown Item' +#: crm/fcrm/pagetype/crm_dropdown_item/crm_dropdown_item.json msgid "Open in new window" msgstr "In neuem Fenster öffnen" @@ -4136,17 +4136,17 @@ msgstr "Optionen" msgid "Or create leads manually" msgstr "" -#. Label of the order_by_tab (Tab Break) field in DocType 'CRM View Settings' -#. Label of the order_by (Code) field in DocType 'CRM View Settings' -#: crm/fcrm/doctype/crm_view_settings/crm_view_settings.json +#. Label of the order_by_tab (Tab Break) field in PageType 'CRM View Settings' +#. Label of the order_by (Code) field in PageType 'CRM View Settings' +#: crm/fcrm/pagetype/crm_view_settings/crm_view_settings.json msgid "Order By" msgstr "Sortieren nach" -#. Label of the organization (Link) field in DocType 'CRM Deal' -#. Label of the organization_tab (Tab Break) field in DocType 'CRM Deal' -#. Label of the organization (Data) field in DocType 'CRM Lead' -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_lead/crm_lead.json +#. Label of the organization (Link) field in PageType 'CRM Deal' +#. Label of the organization_tab (Tab Break) field in PageType 'CRM Deal' +#. Label of the organization (Data) field in PageType 'CRM Lead' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_lead/crm_lead.json #: frontend/src/components/Layouts/AppSidebar.vue:553 #: frontend/src/components/Modals/ConvertToDealModal.vue:25 #: frontend/src/pages/Contact.vue:494 frontend/src/pages/MobileContact.vue:502 @@ -4158,22 +4158,22 @@ msgstr "Sortieren nach" msgid "Organization" msgstr "Firma" -#. Label of the organization_details_section (Section Break) field in DocType +#. Label of the organization_details_section (Section Break) field in PageType #. 'CRM Deal' -#: crm/fcrm/doctype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_deal/crm_deal.json msgid "Organization Details" msgstr "Organisationsdetails" -#. Label of the organization_logo (Attach Image) field in DocType 'CRM +#. Label of the organization_logo (Attach Image) field in PageType 'CRM #. Organization' -#: crm/fcrm/doctype/crm_organization/crm_organization.json +#: crm/fcrm/pagetype/crm_organization/crm_organization.json msgid "Organization Logo" msgstr "Organisationslogo" -#. Label of the organization_name (Data) field in DocType 'CRM Deal' -#. Label of the organization_name (Data) field in DocType 'CRM Organization' -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_organization/crm_organization.json +#. Label of the organization_name (Data) field in PageType 'CRM Deal' +#. Label of the organization_name (Data) field in PageType 'CRM Organization' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_organization/crm_organization.json msgid "Organization Name" msgstr "Firmenname" @@ -4181,8 +4181,8 @@ msgstr "Firmenname" msgid "Organization logo" msgstr "Organisationslogo" -#. Label of a shortcut in the Frappe CRM Workspace -#: crm/fcrm/workspace/frappe_crm/frappe_crm.json +#. Label of a shortcut in the Jingrow CRM Workspace +#: crm/fcrm/workspace/jingrow_crm/jingrow_crm.json #: frontend/src/pages/MobileOrganization.vue:205 #: frontend/src/pages/Organization.vue:234 msgid "Organizations" @@ -4196,8 +4196,8 @@ msgstr "" msgid "Other features" msgstr "" -#. Label of the organization_tab (Tab Break) field in DocType 'CRM Lead' -#: crm/fcrm/doctype/crm_lead/crm_lead.json +#. Label of the organization_tab (Tab Break) field in PageType 'CRM Lead' +#: crm/fcrm/pagetype/crm_lead/crm_lead.json msgid "Others" msgstr "Andere" @@ -4205,13 +4205,13 @@ msgstr "Andere" msgid "Outbound Call" msgstr "Ausgehender Anruf" -#. Option for the 'Type' (Select) field in DocType 'CRM Call Log' -#: crm/fcrm/doctype/crm_call_log/crm_call_log.json +#. Option for the 'Type' (Select) field in PageType 'CRM Call Log' +#: crm/fcrm/pagetype/crm_call_log/crm_call_log.json msgid "Outgoing" msgstr "Ausgang" -#. Label of the log_owner (Link) field in DocType 'CRM Status Change Log' -#: crm/fcrm/doctype/crm_status_change_log/crm_status_change_log.json +#. Label of the log_owner (Link) field in PageType 'CRM Status Change Log' +#: crm/fcrm/pagetype/crm_status_change_log/crm_status_change_log.json msgid "Owner" msgstr "Besitzer" @@ -4219,8 +4219,8 @@ msgstr "Besitzer" msgid "Owner: {0}" msgstr "" -#. Label of the parent_crm_territory (Link) field in DocType 'CRM Territory' -#: crm/fcrm/doctype/crm_territory/crm_territory.json +#. Label of the parent_crm_territory (Link) field in PageType 'CRM Territory' +#: crm/fcrm/pagetype/crm_territory/crm_territory.json msgid "Parent CRM Territory" msgstr "Übergeordnetes CRM-Gebiet" @@ -4251,8 +4251,8 @@ msgstr "Zahlungserinnerung" msgid "Payment Reminder from Frappé - (#{{ name }})" msgstr "Zahlungserinnerung von Frappé - (#{{ name }})" -#. Option for the 'Status' (Select) field in DocType 'CRM Invitation' -#: crm/fcrm/doctype/crm_invitation/crm_invitation.json +#. Option for the 'Status' (Select) field in PageType 'CRM Invitation' +#: crm/fcrm/pagetype/crm_invitation/crm_invitation.json msgid "Pending" msgstr "Ausstehend" @@ -4264,10 +4264,10 @@ msgstr "Ausstehende Einladungen" msgid "Period" msgstr "Periode" -#. Label of the person_section (Section Break) field in DocType 'CRM Deal' -#. Label of the person_tab (Tab Break) field in DocType 'CRM Lead' -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_lead/crm_lead.json +#. Label of the person_section (Section Break) field in PageType 'CRM Deal' +#. Label of the person_tab (Tab Break) field in PageType 'CRM Lead' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_lead/crm_lead.json msgid "Person" msgstr "Person" @@ -4275,19 +4275,19 @@ msgstr "Person" msgid "Personal Settings" msgstr "" -#. Label of the phone (Data) field in DocType 'CRM Contacts' -#. Label of the phone (Data) field in DocType 'CRM Lead' -#. Option for the 'Device' (Select) field in DocType 'CRM Telephony Agent' -#: crm/fcrm/doctype/crm_contacts/crm_contacts.json -#: crm/fcrm/doctype/crm_lead/crm_lead.json -#: crm/fcrm/doctype/crm_telephony_agent/crm_telephony_agent.json +#. Label of the phone (Data) field in PageType 'CRM Contacts' +#. Label of the phone (Data) field in PageType 'CRM Lead' +#. Option for the 'Device' (Select) field in PageType 'CRM Telephony Agent' +#: crm/fcrm/pagetype/crm_contacts/crm_contacts.json +#: crm/fcrm/pagetype/crm_lead/crm_lead.json +#: crm/fcrm/pagetype/crm_telephony_agent/crm_telephony_agent.json #: frontend/src/pages/MobileOrganization.vue:495 #: frontend/src/pages/Organization.vue:516 msgid "Phone" msgstr "Telefon" -#. Label of the phone_nos (Table) field in DocType 'CRM Telephony Agent' -#: crm/fcrm/doctype/crm_telephony_agent/crm_telephony_agent.json +#. Label of the phone_nos (Table) field in PageType 'CRM Telephony Agent' +#: crm/fcrm/pagetype/crm_telephony_agent/crm_telephony_agent.json msgid "Phone Numbers" msgstr "Telefonnummern" @@ -4295,8 +4295,8 @@ msgstr "Telefonnummern" msgid "Pin View" msgstr "Ansicht anpinnen" -#. Label of the pinned (Check) field in DocType 'CRM View Settings' -#: crm/fcrm/doctype/crm_view_settings/crm_view_settings.json +#. Label of the pinned (Check) field in PageType 'CRM View Settings' +#: crm/fcrm/pagetype/crm_view_settings/crm_view_settings.json msgid "Pinned" msgstr "Angepinnt" @@ -4346,7 +4346,7 @@ msgstr "Bitte wählen Sie einen bestehenden Kontakt aus" msgid "Please select an existing organization" msgstr "Bitte wählen Sie eine bestehende Organisation aus" -#: crm/fcrm/doctype/helpdesk_crm_settings/helpdesk_crm_settings.py:126 +#: crm/fcrm/pagetype/helpdesk_crm_settings/helpdesk_crm_settings.py:126 msgid "Please set Email Address" msgstr "Bitte setzen Sie E-Mail-Adresse" @@ -4354,18 +4354,18 @@ msgstr "Bitte setzen Sie E-Mail-Adresse" msgid "Please setup Exotel intergration" msgstr "Bitte richten Sie die Exotel-Integration ein" -#: crm/fcrm/doctype/crm_deal/crm_deal.py:181 +#: crm/fcrm/pagetype/crm_deal/crm_deal.py:181 msgid "Please specify a reason for losing the deal." msgstr "" -#: crm/fcrm/doctype/crm_deal/crm_deal.py:183 +#: crm/fcrm/pagetype/crm_deal/crm_deal.py:183 msgid "Please specify the reason for losing the deal." msgstr "" -#. Label of the position (Int) field in DocType 'CRM Deal Status' -#. Label of the position (Int) field in DocType 'CRM Lead Status' -#: crm/fcrm/doctype/crm_deal_status/crm_deal_status.json -#: crm/fcrm/doctype/crm_lead_status/crm_lead_status.json +#. Label of the position (Int) field in PageType 'CRM Deal Status' +#. Label of the position (Int) field in PageType 'CRM Lead Status' +#: crm/fcrm/pagetype/crm_deal_status/crm_deal_status.json +#: crm/fcrm/pagetype/crm_lead_status/crm_lead_status.json msgid "Position" msgstr "Position" @@ -4373,18 +4373,18 @@ msgstr "Position" msgid "Primary" msgstr "Primär" -#. Label of the email (Data) field in DocType 'CRM Deal' -#: crm/fcrm/doctype/crm_deal/crm_deal.json +#. Label of the email (Data) field in PageType 'CRM Deal' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json msgid "Primary Email" msgstr "Primäre E-Mail-Adresse" -#. Label of the mobile_no (Data) field in DocType 'CRM Deal' -#: crm/fcrm/doctype/crm_deal/crm_deal.json +#. Label of the mobile_no (Data) field in PageType 'CRM Deal' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json msgid "Primary Mobile No" msgstr "" -#. Label of the phone (Data) field in DocType 'CRM Deal' -#: crm/fcrm/doctype/crm_deal/crm_deal.json +#. Label of the phone (Data) field in PageType 'CRM Deal' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json msgid "Primary Phone" msgstr "Primäre Telefonnummer" @@ -4392,57 +4392,57 @@ msgstr "Primäre Telefonnummer" msgid "Primary contact set" msgstr "" -#. Label of the priorities (Table) field in DocType 'CRM Service Level +#. Label of the priorities (Table) field in PageType 'CRM Service Level #. Agreement' -#: crm/fcrm/doctype/crm_service_level_agreement/crm_service_level_agreement.json +#: crm/fcrm/pagetype/crm_service_level_agreement/crm_service_level_agreement.json msgid "Priorities" msgstr "Prioritäten" -#. Label of the priority (Link) field in DocType 'CRM Service Level Priority' -#. Label of the priority (Select) field in DocType 'CRM Task' -#: crm/fcrm/doctype/crm_service_level_priority/crm_service_level_priority.json -#: crm/fcrm/doctype/crm_task/crm_task.json +#. Label of the priority (Link) field in PageType 'CRM Service Level Priority' +#. Label of the priority (Select) field in PageType 'CRM Task' +#: crm/fcrm/pagetype/crm_service_level_priority/crm_service_level_priority.json +#: crm/fcrm/pagetype/crm_task/crm_task.json #: frontend/src/components/Settings/AssignmentRules/AssignmentRuleView.vue:64 #: frontend/src/components/Settings/AssignmentRules/AssignmentRulesList.vue:20 msgid "Priority" msgstr "Priorität" -#. Label of the private (Check) field in DocType 'CRM Dashboard' -#: crm/fcrm/doctype/crm_dashboard/crm_dashboard.json +#. Label of the private (Check) field in PageType 'CRM Dashboard' +#: crm/fcrm/pagetype/crm_dashboard/crm_dashboard.json #: frontend/src/components/FilesUploader/FilesUploaderArea.vue:89 msgid "Private" msgstr "Privat" -#. Label of the probability (Percent) field in DocType 'CRM Deal' -#. Label of the probability (Percent) field in DocType 'CRM Deal Status' -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_deal_status/crm_deal_status.json +#. Label of the probability (Percent) field in PageType 'CRM Deal' +#. Label of the probability (Percent) field in PageType 'CRM Deal Status' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_deal_status/crm_deal_status.json msgid "Probability" msgstr "Warscheinlichkeit" -#. Label of the product_code (Link) field in DocType 'CRM Products' -#: crm/fcrm/doctype/crm_products/crm_products.json +#. Label of the product_code (Link) field in PageType 'CRM Products' +#: crm/fcrm/pagetype/crm_products/crm_products.json msgid "Product" msgstr "Produkt" -#. Label of the product_code (Data) field in DocType 'CRM Product' -#: crm/fcrm/doctype/crm_product/crm_product.json +#. Label of the product_code (Data) field in PageType 'CRM Product' +#: crm/fcrm/pagetype/crm_product/crm_product.json msgid "Product Code" msgstr "" -#. Label of the product_name (Data) field in DocType 'CRM Product' -#. Label of the product_name (Data) field in DocType 'CRM Products' -#: crm/fcrm/doctype/crm_product/crm_product.json -#: crm/fcrm/doctype/crm_products/crm_products.json +#. Label of the product_name (Data) field in PageType 'CRM Product' +#. Label of the product_name (Data) field in PageType 'CRM Products' +#: crm/fcrm/pagetype/crm_product/crm_product.json +#: crm/fcrm/pagetype/crm_products/crm_products.json msgid "Product Name" msgstr "" -#. Label of the products_tab (Tab Break) field in DocType 'CRM Deal' -#. Label of the products (Table) field in DocType 'CRM Deal' -#. Label of the products_tab (Tab Break) field in DocType 'CRM Lead' -#. Label of the products (Table) field in DocType 'CRM Lead' -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_lead/crm_lead.json +#. Label of the products_tab (Tab Break) field in PageType 'CRM Deal' +#. Label of the products (Table) field in PageType 'CRM Deal' +#. Label of the products_tab (Tab Break) field in PageType 'CRM Lead' +#. Label of the products (Table) field in PageType 'CRM Lead' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_lead/crm_lead.json msgid "Products" msgstr "Produkte" @@ -4459,8 +4459,8 @@ msgstr "Profil erfolgreich aktualisiert" msgid "Projected vs actual revenue based on deal probability" msgstr "" -#. Label of the public (Check) field in DocType 'CRM View Settings' -#: crm/fcrm/doctype/crm_view_settings/crm_view_settings.json +#. Label of the public (Check) field in PageType 'CRM View Settings' +#: crm/fcrm/pagetype/crm_view_settings/crm_view_settings.json msgid "Public" msgstr "Öffentlich" @@ -4472,23 +4472,23 @@ msgstr "Öffentliche Ansichten" msgid "Public view" msgstr "" -#. Label of the qty (Float) field in DocType 'CRM Products' -#: crm/fcrm/doctype/crm_products/crm_products.json +#. Label of the qty (Float) field in PageType 'CRM Products' +#: crm/fcrm/pagetype/crm_products/crm_products.json msgid "Quantity" msgstr "Menge" -#. Option for the 'Status' (Select) field in DocType 'CRM Call Log' -#: crm/fcrm/doctype/crm_call_log/crm_call_log.json +#. Option for the 'Status' (Select) field in PageType 'CRM Call Log' +#: crm/fcrm/pagetype/crm_call_log/crm_call_log.json msgid "Queued" msgstr "In der Warteschlange" -#. Option for the 'Type' (Select) field in DocType 'CRM Fields Layout' -#: crm/fcrm/doctype/crm_fields_layout/crm_fields_layout.json +#. Option for the 'Type' (Select) field in PageType 'CRM Fields Layout' +#: crm/fcrm/pagetype/crm_fields_layout/crm_fields_layout.json msgid "Quick Entry" msgstr "Schnelleingabe" -#. Option for the 'Type' (Select) field in DocType 'CRM Global Settings' -#: crm/fcrm/doctype/crm_global_settings/crm_global_settings.json +#. Option for the 'Type' (Select) field in PageType 'CRM Global Settings' +#: crm/fcrm/pagetype/crm_global_settings/crm_global_settings.json msgid "Quick Filters" msgstr "Schnellfilter" @@ -4500,13 +4500,13 @@ msgstr "Schnellfilter erfolgreich aktualisiert" msgid "Quick entry layout" msgstr "" -#. Label of the rate (Currency) field in DocType 'CRM Products' -#: crm/fcrm/doctype/crm_products/crm_products.json +#. Label of the rate (Currency) field in PageType 'CRM Products' +#: crm/fcrm/pagetype/crm_products/crm_products.json msgid "Rate" msgstr "Einzelpreis" -#. Label of the read (Check) field in DocType 'CRM Notification' -#: crm/fcrm/doctype/crm_notification/crm_notification.json +#. Label of the read (Check) field in PageType 'CRM Notification' +#: crm/fcrm/pagetype/crm_notification/crm_notification.json msgid "Read" msgstr "Lesen" @@ -4514,48 +4514,48 @@ msgstr "Lesen" msgid "Reason" msgstr "Grund" -#. Label of the record_calls (Check) field in DocType 'CRM Twilio Settings' -#: crm/fcrm/doctype/crm_twilio_settings/crm_twilio_settings.json +#. Label of the record_calls (Check) field in PageType 'CRM Twilio Settings' +#: crm/fcrm/pagetype/crm_twilio_settings/crm_twilio_settings.json msgid "Record Calls" msgstr "Anrufe aufzeichnen" -#. Label of the record_call (Check) field in DocType 'CRM Exotel Settings' -#: crm/fcrm/doctype/crm_exotel_settings/crm_exotel_settings.json +#. Label of the record_call (Check) field in PageType 'CRM Exotel Settings' +#: crm/fcrm/pagetype/crm_exotel_settings/crm_exotel_settings.json msgid "Record Outgoing Calls" msgstr "Ausgehende Anrufe aufzeichnen" -#. Label of the recording_url (Data) field in DocType 'CRM Call Log' -#: crm/fcrm/doctype/crm_call_log/crm_call_log.json +#. Label of the recording_url (Data) field in PageType 'CRM Call Log' +#: crm/fcrm/pagetype/crm_call_log/crm_call_log.json msgid "Recording URL" msgstr "Aufzeichnungs-URL" -#. Label of the reference_name (Dynamic Link) field in DocType 'CRM +#. Label of the reference_name (Dynamic Link) field in PageType 'CRM #. Notification' -#. Label of the reference_docname (Dynamic Link) field in DocType 'CRM Task' -#. Label of the reference_docname (Dynamic Link) field in DocType 'FCRM Note' -#: crm/fcrm/doctype/crm_notification/crm_notification.json -#: crm/fcrm/doctype/crm_task/crm_task.json -#: crm/fcrm/doctype/fcrm_note/fcrm_note.json -msgid "Reference Doc" +#. Label of the reference_docname (Dynamic Link) field in PageType 'CRM Task' +#. Label of the reference_docname (Dynamic Link) field in PageType 'FCRM Note' +#: crm/fcrm/pagetype/crm_notification/crm_notification.json +#: crm/fcrm/pagetype/crm_task/crm_task.json +#: crm/fcrm/pagetype/fcrm_note/fcrm_note.json +msgid "Reference Pg" msgstr "Referenzdokument" -#. Label of the reference_doctype (Link) field in DocType 'CRM Notification' -#: crm/fcrm/doctype/crm_notification/crm_notification.json -msgid "Reference Doctype" +#. Label of the reference_pagetype (Link) field in PageType 'CRM Notification' +#: crm/fcrm/pagetype/crm_notification/crm_notification.json +msgid "Reference Pagetype" msgstr "Referenztyp" -#. Label of the reference_doctype (Link) field in DocType 'CRM Call Log' -#. Label of the reference_doctype (Link) field in DocType 'CRM Task' -#. Label of the reference_doctype (Link) field in DocType 'FCRM Note' -#: crm/fcrm/doctype/crm_call_log/crm_call_log.json -#: crm/fcrm/doctype/crm_task/crm_task.json -#: crm/fcrm/doctype/fcrm_note/fcrm_note.json +#. Label of the reference_pagetype (Link) field in PageType 'CRM Call Log' +#. Label of the reference_pagetype (Link) field in PageType 'CRM Task' +#. Label of the reference_pagetype (Link) field in PageType 'FCRM Note' +#: crm/fcrm/pagetype/crm_call_log/crm_call_log.json +#: crm/fcrm/pagetype/crm_task/crm_task.json +#: crm/fcrm/pagetype/fcrm_note/fcrm_note.json msgid "Reference Document Type" msgstr "Referenz-Dokumententyp" -#. Label of the reference_docname (Dynamic Link) field in DocType 'CRM Call +#. Label of the reference_docname (Dynamic Link) field in PageType 'CRM Call #. Log' -#: crm/fcrm/doctype/crm_call_log/crm_call_log.json +#: crm/fcrm/pagetype/crm_call_log/crm_call_log.json msgid "Reference Name" msgstr "Referenzname" @@ -4625,8 +4625,8 @@ msgstr "Allen antworten" msgid "Report an Issue" msgstr "Ein Problem melden" -#. Option for the 'Type' (Select) field in DocType 'CRM Fields Layout' -#: crm/fcrm/doctype/crm_fields_layout/crm_fields_layout.json +#. Option for the 'Type' (Select) field in PageType 'CRM Fields Layout' +#: crm/fcrm/pagetype/crm_fields_layout/crm_fields_layout.json msgid "Required Fields" msgstr "" @@ -4642,7 +4642,7 @@ msgstr "Zurücksetzen" msgid "Reset Changes" msgstr "Änderungen zurücksetzen" -#: crm/fcrm/doctype/erpnext_crm_settings/erpnext_crm_settings.js:7 +#: crm/fcrm/pagetype/erpnext_crm_settings/erpnext_crm_settings.js:7 msgid "Reset ERPNext Form Script" msgstr "" @@ -4654,35 +4654,35 @@ msgstr "" msgid "Reset to default" msgstr "Auf Standard zurücksetzen" -#. Label of the response_by (Datetime) field in DocType 'CRM Deal' -#. Label of the response_by (Datetime) field in DocType 'CRM Lead' -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_lead/crm_lead.json +#. Label of the response_by (Datetime) field in PageType 'CRM Deal' +#. Label of the response_by (Datetime) field in PageType 'CRM Lead' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_lead/crm_lead.json msgid "Response By" msgstr "Antwort von" -#. Label of the response_details_section (Section Break) field in DocType 'CRM +#. Label of the response_details_section (Section Break) field in PageType 'CRM #. Deal' -#. Label of the response_details_section (Section Break) field in DocType 'CRM +#. Label of the response_details_section (Section Break) field in PageType 'CRM #. Lead' -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_lead/crm_lead.json +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_lead/crm_lead.json msgid "Response Details" msgstr "Antwortdetails" -#. Label of the section_break_ufaf (Section Break) field in DocType 'CRM +#. Label of the section_break_ufaf (Section Break) field in PageType 'CRM #. Service Level Agreement' -#: crm/fcrm/doctype/crm_service_level_agreement/crm_service_level_agreement.json +#: crm/fcrm/pagetype/crm_service_level_agreement/crm_service_level_agreement.json msgid "Response and Follow Up" msgstr "" -#: crm/fcrm/doctype/fcrm_settings/fcrm_settings.js:14 +#: crm/fcrm/pagetype/fcrm_settings/fcrm_settings.js:14 msgid "Restore" msgstr "Wiederherstellen" -#. Label of the restore_defaults (Button) field in DocType 'FCRM Settings' -#: crm/fcrm/doctype/fcrm_settings/fcrm_settings.js:13 -#: crm/fcrm/doctype/fcrm_settings/fcrm_settings.json +#. Label of the restore_defaults (Button) field in PageType 'FCRM Settings' +#: crm/fcrm/pagetype/fcrm_settings/fcrm_settings.js:13 +#: crm/fcrm/pagetype/fcrm_settings/fcrm_settings.json msgid "Restore Defaults" msgstr "" @@ -4699,13 +4699,13 @@ msgstr "Umsatz" msgid "Rich Text" msgstr "Rich-Text" -#. Label of the rgt (Int) field in DocType 'CRM Territory' -#: crm/fcrm/doctype/crm_territory/crm_territory.json +#. Label of the rgt (Int) field in PageType 'CRM Territory' +#: crm/fcrm/pagetype/crm_territory/crm_territory.json msgid "Right" msgstr "Rechts" -#. Option for the 'Status' (Select) field in DocType 'CRM Call Log' -#: crm/fcrm/doctype/crm_call_log/crm_call_log.json +#. Option for the 'Status' (Select) field in PageType 'CRM Call Log' +#: crm/fcrm/pagetype/crm_call_log/crm_call_log.json msgid "Ringing" msgstr "Es klingelt" @@ -4714,55 +4714,55 @@ msgstr "Es klingelt" msgid "Ringing..." msgstr "Es klingelt..." -#. Label of the role (Select) field in DocType 'CRM Invitation' -#: crm/fcrm/doctype/crm_invitation/crm_invitation.json +#. Label of the role (Select) field in PageType 'CRM Invitation' +#: crm/fcrm/pagetype/crm_invitation/crm_invitation.json #: frontend/src/components/Modals/AddExistingUserModal.vue:46 msgid "Role" msgstr "Rolle" -#. Option for the 'Type' (Select) field in DocType 'CRM Dropdown Item' -#. Label of the route (Data) field in DocType 'CRM Dropdown Item' -#: crm/fcrm/doctype/crm_dropdown_item/crm_dropdown_item.json +#. Option for the 'Type' (Select) field in PageType 'CRM Dropdown Item' +#. Label of the route (Data) field in PageType 'CRM Dropdown Item' +#: crm/fcrm/pagetype/crm_dropdown_item/crm_dropdown_item.json msgid "Route" msgstr "Pfad" -#. Label of the route_name (Data) field in DocType 'CRM View Settings' -#: crm/fcrm/doctype/crm_view_settings/crm_view_settings.json +#. Label of the route_name (Data) field in PageType 'CRM View Settings' +#: crm/fcrm/pagetype/crm_view_settings/crm_view_settings.json msgid "Route Name" msgstr "" -#. Label of the rows (Code) field in DocType 'CRM View Settings' -#: crm/fcrm/doctype/crm_view_settings/crm_view_settings.json +#. Label of the rows (Code) field in PageType 'CRM View Settings' +#: crm/fcrm/pagetype/crm_view_settings/crm_view_settings.json msgid "Rows" msgstr "Zeilen" -#. Label of the sla_tab (Tab Break) field in DocType 'CRM Deal' -#. Label of the sla (Link) field in DocType 'CRM Deal' -#. Label of the sla_tab (Tab Break) field in DocType 'CRM Lead' -#. Label of the sla (Link) field in DocType 'CRM Lead' -#. Label of a shortcut in the Frappe CRM Workspace -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_lead/crm_lead.json -#: crm/fcrm/workspace/frappe_crm/frappe_crm.json +#. Label of the sla_tab (Tab Break) field in PageType 'CRM Deal' +#. Label of the sla (Link) field in PageType 'CRM Deal' +#. Label of the sla_tab (Tab Break) field in PageType 'CRM Lead' +#. Label of the sla (Link) field in PageType 'CRM Lead' +#. Label of a shortcut in the Jingrow CRM Workspace +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_lead/crm_lead.json +#: crm/fcrm/workspace/jingrow_crm/jingrow_crm.json msgid "SLA" msgstr "" -#. Label of the sla_creation (Datetime) field in DocType 'CRM Deal' -#. Label of the sla_creation (Datetime) field in DocType 'CRM Lead' -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_lead/crm_lead.json +#. Label of the sla_creation (Datetime) field in PageType 'CRM Deal' +#. Label of the sla_creation (Datetime) field in PageType 'CRM Lead' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_lead/crm_lead.json msgid "SLA Creation" msgstr "" -#. Label of the sla_name (Data) field in DocType 'CRM Service Level Agreement' -#: crm/fcrm/doctype/crm_service_level_agreement/crm_service_level_agreement.json +#. Label of the sla_name (Data) field in PageType 'CRM Service Level Agreement' +#: crm/fcrm/pagetype/crm_service_level_agreement/crm_service_level_agreement.json msgid "SLA Name" msgstr "" -#. Label of the sla_status (Select) field in DocType 'CRM Deal' -#. Label of the sla_status (Select) field in DocType 'CRM Lead' -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_lead/crm_lead.json +#. Label of the sla_status (Select) field in PageType 'CRM Deal' +#. Label of the sla_status (Select) field in PageType 'CRM Lead' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_lead/crm_lead.json msgid "SLA Status" msgstr "" @@ -4771,57 +4771,57 @@ msgid "SUBJECT" msgstr "BETREFF" #. Name of a role -#. Option for the 'Role' (Select) field in DocType 'CRM Invitation' -#: crm/fcrm/doctype/crm_call_log/crm_call_log.json -#: crm/fcrm/doctype/crm_communication_status/crm_communication_status.json -#: crm/fcrm/doctype/crm_dashboard/crm_dashboard.json -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_deal_status/crm_deal_status.json -#: crm/fcrm/doctype/crm_exotel_settings/crm_exotel_settings.json -#: crm/fcrm/doctype/crm_form_script/crm_form_script.json -#: crm/fcrm/doctype/crm_global_settings/crm_global_settings.json -#: crm/fcrm/doctype/crm_holiday_list/crm_holiday_list.json -#: crm/fcrm/doctype/crm_industry/crm_industry.json -#: crm/fcrm/doctype/crm_invitation/crm_invitation.json -#: crm/fcrm/doctype/crm_lead/crm_lead.json -#: crm/fcrm/doctype/crm_lead_source/crm_lead_source.json -#: crm/fcrm/doctype/crm_lead_status/crm_lead_status.json -#: crm/fcrm/doctype/crm_lost_reason/crm_lost_reason.json -#: crm/fcrm/doctype/crm_notification/crm_notification.json -#: crm/fcrm/doctype/crm_organization/crm_organization.json -#: crm/fcrm/doctype/crm_service_level_agreement/crm_service_level_agreement.json -#: crm/fcrm/doctype/crm_task/crm_task.json -#: crm/fcrm/doctype/crm_territory/crm_territory.json -#: crm/fcrm/doctype/crm_twilio_settings/crm_twilio_settings.json -#: crm/fcrm/doctype/crm_view_settings/crm_view_settings.json -#: crm/fcrm/doctype/erpnext_crm_settings/erpnext_crm_settings.json -#: crm/fcrm/doctype/fcrm_note/fcrm_note.json -#: crm/fcrm/doctype/fcrm_settings/fcrm_settings.json -#: crm/fcrm/doctype/helpdesk_crm_settings/helpdesk_crm_settings.json +#. Option for the 'Role' (Select) field in PageType 'CRM Invitation' +#: crm/fcrm/pagetype/crm_call_log/crm_call_log.json +#: crm/fcrm/pagetype/crm_communication_status/crm_communication_status.json +#: crm/fcrm/pagetype/crm_dashboard/crm_dashboard.json +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_deal_status/crm_deal_status.json +#: crm/fcrm/pagetype/crm_exotel_settings/crm_exotel_settings.json +#: crm/fcrm/pagetype/crm_form_script/crm_form_script.json +#: crm/fcrm/pagetype/crm_global_settings/crm_global_settings.json +#: crm/fcrm/pagetype/crm_holiday_list/crm_holiday_list.json +#: crm/fcrm/pagetype/crm_industry/crm_industry.json +#: crm/fcrm/pagetype/crm_invitation/crm_invitation.json +#: crm/fcrm/pagetype/crm_lead/crm_lead.json +#: crm/fcrm/pagetype/crm_lead_source/crm_lead_source.json +#: crm/fcrm/pagetype/crm_lead_status/crm_lead_status.json +#: crm/fcrm/pagetype/crm_lost_reason/crm_lost_reason.json +#: crm/fcrm/pagetype/crm_notification/crm_notification.json +#: crm/fcrm/pagetype/crm_organization/crm_organization.json +#: crm/fcrm/pagetype/crm_service_level_agreement/crm_service_level_agreement.json +#: crm/fcrm/pagetype/crm_task/crm_task.json +#: crm/fcrm/pagetype/crm_territory/crm_territory.json +#: crm/fcrm/pagetype/crm_twilio_settings/crm_twilio_settings.json +#: crm/fcrm/pagetype/crm_view_settings/crm_view_settings.json +#: crm/fcrm/pagetype/erpnext_crm_settings/erpnext_crm_settings.json +#: crm/fcrm/pagetype/fcrm_note/fcrm_note.json +#: crm/fcrm/pagetype/fcrm_settings/fcrm_settings.json +#: crm/fcrm/pagetype/helpdesk_crm_settings/helpdesk_crm_settings.json msgid "Sales Manager" msgstr "Vertriebsleiter" #. Name of a role -#. Option for the 'Role' (Select) field in DocType 'CRM Invitation' -#: crm/fcrm/doctype/crm_call_log/crm_call_log.json -#: crm/fcrm/doctype/crm_communication_status/crm_communication_status.json -#: crm/fcrm/doctype/crm_dashboard/crm_dashboard.json -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_deal_status/crm_deal_status.json -#: crm/fcrm/doctype/crm_global_settings/crm_global_settings.json -#: crm/fcrm/doctype/crm_holiday_list/crm_holiday_list.json -#: crm/fcrm/doctype/crm_industry/crm_industry.json -#: crm/fcrm/doctype/crm_invitation/crm_invitation.json -#: crm/fcrm/doctype/crm_lead/crm_lead.json -#: crm/fcrm/doctype/crm_lead_source/crm_lead_source.json -#: crm/fcrm/doctype/crm_lead_status/crm_lead_status.json -#: crm/fcrm/doctype/crm_lost_reason/crm_lost_reason.json -#: crm/fcrm/doctype/crm_notification/crm_notification.json -#: crm/fcrm/doctype/crm_organization/crm_organization.json -#: crm/fcrm/doctype/crm_task/crm_task.json -#: crm/fcrm/doctype/crm_territory/crm_territory.json -#: crm/fcrm/doctype/crm_view_settings/crm_view_settings.json -#: crm/fcrm/doctype/fcrm_note/fcrm_note.json +#. Option for the 'Role' (Select) field in PageType 'CRM Invitation' +#: crm/fcrm/pagetype/crm_call_log/crm_call_log.json +#: crm/fcrm/pagetype/crm_communication_status/crm_communication_status.json +#: crm/fcrm/pagetype/crm_dashboard/crm_dashboard.json +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_deal_status/crm_deal_status.json +#: crm/fcrm/pagetype/crm_global_settings/crm_global_settings.json +#: crm/fcrm/pagetype/crm_holiday_list/crm_holiday_list.json +#: crm/fcrm/pagetype/crm_industry/crm_industry.json +#: crm/fcrm/pagetype/crm_invitation/crm_invitation.json +#: crm/fcrm/pagetype/crm_lead/crm_lead.json +#: crm/fcrm/pagetype/crm_lead_source/crm_lead_source.json +#: crm/fcrm/pagetype/crm_lead_status/crm_lead_status.json +#: crm/fcrm/pagetype/crm_lost_reason/crm_lost_reason.json +#: crm/fcrm/pagetype/crm_notification/crm_notification.json +#: crm/fcrm/pagetype/crm_organization/crm_organization.json +#: crm/fcrm/pagetype/crm_task/crm_task.json +#: crm/fcrm/pagetype/crm_territory/crm_territory.json +#: crm/fcrm/pagetype/crm_view_settings/crm_view_settings.json +#: crm/fcrm/pagetype/fcrm_note/fcrm_note.json #: frontend/src/components/Modals/AddExistingUserModal.vue:92 #: frontend/src/components/Settings/InviteUserPage.vue:156 #: frontend/src/components/Settings/InviteUserPage.vue:163 @@ -4845,17 +4845,17 @@ msgstr "" msgid "Salesperson" msgstr "" -#. Label of the salutation (Link) field in DocType 'CRM Deal' -#. Label of the salutation (Link) field in DocType 'CRM Lead' -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_lead/crm_lead.json +#. Label of the salutation (Link) field in PageType 'CRM Deal' +#. Label of the salutation (Link) field in PageType 'CRM Lead' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_lead/crm_lead.json msgid "Salutation" msgstr "Anrede" -#. Option for the 'Weekly Off' (Select) field in DocType 'CRM Holiday List' -#. Option for the 'Workday' (Select) field in DocType 'CRM Service Day' -#: crm/fcrm/doctype/crm_holiday_list/crm_holiday_list.json -#: crm/fcrm/doctype/crm_service_day/crm_service_day.json +#. Option for the 'Weekly Off' (Select) field in PageType 'CRM Holiday List' +#. Option for the 'Workday' (Select) field in PageType 'CRM Service Day' +#: crm/fcrm/pagetype/crm_holiday_list/crm_holiday_list.json +#: crm/fcrm/pagetype/crm_service_day/crm_service_day.json msgid "Saturday" msgstr "Samstag" @@ -4904,8 +4904,8 @@ msgstr "" msgid "Schedule an event" msgstr "" -#. Label of the script (Code) field in DocType 'CRM Form Script' -#: crm/fcrm/doctype/crm_form_script/crm_form_script.json +#. Label of the script (Code) field in PageType 'CRM Form Script' +#: crm/fcrm/pagetype/crm_form_script/crm_form_script.json msgid "Script" msgstr "Skript" @@ -4973,18 +4973,18 @@ msgstr "" msgid "Send invites to" msgstr "" -#. Option for the 'Type' (Select) field in DocType 'CRM Dropdown Item' -#: crm/fcrm/doctype/crm_dropdown_item/crm_dropdown_item.json +#. Option for the 'Type' (Select) field in PageType 'CRM Dropdown Item' +#: crm/fcrm/pagetype/crm_dropdown_item/crm_dropdown_item.json msgid "Separator" msgstr "Trenner" -#. Label of the naming_series (Select) field in DocType 'CRM Lead' -#: crm/fcrm/doctype/crm_lead/crm_lead.json +#. Label of the naming_series (Select) field in PageType 'CRM Lead' +#: crm/fcrm/pagetype/crm_lead/crm_lead.json msgid "Series" msgstr "Nummernkreis" -#. Label of the service_provider (Select) field in DocType 'FCRM Settings' -#: crm/fcrm/doctype/fcrm_settings/fcrm_settings.json +#. Label of the service_provider (Select) field in PageType 'FCRM Settings' +#: crm/fcrm/pagetype/fcrm_settings/fcrm_settings.json msgid "Service Provider" msgstr "Anbieter" @@ -5029,7 +5029,7 @@ msgid "Setting up" msgstr "" #: frontend/src/components/Settings/emailConfig.js:145 -msgid "Setting up Frappe Mail requires you to have an API key and API Secret of your email account. Read more " +msgid "Setting up Jingrow Mail requires you to have an API key and API Secret of your email account. Read more " msgstr "" #: frontend/src/components/Settings/emailConfig.js:97 @@ -5062,8 +5062,8 @@ msgid "Setting up Yandex requires you to enable two factor authentication\n" "\t\t and app specific passwords. Read more " msgstr "" -#. Label of the defaults_tab (Tab Break) field in DocType 'FCRM Settings' -#: crm/fcrm/doctype/fcrm_settings/fcrm_settings.json +#. Label of the defaults_tab (Tab Break) field in PageType 'FCRM Settings' +#: crm/fcrm/pagetype/fcrm_settings/fcrm_settings.json #: frontend/src/components/Layouts/AppSidebar.vue:537 #: frontend/src/components/Settings/Settings.vue:12 msgid "Settings" @@ -5073,7 +5073,7 @@ msgstr "Einstellungen" msgid "Setup Email" msgstr "" -#: crm/fcrm/doctype/fcrm_settings/fcrm_settings.py:199 +#: crm/fcrm/pagetype/fcrm_settings/fcrm_settings.py:199 msgid "Setup the Exchange Rate Provider as 'Exchangerate Host' in settings, as default provider does not support currency conversion for {0} to {1}." msgstr "" @@ -5108,20 +5108,20 @@ msgstr "" msgid "Show preview" msgstr "Vorschau anzeigen" -#. Option for the 'Type' (Select) field in DocType 'CRM Fields Layout' -#: crm/fcrm/doctype/crm_fields_layout/crm_fields_layout.json +#. Option for the 'Type' (Select) field in PageType 'CRM Fields Layout' +#: crm/fcrm/pagetype/crm_fields_layout/crm_fields_layout.json msgid "Side Panel" msgstr "Seitenleiste" -#. Option for the 'Type' (Select) field in DocType 'CRM Global Settings' -#: crm/fcrm/doctype/crm_global_settings/crm_global_settings.json +#. Option for the 'Type' (Select) field in PageType 'CRM Global Settings' +#: crm/fcrm/pagetype/crm_global_settings/crm_global_settings.json msgid "Sidebar Items" msgstr "Elemente der Seitenleiste" -#. Description of the 'Condition' (Code) field in DocType 'CRM Service Level +#. Description of the 'Condition' (Code) field in PageType 'CRM Service Level #. Agreement' -#: crm/fcrm/doctype/crm_service_level_agreement/crm_service_level_agreement.json -msgid "Simple Python Expression, Example: doc.status == 'Open' and doc.lead_source == 'Ads'" +#: crm/fcrm/pagetype/crm_service_level_agreement/crm_service_level_agreement.json +msgid "Simple Python Expression, Example: pg.status == 'Open' and pg.lead_source == 'Ads'" msgstr "" #: frontend/src/components/AssignTo.vue:83 @@ -5145,16 +5145,16 @@ msgstr "" msgid "Sort" msgstr "Sortieren" -#. Label of the source (Link) field in DocType 'CRM Deal' -#. Label of the source (Link) field in DocType 'CRM Lead' -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_lead/crm_lead.json +#. Label of the source (Link) field in PageType 'CRM Deal' +#. Label of the source (Link) field in PageType 'CRM Lead' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_lead/crm_lead.json #: frontend/src/components/Modals/EditValueModal.vue:10 msgid "Source" msgstr "Quelle" -#. Label of the source_name (Data) field in DocType 'CRM Lead Source' -#: crm/fcrm/doctype/crm_lead_source/crm_lead_source.json +#. Label of the source_name (Data) field in PageType 'CRM Lead Source' +#: crm/fcrm/pagetype/crm_lead_source/crm_lead_source.json msgid "Source Name" msgstr "Quellenname" @@ -5167,12 +5167,12 @@ msgstr "Abstandshalter" msgid "Stage" msgstr "Stufe" -#: crm/fcrm/doctype/crm_form_script/crm_form_script.js:15 +#: crm/fcrm/pagetype/crm_form_script/crm_form_script.js:15 msgid "Standard Form Scripts can not be modified, duplicate the Form Script instead." msgstr "" -#. Label of the standard_rate (Currency) field in DocType 'CRM Product' -#: crm/fcrm/doctype/crm_product/crm_product.json +#. Label of the standard_rate (Currency) field in PageType 'CRM Product' +#: crm/fcrm/pagetype/crm_product/crm_product.json msgid "Standard Selling Rate" msgstr "Standard-Verkaufspreis" @@ -5180,18 +5180,18 @@ msgstr "Standard-Verkaufspreis" msgid "Standard Views" msgstr "Standardansichten" -#. Label of the start_date (Date) field in DocType 'CRM Service Level +#. Label of the start_date (Date) field in PageType 'CRM Service Level #. Agreement' -#. Label of the start_date (Date) field in DocType 'CRM Task' -#: crm/fcrm/doctype/crm_service_level_agreement/crm_service_level_agreement.json -#: crm/fcrm/doctype/crm_task/crm_task.json +#. Label of the start_date (Date) field in PageType 'CRM Task' +#: crm/fcrm/pagetype/crm_service_level_agreement/crm_service_level_agreement.json +#: crm/fcrm/pagetype/crm_task/crm_task.json msgid "Start Date" msgstr "Startdatum" -#. Label of the start_time (Datetime) field in DocType 'CRM Call Log' -#. Label of the start_time (Time) field in DocType 'CRM Service Day' -#: crm/fcrm/doctype/crm_call_log/crm_call_log.json -#: crm/fcrm/doctype/crm_service_day/crm_service_day.json +#. Label of the start_time (Datetime) field in PageType 'CRM Call Log' +#. Label of the start_time (Time) field in PageType 'CRM Service Day' +#: crm/fcrm/pagetype/crm_call_log/crm_call_log.json +#: crm/fcrm/pagetype/crm_service_day/crm_service_day.json #: frontend/src/components/Calendar/CalendarEventPanel.vue:234 #: frontend/src/components/Modals/EventModal.vue:103 msgid "Start Time" @@ -5205,32 +5205,32 @@ msgstr "" msgid "Start with sample 10 leads" msgstr "" -#. Label of the status (Select) field in DocType 'CRM Call Log' -#. Label of the status (Data) field in DocType 'CRM Communication Status' -#. Label of the status (Link) field in DocType 'CRM Deal' -#. Label of the deal_status (Data) field in DocType 'CRM Deal Status' -#. Label of the status (Select) field in DocType 'CRM Invitation' -#. Label of the status (Link) field in DocType 'CRM Lead' -#. Label of the lead_status (Data) field in DocType 'CRM Lead Status' -#. Label of the status (Select) field in DocType 'CRM Task' -#: crm/fcrm/doctype/crm_call_log/crm_call_log.json -#: crm/fcrm/doctype/crm_communication_status/crm_communication_status.json -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_deal_status/crm_deal_status.json -#: crm/fcrm/doctype/crm_invitation/crm_invitation.json -#: crm/fcrm/doctype/crm_lead/crm_lead.json -#: crm/fcrm/doctype/crm_lead_status/crm_lead_status.json -#: crm/fcrm/doctype/crm_task/crm_task.json frontend/src/pages/Contact.vue:505 +#. Label of the status (Select) field in PageType 'CRM Call Log' +#. Label of the status (Data) field in PageType 'CRM Communication Status' +#. Label of the status (Link) field in PageType 'CRM Deal' +#. Label of the deal_status (Data) field in PageType 'CRM Deal Status' +#. Label of the status (Select) field in PageType 'CRM Invitation' +#. Label of the status (Link) field in PageType 'CRM Lead' +#. Label of the lead_status (Data) field in PageType 'CRM Lead Status' +#. Label of the status (Select) field in PageType 'CRM Task' +#: crm/fcrm/pagetype/crm_call_log/crm_call_log.json +#: crm/fcrm/pagetype/crm_communication_status/crm_communication_status.json +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_deal_status/crm_deal_status.json +#: crm/fcrm/pagetype/crm_invitation/crm_invitation.json +#: crm/fcrm/pagetype/crm_lead/crm_lead.json +#: crm/fcrm/pagetype/crm_lead_status/crm_lead_status.json +#: crm/fcrm/pagetype/crm_task/crm_task.json frontend/src/pages/Contact.vue:505 #: frontend/src/pages/MobileContact.vue:513 #: frontend/src/pages/MobileOrganization.vue:457 #: frontend/src/pages/Organization.vue:478 msgid "Status" msgstr "Status" -#. Label of the status_change_log (Table) field in DocType 'CRM Deal' -#. Label of the status_change_log (Table) field in DocType 'CRM Lead' -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_lead/crm_lead.json +#. Label of the status_change_log (Table) field in PageType 'CRM Deal' +#. Label of the status_change_log (Table) field in PageType 'CRM Lead' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_lead/crm_lead.json msgid "Status Change Log" msgstr "" @@ -5239,8 +5239,8 @@ msgstr "" msgid "Status is required" msgstr "" -#. Label of the subdomain (Data) field in DocType 'CRM Exotel Settings' -#: crm/fcrm/doctype/crm_exotel_settings/crm_exotel_settings.json +#. Label of the subdomain (Data) field in PageType 'CRM Exotel Settings' +#: crm/fcrm/pagetype/crm_exotel_settings/crm_exotel_settings.json msgid "Subdomain" msgstr "Unterdomäne" @@ -5258,10 +5258,10 @@ msgstr "" msgid "Subject: {0}" msgstr "Betreff: {0}" -#. Option for the 'Weekly Off' (Select) field in DocType 'CRM Holiday List' -#. Option for the 'Workday' (Select) field in DocType 'CRM Service Day' -#: crm/fcrm/doctype/crm_holiday_list/crm_holiday_list.json -#: crm/fcrm/doctype/crm_service_day/crm_service_day.json +#. Option for the 'Weekly Off' (Select) field in PageType 'CRM Holiday List' +#. Option for the 'Workday' (Select) field in PageType 'CRM Service Day' +#: crm/fcrm/pagetype/crm_holiday_list/crm_holiday_list.json +#: crm/fcrm/pagetype/crm_service_day/crm_service_day.json msgid "Sunday" msgstr "Sonntag" @@ -5282,21 +5282,21 @@ msgid "System Configuration" msgstr "" #. Name of a role -#. Option for the 'Role' (Select) field in DocType 'CRM Invitation' -#: crm/fcrm/doctype/crm_dashboard/crm_dashboard.json -#: crm/fcrm/doctype/crm_exotel_settings/crm_exotel_settings.json -#: crm/fcrm/doctype/crm_fields_layout/crm_fields_layout.json -#: crm/fcrm/doctype/crm_global_settings/crm_global_settings.json -#: crm/fcrm/doctype/crm_invitation/crm_invitation.json -#: crm/fcrm/doctype/crm_lead_source/crm_lead_source.json -#: crm/fcrm/doctype/crm_lost_reason/crm_lost_reason.json -#: crm/fcrm/doctype/crm_notification/crm_notification.json -#: crm/fcrm/doctype/crm_product/crm_product.json -#: crm/fcrm/doctype/crm_telephony_agent/crm_telephony_agent.json -#: crm/fcrm/doctype/crm_twilio_settings/crm_twilio_settings.json -#: crm/fcrm/doctype/erpnext_crm_settings/erpnext_crm_settings.json -#: crm/fcrm/doctype/fcrm_settings/fcrm_settings.json -#: crm/fcrm/doctype/helpdesk_crm_settings/helpdesk_crm_settings.json +#. Option for the 'Role' (Select) field in PageType 'CRM Invitation' +#: crm/fcrm/pagetype/crm_dashboard/crm_dashboard.json +#: crm/fcrm/pagetype/crm_exotel_settings/crm_exotel_settings.json +#: crm/fcrm/pagetype/crm_fields_layout/crm_fields_layout.json +#: crm/fcrm/pagetype/crm_global_settings/crm_global_settings.json +#: crm/fcrm/pagetype/crm_invitation/crm_invitation.json +#: crm/fcrm/pagetype/crm_lead_source/crm_lead_source.json +#: crm/fcrm/pagetype/crm_lost_reason/crm_lost_reason.json +#: crm/fcrm/pagetype/crm_notification/crm_notification.json +#: crm/fcrm/pagetype/crm_product/crm_product.json +#: crm/fcrm/pagetype/crm_telephony_agent/crm_telephony_agent.json +#: crm/fcrm/pagetype/crm_twilio_settings/crm_twilio_settings.json +#: crm/fcrm/pagetype/erpnext_crm_settings/erpnext_crm_settings.json +#: crm/fcrm/pagetype/fcrm_settings/fcrm_settings.json +#: crm/fcrm/pagetype/helpdesk_crm_settings/helpdesk_crm_settings.json msgid "System Manager" msgstr "System-Manager" @@ -5308,8 +5308,8 @@ msgstr "AN" msgid "Take a note..." msgstr "" -#. Option for the 'Type' (Select) field in DocType 'CRM Notification' -#: crm/fcrm/doctype/crm_notification/crm_notification.json +#. Option for the 'Type' (Select) field in PageType 'CRM Notification' +#: crm/fcrm/pagetype/crm_notification/crm_notification.json #: frontend/src/components/Layouts/AppSidebar.vue:555 msgid "Task" msgstr "Vorgang" @@ -5327,8 +5327,8 @@ msgstr "" msgid "Telephony" msgstr "" -#. Label of the telephony_medium (Select) field in DocType 'CRM Call Log' -#: crm/fcrm/doctype/crm_call_log/crm_call_log.json +#. Label of the telephony_medium (Select) field in PageType 'CRM Call Log' +#: crm/fcrm/pagetype/crm_call_log/crm_call_log.json msgid "Telephony Medium" msgstr "" @@ -5364,27 +5364,27 @@ msgstr "" msgid "Template updated successfully" msgstr "" -#. Label of a shortcut in the Frappe CRM Workspace -#: crm/fcrm/workspace/frappe_crm/frappe_crm.json +#. Label of a shortcut in the Jingrow CRM Workspace +#: crm/fcrm/workspace/jingrow_crm/jingrow_crm.json msgid "Territories" msgstr "" -#. Label of the territory (Link) field in DocType 'CRM Deal' -#. Label of the territory (Link) field in DocType 'CRM Lead' -#. Label of the territory (Link) field in DocType 'CRM Organization' -#: crm/api/dashboard.py:1022 crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_lead/crm_lead.json -#: crm/fcrm/doctype/crm_organization/crm_organization.json +#. Label of the territory (Link) field in PageType 'CRM Deal' +#. Label of the territory (Link) field in PageType 'CRM Lead' +#. Label of the territory (Link) field in PageType 'CRM Organization' +#: crm/api/dashboard.py:1022 crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_lead/crm_lead.json +#: crm/fcrm/pagetype/crm_organization/crm_organization.json msgid "Territory" msgstr "Gebiet" -#. Label of the territory_manager (Link) field in DocType 'CRM Territory' -#: crm/fcrm/doctype/crm_territory/crm_territory.json +#. Label of the territory_manager (Link) field in PageType 'CRM Territory' +#: crm/fcrm/pagetype/crm_territory/crm_territory.json msgid "Territory Manager" msgstr "Gebietsleiter" -#. Label of the territory_name (Data) field in DocType 'CRM Territory' -#: crm/fcrm/doctype/crm_territory/crm_territory.json +#. Label of the territory_name (Data) field in PageType 'CRM Territory' +#: crm/fcrm/pagetype/crm_territory/crm_territory.json msgid "Territory Name" msgstr "Name der Region (Gebiet)" @@ -5392,22 +5392,22 @@ msgstr "Name der Region (Gebiet)" msgid "Thanks" msgstr "Danke" -#: crm/fcrm/doctype/crm_service_level_agreement/crm_service_level_agreement.py:46 +#: crm/fcrm/pagetype/crm_service_level_agreement/crm_service_level_agreement.py:46 msgid "The Condition '{0}' is invalid: {1}" msgstr "" -#. Description of the 'Exchange Rate' (Float) field in DocType 'CRM Deal' -#: crm/fcrm/doctype/crm_deal/crm_deal.json +#. Description of the 'Exchange Rate' (Float) field in PageType 'CRM Deal' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json msgid "The rate used to convert the deal’s currency to your crm's base currency (set in CRM Settings). It is set once when the currency is first added and doesn't change automatically." msgstr "" -#. Description of the 'Exchange Rate' (Float) field in DocType 'CRM +#. Description of the 'Exchange Rate' (Float) field in PageType 'CRM #. Organization' -#: crm/fcrm/doctype/crm_organization/crm_organization.json +#: crm/fcrm/pagetype/crm_organization/crm_organization.json msgid "The rate used to convert the organization’s currency to your crm's base currency (set in CRM Settings). It is set once when the currency is first added and doesn't change automatically." msgstr "" -#: crm/fcrm/doctype/crm_service_level_agreement/crm_service_level_agreement.js:14 +#: crm/fcrm/pagetype/crm_service_level_agreement/crm_service_level_agreement.js:14 msgid "There can only be one default priority in Priorities table" msgstr "" @@ -5444,14 +5444,14 @@ msgstr "" msgid "This will delete selected items and unlink linked items to it, are you sure?" msgstr "" -#: crm/fcrm/doctype/fcrm_settings/fcrm_settings.js:9 +#: crm/fcrm/pagetype/fcrm_settings/fcrm_settings.js:9 msgid "This will restore (if not exist) all the default statuses, custom fields and layouts. Delete & Restore will delete default layouts and then restore them." msgstr "" -#. Option for the 'Weekly Off' (Select) field in DocType 'CRM Holiday List' -#. Option for the 'Workday' (Select) field in DocType 'CRM Service Day' -#: crm/fcrm/doctype/crm_holiday_list/crm_holiday_list.json -#: crm/fcrm/doctype/crm_service_day/crm_service_day.json +#. Option for the 'Weekly Off' (Select) field in PageType 'CRM Holiday List' +#. Option for the 'Workday' (Select) field in PageType 'CRM Service Day' +#: crm/fcrm/pagetype/crm_holiday_list/crm_holiday_list.json +#: crm/fcrm/pagetype/crm_service_day/crm_service_day.json msgid "Thursday" msgstr "Donnerstag" @@ -5463,18 +5463,18 @@ msgstr "Zeit" msgid "Timespan" msgstr "Zeitspanne" -#. Label of the title (Data) field in DocType 'CRM Task' -#. Label of the title (Data) field in DocType 'FCRM Note' -#: crm/fcrm/doctype/crm_task/crm_task.json -#: crm/fcrm/doctype/fcrm_note/fcrm_note.json +#. Label of the title (Data) field in PageType 'CRM Task' +#. Label of the title (Data) field in PageType 'FCRM Note' +#: crm/fcrm/pagetype/crm_task/crm_task.json +#: crm/fcrm/pagetype/fcrm_note/fcrm_note.json #: frontend/src/components/Modals/EventModal.vue:43 #: frontend/src/components/Modals/NoteModal.vue:26 #: frontend/src/components/Modals/TaskModal.vue:25 msgid "Title" msgstr "Bezeichnung" -#. Label of the title_field (Data) field in DocType 'CRM View Settings' -#: crm/fcrm/doctype/crm_view_settings/crm_view_settings.json +#. Label of the title_field (Data) field in PageType 'CRM View Settings' +#: crm/fcrm/pagetype/crm_view_settings/crm_view_settings.json #: frontend/src/components/Kanban/KanbanSettings.vue:29 msgid "Title Field" msgstr "Bezeichnungs-Feld" @@ -5484,28 +5484,28 @@ msgstr "Bezeichnungs-Feld" msgid "Title is required" msgstr "" -#. Label of the to (Data) field in DocType 'CRM Call Log' -#. Label of the to (Data) field in DocType 'CRM Status Change Log' -#: crm/fcrm/doctype/crm_call_log/crm_call_log.json -#: crm/fcrm/doctype/crm_status_change_log/crm_status_change_log.json +#. Label of the to (Data) field in PageType 'CRM Call Log' +#. Label of the to (Data) field in PageType 'CRM Status Change Log' +#: crm/fcrm/pagetype/crm_call_log/crm_call_log.json +#: crm/fcrm/pagetype/crm_status_change_log/crm_status_change_log.json #: frontend/src/components/Activities/EmailArea.vue:53 msgid "To" msgstr "An" -#. Label of the to_date (Date) field in DocType 'CRM Holiday List' -#. Label of the to_date (Datetime) field in DocType 'CRM Status Change Log' -#: crm/fcrm/doctype/crm_holiday_list/crm_holiday_list.json -#: crm/fcrm/doctype/crm_status_change_log/crm_status_change_log.json +#. Label of the to_date (Date) field in PageType 'CRM Holiday List' +#. Label of the to_date (Datetime) field in PageType 'CRM Status Change Log' +#: crm/fcrm/pagetype/crm_holiday_list/crm_holiday_list.json +#: crm/fcrm/pagetype/crm_status_change_log/crm_status_change_log.json msgid "To Date" msgstr "Bis-Datum" -#. Label of the to_type (Data) field in DocType 'CRM Status Change Log' -#: crm/fcrm/doctype/crm_status_change_log/crm_status_change_log.json +#. Label of the to_type (Data) field in PageType 'CRM Status Change Log' +#: crm/fcrm/pagetype/crm_status_change_log/crm_status_change_log.json msgid "To Type" msgstr "" -#. Label of the to_user (Link) field in DocType 'CRM Notification' -#: crm/fcrm/doctype/crm_notification/crm_notification.json +#. Label of the to_user (Link) field in PageType 'CRM Notification' +#: crm/fcrm/pagetype/crm_notification/crm_notification.json msgid "To User" msgstr "An Benutzer" @@ -5517,8 +5517,8 @@ msgstr "" msgid "Today" msgstr "Heute" -#. Option for the 'Status' (Select) field in DocType 'CRM Task' -#: crm/fcrm/doctype/crm_task/crm_task.json +#. Option for the 'Status' (Select) field in PageType 'CRM Task' +#: crm/fcrm/pagetype/crm_task/crm_task.json msgid "Todo" msgstr "" @@ -5535,22 +5535,22 @@ msgstr "" msgid "Took a call with John Doe and discussed the new project." msgstr "" -#. Label of the total (Currency) field in DocType 'CRM Deal' -#. Label of the total (Currency) field in DocType 'CRM Lead' -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_lead/crm_lead.json +#. Label of the total (Currency) field in PageType 'CRM Deal' +#. Label of the total (Currency) field in PageType 'CRM Lead' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_lead/crm_lead.json msgid "Total" msgstr "Summe" -#. Label of the total_holidays (Int) field in DocType 'CRM Holiday List' -#: crm/fcrm/doctype/crm_holiday_list/crm_holiday_list.json +#. Label of the total_holidays (Int) field in PageType 'CRM Holiday List' +#: crm/fcrm/pagetype/crm_holiday_list/crm_holiday_list.json msgid "Total Holidays" msgstr "Insgesamt freie Tage" -#. Description of the 'Net Total' (Currency) field in DocType 'CRM Deal' -#. Description of the 'Net Total' (Currency) field in DocType 'CRM Lead' -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_lead/crm_lead.json +#. Description of the 'Net Total' (Currency) field in PageType 'CRM Deal' +#. Description of the 'Net Total' (Currency) field in PageType 'CRM Lead' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_lead/crm_lead.json msgid "Total after discount" msgstr "" @@ -5571,10 +5571,10 @@ msgstr "" msgid "Total number of won deals based on its closure date" msgstr "" -#. Option for the 'Weekly Off' (Select) field in DocType 'CRM Holiday List' -#. Option for the 'Workday' (Select) field in DocType 'CRM Service Day' -#: crm/fcrm/doctype/crm_holiday_list/crm_holiday_list.json -#: crm/fcrm/doctype/crm_service_day/crm_service_day.json +#. Option for the 'Weekly Off' (Select) field in PageType 'CRM Holiday List' +#. Option for the 'Workday' (Select) field in PageType 'CRM Service Day' +#: crm/fcrm/pagetype/crm_holiday_list/crm_holiday_list.json +#: crm/fcrm/pagetype/crm_service_day/crm_service_day.json msgid "Tuesday" msgstr "Dienstag" @@ -5582,30 +5582,30 @@ msgstr "Dienstag" msgid "Turn into a group" msgstr "" -#. Label of the twiml_sid (Data) field in DocType 'CRM Twilio Settings' -#: crm/fcrm/doctype/crm_twilio_settings/crm_twilio_settings.json +#. Label of the twiml_sid (Data) field in PageType 'CRM Twilio Settings' +#: crm/fcrm/pagetype/crm_twilio_settings/crm_twilio_settings.json msgid "TwiML SID" msgstr "" -#. Option for the 'Telephony Medium' (Select) field in DocType 'CRM Call Log' -#. Label of the twilio (Check) field in DocType 'CRM Telephony Agent' -#. Option for the 'Default Medium' (Select) field in DocType 'CRM Telephony +#. Option for the 'Telephony Medium' (Select) field in PageType 'CRM Call Log' +#. Label of the twilio (Check) field in PageType 'CRM Telephony Agent' +#. Option for the 'Default Medium' (Select) field in PageType 'CRM Telephony #. Agent' -#: crm/fcrm/doctype/crm_call_log/crm_call_log.json -#: crm/fcrm/doctype/crm_telephony_agent/crm_telephony_agent.json +#: crm/fcrm/pagetype/crm_call_log/crm_call_log.json +#: crm/fcrm/pagetype/crm_telephony_agent/crm_telephony_agent.json #: frontend/src/components/Layouts/AppSidebar.vue:601 #: frontend/src/components/Settings/TelephonySettings.vue:40 #: frontend/src/components/Settings/TelephonySettings.vue:50 msgid "Twilio" msgstr "" -#: crm/fcrm/doctype/crm_twilio_settings/crm_twilio_settings.py:59 -#: crm/fcrm/doctype/crm_twilio_settings/crm_twilio_settings.py:60 +#: crm/fcrm/pagetype/crm_twilio_settings/crm_twilio_settings.py:59 +#: crm/fcrm/pagetype/crm_twilio_settings/crm_twilio_settings.py:60 msgid "Twilio API credential creation error." msgstr "" -#. Label of the twilio_number (Data) field in DocType 'CRM Telephony Agent' -#: crm/fcrm/doctype/crm_telephony_agent/crm_telephony_agent.json +#. Label of the twilio_number (Data) field in PageType 'CRM Telephony Agent' +#: crm/fcrm/pagetype/crm_telephony_agent/crm_telephony_agent.json msgid "Twilio Number" msgstr "" @@ -5617,20 +5617,20 @@ msgstr "" msgid "Twilio settings updated successfully" msgstr "" -#. Label of the type (Select) field in DocType 'CRM Call Log' -#. Label of the type (Select) field in DocType 'CRM Deal Status' -#. Label of the type (Select) field in DocType 'CRM Dropdown Item' -#. Label of the type (Select) field in DocType 'CRM Fields Layout' -#. Label of the type (Select) field in DocType 'CRM Global Settings' -#. Label of the type (Select) field in DocType 'CRM Notification' -#. Label of the type (Select) field in DocType 'CRM View Settings' -#: crm/fcrm/doctype/crm_call_log/crm_call_log.json -#: crm/fcrm/doctype/crm_deal_status/crm_deal_status.json -#: crm/fcrm/doctype/crm_dropdown_item/crm_dropdown_item.json -#: crm/fcrm/doctype/crm_fields_layout/crm_fields_layout.json -#: crm/fcrm/doctype/crm_global_settings/crm_global_settings.json -#: crm/fcrm/doctype/crm_notification/crm_notification.json -#: crm/fcrm/doctype/crm_view_settings/crm_view_settings.json +#. Label of the type (Select) field in PageType 'CRM Call Log' +#. Label of the type (Select) field in PageType 'CRM Deal Status' +#. Label of the type (Select) field in PageType 'CRM Dropdown Item' +#. Label of the type (Select) field in PageType 'CRM Fields Layout' +#. Label of the type (Select) field in PageType 'CRM Global Settings' +#. Label of the type (Select) field in PageType 'CRM Notification' +#. Label of the type (Select) field in PageType 'CRM View Settings' +#: crm/fcrm/pagetype/crm_call_log/crm_call_log.json +#: crm/fcrm/pagetype/crm_deal_status/crm_deal_status.json +#: crm/fcrm/pagetype/crm_dropdown_item/crm_dropdown_item.json +#: crm/fcrm/pagetype/crm_fields_layout/crm_fields_layout.json +#: crm/fcrm/pagetype/crm_global_settings/crm_global_settings.json +#: crm/fcrm/pagetype/crm_notification/crm_notification.json +#: crm/fcrm/pagetype/crm_view_settings/crm_view_settings.json msgid "Type" msgstr "Typ" @@ -5772,12 +5772,12 @@ msgstr "Bild hochladen" msgid "Uploading {0}%" msgstr "Hochladen {0}%" -#. Label of the user (Link) field in DocType 'CRM Dashboard' -#. Label of the user (Link) field in DocType 'CRM Telephony Agent' -#. Label of the user (Link) field in DocType 'CRM View Settings' -#: crm/fcrm/doctype/crm_dashboard/crm_dashboard.json -#: crm/fcrm/doctype/crm_telephony_agent/crm_telephony_agent.json -#: crm/fcrm/doctype/crm_view_settings/crm_view_settings.json +#. Label of the user (Link) field in PageType 'CRM Dashboard' +#. Label of the user (Link) field in PageType 'CRM Telephony Agent' +#. Label of the user (Link) field in PageType 'CRM View Settings' +#: crm/fcrm/pagetype/crm_dashboard/crm_dashboard.json +#: crm/fcrm/pagetype/crm_telephony_agent/crm_telephony_agent.json +#: crm/fcrm/pagetype/crm_view_settings/crm_view_settings.json msgid "User" msgstr "Nutzer" @@ -5785,8 +5785,8 @@ msgstr "Nutzer" msgid "User Management" msgstr "" -#. Label of the user_name (Data) field in DocType 'CRM Telephony Agent' -#: crm/fcrm/doctype/crm_telephony_agent/crm_telephony_agent.json +#. Label of the user_name (Data) field in PageType 'CRM Telephony Agent' +#: crm/fcrm/pagetype/crm_telephony_agent/crm_telephony_agent.json msgid "User Name" msgstr "Nutzername" @@ -5808,9 +5808,9 @@ msgstr "" msgid "Users are required" msgstr "" -#. Label of the section_break_nevd (Section Break) field in DocType 'CRM +#. Label of the section_break_nevd (Section Break) field in PageType 'CRM #. Service Level Agreement' -#: crm/fcrm/doctype/crm_service_level_agreement/crm_service_level_agreement.json +#: crm/fcrm/pagetype/crm_service_level_agreement/crm_service_level_agreement.json msgid "Validity" msgstr "Gültigkeit" @@ -5834,33 +5834,33 @@ msgstr "Aufrufe" msgid "Web form" msgstr "" -#. Label of the webhook_verify_token (Data) field in DocType 'CRM Exotel +#. Label of the webhook_verify_token (Data) field in PageType 'CRM Exotel #. Settings' -#: crm/fcrm/doctype/crm_exotel_settings/crm_exotel_settings.json +#: crm/fcrm/pagetype/crm_exotel_settings/crm_exotel_settings.json msgid "Webhook Verify Token" msgstr "" -#. Label of the website (Data) field in DocType 'CRM Deal' -#. Label of the website (Data) field in DocType 'CRM Lead' -#. Label of the website (Data) field in DocType 'CRM Organization' -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_lead/crm_lead.json -#: crm/fcrm/doctype/crm_organization/crm_organization.json +#. Label of the website (Data) field in PageType 'CRM Deal' +#. Label of the website (Data) field in PageType 'CRM Lead' +#. Label of the website (Data) field in PageType 'CRM Organization' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_lead/crm_lead.json +#: crm/fcrm/pagetype/crm_organization/crm_organization.json #: frontend/src/components/Modals/AboutModal.vue:52 msgid "Website" msgstr "Webseite" -#. Option for the 'Weekly Off' (Select) field in DocType 'CRM Holiday List' -#. Option for the 'Workday' (Select) field in DocType 'CRM Service Day' -#: crm/fcrm/doctype/crm_holiday_list/crm_holiday_list.json -#: crm/fcrm/doctype/crm_service_day/crm_service_day.json +#. Option for the 'Weekly Off' (Select) field in PageType 'CRM Holiday List' +#. Option for the 'Workday' (Select) field in PageType 'CRM Service Day' +#: crm/fcrm/pagetype/crm_holiday_list/crm_holiday_list.json +#: crm/fcrm/pagetype/crm_service_day/crm_service_day.json msgid "Wednesday" msgstr "Mittwoch" -#. Label of the weekly_off (Check) field in DocType 'CRM Holiday' -#. Label of the weekly_off (Select) field in DocType 'CRM Holiday List' -#: crm/fcrm/doctype/crm_holiday/crm_holiday.json -#: crm/fcrm/doctype/crm_holiday_list/crm_holiday_list.json +#. Label of the weekly_off (Check) field in PageType 'CRM Holiday' +#. Label of the weekly_off (Select) field in PageType 'CRM Holiday List' +#: crm/fcrm/pagetype/crm_holiday/crm_holiday.json +#: crm/fcrm/pagetype/crm_holiday_list/crm_holiday_list.json msgid "Weekly Off" msgstr "Wöchentlich frei" @@ -5868,7 +5868,7 @@ msgstr "Wöchentlich frei" msgid "Welcome Message" msgstr "" -#: crm/fcrm/doctype/helpdesk_crm_settings/helpdesk_crm_settings.py:155 +#: crm/fcrm/pagetype/helpdesk_crm_settings/helpdesk_crm_settings.py:155 msgid "Welcome to Helpdesk" msgstr "" @@ -5876,8 +5876,8 @@ msgstr "" msgid "Welcome {0}, lets add your first lead" msgstr "" -#. Option for the 'Type' (Select) field in DocType 'CRM Notification' -#: crm/fcrm/doctype/crm_notification/crm_notification.json +#. Option for the 'Type' (Select) field in PageType 'CRM Notification' +#: crm/fcrm/pagetype/crm_notification/crm_notification.json #: frontend/src/components/Layouts/AppSidebar.vue:603 #: frontend/src/components/Settings/Settings.vue:190 #: frontend/src/pages/Deal.vue:572 frontend/src/pages/Lead.vue:429 @@ -5902,8 +5902,8 @@ msgstr "Breite" msgid "Width can be in number, pixel or rem (eg. 3, 30px, 10rem)" msgstr "" -#. Option for the 'Type' (Select) field in DocType 'CRM Deal Status' -#: crm/fcrm/doctype/crm_deal_status/crm_deal_status.json +#. Option for the 'Type' (Select) field in PageType 'CRM Deal Status' +#: crm/fcrm/pagetype/crm_deal_status/crm_deal_status.json msgid "Won" msgstr "" @@ -5912,16 +5912,16 @@ msgstr "" msgid "Won deals" msgstr "" -#. Label of the workday (Select) field in DocType 'CRM Service Day' -#: crm/fcrm/doctype/crm_service_day/crm_service_day.json +#. Label of the workday (Select) field in PageType 'CRM Service Day' +#: crm/fcrm/pagetype/crm_service_day/crm_service_day.json msgid "Workday" msgstr "Werktag" -#. Label of the section_break_rmgo (Section Break) field in DocType 'CRM +#. Label of the section_break_rmgo (Section Break) field in PageType 'CRM #. Service Level Agreement' -#. Label of the working_hours (Table) field in DocType 'CRM Service Level +#. Label of the working_hours (Table) field in PageType 'CRM Service Level #. Agreement' -#: crm/fcrm/doctype/crm_service_level_agreement/crm_service_level_agreement.json +#: crm/fcrm/pagetype/crm_service_level_agreement/crm_service_level_agreement.json msgid "Working Hours" msgstr "Arbeitszeit" @@ -5967,7 +5967,7 @@ msgstr "" msgid "You do not have permission to access this document" msgstr "" -#: crm/fcrm/doctype/crm_form_script/crm_form_script.py:24 +#: crm/fcrm/pagetype/crm_form_script/crm_form_script.py:24 msgid "You need to be in developer mode to edit a Standard Form Script" msgstr "" @@ -5995,10 +5995,10 @@ msgstr "" msgid "added a" msgstr "" -#. Option for the 'Color' (Select) field in DocType 'CRM Deal Status' -#. Option for the 'Color' (Select) field in DocType 'CRM Lead Status' -#: crm/fcrm/doctype/crm_deal_status/crm_deal_status.json -#: crm/fcrm/doctype/crm_lead_status/crm_lead_status.json +#. Option for the 'Color' (Select) field in PageType 'CRM Deal Status' +#. Option for the 'Color' (Select) field in PageType 'CRM Lead Status' +#: crm/fcrm/pagetype/crm_deal_status/crm_deal_status.json +#: crm/fcrm/pagetype/crm_lead_status/crm_lead_status.json msgid "amber" msgstr "" @@ -6010,17 +6010,17 @@ msgstr "" msgid "assigned a {0} {1} to you" msgstr "" -#. Option for the 'Color' (Select) field in DocType 'CRM Deal Status' -#. Option for the 'Color' (Select) field in DocType 'CRM Lead Status' -#: crm/fcrm/doctype/crm_deal_status/crm_deal_status.json -#: crm/fcrm/doctype/crm_lead_status/crm_lead_status.json +#. Option for the 'Color' (Select) field in PageType 'CRM Deal Status' +#. Option for the 'Color' (Select) field in PageType 'CRM Lead Status' +#: crm/fcrm/pagetype/crm_deal_status/crm_deal_status.json +#: crm/fcrm/pagetype/crm_lead_status/crm_lead_status.json msgid "black" msgstr "schwarz" -#. Option for the 'Color' (Select) field in DocType 'CRM Deal Status' -#. Option for the 'Color' (Select) field in DocType 'CRM Lead Status' -#: crm/fcrm/doctype/crm_deal_status/crm_deal_status.json -#: crm/fcrm/doctype/crm_lead_status/crm_lead_status.json +#. Option for the 'Color' (Select) field in PageType 'CRM Deal Status' +#. Option for the 'Color' (Select) field in PageType 'CRM Lead Status' +#: crm/fcrm/pagetype/crm_deal_status/crm_deal_status.json +#: crm/fcrm/pagetype/crm_lead_status/crm_lead_status.json msgid "blue" msgstr "Blau" @@ -6037,10 +6037,10 @@ msgstr "Kommentar" msgid "condition" msgstr "bedingung" -#. Option for the 'Color' (Select) field in DocType 'CRM Deal Status' -#. Option for the 'Color' (Select) field in DocType 'CRM Lead Status' -#: crm/fcrm/doctype/crm_deal_status/crm_deal_status.json -#: crm/fcrm/doctype/crm_lead_status/crm_lead_status.json +#. Option for the 'Color' (Select) field in PageType 'CRM Deal Status' +#. Option for the 'Color' (Select) field in PageType 'CRM Lead Status' +#: crm/fcrm/pagetype/crm_deal_status/crm_deal_status.json +#: crm/fcrm/pagetype/crm_lead_status/crm_lead_status.json msgid "cyan" msgstr "türkis" @@ -6059,33 +6059,33 @@ msgstr "schreibtisch" msgid "email already exists" msgstr "" -#. Option for the 'Service Provider' (Select) field in DocType 'FCRM Settings' -#: crm/fcrm/doctype/fcrm_settings/fcrm_settings.json +#. Option for the 'Service Provider' (Select) field in PageType 'FCRM Settings' +#: crm/fcrm/pagetype/fcrm_settings/fcrm_settings.json #: frontend/src/components/Settings/CurrencySettings.vue:106 msgid "exchangerate.host" msgstr "exchangerate.host" -#. Option for the 'Service Provider' (Select) field in DocType 'FCRM Settings' -#: crm/fcrm/doctype/fcrm_settings/fcrm_settings.json +#. Option for the 'Service Provider' (Select) field in PageType 'FCRM Settings' +#: crm/fcrm/pagetype/fcrm_settings/fcrm_settings.json msgid "frankfurter.app" msgstr "frankfurter.app" -#. Option for the 'Color' (Select) field in DocType 'CRM Deal Status' -#. Option for the 'Color' (Select) field in DocType 'CRM Lead Status' -#: crm/fcrm/doctype/crm_deal_status/crm_deal_status.json -#: crm/fcrm/doctype/crm_lead_status/crm_lead_status.json +#. Option for the 'Color' (Select) field in PageType 'CRM Deal Status' +#. Option for the 'Color' (Select) field in PageType 'CRM Lead Status' +#: crm/fcrm/pagetype/crm_deal_status/crm_deal_status.json +#: crm/fcrm/pagetype/crm_lead_status/crm_lead_status.json msgid "gray" msgstr "grau" -#. Option for the 'Color' (Select) field in DocType 'CRM Deal Status' -#. Option for the 'Color' (Select) field in DocType 'CRM Lead Status' -#: crm/fcrm/doctype/crm_deal_status/crm_deal_status.json -#: crm/fcrm/doctype/crm_lead_status/crm_lead_status.json +#. Option for the 'Color' (Select) field in PageType 'CRM Deal Status' +#. Option for the 'Color' (Select) field in PageType 'CRM Lead Status' +#: crm/fcrm/pagetype/crm_deal_status/crm_deal_status.json +#: crm/fcrm/pagetype/crm_lead_status/crm_lead_status.json msgid "green" msgstr "Grün" -#. Option for the 'Type' (Select) field in DocType 'CRM View Settings' -#: crm/fcrm/doctype/crm_view_settings/crm_view_settings.json +#. Option for the 'Type' (Select) field in PageType 'CRM View Settings' +#: crm/fcrm/pagetype/crm_view_settings/crm_view_settings.json msgid "group_by" msgstr "" @@ -6170,12 +6170,12 @@ msgstr "" msgid "just now" msgstr "gerade eben" -#. Option for the 'Type' (Select) field in DocType 'CRM View Settings' -#: crm/fcrm/doctype/crm_view_settings/crm_view_settings.json +#. Option for the 'Type' (Select) field in PageType 'CRM View Settings' +#: crm/fcrm/pagetype/crm_view_settings/crm_view_settings.json msgid "kanban" msgstr "kanban" -#: crm/api/doc.py:40 crm/api/doc.py:158 crm/api/doc.py:503 +#: crm/api/pg.py:40 crm/api/pg.py:158 crm/api/pg.py:503 msgid "label" msgstr "bezeichnung" @@ -6184,8 +6184,8 @@ msgstr "bezeichnung" msgid "leads" msgstr "interessenten" -#. Option for the 'Type' (Select) field in DocType 'CRM View Settings' -#: crm/fcrm/doctype/crm_view_settings/crm_view_settings.json +#. Option for the 'Type' (Select) field in PageType 'CRM View Settings' +#: crm/fcrm/pagetype/crm_view_settings/crm_view_settings.json msgid "list" msgstr "Liste" @@ -6206,17 +6206,17 @@ msgstr "jetzt" msgid "operator" msgstr "bediener" -#. Option for the 'Color' (Select) field in DocType 'CRM Deal Status' -#. Option for the 'Color' (Select) field in DocType 'CRM Lead Status' -#: crm/fcrm/doctype/crm_deal_status/crm_deal_status.json -#: crm/fcrm/doctype/crm_lead_status/crm_lead_status.json +#. Option for the 'Color' (Select) field in PageType 'CRM Deal Status' +#. Option for the 'Color' (Select) field in PageType 'CRM Lead Status' +#: crm/fcrm/pagetype/crm_deal_status/crm_deal_status.json +#: crm/fcrm/pagetype/crm_lead_status/crm_lead_status.json msgid "orange" msgstr "Orange" -#. Option for the 'Color' (Select) field in DocType 'CRM Deal Status' -#. Option for the 'Color' (Select) field in DocType 'CRM Lead Status' -#: crm/fcrm/doctype/crm_deal_status/crm_deal_status.json -#: crm/fcrm/doctype/crm_lead_status/crm_lead_status.json +#. Option for the 'Color' (Select) field in PageType 'CRM Deal Status' +#. Option for the 'Color' (Select) field in PageType 'CRM Lead Status' +#: crm/fcrm/pagetype/crm_deal_status/crm_deal_status.json +#: crm/fcrm/pagetype/crm_lead_status/crm_lead_status.json msgid "pink" msgstr "rosa" @@ -6232,10 +6232,10 @@ msgstr "privat" msgid "public" msgstr "öffentlich" -#. Option for the 'Color' (Select) field in DocType 'CRM Deal Status' -#. Option for the 'Color' (Select) field in DocType 'CRM Lead Status' -#: crm/fcrm/doctype/crm_deal_status/crm_deal_status.json -#: crm/fcrm/doctype/crm_lead_status/crm_lead_status.json +#. Option for the 'Color' (Select) field in PageType 'CRM Deal Status' +#. Option for the 'Color' (Select) field in PageType 'CRM Lead Status' +#: crm/fcrm/pagetype/crm_deal_status/crm_deal_status.json +#: crm/fcrm/pagetype/crm_lead_status/crm_lead_status.json msgid "purple" msgstr "lila" @@ -6243,17 +6243,17 @@ msgstr "lila" msgid "received a whatsapp message in {0}" msgstr "" -#. Option for the 'Color' (Select) field in DocType 'CRM Deal Status' -#. Option for the 'Color' (Select) field in DocType 'CRM Lead Status' -#: crm/fcrm/doctype/crm_deal_status/crm_deal_status.json -#: crm/fcrm/doctype/crm_lead_status/crm_lead_status.json +#. Option for the 'Color' (Select) field in PageType 'CRM Deal Status' +#. Option for the 'Color' (Select) field in PageType 'CRM Lead Status' +#: crm/fcrm/pagetype/crm_deal_status/crm_deal_status.json +#: crm/fcrm/pagetype/crm_lead_status/crm_lead_status.json msgid "red" msgstr "rot" -#. Option for the 'Color' (Select) field in DocType 'CRM Deal Status' -#. Option for the 'Color' (Select) field in DocType 'CRM Lead Status' -#: crm/fcrm/doctype/crm_deal_status/crm_deal_status.json -#: crm/fcrm/doctype/crm_lead_status/crm_lead_status.json +#. Option for the 'Color' (Select) field in PageType 'CRM Deal Status' +#. Option for the 'Color' (Select) field in PageType 'CRM Lead Status' +#: crm/fcrm/pagetype/crm_deal_status/crm_deal_status.json +#: crm/fcrm/pagetype/crm_lead_status/crm_lead_status.json msgid "teal" msgstr "" @@ -6266,10 +6266,10 @@ msgstr "An" msgid "tomorrow" msgstr "morgen" -#. Option for the 'Color' (Select) field in DocType 'CRM Deal Status' -#. Option for the 'Color' (Select) field in DocType 'CRM Lead Status' -#: crm/fcrm/doctype/crm_deal_status/crm_deal_status.json -#: crm/fcrm/doctype/crm_lead_status/crm_lead_status.json +#. Option for the 'Color' (Select) field in PageType 'CRM Deal Status' +#. Option for the 'Color' (Select) field in PageType 'CRM Lead Status' +#: crm/fcrm/pagetype/crm_deal_status/crm_deal_status.json +#: crm/fcrm/pagetype/crm_lead_status/crm_lead_status.json msgid "violet" msgstr "violett" @@ -6278,10 +6278,10 @@ msgstr "violett" msgid "which are not compatible with this UI, you will need to recreate the conditions here if you want to manage and add new conditions from this UI." msgstr "" -#. Option for the 'Color' (Select) field in DocType 'CRM Deal Status' -#. Option for the 'Color' (Select) field in DocType 'CRM Lead Status' -#: crm/fcrm/doctype/crm_deal_status/crm_deal_status.json -#: crm/fcrm/doctype/crm_lead_status/crm_lead_status.json +#. Option for the 'Color' (Select) field in PageType 'CRM Deal Status' +#. Option for the 'Color' (Select) field in PageType 'CRM Lead Status' +#: crm/fcrm/pagetype/crm_deal_status/crm_deal_status.json +#: crm/fcrm/pagetype/crm_lead_status/crm_lead_status.json msgid "yellow" msgstr "Gelb" @@ -6379,7 +6379,7 @@ msgid "⚠️ Method \"{0}\" not found in class." msgstr "" #: frontend/src/data/script.js:83 -msgid "⚠️ No class found for doctype: {0}, it is mandatory to have a class for the parent doctype. it can be empty, but it should be present." +msgid "⚠️ No class found for pagetype: {0}, it is mandatory to have a class for the parent pagetype. it can be empty, but it should be present." msgstr "" #: frontend/src/data/script.js:180 diff --git a/crm/locale/eo.po b/crm/locale/eo.po index d06891d7..6e2c8da5 100644 --- a/crm/locale/eo.po +++ b/crm/locale/eo.po @@ -1,6 +1,6 @@ msgid "" msgstr "" -"Project-Id-Version: frappe\n" +"Project-Id-Version: jingrow\n" "Report-Msgid-Bugs-To: shariq@jingrow.com\n" "POT-Creation-Date: 2025-09-21 09:35+0000\n" "PO-Revision-Date: 2025-09-22 20:42\n" @@ -11,10 +11,10 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Generated-By: Babel 2.16.0\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -"X-Crowdin-Project: frappe\n" +"X-Crowdin-Project: jingrow\n" "X-Crowdin-Project-ID: 639578\n" "X-Crowdin-Language: eo\n" -"X-Crowdin-File: /[frappe.crm] develop/crm/locale/main.pot\n" +"X-Crowdin-File: /[jingrow.crm] develop/crm/locale/main.pot\n" "X-Crowdin-File-ID: 97\n" "Language: eo_UY\n" @@ -55,73 +55,73 @@ msgstr "crwdns156092:0crwdne156092:0" msgid "1 year ago" msgstr "crwdns156094:0crwdne156094:0" -#. Option for the 'No. of Employees' (Select) field in DocType 'CRM Deal' -#. Option for the 'No. of Employees' (Select) field in DocType 'CRM Lead' -#. Option for the 'No. of Employees' (Select) field in DocType 'CRM +#. Option for the 'No. of Employees' (Select) field in PageType 'CRM Deal' +#. Option for the 'No. of Employees' (Select) field in PageType 'CRM Lead' +#. Option for the 'No. of Employees' (Select) field in PageType 'CRM #. Organization' -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_lead/crm_lead.json -#: crm/fcrm/doctype/crm_organization/crm_organization.json +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_lead/crm_lead.json +#: crm/fcrm/pagetype/crm_organization/crm_organization.json msgid "1-10" msgstr "crwdns152671:0crwdne152671:0" -#. Option for the 'No. of Employees' (Select) field in DocType 'CRM Deal' -#. Option for the 'No. of Employees' (Select) field in DocType 'CRM Lead' -#. Option for the 'No. of Employees' (Select) field in DocType 'CRM +#. Option for the 'No. of Employees' (Select) field in PageType 'CRM Deal' +#. Option for the 'No. of Employees' (Select) field in PageType 'CRM Lead' +#. Option for the 'No. of Employees' (Select) field in PageType 'CRM #. Organization' -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_lead/crm_lead.json -#: crm/fcrm/doctype/crm_organization/crm_organization.json +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_lead/crm_lead.json +#: crm/fcrm/pagetype/crm_organization/crm_organization.json msgid "1000+" msgstr "crwdns152673:0crwdne152673:0" -#. Option for the 'No. of Employees' (Select) field in DocType 'CRM Deal' -#. Option for the 'No. of Employees' (Select) field in DocType 'CRM Lead' -#. Option for the 'No. of Employees' (Select) field in DocType 'CRM +#. Option for the 'No. of Employees' (Select) field in PageType 'CRM Deal' +#. Option for the 'No. of Employees' (Select) field in PageType 'CRM Lead' +#. Option for the 'No. of Employees' (Select) field in PageType 'CRM #. Organization' -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_lead/crm_lead.json -#: crm/fcrm/doctype/crm_organization/crm_organization.json +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_lead/crm_lead.json +#: crm/fcrm/pagetype/crm_organization/crm_organization.json msgid "11-50" msgstr "crwdns152675:0crwdne152675:0" -#. Option for the 'No. of Employees' (Select) field in DocType 'CRM Deal' -#. Option for the 'No. of Employees' (Select) field in DocType 'CRM Lead' -#. Option for the 'No. of Employees' (Select) field in DocType 'CRM +#. Option for the 'No. of Employees' (Select) field in PageType 'CRM Deal' +#. Option for the 'No. of Employees' (Select) field in PageType 'CRM Lead' +#. Option for the 'No. of Employees' (Select) field in PageType 'CRM #. Organization' -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_lead/crm_lead.json -#: crm/fcrm/doctype/crm_organization/crm_organization.json +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_lead/crm_lead.json +#: crm/fcrm/pagetype/crm_organization/crm_organization.json msgid "201-500" msgstr "crwdns152677:0crwdne152677:0" -#. Option for the 'No. of Employees' (Select) field in DocType 'CRM Deal' -#. Option for the 'No. of Employees' (Select) field in DocType 'CRM Lead' -#. Option for the 'No. of Employees' (Select) field in DocType 'CRM +#. Option for the 'No. of Employees' (Select) field in PageType 'CRM Deal' +#. Option for the 'No. of Employees' (Select) field in PageType 'CRM Lead' +#. Option for the 'No. of Employees' (Select) field in PageType 'CRM #. Organization' -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_lead/crm_lead.json -#: crm/fcrm/doctype/crm_organization/crm_organization.json +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_lead/crm_lead.json +#: crm/fcrm/pagetype/crm_organization/crm_organization.json msgid "501-1000" msgstr "crwdns152679:0crwdne152679:0" -#. Option for the 'No. of Employees' (Select) field in DocType 'CRM Deal' -#. Option for the 'No. of Employees' (Select) field in DocType 'CRM Lead' -#. Option for the 'No. of Employees' (Select) field in DocType 'CRM +#. Option for the 'No. of Employees' (Select) field in PageType 'CRM Deal' +#. Option for the 'No. of Employees' (Select) field in PageType 'CRM Lead' +#. Option for the 'No. of Employees' (Select) field in PageType 'CRM #. Organization' -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_lead/crm_lead.json -#: crm/fcrm/doctype/crm_organization/crm_organization.json +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_lead/crm_lead.json +#: crm/fcrm/pagetype/crm_organization/crm_organization.json msgid "51-200" msgstr "crwdns152681:0crwdne152681:0" -#. Paragraph text in the Frappe CRM Workspace -#: crm/fcrm/workspace/frappe_crm/frappe_crm.json +#. Paragraph text in the Jingrow CRM Workspace +#: crm/fcrm/workspace/jingrow_crm/jingrow_crm.json msgid "META" msgstr "crwdns152683:0crwdne152683:0" -#. Paragraph text in the Frappe CRM Workspace -#: crm/fcrm/workspace/frappe_crm/frappe_crm.json +#. Paragraph text in the Jingrow CRM Workspace +#: crm/fcrm/workspace/jingrow_crm/jingrow_crm.json msgid "SHORTCUTS" msgstr "crwdns152685:0crwdne152685:0" @@ -130,8 +130,8 @@ msgstr "crwdns152685:0crwdne152685:0" msgid "

Dear {{ lead_name }},

\\n\\n

This is a reminder for the payment of {{ grand_total }}.

\\n\\n

Thanks,

\\n

Frappé

" msgstr "crwdns152687:0{{ lead_name }}crwdnd152687:0{{ grand_total }}crwdne152687:0" -#. Header text in the Frappe CRM Workspace -#: crm/fcrm/workspace/frappe_crm/frappe_crm.json +#. Header text in the Jingrow CRM Workspace +#: crm/fcrm/workspace/jingrow_crm/jingrow_crm.json msgid "PORTAL" msgstr "crwdns152689:0crwdne152689:0" @@ -139,7 +139,7 @@ msgstr "crwdns152689:0crwdne152689:0" msgid "@John, can you please check this?" msgstr "crwdns152691:0crwdne152691:0" -#: crm/fcrm/doctype/crm_lead/crm_lead.py:56 +#: crm/fcrm/pagetype/crm_lead/crm_lead.py:56 msgid "A Lead requires either a person's name or an organization's name" msgstr "crwdns152693:0crwdne152693:0" @@ -147,14 +147,14 @@ msgstr "crwdns152693:0crwdne152693:0" msgid "A new account has been created for you at {0}" msgstr "crwdns158622:0{0}crwdne158622:0" -#. Label of the api_key (Data) field in DocType 'CRM Exotel Settings' -#. Label of the api_key (Data) field in DocType 'CRM Twilio Settings' -#. Label of the api_key (Data) field in DocType 'ERPNext CRM Settings' -#. Label of the api_key (Data) field in DocType 'Helpdesk CRM Settings' -#: crm/fcrm/doctype/crm_exotel_settings/crm_exotel_settings.json -#: crm/fcrm/doctype/crm_twilio_settings/crm_twilio_settings.json -#: crm/fcrm/doctype/erpnext_crm_settings/erpnext_crm_settings.json -#: crm/fcrm/doctype/helpdesk_crm_settings/helpdesk_crm_settings.json +#. Label of the api_key (Data) field in PageType 'CRM Exotel Settings' +#. Label of the api_key (Data) field in PageType 'CRM Twilio Settings' +#. Label of the api_key (Data) field in PageType 'ERPNext CRM Settings' +#. Label of the api_key (Data) field in PageType 'Helpdesk CRM Settings' +#: crm/fcrm/pagetype/crm_exotel_settings/crm_exotel_settings.json +#: crm/fcrm/pagetype/crm_twilio_settings/crm_twilio_settings.json +#: crm/fcrm/pagetype/erpnext_crm_settings/erpnext_crm_settings.json +#: crm/fcrm/pagetype/helpdesk_crm_settings/helpdesk_crm_settings.json msgid "API Key" msgstr "crwdns152695:0crwdne152695:0" @@ -162,17 +162,17 @@ msgstr "crwdns152695:0crwdne152695:0" msgid "API Key is required" msgstr "crwdns156096:0crwdne156096:0" -#. Label of the api_secret (Password) field in DocType 'CRM Twilio Settings' -#. Label of the api_secret (Password) field in DocType 'ERPNext CRM Settings' -#. Label of the api_secret (Password) field in DocType 'Helpdesk CRM Settings' -#: crm/fcrm/doctype/crm_twilio_settings/crm_twilio_settings.json -#: crm/fcrm/doctype/erpnext_crm_settings/erpnext_crm_settings.json -#: crm/fcrm/doctype/helpdesk_crm_settings/helpdesk_crm_settings.json +#. Label of the api_secret (Password) field in PageType 'CRM Twilio Settings' +#. Label of the api_secret (Password) field in PageType 'ERPNext CRM Settings' +#. Label of the api_secret (Password) field in PageType 'Helpdesk CRM Settings' +#: crm/fcrm/pagetype/crm_twilio_settings/crm_twilio_settings.json +#: crm/fcrm/pagetype/erpnext_crm_settings/erpnext_crm_settings.json +#: crm/fcrm/pagetype/helpdesk_crm_settings/helpdesk_crm_settings.json msgid "API Secret" msgstr "crwdns152697:0crwdne152697:0" -#. Label of the api_token (Password) field in DocType 'CRM Exotel Settings' -#: crm/fcrm/doctype/crm_exotel_settings/crm_exotel_settings.json +#. Label of the api_token (Password) field in PageType 'CRM Exotel Settings' +#: crm/fcrm/pagetype/crm_exotel_settings/crm_exotel_settings.json msgid "API Token" msgstr "crwdns152699:0crwdne152699:0" @@ -180,7 +180,7 @@ msgstr "crwdns152699:0crwdne152699:0" msgid "Accept" msgstr "crwdns152701:0crwdne152701:0" -#: crm/fcrm/doctype/crm_invitation/crm_invitation.js:7 +#: crm/fcrm/pagetype/crm_invitation/crm_invitation.js:7 msgid "Accept Invitation" msgstr "crwdns152703:0crwdne152703:0" @@ -188,22 +188,22 @@ msgstr "crwdns152703:0crwdne152703:0" msgid "Accept call" msgstr "crwdns158624:0crwdne158624:0" -#. Option for the 'Status' (Select) field in DocType 'CRM Invitation' -#: crm/fcrm/doctype/crm_invitation/crm_invitation.json +#. Option for the 'Status' (Select) field in PageType 'CRM Invitation' +#: crm/fcrm/pagetype/crm_invitation/crm_invitation.json msgid "Accepted" msgstr "crwdns152705:0crwdne152705:0" -#. Label of the accepted_at (Datetime) field in DocType 'CRM Invitation' -#: crm/fcrm/doctype/crm_invitation/crm_invitation.json +#. Label of the accepted_at (Datetime) field in PageType 'CRM Invitation' +#: crm/fcrm/pagetype/crm_invitation/crm_invitation.json msgid "Accepted At" msgstr "crwdns152707:0crwdne152707:0" -#. Label of the access_key (Data) field in DocType 'FCRM Settings' -#: crm/fcrm/doctype/fcrm_settings/fcrm_settings.json +#. Label of the access_key (Data) field in PageType 'FCRM Settings' +#: crm/fcrm/pagetype/fcrm_settings/fcrm_settings.json msgid "Access Key" msgstr "crwdns157240:0crwdne157240:0" -#: crm/fcrm/doctype/fcrm_settings/fcrm_settings.py:156 +#: crm/fcrm/pagetype/fcrm_settings/fcrm_settings.py:156 msgid "Access Key is required for Service Provider: {0}" msgstr "crwdns157242:0{0}crwdne157242:0" @@ -219,10 +219,10 @@ msgstr "crwdns157246:0crwdne157246:0" msgid "Account Name" msgstr "crwdns156098:0crwdne156098:0" -#. Label of the account_sid (Data) field in DocType 'CRM Exotel Settings' -#. Label of the account_sid (Data) field in DocType 'CRM Twilio Settings' -#: crm/fcrm/doctype/crm_exotel_settings/crm_exotel_settings.json -#: crm/fcrm/doctype/crm_twilio_settings/crm_twilio_settings.json +#. Label of the account_sid (Data) field in PageType 'CRM Exotel Settings' +#. Label of the account_sid (Data) field in PageType 'CRM Twilio Settings' +#: crm/fcrm/pagetype/crm_exotel_settings/crm_exotel_settings.json +#: crm/fcrm/pagetype/crm_twilio_settings/crm_twilio_settings.json msgid "Account SID" msgstr "crwdns152709:0crwdne152709:0" @@ -296,9 +296,9 @@ msgstr "crwdns152725:0crwdne152725:0" msgid "Add Tab" msgstr "crwdns152727:0crwdne152727:0" -#. Label of the add_weekly_holidays_section (Section Break) field in DocType +#. Label of the add_weekly_holidays_section (Section Break) field in PageType #. 'CRM Holiday List' -#: crm/fcrm/doctype/crm_holiday_list/crm_holiday_list.json +#: crm/fcrm/pagetype/crm_holiday_list/crm_holiday_list.json msgid "Add Weekly Holidays" msgstr "crwdns152729:0crwdne152729:0" @@ -363,8 +363,8 @@ msgstr "crwdns152737:0crwdne152737:0" msgid "Add sample data" msgstr "crwdns156112:0crwdne156112:0" -#. Description of the 'Icon' (Code) field in DocType 'CRM Dropdown Item' -#: crm/fcrm/doctype/crm_dropdown_item/crm_dropdown_item.json +#. Description of the 'Icon' (Code) field in PageType 'CRM Dropdown Item' +#: crm/fcrm/pagetype/crm_dropdown_item/crm_dropdown_item.json msgid "Add svg code or use feather icons e.g 'settings'" msgstr "crwdns152739:0crwdne152739:0" @@ -372,8 +372,8 @@ msgstr "crwdns152739:0crwdne152739:0" msgid "Add task" msgstr "crwdns152741:0crwdne152741:0" -#. Label of the add_to_holidays (Button) field in DocType 'CRM Holiday List' -#: crm/fcrm/doctype/crm_holiday_list/crm_holiday_list.json +#. Label of the add_to_holidays (Button) field in PageType 'CRM Holiday List' +#: crm/fcrm/pagetype/crm_holiday_list/crm_holiday_list.json msgid "Add to Holidays" msgstr "crwdns152743:0crwdne152743:0" @@ -385,8 +385,8 @@ msgstr "crwdns156114:0crwdne156114:0" msgid "Add, edit, and manage email templates for various CRM communications" msgstr "crwdns156116:0crwdne156116:0" -#. Label of the address (Link) field in DocType 'CRM Organization' -#: crm/fcrm/doctype/crm_organization/crm_organization.json +#. Label of the address (Link) field in PageType 'CRM Organization' +#: crm/fcrm/pagetype/crm_organization/crm_organization.json msgid "Address" msgstr "crwdns152745:0crwdne152745:0" @@ -406,14 +406,14 @@ msgid "Agent is unavailable to take the call, please call after some time." msgstr "crwdns152747:0crwdne152747:0" #. Name of a role -#: crm/fcrm/doctype/crm_exotel_settings/crm_exotel_settings.json -#: crm/fcrm/doctype/crm_fields_layout/crm_fields_layout.json -#: crm/fcrm/doctype/crm_form_script/crm_form_script.json -#: crm/fcrm/doctype/crm_industry/crm_industry.json -#: crm/fcrm/doctype/crm_lead/crm_lead.json -#: crm/fcrm/doctype/crm_lead_source/crm_lead_source.json -#: crm/fcrm/doctype/crm_lead_status/crm_lead_status.json -#: crm/fcrm/doctype/fcrm_settings/fcrm_settings.json +#: crm/fcrm/pagetype/crm_exotel_settings/crm_exotel_settings.json +#: crm/fcrm/pagetype/crm_fields_layout/crm_fields_layout.json +#: crm/fcrm/pagetype/crm_form_script/crm_form_script.json +#: crm/fcrm/pagetype/crm_industry/crm_industry.json +#: crm/fcrm/pagetype/crm_lead/crm_lead.json +#: crm/fcrm/pagetype/crm_lead_source/crm_lead_source.json +#: crm/fcrm/pagetype/crm_lead_status/crm_lead_status.json +#: crm/fcrm/pagetype/fcrm_settings/fcrm_settings.json #: frontend/src/components/Settings/EmailTemplate/EmailTemplates.vue:76 #: frontend/src/components/Settings/Users.vue:85 msgid "All" @@ -426,16 +426,16 @@ msgstr "crwdns152749:0crwdne152749:0" msgid "All day" msgstr "crwdns158770:0crwdne158770:0" -#. Label of the amount (Currency) field in DocType 'CRM Products' -#: crm/fcrm/doctype/crm_products/crm_products.json +#. Label of the amount (Currency) field in PageType 'CRM Products' +#: crm/fcrm/pagetype/crm_products/crm_products.json #: frontend/src/pages/Contact.vue:499 frontend/src/pages/MobileContact.vue:507 #: frontend/src/pages/MobileOrganization.vue:451 #: frontend/src/pages/Organization.vue:472 msgid "Amount" msgstr "crwdns152751:0crwdne152751:0" -#. Description of the 'Net Amount' (Currency) field in DocType 'CRM Products' -#: crm/fcrm/doctype/crm_products/crm_products.json +#. Description of the 'Net Amount' (Currency) field in PageType 'CRM Products' +#: crm/fcrm/pagetype/crm_products/crm_products.json msgid "Amount after discount" msgstr "crwdns156120:0crwdne156120:0" @@ -447,13 +447,13 @@ msgstr "crwdns156122:0crwdne156122:0" msgid "An error occurred while updating the document" msgstr "crwdns157248:0crwdne157248:0" -#. Description of the 'Favicon' (Attach) field in DocType 'FCRM Settings' -#: crm/fcrm/doctype/fcrm_settings/fcrm_settings.json +#. Description of the 'Favicon' (Attach) field in PageType 'FCRM Settings' +#: crm/fcrm/pagetype/fcrm_settings/fcrm_settings.json msgid "An icon file with .ico extension. Should be 16 x 16 px. Generated using a favicon generator. [favicon-generator.org]" msgstr "crwdns152753:0crwdne152753:0" -#. Description of the 'Logo' (Attach) field in DocType 'FCRM Settings' -#: crm/fcrm/doctype/fcrm_settings/fcrm_settings.json +#. Description of the 'Logo' (Attach) field in PageType 'FCRM Settings' +#: crm/fcrm/pagetype/fcrm_settings/fcrm_settings.json msgid "An image with 1:1 & 2:1 ratio is preferred" msgstr "crwdns152755:0crwdne152755:0" @@ -461,12 +461,12 @@ msgstr "crwdns152755:0crwdne152755:0" msgid "And" msgstr "crwdns152757:0crwdne152757:0" -#. Label of the annual_revenue (Currency) field in DocType 'CRM Deal' -#. Label of the annual_revenue (Currency) field in DocType 'CRM Lead' -#. Label of the annual_revenue (Currency) field in DocType 'CRM Organization' -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_lead/crm_lead.json -#: crm/fcrm/doctype/crm_organization/crm_organization.json +#. Label of the annual_revenue (Currency) field in PageType 'CRM Deal' +#. Label of the annual_revenue (Currency) field in PageType 'CRM Lead' +#. Label of the annual_revenue (Currency) field in PageType 'CRM Organization' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_lead/crm_lead.json +#: crm/fcrm/pagetype/crm_organization/crm_organization.json msgid "Annual Revenue" msgstr "crwdns152759:0crwdne152759:0" @@ -488,13 +488,13 @@ msgstr "crwdns152765:0crwdne152765:0" msgid "Apply" msgstr "crwdns152767:0crwdne152767:0" -#. Label of the apply_on (Link) field in DocType 'CRM Service Level Agreement' -#: crm/fcrm/doctype/crm_service_level_agreement/crm_service_level_agreement.json +#. Label of the apply_on (Link) field in PageType 'CRM Service Level Agreement' +#: crm/fcrm/pagetype/crm_service_level_agreement/crm_service_level_agreement.json msgid "Apply On" msgstr "crwdns152769:0crwdne152769:0" -#. Label of the view (Select) field in DocType 'CRM Form Script' -#: crm/fcrm/doctype/crm_form_script/crm_form_script.json +#. Label of the view (Select) field in PageType 'CRM Form Script' +#: crm/fcrm/pagetype/crm_form_script/crm_form_script.json msgid "Apply To" msgstr "crwdns152771:0crwdne152771:0" @@ -540,10 +540,10 @@ msgid "Are you sure you want to go back? Unsaved changes will be lost." msgstr "crwdns158778:0crwdne158778:0" #: frontend/src/composables/frappecloud.js:24 -msgid "Are you sure you want to login to your Frappe Cloud dashboard?" +msgid "Are you sure you want to login to your Jingrow Cloud dashboard?" msgstr "crwdns152783:0crwdne152783:0" -#: crm/fcrm/doctype/erpnext_crm_settings/erpnext_crm_settings.js:9 +#: crm/fcrm/pagetype/erpnext_crm_settings/erpnext_crm_settings.js:9 msgid "Are you sure you want to reset 'Create Quotation from CRM Deal' Form Script?" msgstr "crwdns152785:0crwdne152785:0" @@ -555,7 +555,7 @@ msgstr "crwdns156126:0{0}crwdne156126:0" msgid "Are you sure you want to unlink {0} linked item(s)?" msgstr "crwdns156128:0{0}crwdne156128:0" -#: crm/fcrm/doctype/fcrm_settings/fcrm_settings.py:193 +#: crm/fcrm/pagetype/fcrm_settings/fcrm_settings.py:193 msgid "Ask your manager to set up the Exchange Rate Provider, as default provider does not support currency conversion for {0} to {1}." msgstr "crwdns157250:0{0}crwdnd157250:0{1}crwdne157250:0" @@ -581,8 +581,8 @@ msgstr "crwdns152789:0crwdne152789:0" msgid "Assign to me" msgstr "crwdns158362:0crwdne158362:0" -#. Label of the assigned_to (Link) field in DocType 'CRM Task' -#: crm/fcrm/doctype/crm_task/crm_task.json +#. Label of the assigned_to (Link) field in PageType 'CRM Task' +#: crm/fcrm/pagetype/crm_task/crm_task.json msgid "Assigned To" msgstr "crwdns152791:0crwdne152791:0" @@ -594,13 +594,13 @@ msgstr "crwdns158784:0crwdne158784:0" msgid "Assignees" msgstr "crwdns158786:0crwdne158786:0" -#. Option for the 'Type' (Select) field in DocType 'CRM Notification' -#: crm/fcrm/doctype/crm_notification/crm_notification.json +#. Option for the 'Type' (Select) field in PageType 'CRM Notification' +#: crm/fcrm/pagetype/crm_notification/crm_notification.json msgid "Assignment" msgstr "crwdns152793:0crwdne152793:0" -#. Label of a shortcut in the Frappe CRM Workspace -#: crm/fcrm/workspace/frappe_crm/frappe_crm.json +#. Label of a shortcut in the Jingrow CRM Workspace +#: crm/fcrm/workspace/jingrow_crm/jingrow_crm.json msgid "Assignment Rule" msgstr "crwdns152795:0crwdne152795:0" @@ -678,14 +678,14 @@ msgstr "crwdns152805:0crwdne152805:0" msgid "Attendees" msgstr "crwdns158808:0crwdne158808:0" -#. Label of the auth_token (Password) field in DocType 'CRM Twilio Settings' -#: crm/fcrm/doctype/crm_twilio_settings/crm_twilio_settings.json +#. Label of the auth_token (Password) field in PageType 'CRM Twilio Settings' +#: crm/fcrm/pagetype/crm_twilio_settings/crm_twilio_settings.json msgid "Auth Token" msgstr "crwdns152807:0crwdne152807:0" -#. Label of the auto_update_expected_deal_value (Check) field in DocType 'FCRM +#. Label of the auto_update_expected_deal_value (Check) field in PageType 'FCRM #. Settings' -#: crm/fcrm/doctype/fcrm_settings/fcrm_settings.json +#: crm/fcrm/pagetype/fcrm_settings/fcrm_settings.json msgid "Auto Update Expected Deal Value" msgstr "crwdns159276:0crwdne159276:0" @@ -702,8 +702,8 @@ msgid "Auto update of expected deal value enabled" msgstr "crwdns159282:0crwdne159282:0" #. Description of the 'Auto Update Expected Deal Value' (Check) field in -#. DocType 'FCRM Settings' -#: crm/fcrm/doctype/fcrm_settings/fcrm_settings.json +#. PageType 'FCRM Settings' +#: crm/fcrm/pagetype/fcrm_settings/fcrm_settings.json #: frontend/src/components/Settings/ForecastingSettings.vue:46 msgid "Automatically update \"Expected Deal Value\" based on the total value of associated products in a deal" msgstr "crwdns159284:0crwdne159284:0" @@ -793,8 +793,8 @@ msgstr "crwdns152811:0crwdne152811:0" msgid "Back to file upload" msgstr "crwdns152813:0crwdne152813:0" -#. Option for the 'Status' (Select) field in DocType 'CRM Task' -#: crm/fcrm/doctype/crm_task/crm_task.json +#. Option for the 'Status' (Select) field in PageType 'CRM Task' +#: crm/fcrm/pagetype/crm_task/crm_task.json msgid "Backlog" msgstr "crwdns152815:0crwdne152815:0" @@ -818,8 +818,8 @@ msgstr "crwdns156164:0crwdne156164:0" msgid "Brand settings" msgstr "crwdns156166:0crwdne156166:0" -#. Label of the branding_tab (Tab Break) field in DocType 'FCRM Settings' -#: crm/fcrm/doctype/fcrm_settings/fcrm_settings.json +#. Label of the branding_tab (Tab Break) field in PageType 'FCRM Settings' +#: crm/fcrm/pagetype/fcrm_settings/fcrm_settings.json msgid "Branding" msgstr "crwdns152821:0crwdne152821:0" @@ -827,8 +827,8 @@ msgstr "crwdns152821:0crwdne152821:0" msgid "Bulk Edit" msgstr "crwdns152823:0crwdne152823:0" -#. Option for the 'Status' (Select) field in DocType 'CRM Call Log' -#: crm/fcrm/doctype/crm_call_log/crm_call_log.json +#. Option for the 'Status' (Select) field in PageType 'CRM Call Log' +#: crm/fcrm/pagetype/crm_call_log/crm_call_log.json msgid "Busy" msgstr "crwdns152825:0crwdne152825:0" @@ -838,174 +838,174 @@ msgstr "crwdns152825:0crwdne152825:0" msgid "CC" msgstr "crwdns152827:0crwdne152827:0" -#. Name of a DocType -#: crm/fcrm/doctype/crm_call_log/crm_call_log.json +#. Name of a PageType +#: crm/fcrm/pagetype/crm_call_log/crm_call_log.json msgid "CRM Call Log" msgstr "crwdns152829:0crwdne152829:0" -#. Name of a DocType -#: crm/fcrm/doctype/crm_communication_status/crm_communication_status.json +#. Name of a PageType +#: crm/fcrm/pagetype/crm_communication_status/crm_communication_status.json msgid "CRM Communication Status" msgstr "crwdns152831:0crwdne152831:0" -#. Name of a DocType -#: crm/fcrm/doctype/crm_contacts/crm_contacts.json +#. Name of a PageType +#: crm/fcrm/pagetype/crm_contacts/crm_contacts.json msgid "CRM Contacts" msgstr "crwdns152833:0crwdne152833:0" -#. Name of a DocType -#: crm/fcrm/doctype/crm_dashboard/crm_dashboard.json +#. Name of a PageType +#: crm/fcrm/pagetype/crm_dashboard/crm_dashboard.json #: frontend/src/pages/Dashboard.vue:304 msgid "CRM Dashboard" msgstr "crwdns156168:0crwdne156168:0" -#. Name of a DocType -#: crm/fcrm/doctype/crm_deal/crm_deal.json +#. Name of a PageType +#: crm/fcrm/pagetype/crm_deal/crm_deal.json msgid "CRM Deal" msgstr "crwdns152835:0crwdne152835:0" -#. Name of a DocType -#: crm/fcrm/doctype/crm_deal_status/crm_deal_status.json +#. Name of a PageType +#: crm/fcrm/pagetype/crm_deal_status/crm_deal_status.json msgid "CRM Deal Status" msgstr "crwdns152837:0crwdne152837:0" -#. Name of a DocType -#: crm/fcrm/doctype/crm_dropdown_item/crm_dropdown_item.json +#. Name of a PageType +#: crm/fcrm/pagetype/crm_dropdown_item/crm_dropdown_item.json msgid "CRM Dropdown Item" msgstr "crwdns152839:0crwdne152839:0" -#. Name of a DocType -#: crm/fcrm/doctype/crm_exotel_settings/crm_exotel_settings.json +#. Name of a PageType +#: crm/fcrm/pagetype/crm_exotel_settings/crm_exotel_settings.json msgid "CRM Exotel Settings" msgstr "crwdns152841:0crwdne152841:0" -#. Name of a DocType -#: crm/fcrm/doctype/crm_fields_layout/crm_fields_layout.json +#. Name of a PageType +#: crm/fcrm/pagetype/crm_fields_layout/crm_fields_layout.json msgid "CRM Fields Layout" msgstr "crwdns152843:0crwdne152843:0" -#. Name of a DocType -#: crm/fcrm/doctype/crm_form_script/crm_form_script.json +#. Name of a PageType +#: crm/fcrm/pagetype/crm_form_script/crm_form_script.json msgid "CRM Form Script" msgstr "crwdns152845:0crwdne152845:0" -#. Name of a DocType -#: crm/fcrm/doctype/crm_global_settings/crm_global_settings.json +#. Name of a PageType +#: crm/fcrm/pagetype/crm_global_settings/crm_global_settings.json msgid "CRM Global Settings" msgstr "crwdns152847:0crwdne152847:0" -#. Name of a DocType -#: crm/fcrm/doctype/crm_holiday/crm_holiday.json +#. Name of a PageType +#: crm/fcrm/pagetype/crm_holiday/crm_holiday.json msgid "CRM Holiday" msgstr "crwdns152849:0crwdne152849:0" -#. Name of a DocType -#: crm/fcrm/doctype/crm_holiday_list/crm_holiday_list.json +#. Name of a PageType +#: crm/fcrm/pagetype/crm_holiday_list/crm_holiday_list.json msgid "CRM Holiday List" msgstr "crwdns152851:0crwdne152851:0" -#. Name of a DocType -#: crm/fcrm/doctype/crm_industry/crm_industry.json +#. Name of a PageType +#: crm/fcrm/pagetype/crm_industry/crm_industry.json msgid "CRM Industry" msgstr "crwdns152853:0crwdne152853:0" -#. Name of a DocType -#: crm/fcrm/doctype/crm_invitation/crm_invitation.json +#. Name of a PageType +#: crm/fcrm/pagetype/crm_invitation/crm_invitation.json msgid "CRM Invitation" msgstr "crwdns152855:0crwdne152855:0" -#. Name of a DocType -#: crm/fcrm/doctype/crm_lead/crm_lead.json +#. Name of a PageType +#: crm/fcrm/pagetype/crm_lead/crm_lead.json msgid "CRM Lead" msgstr "crwdns152857:0crwdne152857:0" -#. Name of a DocType -#: crm/fcrm/doctype/crm_lead_source/crm_lead_source.json +#. Name of a PageType +#: crm/fcrm/pagetype/crm_lead_source/crm_lead_source.json msgid "CRM Lead Source" msgstr "crwdns152859:0crwdne152859:0" -#. Name of a DocType -#: crm/fcrm/doctype/crm_lead_status/crm_lead_status.json +#. Name of a PageType +#: crm/fcrm/pagetype/crm_lead_status/crm_lead_status.json msgid "CRM Lead Status" msgstr "crwdns152861:0crwdne152861:0" -#. Name of a DocType -#: crm/fcrm/doctype/crm_lost_reason/crm_lost_reason.json +#. Name of a PageType +#: crm/fcrm/pagetype/crm_lost_reason/crm_lost_reason.json msgid "CRM Lost Reason" msgstr "crwdns156170:0crwdne156170:0" -#. Name of a DocType -#: crm/fcrm/doctype/crm_notification/crm_notification.json +#. Name of a PageType +#: crm/fcrm/pagetype/crm_notification/crm_notification.json msgid "CRM Notification" msgstr "crwdns152863:0crwdne152863:0" -#. Name of a DocType -#: crm/fcrm/doctype/crm_organization/crm_organization.json +#. Name of a PageType +#: crm/fcrm/pagetype/crm_organization/crm_organization.json msgid "CRM Organization" msgstr "crwdns152865:0crwdne152865:0" -#. Label of a shortcut in the Frappe CRM Workspace -#: crm/fcrm/workspace/frappe_crm/frappe_crm.json +#. Label of a shortcut in the Jingrow CRM Workspace +#: crm/fcrm/workspace/jingrow_crm/jingrow_crm.json msgid "CRM Portal Page" msgstr "crwdns152867:0crwdne152867:0" -#. Name of a DocType -#: crm/fcrm/doctype/crm_product/crm_product.json +#. Name of a PageType +#: crm/fcrm/pagetype/crm_product/crm_product.json msgid "CRM Product" msgstr "crwdns156172:0crwdne156172:0" -#. Name of a DocType -#: crm/fcrm/doctype/crm_products/crm_products.json +#. Name of a PageType +#: crm/fcrm/pagetype/crm_products/crm_products.json msgid "CRM Products" msgstr "crwdns156174:0crwdne156174:0" -#. Name of a DocType -#: crm/fcrm/doctype/crm_service_day/crm_service_day.json +#. Name of a PageType +#: crm/fcrm/pagetype/crm_service_day/crm_service_day.json msgid "CRM Service Day" msgstr "crwdns152869:0crwdne152869:0" -#. Name of a DocType -#: crm/fcrm/doctype/crm_service_level_agreement/crm_service_level_agreement.json +#. Name of a PageType +#: crm/fcrm/pagetype/crm_service_level_agreement/crm_service_level_agreement.json msgid "CRM Service Level Agreement" msgstr "crwdns152871:0crwdne152871:0" -#. Name of a DocType -#: crm/fcrm/doctype/crm_service_level_priority/crm_service_level_priority.json +#. Name of a PageType +#: crm/fcrm/pagetype/crm_service_level_priority/crm_service_level_priority.json msgid "CRM Service Level Priority" msgstr "crwdns152873:0crwdne152873:0" -#. Name of a DocType -#: crm/fcrm/doctype/crm_status_change_log/crm_status_change_log.json +#. Name of a PageType +#: crm/fcrm/pagetype/crm_status_change_log/crm_status_change_log.json msgid "CRM Status Change Log" msgstr "crwdns152875:0crwdne152875:0" -#. Name of a DocType -#: crm/fcrm/doctype/crm_task/crm_task.json +#. Name of a PageType +#: crm/fcrm/pagetype/crm_task/crm_task.json msgid "CRM Task" msgstr "crwdns152877:0crwdne152877:0" -#. Name of a DocType -#: crm/fcrm/doctype/crm_telephony_agent/crm_telephony_agent.json +#. Name of a PageType +#: crm/fcrm/pagetype/crm_telephony_agent/crm_telephony_agent.json msgid "CRM Telephony Agent" msgstr "crwdns152879:0crwdne152879:0" -#. Name of a DocType -#: crm/fcrm/doctype/crm_telephony_phone/crm_telephony_phone.json +#. Name of a PageType +#: crm/fcrm/pagetype/crm_telephony_phone/crm_telephony_phone.json msgid "CRM Telephony Phone" msgstr "crwdns152881:0crwdne152881:0" -#. Name of a DocType -#: crm/fcrm/doctype/crm_territory/crm_territory.json +#. Name of a PageType +#: crm/fcrm/pagetype/crm_territory/crm_territory.json msgid "CRM Territory" msgstr "crwdns152883:0crwdne152883:0" -#. Name of a DocType -#: crm/fcrm/doctype/crm_twilio_settings/crm_twilio_settings.json +#. Name of a PageType +#: crm/fcrm/pagetype/crm_twilio_settings/crm_twilio_settings.json msgid "CRM Twilio Settings" msgstr "crwdns152885:0crwdne152885:0" -#. Name of a DocType -#: crm/fcrm/doctype/crm_view_settings/crm_view_settings.json +#. Name of a PageType +#: crm/fcrm/pagetype/crm_view_settings/crm_view_settings.json msgid "CRM View Settings" msgstr "crwdns152887:0crwdne152887:0" @@ -1021,13 +1021,13 @@ msgstr "crwdns152889:0crwdne152889:0" msgid "Call Details" msgstr "crwdns152891:0crwdne152891:0" -#. Label of the receiver (Link) field in DocType 'CRM Call Log' -#: crm/fcrm/doctype/crm_call_log/crm_call_log.json +#. Label of the receiver (Link) field in PageType 'CRM Call Log' +#: crm/fcrm/pagetype/crm_call_log/crm_call_log.json msgid "Call Received By" msgstr "crwdns152893:0crwdne152893:0" -#. Description of the 'Duration' (Duration) field in DocType 'CRM Call Log' -#: crm/fcrm/doctype/crm_call_log/crm_call_log.json +#. Description of the 'Duration' (Duration) field in PageType 'CRM Call Log' +#: crm/fcrm/pagetype/crm_call_log/crm_call_log.json msgid "Call duration in seconds" msgstr "crwdns152895:0crwdne152895:0" @@ -1045,8 +1045,8 @@ msgstr "crwdns152897:0{0}crwdne152897:0" msgid "Call with John Doe" msgstr "crwdns152899:0crwdne152899:0" -#. Label of the caller (Link) field in DocType 'CRM Call Log' -#: crm/fcrm/doctype/crm_call_log/crm_call_log.json +#. Label of the caller (Link) field in PageType 'CRM Call Log' +#: crm/fcrm/pagetype/crm_call_log/crm_call_log.json msgid "Caller" msgstr "crwdns152901:0crwdne152901:0" @@ -1083,10 +1083,10 @@ msgstr "crwdns152909:0crwdne152909:0" msgid "Cancel" msgstr "crwdns152911:0crwdne152911:0" -#. Option for the 'Status' (Select) field in DocType 'CRM Call Log' -#. Option for the 'Status' (Select) field in DocType 'CRM Task' -#: crm/fcrm/doctype/crm_call_log/crm_call_log.json -#: crm/fcrm/doctype/crm_task/crm_task.json +#. Option for the 'Status' (Select) field in PageType 'CRM Call Log' +#. Option for the 'Status' (Select) field in PageType 'CRM Task' +#: crm/fcrm/pagetype/crm_call_log/crm_call_log.json +#: crm/fcrm/pagetype/crm_task/crm_task.json msgid "Canceled" msgstr "crwdns152913:0crwdne152913:0" @@ -1094,7 +1094,7 @@ msgstr "crwdns152913:0crwdne152913:0" msgid "Cannot change role of user with Admin access" msgstr "crwdns156180:0crwdne156180:0" -#: crm/fcrm/doctype/fcrm_settings/fcrm_settings.py:34 +#: crm/fcrm/pagetype/fcrm_settings/fcrm_settings.py:34 msgid "Cannot delete standard items {0}" msgstr "crwdns152915:0{0}crwdne152915:0" @@ -1189,8 +1189,8 @@ msgstr "crwdns152931:0crwdne152931:0" msgid "Clear Sort" msgstr "crwdns152933:0crwdne152933:0" -#. Label of the clear_table (Button) field in DocType 'CRM Holiday List' -#: crm/fcrm/doctype/crm_holiday_list/crm_holiday_list.json +#. Label of the clear_table (Button) field in PageType 'CRM Holiday List' +#: crm/fcrm/pagetype/crm_holiday_list/crm_holiday_list.json msgid "Clear Table" msgstr "crwdns152935:0crwdne152935:0" @@ -1211,8 +1211,8 @@ msgstr "crwdns152939:0crwdne152939:0" msgid "Close panel" msgstr "crwdns158822:0crwdne158822:0" -#. Label of the closed_date (Date) field in DocType 'CRM Deal' -#: crm/fcrm/doctype/crm_deal/crm_deal.json +#. Label of the closed_date (Date) field in PageType 'CRM Deal' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json msgid "Closed Date" msgstr "crwdns156198:0crwdne156198:0" @@ -1224,10 +1224,10 @@ msgstr "crwdns152943:0crwdne152943:0" msgid "Collapsible" msgstr "crwdns152945:0crwdne152945:0" -#. Label of the color (Select) field in DocType 'CRM Deal Status' -#. Label of the color (Select) field in DocType 'CRM Lead Status' -#: crm/fcrm/doctype/crm_deal_status/crm_deal_status.json -#: crm/fcrm/doctype/crm_lead_status/crm_lead_status.json +#. Label of the color (Select) field in PageType 'CRM Deal Status' +#. Label of the color (Select) field in PageType 'CRM Lead Status' +#: crm/fcrm/pagetype/crm_deal_status/crm_deal_status.json +#: crm/fcrm/pagetype/crm_lead_status/crm_lead_status.json msgid "Color" msgstr "crwdns152947:0crwdne152947:0" @@ -1235,20 +1235,20 @@ msgstr "crwdns152947:0crwdne152947:0" msgid "Column" msgstr "crwdns152949:0crwdne152949:0" -#. Label of the column_field (Data) field in DocType 'CRM View Settings' -#: crm/fcrm/doctype/crm_view_settings/crm_view_settings.json +#. Label of the column_field (Data) field in PageType 'CRM View Settings' +#: crm/fcrm/pagetype/crm_view_settings/crm_view_settings.json #: frontend/src/components/Kanban/KanbanSettings.vue:12 msgid "Column Field" msgstr "crwdns152951:0crwdne152951:0" -#. Label of the columns (Code) field in DocType 'CRM View Settings' -#: crm/fcrm/doctype/crm_view_settings/crm_view_settings.json +#. Label of the columns (Code) field in PageType 'CRM View Settings' +#: crm/fcrm/pagetype/crm_view_settings/crm_view_settings.json #: frontend/src/components/ColumnSettings.vue:4 msgid "Columns" msgstr "crwdns152953:0crwdne152953:0" -#. Label of the comment (Link) field in DocType 'CRM Notification' -#: crm/fcrm/doctype/crm_notification/crm_notification.json +#. Label of the comment (Link) field in PageType 'CRM Notification' +#: crm/fcrm/pagetype/crm_notification/crm_notification.json #: frontend/src/components/CommentBox.vue:78 #: frontend/src/components/CommunicationArea.vue:16 #: frontend/src/components/Layouts/AppSidebar.vue:579 @@ -1264,20 +1264,20 @@ msgstr "crwdns152957:0crwdne152957:0" msgid "Common reasons for losing deals" msgstr "crwdns156200:0crwdne156200:0" -#. Label of the communication_status (Link) field in DocType 'CRM Deal' -#. Label of the communication_status (Link) field in DocType 'CRM Lead' -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_lead/crm_lead.json +#. Label of the communication_status (Link) field in PageType 'CRM Deal' +#. Label of the communication_status (Link) field in PageType 'CRM Lead' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_lead/crm_lead.json msgid "Communication Status" msgstr "crwdns152959:0crwdne152959:0" -#. Label of a shortcut in the Frappe CRM Workspace -#: crm/fcrm/workspace/frappe_crm/frappe_crm.json +#. Label of a shortcut in the Jingrow CRM Workspace +#: crm/fcrm/workspace/jingrow_crm/jingrow_crm.json msgid "Communication Statuses" msgstr "crwdns152961:0crwdne152961:0" -#. Label of the erpnext_company (Data) field in DocType 'ERPNext CRM Settings' -#: crm/fcrm/doctype/erpnext_crm_settings/erpnext_crm_settings.json +#. Label of the erpnext_company (Data) field in PageType 'ERPNext CRM Settings' +#: crm/fcrm/pagetype/erpnext_crm_settings/erpnext_crm_settings.json msgid "Company in ERPNext Site" msgstr "crwdns152963:0crwdne152963:0" @@ -1285,18 +1285,18 @@ msgstr "crwdns152963:0crwdne152963:0" msgid "Complete Registration" msgstr "crwdns158634:0crwdne158634:0" -#. Option for the 'Status' (Select) field in DocType 'CRM Call Log' -#: crm/fcrm/doctype/crm_call_log/crm_call_log.json +#. Option for the 'Status' (Select) field in PageType 'CRM Call Log' +#: crm/fcrm/pagetype/crm_call_log/crm_call_log.json msgid "Completed" msgstr "crwdns152965:0crwdne152965:0" -#. Option for the 'Device' (Select) field in DocType 'CRM Telephony Agent' -#: crm/fcrm/doctype/crm_telephony_agent/crm_telephony_agent.json +#. Option for the 'Device' (Select) field in PageType 'CRM Telephony Agent' +#: crm/fcrm/pagetype/crm_telephony_agent/crm_telephony_agent.json msgid "Computer" msgstr "crwdns152967:0crwdne152967:0" -#. Label of the condition (Code) field in DocType 'CRM Service Level Agreement' -#: crm/fcrm/doctype/crm_service_level_agreement/crm_service_level_agreement.json +#. Label of the condition (Code) field in PageType 'CRM Service Level Agreement' +#: crm/fcrm/pagetype/crm_service_level_agreement/crm_service_level_agreement.json msgid "Condition" msgstr "crwdns152969:0crwdne152969:0" @@ -1354,17 +1354,17 @@ msgstr "crwdns158826:0crwdne158826:0" msgid "Connect your email" msgstr "crwdns156212:0crwdne156212:0" -#. Label of the contact (Link) field in DocType 'CRM Contacts' -#. Label of the contact (Link) field in DocType 'CRM Deal' -#: crm/fcrm/doctype/crm_contacts/crm_contacts.json -#: crm/fcrm/doctype/crm_deal/crm_deal.json +#. Label of the contact (Link) field in PageType 'CRM Contacts' +#. Label of the contact (Link) field in PageType 'CRM Deal' +#: crm/fcrm/pagetype/crm_contacts/crm_contacts.json +#: crm/fcrm/pagetype/crm_deal/crm_deal.json #: frontend/src/components/Layouts/AppSidebar.vue:552 #: frontend/src/components/Modals/ConvertToDealModal.vue:51 #: frontend/src/pages/MobileLead.vue:145 msgid "Contact" msgstr "crwdns152973:0crwdne152973:0" -#: crm/fcrm/doctype/crm_lead/crm_lead.py:212 +#: crm/fcrm/pagetype/crm_lead/crm_lead.py:212 msgid "Contact Already Exists" msgstr "crwdns152975:0crwdne152975:0" @@ -1384,7 +1384,7 @@ msgstr "crwdns152979:0crwdne152979:0" msgid "Contact already added" msgstr "crwdns152981:0crwdne152981:0" -#: crm/fcrm/doctype/crm_lead/crm_lead.py:211 +#: crm/fcrm/pagetype/crm_lead/crm_lead.py:211 msgid "Contact already exists with {0}" msgstr "crwdns152983:0{0}crwdne152983:0" @@ -1405,18 +1405,18 @@ msgstr "crwdns152987:0crwdne152987:0" msgid "Contact updated" msgstr "crwdns156218:0crwdne156218:0" -#. Label of the contacts_tab (Tab Break) field in DocType 'CRM Deal' -#. Label of the contacts (Table) field in DocType 'CRM Deal' -#. Label of a shortcut in the Frappe CRM Workspace -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/workspace/frappe_crm/frappe_crm.json +#. Label of the contacts_tab (Tab Break) field in PageType 'CRM Deal' +#. Label of the contacts (Table) field in PageType 'CRM Deal' +#. Label of a shortcut in the Jingrow CRM Workspace +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/workspace/jingrow_crm/jingrow_crm.json #: frontend/src/pages/Contact.vue:234 frontend/src/pages/MobileContact.vue:212 #: frontend/src/pages/MobileOrganization.vue:331 msgid "Contacts" msgstr "crwdns152989:0crwdne152989:0" -#. Label of the content (Text Editor) field in DocType 'FCRM Note' -#: crm/fcrm/doctype/fcrm_note/fcrm_note.json +#. Label of the content (Text Editor) field in PageType 'FCRM Note' +#: crm/fcrm/pagetype/fcrm_note/fcrm_note.json #: frontend/src/components/Modals/NoteModal.vue:33 #: frontend/src/components/Settings/EmailTemplate/EditEmailTemplate.vue:89 #: frontend/src/components/Settings/EmailTemplate/EditEmailTemplate.vue:102 @@ -1456,8 +1456,8 @@ msgstr "crwdns156222:0crwdne156222:0" msgid "Convert to Deal" msgstr "crwdns152997:0crwdne152997:0" -#. Label of the converted (Check) field in DocType 'CRM Lead' -#: crm/fcrm/doctype/crm_lead/crm_lead.json +#. Label of the converted (Check) field in PageType 'CRM Lead' +#: crm/fcrm/pagetype/crm_lead/crm_lead.json msgid "Converted" msgstr "crwdns152999:0crwdne152999:0" @@ -1533,9 +1533,9 @@ msgstr "crwdns153017:0crwdne153017:0" msgid "Create an event" msgstr "crwdns158828:0crwdne158828:0" -#. Label of the create_customer_on_status_change (Check) field in DocType +#. Label of the create_customer_on_status_change (Check) field in PageType #. 'ERPNext CRM Settings' -#: crm/fcrm/doctype/erpnext_crm_settings/erpnext_crm_settings.json +#: crm/fcrm/pagetype/erpnext_crm_settings/erpnext_crm_settings.json msgid "Create customer on status change" msgstr "crwdns153019:0crwdne153019:0" @@ -1560,13 +1560,13 @@ msgstr "crwdns156232:0crwdne156232:0" msgid "Create your first task" msgstr "crwdns156234:0crwdne156234:0" -#. Label of the currency (Link) field in DocType 'CRM Deal' -#. Label of the currency (Link) field in DocType 'CRM Organization' -#. Label of the currency (Link) field in DocType 'FCRM Settings' -#. Label of the currency_tab (Tab Break) field in DocType 'FCRM Settings' -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_organization/crm_organization.json -#: crm/fcrm/doctype/fcrm_settings/fcrm_settings.json +#. Label of the currency (Link) field in PageType 'CRM Deal' +#. Label of the currency (Link) field in PageType 'CRM Organization' +#. Label of the currency (Link) field in PageType 'FCRM Settings' +#. Label of the currency_tab (Tab Break) field in PageType 'FCRM Settings' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_organization/crm_organization.json +#: crm/fcrm/pagetype/fcrm_settings/fcrm_settings.json #: frontend/src/components/Settings/CurrencySettings.vue:31 msgid "Currency" msgstr "crwdns153023:0crwdne153023:0" @@ -1631,13 +1631,13 @@ msgstr "crwdns156252:0crwdne156252:0" msgid "Data" msgstr "crwdns153029:0crwdne153029:0" -#. Option for the 'Type' (Select) field in DocType 'CRM Fields Layout' -#: crm/fcrm/doctype/crm_fields_layout/crm_fields_layout.json +#. Option for the 'Type' (Select) field in PageType 'CRM Fields Layout' +#: crm/fcrm/pagetype/crm_fields_layout/crm_fields_layout.json msgid "Data Fields" msgstr "crwdns153031:0crwdne153031:0" -#. Label of the date (Date) field in DocType 'CRM Holiday' -#: crm/api/dashboard.py:601 crm/fcrm/doctype/crm_holiday/crm_holiday.json +#. Label of the date (Date) field in PageType 'CRM Holiday' +#: crm/api/dashboard.py:601 crm/fcrm/pagetype/crm_holiday/crm_holiday.json #: frontend/src/components/Calendar/CalendarEventPanel.vue:202 msgid "Date" msgstr "crwdns153033:0crwdne153033:0" @@ -1660,23 +1660,23 @@ msgstr "crwdns158834:0crwdne158834:0" msgid "Deal" msgstr "crwdns153035:0crwdne153035:0" -#. Label of the deal_owner (Link) field in DocType 'CRM Deal' -#: crm/fcrm/doctype/crm_deal/crm_deal.json +#. Label of the deal_owner (Link) field in PageType 'CRM Deal' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json msgid "Deal Owner" msgstr "crwdns153037:0crwdne153037:0" -#. Label of the deal_status (Link) field in DocType 'ERPNext CRM Settings' -#: crm/fcrm/doctype/erpnext_crm_settings/erpnext_crm_settings.json +#. Label of the deal_status (Link) field in PageType 'ERPNext CRM Settings' +#: crm/fcrm/pagetype/erpnext_crm_settings/erpnext_crm_settings.json msgid "Deal Status" msgstr "crwdns153039:0crwdne153039:0" -#. Label of a shortcut in the Frappe CRM Workspace -#: crm/fcrm/workspace/frappe_crm/frappe_crm.json +#. Label of a shortcut in the Jingrow CRM Workspace +#: crm/fcrm/workspace/jingrow_crm/jingrow_crm.json msgid "Deal Statuses" msgstr "crwdns153041:0crwdne153041:0" -#. Label of the deal_value (Currency) field in DocType 'CRM Deal' -#: crm/fcrm/doctype/crm_deal/crm_deal.json +#. Label of the deal_value (Currency) field in PageType 'CRM Deal' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json msgid "Deal Value" msgstr "crwdns156254:0crwdne156254:0" @@ -1694,8 +1694,8 @@ msgstr "crwdns153043:0crwdne153043:0" msgid "Deal value" msgstr "crwdns156260:0crwdne156260:0" -#. Label of a shortcut in the Frappe CRM Workspace -#: crm/fcrm/workspace/frappe_crm/frappe_crm.json +#. Label of a shortcut in the Jingrow CRM Workspace +#: crm/fcrm/workspace/jingrow_crm/jingrow_crm.json #: frontend/src/pages/Deal.vue:480 frontend/src/pages/MobileContact.vue:288 #: frontend/src/pages/MobileDeal.vue:384 #: frontend/src/pages/MobileOrganization.vue:325 @@ -1732,8 +1732,8 @@ msgstr "crwdns156270:0crwdne156270:0" msgid "Dear {{ lead_name }}, \\n\\nThis is a reminder for the payment of {{ grand_total }}. \\n\\nThanks, \\nFrappé" msgstr "crwdns153049:0{{ lead_name }}crwdnd153049:0{{ grand_total }}crwdne153049:0" -#. Label of the default (Check) field in DocType 'CRM Service Level Agreement' -#: crm/fcrm/doctype/crm_service_level_agreement/crm_service_level_agreement.json +#. Label of the default (Check) field in PageType 'CRM Service Level Agreement' +#: crm/fcrm/pagetype/crm_service_level_agreement/crm_service_level_agreement.json msgid "Default" msgstr "crwdns153051:0crwdne153051:0" @@ -1745,8 +1745,8 @@ msgstr "crwdns156272:0crwdne156272:0" msgid "Default Incoming" msgstr "crwdns156274:0crwdne156274:0" -#. Label of the default_medium (Select) field in DocType 'CRM Telephony Agent' -#: crm/fcrm/doctype/crm_telephony_agent/crm_telephony_agent.json +#. Label of the default_medium (Select) field in PageType 'CRM Telephony Agent' +#: crm/fcrm/pagetype/crm_telephony_agent/crm_telephony_agent.json msgid "Default Medium" msgstr "crwdns153053:0crwdne153053:0" @@ -1754,9 +1754,9 @@ msgstr "crwdns153053:0crwdne153053:0" msgid "Default Outgoing" msgstr "crwdns156276:0crwdne156276:0" -#. Label of the default_priority (Check) field in DocType 'CRM Service Level +#. Label of the default_priority (Check) field in PageType 'CRM Service Level #. Priority' -#: crm/fcrm/doctype/crm_service_level_priority/crm_service_level_priority.json +#: crm/fcrm/pagetype/crm_service_level_priority/crm_service_level_priority.json msgid "Default Priority" msgstr "crwdns153055:0crwdne153055:0" @@ -1768,7 +1768,7 @@ msgstr "crwdns156278:0crwdne156278:0" msgid "Default Sending and Inbox" msgstr "crwdns156280:0crwdne156280:0" -#: crm/fcrm/doctype/crm_service_level_agreement/crm_service_level_agreement.py:33 +#: crm/fcrm/pagetype/crm_service_level_agreement/crm_service_level_agreement.py:33 msgid "Default Service Level Agreement already exists for {0}" msgstr "crwdns153057:0{0}crwdne153057:0" @@ -1788,8 +1788,8 @@ msgstr "crwdns153061:0crwdne153061:0" msgid "Default medium" msgstr "crwdns153063:0crwdne153063:0" -#: crm/fcrm/doctype/fcrm_settings/fcrm_settings.js:18 -#: crm/fcrm/doctype/fcrm_settings/fcrm_settings.js:30 +#: crm/fcrm/pagetype/fcrm_settings/fcrm_settings.js:18 +#: crm/fcrm/pagetype/fcrm_settings/fcrm_settings.js:30 msgid "Default statuses, custom fields and layouts restored successfully." msgstr "crwdns153065:0crwdne153065:0" @@ -1825,7 +1825,7 @@ msgstr "crwdns153065:0crwdne153065:0" msgid "Delete" msgstr "crwdns153069:0crwdne153069:0" -#: crm/fcrm/doctype/fcrm_settings/fcrm_settings.js:26 +#: crm/fcrm/pagetype/fcrm_settings/fcrm_settings.js:26 msgid "Delete & Restore" msgstr "crwdns153071:0crwdne153071:0" @@ -1883,14 +1883,14 @@ msgstr "crwdns156292:0{0}crwdne156292:0" msgid "Delete {0} items" msgstr "crwdns156294:0{0}crwdne156294:0" -#. Label of the description (Text Editor) field in DocType 'CRM Holiday' -#. Label of the description (Text Editor) field in DocType 'CRM Lost Reason' -#. Label of the description (Text Editor) field in DocType 'CRM Product' -#. Label of the description (Text Editor) field in DocType 'CRM Task' -#: crm/fcrm/doctype/crm_holiday/crm_holiday.json -#: crm/fcrm/doctype/crm_lost_reason/crm_lost_reason.json -#: crm/fcrm/doctype/crm_product/crm_product.json -#: crm/fcrm/doctype/crm_task/crm_task.json +#. Label of the description (Text Editor) field in PageType 'CRM Holiday' +#. Label of the description (Text Editor) field in PageType 'CRM Lost Reason' +#. Label of the description (Text Editor) field in PageType 'CRM Product' +#. Label of the description (Text Editor) field in PageType 'CRM Task' +#: crm/fcrm/pagetype/crm_holiday/crm_holiday.json +#: crm/fcrm/pagetype/crm_lost_reason/crm_lost_reason.json +#: crm/fcrm/pagetype/crm_product/crm_product.json +#: crm/fcrm/pagetype/crm_task/crm_task.json #: frontend/src/components/Calendar/CalendarEventPanel.vue:152 #: frontend/src/components/Modals/EventModal.vue:134 #: frontend/src/components/Modals/TaskModal.vue:36 @@ -1907,29 +1907,29 @@ msgstr "crwdns158840:0crwdne158840:0" msgid "Desk" msgstr "crwdns153087:0crwdne153087:0" -#. Label of the details (Tab Break) field in DocType 'CRM Lead' -#. Label of the details (Text Editor) field in DocType 'CRM Lead Source' -#: crm/fcrm/doctype/crm_lead/crm_lead.json -#: crm/fcrm/doctype/crm_lead_source/crm_lead_source.json +#. Label of the details (Tab Break) field in PageType 'CRM Lead' +#. Label of the details (Text Editor) field in PageType 'CRM Lead Source' +#: crm/fcrm/pagetype/crm_lead/crm_lead.json +#: crm/fcrm/pagetype/crm_lead_source/crm_lead_source.json #: frontend/src/pages/MobileContact.vue:283 #: frontend/src/pages/MobileDeal.vue:424 frontend/src/pages/MobileLead.vue:331 #: frontend/src/pages/MobileOrganization.vue:320 msgid "Details" msgstr "crwdns153089:0crwdne153089:0" -#. Label of the call_receiving_device (Select) field in DocType 'CRM Telephony +#. Label of the call_receiving_device (Select) field in PageType 'CRM Telephony #. Agent' -#: crm/fcrm/doctype/crm_telephony_agent/crm_telephony_agent.json +#: crm/fcrm/pagetype/crm_telephony_agent/crm_telephony_agent.json #: frontend/src/components/FilesUploader/FilesUploaderArea.vue:39 msgid "Device" msgstr "crwdns153091:0crwdne153091:0" -#: crm/fcrm/doctype/crm_form_script/crm_form_script.js:30 +#: crm/fcrm/pagetype/crm_form_script/crm_form_script.js:30 msgid "Disable" msgstr "crwdns153093:0crwdne153093:0" -#. Label of the disabled (Check) field in DocType 'CRM Product' -#: crm/fcrm/doctype/crm_product/crm_product.json +#. Label of the disabled (Check) field in PageType 'CRM Product' +#: crm/fcrm/pagetype/crm_product/crm_product.json msgid "Disabled" msgstr "crwdns156296:0crwdne156296:0" @@ -1943,27 +1943,27 @@ msgstr "crwdns153095:0crwdne153095:0" msgid "Discard unsaved changes?" msgstr "crwdns158842:0crwdne158842:0" -#. Label of the discount_percentage (Percent) field in DocType 'CRM Products' -#: crm/fcrm/doctype/crm_products/crm_products.json +#. Label of the discount_percentage (Percent) field in PageType 'CRM Products' +#: crm/fcrm/pagetype/crm_products/crm_products.json msgid "Discount %" msgstr "crwdns156298:0crwdne156298:0" -#. Label of the discount_amount (Currency) field in DocType 'CRM Products' -#: crm/fcrm/doctype/crm_products/crm_products.json +#. Label of the discount_amount (Currency) field in PageType 'CRM Products' +#: crm/fcrm/pagetype/crm_products/crm_products.json msgid "Discount Amount" msgstr "crwdns156300:0crwdne156300:0" -#. Label of the dt (Link) field in DocType 'CRM Form Script' -#. Label of the dt (Link) field in DocType 'CRM Global Settings' -#. Label of the dt (Link) field in DocType 'CRM View Settings' -#: crm/fcrm/doctype/crm_form_script/crm_form_script.json -#: crm/fcrm/doctype/crm_global_settings/crm_global_settings.json -#: crm/fcrm/doctype/crm_view_settings/crm_view_settings.json -msgid "DocType" +#. Label of the dt (Link) field in PageType 'CRM Form Script' +#. Label of the dt (Link) field in PageType 'CRM Global Settings' +#. Label of the dt (Link) field in PageType 'CRM View Settings' +#: crm/fcrm/pagetype/crm_form_script/crm_form_script.json +#: crm/fcrm/pagetype/crm_global_settings/crm_global_settings.json +#: crm/fcrm/pagetype/crm_view_settings/crm_view_settings.json +msgid "PageType" msgstr "crwdns153097:0crwdne153097:0" -#. Label of the dt (Link) field in DocType 'CRM Fields Layout' -#: crm/fcrm/doctype/crm_fields_layout/crm_fields_layout.json +#. Label of the dt (Link) field in PageType 'CRM Fields Layout' +#: crm/fcrm/pagetype/crm_fields_layout/crm_fields_layout.json msgid "Document Type" msgstr "crwdns153101:0crwdne153101:0" @@ -1983,8 +1983,8 @@ msgstr "crwdns156302:0crwdne156302:0" msgid "Documentation" msgstr "crwdns156304:0crwdne156304:0" -#. Option for the 'Status' (Select) field in DocType 'CRM Task' -#: crm/fcrm/doctype/crm_task/crm_task.json +#. Option for the 'Status' (Select) field in PageType 'CRM Task' +#: crm/fcrm/pagetype/crm_task/crm_task.json msgid "Done" msgstr "crwdns153105:0crwdne153105:0" @@ -2006,13 +2006,13 @@ msgstr "crwdns153109:0crwdne153109:0" msgid "Drop files here" msgstr "crwdns153111:0crwdne153111:0" -#. Label of the dropdown_items_tab (Tab Break) field in DocType 'FCRM Settings' -#: crm/fcrm/doctype/fcrm_settings/fcrm_settings.json +#. Label of the dropdown_items_tab (Tab Break) field in PageType 'FCRM Settings' +#: crm/fcrm/pagetype/fcrm_settings/fcrm_settings.json msgid "Dropdown Items" msgstr "crwdns153113:0crwdne153113:0" -#. Label of the due_date (Datetime) field in DocType 'CRM Task' -#: crm/fcrm/doctype/crm_task/crm_task.json +#. Label of the due_date (Datetime) field in PageType 'CRM Task' +#: crm/fcrm/pagetype/crm_task/crm_task.json msgid "Due Date" msgstr "crwdns153115:0crwdne153115:0" @@ -2048,10 +2048,10 @@ msgstr "crwdns158848:0crwdne158848:0" msgid "Duplicate template" msgstr "crwdns156308:0crwdne156308:0" -#. Label of the duration (Duration) field in DocType 'CRM Call Log' -#. Label of the duration (Duration) field in DocType 'CRM Status Change Log' -#: crm/fcrm/doctype/crm_call_log/crm_call_log.json -#: crm/fcrm/doctype/crm_status_change_log/crm_status_change_log.json +#. Label of the duration (Duration) field in PageType 'CRM Call Log' +#. Label of the duration (Duration) field in PageType 'CRM Status Change Log' +#: crm/fcrm/pagetype/crm_call_log/crm_call_log.json +#: crm/fcrm/pagetype/crm_status_change_log/crm_status_change_log.json msgid "Duration" msgstr "crwdns153121:0crwdne153121:0" @@ -2060,28 +2060,28 @@ msgstr "crwdns153121:0crwdne153121:0" msgid "ERPNext" msgstr "crwdns153123:0crwdne153123:0" -#. Name of a DocType -#: crm/fcrm/doctype/erpnext_crm_settings/erpnext_crm_settings.json +#. Name of a PageType +#: crm/fcrm/pagetype/erpnext_crm_settings/erpnext_crm_settings.json msgid "ERPNext CRM Settings" msgstr "crwdns153125:0crwdne153125:0" -#. Label of the section_break_oubd (Section Break) field in DocType 'ERPNext +#. Label of the section_break_oubd (Section Break) field in PageType 'ERPNext #. CRM Settings' -#: crm/fcrm/doctype/erpnext_crm_settings/erpnext_crm_settings.json +#: crm/fcrm/pagetype/erpnext_crm_settings/erpnext_crm_settings.json msgid "ERPNext Site API's" msgstr "crwdns153131:0crwdne153131:0" -#. Label of the erpnext_site_url (Data) field in DocType 'ERPNext CRM Settings' -#: crm/fcrm/doctype/erpnext_crm_settings/erpnext_crm_settings.json +#. Label of the erpnext_site_url (Data) field in PageType 'ERPNext CRM Settings' +#: crm/fcrm/pagetype/erpnext_crm_settings/erpnext_crm_settings.json msgid "ERPNext Site URL" msgstr "crwdns153133:0crwdne153133:0" -#: crm/fcrm/doctype/erpnext_crm_settings/erpnext_crm_settings.py:25 +#: crm/fcrm/pagetype/erpnext_crm_settings/erpnext_crm_settings.py:25 msgid "ERPNext is not installed in the current site" msgstr "crwdns153135:0crwdne153135:0" -#: crm/fcrm/doctype/erpnext_crm_settings/erpnext_crm_settings.py:98 -#: crm/fcrm/doctype/erpnext_crm_settings/erpnext_crm_settings.py:124 +#: crm/fcrm/pagetype/erpnext_crm_settings/erpnext_crm_settings.py:98 +#: crm/fcrm/pagetype/erpnext_crm_settings/erpnext_crm_settings.py:124 msgid "ERPNext is not integrated with the CRM" msgstr "crwdns153137:0crwdne153137:0" @@ -2191,12 +2191,12 @@ msgstr "crwdns153165:0{0}crwdne153165:0" msgid "Editing event" msgstr "crwdns158854:0crwdne158854:0" -#. Label of the email (Data) field in DocType 'CRM Contacts' -#. Label of the email (Data) field in DocType 'CRM Invitation' -#. Label of the email (Data) field in DocType 'CRM Lead' -#: crm/fcrm/doctype/crm_contacts/crm_contacts.json -#: crm/fcrm/doctype/crm_invitation/crm_invitation.json -#: crm/fcrm/doctype/crm_lead/crm_lead.json frontend/src/pages/Contact.vue:510 +#. Label of the email (Data) field in PageType 'CRM Contacts' +#. Label of the email (Data) field in PageType 'CRM Invitation' +#. Label of the email (Data) field in PageType 'CRM Lead' +#: crm/fcrm/pagetype/crm_contacts/crm_contacts.json +#: crm/fcrm/pagetype/crm_invitation/crm_invitation.json +#: crm/fcrm/pagetype/crm_lead/crm_lead.json frontend/src/pages/Contact.vue:510 #: frontend/src/pages/MobileContact.vue:518 #: frontend/src/pages/MobileOrganization.vue:462 #: frontend/src/pages/MobileOrganization.vue:490 @@ -2213,8 +2213,8 @@ msgstr "crwdns156316:0crwdne156316:0" msgid "Email ID is required" msgstr "crwdns156318:0crwdne156318:0" -#. Label of the email_sent_at (Datetime) field in DocType 'CRM Invitation' -#: crm/fcrm/doctype/crm_invitation/crm_invitation.json +#. Label of the email_sent_at (Datetime) field in PageType 'CRM Invitation' +#: crm/fcrm/pagetype/crm_invitation/crm_invitation.json msgid "Email Sent At" msgstr "crwdns153169:0crwdne153169:0" @@ -2272,12 +2272,12 @@ msgstr "crwdns153179:0crwdne153179:0" msgid "Empty - Choose a field to sort by" msgstr "crwdns153181:0crwdne153181:0" -#: crm/fcrm/doctype/crm_form_script/crm_form_script.js:30 +#: crm/fcrm/pagetype/crm_form_script/crm_form_script.js:30 msgid "Enable" msgstr "crwdns153183:0crwdne153183:0" -#. Label of the enable_forecasting (Check) field in DocType 'FCRM Settings' -#: crm/fcrm/doctype/fcrm_settings/fcrm_settings.json +#. Label of the enable_forecasting (Check) field in PageType 'FCRM Settings' +#: crm/fcrm/pagetype/fcrm_settings/fcrm_settings.json msgid "Enable Forecasting" msgstr "crwdns156332:0crwdne156332:0" @@ -2293,18 +2293,18 @@ msgstr "crwdns156336:0crwdne156336:0" msgid "Enable forecasting" msgstr "crwdns156338:0crwdne156338:0" -#. Label of the enabled (Check) field in DocType 'CRM Exotel Settings' -#. Label of the enabled (Check) field in DocType 'CRM Form Script' -#. Label of the enabled (Check) field in DocType 'CRM Service Level Agreement' -#. Label of the enabled (Check) field in DocType 'CRM Twilio Settings' -#. Label of the enabled (Check) field in DocType 'ERPNext CRM Settings' -#. Label of the enabled (Check) field in DocType 'Helpdesk CRM Settings' -#: crm/fcrm/doctype/crm_exotel_settings/crm_exotel_settings.json -#: crm/fcrm/doctype/crm_form_script/crm_form_script.json -#: crm/fcrm/doctype/crm_service_level_agreement/crm_service_level_agreement.json -#: crm/fcrm/doctype/crm_twilio_settings/crm_twilio_settings.json -#: crm/fcrm/doctype/erpnext_crm_settings/erpnext_crm_settings.json -#: crm/fcrm/doctype/helpdesk_crm_settings/helpdesk_crm_settings.json +#. Label of the enabled (Check) field in PageType 'CRM Exotel Settings' +#. Label of the enabled (Check) field in PageType 'CRM Form Script' +#. Label of the enabled (Check) field in PageType 'CRM Service Level Agreement' +#. Label of the enabled (Check) field in PageType 'CRM Twilio Settings' +#. Label of the enabled (Check) field in PageType 'ERPNext CRM Settings' +#. Label of the enabled (Check) field in PageType 'Helpdesk CRM Settings' +#: crm/fcrm/pagetype/crm_exotel_settings/crm_exotel_settings.json +#: crm/fcrm/pagetype/crm_form_script/crm_form_script.json +#: crm/fcrm/pagetype/crm_service_level_agreement/crm_service_level_agreement.json +#: crm/fcrm/pagetype/crm_twilio_settings/crm_twilio_settings.json +#: crm/fcrm/pagetype/erpnext_crm_settings/erpnext_crm_settings.json +#: crm/fcrm/pagetype/helpdesk_crm_settings/helpdesk_crm_settings.json #: frontend/src/components/Settings/AssignmentRules/AssignmentRuleView.vue:32 #: frontend/src/components/Settings/AssignmentRules/AssignmentRulesList.vue:21 #: frontend/src/components/Settings/EmailTemplate/EditEmailTemplate.vue:18 @@ -2313,15 +2313,15 @@ msgstr "crwdns156338:0crwdne156338:0" msgid "Enabled" msgstr "crwdns153185:0crwdne153185:0" -#. Label of the end_date (Date) field in DocType 'CRM Service Level Agreement' -#: crm/fcrm/doctype/crm_service_level_agreement/crm_service_level_agreement.json +#. Label of the end_date (Date) field in PageType 'CRM Service Level Agreement' +#: crm/fcrm/pagetype/crm_service_level_agreement/crm_service_level_agreement.json msgid "End Date" msgstr "crwdns153187:0crwdne153187:0" -#. Label of the end_time (Datetime) field in DocType 'CRM Call Log' -#. Label of the end_time (Time) field in DocType 'CRM Service Day' -#: crm/fcrm/doctype/crm_call_log/crm_call_log.json -#: crm/fcrm/doctype/crm_service_day/crm_service_day.json +#. Label of the end_time (Datetime) field in PageType 'CRM Call Log' +#. Label of the end_time (Time) field in PageType 'CRM Service Day' +#: crm/fcrm/pagetype/crm_call_log/crm_call_log.json +#: crm/fcrm/pagetype/crm_service_day/crm_service_day.json #: frontend/src/components/Calendar/CalendarEventPanel.vue:242 #: frontend/src/components/Modals/EventModal.vue:112 msgid "End Time" @@ -2362,15 +2362,15 @@ msgstr "crwdns156340:0{0}crwdne156340:0" msgid "Error updating field" msgstr "crwdns157260:0crwdne157260:0" -#: crm/fcrm/doctype/erpnext_crm_settings/erpnext_crm_settings.py:279 +#: crm/fcrm/pagetype/erpnext_crm_settings/erpnext_crm_settings.py:279 msgid "Error while creating customer in ERPNext, check error log for more details" msgstr "crwdns153207:0crwdne153207:0" -#: crm/fcrm/doctype/erpnext_crm_settings/erpnext_crm_settings.py:191 +#: crm/fcrm/pagetype/erpnext_crm_settings/erpnext_crm_settings.py:191 msgid "Error while creating prospect in ERPNext, check error log for more details" msgstr "crwdns153209:0crwdne153209:0" -#: crm/fcrm/doctype/erpnext_crm_settings/erpnext_crm_settings.py:117 +#: crm/fcrm/pagetype/erpnext_crm_settings/erpnext_crm_settings.py:117 msgid "Error while fetching customer in ERPNext, check error log for more details" msgstr "crwdns153211:0crwdne153211:0" @@ -2395,16 +2395,16 @@ msgstr "crwdns158864:0crwdne158864:0" msgid "Excel" msgstr "crwdns153213:0crwdne153213:0" -#. Label of the exchange_rate (Float) field in DocType 'CRM Deal' -#. Label of the exchange_rate (Float) field in DocType 'CRM Organization' -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_organization/crm_organization.json +#. Label of the exchange_rate (Float) field in PageType 'CRM Deal' +#. Label of the exchange_rate (Float) field in PageType 'CRM Organization' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_organization/crm_organization.json msgid "Exchange Rate" msgstr "crwdns156346:0crwdne156346:0" -#. Label of the exchange_rate_provider_section (Section Break) field in DocType +#. Label of the exchange_rate_provider_section (Section Break) field in PageType #. 'FCRM Settings' -#: crm/fcrm/doctype/fcrm_settings/fcrm_settings.json +#: crm/fcrm/pagetype/fcrm_settings/fcrm_settings.json msgid "Exchange Rate Provider" msgstr "crwdns157262:0crwdne157262:0" @@ -2412,12 +2412,12 @@ msgstr "crwdns157262:0crwdne157262:0" msgid "Exchange rate provider" msgstr "crwdns157264:0crwdne157264:0" -#. Option for the 'Telephony Medium' (Select) field in DocType 'CRM Call Log' -#. Label of the exotel (Check) field in DocType 'CRM Telephony Agent' -#. Option for the 'Default Medium' (Select) field in DocType 'CRM Telephony +#. Option for the 'Telephony Medium' (Select) field in PageType 'CRM Call Log' +#. Label of the exotel (Check) field in PageType 'CRM Telephony Agent' +#. Option for the 'Default Medium' (Select) field in PageType 'CRM Telephony #. Agent' -#: crm/fcrm/doctype/crm_call_log/crm_call_log.json -#: crm/fcrm/doctype/crm_telephony_agent/crm_telephony_agent.json +#: crm/fcrm/pagetype/crm_call_log/crm_call_log.json +#: crm/fcrm/pagetype/crm_telephony_agent/crm_telephony_agent.json #: frontend/src/components/Layouts/AppSidebar.vue:602 #: frontend/src/components/Settings/TelephonySettings.vue:41 #: frontend/src/components/Settings/TelephonySettings.vue:63 @@ -2428,8 +2428,8 @@ msgstr "crwdns153215:0crwdne153215:0" msgid "Exotel Exception" msgstr "crwdns153217:0crwdne153217:0" -#. Label of the exotel_number (Data) field in DocType 'CRM Telephony Agent' -#: crm/fcrm/doctype/crm_telephony_agent/crm_telephony_agent.json +#. Label of the exotel_number (Data) field in PageType 'CRM Telephony Agent' +#: crm/fcrm/pagetype/crm_telephony_agent/crm_telephony_agent.json msgid "Exotel Number" msgstr "crwdns153219:0crwdne153219:0" @@ -2453,26 +2453,26 @@ msgstr "crwdns153227:0crwdne153227:0" msgid "Expand" msgstr "crwdns153229:0crwdne153229:0" -#. Label of the expected_closure_date (Date) field in DocType 'CRM Deal' -#: crm/fcrm/doctype/crm_deal/crm_deal.json +#. Label of the expected_closure_date (Date) field in PageType 'CRM Deal' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json msgid "Expected Closure Date" msgstr "crwdns156348:0crwdne156348:0" -#: crm/fcrm/doctype/crm_deal/crm_deal.py:173 +#: crm/fcrm/pagetype/crm_deal/crm_deal.py:173 msgid "Expected Closure Date is required." msgstr "crwdns156788:0crwdne156788:0" -#. Label of the expected_deal_value (Currency) field in DocType 'CRM Deal' -#: crm/fcrm/doctype/crm_deal/crm_deal.json +#. Label of the expected_deal_value (Currency) field in PageType 'CRM Deal' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json msgid "Expected Deal Value" msgstr "crwdns156350:0crwdne156350:0" -#: crm/fcrm/doctype/crm_deal/crm_deal.py:171 +#: crm/fcrm/pagetype/crm_deal/crm_deal.py:171 msgid "Expected Deal Value is required." msgstr "crwdns156790:0crwdne156790:0" -#. Option for the 'Status' (Select) field in DocType 'CRM Invitation' -#: crm/fcrm/doctype/crm_invitation/crm_invitation.json +#. Option for the 'Status' (Select) field in PageType 'CRM Invitation' +#: crm/fcrm/pagetype/crm_invitation/crm_invitation.json msgid "Expired" msgstr "crwdns153231:0crwdne153231:0" @@ -2489,22 +2489,22 @@ msgstr "crwdns153235:0{0}crwdne153235:0" msgid "Export Type" msgstr "crwdns153237:0crwdne153237:0" -#. Name of a DocType -#: crm/fcrm/doctype/fcrm_note/fcrm_note.json +#. Name of a PageType +#: crm/fcrm/pagetype/fcrm_note/fcrm_note.json msgid "FCRM Note" msgstr "crwdns153239:0crwdne153239:0" -#. Name of a DocType -#: crm/fcrm/doctype/fcrm_settings/fcrm_settings.json +#. Name of a PageType +#: crm/fcrm/pagetype/fcrm_settings/fcrm_settings.json msgid "FCRM Settings" msgstr "crwdns153241:0crwdne153241:0" -#. Option for the 'Status' (Select) field in DocType 'CRM Call Log' -#. Option for the 'SLA Status' (Select) field in DocType 'CRM Deal' -#. Option for the 'SLA Status' (Select) field in DocType 'CRM Lead' -#: crm/fcrm/doctype/crm_call_log/crm_call_log.json -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_lead/crm_lead.json +#. Option for the 'Status' (Select) field in PageType 'CRM Call Log' +#. Option for the 'SLA Status' (Select) field in PageType 'CRM Deal' +#. Option for the 'SLA Status' (Select) field in PageType 'CRM Lead' +#: crm/fcrm/pagetype/crm_call_log/crm_call_log.json +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_lead/crm_lead.json msgid "Failed" msgstr "crwdns153243:0crwdne153243:0" @@ -2528,7 +2528,7 @@ msgstr "crwdns156356:0crwdne156356:0" msgid "Failed to delete template" msgstr "crwdns156358:0crwdne156358:0" -#: crm/fcrm/doctype/fcrm_settings/fcrm_settings.py:205 +#: crm/fcrm/pagetype/fcrm_settings/fcrm_settings.py:205 msgid "Failed to fetch exchange rate from {0} to {1} on {2}. Please check your internet connection or try again later." msgstr "crwdns157266:0{0}crwdnd157266:0{1}crwdnd157266:0{2}crwdne157266:0" @@ -2561,8 +2561,8 @@ msgstr "crwdns156370:0crwdne156370:0" msgid "Failed to update template" msgstr "crwdns156372:0crwdne156372:0" -#. Label of the favicon (Attach) field in DocType 'FCRM Settings' -#: crm/fcrm/doctype/fcrm_settings/fcrm_settings.json +#. Label of the favicon (Attach) field in PageType 'FCRM Settings' +#: crm/fcrm/pagetype/fcrm_settings/fcrm_settings.json #: frontend/src/components/Settings/BrandSettings.vue:87 msgid "Favicon" msgstr "crwdns153249:0crwdne153249:0" @@ -2586,23 +2586,23 @@ msgid "File \"{0}\" was skipped because only {1} uploads are allowed" msgstr "crwdns153255:0{0}crwdnd153255:0{1}crwdne153255:0" #: frontend/src/components/FilesUploader/FilesUploaderArea.vue:359 -msgid "File \"{0}\" was skipped because only {1} uploads are allowed for DocType \"{2}\"" +msgid "File \"{0}\" was skipped because only {1} uploads are allowed for PageType \"{2}\"" msgstr "crwdns153257:0{0}crwdnd153257:0{1}crwdnd153257:0{2}crwdne153257:0" #: frontend/src/components/Filter.vue:6 msgid "Filter" msgstr "crwdns153259:0crwdne153259:0" -#. Label of the filters (Code) field in DocType 'CRM View Settings' -#. Label of the filters_tab (Tab Break) field in DocType 'CRM View Settings' -#: crm/fcrm/doctype/crm_view_settings/crm_view_settings.json +#. Label of the filters (Code) field in PageType 'CRM View Settings' +#. Label of the filters_tab (Tab Break) field in PageType 'CRM View Settings' +#: crm/fcrm/pagetype/crm_view_settings/crm_view_settings.json msgid "Filters" msgstr "crwdns153261:0crwdne153261:0" -#. Label of the first_name (Data) field in DocType 'CRM Deal' -#. Label of the first_name (Data) field in DocType 'CRM Lead' -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_lead/crm_lead.json +#. Label of the first_name (Data) field in PageType 'CRM Deal' +#. Label of the first_name (Data) field in PageType 'CRM Lead' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_lead/crm_lead.json #: frontend/src/components/ColumnSettings.vue:103 #: frontend/src/components/Filter.vue:57 frontend/src/components/Filter.vue:88 #: frontend/src/components/SortBy.vue:6 frontend/src/components/SortBy.vue:103 @@ -2614,30 +2614,30 @@ msgstr "crwdns153263:0crwdne153263:0" msgid "First Name is mandatory" msgstr "crwdns153265:0crwdne153265:0" -#. Label of the first_responded_on (Datetime) field in DocType 'CRM Deal' -#. Label of the first_responded_on (Datetime) field in DocType 'CRM Lead' -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_lead/crm_lead.json +#. Label of the first_responded_on (Datetime) field in PageType 'CRM Deal' +#. Label of the first_responded_on (Datetime) field in PageType 'CRM Lead' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_lead/crm_lead.json msgid "First Responded On" msgstr "crwdns153267:0crwdne153267:0" -#. Option for the 'SLA Status' (Select) field in DocType 'CRM Deal' -#. Option for the 'SLA Status' (Select) field in DocType 'CRM Lead' -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_lead/crm_lead.json +#. Option for the 'SLA Status' (Select) field in PageType 'CRM Deal' +#. Option for the 'SLA Status' (Select) field in PageType 'CRM Lead' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_lead/crm_lead.json msgid "First Response Due" msgstr "crwdns153269:0crwdne153269:0" -#. Label of the first_response_time (Duration) field in DocType 'CRM Service +#. Label of the first_response_time (Duration) field in PageType 'CRM Service #. Level Priority' -#: crm/fcrm/doctype/crm_service_level_priority/crm_service_level_priority.json +#: crm/fcrm/pagetype/crm_service_level_priority/crm_service_level_priority.json msgid "First Response TIme" msgstr "crwdns153271:0crwdne153271:0" -#. Label of the first_response_time (Duration) field in DocType 'CRM Deal' -#. Label of the first_response_time (Duration) field in DocType 'CRM Lead' -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_lead/crm_lead.json +#. Label of the first_response_time (Duration) field in PageType 'CRM Deal' +#. Label of the first_response_time (Duration) field in PageType 'CRM Lead' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_lead/crm_lead.json msgid "First Response Time" msgstr "crwdns153273:0crwdne153273:0" @@ -2670,66 +2670,66 @@ msgstr "crwdns156380:0crwdne156380:0" msgid "Forecasting enabled successfully" msgstr "crwdns156382:0crwdne156382:0" -#. Option for the 'Apply To' (Select) field in DocType 'CRM Form Script' -#: crm/fcrm/doctype/crm_form_script/crm_form_script.json +#. Option for the 'Apply To' (Select) field in PageType 'CRM Form Script' +#: crm/fcrm/pagetype/crm_form_script/crm_form_script.json msgid "Form" msgstr "crwdns153277:0crwdne153277:0" -#: crm/fcrm/doctype/erpnext_crm_settings/erpnext_crm_settings.js:19 +#: crm/fcrm/pagetype/erpnext_crm_settings/erpnext_crm_settings.js:19 msgid "Form Script updated successfully" msgstr "crwdns153279:0crwdne153279:0" #. Name of a Workspace -#: crm/fcrm/workspace/frappe_crm/frappe_crm.json -msgid "Frappe CRM" +#: crm/fcrm/workspace/jingrow_crm/jingrow_crm.json +msgid "Jingrow CRM" msgstr "crwdns153281:0crwdne153281:0" #: frontend/src/components/Layouts/AppSidebar.vue:608 -msgid "Frappe CRM mobile" +msgid "Jingrow CRM mobile" msgstr "crwdns156384:0crwdne156384:0" -#. Option for the 'Weekly Off' (Select) field in DocType 'CRM Holiday List' -#. Option for the 'Workday' (Select) field in DocType 'CRM Service Day' -#: crm/fcrm/doctype/crm_holiday_list/crm_holiday_list.json -#: crm/fcrm/doctype/crm_service_day/crm_service_day.json +#. Option for the 'Weekly Off' (Select) field in PageType 'CRM Holiday List' +#. Option for the 'Workday' (Select) field in PageType 'CRM Service Day' +#: crm/fcrm/pagetype/crm_holiday_list/crm_holiday_list.json +#: crm/fcrm/pagetype/crm_service_day/crm_service_day.json msgid "Friday" msgstr "crwdns153283:0crwdne153283:0" -#. Label of the from (Data) field in DocType 'CRM Call Log' -#. Label of the from (Data) field in DocType 'CRM Status Change Log' -#: crm/fcrm/doctype/crm_call_log/crm_call_log.json -#: crm/fcrm/doctype/crm_status_change_log/crm_status_change_log.json +#. Label of the from (Data) field in PageType 'CRM Call Log' +#. Label of the from (Data) field in PageType 'CRM Status Change Log' +#: crm/fcrm/pagetype/crm_call_log/crm_call_log.json +#: crm/fcrm/pagetype/crm_status_change_log/crm_status_change_log.json msgid "From" msgstr "crwdns153285:0crwdne153285:0" -#. Label of the from_date (Date) field in DocType 'CRM Holiday List' -#. Label of the from_date (Datetime) field in DocType 'CRM Status Change Log' -#: crm/fcrm/doctype/crm_holiday_list/crm_holiday_list.json -#: crm/fcrm/doctype/crm_status_change_log/crm_status_change_log.json +#. Label of the from_date (Date) field in PageType 'CRM Holiday List' +#. Label of the from_date (Datetime) field in PageType 'CRM Status Change Log' +#: crm/fcrm/pagetype/crm_holiday_list/crm_holiday_list.json +#: crm/fcrm/pagetype/crm_status_change_log/crm_status_change_log.json msgid "From Date" msgstr "crwdns153287:0crwdne153287:0" -#. Label of the from_type (Data) field in DocType 'CRM Status Change Log' -#: crm/fcrm/doctype/crm_status_change_log/crm_status_change_log.json +#. Label of the from_type (Data) field in PageType 'CRM Status Change Log' +#: crm/fcrm/pagetype/crm_status_change_log/crm_status_change_log.json msgid "From Type" msgstr "crwdns156386:0crwdne156386:0" -#. Label of the from_user (Link) field in DocType 'CRM Notification' -#: crm/fcrm/doctype/crm_notification/crm_notification.json +#. Label of the from_user (Link) field in PageType 'CRM Notification' +#: crm/fcrm/pagetype/crm_notification/crm_notification.json msgid "From User" msgstr "crwdns153289:0crwdne153289:0" -#. Option for the 'SLA Status' (Select) field in DocType 'CRM Deal' -#. Option for the 'SLA Status' (Select) field in DocType 'CRM Lead' -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_lead/crm_lead.json +#. Option for the 'SLA Status' (Select) field in PageType 'CRM Deal' +#. Option for the 'SLA Status' (Select) field in PageType 'CRM Lead' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_lead/crm_lead.json msgid "Fulfilled" msgstr "crwdns153291:0crwdne153291:0" -#. Label of the full_name (Data) field in DocType 'CRM Contacts' -#. Label of the lead_name (Data) field in DocType 'CRM Lead' -#: crm/fcrm/doctype/crm_contacts/crm_contacts.json -#: crm/fcrm/doctype/crm_lead/crm_lead.json +#. Label of the full_name (Data) field in PageType 'CRM Contacts' +#. Label of the lead_name (Data) field in PageType 'CRM Lead' +#: crm/fcrm/pagetype/crm_contacts/crm_contacts.json +#: crm/fcrm/pagetype/crm_lead/crm_lead.json msgid "Full Name" msgstr "crwdns153293:0crwdne153293:0" @@ -2742,12 +2742,12 @@ msgstr "crwdns156388:0crwdne156388:0" msgid "GMT+5:30" msgstr "crwdns158866:0crwdne158866:0" -#. Label of the gender (Link) field in DocType 'CRM Contacts' -#. Label of the gender (Link) field in DocType 'CRM Deal' -#. Label of the gender (Link) field in DocType 'CRM Lead' -#: crm/fcrm/doctype/crm_contacts/crm_contacts.json -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_lead/crm_lead.json +#. Label of the gender (Link) field in PageType 'CRM Contacts' +#. Label of the gender (Link) field in PageType 'CRM Deal' +#. Label of the gender (Link) field in PageType 'CRM Lead' +#: crm/fcrm/pagetype/crm_contacts/crm_contacts.json +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_lead/crm_lead.json msgid "Gender" msgstr "crwdns153295:0crwdne153295:0" @@ -2771,20 +2771,20 @@ msgstr "crwdns158870:0crwdne158870:0" msgid "Go to website" msgstr "crwdns153299:0crwdne153299:0" -#. Option for the 'Type' (Select) field in DocType 'CRM Fields Layout' -#: crm/fcrm/doctype/crm_fields_layout/crm_fields_layout.json +#. Option for the 'Type' (Select) field in PageType 'CRM Fields Layout' +#: crm/fcrm/pagetype/crm_fields_layout/crm_fields_layout.json msgid "Grid Row" msgstr "crwdns153301:0crwdne153301:0" -#. Label of the group_by_tab (Tab Break) field in DocType 'CRM View Settings' -#: crm/fcrm/doctype/crm_view_settings/crm_view_settings.json +#. Label of the group_by_tab (Tab Break) field in PageType 'CRM View Settings' +#: crm/fcrm/pagetype/crm_view_settings/crm_view_settings.json #: frontend/src/components/ViewControls.vue:379 #: frontend/src/components/ViewControls.vue:611 frontend/src/utils/view.js:16 msgid "Group By" msgstr "crwdns153303:0crwdne153303:0" -#. Label of the group_by_field (Data) field in DocType 'CRM View Settings' -#: crm/fcrm/doctype/crm_view_settings/crm_view_settings.json +#. Label of the group_by_field (Data) field in PageType 'CRM View Settings' +#: crm/fcrm/pagetype/crm_view_settings/crm_view_settings.json msgid "Group By Field" msgstr "crwdns153305:0crwdne153305:0" @@ -2808,28 +2808,28 @@ msgstr "crwdns156394:0crwdne156394:0" msgid "Helpdesk" msgstr "crwdns158650:0crwdne158650:0" -#. Name of a DocType -#: crm/fcrm/doctype/helpdesk_crm_settings/helpdesk_crm_settings.json +#. Name of a PageType +#: crm/fcrm/pagetype/helpdesk_crm_settings/helpdesk_crm_settings.json msgid "Helpdesk CRM Settings" msgstr "crwdns158652:0crwdne158652:0" -#. Label of the helpdesk_site_apis_section (Section Break) field in DocType +#. Label of the helpdesk_site_apis_section (Section Break) field in PageType #. 'Helpdesk CRM Settings' -#: crm/fcrm/doctype/helpdesk_crm_settings/helpdesk_crm_settings.json +#: crm/fcrm/pagetype/helpdesk_crm_settings/helpdesk_crm_settings.json msgid "Helpdesk Site API's" msgstr "crwdns158654:0crwdne158654:0" -#. Label of the helpdesk_site_url (Data) field in DocType 'Helpdesk CRM +#. Label of the helpdesk_site_url (Data) field in PageType 'Helpdesk CRM #. Settings' -#: crm/fcrm/doctype/helpdesk_crm_settings/helpdesk_crm_settings.json +#: crm/fcrm/pagetype/helpdesk_crm_settings/helpdesk_crm_settings.json msgid "Helpdesk Site URL" msgstr "crwdns158656:0crwdne158656:0" -#: crm/fcrm/doctype/helpdesk_crm_settings/helpdesk_crm_settings.py:18 +#: crm/fcrm/pagetype/helpdesk_crm_settings/helpdesk_crm_settings.py:18 msgid "Helpdesk is not installed in the current site" msgstr "crwdns158658:0crwdne158658:0" -#: crm/fcrm/doctype/helpdesk_crm_settings/helpdesk_crm_settings.py:40 +#: crm/fcrm/pagetype/helpdesk_crm_settings/helpdesk_crm_settings.py:40 msgid "Helpdesk is not integrated with the CRM" msgstr "crwdns158660:0crwdne158660:0" @@ -2845,8 +2845,8 @@ msgstr "crwdns158664:0crwdne158664:0" msgid "Hi John, \\n\\nCan you please provide more details on this..." msgstr "crwdns153309:0crwdne153309:0" -#. Label of the hidden (Check) field in DocType 'CRM Dropdown Item' -#: crm/fcrm/doctype/crm_dropdown_item/crm_dropdown_item.json +#. Label of the hidden (Check) field in PageType 'CRM Dropdown Item' +#: crm/fcrm/pagetype/crm_dropdown_item/crm_dropdown_item.json msgid "Hidden" msgstr "crwdns153311:0crwdne153311:0" @@ -2877,26 +2877,26 @@ msgstr "crwdns153319:0crwdne153319:0" msgid "Hide preview" msgstr "crwdns153321:0crwdne153321:0" -#. Option for the 'Priority' (Select) field in DocType 'CRM Task' -#: crm/fcrm/doctype/crm_task/crm_task.json +#. Option for the 'Priority' (Select) field in PageType 'CRM Task' +#: crm/fcrm/pagetype/crm_task/crm_task.json msgid "High" msgstr "crwdns153323:0crwdne153323:0" -#. Label of the holiday_list (Link) field in DocType 'CRM Service Level +#. Label of the holiday_list (Link) field in PageType 'CRM Service Level #. Agreement' -#: crm/fcrm/doctype/crm_service_level_agreement/crm_service_level_agreement.json +#: crm/fcrm/pagetype/crm_service_level_agreement/crm_service_level_agreement.json msgid "Holiday List" msgstr "crwdns153325:0crwdne153325:0" -#. Label of the holiday_list_name (Data) field in DocType 'CRM Holiday List' -#: crm/fcrm/doctype/crm_holiday_list/crm_holiday_list.json +#. Label of the holiday_list_name (Data) field in PageType 'CRM Holiday List' +#: crm/fcrm/pagetype/crm_holiday_list/crm_holiday_list.json msgid "Holiday List Name" msgstr "crwdns153327:0crwdne153327:0" -#. Label of the holidays_section (Section Break) field in DocType 'CRM Holiday +#. Label of the holidays_section (Section Break) field in PageType 'CRM Holiday #. List' -#. Label of the holidays (Table) field in DocType 'CRM Holiday List' -#: crm/fcrm/doctype/crm_holiday_list/crm_holiday_list.json +#. Label of the holidays (Table) field in PageType 'CRM Holiday List' +#: crm/fcrm/pagetype/crm_holiday_list/crm_holiday_list.json msgid "Holidays" msgstr "crwdns153329:0crwdne153329:0" @@ -2914,15 +2914,15 @@ msgstr "crwdns153331:0crwdne153331:0" msgid "I understand, add conditions" msgstr "crwdns158872:0crwdne158872:0" -#. Label of the id (Data) field in DocType 'CRM Call Log' -#: crm/fcrm/doctype/crm_call_log/crm_call_log.json +#. Label of the id (Data) field in PageType 'CRM Call Log' +#: crm/fcrm/pagetype/crm_call_log/crm_call_log.json msgid "ID" msgstr "crwdns153333:0crwdne153333:0" -#. Label of the icon (Code) field in DocType 'CRM Dropdown Item' -#. Label of the icon (Data) field in DocType 'CRM View Settings' -#: crm/fcrm/doctype/crm_dropdown_item/crm_dropdown_item.json -#: crm/fcrm/doctype/crm_view_settings/crm_view_settings.json +#. Label of the icon (Code) field in PageType 'CRM Dropdown Item' +#. Label of the icon (Data) field in PageType 'CRM View Settings' +#: crm/fcrm/pagetype/crm_dropdown_item/crm_dropdown_item.json +#: crm/fcrm/pagetype/crm_view_settings/crm_view_settings.json msgid "Icon" msgstr "crwdns153335:0crwdne153335:0" @@ -2942,10 +2942,10 @@ msgstr "crwdns156402:0crwdne156402:0" msgid "If enabled, records can be created from the incoming emails on this account." msgstr "crwdns156404:0crwdne156404:0" -#. Label of the image (Attach Image) field in DocType 'CRM Lead' -#. Label of the image (Attach Image) field in DocType 'CRM Product' -#: crm/fcrm/doctype/crm_lead/crm_lead.json -#: crm/fcrm/doctype/crm_product/crm_product.json +#. Label of the image (Attach Image) field in PageType 'CRM Lead' +#. Label of the image (Attach Image) field in PageType 'CRM Product' +#: crm/fcrm/pagetype/crm_lead/crm_lead.json +#: crm/fcrm/pagetype/crm_product/crm_product.json msgid "Image" msgstr "crwdns153337:0crwdne153337:0" @@ -2957,10 +2957,10 @@ msgstr "crwdns153337:0crwdne153337:0" msgid "In" msgstr "crwdns153339:0crwdne153339:0" -#. Option for the 'Status' (Select) field in DocType 'CRM Call Log' -#. Option for the 'Status' (Select) field in DocType 'CRM Task' -#: crm/fcrm/doctype/crm_call_log/crm_call_log.json -#: crm/fcrm/doctype/crm_task/crm_task.json +#. Option for the 'Status' (Select) field in PageType 'CRM Call Log' +#. Option for the 'Status' (Select) field in PageType 'CRM Task' +#: crm/fcrm/pagetype/crm_call_log/crm_call_log.json +#: crm/fcrm/pagetype/crm_task/crm_task.json msgid "In Progress" msgstr "crwdns153341:0crwdne153341:0" @@ -2976,8 +2976,8 @@ msgstr "crwdns153345:0crwdne153345:0" msgid "Inbox" msgstr "crwdns156406:0crwdne156406:0" -#. Option for the 'Type' (Select) field in DocType 'CRM Call Log' -#: crm/fcrm/doctype/crm_call_log/crm_call_log.json +#. Option for the 'Type' (Select) field in PageType 'CRM Call Log' +#: crm/fcrm/pagetype/crm_call_log/crm_call_log.json msgid "Incoming" msgstr "crwdns153347:0crwdne153347:0" @@ -2985,24 +2985,24 @@ msgstr "crwdns153347:0crwdne153347:0" msgid "Incoming call..." msgstr "crwdns153349:0crwdne153349:0" -#. Label of a shortcut in the Frappe CRM Workspace -#: crm/fcrm/workspace/frappe_crm/frappe_crm.json +#. Label of a shortcut in the Jingrow CRM Workspace +#: crm/fcrm/workspace/jingrow_crm/jingrow_crm.json msgid "Industries" msgstr "crwdns153351:0crwdne153351:0" -#. Label of the industry (Link) field in DocType 'CRM Deal' -#. Label of the industry (Data) field in DocType 'CRM Industry' -#. Label of the industry (Link) field in DocType 'CRM Lead' -#. Label of the industry (Link) field in DocType 'CRM Organization' -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_industry/crm_industry.json -#: crm/fcrm/doctype/crm_lead/crm_lead.json -#: crm/fcrm/doctype/crm_organization/crm_organization.json +#. Label of the industry (Link) field in PageType 'CRM Deal' +#. Label of the industry (Data) field in PageType 'CRM Industry' +#. Label of the industry (Link) field in PageType 'CRM Lead' +#. Label of the industry (Link) field in PageType 'CRM Organization' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_industry/crm_industry.json +#: crm/fcrm/pagetype/crm_lead/crm_lead.json +#: crm/fcrm/pagetype/crm_organization/crm_organization.json msgid "Industry" msgstr "crwdns153353:0crwdne153353:0" -#. Option for the 'Status' (Select) field in DocType 'CRM Call Log' -#: crm/fcrm/doctype/crm_call_log/crm_call_log.json +#. Option for the 'Status' (Select) field in PageType 'CRM Call Log' +#: crm/fcrm/pagetype/crm_call_log/crm_call_log.json msgid "Initiated" msgstr "crwdns153355:0crwdne153355:0" @@ -3037,7 +3037,7 @@ msgstr "crwdns156410:0crwdne156410:0" msgid "Introduction" msgstr "crwdns156412:0crwdne156412:0" -#: crm/fcrm/doctype/crm_twilio_settings/crm_twilio_settings.py:33 +#: crm/fcrm/pagetype/crm_twilio_settings/crm_twilio_settings.py:33 msgid "Invalid Account SID or Auth Token." msgstr "crwdns153363:0crwdne153363:0" @@ -3054,7 +3054,7 @@ msgstr "crwdns153367:0crwdne153367:0" msgid "Invalid chart name" msgstr "crwdns156414:0crwdne156414:0" -#: crm/fcrm/doctype/crm_exotel_settings/crm_exotel_settings.py:25 +#: crm/fcrm/pagetype/crm_exotel_settings/crm_exotel_settings.py:25 msgid "Invalid credentials" msgstr "crwdns153369:0crwdne153369:0" @@ -3103,8 +3103,8 @@ msgstr "crwdns156424:0crwdne156424:0" msgid "Invite your team" msgstr "crwdns156426:0crwdne156426:0" -#. Label of the invited_by (Link) field in DocType 'CRM Invitation' -#: crm/fcrm/doctype/crm_invitation/crm_invitation.json +#. Label of the invited_by (Link) field in PageType 'CRM Invitation' +#: crm/fcrm/pagetype/crm_invitation/crm_invitation.json msgid "Invited By" msgstr "crwdns153377:0crwdne153377:0" @@ -3118,59 +3118,59 @@ msgstr "crwdns153377:0crwdne153377:0" msgid "Is" msgstr "crwdns153379:0crwdne153379:0" -#. Label of the is_default (Check) field in DocType 'CRM View Settings' -#: crm/fcrm/doctype/crm_view_settings/crm_view_settings.json +#. Label of the is_default (Check) field in PageType 'CRM View Settings' +#: crm/fcrm/pagetype/crm_view_settings/crm_view_settings.json msgid "Is Default" msgstr "crwdns153381:0crwdne153381:0" -#. Label of the is_erpnext_in_different_site (Check) field in DocType 'ERPNext +#. Label of the is_erpnext_in_different_site (Check) field in PageType 'ERPNext #. CRM Settings' -#: crm/fcrm/doctype/erpnext_crm_settings/erpnext_crm_settings.json +#: crm/fcrm/pagetype/erpnext_crm_settings/erpnext_crm_settings.json msgid "Is ERPNext installed on a different site?" msgstr "crwdns153383:0crwdne153383:0" -#. Label of the is_group (Check) field in DocType 'CRM Territory' -#: crm/fcrm/doctype/crm_territory/crm_territory.json +#. Label of the is_group (Check) field in PageType 'CRM Territory' +#: crm/fcrm/pagetype/crm_territory/crm_territory.json msgid "Is Group" msgstr "crwdns153385:0crwdne153385:0" -#. Label of the is_helpdesk_in_different_site (Check) field in DocType +#. Label of the is_helpdesk_in_different_site (Check) field in PageType #. 'Helpdesk CRM Settings' -#: crm/fcrm/doctype/helpdesk_crm_settings/helpdesk_crm_settings.json +#: crm/fcrm/pagetype/helpdesk_crm_settings/helpdesk_crm_settings.json msgid "Is Helpdesk installed on a different site?" msgstr "crwdns158672:0crwdne158672:0" -#. Label of the is_primary (Check) field in DocType 'CRM Contacts' -#. Label of the is_primary (Check) field in DocType 'CRM Telephony Phone' -#: crm/fcrm/doctype/crm_contacts/crm_contacts.json -#: crm/fcrm/doctype/crm_telephony_phone/crm_telephony_phone.json +#. Label of the is_primary (Check) field in PageType 'CRM Contacts' +#. Label of the is_primary (Check) field in PageType 'CRM Telephony Phone' +#: crm/fcrm/pagetype/crm_contacts/crm_contacts.json +#: crm/fcrm/pagetype/crm_telephony_phone/crm_telephony_phone.json msgid "Is Primary" msgstr "crwdns153387:0crwdne153387:0" -#. Label of the is_standard (Check) field in DocType 'CRM Dropdown Item' -#. Label of the is_standard (Check) field in DocType 'CRM Form Script' -#. Label of the is_standard (Check) field in DocType 'CRM View Settings' -#: crm/fcrm/doctype/crm_dropdown_item/crm_dropdown_item.json -#: crm/fcrm/doctype/crm_form_script/crm_form_script.json -#: crm/fcrm/doctype/crm_view_settings/crm_view_settings.json +#. Label of the is_standard (Check) field in PageType 'CRM Dropdown Item' +#. Label of the is_standard (Check) field in PageType 'CRM Form Script' +#. Label of the is_standard (Check) field in PageType 'CRM View Settings' +#: crm/fcrm/pagetype/crm_dropdown_item/crm_dropdown_item.json +#: crm/fcrm/pagetype/crm_form_script/crm_form_script.json +#: crm/fcrm/pagetype/crm_view_settings/crm_view_settings.json msgid "Is Standard" msgstr "crwdns153389:0crwdne153389:0" -#. Description of the 'Enable Forecasting' (Check) field in DocType 'FCRM +#. Description of the 'Enable Forecasting' (Check) field in PageType 'FCRM #. Settings' -#: crm/fcrm/doctype/fcrm_settings/fcrm_settings.json +#: crm/fcrm/pagetype/fcrm_settings/fcrm_settings.json msgid "It will make deal's \"Expected Closure Date\" & \"Expected Deal Value\" mandatory to get accurate forecasting insights" msgstr "crwdns156428:0crwdne156428:0" -#. Label of the json (JSON) field in DocType 'CRM Global Settings' -#: crm/fcrm/doctype/crm_global_settings/crm_global_settings.json +#. Label of the json (JSON) field in PageType 'CRM Global Settings' +#: crm/fcrm/pagetype/crm_global_settings/crm_global_settings.json msgid "JSON" msgstr "crwdns153391:0crwdne153391:0" -#. Label of the job_title (Data) field in DocType 'CRM Deal' -#. Label of the job_title (Data) field in DocType 'CRM Lead' -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_lead/crm_lead.json +#. Label of the job_title (Data) field in PageType 'CRM Deal' +#. Label of the job_title (Data) field in PageType 'CRM Lead' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_lead/crm_lead.json msgid "Job Title" msgstr "crwdns153393:0crwdne153393:0" @@ -3182,20 +3182,20 @@ msgstr "crwdns153393:0crwdne153393:0" msgid "John Doe" msgstr "crwdns153395:0crwdne153395:0" -#. Label of the kanban_tab (Tab Break) field in DocType 'CRM View Settings' -#: crm/fcrm/doctype/crm_view_settings/crm_view_settings.json +#. Label of the kanban_tab (Tab Break) field in PageType 'CRM View Settings' +#: crm/fcrm/pagetype/crm_view_settings/crm_view_settings.json #: frontend/src/components/ViewControls.vue:384 #: frontend/src/components/ViewControls.vue:600 frontend/src/utils/view.js:20 msgid "Kanban" msgstr "crwdns153397:0crwdne153397:0" -#. Label of the kanban_columns (Code) field in DocType 'CRM View Settings' -#: crm/fcrm/doctype/crm_view_settings/crm_view_settings.json +#. Label of the kanban_columns (Code) field in PageType 'CRM View Settings' +#: crm/fcrm/pagetype/crm_view_settings/crm_view_settings.json msgid "Kanban Columns" msgstr "crwdns153399:0crwdne153399:0" -#. Label of the kanban_fields (Code) field in DocType 'CRM View Settings' -#: crm/fcrm/doctype/crm_view_settings/crm_view_settings.json +#. Label of the kanban_fields (Code) field in PageType 'CRM View Settings' +#: crm/fcrm/pagetype/crm_view_settings/crm_view_settings.json msgid "Kanban Fields" msgstr "crwdns153401:0crwdne153401:0" @@ -3204,15 +3204,15 @@ msgstr "crwdns153401:0crwdne153401:0" msgid "Kanban Settings" msgstr "crwdns153403:0crwdne153403:0" -#. Label of the key (Data) field in DocType 'CRM Invitation' -#: crm/fcrm/doctype/crm_invitation/crm_invitation.json +#. Label of the key (Data) field in PageType 'CRM Invitation' +#: crm/fcrm/pagetype/crm_invitation/crm_invitation.json msgid "Key" msgstr "crwdns153405:0crwdne153405:0" -#. Label of the label (Data) field in DocType 'CRM Dropdown Item' -#. Label of the label (Data) field in DocType 'CRM View Settings' -#: crm/fcrm/doctype/crm_dropdown_item/crm_dropdown_item.json -#: crm/fcrm/doctype/crm_view_settings/crm_view_settings.json +#. Label of the label (Data) field in PageType 'CRM Dropdown Item' +#. Label of the label (Data) field in PageType 'CRM View Settings' +#: crm/fcrm/pagetype/crm_dropdown_item/crm_dropdown_item.json +#: crm/fcrm/pagetype/crm_view_settings/crm_view_settings.json #: frontend/src/components/ColumnSettings.vue:100 msgid "Label" msgstr "crwdns153407:0crwdne153407:0" @@ -3229,10 +3229,10 @@ msgstr "crwdns153409:0crwdne153409:0" msgid "Last Month" msgstr "crwdns153411:0crwdne153411:0" -#. Label of the last_name (Data) field in DocType 'CRM Deal' -#. Label of the last_name (Data) field in DocType 'CRM Lead' -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_lead/crm_lead.json +#. Label of the last_name (Data) field in PageType 'CRM Deal' +#. Label of the last_name (Data) field in PageType 'CRM Lead' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_lead/crm_lead.json msgid "Last Name" msgstr "crwdns153413:0crwdne153413:0" @@ -3240,9 +3240,9 @@ msgstr "crwdns153413:0crwdne153413:0" msgid "Last Quarter" msgstr "crwdns153415:0crwdne153415:0" -#. Label of the last_status_change_log (Link) field in DocType 'CRM Status +#. Label of the last_status_change_log (Link) field in PageType 'CRM Status #. Change Log' -#: crm/fcrm/doctype/crm_status_change_log/crm_status_change_log.json +#: crm/fcrm/pagetype/crm_status_change_log/crm_status_change_log.json msgid "Last Status Change Log" msgstr "crwdns153417:0crwdne153417:0" @@ -3270,15 +3270,15 @@ msgstr "crwdns156430:0crwdne156430:0" msgid "Last user assigned by this rule" msgstr "crwdns158882:0crwdne158882:0" -#. Label of the layout (Code) field in DocType 'CRM Dashboard' -#. Label of the layout (Code) field in DocType 'CRM Fields Layout' -#: crm/fcrm/doctype/crm_dashboard/crm_dashboard.json -#: crm/fcrm/doctype/crm_fields_layout/crm_fields_layout.json +#. Label of the layout (Code) field in PageType 'CRM Dashboard' +#. Label of the layout (Code) field in PageType 'CRM Fields Layout' +#: crm/fcrm/pagetype/crm_dashboard/crm_dashboard.json +#: crm/fcrm/pagetype/crm_fields_layout/crm_fields_layout.json msgid "Layout" msgstr "crwdns153425:0crwdne153425:0" -#. Label of the lead (Link) field in DocType 'CRM Deal' -#: crm/fcrm/doctype/crm_deal/crm_deal.json +#. Label of the lead (Link) field in PageType 'CRM Deal' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json #: frontend/src/components/Calendar/CalendarEventPanel.vue:263 #: frontend/src/components/Calendar/CalendarEventPanel.vue:288 #: frontend/src/components/Layouts/AppSidebar.vue:550 @@ -3291,32 +3291,32 @@ msgstr "crwdns153425:0crwdne153425:0" msgid "Lead" msgstr "crwdns153427:0crwdne153427:0" -#. Label of the lead_details_tab (Tab Break) field in DocType 'CRM Deal' -#: crm/fcrm/doctype/crm_deal/crm_deal.json +#. Label of the lead_details_tab (Tab Break) field in PageType 'CRM Deal' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json msgid "Lead Details" msgstr "crwdns153429:0crwdne153429:0" -#. Label of the lead_name (Data) field in DocType 'CRM Deal' -#: crm/fcrm/doctype/crm_deal/crm_deal.json +#. Label of the lead_name (Data) field in PageType 'CRM Deal' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json msgid "Lead Name" msgstr "crwdns153431:0crwdne153431:0" -#. Label of the lead_owner (Link) field in DocType 'CRM Lead' -#: crm/fcrm/doctype/crm_lead/crm_lead.json +#. Label of the lead_owner (Link) field in PageType 'CRM Lead' +#: crm/fcrm/pagetype/crm_lead/crm_lead.json msgid "Lead Owner" msgstr "crwdns153433:0crwdne153433:0" -#: crm/fcrm/doctype/crm_lead/crm_lead.py:73 +#: crm/fcrm/pagetype/crm_lead/crm_lead.py:73 msgid "Lead Owner cannot be same as the Lead Email Address" msgstr "crwdns153435:0crwdne153435:0" -#. Label of a shortcut in the Frappe CRM Workspace -#: crm/fcrm/workspace/frappe_crm/frappe_crm.json +#. Label of a shortcut in the Jingrow CRM Workspace +#: crm/fcrm/workspace/jingrow_crm/jingrow_crm.json msgid "Lead Sources" msgstr "crwdns153437:0crwdne153437:0" -#. Label of a shortcut in the Frappe CRM Workspace -#: crm/fcrm/workspace/frappe_crm/frappe_crm.json +#. Label of a shortcut in the Jingrow CRM Workspace +#: crm/fcrm/workspace/jingrow_crm/jingrow_crm.json msgid "Lead Statuses" msgstr "crwdns153439:0crwdne153439:0" @@ -3328,8 +3328,8 @@ msgstr "crwdns156432:0crwdne156432:0" msgid "Lead to deal conversion pipeline" msgstr "crwdns156434:0crwdne156434:0" -#. Label of a shortcut in the Frappe CRM Workspace -#: crm/fcrm/workspace/frappe_crm/frappe_crm.json +#. Label of a shortcut in the Jingrow CRM Workspace +#: crm/fcrm/workspace/jingrow_crm/jingrow_crm.json #: frontend/src/pages/InvalidPage.vue:9 frontend/src/pages/Lead.vue:340 #: frontend/src/pages/MobileLead.vue:291 msgid "Leads" @@ -3345,8 +3345,8 @@ msgstr "crwdns156438:0crwdne156438:0" msgid "Learn about conditions" msgstr "crwdns158884:0crwdne158884:0" -#. Label of the lft (Int) field in DocType 'CRM Territory' -#: crm/fcrm/doctype/crm_territory/crm_territory.json +#. Label of the lft (Int) field in PageType 'CRM Territory' +#: crm/fcrm/pagetype/crm_territory/crm_territory.json msgid "Left" msgstr "crwdns153445:0crwdne153445:0" @@ -3367,15 +3367,15 @@ msgstr "crwdns153449:0crwdne153449:0" msgid "Link" msgstr "crwdns153451:0crwdne153451:0" -#. Label of the links (Table) field in DocType 'CRM Call Log' -#: crm/fcrm/doctype/crm_call_log/crm_call_log.json +#. Label of the links (Table) field in PageType 'CRM Call Log' +#: crm/fcrm/pagetype/crm_call_log/crm_call_log.json msgid "Links" msgstr "crwdns153453:0crwdne153453:0" -#. Option for the 'Apply To' (Select) field in DocType 'CRM Form Script' -#. Label of the list_tab (Tab Break) field in DocType 'CRM View Settings' -#: crm/fcrm/doctype/crm_form_script/crm_form_script.json -#: crm/fcrm/doctype/crm_view_settings/crm_view_settings.json +#. Option for the 'Apply To' (Select) field in PageType 'CRM Form Script' +#. Label of the list_tab (Tab Break) field in PageType 'CRM View Settings' +#: crm/fcrm/pagetype/crm_form_script/crm_form_script.json +#: crm/fcrm/pagetype/crm_view_settings/crm_view_settings.json #: frontend/src/components/ViewControls.vue:374 #: frontend/src/components/ViewControls.vue:589 frontend/src/utils/view.js:12 msgid "List" @@ -3385,9 +3385,9 @@ msgstr "crwdns153455:0crwdne153455:0" msgid "Listen" msgstr "crwdns153457:0crwdne153457:0" -#. Label of the load_default_columns (Check) field in DocType 'CRM View +#. Label of the load_default_columns (Check) field in PageType 'CRM View #. Settings' -#: crm/fcrm/doctype/crm_view_settings/crm_view_settings.json +#: crm/fcrm/pagetype/crm_view_settings/crm_view_settings.json msgid "Load Default Columns" msgstr "crwdns153459:0crwdne153459:0" @@ -3403,10 +3403,10 @@ msgstr "crwdns153461:0crwdne153461:0" msgid "Loading..." msgstr "crwdns153463:0crwdne153463:0" -#. Label of the log_tab (Tab Break) field in DocType 'CRM Deal' -#. Label of the log_tab (Tab Break) field in DocType 'CRM Lead' -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_lead/crm_lead.json +#. Label of the log_tab (Tab Break) field in PageType 'CRM Deal' +#. Label of the log_tab (Tab Break) field in PageType 'CRM Lead' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_lead/crm_lead.json msgid "Log" msgstr "crwdns153465:0crwdne153465:0" @@ -3417,28 +3417,28 @@ msgid "Log a Call" msgstr "crwdns156792:0crwdne156792:0" #: frontend/src/composables/frappecloud.js:23 -msgid "Login to Frappe Cloud?" +msgid "Login to Jingrow Cloud?" msgstr "crwdns153467:0crwdne153467:0" -#. Label of the brand_logo (Attach) field in DocType 'FCRM Settings' -#: crm/fcrm/doctype/fcrm_settings/fcrm_settings.json +#. Label of the brand_logo (Attach) field in PageType 'FCRM Settings' +#: crm/fcrm/pagetype/fcrm_settings/fcrm_settings.json msgid "Logo" msgstr "crwdns153469:0crwdne153469:0" -#. Option for the 'Type' (Select) field in DocType 'CRM Deal Status' -#: crm/fcrm/doctype/crm_deal_status/crm_deal_status.json +#. Option for the 'Type' (Select) field in PageType 'CRM Deal Status' +#: crm/fcrm/pagetype/crm_deal_status/crm_deal_status.json msgid "Lost" msgstr "crwdns156440:0crwdne156440:0" -#. Label of the lost_notes (Text) field in DocType 'CRM Deal' -#: crm/fcrm/doctype/crm_deal/crm_deal.json +#. Label of the lost_notes (Text) field in PageType 'CRM Deal' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json msgid "Lost Notes" msgstr "crwdns156442:0crwdne156442:0" -#. Label of the lost_reason (Link) field in DocType 'CRM Deal' -#. Label of the lost_reason (Data) field in DocType 'CRM Lost Reason' -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_lost_reason/crm_lost_reason.json +#. Label of the lost_reason (Link) field in PageType 'CRM Deal' +#. Label of the lost_reason (Data) field in PageType 'CRM Lost Reason' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_lost_reason/crm_lost_reason.json msgid "Lost Reason" msgstr "crwdns156444:0crwdne156444:0" @@ -3464,8 +3464,8 @@ msgstr "crwdns156452:0crwdne156452:0" msgid "Lost reason is required" msgstr "crwdns156454:0crwdne156454:0" -#. Option for the 'Priority' (Select) field in DocType 'CRM Task' -#: crm/fcrm/doctype/crm_task/crm_task.json +#. Option for the 'Priority' (Select) field in PageType 'CRM Task' +#: crm/fcrm/pagetype/crm_task/crm_task.json msgid "Low" msgstr "crwdns153473:0crwdne153473:0" @@ -3542,8 +3542,8 @@ msgstr "crwdns156462:0crwdne156462:0" msgid "Mandatory field error: {0}" msgstr "crwdns156464:0{0}crwdne156464:0" -#. Option for the 'Telephony Medium' (Select) field in DocType 'CRM Call Log' -#: crm/fcrm/doctype/crm_call_log/crm_call_log.json +#. Option for the 'Telephony Medium' (Select) field in PageType 'CRM Call Log' +#: crm/fcrm/pagetype/crm_call_log/crm_call_log.json msgid "Manual" msgstr "crwdns153499:0crwdne153499:0" @@ -3562,25 +3562,25 @@ msgstr "crwdns156466:0crwdne156466:0" msgid "May 1, 2025" msgstr "crwdns158886:0crwdne158886:0" -#. Label of the medium (Data) field in DocType 'CRM Call Log' -#. Option for the 'Priority' (Select) field in DocType 'CRM Task' -#: crm/fcrm/doctype/crm_call_log/crm_call_log.json -#: crm/fcrm/doctype/crm_task/crm_task.json +#. Label of the medium (Data) field in PageType 'CRM Call Log' +#. Option for the 'Priority' (Select) field in PageType 'CRM Task' +#: crm/fcrm/pagetype/crm_call_log/crm_call_log.json +#: crm/fcrm/pagetype/crm_task/crm_task.json msgid "Medium" msgstr "crwdns153503:0crwdne153503:0" -#. Option for the 'Type' (Select) field in DocType 'CRM Notification' -#: crm/fcrm/doctype/crm_notification/crm_notification.json +#. Option for the 'Type' (Select) field in PageType 'CRM Notification' +#: crm/fcrm/pagetype/crm_notification/crm_notification.json msgid "Mention" msgstr "crwdns153505:0crwdne153505:0" -#. Label of the message (HTML Editor) field in DocType 'CRM Notification' -#: crm/fcrm/doctype/crm_notification/crm_notification.json +#. Label of the message (HTML Editor) field in PageType 'CRM Notification' +#: crm/fcrm/pagetype/crm_notification/crm_notification.json msgid "Message" msgstr "crwdns153507:0crwdne153507:0" -#. Label of the middle_name (Data) field in DocType 'CRM Lead' -#: crm/fcrm/doctype/crm_lead/crm_lead.json +#. Label of the middle_name (Data) field in PageType 'CRM Lead' +#: crm/fcrm/pagetype/crm_lead/crm_lead.json msgid "Middle Name" msgstr "crwdns153509:0crwdne153509:0" @@ -3588,10 +3588,10 @@ msgstr "crwdns153509:0crwdne153509:0" msgid "Minimize" msgstr "crwdns158674:0crwdne158674:0" -#. Label of the mobile_no (Data) field in DocType 'CRM Contacts' -#. Label of the mobile_no (Data) field in DocType 'CRM Lead' -#: crm/fcrm/doctype/crm_contacts/crm_contacts.json -#: crm/fcrm/doctype/crm_lead/crm_lead.json +#. Label of the mobile_no (Data) field in PageType 'CRM Contacts' +#. Label of the mobile_no (Data) field in PageType 'CRM Lead' +#: crm/fcrm/pagetype/crm_contacts/crm_contacts.json +#: crm/fcrm/pagetype/crm_lead/crm_lead.json msgid "Mobile No" msgstr "crwdns153511:0crwdne153511:0" @@ -3600,8 +3600,8 @@ msgstr "crwdns153511:0crwdne153511:0" msgid "Mobile No should be a number" msgstr "crwdns153513:0crwdne153513:0" -#. Label of the mobile_no (Data) field in DocType 'CRM Telephony Agent' -#: crm/fcrm/doctype/crm_telephony_agent/crm_telephony_agent.json +#. Label of the mobile_no (Data) field in PageType 'CRM Telephony Agent' +#: crm/fcrm/pagetype/crm_telephony_agent/crm_telephony_agent.json msgid "Mobile No." msgstr "crwdns153515:0crwdne153515:0" @@ -3623,10 +3623,10 @@ msgstr "crwdns156468:0crwdne156468:0" msgid "Mobile no" msgstr "crwdns153521:0crwdne153521:0" -#. Option for the 'Weekly Off' (Select) field in DocType 'CRM Holiday List' -#. Option for the 'Workday' (Select) field in DocType 'CRM Service Day' -#: crm/fcrm/doctype/crm_holiday_list/crm_holiday_list.json -#: crm/fcrm/doctype/crm_service_day/crm_service_day.json +#. Option for the 'Weekly Off' (Select) field in PageType 'CRM Holiday List' +#. Option for the 'Workday' (Select) field in PageType 'CRM Service Day' +#: crm/fcrm/pagetype/crm_holiday_list/crm_holiday_list.json +#: crm/fcrm/pagetype/crm_service_day/crm_service_day.json msgid "Monday" msgstr "crwdns153523:0crwdne153523:0" @@ -3658,12 +3658,12 @@ msgstr "crwdns153531:0crwdne153531:0" msgid "My Open Deals" msgstr "crwdns153533:0crwdne153533:0" -#. Label of the title (Data) field in DocType 'CRM Dashboard' -#. Label of the name1 (Data) field in DocType 'CRM Dropdown Item' -#. Label of the brand_name (Data) field in DocType 'FCRM Settings' -#: crm/fcrm/doctype/crm_dashboard/crm_dashboard.json -#: crm/fcrm/doctype/crm_dropdown_item/crm_dropdown_item.json -#: crm/fcrm/doctype/fcrm_settings/fcrm_settings.json +#. Label of the title (Data) field in PageType 'CRM Dashboard' +#. Label of the name1 (Data) field in PageType 'CRM Dropdown Item' +#. Label of the brand_name (Data) field in PageType 'FCRM Settings' +#: crm/fcrm/pagetype/crm_dashboard/crm_dashboard.json +#: crm/fcrm/pagetype/crm_dropdown_item/crm_dropdown_item.json +#: crm/fcrm/pagetype/fcrm_settings/fcrm_settings.json #: frontend/src/components/Settings/AssignmentRules/AssignmentRuleView.vue:51 #: frontend/src/components/Settings/AssignmentRules/AssignmentRuleView.vue:52 #: frontend/src/components/Settings/EmailTemplate/EditEmailTemplate.vue:39 @@ -3680,10 +3680,10 @@ msgstr "crwdns153535:0crwdne153535:0" msgid "Name is required" msgstr "crwdns156472:0crwdne156472:0" -#. Label of the naming_series (Select) field in DocType 'CRM Deal' -#. Label of the naming_series (Select) field in DocType 'CRM Product' -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_product/crm_product.json +#. Label of the naming_series (Select) field in PageType 'CRM Deal' +#. Label of the naming_series (Select) field in PageType 'CRM Product' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_product/crm_product.json msgid "Naming Series" msgstr "crwdns153537:0crwdne153537:0" @@ -3691,15 +3691,15 @@ msgstr "crwdns153537:0crwdne153537:0" msgid "Nested conditions" msgstr "crwdns158888:0crwdne158888:0" -#. Label of the net_amount (Currency) field in DocType 'CRM Products' -#: crm/fcrm/doctype/crm_products/crm_products.json +#. Label of the net_amount (Currency) field in PageType 'CRM Products' +#: crm/fcrm/pagetype/crm_products/crm_products.json msgid "Net Amount" msgstr "crwdns156474:0crwdne156474:0" -#. Label of the net_total (Currency) field in DocType 'CRM Deal' -#. Label of the net_total (Currency) field in DocType 'CRM Lead' -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_lead/crm_lead.json +#. Label of the net_total (Currency) field in PageType 'CRM Deal' +#. Label of the net_total (Currency) field in PageType 'CRM Lead' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_lead/crm_lead.json msgid "Net Total" msgstr "crwdns156476:0crwdne156476:0" @@ -3814,8 +3814,8 @@ msgstr "crwdns153571:0crwdne153571:0" msgid "Next Quarter" msgstr "crwdns153573:0crwdne153573:0" -#. Label of the next_step (Data) field in DocType 'CRM Deal' -#: crm/fcrm/doctype/crm_deal/crm_deal.json +#. Label of the next_step (Data) field in PageType 'CRM Deal' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json msgid "Next Step" msgstr "crwdns153575:0crwdne153575:0" @@ -3831,8 +3831,8 @@ msgstr "crwdns153579:0crwdne153579:0" msgid "No" msgstr "crwdns153581:0crwdne153581:0" -#. Option for the 'Status' (Select) field in DocType 'CRM Call Log' -#: crm/fcrm/doctype/crm_call_log/crm_call_log.json +#. Option for the 'Status' (Select) field in PageType 'CRM Call Log' +#: crm/fcrm/pagetype/crm_call_log/crm_call_log.json msgid "No Answer" msgstr "crwdns153583:0crwdne153583:0" @@ -3930,12 +3930,12 @@ msgstr "crwdns153607:0{0}crwdne153607:0" msgid "No {0} Found" msgstr "crwdns153609:0{0}crwdne153609:0" -#. Label of the no_of_employees (Select) field in DocType 'CRM Deal' -#. Label of the no_of_employees (Select) field in DocType 'CRM Lead' -#. Label of the no_of_employees (Select) field in DocType 'CRM Organization' -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_lead/crm_lead.json -#: crm/fcrm/doctype/crm_organization/crm_organization.json +#. Label of the no_of_employees (Select) field in PageType 'CRM Deal' +#. Label of the no_of_employees (Select) field in PageType 'CRM Lead' +#. Label of the no_of_employees (Select) field in PageType 'CRM Organization' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_lead/crm_lead.json +#: crm/fcrm/pagetype/crm_organization/crm_organization.json msgid "No. of Employees" msgstr "crwdns153611:0crwdne153611:0" @@ -3981,24 +3981,24 @@ msgstr "crwdns153619:0crwdne153619:0" msgid "Not Saved" msgstr "crwdns153621:0crwdne153621:0" -#: crm/fcrm/doctype/crm_deal/crm_deal.py:272 +#: crm/fcrm/pagetype/crm_deal/crm_deal.py:272 msgid "Not allowed to add contact to Deal" msgstr "crwdns153623:0crwdne153623:0" -#: crm/fcrm/doctype/crm_lead/crm_lead.py:408 +#: crm/fcrm/pagetype/crm_lead/crm_lead.py:408 msgid "Not allowed to convert Lead to Deal" msgstr "crwdns153625:0crwdne153625:0" -#: crm/fcrm/doctype/crm_deal/crm_deal.py:283 +#: crm/fcrm/pagetype/crm_deal/crm_deal.py:283 msgid "Not allowed to remove contact from Deal" msgstr "crwdns153627:0crwdne153627:0" -#: crm/fcrm/doctype/crm_deal/crm_deal.py:294 +#: crm/fcrm/pagetype/crm_deal/crm_deal.py:294 msgid "Not allowed to set primary contact for Deal" msgstr "crwdns153629:0crwdne153629:0" -#. Label of the note (Link) field in DocType 'CRM Call Log' -#: crm/fcrm/doctype/crm_call_log/crm_call_log.json +#. Label of the note (Link) field in PageType 'CRM Call Log' +#: crm/fcrm/pagetype/crm_call_log/crm_call_log.json #: frontend/src/components/Layouts/AppSidebar.vue:554 msgid "Note" msgstr "crwdns153631:0crwdne153631:0" @@ -4017,21 +4017,21 @@ msgstr "crwdns153635:0crwdne153635:0" msgid "Notification" msgstr "crwdns153637:0crwdne153637:0" -#. Label of the notification_text (Text) field in DocType 'CRM Notification' -#: crm/fcrm/doctype/crm_notification/crm_notification.json +#. Label of the notification_text (Text) field in PageType 'CRM Notification' +#: crm/fcrm/pagetype/crm_notification/crm_notification.json msgid "Notification Text" msgstr "crwdns153639:0crwdne153639:0" -#. Label of the notification_type_doc (Dynamic Link) field in DocType 'CRM +#. Label of the notification_type_pg (Dynamic Link) field in PageType 'CRM #. Notification' -#: crm/fcrm/doctype/crm_notification/crm_notification.json -msgid "Notification Type Doc" +#: crm/fcrm/pagetype/crm_notification/crm_notification.json +msgid "Notification Type Pg" msgstr "crwdns153641:0crwdne153641:0" -#. Label of the notification_type_doctype (Link) field in DocType 'CRM +#. Label of the notification_type_pagetype (Link) field in PageType 'CRM #. Notification' -#: crm/fcrm/doctype/crm_notification/crm_notification.json -msgid "Notification Type Doctype" +#: crm/fcrm/pagetype/crm_notification/crm_notification.json +msgid "Notification Type Pagetype" msgstr "crwdns153643:0crwdne153643:0" #: frontend/src/components/Layouts/AppSidebar.vue:13 @@ -4041,8 +4041,8 @@ msgstr "crwdns153643:0crwdne153643:0" msgid "Notifications" msgstr "crwdns153645:0crwdne153645:0" -#. Label of the number (Data) field in DocType 'CRM Telephony Phone' -#: crm/fcrm/doctype/crm_telephony_phone/crm_telephony_phone.json +#. Label of the number (Data) field in PageType 'CRM Telephony Phone' +#: crm/fcrm/pagetype/crm_telephony_phone/crm_telephony_phone.json msgid "Number" msgstr "crwdns153647:0crwdne153647:0" @@ -4064,18 +4064,18 @@ msgstr "crwdns156502:0crwdne156502:0" msgid "Old Condition" msgstr "crwdns158900:0crwdne158900:0" -#. Label of the old_parent (Link) field in DocType 'CRM Territory' -#: crm/fcrm/doctype/crm_territory/crm_territory.json +#. Label of the old_parent (Link) field in PageType 'CRM Territory' +#: crm/fcrm/pagetype/crm_territory/crm_territory.json msgid "Old Parent" msgstr "crwdns153649:0crwdne153649:0" -#. Option for the 'Type' (Select) field in DocType 'CRM Deal Status' -#: crm/fcrm/doctype/crm_deal_status/crm_deal_status.json +#. Option for the 'Type' (Select) field in PageType 'CRM Deal Status' +#: crm/fcrm/pagetype/crm_deal_status/crm_deal_status.json msgid "On Hold" msgstr "crwdns156504:0crwdne156504:0" -#. Option for the 'Type' (Select) field in DocType 'CRM Deal Status' -#: crm/fcrm/doctype/crm_deal_status/crm_deal_status.json +#. Option for the 'Type' (Select) field in PageType 'CRM Deal Status' +#: crm/fcrm/pagetype/crm_deal_status/crm_deal_status.json msgid "Ongoing" msgstr "crwdns156506:0crwdne156506:0" @@ -4088,13 +4088,13 @@ msgstr "crwdns156508:0crwdne156508:0" msgid "Only image files are allowed" msgstr "crwdns156510:0crwdne156510:0" -#: crm/fcrm/doctype/crm_deal/crm_deal.py:60 -#: crm/fcrm/doctype/crm_telephony_agent/crm_telephony_agent.py:23 +#: crm/fcrm/pagetype/crm_deal/crm_deal.py:60 +#: crm/fcrm/pagetype/crm_telephony_agent/crm_telephony_agent.py:23 msgid "Only one {0} can be set as primary." msgstr "crwdns153653:0{0}crwdne153653:0" -#. Option for the 'Type' (Select) field in DocType 'CRM Deal Status' -#: crm/fcrm/doctype/crm_deal_status/crm_deal_status.json +#. Option for the 'Type' (Select) field in PageType 'CRM Deal Status' +#: crm/fcrm/pagetype/crm_deal_status/crm_deal_status.json msgid "Open" msgstr "crwdns156512:0crwdne156512:0" @@ -4108,13 +4108,13 @@ msgstr "crwdns153655:0crwdne153655:0" msgid "Open Lead" msgstr "crwdns153657:0crwdne153657:0" -#: crm/fcrm/doctype/crm_deal/crm_deal.js:6 -#: crm/fcrm/doctype/crm_lead/crm_lead.js:6 +#: crm/fcrm/pagetype/crm_deal/crm_deal.js:6 +#: crm/fcrm/pagetype/crm_lead/crm_lead.js:6 msgid "Open in Portal" msgstr "crwdns153659:0crwdne153659:0" -#. Label of the open_in_new_window (Check) field in DocType 'CRM Dropdown Item' -#: crm/fcrm/doctype/crm_dropdown_item/crm_dropdown_item.json +#. Label of the open_in_new_window (Check) field in PageType 'CRM Dropdown Item' +#: crm/fcrm/pagetype/crm_dropdown_item/crm_dropdown_item.json msgid "Open in new window" msgstr "crwdns153661:0crwdne153661:0" @@ -4136,17 +4136,17 @@ msgstr "crwdns153665:0crwdne153665:0" msgid "Or create leads manually" msgstr "crwdns156514:0crwdne156514:0" -#. Label of the order_by_tab (Tab Break) field in DocType 'CRM View Settings' -#. Label of the order_by (Code) field in DocType 'CRM View Settings' -#: crm/fcrm/doctype/crm_view_settings/crm_view_settings.json +#. Label of the order_by_tab (Tab Break) field in PageType 'CRM View Settings' +#. Label of the order_by (Code) field in PageType 'CRM View Settings' +#: crm/fcrm/pagetype/crm_view_settings/crm_view_settings.json msgid "Order By" msgstr "crwdns153667:0crwdne153667:0" -#. Label of the organization (Link) field in DocType 'CRM Deal' -#. Label of the organization_tab (Tab Break) field in DocType 'CRM Deal' -#. Label of the organization (Data) field in DocType 'CRM Lead' -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_lead/crm_lead.json +#. Label of the organization (Link) field in PageType 'CRM Deal' +#. Label of the organization_tab (Tab Break) field in PageType 'CRM Deal' +#. Label of the organization (Data) field in PageType 'CRM Lead' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_lead/crm_lead.json #: frontend/src/components/Layouts/AppSidebar.vue:553 #: frontend/src/components/Modals/ConvertToDealModal.vue:25 #: frontend/src/pages/Contact.vue:494 frontend/src/pages/MobileContact.vue:502 @@ -4158,22 +4158,22 @@ msgstr "crwdns153667:0crwdne153667:0" msgid "Organization" msgstr "crwdns153669:0crwdne153669:0" -#. Label of the organization_details_section (Section Break) field in DocType +#. Label of the organization_details_section (Section Break) field in PageType #. 'CRM Deal' -#: crm/fcrm/doctype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_deal/crm_deal.json msgid "Organization Details" msgstr "crwdns153671:0crwdne153671:0" -#. Label of the organization_logo (Attach Image) field in DocType 'CRM +#. Label of the organization_logo (Attach Image) field in PageType 'CRM #. Organization' -#: crm/fcrm/doctype/crm_organization/crm_organization.json +#: crm/fcrm/pagetype/crm_organization/crm_organization.json msgid "Organization Logo" msgstr "crwdns153673:0crwdne153673:0" -#. Label of the organization_name (Data) field in DocType 'CRM Deal' -#. Label of the organization_name (Data) field in DocType 'CRM Organization' -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_organization/crm_organization.json +#. Label of the organization_name (Data) field in PageType 'CRM Deal' +#. Label of the organization_name (Data) field in PageType 'CRM Organization' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_organization/crm_organization.json msgid "Organization Name" msgstr "crwdns153675:0crwdne153675:0" @@ -4181,8 +4181,8 @@ msgstr "crwdns153675:0crwdne153675:0" msgid "Organization logo" msgstr "crwdns153677:0crwdne153677:0" -#. Label of a shortcut in the Frappe CRM Workspace -#: crm/fcrm/workspace/frappe_crm/frappe_crm.json +#. Label of a shortcut in the Jingrow CRM Workspace +#: crm/fcrm/workspace/jingrow_crm/jingrow_crm.json #: frontend/src/pages/MobileOrganization.vue:205 #: frontend/src/pages/Organization.vue:234 msgid "Organizations" @@ -4196,8 +4196,8 @@ msgstr "crwdns158904:0crwdne158904:0" msgid "Other features" msgstr "crwdns156516:0crwdne156516:0" -#. Label of the organization_tab (Tab Break) field in DocType 'CRM Lead' -#: crm/fcrm/doctype/crm_lead/crm_lead.json +#. Label of the organization_tab (Tab Break) field in PageType 'CRM Lead' +#: crm/fcrm/pagetype/crm_lead/crm_lead.json msgid "Others" msgstr "crwdns153683:0crwdne153683:0" @@ -4205,13 +4205,13 @@ msgstr "crwdns153683:0crwdne153683:0" msgid "Outbound Call" msgstr "crwdns153685:0crwdne153685:0" -#. Option for the 'Type' (Select) field in DocType 'CRM Call Log' -#: crm/fcrm/doctype/crm_call_log/crm_call_log.json +#. Option for the 'Type' (Select) field in PageType 'CRM Call Log' +#: crm/fcrm/pagetype/crm_call_log/crm_call_log.json msgid "Outgoing" msgstr "crwdns153687:0crwdne153687:0" -#. Label of the log_owner (Link) field in DocType 'CRM Status Change Log' -#: crm/fcrm/doctype/crm_status_change_log/crm_status_change_log.json +#. Label of the log_owner (Link) field in PageType 'CRM Status Change Log' +#: crm/fcrm/pagetype/crm_status_change_log/crm_status_change_log.json msgid "Owner" msgstr "crwdns153689:0crwdne153689:0" @@ -4219,8 +4219,8 @@ msgstr "crwdns153689:0crwdne153689:0" msgid "Owner: {0}" msgstr "crwdns158906:0{0}crwdne158906:0" -#. Label of the parent_crm_territory (Link) field in DocType 'CRM Territory' -#: crm/fcrm/doctype/crm_territory/crm_territory.json +#. Label of the parent_crm_territory (Link) field in PageType 'CRM Territory' +#: crm/fcrm/pagetype/crm_territory/crm_territory.json msgid "Parent CRM Territory" msgstr "crwdns153691:0crwdne153691:0" @@ -4251,8 +4251,8 @@ msgstr "crwdns153695:0crwdne153695:0" msgid "Payment Reminder from Frappé - (#{{ name }})" msgstr "crwdns153697:0{{ name }}crwdne153697:0" -#. Option for the 'Status' (Select) field in DocType 'CRM Invitation' -#: crm/fcrm/doctype/crm_invitation/crm_invitation.json +#. Option for the 'Status' (Select) field in PageType 'CRM Invitation' +#: crm/fcrm/pagetype/crm_invitation/crm_invitation.json msgid "Pending" msgstr "crwdns153699:0crwdne153699:0" @@ -4264,10 +4264,10 @@ msgstr "crwdns153701:0crwdne153701:0" msgid "Period" msgstr "crwdns156524:0crwdne156524:0" -#. Label of the person_section (Section Break) field in DocType 'CRM Deal' -#. Label of the person_tab (Tab Break) field in DocType 'CRM Lead' -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_lead/crm_lead.json +#. Label of the person_section (Section Break) field in PageType 'CRM Deal' +#. Label of the person_tab (Tab Break) field in PageType 'CRM Lead' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_lead/crm_lead.json msgid "Person" msgstr "crwdns153703:0crwdne153703:0" @@ -4275,19 +4275,19 @@ msgstr "crwdns153703:0crwdne153703:0" msgid "Personal Settings" msgstr "crwdns159314:0crwdne159314:0" -#. Label of the phone (Data) field in DocType 'CRM Contacts' -#. Label of the phone (Data) field in DocType 'CRM Lead' -#. Option for the 'Device' (Select) field in DocType 'CRM Telephony Agent' -#: crm/fcrm/doctype/crm_contacts/crm_contacts.json -#: crm/fcrm/doctype/crm_lead/crm_lead.json -#: crm/fcrm/doctype/crm_telephony_agent/crm_telephony_agent.json +#. Label of the phone (Data) field in PageType 'CRM Contacts' +#. Label of the phone (Data) field in PageType 'CRM Lead' +#. Option for the 'Device' (Select) field in PageType 'CRM Telephony Agent' +#: crm/fcrm/pagetype/crm_contacts/crm_contacts.json +#: crm/fcrm/pagetype/crm_lead/crm_lead.json +#: crm/fcrm/pagetype/crm_telephony_agent/crm_telephony_agent.json #: frontend/src/pages/MobileOrganization.vue:495 #: frontend/src/pages/Organization.vue:516 msgid "Phone" msgstr "crwdns153705:0crwdne153705:0" -#. Label of the phone_nos (Table) field in DocType 'CRM Telephony Agent' -#: crm/fcrm/doctype/crm_telephony_agent/crm_telephony_agent.json +#. Label of the phone_nos (Table) field in PageType 'CRM Telephony Agent' +#: crm/fcrm/pagetype/crm_telephony_agent/crm_telephony_agent.json msgid "Phone Numbers" msgstr "crwdns153707:0crwdne153707:0" @@ -4295,8 +4295,8 @@ msgstr "crwdns153707:0crwdne153707:0" msgid "Pin View" msgstr "crwdns153709:0crwdne153709:0" -#. Label of the pinned (Check) field in DocType 'CRM View Settings' -#: crm/fcrm/doctype/crm_view_settings/crm_view_settings.json +#. Label of the pinned (Check) field in PageType 'CRM View Settings' +#: crm/fcrm/pagetype/crm_view_settings/crm_view_settings.json msgid "Pinned" msgstr "crwdns153711:0crwdne153711:0" @@ -4346,7 +4346,7 @@ msgstr "crwdns153721:0crwdne153721:0" msgid "Please select an existing organization" msgstr "crwdns153723:0crwdne153723:0" -#: crm/fcrm/doctype/helpdesk_crm_settings/helpdesk_crm_settings.py:126 +#: crm/fcrm/pagetype/helpdesk_crm_settings/helpdesk_crm_settings.py:126 msgid "Please set Email Address" msgstr "crwdns158678:0crwdne158678:0" @@ -4354,18 +4354,18 @@ msgstr "crwdns158678:0crwdne158678:0" msgid "Please setup Exotel intergration" msgstr "crwdns153725:0crwdne153725:0" -#: crm/fcrm/doctype/crm_deal/crm_deal.py:181 +#: crm/fcrm/pagetype/crm_deal/crm_deal.py:181 msgid "Please specify a reason for losing the deal." msgstr "crwdns156532:0crwdne156532:0" -#: crm/fcrm/doctype/crm_deal/crm_deal.py:183 +#: crm/fcrm/pagetype/crm_deal/crm_deal.py:183 msgid "Please specify the reason for losing the deal." msgstr "crwdns156534:0crwdne156534:0" -#. Label of the position (Int) field in DocType 'CRM Deal Status' -#. Label of the position (Int) field in DocType 'CRM Lead Status' -#: crm/fcrm/doctype/crm_deal_status/crm_deal_status.json -#: crm/fcrm/doctype/crm_lead_status/crm_lead_status.json +#. Label of the position (Int) field in PageType 'CRM Deal Status' +#. Label of the position (Int) field in PageType 'CRM Lead Status' +#: crm/fcrm/pagetype/crm_deal_status/crm_deal_status.json +#: crm/fcrm/pagetype/crm_lead_status/crm_lead_status.json msgid "Position" msgstr "crwdns153727:0crwdne153727:0" @@ -4373,18 +4373,18 @@ msgstr "crwdns153727:0crwdne153727:0" msgid "Primary" msgstr "crwdns153729:0crwdne153729:0" -#. Label of the email (Data) field in DocType 'CRM Deal' -#: crm/fcrm/doctype/crm_deal/crm_deal.json +#. Label of the email (Data) field in PageType 'CRM Deal' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json msgid "Primary Email" msgstr "crwdns156536:0crwdne156536:0" -#. Label of the mobile_no (Data) field in DocType 'CRM Deal' -#: crm/fcrm/doctype/crm_deal/crm_deal.json +#. Label of the mobile_no (Data) field in PageType 'CRM Deal' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json msgid "Primary Mobile No" msgstr "crwdns156538:0crwdne156538:0" -#. Label of the phone (Data) field in DocType 'CRM Deal' -#: crm/fcrm/doctype/crm_deal/crm_deal.json +#. Label of the phone (Data) field in PageType 'CRM Deal' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json msgid "Primary Phone" msgstr "crwdns156540:0crwdne156540:0" @@ -4392,57 +4392,57 @@ msgstr "crwdns156540:0crwdne156540:0" msgid "Primary contact set" msgstr "crwdns153731:0crwdne153731:0" -#. Label of the priorities (Table) field in DocType 'CRM Service Level +#. Label of the priorities (Table) field in PageType 'CRM Service Level #. Agreement' -#: crm/fcrm/doctype/crm_service_level_agreement/crm_service_level_agreement.json +#: crm/fcrm/pagetype/crm_service_level_agreement/crm_service_level_agreement.json msgid "Priorities" msgstr "crwdns153733:0crwdne153733:0" -#. Label of the priority (Link) field in DocType 'CRM Service Level Priority' -#. Label of the priority (Select) field in DocType 'CRM Task' -#: crm/fcrm/doctype/crm_service_level_priority/crm_service_level_priority.json -#: crm/fcrm/doctype/crm_task/crm_task.json +#. Label of the priority (Link) field in PageType 'CRM Service Level Priority' +#. Label of the priority (Select) field in PageType 'CRM Task' +#: crm/fcrm/pagetype/crm_service_level_priority/crm_service_level_priority.json +#: crm/fcrm/pagetype/crm_task/crm_task.json #: frontend/src/components/Settings/AssignmentRules/AssignmentRuleView.vue:64 #: frontend/src/components/Settings/AssignmentRules/AssignmentRulesList.vue:20 msgid "Priority" msgstr "crwdns153735:0crwdne153735:0" -#. Label of the private (Check) field in DocType 'CRM Dashboard' -#: crm/fcrm/doctype/crm_dashboard/crm_dashboard.json +#. Label of the private (Check) field in PageType 'CRM Dashboard' +#: crm/fcrm/pagetype/crm_dashboard/crm_dashboard.json #: frontend/src/components/FilesUploader/FilesUploaderArea.vue:89 msgid "Private" msgstr "crwdns153737:0crwdne153737:0" -#. Label of the probability (Percent) field in DocType 'CRM Deal' -#. Label of the probability (Percent) field in DocType 'CRM Deal Status' -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_deal_status/crm_deal_status.json +#. Label of the probability (Percent) field in PageType 'CRM Deal' +#. Label of the probability (Percent) field in PageType 'CRM Deal Status' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_deal_status/crm_deal_status.json msgid "Probability" msgstr "crwdns153739:0crwdne153739:0" -#. Label of the product_code (Link) field in DocType 'CRM Products' -#: crm/fcrm/doctype/crm_products/crm_products.json +#. Label of the product_code (Link) field in PageType 'CRM Products' +#: crm/fcrm/pagetype/crm_products/crm_products.json msgid "Product" msgstr "crwdns156542:0crwdne156542:0" -#. Label of the product_code (Data) field in DocType 'CRM Product' -#: crm/fcrm/doctype/crm_product/crm_product.json +#. Label of the product_code (Data) field in PageType 'CRM Product' +#: crm/fcrm/pagetype/crm_product/crm_product.json msgid "Product Code" msgstr "crwdns156544:0crwdne156544:0" -#. Label of the product_name (Data) field in DocType 'CRM Product' -#. Label of the product_name (Data) field in DocType 'CRM Products' -#: crm/fcrm/doctype/crm_product/crm_product.json -#: crm/fcrm/doctype/crm_products/crm_products.json +#. Label of the product_name (Data) field in PageType 'CRM Product' +#. Label of the product_name (Data) field in PageType 'CRM Products' +#: crm/fcrm/pagetype/crm_product/crm_product.json +#: crm/fcrm/pagetype/crm_products/crm_products.json msgid "Product Name" msgstr "crwdns156546:0crwdne156546:0" -#. Label of the products_tab (Tab Break) field in DocType 'CRM Deal' -#. Label of the products (Table) field in DocType 'CRM Deal' -#. Label of the products_tab (Tab Break) field in DocType 'CRM Lead' -#. Label of the products (Table) field in DocType 'CRM Lead' -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_lead/crm_lead.json +#. Label of the products_tab (Tab Break) field in PageType 'CRM Deal' +#. Label of the products (Table) field in PageType 'CRM Deal' +#. Label of the products_tab (Tab Break) field in PageType 'CRM Lead' +#. Label of the products (Table) field in PageType 'CRM Lead' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_lead/crm_lead.json msgid "Products" msgstr "crwdns156548:0crwdne156548:0" @@ -4459,8 +4459,8 @@ msgstr "crwdns153743:0crwdne153743:0" msgid "Projected vs actual revenue based on deal probability" msgstr "crwdns156550:0crwdne156550:0" -#. Label of the public (Check) field in DocType 'CRM View Settings' -#: crm/fcrm/doctype/crm_view_settings/crm_view_settings.json +#. Label of the public (Check) field in PageType 'CRM View Settings' +#: crm/fcrm/pagetype/crm_view_settings/crm_view_settings.json msgid "Public" msgstr "crwdns153745:0crwdne153745:0" @@ -4472,23 +4472,23 @@ msgstr "crwdns153747:0crwdne153747:0" msgid "Public view" msgstr "crwdns156552:0crwdne156552:0" -#. Label of the qty (Float) field in DocType 'CRM Products' -#: crm/fcrm/doctype/crm_products/crm_products.json +#. Label of the qty (Float) field in PageType 'CRM Products' +#: crm/fcrm/pagetype/crm_products/crm_products.json msgid "Quantity" msgstr "crwdns156554:0crwdne156554:0" -#. Option for the 'Status' (Select) field in DocType 'CRM Call Log' -#: crm/fcrm/doctype/crm_call_log/crm_call_log.json +#. Option for the 'Status' (Select) field in PageType 'CRM Call Log' +#: crm/fcrm/pagetype/crm_call_log/crm_call_log.json msgid "Queued" msgstr "crwdns153749:0crwdne153749:0" -#. Option for the 'Type' (Select) field in DocType 'CRM Fields Layout' -#: crm/fcrm/doctype/crm_fields_layout/crm_fields_layout.json +#. Option for the 'Type' (Select) field in PageType 'CRM Fields Layout' +#: crm/fcrm/pagetype/crm_fields_layout/crm_fields_layout.json msgid "Quick Entry" msgstr "crwdns153751:0crwdne153751:0" -#. Option for the 'Type' (Select) field in DocType 'CRM Global Settings' -#: crm/fcrm/doctype/crm_global_settings/crm_global_settings.json +#. Option for the 'Type' (Select) field in PageType 'CRM Global Settings' +#: crm/fcrm/pagetype/crm_global_settings/crm_global_settings.json msgid "Quick Filters" msgstr "crwdns153753:0crwdne153753:0" @@ -4500,13 +4500,13 @@ msgstr "crwdns153755:0crwdne153755:0" msgid "Quick entry layout" msgstr "crwdns156556:0crwdne156556:0" -#. Label of the rate (Currency) field in DocType 'CRM Products' -#: crm/fcrm/doctype/crm_products/crm_products.json +#. Label of the rate (Currency) field in PageType 'CRM Products' +#: crm/fcrm/pagetype/crm_products/crm_products.json msgid "Rate" msgstr "crwdns156558:0crwdne156558:0" -#. Label of the read (Check) field in DocType 'CRM Notification' -#: crm/fcrm/doctype/crm_notification/crm_notification.json +#. Label of the read (Check) field in PageType 'CRM Notification' +#: crm/fcrm/pagetype/crm_notification/crm_notification.json msgid "Read" msgstr "crwdns153757:0crwdne153757:0" @@ -4514,48 +4514,48 @@ msgstr "crwdns153757:0crwdne153757:0" msgid "Reason" msgstr "crwdns156560:0crwdne156560:0" -#. Label of the record_calls (Check) field in DocType 'CRM Twilio Settings' -#: crm/fcrm/doctype/crm_twilio_settings/crm_twilio_settings.json +#. Label of the record_calls (Check) field in PageType 'CRM Twilio Settings' +#: crm/fcrm/pagetype/crm_twilio_settings/crm_twilio_settings.json msgid "Record Calls" msgstr "crwdns153759:0crwdne153759:0" -#. Label of the record_call (Check) field in DocType 'CRM Exotel Settings' -#: crm/fcrm/doctype/crm_exotel_settings/crm_exotel_settings.json +#. Label of the record_call (Check) field in PageType 'CRM Exotel Settings' +#: crm/fcrm/pagetype/crm_exotel_settings/crm_exotel_settings.json msgid "Record Outgoing Calls" msgstr "crwdns153761:0crwdne153761:0" -#. Label of the recording_url (Data) field in DocType 'CRM Call Log' -#: crm/fcrm/doctype/crm_call_log/crm_call_log.json +#. Label of the recording_url (Data) field in PageType 'CRM Call Log' +#: crm/fcrm/pagetype/crm_call_log/crm_call_log.json msgid "Recording URL" msgstr "crwdns153763:0crwdne153763:0" -#. Label of the reference_name (Dynamic Link) field in DocType 'CRM +#. Label of the reference_name (Dynamic Link) field in PageType 'CRM #. Notification' -#. Label of the reference_docname (Dynamic Link) field in DocType 'CRM Task' -#. Label of the reference_docname (Dynamic Link) field in DocType 'FCRM Note' -#: crm/fcrm/doctype/crm_notification/crm_notification.json -#: crm/fcrm/doctype/crm_task/crm_task.json -#: crm/fcrm/doctype/fcrm_note/fcrm_note.json -msgid "Reference Doc" +#. Label of the reference_docname (Dynamic Link) field in PageType 'CRM Task' +#. Label of the reference_docname (Dynamic Link) field in PageType 'FCRM Note' +#: crm/fcrm/pagetype/crm_notification/crm_notification.json +#: crm/fcrm/pagetype/crm_task/crm_task.json +#: crm/fcrm/pagetype/fcrm_note/fcrm_note.json +msgid "Reference Pg" msgstr "crwdns153765:0crwdne153765:0" -#. Label of the reference_doctype (Link) field in DocType 'CRM Notification' -#: crm/fcrm/doctype/crm_notification/crm_notification.json -msgid "Reference Doctype" +#. Label of the reference_pagetype (Link) field in PageType 'CRM Notification' +#: crm/fcrm/pagetype/crm_notification/crm_notification.json +msgid "Reference Pagetype" msgstr "crwdns153767:0crwdne153767:0" -#. Label of the reference_doctype (Link) field in DocType 'CRM Call Log' -#. Label of the reference_doctype (Link) field in DocType 'CRM Task' -#. Label of the reference_doctype (Link) field in DocType 'FCRM Note' -#: crm/fcrm/doctype/crm_call_log/crm_call_log.json -#: crm/fcrm/doctype/crm_task/crm_task.json -#: crm/fcrm/doctype/fcrm_note/fcrm_note.json +#. Label of the reference_pagetype (Link) field in PageType 'CRM Call Log' +#. Label of the reference_pagetype (Link) field in PageType 'CRM Task' +#. Label of the reference_pagetype (Link) field in PageType 'FCRM Note' +#: crm/fcrm/pagetype/crm_call_log/crm_call_log.json +#: crm/fcrm/pagetype/crm_task/crm_task.json +#: crm/fcrm/pagetype/fcrm_note/fcrm_note.json msgid "Reference Document Type" msgstr "crwdns153769:0crwdne153769:0" -#. Label of the reference_docname (Dynamic Link) field in DocType 'CRM Call +#. Label of the reference_docname (Dynamic Link) field in PageType 'CRM Call #. Log' -#: crm/fcrm/doctype/crm_call_log/crm_call_log.json +#: crm/fcrm/pagetype/crm_call_log/crm_call_log.json msgid "Reference Name" msgstr "crwdns153771:0crwdne153771:0" @@ -4625,8 +4625,8 @@ msgstr "crwdns153795:0crwdne153795:0" msgid "Report an Issue" msgstr "crwdns156562:0crwdne156562:0" -#. Option for the 'Type' (Select) field in DocType 'CRM Fields Layout' -#: crm/fcrm/doctype/crm_fields_layout/crm_fields_layout.json +#. Option for the 'Type' (Select) field in PageType 'CRM Fields Layout' +#: crm/fcrm/pagetype/crm_fields_layout/crm_fields_layout.json msgid "Required Fields" msgstr "crwdns153797:0crwdne153797:0" @@ -4642,7 +4642,7 @@ msgstr "crwdns153799:0crwdne153799:0" msgid "Reset Changes" msgstr "crwdns153801:0crwdne153801:0" -#: crm/fcrm/doctype/erpnext_crm_settings/erpnext_crm_settings.js:7 +#: crm/fcrm/pagetype/erpnext_crm_settings/erpnext_crm_settings.js:7 msgid "Reset ERPNext Form Script" msgstr "crwdns153803:0crwdne153803:0" @@ -4654,35 +4654,35 @@ msgstr "crwdns153805:0crwdne153805:0" msgid "Reset to default" msgstr "crwdns156564:0crwdne156564:0" -#. Label of the response_by (Datetime) field in DocType 'CRM Deal' -#. Label of the response_by (Datetime) field in DocType 'CRM Lead' -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_lead/crm_lead.json +#. Label of the response_by (Datetime) field in PageType 'CRM Deal' +#. Label of the response_by (Datetime) field in PageType 'CRM Lead' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_lead/crm_lead.json msgid "Response By" msgstr "crwdns153807:0crwdne153807:0" -#. Label of the response_details_section (Section Break) field in DocType 'CRM +#. Label of the response_details_section (Section Break) field in PageType 'CRM #. Deal' -#. Label of the response_details_section (Section Break) field in DocType 'CRM +#. Label of the response_details_section (Section Break) field in PageType 'CRM #. Lead' -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_lead/crm_lead.json +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_lead/crm_lead.json msgid "Response Details" msgstr "crwdns153809:0crwdne153809:0" -#. Label of the section_break_ufaf (Section Break) field in DocType 'CRM +#. Label of the section_break_ufaf (Section Break) field in PageType 'CRM #. Service Level Agreement' -#: crm/fcrm/doctype/crm_service_level_agreement/crm_service_level_agreement.json +#: crm/fcrm/pagetype/crm_service_level_agreement/crm_service_level_agreement.json msgid "Response and Follow Up" msgstr "crwdns153811:0crwdne153811:0" -#: crm/fcrm/doctype/fcrm_settings/fcrm_settings.js:14 +#: crm/fcrm/pagetype/fcrm_settings/fcrm_settings.js:14 msgid "Restore" msgstr "crwdns153813:0crwdne153813:0" -#. Label of the restore_defaults (Button) field in DocType 'FCRM Settings' -#: crm/fcrm/doctype/fcrm_settings/fcrm_settings.js:13 -#: crm/fcrm/doctype/fcrm_settings/fcrm_settings.json +#. Label of the restore_defaults (Button) field in PageType 'FCRM Settings' +#: crm/fcrm/pagetype/fcrm_settings/fcrm_settings.js:13 +#: crm/fcrm/pagetype/fcrm_settings/fcrm_settings.json msgid "Restore Defaults" msgstr "crwdns153815:0crwdne153815:0" @@ -4699,13 +4699,13 @@ msgstr "crwdns156566:0crwdne156566:0" msgid "Rich Text" msgstr "crwdns153819:0crwdne153819:0" -#. Label of the rgt (Int) field in DocType 'CRM Territory' -#: crm/fcrm/doctype/crm_territory/crm_territory.json +#. Label of the rgt (Int) field in PageType 'CRM Territory' +#: crm/fcrm/pagetype/crm_territory/crm_territory.json msgid "Right" msgstr "crwdns153821:0crwdne153821:0" -#. Option for the 'Status' (Select) field in DocType 'CRM Call Log' -#: crm/fcrm/doctype/crm_call_log/crm_call_log.json +#. Option for the 'Status' (Select) field in PageType 'CRM Call Log' +#: crm/fcrm/pagetype/crm_call_log/crm_call_log.json msgid "Ringing" msgstr "crwdns153823:0crwdne153823:0" @@ -4714,55 +4714,55 @@ msgstr "crwdns153823:0crwdne153823:0" msgid "Ringing..." msgstr "crwdns153825:0crwdne153825:0" -#. Label of the role (Select) field in DocType 'CRM Invitation' -#: crm/fcrm/doctype/crm_invitation/crm_invitation.json +#. Label of the role (Select) field in PageType 'CRM Invitation' +#: crm/fcrm/pagetype/crm_invitation/crm_invitation.json #: frontend/src/components/Modals/AddExistingUserModal.vue:46 msgid "Role" msgstr "crwdns153827:0crwdne153827:0" -#. Option for the 'Type' (Select) field in DocType 'CRM Dropdown Item' -#. Label of the route (Data) field in DocType 'CRM Dropdown Item' -#: crm/fcrm/doctype/crm_dropdown_item/crm_dropdown_item.json +#. Option for the 'Type' (Select) field in PageType 'CRM Dropdown Item' +#. Label of the route (Data) field in PageType 'CRM Dropdown Item' +#: crm/fcrm/pagetype/crm_dropdown_item/crm_dropdown_item.json msgid "Route" msgstr "crwdns153829:0crwdne153829:0" -#. Label of the route_name (Data) field in DocType 'CRM View Settings' -#: crm/fcrm/doctype/crm_view_settings/crm_view_settings.json +#. Label of the route_name (Data) field in PageType 'CRM View Settings' +#: crm/fcrm/pagetype/crm_view_settings/crm_view_settings.json msgid "Route Name" msgstr "crwdns153831:0crwdne153831:0" -#. Label of the rows (Code) field in DocType 'CRM View Settings' -#: crm/fcrm/doctype/crm_view_settings/crm_view_settings.json +#. Label of the rows (Code) field in PageType 'CRM View Settings' +#: crm/fcrm/pagetype/crm_view_settings/crm_view_settings.json msgid "Rows" msgstr "crwdns153833:0crwdne153833:0" -#. Label of the sla_tab (Tab Break) field in DocType 'CRM Deal' -#. Label of the sla (Link) field in DocType 'CRM Deal' -#. Label of the sla_tab (Tab Break) field in DocType 'CRM Lead' -#. Label of the sla (Link) field in DocType 'CRM Lead' -#. Label of a shortcut in the Frappe CRM Workspace -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_lead/crm_lead.json -#: crm/fcrm/workspace/frappe_crm/frappe_crm.json +#. Label of the sla_tab (Tab Break) field in PageType 'CRM Deal' +#. Label of the sla (Link) field in PageType 'CRM Deal' +#. Label of the sla_tab (Tab Break) field in PageType 'CRM Lead' +#. Label of the sla (Link) field in PageType 'CRM Lead' +#. Label of a shortcut in the Jingrow CRM Workspace +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_lead/crm_lead.json +#: crm/fcrm/workspace/jingrow_crm/jingrow_crm.json msgid "SLA" msgstr "crwdns153835:0crwdne153835:0" -#. Label of the sla_creation (Datetime) field in DocType 'CRM Deal' -#. Label of the sla_creation (Datetime) field in DocType 'CRM Lead' -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_lead/crm_lead.json +#. Label of the sla_creation (Datetime) field in PageType 'CRM Deal' +#. Label of the sla_creation (Datetime) field in PageType 'CRM Lead' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_lead/crm_lead.json msgid "SLA Creation" msgstr "crwdns153837:0crwdne153837:0" -#. Label of the sla_name (Data) field in DocType 'CRM Service Level Agreement' -#: crm/fcrm/doctype/crm_service_level_agreement/crm_service_level_agreement.json +#. Label of the sla_name (Data) field in PageType 'CRM Service Level Agreement' +#: crm/fcrm/pagetype/crm_service_level_agreement/crm_service_level_agreement.json msgid "SLA Name" msgstr "crwdns153839:0crwdne153839:0" -#. Label of the sla_status (Select) field in DocType 'CRM Deal' -#. Label of the sla_status (Select) field in DocType 'CRM Lead' -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_lead/crm_lead.json +#. Label of the sla_status (Select) field in PageType 'CRM Deal' +#. Label of the sla_status (Select) field in PageType 'CRM Lead' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_lead/crm_lead.json msgid "SLA Status" msgstr "crwdns153841:0crwdne153841:0" @@ -4771,57 +4771,57 @@ msgid "SUBJECT" msgstr "crwdns153843:0crwdne153843:0" #. Name of a role -#. Option for the 'Role' (Select) field in DocType 'CRM Invitation' -#: crm/fcrm/doctype/crm_call_log/crm_call_log.json -#: crm/fcrm/doctype/crm_communication_status/crm_communication_status.json -#: crm/fcrm/doctype/crm_dashboard/crm_dashboard.json -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_deal_status/crm_deal_status.json -#: crm/fcrm/doctype/crm_exotel_settings/crm_exotel_settings.json -#: crm/fcrm/doctype/crm_form_script/crm_form_script.json -#: crm/fcrm/doctype/crm_global_settings/crm_global_settings.json -#: crm/fcrm/doctype/crm_holiday_list/crm_holiday_list.json -#: crm/fcrm/doctype/crm_industry/crm_industry.json -#: crm/fcrm/doctype/crm_invitation/crm_invitation.json -#: crm/fcrm/doctype/crm_lead/crm_lead.json -#: crm/fcrm/doctype/crm_lead_source/crm_lead_source.json -#: crm/fcrm/doctype/crm_lead_status/crm_lead_status.json -#: crm/fcrm/doctype/crm_lost_reason/crm_lost_reason.json -#: crm/fcrm/doctype/crm_notification/crm_notification.json -#: crm/fcrm/doctype/crm_organization/crm_organization.json -#: crm/fcrm/doctype/crm_service_level_agreement/crm_service_level_agreement.json -#: crm/fcrm/doctype/crm_task/crm_task.json -#: crm/fcrm/doctype/crm_territory/crm_territory.json -#: crm/fcrm/doctype/crm_twilio_settings/crm_twilio_settings.json -#: crm/fcrm/doctype/crm_view_settings/crm_view_settings.json -#: crm/fcrm/doctype/erpnext_crm_settings/erpnext_crm_settings.json -#: crm/fcrm/doctype/fcrm_note/fcrm_note.json -#: crm/fcrm/doctype/fcrm_settings/fcrm_settings.json -#: crm/fcrm/doctype/helpdesk_crm_settings/helpdesk_crm_settings.json +#. Option for the 'Role' (Select) field in PageType 'CRM Invitation' +#: crm/fcrm/pagetype/crm_call_log/crm_call_log.json +#: crm/fcrm/pagetype/crm_communication_status/crm_communication_status.json +#: crm/fcrm/pagetype/crm_dashboard/crm_dashboard.json +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_deal_status/crm_deal_status.json +#: crm/fcrm/pagetype/crm_exotel_settings/crm_exotel_settings.json +#: crm/fcrm/pagetype/crm_form_script/crm_form_script.json +#: crm/fcrm/pagetype/crm_global_settings/crm_global_settings.json +#: crm/fcrm/pagetype/crm_holiday_list/crm_holiday_list.json +#: crm/fcrm/pagetype/crm_industry/crm_industry.json +#: crm/fcrm/pagetype/crm_invitation/crm_invitation.json +#: crm/fcrm/pagetype/crm_lead/crm_lead.json +#: crm/fcrm/pagetype/crm_lead_source/crm_lead_source.json +#: crm/fcrm/pagetype/crm_lead_status/crm_lead_status.json +#: crm/fcrm/pagetype/crm_lost_reason/crm_lost_reason.json +#: crm/fcrm/pagetype/crm_notification/crm_notification.json +#: crm/fcrm/pagetype/crm_organization/crm_organization.json +#: crm/fcrm/pagetype/crm_service_level_agreement/crm_service_level_agreement.json +#: crm/fcrm/pagetype/crm_task/crm_task.json +#: crm/fcrm/pagetype/crm_territory/crm_territory.json +#: crm/fcrm/pagetype/crm_twilio_settings/crm_twilio_settings.json +#: crm/fcrm/pagetype/crm_view_settings/crm_view_settings.json +#: crm/fcrm/pagetype/erpnext_crm_settings/erpnext_crm_settings.json +#: crm/fcrm/pagetype/fcrm_note/fcrm_note.json +#: crm/fcrm/pagetype/fcrm_settings/fcrm_settings.json +#: crm/fcrm/pagetype/helpdesk_crm_settings/helpdesk_crm_settings.json msgid "Sales Manager" msgstr "crwdns153845:0crwdne153845:0" #. Name of a role -#. Option for the 'Role' (Select) field in DocType 'CRM Invitation' -#: crm/fcrm/doctype/crm_call_log/crm_call_log.json -#: crm/fcrm/doctype/crm_communication_status/crm_communication_status.json -#: crm/fcrm/doctype/crm_dashboard/crm_dashboard.json -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_deal_status/crm_deal_status.json -#: crm/fcrm/doctype/crm_global_settings/crm_global_settings.json -#: crm/fcrm/doctype/crm_holiday_list/crm_holiday_list.json -#: crm/fcrm/doctype/crm_industry/crm_industry.json -#: crm/fcrm/doctype/crm_invitation/crm_invitation.json -#: crm/fcrm/doctype/crm_lead/crm_lead.json -#: crm/fcrm/doctype/crm_lead_source/crm_lead_source.json -#: crm/fcrm/doctype/crm_lead_status/crm_lead_status.json -#: crm/fcrm/doctype/crm_lost_reason/crm_lost_reason.json -#: crm/fcrm/doctype/crm_notification/crm_notification.json -#: crm/fcrm/doctype/crm_organization/crm_organization.json -#: crm/fcrm/doctype/crm_task/crm_task.json -#: crm/fcrm/doctype/crm_territory/crm_territory.json -#: crm/fcrm/doctype/crm_view_settings/crm_view_settings.json -#: crm/fcrm/doctype/fcrm_note/fcrm_note.json +#. Option for the 'Role' (Select) field in PageType 'CRM Invitation' +#: crm/fcrm/pagetype/crm_call_log/crm_call_log.json +#: crm/fcrm/pagetype/crm_communication_status/crm_communication_status.json +#: crm/fcrm/pagetype/crm_dashboard/crm_dashboard.json +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_deal_status/crm_deal_status.json +#: crm/fcrm/pagetype/crm_global_settings/crm_global_settings.json +#: crm/fcrm/pagetype/crm_holiday_list/crm_holiday_list.json +#: crm/fcrm/pagetype/crm_industry/crm_industry.json +#: crm/fcrm/pagetype/crm_invitation/crm_invitation.json +#: crm/fcrm/pagetype/crm_lead/crm_lead.json +#: crm/fcrm/pagetype/crm_lead_source/crm_lead_source.json +#: crm/fcrm/pagetype/crm_lead_status/crm_lead_status.json +#: crm/fcrm/pagetype/crm_lost_reason/crm_lost_reason.json +#: crm/fcrm/pagetype/crm_notification/crm_notification.json +#: crm/fcrm/pagetype/crm_organization/crm_organization.json +#: crm/fcrm/pagetype/crm_task/crm_task.json +#: crm/fcrm/pagetype/crm_territory/crm_territory.json +#: crm/fcrm/pagetype/crm_view_settings/crm_view_settings.json +#: crm/fcrm/pagetype/fcrm_note/fcrm_note.json #: frontend/src/components/Modals/AddExistingUserModal.vue:92 #: frontend/src/components/Settings/InviteUserPage.vue:156 #: frontend/src/components/Settings/InviteUserPage.vue:163 @@ -4845,17 +4845,17 @@ msgstr "crwdns156570:0crwdne156570:0" msgid "Salesperson" msgstr "crwdns156572:0crwdne156572:0" -#. Label of the salutation (Link) field in DocType 'CRM Deal' -#. Label of the salutation (Link) field in DocType 'CRM Lead' -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_lead/crm_lead.json +#. Label of the salutation (Link) field in PageType 'CRM Deal' +#. Label of the salutation (Link) field in PageType 'CRM Lead' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_lead/crm_lead.json msgid "Salutation" msgstr "crwdns153849:0crwdne153849:0" -#. Option for the 'Weekly Off' (Select) field in DocType 'CRM Holiday List' -#. Option for the 'Workday' (Select) field in DocType 'CRM Service Day' -#: crm/fcrm/doctype/crm_holiday_list/crm_holiday_list.json -#: crm/fcrm/doctype/crm_service_day/crm_service_day.json +#. Option for the 'Weekly Off' (Select) field in PageType 'CRM Holiday List' +#. Option for the 'Workday' (Select) field in PageType 'CRM Service Day' +#: crm/fcrm/pagetype/crm_holiday_list/crm_holiday_list.json +#: crm/fcrm/pagetype/crm_service_day/crm_service_day.json msgid "Saturday" msgstr "crwdns153851:0crwdne153851:0" @@ -4904,8 +4904,8 @@ msgstr "crwdns158910:0crwdne158910:0" msgid "Schedule an event" msgstr "crwdns158912:0crwdne158912:0" -#. Label of the script (Code) field in DocType 'CRM Form Script' -#: crm/fcrm/doctype/crm_form_script/crm_form_script.json +#. Label of the script (Code) field in PageType 'CRM Form Script' +#: crm/fcrm/pagetype/crm_form_script/crm_form_script.json msgid "Script" msgstr "crwdns153861:0crwdne153861:0" @@ -4973,18 +4973,18 @@ msgstr "crwdns156584:0crwdne156584:0" msgid "Send invites to" msgstr "crwdns156586:0crwdne156586:0" -#. Option for the 'Type' (Select) field in DocType 'CRM Dropdown Item' -#: crm/fcrm/doctype/crm_dropdown_item/crm_dropdown_item.json +#. Option for the 'Type' (Select) field in PageType 'CRM Dropdown Item' +#: crm/fcrm/pagetype/crm_dropdown_item/crm_dropdown_item.json msgid "Separator" msgstr "crwdns153877:0crwdne153877:0" -#. Label of the naming_series (Select) field in DocType 'CRM Lead' -#: crm/fcrm/doctype/crm_lead/crm_lead.json +#. Label of the naming_series (Select) field in PageType 'CRM Lead' +#: crm/fcrm/pagetype/crm_lead/crm_lead.json msgid "Series" msgstr "crwdns153879:0crwdne153879:0" -#. Label of the service_provider (Select) field in DocType 'FCRM Settings' -#: crm/fcrm/doctype/fcrm_settings/fcrm_settings.json +#. Label of the service_provider (Select) field in PageType 'FCRM Settings' +#: crm/fcrm/pagetype/fcrm_settings/fcrm_settings.json msgid "Service Provider" msgstr "crwdns157276:0crwdne157276:0" @@ -5029,7 +5029,7 @@ msgid "Setting up" msgstr "crwdns156592:0crwdne156592:0" #: frontend/src/components/Settings/emailConfig.js:145 -msgid "Setting up Frappe Mail requires you to have an API key and API Secret of your email account. Read more " +msgid "Setting up Jingrow Mail requires you to have an API key and API Secret of your email account. Read more " msgstr "crwdns156594:0crwdne156594:0" #: frontend/src/components/Settings/emailConfig.js:97 @@ -5062,8 +5062,8 @@ msgid "Setting up Yandex requires you to enable two factor authentication\n" "\t\t and app specific passwords. Read more " msgstr "crwdns156606:0crwdne156606:0" -#. Label of the defaults_tab (Tab Break) field in DocType 'FCRM Settings' -#: crm/fcrm/doctype/fcrm_settings/fcrm_settings.json +#. Label of the defaults_tab (Tab Break) field in PageType 'FCRM Settings' +#: crm/fcrm/pagetype/fcrm_settings/fcrm_settings.json #: frontend/src/components/Layouts/AppSidebar.vue:537 #: frontend/src/components/Settings/Settings.vue:12 msgid "Settings" @@ -5073,7 +5073,7 @@ msgstr "crwdns153893:0crwdne153893:0" msgid "Setup Email" msgstr "crwdns156608:0crwdne156608:0" -#: crm/fcrm/doctype/fcrm_settings/fcrm_settings.py:199 +#: crm/fcrm/pagetype/fcrm_settings/fcrm_settings.py:199 msgid "Setup the Exchange Rate Provider as 'Exchangerate Host' in settings, as default provider does not support currency conversion for {0} to {1}." msgstr "crwdns157278:0{0}crwdnd157278:0{1}crwdne157278:0" @@ -5108,20 +5108,20 @@ msgstr "crwdns158918:0crwdne158918:0" msgid "Show preview" msgstr "crwdns153901:0crwdne153901:0" -#. Option for the 'Type' (Select) field in DocType 'CRM Fields Layout' -#: crm/fcrm/doctype/crm_fields_layout/crm_fields_layout.json +#. Option for the 'Type' (Select) field in PageType 'CRM Fields Layout' +#: crm/fcrm/pagetype/crm_fields_layout/crm_fields_layout.json msgid "Side Panel" msgstr "crwdns153903:0crwdne153903:0" -#. Option for the 'Type' (Select) field in DocType 'CRM Global Settings' -#: crm/fcrm/doctype/crm_global_settings/crm_global_settings.json +#. Option for the 'Type' (Select) field in PageType 'CRM Global Settings' +#: crm/fcrm/pagetype/crm_global_settings/crm_global_settings.json msgid "Sidebar Items" msgstr "crwdns153905:0crwdne153905:0" -#. Description of the 'Condition' (Code) field in DocType 'CRM Service Level +#. Description of the 'Condition' (Code) field in PageType 'CRM Service Level #. Agreement' -#: crm/fcrm/doctype/crm_service_level_agreement/crm_service_level_agreement.json -msgid "Simple Python Expression, Example: doc.status == 'Open' and doc.lead_source == 'Ads'" +#: crm/fcrm/pagetype/crm_service_level_agreement/crm_service_level_agreement.json +msgid "Simple Python Expression, Example: pg.status == 'Open' and pg.lead_source == 'Ads'" msgstr "crwdns153909:0crwdne153909:0" #: frontend/src/components/AssignTo.vue:83 @@ -5145,16 +5145,16 @@ msgstr "crwdns158922:0crwdne158922:0" msgid "Sort" msgstr "crwdns153911:0crwdne153911:0" -#. Label of the source (Link) field in DocType 'CRM Deal' -#. Label of the source (Link) field in DocType 'CRM Lead' -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_lead/crm_lead.json +#. Label of the source (Link) field in PageType 'CRM Deal' +#. Label of the source (Link) field in PageType 'CRM Lead' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_lead/crm_lead.json #: frontend/src/components/Modals/EditValueModal.vue:10 msgid "Source" msgstr "crwdns153913:0crwdne153913:0" -#. Label of the source_name (Data) field in DocType 'CRM Lead Source' -#: crm/fcrm/doctype/crm_lead_source/crm_lead_source.json +#. Label of the source_name (Data) field in PageType 'CRM Lead Source' +#: crm/fcrm/pagetype/crm_lead_source/crm_lead_source.json msgid "Source Name" msgstr "crwdns153915:0crwdne153915:0" @@ -5167,12 +5167,12 @@ msgstr "crwdns156614:0crwdne156614:0" msgid "Stage" msgstr "crwdns156616:0crwdne156616:0" -#: crm/fcrm/doctype/crm_form_script/crm_form_script.js:15 +#: crm/fcrm/pagetype/crm_form_script/crm_form_script.js:15 msgid "Standard Form Scripts can not be modified, duplicate the Form Script instead." msgstr "crwdns153917:0crwdne153917:0" -#. Label of the standard_rate (Currency) field in DocType 'CRM Product' -#: crm/fcrm/doctype/crm_product/crm_product.json +#. Label of the standard_rate (Currency) field in PageType 'CRM Product' +#: crm/fcrm/pagetype/crm_product/crm_product.json msgid "Standard Selling Rate" msgstr "crwdns156618:0crwdne156618:0" @@ -5180,18 +5180,18 @@ msgstr "crwdns156618:0crwdne156618:0" msgid "Standard Views" msgstr "crwdns153919:0crwdne153919:0" -#. Label of the start_date (Date) field in DocType 'CRM Service Level +#. Label of the start_date (Date) field in PageType 'CRM Service Level #. Agreement' -#. Label of the start_date (Date) field in DocType 'CRM Task' -#: crm/fcrm/doctype/crm_service_level_agreement/crm_service_level_agreement.json -#: crm/fcrm/doctype/crm_task/crm_task.json +#. Label of the start_date (Date) field in PageType 'CRM Task' +#: crm/fcrm/pagetype/crm_service_level_agreement/crm_service_level_agreement.json +#: crm/fcrm/pagetype/crm_task/crm_task.json msgid "Start Date" msgstr "crwdns153921:0crwdne153921:0" -#. Label of the start_time (Datetime) field in DocType 'CRM Call Log' -#. Label of the start_time (Time) field in DocType 'CRM Service Day' -#: crm/fcrm/doctype/crm_call_log/crm_call_log.json -#: crm/fcrm/doctype/crm_service_day/crm_service_day.json +#. Label of the start_time (Datetime) field in PageType 'CRM Call Log' +#. Label of the start_time (Time) field in PageType 'CRM Service Day' +#: crm/fcrm/pagetype/crm_call_log/crm_call_log.json +#: crm/fcrm/pagetype/crm_service_day/crm_service_day.json #: frontend/src/components/Calendar/CalendarEventPanel.vue:234 #: frontend/src/components/Modals/EventModal.vue:103 msgid "Start Time" @@ -5205,32 +5205,32 @@ msgstr "crwdns158924:0crwdne158924:0" msgid "Start with sample 10 leads" msgstr "crwdns156620:0crwdne156620:0" -#. Label of the status (Select) field in DocType 'CRM Call Log' -#. Label of the status (Data) field in DocType 'CRM Communication Status' -#. Label of the status (Link) field in DocType 'CRM Deal' -#. Label of the deal_status (Data) field in DocType 'CRM Deal Status' -#. Label of the status (Select) field in DocType 'CRM Invitation' -#. Label of the status (Link) field in DocType 'CRM Lead' -#. Label of the lead_status (Data) field in DocType 'CRM Lead Status' -#. Label of the status (Select) field in DocType 'CRM Task' -#: crm/fcrm/doctype/crm_call_log/crm_call_log.json -#: crm/fcrm/doctype/crm_communication_status/crm_communication_status.json -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_deal_status/crm_deal_status.json -#: crm/fcrm/doctype/crm_invitation/crm_invitation.json -#: crm/fcrm/doctype/crm_lead/crm_lead.json -#: crm/fcrm/doctype/crm_lead_status/crm_lead_status.json -#: crm/fcrm/doctype/crm_task/crm_task.json frontend/src/pages/Contact.vue:505 +#. Label of the status (Select) field in PageType 'CRM Call Log' +#. Label of the status (Data) field in PageType 'CRM Communication Status' +#. Label of the status (Link) field in PageType 'CRM Deal' +#. Label of the deal_status (Data) field in PageType 'CRM Deal Status' +#. Label of the status (Select) field in PageType 'CRM Invitation' +#. Label of the status (Link) field in PageType 'CRM Lead' +#. Label of the lead_status (Data) field in PageType 'CRM Lead Status' +#. Label of the status (Select) field in PageType 'CRM Task' +#: crm/fcrm/pagetype/crm_call_log/crm_call_log.json +#: crm/fcrm/pagetype/crm_communication_status/crm_communication_status.json +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_deal_status/crm_deal_status.json +#: crm/fcrm/pagetype/crm_invitation/crm_invitation.json +#: crm/fcrm/pagetype/crm_lead/crm_lead.json +#: crm/fcrm/pagetype/crm_lead_status/crm_lead_status.json +#: crm/fcrm/pagetype/crm_task/crm_task.json frontend/src/pages/Contact.vue:505 #: frontend/src/pages/MobileContact.vue:513 #: frontend/src/pages/MobileOrganization.vue:457 #: frontend/src/pages/Organization.vue:478 msgid "Status" msgstr "crwdns153925:0crwdne153925:0" -#. Label of the status_change_log (Table) field in DocType 'CRM Deal' -#. Label of the status_change_log (Table) field in DocType 'CRM Lead' -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_lead/crm_lead.json +#. Label of the status_change_log (Table) field in PageType 'CRM Deal' +#. Label of the status_change_log (Table) field in PageType 'CRM Lead' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_lead/crm_lead.json msgid "Status Change Log" msgstr "crwdns153927:0crwdne153927:0" @@ -5239,8 +5239,8 @@ msgstr "crwdns153927:0crwdne153927:0" msgid "Status is required" msgstr "crwdns153929:0crwdne153929:0" -#. Label of the subdomain (Data) field in DocType 'CRM Exotel Settings' -#: crm/fcrm/doctype/crm_exotel_settings/crm_exotel_settings.json +#. Label of the subdomain (Data) field in PageType 'CRM Exotel Settings' +#: crm/fcrm/pagetype/crm_exotel_settings/crm_exotel_settings.json msgid "Subdomain" msgstr "crwdns153931:0crwdne153931:0" @@ -5258,10 +5258,10 @@ msgstr "crwdns156622:0crwdne156622:0" msgid "Subject: {0}" msgstr "crwdns153935:0{0}crwdne153935:0" -#. Option for the 'Weekly Off' (Select) field in DocType 'CRM Holiday List' -#. Option for the 'Workday' (Select) field in DocType 'CRM Service Day' -#: crm/fcrm/doctype/crm_holiday_list/crm_holiday_list.json -#: crm/fcrm/doctype/crm_service_day/crm_service_day.json +#. Option for the 'Weekly Off' (Select) field in PageType 'CRM Holiday List' +#. Option for the 'Workday' (Select) field in PageType 'CRM Service Day' +#: crm/fcrm/pagetype/crm_holiday_list/crm_holiday_list.json +#: crm/fcrm/pagetype/crm_service_day/crm_service_day.json msgid "Sunday" msgstr "crwdns153939:0crwdne153939:0" @@ -5282,21 +5282,21 @@ msgid "System Configuration" msgstr "crwdns159318:0crwdne159318:0" #. Name of a role -#. Option for the 'Role' (Select) field in DocType 'CRM Invitation' -#: crm/fcrm/doctype/crm_dashboard/crm_dashboard.json -#: crm/fcrm/doctype/crm_exotel_settings/crm_exotel_settings.json -#: crm/fcrm/doctype/crm_fields_layout/crm_fields_layout.json -#: crm/fcrm/doctype/crm_global_settings/crm_global_settings.json -#: crm/fcrm/doctype/crm_invitation/crm_invitation.json -#: crm/fcrm/doctype/crm_lead_source/crm_lead_source.json -#: crm/fcrm/doctype/crm_lost_reason/crm_lost_reason.json -#: crm/fcrm/doctype/crm_notification/crm_notification.json -#: crm/fcrm/doctype/crm_product/crm_product.json -#: crm/fcrm/doctype/crm_telephony_agent/crm_telephony_agent.json -#: crm/fcrm/doctype/crm_twilio_settings/crm_twilio_settings.json -#: crm/fcrm/doctype/erpnext_crm_settings/erpnext_crm_settings.json -#: crm/fcrm/doctype/fcrm_settings/fcrm_settings.json -#: crm/fcrm/doctype/helpdesk_crm_settings/helpdesk_crm_settings.json +#. Option for the 'Role' (Select) field in PageType 'CRM Invitation' +#: crm/fcrm/pagetype/crm_dashboard/crm_dashboard.json +#: crm/fcrm/pagetype/crm_exotel_settings/crm_exotel_settings.json +#: crm/fcrm/pagetype/crm_fields_layout/crm_fields_layout.json +#: crm/fcrm/pagetype/crm_global_settings/crm_global_settings.json +#: crm/fcrm/pagetype/crm_invitation/crm_invitation.json +#: crm/fcrm/pagetype/crm_lead_source/crm_lead_source.json +#: crm/fcrm/pagetype/crm_lost_reason/crm_lost_reason.json +#: crm/fcrm/pagetype/crm_notification/crm_notification.json +#: crm/fcrm/pagetype/crm_product/crm_product.json +#: crm/fcrm/pagetype/crm_telephony_agent/crm_telephony_agent.json +#: crm/fcrm/pagetype/crm_twilio_settings/crm_twilio_settings.json +#: crm/fcrm/pagetype/erpnext_crm_settings/erpnext_crm_settings.json +#: crm/fcrm/pagetype/fcrm_settings/fcrm_settings.json +#: crm/fcrm/pagetype/helpdesk_crm_settings/helpdesk_crm_settings.json msgid "System Manager" msgstr "crwdns153943:0crwdne153943:0" @@ -5308,8 +5308,8 @@ msgstr "crwdns153945:0crwdne153945:0" msgid "Take a note..." msgstr "crwdns153947:0crwdne153947:0" -#. Option for the 'Type' (Select) field in DocType 'CRM Notification' -#: crm/fcrm/doctype/crm_notification/crm_notification.json +#. Option for the 'Type' (Select) field in PageType 'CRM Notification' +#: crm/fcrm/pagetype/crm_notification/crm_notification.json #: frontend/src/components/Layouts/AppSidebar.vue:555 msgid "Task" msgstr "crwdns153949:0crwdne153949:0" @@ -5327,8 +5327,8 @@ msgstr "crwdns156628:0crwdne156628:0" msgid "Telephony" msgstr "crwdns153953:0crwdne153953:0" -#. Label of the telephony_medium (Select) field in DocType 'CRM Call Log' -#: crm/fcrm/doctype/crm_call_log/crm_call_log.json +#. Label of the telephony_medium (Select) field in PageType 'CRM Call Log' +#: crm/fcrm/pagetype/crm_call_log/crm_call_log.json msgid "Telephony Medium" msgstr "crwdns153955:0crwdne153955:0" @@ -5364,27 +5364,27 @@ msgstr "crwdns156642:0crwdne156642:0" msgid "Template updated successfully" msgstr "crwdns156644:0crwdne156644:0" -#. Label of a shortcut in the Frappe CRM Workspace -#: crm/fcrm/workspace/frappe_crm/frappe_crm.json +#. Label of a shortcut in the Jingrow CRM Workspace +#: crm/fcrm/workspace/jingrow_crm/jingrow_crm.json msgid "Territories" msgstr "crwdns153959:0crwdne153959:0" -#. Label of the territory (Link) field in DocType 'CRM Deal' -#. Label of the territory (Link) field in DocType 'CRM Lead' -#. Label of the territory (Link) field in DocType 'CRM Organization' -#: crm/api/dashboard.py:1022 crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_lead/crm_lead.json -#: crm/fcrm/doctype/crm_organization/crm_organization.json +#. Label of the territory (Link) field in PageType 'CRM Deal' +#. Label of the territory (Link) field in PageType 'CRM Lead' +#. Label of the territory (Link) field in PageType 'CRM Organization' +#: crm/api/dashboard.py:1022 crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_lead/crm_lead.json +#: crm/fcrm/pagetype/crm_organization/crm_organization.json msgid "Territory" msgstr "crwdns153961:0crwdne153961:0" -#. Label of the territory_manager (Link) field in DocType 'CRM Territory' -#: crm/fcrm/doctype/crm_territory/crm_territory.json +#. Label of the territory_manager (Link) field in PageType 'CRM Territory' +#: crm/fcrm/pagetype/crm_territory/crm_territory.json msgid "Territory Manager" msgstr "crwdns153963:0crwdne153963:0" -#. Label of the territory_name (Data) field in DocType 'CRM Territory' -#: crm/fcrm/doctype/crm_territory/crm_territory.json +#. Label of the territory_name (Data) field in PageType 'CRM Territory' +#: crm/fcrm/pagetype/crm_territory/crm_territory.json msgid "Territory Name" msgstr "crwdns153965:0crwdne153965:0" @@ -5392,22 +5392,22 @@ msgstr "crwdns153965:0crwdne153965:0" msgid "Thanks" msgstr "crwdns158684:0crwdne158684:0" -#: crm/fcrm/doctype/crm_service_level_agreement/crm_service_level_agreement.py:46 +#: crm/fcrm/pagetype/crm_service_level_agreement/crm_service_level_agreement.py:46 msgid "The Condition '{0}' is invalid: {1}" msgstr "crwdns153967:0{0}crwdnd153967:0{1}crwdne153967:0" -#. Description of the 'Exchange Rate' (Float) field in DocType 'CRM Deal' -#: crm/fcrm/doctype/crm_deal/crm_deal.json +#. Description of the 'Exchange Rate' (Float) field in PageType 'CRM Deal' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json msgid "The rate used to convert the deal’s currency to your crm's base currency (set in CRM Settings). It is set once when the currency is first added and doesn't change automatically." msgstr "crwdns156646:0crwdne156646:0" -#. Description of the 'Exchange Rate' (Float) field in DocType 'CRM +#. Description of the 'Exchange Rate' (Float) field in PageType 'CRM #. Organization' -#: crm/fcrm/doctype/crm_organization/crm_organization.json +#: crm/fcrm/pagetype/crm_organization/crm_organization.json msgid "The rate used to convert the organization’s currency to your crm's base currency (set in CRM Settings). It is set once when the currency is first added and doesn't change automatically." msgstr "crwdns156648:0crwdne156648:0" -#: crm/fcrm/doctype/crm_service_level_agreement/crm_service_level_agreement.js:14 +#: crm/fcrm/pagetype/crm_service_level_agreement/crm_service_level_agreement.js:14 msgid "There can only be one default priority in Priorities table" msgstr "crwdns153969:0crwdne153969:0" @@ -5444,14 +5444,14 @@ msgstr "crwdns156652:0crwdne156652:0" msgid "This will delete selected items and unlink linked items to it, are you sure?" msgstr "crwdns156654:0crwdne156654:0" -#: crm/fcrm/doctype/fcrm_settings/fcrm_settings.js:9 +#: crm/fcrm/pagetype/fcrm_settings/fcrm_settings.js:9 msgid "This will restore (if not exist) all the default statuses, custom fields and layouts. Delete & Restore will delete default layouts and then restore them." msgstr "crwdns153981:0crwdne153981:0" -#. Option for the 'Weekly Off' (Select) field in DocType 'CRM Holiday List' -#. Option for the 'Workday' (Select) field in DocType 'CRM Service Day' -#: crm/fcrm/doctype/crm_holiday_list/crm_holiday_list.json -#: crm/fcrm/doctype/crm_service_day/crm_service_day.json +#. Option for the 'Weekly Off' (Select) field in PageType 'CRM Holiday List' +#. Option for the 'Workday' (Select) field in PageType 'CRM Service Day' +#: crm/fcrm/pagetype/crm_holiday_list/crm_holiday_list.json +#: crm/fcrm/pagetype/crm_service_day/crm_service_day.json msgid "Thursday" msgstr "crwdns153983:0crwdne153983:0" @@ -5463,18 +5463,18 @@ msgstr "crwdns158928:0crwdne158928:0" msgid "Timespan" msgstr "crwdns153985:0crwdne153985:0" -#. Label of the title (Data) field in DocType 'CRM Task' -#. Label of the title (Data) field in DocType 'FCRM Note' -#: crm/fcrm/doctype/crm_task/crm_task.json -#: crm/fcrm/doctype/fcrm_note/fcrm_note.json +#. Label of the title (Data) field in PageType 'CRM Task' +#. Label of the title (Data) field in PageType 'FCRM Note' +#: crm/fcrm/pagetype/crm_task/crm_task.json +#: crm/fcrm/pagetype/fcrm_note/fcrm_note.json #: frontend/src/components/Modals/EventModal.vue:43 #: frontend/src/components/Modals/NoteModal.vue:26 #: frontend/src/components/Modals/TaskModal.vue:25 msgid "Title" msgstr "crwdns153987:0crwdne153987:0" -#. Label of the title_field (Data) field in DocType 'CRM View Settings' -#: crm/fcrm/doctype/crm_view_settings/crm_view_settings.json +#. Label of the title_field (Data) field in PageType 'CRM View Settings' +#: crm/fcrm/pagetype/crm_view_settings/crm_view_settings.json #: frontend/src/components/Kanban/KanbanSettings.vue:29 msgid "Title Field" msgstr "crwdns153989:0crwdne153989:0" @@ -5484,28 +5484,28 @@ msgstr "crwdns153989:0crwdne153989:0" msgid "Title is required" msgstr "crwdns158930:0crwdne158930:0" -#. Label of the to (Data) field in DocType 'CRM Call Log' -#. Label of the to (Data) field in DocType 'CRM Status Change Log' -#: crm/fcrm/doctype/crm_call_log/crm_call_log.json -#: crm/fcrm/doctype/crm_status_change_log/crm_status_change_log.json +#. Label of the to (Data) field in PageType 'CRM Call Log' +#. Label of the to (Data) field in PageType 'CRM Status Change Log' +#: crm/fcrm/pagetype/crm_call_log/crm_call_log.json +#: crm/fcrm/pagetype/crm_status_change_log/crm_status_change_log.json #: frontend/src/components/Activities/EmailArea.vue:53 msgid "To" msgstr "crwdns153991:0crwdne153991:0" -#. Label of the to_date (Date) field in DocType 'CRM Holiday List' -#. Label of the to_date (Datetime) field in DocType 'CRM Status Change Log' -#: crm/fcrm/doctype/crm_holiday_list/crm_holiday_list.json -#: crm/fcrm/doctype/crm_status_change_log/crm_status_change_log.json +#. Label of the to_date (Date) field in PageType 'CRM Holiday List' +#. Label of the to_date (Datetime) field in PageType 'CRM Status Change Log' +#: crm/fcrm/pagetype/crm_holiday_list/crm_holiday_list.json +#: crm/fcrm/pagetype/crm_status_change_log/crm_status_change_log.json msgid "To Date" msgstr "crwdns153993:0crwdne153993:0" -#. Label of the to_type (Data) field in DocType 'CRM Status Change Log' -#: crm/fcrm/doctype/crm_status_change_log/crm_status_change_log.json +#. Label of the to_type (Data) field in PageType 'CRM Status Change Log' +#: crm/fcrm/pagetype/crm_status_change_log/crm_status_change_log.json msgid "To Type" msgstr "crwdns156656:0crwdne156656:0" -#. Label of the to_user (Link) field in DocType 'CRM Notification' -#: crm/fcrm/doctype/crm_notification/crm_notification.json +#. Label of the to_user (Link) field in PageType 'CRM Notification' +#: crm/fcrm/pagetype/crm_notification/crm_notification.json msgid "To User" msgstr "crwdns153995:0crwdne153995:0" @@ -5517,8 +5517,8 @@ msgstr "crwdns156658:0crwdne156658:0" msgid "Today" msgstr "crwdns153997:0crwdne153997:0" -#. Option for the 'Status' (Select) field in DocType 'CRM Task' -#: crm/fcrm/doctype/crm_task/crm_task.json +#. Option for the 'Status' (Select) field in PageType 'CRM Task' +#: crm/fcrm/pagetype/crm_task/crm_task.json msgid "Todo" msgstr "crwdns153999:0crwdne153999:0" @@ -5535,22 +5535,22 @@ msgstr "crwdns154003:0crwdne154003:0" msgid "Took a call with John Doe and discussed the new project." msgstr "crwdns154005:0crwdne154005:0" -#. Label of the total (Currency) field in DocType 'CRM Deal' -#. Label of the total (Currency) field in DocType 'CRM Lead' -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_lead/crm_lead.json +#. Label of the total (Currency) field in PageType 'CRM Deal' +#. Label of the total (Currency) field in PageType 'CRM Lead' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_lead/crm_lead.json msgid "Total" msgstr "crwdns156660:0crwdne156660:0" -#. Label of the total_holidays (Int) field in DocType 'CRM Holiday List' -#: crm/fcrm/doctype/crm_holiday_list/crm_holiday_list.json +#. Label of the total_holidays (Int) field in PageType 'CRM Holiday List' +#: crm/fcrm/pagetype/crm_holiday_list/crm_holiday_list.json msgid "Total Holidays" msgstr "crwdns154007:0crwdne154007:0" -#. Description of the 'Net Total' (Currency) field in DocType 'CRM Deal' -#. Description of the 'Net Total' (Currency) field in DocType 'CRM Lead' -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_lead/crm_lead.json +#. Description of the 'Net Total' (Currency) field in PageType 'CRM Deal' +#. Description of the 'Net Total' (Currency) field in PageType 'CRM Lead' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_lead/crm_lead.json msgid "Total after discount" msgstr "crwdns156662:0crwdne156662:0" @@ -5571,10 +5571,10 @@ msgstr "crwdns156668:0crwdne156668:0" msgid "Total number of won deals based on its closure date" msgstr "crwdns156670:0crwdne156670:0" -#. Option for the 'Weekly Off' (Select) field in DocType 'CRM Holiday List' -#. Option for the 'Workday' (Select) field in DocType 'CRM Service Day' -#: crm/fcrm/doctype/crm_holiday_list/crm_holiday_list.json -#: crm/fcrm/doctype/crm_service_day/crm_service_day.json +#. Option for the 'Weekly Off' (Select) field in PageType 'CRM Holiday List' +#. Option for the 'Workday' (Select) field in PageType 'CRM Service Day' +#: crm/fcrm/pagetype/crm_holiday_list/crm_holiday_list.json +#: crm/fcrm/pagetype/crm_service_day/crm_service_day.json msgid "Tuesday" msgstr "crwdns154011:0crwdne154011:0" @@ -5582,30 +5582,30 @@ msgstr "crwdns154011:0crwdne154011:0" msgid "Turn into a group" msgstr "crwdns158932:0crwdne158932:0" -#. Label of the twiml_sid (Data) field in DocType 'CRM Twilio Settings' -#: crm/fcrm/doctype/crm_twilio_settings/crm_twilio_settings.json +#. Label of the twiml_sid (Data) field in PageType 'CRM Twilio Settings' +#: crm/fcrm/pagetype/crm_twilio_settings/crm_twilio_settings.json msgid "TwiML SID" msgstr "crwdns154013:0crwdne154013:0" -#. Option for the 'Telephony Medium' (Select) field in DocType 'CRM Call Log' -#. Label of the twilio (Check) field in DocType 'CRM Telephony Agent' -#. Option for the 'Default Medium' (Select) field in DocType 'CRM Telephony +#. Option for the 'Telephony Medium' (Select) field in PageType 'CRM Call Log' +#. Label of the twilio (Check) field in PageType 'CRM Telephony Agent' +#. Option for the 'Default Medium' (Select) field in PageType 'CRM Telephony #. Agent' -#: crm/fcrm/doctype/crm_call_log/crm_call_log.json -#: crm/fcrm/doctype/crm_telephony_agent/crm_telephony_agent.json +#: crm/fcrm/pagetype/crm_call_log/crm_call_log.json +#: crm/fcrm/pagetype/crm_telephony_agent/crm_telephony_agent.json #: frontend/src/components/Layouts/AppSidebar.vue:601 #: frontend/src/components/Settings/TelephonySettings.vue:40 #: frontend/src/components/Settings/TelephonySettings.vue:50 msgid "Twilio" msgstr "crwdns154015:0crwdne154015:0" -#: crm/fcrm/doctype/crm_twilio_settings/crm_twilio_settings.py:59 -#: crm/fcrm/doctype/crm_twilio_settings/crm_twilio_settings.py:60 +#: crm/fcrm/pagetype/crm_twilio_settings/crm_twilio_settings.py:59 +#: crm/fcrm/pagetype/crm_twilio_settings/crm_twilio_settings.py:60 msgid "Twilio API credential creation error." msgstr "crwdns154017:0crwdne154017:0" -#. Label of the twilio_number (Data) field in DocType 'CRM Telephony Agent' -#: crm/fcrm/doctype/crm_telephony_agent/crm_telephony_agent.json +#. Label of the twilio_number (Data) field in PageType 'CRM Telephony Agent' +#: crm/fcrm/pagetype/crm_telephony_agent/crm_telephony_agent.json msgid "Twilio Number" msgstr "crwdns154019:0crwdne154019:0" @@ -5617,20 +5617,20 @@ msgstr "crwdns154021:0crwdne154021:0" msgid "Twilio settings updated successfully" msgstr "crwdns154023:0crwdne154023:0" -#. Label of the type (Select) field in DocType 'CRM Call Log' -#. Label of the type (Select) field in DocType 'CRM Deal Status' -#. Label of the type (Select) field in DocType 'CRM Dropdown Item' -#. Label of the type (Select) field in DocType 'CRM Fields Layout' -#. Label of the type (Select) field in DocType 'CRM Global Settings' -#. Label of the type (Select) field in DocType 'CRM Notification' -#. Label of the type (Select) field in DocType 'CRM View Settings' -#: crm/fcrm/doctype/crm_call_log/crm_call_log.json -#: crm/fcrm/doctype/crm_deal_status/crm_deal_status.json -#: crm/fcrm/doctype/crm_dropdown_item/crm_dropdown_item.json -#: crm/fcrm/doctype/crm_fields_layout/crm_fields_layout.json -#: crm/fcrm/doctype/crm_global_settings/crm_global_settings.json -#: crm/fcrm/doctype/crm_notification/crm_notification.json -#: crm/fcrm/doctype/crm_view_settings/crm_view_settings.json +#. Label of the type (Select) field in PageType 'CRM Call Log' +#. Label of the type (Select) field in PageType 'CRM Deal Status' +#. Label of the type (Select) field in PageType 'CRM Dropdown Item' +#. Label of the type (Select) field in PageType 'CRM Fields Layout' +#. Label of the type (Select) field in PageType 'CRM Global Settings' +#. Label of the type (Select) field in PageType 'CRM Notification' +#. Label of the type (Select) field in PageType 'CRM View Settings' +#: crm/fcrm/pagetype/crm_call_log/crm_call_log.json +#: crm/fcrm/pagetype/crm_deal_status/crm_deal_status.json +#: crm/fcrm/pagetype/crm_dropdown_item/crm_dropdown_item.json +#: crm/fcrm/pagetype/crm_fields_layout/crm_fields_layout.json +#: crm/fcrm/pagetype/crm_global_settings/crm_global_settings.json +#: crm/fcrm/pagetype/crm_notification/crm_notification.json +#: crm/fcrm/pagetype/crm_view_settings/crm_view_settings.json msgid "Type" msgstr "crwdns154025:0crwdne154025:0" @@ -5772,12 +5772,12 @@ msgstr "crwdns154055:0crwdne154055:0" msgid "Uploading {0}%" msgstr "crwdns159320:0{0}crwdne159320:0" -#. Label of the user (Link) field in DocType 'CRM Dashboard' -#. Label of the user (Link) field in DocType 'CRM Telephony Agent' -#. Label of the user (Link) field in DocType 'CRM View Settings' -#: crm/fcrm/doctype/crm_dashboard/crm_dashboard.json -#: crm/fcrm/doctype/crm_telephony_agent/crm_telephony_agent.json -#: crm/fcrm/doctype/crm_view_settings/crm_view_settings.json +#. Label of the user (Link) field in PageType 'CRM Dashboard' +#. Label of the user (Link) field in PageType 'CRM Telephony Agent' +#. Label of the user (Link) field in PageType 'CRM View Settings' +#: crm/fcrm/pagetype/crm_dashboard/crm_dashboard.json +#: crm/fcrm/pagetype/crm_telephony_agent/crm_telephony_agent.json +#: crm/fcrm/pagetype/crm_view_settings/crm_view_settings.json msgid "User" msgstr "crwdns154057:0crwdne154057:0" @@ -5785,8 +5785,8 @@ msgstr "crwdns154057:0crwdne154057:0" msgid "User Management" msgstr "crwdns159322:0crwdne159322:0" -#. Label of the user_name (Data) field in DocType 'CRM Telephony Agent' -#: crm/fcrm/doctype/crm_telephony_agent/crm_telephony_agent.json +#. Label of the user_name (Data) field in PageType 'CRM Telephony Agent' +#: crm/fcrm/pagetype/crm_telephony_agent/crm_telephony_agent.json msgid "User Name" msgstr "crwdns154059:0crwdne154059:0" @@ -5808,9 +5808,9 @@ msgstr "crwdns156692:0crwdne156692:0" msgid "Users are required" msgstr "crwdns158946:0crwdne158946:0" -#. Label of the section_break_nevd (Section Break) field in DocType 'CRM +#. Label of the section_break_nevd (Section Break) field in PageType 'CRM #. Service Level Agreement' -#: crm/fcrm/doctype/crm_service_level_agreement/crm_service_level_agreement.json +#: crm/fcrm/pagetype/crm_service_level_agreement/crm_service_level_agreement.json msgid "Validity" msgstr "crwdns154061:0crwdne154061:0" @@ -5834,33 +5834,33 @@ msgstr "crwdns156694:0crwdne156694:0" msgid "Web form" msgstr "crwdns156696:0crwdne156696:0" -#. Label of the webhook_verify_token (Data) field in DocType 'CRM Exotel +#. Label of the webhook_verify_token (Data) field in PageType 'CRM Exotel #. Settings' -#: crm/fcrm/doctype/crm_exotel_settings/crm_exotel_settings.json +#: crm/fcrm/pagetype/crm_exotel_settings/crm_exotel_settings.json msgid "Webhook Verify Token" msgstr "crwdns154067:0crwdne154067:0" -#. Label of the website (Data) field in DocType 'CRM Deal' -#. Label of the website (Data) field in DocType 'CRM Lead' -#. Label of the website (Data) field in DocType 'CRM Organization' -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_lead/crm_lead.json -#: crm/fcrm/doctype/crm_organization/crm_organization.json +#. Label of the website (Data) field in PageType 'CRM Deal' +#. Label of the website (Data) field in PageType 'CRM Lead' +#. Label of the website (Data) field in PageType 'CRM Organization' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_lead/crm_lead.json +#: crm/fcrm/pagetype/crm_organization/crm_organization.json #: frontend/src/components/Modals/AboutModal.vue:52 msgid "Website" msgstr "crwdns154069:0crwdne154069:0" -#. Option for the 'Weekly Off' (Select) field in DocType 'CRM Holiday List' -#. Option for the 'Workday' (Select) field in DocType 'CRM Service Day' -#: crm/fcrm/doctype/crm_holiday_list/crm_holiday_list.json -#: crm/fcrm/doctype/crm_service_day/crm_service_day.json +#. Option for the 'Weekly Off' (Select) field in PageType 'CRM Holiday List' +#. Option for the 'Workday' (Select) field in PageType 'CRM Service Day' +#: crm/fcrm/pagetype/crm_holiday_list/crm_holiday_list.json +#: crm/fcrm/pagetype/crm_service_day/crm_service_day.json msgid "Wednesday" msgstr "crwdns154073:0crwdne154073:0" -#. Label of the weekly_off (Check) field in DocType 'CRM Holiday' -#. Label of the weekly_off (Select) field in DocType 'CRM Holiday List' -#: crm/fcrm/doctype/crm_holiday/crm_holiday.json -#: crm/fcrm/doctype/crm_holiday_list/crm_holiday_list.json +#. Label of the weekly_off (Check) field in PageType 'CRM Holiday' +#. Label of the weekly_off (Select) field in PageType 'CRM Holiday List' +#: crm/fcrm/pagetype/crm_holiday/crm_holiday.json +#: crm/fcrm/pagetype/crm_holiday_list/crm_holiday_list.json msgid "Weekly Off" msgstr "crwdns154075:0crwdne154075:0" @@ -5868,7 +5868,7 @@ msgstr "crwdns154075:0crwdne154075:0" msgid "Welcome Message" msgstr "crwdns154077:0crwdne154077:0" -#: crm/fcrm/doctype/helpdesk_crm_settings/helpdesk_crm_settings.py:155 +#: crm/fcrm/pagetype/helpdesk_crm_settings/helpdesk_crm_settings.py:155 msgid "Welcome to Helpdesk" msgstr "crwdns158688:0crwdne158688:0" @@ -5876,8 +5876,8 @@ msgstr "crwdns158688:0crwdne158688:0" msgid "Welcome {0}, lets add your first lead" msgstr "crwdns156698:0{0}crwdne156698:0" -#. Option for the 'Type' (Select) field in DocType 'CRM Notification' -#: crm/fcrm/doctype/crm_notification/crm_notification.json +#. Option for the 'Type' (Select) field in PageType 'CRM Notification' +#: crm/fcrm/pagetype/crm_notification/crm_notification.json #: frontend/src/components/Layouts/AppSidebar.vue:603 #: frontend/src/components/Settings/Settings.vue:190 #: frontend/src/pages/Deal.vue:572 frontend/src/pages/Lead.vue:429 @@ -5902,8 +5902,8 @@ msgstr "crwdns154085:0crwdne154085:0" msgid "Width can be in number, pixel or rem (eg. 3, 30px, 10rem)" msgstr "crwdns154087:0crwdne154087:0" -#. Option for the 'Type' (Select) field in DocType 'CRM Deal Status' -#: crm/fcrm/doctype/crm_deal_status/crm_deal_status.json +#. Option for the 'Type' (Select) field in PageType 'CRM Deal Status' +#: crm/fcrm/pagetype/crm_deal_status/crm_deal_status.json msgid "Won" msgstr "crwdns156700:0crwdne156700:0" @@ -5912,16 +5912,16 @@ msgstr "crwdns156700:0crwdne156700:0" msgid "Won deals" msgstr "crwdns156702:0crwdne156702:0" -#. Label of the workday (Select) field in DocType 'CRM Service Day' -#: crm/fcrm/doctype/crm_service_day/crm_service_day.json +#. Label of the workday (Select) field in PageType 'CRM Service Day' +#: crm/fcrm/pagetype/crm_service_day/crm_service_day.json msgid "Workday" msgstr "crwdns154089:0crwdne154089:0" -#. Label of the section_break_rmgo (Section Break) field in DocType 'CRM +#. Label of the section_break_rmgo (Section Break) field in PageType 'CRM #. Service Level Agreement' -#. Label of the working_hours (Table) field in DocType 'CRM Service Level +#. Label of the working_hours (Table) field in PageType 'CRM Service Level #. Agreement' -#: crm/fcrm/doctype/crm_service_level_agreement/crm_service_level_agreement.json +#: crm/fcrm/pagetype/crm_service_level_agreement/crm_service_level_agreement.json msgid "Working Hours" msgstr "crwdns154091:0crwdne154091:0" @@ -5967,7 +5967,7 @@ msgstr "crwdns154101:0crwdne154101:0" msgid "You do not have permission to access this document" msgstr "crwdns157282:0crwdne157282:0" -#: crm/fcrm/doctype/crm_form_script/crm_form_script.py:24 +#: crm/fcrm/pagetype/crm_form_script/crm_form_script.py:24 msgid "You need to be in developer mode to edit a Standard Form Script" msgstr "crwdns154105:0crwdne154105:0" @@ -5995,10 +5995,10 @@ msgstr "crwdns158950:0crwdne158950:0" msgid "added a" msgstr "crwdns154109:0crwdne154109:0" -#. Option for the 'Color' (Select) field in DocType 'CRM Deal Status' -#. Option for the 'Color' (Select) field in DocType 'CRM Lead Status' -#: crm/fcrm/doctype/crm_deal_status/crm_deal_status.json -#: crm/fcrm/doctype/crm_lead_status/crm_lead_status.json +#. Option for the 'Color' (Select) field in PageType 'CRM Deal Status' +#. Option for the 'Color' (Select) field in PageType 'CRM Lead Status' +#: crm/fcrm/pagetype/crm_deal_status/crm_deal_status.json +#: crm/fcrm/pagetype/crm_lead_status/crm_lead_status.json msgid "amber" msgstr "crwdns154111:0crwdne154111:0" @@ -6010,17 +6010,17 @@ msgstr "crwdns154215:0{0}crwdne154215:0" msgid "assigned a {0} {1} to you" msgstr "crwdns154217:0{0}crwdnd154217:0{1}crwdne154217:0" -#. Option for the 'Color' (Select) field in DocType 'CRM Deal Status' -#. Option for the 'Color' (Select) field in DocType 'CRM Lead Status' -#: crm/fcrm/doctype/crm_deal_status/crm_deal_status.json -#: crm/fcrm/doctype/crm_lead_status/crm_lead_status.json +#. Option for the 'Color' (Select) field in PageType 'CRM Deal Status' +#. Option for the 'Color' (Select) field in PageType 'CRM Lead Status' +#: crm/fcrm/pagetype/crm_deal_status/crm_deal_status.json +#: crm/fcrm/pagetype/crm_lead_status/crm_lead_status.json msgid "black" msgstr "crwdns154113:0crwdne154113:0" -#. Option for the 'Color' (Select) field in DocType 'CRM Deal Status' -#. Option for the 'Color' (Select) field in DocType 'CRM Lead Status' -#: crm/fcrm/doctype/crm_deal_status/crm_deal_status.json -#: crm/fcrm/doctype/crm_lead_status/crm_lead_status.json +#. Option for the 'Color' (Select) field in PageType 'CRM Deal Status' +#. Option for the 'Color' (Select) field in PageType 'CRM Lead Status' +#: crm/fcrm/pagetype/crm_deal_status/crm_deal_status.json +#: crm/fcrm/pagetype/crm_lead_status/crm_lead_status.json msgid "blue" msgstr "crwdns154115:0crwdne154115:0" @@ -6037,10 +6037,10 @@ msgstr "crwdns154119:0crwdne154119:0" msgid "condition" msgstr "crwdns158952:0crwdne158952:0" -#. Option for the 'Color' (Select) field in DocType 'CRM Deal Status' -#. Option for the 'Color' (Select) field in DocType 'CRM Lead Status' -#: crm/fcrm/doctype/crm_deal_status/crm_deal_status.json -#: crm/fcrm/doctype/crm_lead_status/crm_lead_status.json +#. Option for the 'Color' (Select) field in PageType 'CRM Deal Status' +#. Option for the 'Color' (Select) field in PageType 'CRM Lead Status' +#: crm/fcrm/pagetype/crm_deal_status/crm_deal_status.json +#: crm/fcrm/pagetype/crm_lead_status/crm_lead_status.json msgid "cyan" msgstr "crwdns154121:0crwdne154121:0" @@ -6059,33 +6059,33 @@ msgstr "crwdns158954:0crwdne158954:0" msgid "email already exists" msgstr "crwdns156706:0crwdne156706:0" -#. Option for the 'Service Provider' (Select) field in DocType 'FCRM Settings' -#: crm/fcrm/doctype/fcrm_settings/fcrm_settings.json +#. Option for the 'Service Provider' (Select) field in PageType 'FCRM Settings' +#: crm/fcrm/pagetype/fcrm_settings/fcrm_settings.json #: frontend/src/components/Settings/CurrencySettings.vue:106 msgid "exchangerate.host" msgstr "crwdns157284:0crwdne157284:0" -#. Option for the 'Service Provider' (Select) field in DocType 'FCRM Settings' -#: crm/fcrm/doctype/fcrm_settings/fcrm_settings.json +#. Option for the 'Service Provider' (Select) field in PageType 'FCRM Settings' +#: crm/fcrm/pagetype/fcrm_settings/fcrm_settings.json msgid "frankfurter.app" msgstr "crwdns157286:0crwdne157286:0" -#. Option for the 'Color' (Select) field in DocType 'CRM Deal Status' -#. Option for the 'Color' (Select) field in DocType 'CRM Lead Status' -#: crm/fcrm/doctype/crm_deal_status/crm_deal_status.json -#: crm/fcrm/doctype/crm_lead_status/crm_lead_status.json +#. Option for the 'Color' (Select) field in PageType 'CRM Deal Status' +#. Option for the 'Color' (Select) field in PageType 'CRM Lead Status' +#: crm/fcrm/pagetype/crm_deal_status/crm_deal_status.json +#: crm/fcrm/pagetype/crm_lead_status/crm_lead_status.json msgid "gray" msgstr "crwdns154123:0crwdne154123:0" -#. Option for the 'Color' (Select) field in DocType 'CRM Deal Status' -#. Option for the 'Color' (Select) field in DocType 'CRM Lead Status' -#: crm/fcrm/doctype/crm_deal_status/crm_deal_status.json -#: crm/fcrm/doctype/crm_lead_status/crm_lead_status.json +#. Option for the 'Color' (Select) field in PageType 'CRM Deal Status' +#. Option for the 'Color' (Select) field in PageType 'CRM Lead Status' +#: crm/fcrm/pagetype/crm_deal_status/crm_deal_status.json +#: crm/fcrm/pagetype/crm_lead_status/crm_lead_status.json msgid "green" msgstr "crwdns154125:0crwdne154125:0" -#. Option for the 'Type' (Select) field in DocType 'CRM View Settings' -#: crm/fcrm/doctype/crm_view_settings/crm_view_settings.json +#. Option for the 'Type' (Select) field in PageType 'CRM View Settings' +#: crm/fcrm/pagetype/crm_view_settings/crm_view_settings.json msgid "group_by" msgstr "crwdns154127:0crwdne154127:0" @@ -6170,12 +6170,12 @@ msgstr "crwdns156740:0crwdne156740:0" msgid "just now" msgstr "crwdns156742:0crwdne156742:0" -#. Option for the 'Type' (Select) field in DocType 'CRM View Settings' -#: crm/fcrm/doctype/crm_view_settings/crm_view_settings.json +#. Option for the 'Type' (Select) field in PageType 'CRM View Settings' +#: crm/fcrm/pagetype/crm_view_settings/crm_view_settings.json msgid "kanban" msgstr "crwdns154133:0crwdne154133:0" -#: crm/api/doc.py:40 crm/api/doc.py:158 crm/api/doc.py:503 +#: crm/api/pg.py:40 crm/api/pg.py:158 crm/api/pg.py:503 msgid "label" msgstr "crwdns154135:0crwdne154135:0" @@ -6184,8 +6184,8 @@ msgstr "crwdns154135:0crwdne154135:0" msgid "leads" msgstr "crwdns159328:0crwdne159328:0" -#. Option for the 'Type' (Select) field in DocType 'CRM View Settings' -#: crm/fcrm/doctype/crm_view_settings/crm_view_settings.json +#. Option for the 'Type' (Select) field in PageType 'CRM View Settings' +#: crm/fcrm/pagetype/crm_view_settings/crm_view_settings.json msgid "list" msgstr "crwdns154137:0crwdne154137:0" @@ -6206,17 +6206,17 @@ msgstr "crwdns156744:0crwdne156744:0" msgid "operator" msgstr "crwdns158956:0crwdne158956:0" -#. Option for the 'Color' (Select) field in DocType 'CRM Deal Status' -#. Option for the 'Color' (Select) field in DocType 'CRM Lead Status' -#: crm/fcrm/doctype/crm_deal_status/crm_deal_status.json -#: crm/fcrm/doctype/crm_lead_status/crm_lead_status.json +#. Option for the 'Color' (Select) field in PageType 'CRM Deal Status' +#. Option for the 'Color' (Select) field in PageType 'CRM Lead Status' +#: crm/fcrm/pagetype/crm_deal_status/crm_deal_status.json +#: crm/fcrm/pagetype/crm_lead_status/crm_lead_status.json msgid "orange" msgstr "crwdns154143:0crwdne154143:0" -#. Option for the 'Color' (Select) field in DocType 'CRM Deal Status' -#. Option for the 'Color' (Select) field in DocType 'CRM Lead Status' -#: crm/fcrm/doctype/crm_deal_status/crm_deal_status.json -#: crm/fcrm/doctype/crm_lead_status/crm_lead_status.json +#. Option for the 'Color' (Select) field in PageType 'CRM Deal Status' +#. Option for the 'Color' (Select) field in PageType 'CRM Lead Status' +#: crm/fcrm/pagetype/crm_deal_status/crm_deal_status.json +#: crm/fcrm/pagetype/crm_lead_status/crm_lead_status.json msgid "pink" msgstr "crwdns154145:0crwdne154145:0" @@ -6232,10 +6232,10 @@ msgstr "crwdns154149:0crwdne154149:0" msgid "public" msgstr "crwdns154151:0crwdne154151:0" -#. Option for the 'Color' (Select) field in DocType 'CRM Deal Status' -#. Option for the 'Color' (Select) field in DocType 'CRM Lead Status' -#: crm/fcrm/doctype/crm_deal_status/crm_deal_status.json -#: crm/fcrm/doctype/crm_lead_status/crm_lead_status.json +#. Option for the 'Color' (Select) field in PageType 'CRM Deal Status' +#. Option for the 'Color' (Select) field in PageType 'CRM Lead Status' +#: crm/fcrm/pagetype/crm_deal_status/crm_deal_status.json +#: crm/fcrm/pagetype/crm_lead_status/crm_lead_status.json msgid "purple" msgstr "crwdns154153:0crwdne154153:0" @@ -6243,17 +6243,17 @@ msgstr "crwdns154153:0crwdne154153:0" msgid "received a whatsapp message in {0}" msgstr "crwdns154219:0{0}crwdne154219:0" -#. Option for the 'Color' (Select) field in DocType 'CRM Deal Status' -#. Option for the 'Color' (Select) field in DocType 'CRM Lead Status' -#: crm/fcrm/doctype/crm_deal_status/crm_deal_status.json -#: crm/fcrm/doctype/crm_lead_status/crm_lead_status.json +#. Option for the 'Color' (Select) field in PageType 'CRM Deal Status' +#. Option for the 'Color' (Select) field in PageType 'CRM Lead Status' +#: crm/fcrm/pagetype/crm_deal_status/crm_deal_status.json +#: crm/fcrm/pagetype/crm_lead_status/crm_lead_status.json msgid "red" msgstr "crwdns154155:0crwdne154155:0" -#. Option for the 'Color' (Select) field in DocType 'CRM Deal Status' -#. Option for the 'Color' (Select) field in DocType 'CRM Lead Status' -#: crm/fcrm/doctype/crm_deal_status/crm_deal_status.json -#: crm/fcrm/doctype/crm_lead_status/crm_lead_status.json +#. Option for the 'Color' (Select) field in PageType 'CRM Deal Status' +#. Option for the 'Color' (Select) field in PageType 'CRM Lead Status' +#: crm/fcrm/pagetype/crm_deal_status/crm_deal_status.json +#: crm/fcrm/pagetype/crm_lead_status/crm_lead_status.json msgid "teal" msgstr "crwdns154157:0crwdne154157:0" @@ -6266,10 +6266,10 @@ msgstr "crwdns154159:0crwdne154159:0" msgid "tomorrow" msgstr "crwdns156746:0crwdne156746:0" -#. Option for the 'Color' (Select) field in DocType 'CRM Deal Status' -#. Option for the 'Color' (Select) field in DocType 'CRM Lead Status' -#: crm/fcrm/doctype/crm_deal_status/crm_deal_status.json -#: crm/fcrm/doctype/crm_lead_status/crm_lead_status.json +#. Option for the 'Color' (Select) field in PageType 'CRM Deal Status' +#. Option for the 'Color' (Select) field in PageType 'CRM Lead Status' +#: crm/fcrm/pagetype/crm_deal_status/crm_deal_status.json +#: crm/fcrm/pagetype/crm_lead_status/crm_lead_status.json msgid "violet" msgstr "crwdns154161:0crwdne154161:0" @@ -6278,10 +6278,10 @@ msgstr "crwdns154161:0crwdne154161:0" msgid "which are not compatible with this UI, you will need to recreate the conditions here if you want to manage and add new conditions from this UI." msgstr "crwdns158958:0crwdne158958:0" -#. Option for the 'Color' (Select) field in DocType 'CRM Deal Status' -#. Option for the 'Color' (Select) field in DocType 'CRM Lead Status' -#: crm/fcrm/doctype/crm_deal_status/crm_deal_status.json -#: crm/fcrm/doctype/crm_lead_status/crm_lead_status.json +#. Option for the 'Color' (Select) field in PageType 'CRM Deal Status' +#. Option for the 'Color' (Select) field in PageType 'CRM Lead Status' +#: crm/fcrm/pagetype/crm_deal_status/crm_deal_status.json +#: crm/fcrm/pagetype/crm_lead_status/crm_lead_status.json msgid "yellow" msgstr "crwdns154163:0crwdne154163:0" @@ -6379,7 +6379,7 @@ msgid "⚠️ Method \"{0}\" not found in class." msgstr "crwdns156780:0{0}crwdne156780:0" #: frontend/src/data/script.js:83 -msgid "⚠️ No class found for doctype: {0}, it is mandatory to have a class for the parent doctype. it can be empty, but it should be present." +msgid "⚠️ No class found for pagetype: {0}, it is mandatory to have a class for the parent pagetype. it can be empty, but it should be present." msgstr "crwdns156782:0{0}crwdne156782:0" #: frontend/src/data/script.js:180 diff --git a/crm/locale/es.po b/crm/locale/es.po index 57ac1da3..5f1b5e21 100644 --- a/crm/locale/es.po +++ b/crm/locale/es.po @@ -1,6 +1,6 @@ msgid "" msgstr "" -"Project-Id-Version: frappe\n" +"Project-Id-Version: jingrow\n" "Report-Msgid-Bugs-To: shariq@jingrow.com\n" "POT-Creation-Date: 2025-09-21 09:35+0000\n" "PO-Revision-Date: 2025-09-22 20:42\n" @@ -11,10 +11,10 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Generated-By: Babel 2.16.0\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -"X-Crowdin-Project: frappe\n" +"X-Crowdin-Project: jingrow\n" "X-Crowdin-Project-ID: 639578\n" "X-Crowdin-Language: es-ES\n" -"X-Crowdin-File: /[frappe.crm] develop/crm/locale/main.pot\n" +"X-Crowdin-File: /[jingrow.crm] develop/crm/locale/main.pot\n" "X-Crowdin-File-ID: 97\n" "Language: es_ES\n" @@ -55,73 +55,73 @@ msgstr "Hace 1 semana" msgid "1 year ago" msgstr "Hace 1 año" -#. Option for the 'No. of Employees' (Select) field in DocType 'CRM Deal' -#. Option for the 'No. of Employees' (Select) field in DocType 'CRM Lead' -#. Option for the 'No. of Employees' (Select) field in DocType 'CRM +#. Option for the 'No. of Employees' (Select) field in PageType 'CRM Deal' +#. Option for the 'No. of Employees' (Select) field in PageType 'CRM Lead' +#. Option for the 'No. of Employees' (Select) field in PageType 'CRM #. Organization' -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_lead/crm_lead.json -#: crm/fcrm/doctype/crm_organization/crm_organization.json +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_lead/crm_lead.json +#: crm/fcrm/pagetype/crm_organization/crm_organization.json msgid "1-10" msgstr "1-10" -#. Option for the 'No. of Employees' (Select) field in DocType 'CRM Deal' -#. Option for the 'No. of Employees' (Select) field in DocType 'CRM Lead' -#. Option for the 'No. of Employees' (Select) field in DocType 'CRM +#. Option for the 'No. of Employees' (Select) field in PageType 'CRM Deal' +#. Option for the 'No. of Employees' (Select) field in PageType 'CRM Lead' +#. Option for the 'No. of Employees' (Select) field in PageType 'CRM #. Organization' -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_lead/crm_lead.json -#: crm/fcrm/doctype/crm_organization/crm_organization.json +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_lead/crm_lead.json +#: crm/fcrm/pagetype/crm_organization/crm_organization.json msgid "1000+" msgstr "más de 1.000" -#. Option for the 'No. of Employees' (Select) field in DocType 'CRM Deal' -#. Option for the 'No. of Employees' (Select) field in DocType 'CRM Lead' -#. Option for the 'No. of Employees' (Select) field in DocType 'CRM +#. Option for the 'No. of Employees' (Select) field in PageType 'CRM Deal' +#. Option for the 'No. of Employees' (Select) field in PageType 'CRM Lead' +#. Option for the 'No. of Employees' (Select) field in PageType 'CRM #. Organization' -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_lead/crm_lead.json -#: crm/fcrm/doctype/crm_organization/crm_organization.json +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_lead/crm_lead.json +#: crm/fcrm/pagetype/crm_organization/crm_organization.json msgid "11-50" msgstr "11 a 50" -#. Option for the 'No. of Employees' (Select) field in DocType 'CRM Deal' -#. Option for the 'No. of Employees' (Select) field in DocType 'CRM Lead' -#. Option for the 'No. of Employees' (Select) field in DocType 'CRM +#. Option for the 'No. of Employees' (Select) field in PageType 'CRM Deal' +#. Option for the 'No. of Employees' (Select) field in PageType 'CRM Lead' +#. Option for the 'No. of Employees' (Select) field in PageType 'CRM #. Organization' -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_lead/crm_lead.json -#: crm/fcrm/doctype/crm_organization/crm_organization.json +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_lead/crm_lead.json +#: crm/fcrm/pagetype/crm_organization/crm_organization.json msgid "201-500" msgstr "201-500" -#. Option for the 'No. of Employees' (Select) field in DocType 'CRM Deal' -#. Option for the 'No. of Employees' (Select) field in DocType 'CRM Lead' -#. Option for the 'No. of Employees' (Select) field in DocType 'CRM +#. Option for the 'No. of Employees' (Select) field in PageType 'CRM Deal' +#. Option for the 'No. of Employees' (Select) field in PageType 'CRM Lead' +#. Option for the 'No. of Employees' (Select) field in PageType 'CRM #. Organization' -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_lead/crm_lead.json -#: crm/fcrm/doctype/crm_organization/crm_organization.json +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_lead/crm_lead.json +#: crm/fcrm/pagetype/crm_organization/crm_organization.json msgid "501-1000" msgstr "501-1000" -#. Option for the 'No. of Employees' (Select) field in DocType 'CRM Deal' -#. Option for the 'No. of Employees' (Select) field in DocType 'CRM Lead' -#. Option for the 'No. of Employees' (Select) field in DocType 'CRM +#. Option for the 'No. of Employees' (Select) field in PageType 'CRM Deal' +#. Option for the 'No. of Employees' (Select) field in PageType 'CRM Lead' +#. Option for the 'No. of Employees' (Select) field in PageType 'CRM #. Organization' -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_lead/crm_lead.json -#: crm/fcrm/doctype/crm_organization/crm_organization.json +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_lead/crm_lead.json +#: crm/fcrm/pagetype/crm_organization/crm_organization.json msgid "51-200" msgstr "51-200" -#. Paragraph text in the Frappe CRM Workspace -#: crm/fcrm/workspace/frappe_crm/frappe_crm.json +#. Paragraph text in the Jingrow CRM Workspace +#: crm/fcrm/workspace/jingrow_crm/jingrow_crm.json msgid "META" msgstr "" -#. Paragraph text in the Frappe CRM Workspace -#: crm/fcrm/workspace/frappe_crm/frappe_crm.json +#. Paragraph text in the Jingrow CRM Workspace +#: crm/fcrm/workspace/jingrow_crm/jingrow_crm.json msgid "SHORTCUTS" msgstr "" @@ -130,8 +130,8 @@ msgstr "" msgid "

Dear {{ lead_name }},

\\n\\n

This is a reminder for the payment of {{ grand_total }}.

\\n\\n

Thanks,

\\n

Frappé

" msgstr "" -#. Header text in the Frappe CRM Workspace -#: crm/fcrm/workspace/frappe_crm/frappe_crm.json +#. Header text in the Jingrow CRM Workspace +#: crm/fcrm/workspace/jingrow_crm/jingrow_crm.json msgid "PORTAL" msgstr "" @@ -139,7 +139,7 @@ msgstr "" msgid "@John, can you please check this?" msgstr "" -#: crm/fcrm/doctype/crm_lead/crm_lead.py:56 +#: crm/fcrm/pagetype/crm_lead/crm_lead.py:56 msgid "A Lead requires either a person's name or an organization's name" msgstr "Un cliente potencial requiere el nombre de una persona o el nombre de una organización" @@ -147,14 +147,14 @@ msgstr "Un cliente potencial requiere el nombre de una persona o el nombre de un msgid "A new account has been created for you at {0}" msgstr "Una nueva cuenta ha sido creada para usted en {0}" -#. Label of the api_key (Data) field in DocType 'CRM Exotel Settings' -#. Label of the api_key (Data) field in DocType 'CRM Twilio Settings' -#. Label of the api_key (Data) field in DocType 'ERPNext CRM Settings' -#. Label of the api_key (Data) field in DocType 'Helpdesk CRM Settings' -#: crm/fcrm/doctype/crm_exotel_settings/crm_exotel_settings.json -#: crm/fcrm/doctype/crm_twilio_settings/crm_twilio_settings.json -#: crm/fcrm/doctype/erpnext_crm_settings/erpnext_crm_settings.json -#: crm/fcrm/doctype/helpdesk_crm_settings/helpdesk_crm_settings.json +#. Label of the api_key (Data) field in PageType 'CRM Exotel Settings' +#. Label of the api_key (Data) field in PageType 'CRM Twilio Settings' +#. Label of the api_key (Data) field in PageType 'ERPNext CRM Settings' +#. Label of the api_key (Data) field in PageType 'Helpdesk CRM Settings' +#: crm/fcrm/pagetype/crm_exotel_settings/crm_exotel_settings.json +#: crm/fcrm/pagetype/crm_twilio_settings/crm_twilio_settings.json +#: crm/fcrm/pagetype/erpnext_crm_settings/erpnext_crm_settings.json +#: crm/fcrm/pagetype/helpdesk_crm_settings/helpdesk_crm_settings.json msgid "API Key" msgstr "Clave de API" @@ -162,17 +162,17 @@ msgstr "Clave de API" msgid "API Key is required" msgstr "" -#. Label of the api_secret (Password) field in DocType 'CRM Twilio Settings' -#. Label of the api_secret (Password) field in DocType 'ERPNext CRM Settings' -#. Label of the api_secret (Password) field in DocType 'Helpdesk CRM Settings' -#: crm/fcrm/doctype/crm_twilio_settings/crm_twilio_settings.json -#: crm/fcrm/doctype/erpnext_crm_settings/erpnext_crm_settings.json -#: crm/fcrm/doctype/helpdesk_crm_settings/helpdesk_crm_settings.json +#. Label of the api_secret (Password) field in PageType 'CRM Twilio Settings' +#. Label of the api_secret (Password) field in PageType 'ERPNext CRM Settings' +#. Label of the api_secret (Password) field in PageType 'Helpdesk CRM Settings' +#: crm/fcrm/pagetype/crm_twilio_settings/crm_twilio_settings.json +#: crm/fcrm/pagetype/erpnext_crm_settings/erpnext_crm_settings.json +#: crm/fcrm/pagetype/helpdesk_crm_settings/helpdesk_crm_settings.json msgid "API Secret" msgstr "Clave Secreta de API" -#. Label of the api_token (Password) field in DocType 'CRM Exotel Settings' -#: crm/fcrm/doctype/crm_exotel_settings/crm_exotel_settings.json +#. Label of the api_token (Password) field in PageType 'CRM Exotel Settings' +#: crm/fcrm/pagetype/crm_exotel_settings/crm_exotel_settings.json msgid "API Token" msgstr "" @@ -180,7 +180,7 @@ msgstr "" msgid "Accept" msgstr "" -#: crm/fcrm/doctype/crm_invitation/crm_invitation.js:7 +#: crm/fcrm/pagetype/crm_invitation/crm_invitation.js:7 msgid "Accept Invitation" msgstr "" @@ -188,22 +188,22 @@ msgstr "" msgid "Accept call" msgstr "" -#. Option for the 'Status' (Select) field in DocType 'CRM Invitation' -#: crm/fcrm/doctype/crm_invitation/crm_invitation.json +#. Option for the 'Status' (Select) field in PageType 'CRM Invitation' +#: crm/fcrm/pagetype/crm_invitation/crm_invitation.json msgid "Accepted" msgstr "Aceptado" -#. Label of the accepted_at (Datetime) field in DocType 'CRM Invitation' -#: crm/fcrm/doctype/crm_invitation/crm_invitation.json +#. Label of the accepted_at (Datetime) field in PageType 'CRM Invitation' +#: crm/fcrm/pagetype/crm_invitation/crm_invitation.json msgid "Accepted At" msgstr "" -#. Label of the access_key (Data) field in DocType 'FCRM Settings' -#: crm/fcrm/doctype/fcrm_settings/fcrm_settings.json +#. Label of the access_key (Data) field in PageType 'FCRM Settings' +#: crm/fcrm/pagetype/fcrm_settings/fcrm_settings.json msgid "Access Key" msgstr "Clave de Acceso" -#: crm/fcrm/doctype/fcrm_settings/fcrm_settings.py:156 +#: crm/fcrm/pagetype/fcrm_settings/fcrm_settings.py:156 msgid "Access Key is required for Service Provider: {0}" msgstr "Se requiere clave de acceso para el proveedor de servicios: {0}" @@ -219,10 +219,10 @@ msgstr "" msgid "Account Name" msgstr "Nombre de la Cuenta" -#. Label of the account_sid (Data) field in DocType 'CRM Exotel Settings' -#. Label of the account_sid (Data) field in DocType 'CRM Twilio Settings' -#: crm/fcrm/doctype/crm_exotel_settings/crm_exotel_settings.json -#: crm/fcrm/doctype/crm_twilio_settings/crm_twilio_settings.json +#. Label of the account_sid (Data) field in PageType 'CRM Exotel Settings' +#. Label of the account_sid (Data) field in PageType 'CRM Twilio Settings' +#: crm/fcrm/pagetype/crm_exotel_settings/crm_exotel_settings.json +#: crm/fcrm/pagetype/crm_twilio_settings/crm_twilio_settings.json msgid "Account SID" msgstr "" @@ -296,9 +296,9 @@ msgstr "" msgid "Add Tab" msgstr "" -#. Label of the add_weekly_holidays_section (Section Break) field in DocType +#. Label of the add_weekly_holidays_section (Section Break) field in PageType #. 'CRM Holiday List' -#: crm/fcrm/doctype/crm_holiday_list/crm_holiday_list.json +#: crm/fcrm/pagetype/crm_holiday_list/crm_holiday_list.json msgid "Add Weekly Holidays" msgstr "Añadir Vacaciones Semanales" @@ -363,8 +363,8 @@ msgstr "" msgid "Add sample data" msgstr "" -#. Description of the 'Icon' (Code) field in DocType 'CRM Dropdown Item' -#: crm/fcrm/doctype/crm_dropdown_item/crm_dropdown_item.json +#. Description of the 'Icon' (Code) field in PageType 'CRM Dropdown Item' +#: crm/fcrm/pagetype/crm_dropdown_item/crm_dropdown_item.json msgid "Add svg code or use feather icons e.g 'settings'" msgstr "" @@ -372,8 +372,8 @@ msgstr "" msgid "Add task" msgstr "" -#. Label of the add_to_holidays (Button) field in DocType 'CRM Holiday List' -#: crm/fcrm/doctype/crm_holiday_list/crm_holiday_list.json +#. Label of the add_to_holidays (Button) field in PageType 'CRM Holiday List' +#: crm/fcrm/pagetype/crm_holiday_list/crm_holiday_list.json msgid "Add to Holidays" msgstr "Agregar a Vacaciones" @@ -385,8 +385,8 @@ msgstr "" msgid "Add, edit, and manage email templates for various CRM communications" msgstr "" -#. Label of the address (Link) field in DocType 'CRM Organization' -#: crm/fcrm/doctype/crm_organization/crm_organization.json +#. Label of the address (Link) field in PageType 'CRM Organization' +#: crm/fcrm/pagetype/crm_organization/crm_organization.json msgid "Address" msgstr "Dirección" @@ -406,14 +406,14 @@ msgid "Agent is unavailable to take the call, please call after some time." msgstr "" #. Name of a role -#: crm/fcrm/doctype/crm_exotel_settings/crm_exotel_settings.json -#: crm/fcrm/doctype/crm_fields_layout/crm_fields_layout.json -#: crm/fcrm/doctype/crm_form_script/crm_form_script.json -#: crm/fcrm/doctype/crm_industry/crm_industry.json -#: crm/fcrm/doctype/crm_lead/crm_lead.json -#: crm/fcrm/doctype/crm_lead_source/crm_lead_source.json -#: crm/fcrm/doctype/crm_lead_status/crm_lead_status.json -#: crm/fcrm/doctype/fcrm_settings/fcrm_settings.json +#: crm/fcrm/pagetype/crm_exotel_settings/crm_exotel_settings.json +#: crm/fcrm/pagetype/crm_fields_layout/crm_fields_layout.json +#: crm/fcrm/pagetype/crm_form_script/crm_form_script.json +#: crm/fcrm/pagetype/crm_industry/crm_industry.json +#: crm/fcrm/pagetype/crm_lead/crm_lead.json +#: crm/fcrm/pagetype/crm_lead_source/crm_lead_source.json +#: crm/fcrm/pagetype/crm_lead_status/crm_lead_status.json +#: crm/fcrm/pagetype/fcrm_settings/fcrm_settings.json #: frontend/src/components/Settings/EmailTemplate/EmailTemplates.vue:76 #: frontend/src/components/Settings/Users.vue:85 msgid "All" @@ -426,16 +426,16 @@ msgstr "Todos" msgid "All day" msgstr "" -#. Label of the amount (Currency) field in DocType 'CRM Products' -#: crm/fcrm/doctype/crm_products/crm_products.json +#. Label of the amount (Currency) field in PageType 'CRM Products' +#: crm/fcrm/pagetype/crm_products/crm_products.json #: frontend/src/pages/Contact.vue:499 frontend/src/pages/MobileContact.vue:507 #: frontend/src/pages/MobileOrganization.vue:451 #: frontend/src/pages/Organization.vue:472 msgid "Amount" msgstr "Importe" -#. Description of the 'Net Amount' (Currency) field in DocType 'CRM Products' -#: crm/fcrm/doctype/crm_products/crm_products.json +#. Description of the 'Net Amount' (Currency) field in PageType 'CRM Products' +#: crm/fcrm/pagetype/crm_products/crm_products.json msgid "Amount after discount" msgstr "" @@ -447,13 +447,13 @@ msgstr "" msgid "An error occurred while updating the document" msgstr "" -#. Description of the 'Favicon' (Attach) field in DocType 'FCRM Settings' -#: crm/fcrm/doctype/fcrm_settings/fcrm_settings.json +#. Description of the 'Favicon' (Attach) field in PageType 'FCRM Settings' +#: crm/fcrm/pagetype/fcrm_settings/fcrm_settings.json msgid "An icon file with .ico extension. Should be 16 x 16 px. Generated using a favicon generator. [favicon-generator.org]" msgstr "Un archivo de icono con .ico extensión. Debería ser de 16 x 16 píxeles. Generado usando un generador de favicon. [favicon-generator.org]" -#. Description of the 'Logo' (Attach) field in DocType 'FCRM Settings' -#: crm/fcrm/doctype/fcrm_settings/fcrm_settings.json +#. Description of the 'Logo' (Attach) field in PageType 'FCRM Settings' +#: crm/fcrm/pagetype/fcrm_settings/fcrm_settings.json msgid "An image with 1:1 & 2:1 ratio is preferred" msgstr "" @@ -461,12 +461,12 @@ msgstr "" msgid "And" msgstr "" -#. Label of the annual_revenue (Currency) field in DocType 'CRM Deal' -#. Label of the annual_revenue (Currency) field in DocType 'CRM Lead' -#. Label of the annual_revenue (Currency) field in DocType 'CRM Organization' -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_lead/crm_lead.json -#: crm/fcrm/doctype/crm_organization/crm_organization.json +#. Label of the annual_revenue (Currency) field in PageType 'CRM Deal' +#. Label of the annual_revenue (Currency) field in PageType 'CRM Lead' +#. Label of the annual_revenue (Currency) field in PageType 'CRM Organization' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_lead/crm_lead.json +#: crm/fcrm/pagetype/crm_organization/crm_organization.json msgid "Annual Revenue" msgstr "Ingresos Anuales" @@ -488,13 +488,13 @@ msgstr "" msgid "Apply" msgstr "Postularse" -#. Label of the apply_on (Link) field in DocType 'CRM Service Level Agreement' -#: crm/fcrm/doctype/crm_service_level_agreement/crm_service_level_agreement.json +#. Label of the apply_on (Link) field in PageType 'CRM Service Level Agreement' +#: crm/fcrm/pagetype/crm_service_level_agreement/crm_service_level_agreement.json msgid "Apply On" msgstr "Aplicar en" -#. Label of the view (Select) field in DocType 'CRM Form Script' -#: crm/fcrm/doctype/crm_form_script/crm_form_script.json +#. Label of the view (Select) field in PageType 'CRM Form Script' +#: crm/fcrm/pagetype/crm_form_script/crm_form_script.json msgid "Apply To" msgstr "Aplicar a" @@ -540,10 +540,10 @@ msgid "Are you sure you want to go back? Unsaved changes will be lost." msgstr "" #: frontend/src/composables/frappecloud.js:24 -msgid "Are you sure you want to login to your Frappe Cloud dashboard?" -msgstr "¿Estás seguro de que deseas iniciar sesión en el panel de Frappe Cloud?" +msgid "Are you sure you want to login to your Jingrow Cloud dashboard?" +msgstr "¿Estás seguro de que deseas iniciar sesión en el panel de Jingrow Cloud?" -#: crm/fcrm/doctype/erpnext_crm_settings/erpnext_crm_settings.js:9 +#: crm/fcrm/pagetype/erpnext_crm_settings/erpnext_crm_settings.js:9 msgid "Are you sure you want to reset 'Create Quotation from CRM Deal' Form Script?" msgstr "" @@ -555,7 +555,7 @@ msgstr "" msgid "Are you sure you want to unlink {0} linked item(s)?" msgstr "" -#: crm/fcrm/doctype/fcrm_settings/fcrm_settings.py:193 +#: crm/fcrm/pagetype/fcrm_settings/fcrm_settings.py:193 msgid "Ask your manager to set up the Exchange Rate Provider, as default provider does not support currency conversion for {0} to {1}." msgstr "" @@ -581,8 +581,8 @@ msgstr "" msgid "Assign to me" msgstr "Asignar a mí" -#. Label of the assigned_to (Link) field in DocType 'CRM Task' -#: crm/fcrm/doctype/crm_task/crm_task.json +#. Label of the assigned_to (Link) field in PageType 'CRM Task' +#: crm/fcrm/pagetype/crm_task/crm_task.json msgid "Assigned To" msgstr "Asignado a" @@ -594,13 +594,13 @@ msgstr "" msgid "Assignees" msgstr "" -#. Option for the 'Type' (Select) field in DocType 'CRM Notification' -#: crm/fcrm/doctype/crm_notification/crm_notification.json +#. Option for the 'Type' (Select) field in PageType 'CRM Notification' +#: crm/fcrm/pagetype/crm_notification/crm_notification.json msgid "Assignment" msgstr "Asignación" -#. Label of a shortcut in the Frappe CRM Workspace -#: crm/fcrm/workspace/frappe_crm/frappe_crm.json +#. Label of a shortcut in the Jingrow CRM Workspace +#: crm/fcrm/workspace/jingrow_crm/jingrow_crm.json msgid "Assignment Rule" msgstr "Regla de asignación" @@ -678,14 +678,14 @@ msgstr "Adjuntos" msgid "Attendees" msgstr "Asistentes" -#. Label of the auth_token (Password) field in DocType 'CRM Twilio Settings' -#: crm/fcrm/doctype/crm_twilio_settings/crm_twilio_settings.json +#. Label of the auth_token (Password) field in PageType 'CRM Twilio Settings' +#: crm/fcrm/pagetype/crm_twilio_settings/crm_twilio_settings.json msgid "Auth Token" msgstr "" -#. Label of the auto_update_expected_deal_value (Check) field in DocType 'FCRM +#. Label of the auto_update_expected_deal_value (Check) field in PageType 'FCRM #. Settings' -#: crm/fcrm/doctype/fcrm_settings/fcrm_settings.json +#: crm/fcrm/pagetype/fcrm_settings/fcrm_settings.json msgid "Auto Update Expected Deal Value" msgstr "" @@ -702,8 +702,8 @@ msgid "Auto update of expected deal value enabled" msgstr "" #. Description of the 'Auto Update Expected Deal Value' (Check) field in -#. DocType 'FCRM Settings' -#: crm/fcrm/doctype/fcrm_settings/fcrm_settings.json +#. PageType 'FCRM Settings' +#: crm/fcrm/pagetype/fcrm_settings/fcrm_settings.json #: frontend/src/components/Settings/ForecastingSettings.vue:46 msgid "Automatically update \"Expected Deal Value\" based on the total value of associated products in a deal" msgstr "" @@ -793,8 +793,8 @@ msgstr "Atrás" msgid "Back to file upload" msgstr "" -#. Option for the 'Status' (Select) field in DocType 'CRM Task' -#: crm/fcrm/doctype/crm_task/crm_task.json +#. Option for the 'Status' (Select) field in PageType 'CRM Task' +#: crm/fcrm/pagetype/crm_task/crm_task.json msgid "Backlog" msgstr "" @@ -818,8 +818,8 @@ msgstr "" msgid "Brand settings" msgstr "" -#. Label of the branding_tab (Tab Break) field in DocType 'FCRM Settings' -#: crm/fcrm/doctype/fcrm_settings/fcrm_settings.json +#. Label of the branding_tab (Tab Break) field in PageType 'FCRM Settings' +#: crm/fcrm/pagetype/fcrm_settings/fcrm_settings.json msgid "Branding" msgstr "" @@ -827,8 +827,8 @@ msgstr "" msgid "Bulk Edit" msgstr "Edición masiva" -#. Option for the 'Status' (Select) field in DocType 'CRM Call Log' -#: crm/fcrm/doctype/crm_call_log/crm_call_log.json +#. Option for the 'Status' (Select) field in PageType 'CRM Call Log' +#: crm/fcrm/pagetype/crm_call_log/crm_call_log.json msgid "Busy" msgstr "Ocupado" @@ -838,174 +838,174 @@ msgstr "Ocupado" msgid "CC" msgstr "CC" -#. Name of a DocType -#: crm/fcrm/doctype/crm_call_log/crm_call_log.json +#. Name of a PageType +#: crm/fcrm/pagetype/crm_call_log/crm_call_log.json msgid "CRM Call Log" msgstr "" -#. Name of a DocType -#: crm/fcrm/doctype/crm_communication_status/crm_communication_status.json +#. Name of a PageType +#: crm/fcrm/pagetype/crm_communication_status/crm_communication_status.json msgid "CRM Communication Status" msgstr "" -#. Name of a DocType -#: crm/fcrm/doctype/crm_contacts/crm_contacts.json +#. Name of a PageType +#: crm/fcrm/pagetype/crm_contacts/crm_contacts.json msgid "CRM Contacts" msgstr "" -#. Name of a DocType -#: crm/fcrm/doctype/crm_dashboard/crm_dashboard.json +#. Name of a PageType +#: crm/fcrm/pagetype/crm_dashboard/crm_dashboard.json #: frontend/src/pages/Dashboard.vue:304 msgid "CRM Dashboard" msgstr "" -#. Name of a DocType -#: crm/fcrm/doctype/crm_deal/crm_deal.json +#. Name of a PageType +#: crm/fcrm/pagetype/crm_deal/crm_deal.json msgid "CRM Deal" msgstr "" -#. Name of a DocType -#: crm/fcrm/doctype/crm_deal_status/crm_deal_status.json +#. Name of a PageType +#: crm/fcrm/pagetype/crm_deal_status/crm_deal_status.json msgid "CRM Deal Status" msgstr "" -#. Name of a DocType -#: crm/fcrm/doctype/crm_dropdown_item/crm_dropdown_item.json +#. Name of a PageType +#: crm/fcrm/pagetype/crm_dropdown_item/crm_dropdown_item.json msgid "CRM Dropdown Item" msgstr "" -#. Name of a DocType -#: crm/fcrm/doctype/crm_exotel_settings/crm_exotel_settings.json +#. Name of a PageType +#: crm/fcrm/pagetype/crm_exotel_settings/crm_exotel_settings.json msgid "CRM Exotel Settings" msgstr "" -#. Name of a DocType -#: crm/fcrm/doctype/crm_fields_layout/crm_fields_layout.json +#. Name of a PageType +#: crm/fcrm/pagetype/crm_fields_layout/crm_fields_layout.json msgid "CRM Fields Layout" msgstr "" -#. Name of a DocType -#: crm/fcrm/doctype/crm_form_script/crm_form_script.json +#. Name of a PageType +#: crm/fcrm/pagetype/crm_form_script/crm_form_script.json msgid "CRM Form Script" msgstr "" -#. Name of a DocType -#: crm/fcrm/doctype/crm_global_settings/crm_global_settings.json +#. Name of a PageType +#: crm/fcrm/pagetype/crm_global_settings/crm_global_settings.json msgid "CRM Global Settings" msgstr "" -#. Name of a DocType -#: crm/fcrm/doctype/crm_holiday/crm_holiday.json +#. Name of a PageType +#: crm/fcrm/pagetype/crm_holiday/crm_holiday.json msgid "CRM Holiday" msgstr "" -#. Name of a DocType -#: crm/fcrm/doctype/crm_holiday_list/crm_holiday_list.json +#. Name of a PageType +#: crm/fcrm/pagetype/crm_holiday_list/crm_holiday_list.json msgid "CRM Holiday List" msgstr "" -#. Name of a DocType -#: crm/fcrm/doctype/crm_industry/crm_industry.json +#. Name of a PageType +#: crm/fcrm/pagetype/crm_industry/crm_industry.json msgid "CRM Industry" msgstr "" -#. Name of a DocType -#: crm/fcrm/doctype/crm_invitation/crm_invitation.json +#. Name of a PageType +#: crm/fcrm/pagetype/crm_invitation/crm_invitation.json msgid "CRM Invitation" msgstr "" -#. Name of a DocType -#: crm/fcrm/doctype/crm_lead/crm_lead.json +#. Name of a PageType +#: crm/fcrm/pagetype/crm_lead/crm_lead.json msgid "CRM Lead" msgstr "" -#. Name of a DocType -#: crm/fcrm/doctype/crm_lead_source/crm_lead_source.json +#. Name of a PageType +#: crm/fcrm/pagetype/crm_lead_source/crm_lead_source.json msgid "CRM Lead Source" msgstr "" -#. Name of a DocType -#: crm/fcrm/doctype/crm_lead_status/crm_lead_status.json +#. Name of a PageType +#: crm/fcrm/pagetype/crm_lead_status/crm_lead_status.json msgid "CRM Lead Status" msgstr "" -#. Name of a DocType -#: crm/fcrm/doctype/crm_lost_reason/crm_lost_reason.json +#. Name of a PageType +#: crm/fcrm/pagetype/crm_lost_reason/crm_lost_reason.json msgid "CRM Lost Reason" msgstr "" -#. Name of a DocType -#: crm/fcrm/doctype/crm_notification/crm_notification.json +#. Name of a PageType +#: crm/fcrm/pagetype/crm_notification/crm_notification.json msgid "CRM Notification" msgstr "" -#. Name of a DocType -#: crm/fcrm/doctype/crm_organization/crm_organization.json +#. Name of a PageType +#: crm/fcrm/pagetype/crm_organization/crm_organization.json msgid "CRM Organization" msgstr "" -#. Label of a shortcut in the Frappe CRM Workspace -#: crm/fcrm/workspace/frappe_crm/frappe_crm.json +#. Label of a shortcut in the Jingrow CRM Workspace +#: crm/fcrm/workspace/jingrow_crm/jingrow_crm.json msgid "CRM Portal Page" msgstr "" -#. Name of a DocType -#: crm/fcrm/doctype/crm_product/crm_product.json +#. Name of a PageType +#: crm/fcrm/pagetype/crm_product/crm_product.json msgid "CRM Product" msgstr "" -#. Name of a DocType -#: crm/fcrm/doctype/crm_products/crm_products.json +#. Name of a PageType +#: crm/fcrm/pagetype/crm_products/crm_products.json msgid "CRM Products" msgstr "" -#. Name of a DocType -#: crm/fcrm/doctype/crm_service_day/crm_service_day.json +#. Name of a PageType +#: crm/fcrm/pagetype/crm_service_day/crm_service_day.json msgid "CRM Service Day" msgstr "" -#. Name of a DocType -#: crm/fcrm/doctype/crm_service_level_agreement/crm_service_level_agreement.json +#. Name of a PageType +#: crm/fcrm/pagetype/crm_service_level_agreement/crm_service_level_agreement.json msgid "CRM Service Level Agreement" msgstr "" -#. Name of a DocType -#: crm/fcrm/doctype/crm_service_level_priority/crm_service_level_priority.json +#. Name of a PageType +#: crm/fcrm/pagetype/crm_service_level_priority/crm_service_level_priority.json msgid "CRM Service Level Priority" msgstr "" -#. Name of a DocType -#: crm/fcrm/doctype/crm_status_change_log/crm_status_change_log.json +#. Name of a PageType +#: crm/fcrm/pagetype/crm_status_change_log/crm_status_change_log.json msgid "CRM Status Change Log" msgstr "" -#. Name of a DocType -#: crm/fcrm/doctype/crm_task/crm_task.json +#. Name of a PageType +#: crm/fcrm/pagetype/crm_task/crm_task.json msgid "CRM Task" msgstr "" -#. Name of a DocType -#: crm/fcrm/doctype/crm_telephony_agent/crm_telephony_agent.json +#. Name of a PageType +#: crm/fcrm/pagetype/crm_telephony_agent/crm_telephony_agent.json msgid "CRM Telephony Agent" msgstr "" -#. Name of a DocType -#: crm/fcrm/doctype/crm_telephony_phone/crm_telephony_phone.json +#. Name of a PageType +#: crm/fcrm/pagetype/crm_telephony_phone/crm_telephony_phone.json msgid "CRM Telephony Phone" msgstr "" -#. Name of a DocType -#: crm/fcrm/doctype/crm_territory/crm_territory.json +#. Name of a PageType +#: crm/fcrm/pagetype/crm_territory/crm_territory.json msgid "CRM Territory" msgstr "" -#. Name of a DocType -#: crm/fcrm/doctype/crm_twilio_settings/crm_twilio_settings.json +#. Name of a PageType +#: crm/fcrm/pagetype/crm_twilio_settings/crm_twilio_settings.json msgid "CRM Twilio Settings" msgstr "" -#. Name of a DocType -#: crm/fcrm/doctype/crm_view_settings/crm_view_settings.json +#. Name of a PageType +#: crm/fcrm/pagetype/crm_view_settings/crm_view_settings.json msgid "CRM View Settings" msgstr "" @@ -1021,13 +1021,13 @@ msgstr "CSV" msgid "Call Details" msgstr "Detalles de la llamada" -#. Label of the receiver (Link) field in DocType 'CRM Call Log' -#: crm/fcrm/doctype/crm_call_log/crm_call_log.json +#. Label of the receiver (Link) field in PageType 'CRM Call Log' +#: crm/fcrm/pagetype/crm_call_log/crm_call_log.json msgid "Call Received By" msgstr "Llamada recibida por" -#. Description of the 'Duration' (Duration) field in DocType 'CRM Call Log' -#: crm/fcrm/doctype/crm_call_log/crm_call_log.json +#. Description of the 'Duration' (Duration) field in PageType 'CRM Call Log' +#: crm/fcrm/pagetype/crm_call_log/crm_call_log.json msgid "Call duration in seconds" msgstr "" @@ -1045,8 +1045,8 @@ msgstr "" msgid "Call with John Doe" msgstr "" -#. Label of the caller (Link) field in DocType 'CRM Call Log' -#: crm/fcrm/doctype/crm_call_log/crm_call_log.json +#. Label of the caller (Link) field in PageType 'CRM Call Log' +#: crm/fcrm/pagetype/crm_call_log/crm_call_log.json msgid "Caller" msgstr "" @@ -1083,10 +1083,10 @@ msgstr "Cámara" msgid "Cancel" msgstr "Cancelar" -#. Option for the 'Status' (Select) field in DocType 'CRM Call Log' -#. Option for the 'Status' (Select) field in DocType 'CRM Task' -#: crm/fcrm/doctype/crm_call_log/crm_call_log.json -#: crm/fcrm/doctype/crm_task/crm_task.json +#. Option for the 'Status' (Select) field in PageType 'CRM Call Log' +#. Option for the 'Status' (Select) field in PageType 'CRM Task' +#: crm/fcrm/pagetype/crm_call_log/crm_call_log.json +#: crm/fcrm/pagetype/crm_task/crm_task.json msgid "Canceled" msgstr "Cancelado" @@ -1094,7 +1094,7 @@ msgstr "Cancelado" msgid "Cannot change role of user with Admin access" msgstr "" -#: crm/fcrm/doctype/fcrm_settings/fcrm_settings.py:34 +#: crm/fcrm/pagetype/fcrm_settings/fcrm_settings.py:34 msgid "Cannot delete standard items {0}" msgstr "" @@ -1189,8 +1189,8 @@ msgstr "Borrar Asignación" msgid "Clear Sort" msgstr "" -#. Label of the clear_table (Button) field in DocType 'CRM Holiday List' -#: crm/fcrm/doctype/crm_holiday_list/crm_holiday_list.json +#. Label of the clear_table (Button) field in PageType 'CRM Holiday List' +#: crm/fcrm/pagetype/crm_holiday_list/crm_holiday_list.json msgid "Clear Table" msgstr "Borrar tabla" @@ -1211,8 +1211,8 @@ msgstr "Cerrar" msgid "Close panel" msgstr "" -#. Label of the closed_date (Date) field in DocType 'CRM Deal' -#: crm/fcrm/doctype/crm_deal/crm_deal.json +#. Label of the closed_date (Date) field in PageType 'CRM Deal' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json msgid "Closed Date" msgstr "" @@ -1224,10 +1224,10 @@ msgstr "Colapso" msgid "Collapsible" msgstr "Plegable" -#. Label of the color (Select) field in DocType 'CRM Deal Status' -#. Label of the color (Select) field in DocType 'CRM Lead Status' -#: crm/fcrm/doctype/crm_deal_status/crm_deal_status.json -#: crm/fcrm/doctype/crm_lead_status/crm_lead_status.json +#. Label of the color (Select) field in PageType 'CRM Deal Status' +#. Label of the color (Select) field in PageType 'CRM Lead Status' +#: crm/fcrm/pagetype/crm_deal_status/crm_deal_status.json +#: crm/fcrm/pagetype/crm_lead_status/crm_lead_status.json msgid "Color" msgstr "Color" @@ -1235,20 +1235,20 @@ msgstr "Color" msgid "Column" msgstr "Columna" -#. Label of the column_field (Data) field in DocType 'CRM View Settings' -#: crm/fcrm/doctype/crm_view_settings/crm_view_settings.json +#. Label of the column_field (Data) field in PageType 'CRM View Settings' +#: crm/fcrm/pagetype/crm_view_settings/crm_view_settings.json #: frontend/src/components/Kanban/KanbanSettings.vue:12 msgid "Column Field" msgstr "" -#. Label of the columns (Code) field in DocType 'CRM View Settings' -#: crm/fcrm/doctype/crm_view_settings/crm_view_settings.json +#. Label of the columns (Code) field in PageType 'CRM View Settings' +#: crm/fcrm/pagetype/crm_view_settings/crm_view_settings.json #: frontend/src/components/ColumnSettings.vue:4 msgid "Columns" msgstr "Columnas" -#. Label of the comment (Link) field in DocType 'CRM Notification' -#: crm/fcrm/doctype/crm_notification/crm_notification.json +#. Label of the comment (Link) field in PageType 'CRM Notification' +#: crm/fcrm/pagetype/crm_notification/crm_notification.json #: frontend/src/components/CommentBox.vue:78 #: frontend/src/components/CommunicationArea.vue:16 #: frontend/src/components/Layouts/AppSidebar.vue:579 @@ -1264,20 +1264,20 @@ msgstr "Comentarios" msgid "Common reasons for losing deals" msgstr "" -#. Label of the communication_status (Link) field in DocType 'CRM Deal' -#. Label of the communication_status (Link) field in DocType 'CRM Lead' -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_lead/crm_lead.json +#. Label of the communication_status (Link) field in PageType 'CRM Deal' +#. Label of the communication_status (Link) field in PageType 'CRM Lead' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_lead/crm_lead.json msgid "Communication Status" msgstr "" -#. Label of a shortcut in the Frappe CRM Workspace -#: crm/fcrm/workspace/frappe_crm/frappe_crm.json +#. Label of a shortcut in the Jingrow CRM Workspace +#: crm/fcrm/workspace/jingrow_crm/jingrow_crm.json msgid "Communication Statuses" msgstr "" -#. Label of the erpnext_company (Data) field in DocType 'ERPNext CRM Settings' -#: crm/fcrm/doctype/erpnext_crm_settings/erpnext_crm_settings.json +#. Label of the erpnext_company (Data) field in PageType 'ERPNext CRM Settings' +#: crm/fcrm/pagetype/erpnext_crm_settings/erpnext_crm_settings.json msgid "Company in ERPNext Site" msgstr "" @@ -1285,18 +1285,18 @@ msgstr "" msgid "Complete Registration" msgstr "Registro completo" -#. Option for the 'Status' (Select) field in DocType 'CRM Call Log' -#: crm/fcrm/doctype/crm_call_log/crm_call_log.json +#. Option for the 'Status' (Select) field in PageType 'CRM Call Log' +#: crm/fcrm/pagetype/crm_call_log/crm_call_log.json msgid "Completed" msgstr "Completado" -#. Option for the 'Device' (Select) field in DocType 'CRM Telephony Agent' -#: crm/fcrm/doctype/crm_telephony_agent/crm_telephony_agent.json +#. Option for the 'Device' (Select) field in PageType 'CRM Telephony Agent' +#: crm/fcrm/pagetype/crm_telephony_agent/crm_telephony_agent.json msgid "Computer" msgstr "Computadora" -#. Label of the condition (Code) field in DocType 'CRM Service Level Agreement' -#: crm/fcrm/doctype/crm_service_level_agreement/crm_service_level_agreement.json +#. Label of the condition (Code) field in PageType 'CRM Service Level Agreement' +#: crm/fcrm/pagetype/crm_service_level_agreement/crm_service_level_agreement.json msgid "Condition" msgstr "Condición" @@ -1354,17 +1354,17 @@ msgstr "" msgid "Connect your email" msgstr "" -#. Label of the contact (Link) field in DocType 'CRM Contacts' -#. Label of the contact (Link) field in DocType 'CRM Deal' -#: crm/fcrm/doctype/crm_contacts/crm_contacts.json -#: crm/fcrm/doctype/crm_deal/crm_deal.json +#. Label of the contact (Link) field in PageType 'CRM Contacts' +#. Label of the contact (Link) field in PageType 'CRM Deal' +#: crm/fcrm/pagetype/crm_contacts/crm_contacts.json +#: crm/fcrm/pagetype/crm_deal/crm_deal.json #: frontend/src/components/Layouts/AppSidebar.vue:552 #: frontend/src/components/Modals/ConvertToDealModal.vue:51 #: frontend/src/pages/MobileLead.vue:145 msgid "Contact" msgstr "Contacto" -#: crm/fcrm/doctype/crm_lead/crm_lead.py:212 +#: crm/fcrm/pagetype/crm_lead/crm_lead.py:212 msgid "Contact Already Exists" msgstr "" @@ -1384,7 +1384,7 @@ msgstr "" msgid "Contact already added" msgstr "" -#: crm/fcrm/doctype/crm_lead/crm_lead.py:211 +#: crm/fcrm/pagetype/crm_lead/crm_lead.py:211 msgid "Contact already exists with {0}" msgstr "" @@ -1405,18 +1405,18 @@ msgstr "" msgid "Contact updated" msgstr "" -#. Label of the contacts_tab (Tab Break) field in DocType 'CRM Deal' -#. Label of the contacts (Table) field in DocType 'CRM Deal' -#. Label of a shortcut in the Frappe CRM Workspace -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/workspace/frappe_crm/frappe_crm.json +#. Label of the contacts_tab (Tab Break) field in PageType 'CRM Deal' +#. Label of the contacts (Table) field in PageType 'CRM Deal' +#. Label of a shortcut in the Jingrow CRM Workspace +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/workspace/jingrow_crm/jingrow_crm.json #: frontend/src/pages/Contact.vue:234 frontend/src/pages/MobileContact.vue:212 #: frontend/src/pages/MobileOrganization.vue:331 msgid "Contacts" msgstr "Contactos" -#. Label of the content (Text Editor) field in DocType 'FCRM Note' -#: crm/fcrm/doctype/fcrm_note/fcrm_note.json +#. Label of the content (Text Editor) field in PageType 'FCRM Note' +#: crm/fcrm/pagetype/fcrm_note/fcrm_note.json #: frontend/src/components/Modals/NoteModal.vue:33 #: frontend/src/components/Settings/EmailTemplate/EditEmailTemplate.vue:89 #: frontend/src/components/Settings/EmailTemplate/EditEmailTemplate.vue:102 @@ -1456,8 +1456,8 @@ msgstr "" msgid "Convert to Deal" msgstr "" -#. Label of the converted (Check) field in DocType 'CRM Lead' -#: crm/fcrm/doctype/crm_lead/crm_lead.json +#. Label of the converted (Check) field in PageType 'CRM Lead' +#: crm/fcrm/pagetype/crm_lead/crm_lead.json msgid "Converted" msgstr "Convertido" @@ -1533,9 +1533,9 @@ msgstr "" msgid "Create an event" msgstr "" -#. Label of the create_customer_on_status_change (Check) field in DocType +#. Label of the create_customer_on_status_change (Check) field in PageType #. 'ERPNext CRM Settings' -#: crm/fcrm/doctype/erpnext_crm_settings/erpnext_crm_settings.json +#: crm/fcrm/pagetype/erpnext_crm_settings/erpnext_crm_settings.json msgid "Create customer on status change" msgstr "" @@ -1560,13 +1560,13 @@ msgstr "" msgid "Create your first task" msgstr "" -#. Label of the currency (Link) field in DocType 'CRM Deal' -#. Label of the currency (Link) field in DocType 'CRM Organization' -#. Label of the currency (Link) field in DocType 'FCRM Settings' -#. Label of the currency_tab (Tab Break) field in DocType 'FCRM Settings' -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_organization/crm_organization.json -#: crm/fcrm/doctype/fcrm_settings/fcrm_settings.json +#. Label of the currency (Link) field in PageType 'CRM Deal' +#. Label of the currency (Link) field in PageType 'CRM Organization' +#. Label of the currency (Link) field in PageType 'FCRM Settings' +#. Label of the currency_tab (Tab Break) field in PageType 'FCRM Settings' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_organization/crm_organization.json +#: crm/fcrm/pagetype/fcrm_settings/fcrm_settings.json #: frontend/src/components/Settings/CurrencySettings.vue:31 msgid "Currency" msgstr "Divisa / Moneda" @@ -1631,13 +1631,13 @@ msgstr "" msgid "Data" msgstr "Datos" -#. Option for the 'Type' (Select) field in DocType 'CRM Fields Layout' -#: crm/fcrm/doctype/crm_fields_layout/crm_fields_layout.json +#. Option for the 'Type' (Select) field in PageType 'CRM Fields Layout' +#: crm/fcrm/pagetype/crm_fields_layout/crm_fields_layout.json msgid "Data Fields" msgstr "" -#. Label of the date (Date) field in DocType 'CRM Holiday' -#: crm/api/dashboard.py:601 crm/fcrm/doctype/crm_holiday/crm_holiday.json +#. Label of the date (Date) field in PageType 'CRM Holiday' +#: crm/api/dashboard.py:601 crm/fcrm/pagetype/crm_holiday/crm_holiday.json #: frontend/src/components/Calendar/CalendarEventPanel.vue:202 msgid "Date" msgstr "Fecha" @@ -1660,23 +1660,23 @@ msgstr "" msgid "Deal" msgstr "" -#. Label of the deal_owner (Link) field in DocType 'CRM Deal' -#: crm/fcrm/doctype/crm_deal/crm_deal.json +#. Label of the deal_owner (Link) field in PageType 'CRM Deal' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json msgid "Deal Owner" msgstr "" -#. Label of the deal_status (Link) field in DocType 'ERPNext CRM Settings' -#: crm/fcrm/doctype/erpnext_crm_settings/erpnext_crm_settings.json +#. Label of the deal_status (Link) field in PageType 'ERPNext CRM Settings' +#: crm/fcrm/pagetype/erpnext_crm_settings/erpnext_crm_settings.json msgid "Deal Status" msgstr "" -#. Label of a shortcut in the Frappe CRM Workspace -#: crm/fcrm/workspace/frappe_crm/frappe_crm.json +#. Label of a shortcut in the Jingrow CRM Workspace +#: crm/fcrm/workspace/jingrow_crm/jingrow_crm.json msgid "Deal Statuses" msgstr "" -#. Label of the deal_value (Currency) field in DocType 'CRM Deal' -#: crm/fcrm/doctype/crm_deal/crm_deal.json +#. Label of the deal_value (Currency) field in PageType 'CRM Deal' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json msgid "Deal Value" msgstr "" @@ -1694,8 +1694,8 @@ msgstr "" msgid "Deal value" msgstr "" -#. Label of a shortcut in the Frappe CRM Workspace -#: crm/fcrm/workspace/frappe_crm/frappe_crm.json +#. Label of a shortcut in the Jingrow CRM Workspace +#: crm/fcrm/workspace/jingrow_crm/jingrow_crm.json #: frontend/src/pages/Deal.vue:480 frontend/src/pages/MobileContact.vue:288 #: frontend/src/pages/MobileDeal.vue:384 #: frontend/src/pages/MobileOrganization.vue:325 @@ -1732,8 +1732,8 @@ msgstr "" msgid "Dear {{ lead_name }}, \\n\\nThis is a reminder for the payment of {{ grand_total }}. \\n\\nThanks, \\nFrappé" msgstr "" -#. Label of the default (Check) field in DocType 'CRM Service Level Agreement' -#: crm/fcrm/doctype/crm_service_level_agreement/crm_service_level_agreement.json +#. Label of the default (Check) field in PageType 'CRM Service Level Agreement' +#: crm/fcrm/pagetype/crm_service_level_agreement/crm_service_level_agreement.json msgid "Default" msgstr "Predeterminado" @@ -1745,8 +1745,8 @@ msgstr "Bandeja de entrada predeterminada" msgid "Default Incoming" msgstr "Por defecto entrante" -#. Label of the default_medium (Select) field in DocType 'CRM Telephony Agent' -#: crm/fcrm/doctype/crm_telephony_agent/crm_telephony_agent.json +#. Label of the default_medium (Select) field in PageType 'CRM Telephony Agent' +#: crm/fcrm/pagetype/crm_telephony_agent/crm_telephony_agent.json msgid "Default Medium" msgstr "" @@ -1754,9 +1754,9 @@ msgstr "" msgid "Default Outgoing" msgstr "Predeterminar Saliente" -#. Label of the default_priority (Check) field in DocType 'CRM Service Level +#. Label of the default_priority (Check) field in PageType 'CRM Service Level #. Priority' -#: crm/fcrm/doctype/crm_service_level_priority/crm_service_level_priority.json +#: crm/fcrm/pagetype/crm_service_level_priority/crm_service_level_priority.json msgid "Default Priority" msgstr "Prioridad predeterminada" @@ -1768,7 +1768,7 @@ msgstr "Envío por defecto" msgid "Default Sending and Inbox" msgstr "Bandeja de entrada y envío por defecto" -#: crm/fcrm/doctype/crm_service_level_agreement/crm_service_level_agreement.py:33 +#: crm/fcrm/pagetype/crm_service_level_agreement/crm_service_level_agreement.py:33 msgid "Default Service Level Agreement already exists for {0}" msgstr "" @@ -1788,8 +1788,8 @@ msgstr "" msgid "Default medium" msgstr "" -#: crm/fcrm/doctype/fcrm_settings/fcrm_settings.js:18 -#: crm/fcrm/doctype/fcrm_settings/fcrm_settings.js:30 +#: crm/fcrm/pagetype/fcrm_settings/fcrm_settings.js:18 +#: crm/fcrm/pagetype/fcrm_settings/fcrm_settings.js:30 msgid "Default statuses, custom fields and layouts restored successfully." msgstr "" @@ -1825,7 +1825,7 @@ msgstr "" msgid "Delete" msgstr "Eliminar" -#: crm/fcrm/doctype/fcrm_settings/fcrm_settings.js:26 +#: crm/fcrm/pagetype/fcrm_settings/fcrm_settings.js:26 msgid "Delete & Restore" msgstr "" @@ -1883,14 +1883,14 @@ msgstr "" msgid "Delete {0} items" msgstr "" -#. Label of the description (Text Editor) field in DocType 'CRM Holiday' -#. Label of the description (Text Editor) field in DocType 'CRM Lost Reason' -#. Label of the description (Text Editor) field in DocType 'CRM Product' -#. Label of the description (Text Editor) field in DocType 'CRM Task' -#: crm/fcrm/doctype/crm_holiday/crm_holiday.json -#: crm/fcrm/doctype/crm_lost_reason/crm_lost_reason.json -#: crm/fcrm/doctype/crm_product/crm_product.json -#: crm/fcrm/doctype/crm_task/crm_task.json +#. Label of the description (Text Editor) field in PageType 'CRM Holiday' +#. Label of the description (Text Editor) field in PageType 'CRM Lost Reason' +#. Label of the description (Text Editor) field in PageType 'CRM Product' +#. Label of the description (Text Editor) field in PageType 'CRM Task' +#: crm/fcrm/pagetype/crm_holiday/crm_holiday.json +#: crm/fcrm/pagetype/crm_lost_reason/crm_lost_reason.json +#: crm/fcrm/pagetype/crm_product/crm_product.json +#: crm/fcrm/pagetype/crm_task/crm_task.json #: frontend/src/components/Calendar/CalendarEventPanel.vue:152 #: frontend/src/components/Modals/EventModal.vue:134 #: frontend/src/components/Modals/TaskModal.vue:36 @@ -1907,29 +1907,29 @@ msgstr "" msgid "Desk" msgstr "Escritorio" -#. Label of the details (Tab Break) field in DocType 'CRM Lead' -#. Label of the details (Text Editor) field in DocType 'CRM Lead Source' -#: crm/fcrm/doctype/crm_lead/crm_lead.json -#: crm/fcrm/doctype/crm_lead_source/crm_lead_source.json +#. Label of the details (Tab Break) field in PageType 'CRM Lead' +#. Label of the details (Text Editor) field in PageType 'CRM Lead Source' +#: crm/fcrm/pagetype/crm_lead/crm_lead.json +#: crm/fcrm/pagetype/crm_lead_source/crm_lead_source.json #: frontend/src/pages/MobileContact.vue:283 #: frontend/src/pages/MobileDeal.vue:424 frontend/src/pages/MobileLead.vue:331 #: frontend/src/pages/MobileOrganization.vue:320 msgid "Details" msgstr "Detalles" -#. Label of the call_receiving_device (Select) field in DocType 'CRM Telephony +#. Label of the call_receiving_device (Select) field in PageType 'CRM Telephony #. Agent' -#: crm/fcrm/doctype/crm_telephony_agent/crm_telephony_agent.json +#: crm/fcrm/pagetype/crm_telephony_agent/crm_telephony_agent.json #: frontend/src/components/FilesUploader/FilesUploaderArea.vue:39 msgid "Device" msgstr "" -#: crm/fcrm/doctype/crm_form_script/crm_form_script.js:30 +#: crm/fcrm/pagetype/crm_form_script/crm_form_script.js:30 msgid "Disable" msgstr "Desactivar" -#. Label of the disabled (Check) field in DocType 'CRM Product' -#: crm/fcrm/doctype/crm_product/crm_product.json +#. Label of the disabled (Check) field in PageType 'CRM Product' +#: crm/fcrm/pagetype/crm_product/crm_product.json msgid "Disabled" msgstr "Deshabilitado" @@ -1943,27 +1943,27 @@ msgstr "Descartar" msgid "Discard unsaved changes?" msgstr "" -#. Label of the discount_percentage (Percent) field in DocType 'CRM Products' -#: crm/fcrm/doctype/crm_products/crm_products.json +#. Label of the discount_percentage (Percent) field in PageType 'CRM Products' +#: crm/fcrm/pagetype/crm_products/crm_products.json msgid "Discount %" msgstr "Descuento %" -#. Label of the discount_amount (Currency) field in DocType 'CRM Products' -#: crm/fcrm/doctype/crm_products/crm_products.json +#. Label of the discount_amount (Currency) field in PageType 'CRM Products' +#: crm/fcrm/pagetype/crm_products/crm_products.json msgid "Discount Amount" msgstr "Descuento" -#. Label of the dt (Link) field in DocType 'CRM Form Script' -#. Label of the dt (Link) field in DocType 'CRM Global Settings' -#. Label of the dt (Link) field in DocType 'CRM View Settings' -#: crm/fcrm/doctype/crm_form_script/crm_form_script.json -#: crm/fcrm/doctype/crm_global_settings/crm_global_settings.json -#: crm/fcrm/doctype/crm_view_settings/crm_view_settings.json -msgid "DocType" -msgstr "DocType" +#. Label of the dt (Link) field in PageType 'CRM Form Script' +#. Label of the dt (Link) field in PageType 'CRM Global Settings' +#. Label of the dt (Link) field in PageType 'CRM View Settings' +#: crm/fcrm/pagetype/crm_form_script/crm_form_script.json +#: crm/fcrm/pagetype/crm_global_settings/crm_global_settings.json +#: crm/fcrm/pagetype/crm_view_settings/crm_view_settings.json +msgid "PageType" +msgstr "PageType" -#. Label of the dt (Link) field in DocType 'CRM Fields Layout' -#: crm/fcrm/doctype/crm_fields_layout/crm_fields_layout.json +#. Label of the dt (Link) field in PageType 'CRM Fields Layout' +#: crm/fcrm/pagetype/crm_fields_layout/crm_fields_layout.json msgid "Document Type" msgstr "Tipo de Documento" @@ -1983,8 +1983,8 @@ msgstr "" msgid "Documentation" msgstr "Documentación" -#. Option for the 'Status' (Select) field in DocType 'CRM Task' -#: crm/fcrm/doctype/crm_task/crm_task.json +#. Option for the 'Status' (Select) field in PageType 'CRM Task' +#: crm/fcrm/pagetype/crm_task/crm_task.json msgid "Done" msgstr "Hecho" @@ -2006,13 +2006,13 @@ msgstr "Arrastre y suelte los archivos aquí o súbelos desde" msgid "Drop files here" msgstr "Soltar archivos aquí" -#. Label of the dropdown_items_tab (Tab Break) field in DocType 'FCRM Settings' -#: crm/fcrm/doctype/fcrm_settings/fcrm_settings.json +#. Label of the dropdown_items_tab (Tab Break) field in PageType 'FCRM Settings' +#: crm/fcrm/pagetype/fcrm_settings/fcrm_settings.json msgid "Dropdown Items" msgstr "" -#. Label of the due_date (Datetime) field in DocType 'CRM Task' -#: crm/fcrm/doctype/crm_task/crm_task.json +#. Label of the due_date (Datetime) field in PageType 'CRM Task' +#: crm/fcrm/pagetype/crm_task/crm_task.json msgid "Due Date" msgstr "Fecha de vencimiento" @@ -2048,10 +2048,10 @@ msgstr "" msgid "Duplicate template" msgstr "" -#. Label of the duration (Duration) field in DocType 'CRM Call Log' -#. Label of the duration (Duration) field in DocType 'CRM Status Change Log' -#: crm/fcrm/doctype/crm_call_log/crm_call_log.json -#: crm/fcrm/doctype/crm_status_change_log/crm_status_change_log.json +#. Label of the duration (Duration) field in PageType 'CRM Call Log' +#. Label of the duration (Duration) field in PageType 'CRM Status Change Log' +#: crm/fcrm/pagetype/crm_call_log/crm_call_log.json +#: crm/fcrm/pagetype/crm_status_change_log/crm_status_change_log.json msgid "Duration" msgstr "Duración" @@ -2060,28 +2060,28 @@ msgstr "Duración" msgid "ERPNext" msgstr "" -#. Name of a DocType -#: crm/fcrm/doctype/erpnext_crm_settings/erpnext_crm_settings.json +#. Name of a PageType +#: crm/fcrm/pagetype/erpnext_crm_settings/erpnext_crm_settings.json msgid "ERPNext CRM Settings" msgstr "" -#. Label of the section_break_oubd (Section Break) field in DocType 'ERPNext +#. Label of the section_break_oubd (Section Break) field in PageType 'ERPNext #. CRM Settings' -#: crm/fcrm/doctype/erpnext_crm_settings/erpnext_crm_settings.json +#: crm/fcrm/pagetype/erpnext_crm_settings/erpnext_crm_settings.json msgid "ERPNext Site API's" msgstr "" -#. Label of the erpnext_site_url (Data) field in DocType 'ERPNext CRM Settings' -#: crm/fcrm/doctype/erpnext_crm_settings/erpnext_crm_settings.json +#. Label of the erpnext_site_url (Data) field in PageType 'ERPNext CRM Settings' +#: crm/fcrm/pagetype/erpnext_crm_settings/erpnext_crm_settings.json msgid "ERPNext Site URL" msgstr "" -#: crm/fcrm/doctype/erpnext_crm_settings/erpnext_crm_settings.py:25 +#: crm/fcrm/pagetype/erpnext_crm_settings/erpnext_crm_settings.py:25 msgid "ERPNext is not installed in the current site" msgstr "" -#: crm/fcrm/doctype/erpnext_crm_settings/erpnext_crm_settings.py:98 -#: crm/fcrm/doctype/erpnext_crm_settings/erpnext_crm_settings.py:124 +#: crm/fcrm/pagetype/erpnext_crm_settings/erpnext_crm_settings.py:98 +#: crm/fcrm/pagetype/erpnext_crm_settings/erpnext_crm_settings.py:124 msgid "ERPNext is not integrated with the CRM" msgstr "" @@ -2191,12 +2191,12 @@ msgstr "" msgid "Editing event" msgstr "" -#. Label of the email (Data) field in DocType 'CRM Contacts' -#. Label of the email (Data) field in DocType 'CRM Invitation' -#. Label of the email (Data) field in DocType 'CRM Lead' -#: crm/fcrm/doctype/crm_contacts/crm_contacts.json -#: crm/fcrm/doctype/crm_invitation/crm_invitation.json -#: crm/fcrm/doctype/crm_lead/crm_lead.json frontend/src/pages/Contact.vue:510 +#. Label of the email (Data) field in PageType 'CRM Contacts' +#. Label of the email (Data) field in PageType 'CRM Invitation' +#. Label of the email (Data) field in PageType 'CRM Lead' +#: crm/fcrm/pagetype/crm_contacts/crm_contacts.json +#: crm/fcrm/pagetype/crm_invitation/crm_invitation.json +#: crm/fcrm/pagetype/crm_lead/crm_lead.json frontend/src/pages/Contact.vue:510 #: frontend/src/pages/MobileContact.vue:518 #: frontend/src/pages/MobileOrganization.vue:462 #: frontend/src/pages/MobileOrganization.vue:490 @@ -2213,8 +2213,8 @@ msgstr "" msgid "Email ID is required" msgstr "" -#. Label of the email_sent_at (Datetime) field in DocType 'CRM Invitation' -#: crm/fcrm/doctype/crm_invitation/crm_invitation.json +#. Label of the email_sent_at (Datetime) field in PageType 'CRM Invitation' +#: crm/fcrm/pagetype/crm_invitation/crm_invitation.json msgid "Email Sent At" msgstr "Correo enviado el" @@ -2272,12 +2272,12 @@ msgstr "" msgid "Empty - Choose a field to sort by" msgstr "" -#: crm/fcrm/doctype/crm_form_script/crm_form_script.js:30 +#: crm/fcrm/pagetype/crm_form_script/crm_form_script.js:30 msgid "Enable" msgstr "Habilitar" -#. Label of the enable_forecasting (Check) field in DocType 'FCRM Settings' -#: crm/fcrm/doctype/fcrm_settings/fcrm_settings.json +#. Label of the enable_forecasting (Check) field in PageType 'FCRM Settings' +#: crm/fcrm/pagetype/fcrm_settings/fcrm_settings.json msgid "Enable Forecasting" msgstr "" @@ -2293,18 +2293,18 @@ msgstr "Habilitar correos salientes" msgid "Enable forecasting" msgstr "" -#. Label of the enabled (Check) field in DocType 'CRM Exotel Settings' -#. Label of the enabled (Check) field in DocType 'CRM Form Script' -#. Label of the enabled (Check) field in DocType 'CRM Service Level Agreement' -#. Label of the enabled (Check) field in DocType 'CRM Twilio Settings' -#. Label of the enabled (Check) field in DocType 'ERPNext CRM Settings' -#. Label of the enabled (Check) field in DocType 'Helpdesk CRM Settings' -#: crm/fcrm/doctype/crm_exotel_settings/crm_exotel_settings.json -#: crm/fcrm/doctype/crm_form_script/crm_form_script.json -#: crm/fcrm/doctype/crm_service_level_agreement/crm_service_level_agreement.json -#: crm/fcrm/doctype/crm_twilio_settings/crm_twilio_settings.json -#: crm/fcrm/doctype/erpnext_crm_settings/erpnext_crm_settings.json -#: crm/fcrm/doctype/helpdesk_crm_settings/helpdesk_crm_settings.json +#. Label of the enabled (Check) field in PageType 'CRM Exotel Settings' +#. Label of the enabled (Check) field in PageType 'CRM Form Script' +#. Label of the enabled (Check) field in PageType 'CRM Service Level Agreement' +#. Label of the enabled (Check) field in PageType 'CRM Twilio Settings' +#. Label of the enabled (Check) field in PageType 'ERPNext CRM Settings' +#. Label of the enabled (Check) field in PageType 'Helpdesk CRM Settings' +#: crm/fcrm/pagetype/crm_exotel_settings/crm_exotel_settings.json +#: crm/fcrm/pagetype/crm_form_script/crm_form_script.json +#: crm/fcrm/pagetype/crm_service_level_agreement/crm_service_level_agreement.json +#: crm/fcrm/pagetype/crm_twilio_settings/crm_twilio_settings.json +#: crm/fcrm/pagetype/erpnext_crm_settings/erpnext_crm_settings.json +#: crm/fcrm/pagetype/helpdesk_crm_settings/helpdesk_crm_settings.json #: frontend/src/components/Settings/AssignmentRules/AssignmentRuleView.vue:32 #: frontend/src/components/Settings/AssignmentRules/AssignmentRulesList.vue:21 #: frontend/src/components/Settings/EmailTemplate/EditEmailTemplate.vue:18 @@ -2313,15 +2313,15 @@ msgstr "" msgid "Enabled" msgstr "Habilitado" -#. Label of the end_date (Date) field in DocType 'CRM Service Level Agreement' -#: crm/fcrm/doctype/crm_service_level_agreement/crm_service_level_agreement.json +#. Label of the end_date (Date) field in PageType 'CRM Service Level Agreement' +#: crm/fcrm/pagetype/crm_service_level_agreement/crm_service_level_agreement.json msgid "End Date" msgstr "Fecha Final" -#. Label of the end_time (Datetime) field in DocType 'CRM Call Log' -#. Label of the end_time (Time) field in DocType 'CRM Service Day' -#: crm/fcrm/doctype/crm_call_log/crm_call_log.json -#: crm/fcrm/doctype/crm_service_day/crm_service_day.json +#. Label of the end_time (Datetime) field in PageType 'CRM Call Log' +#. Label of the end_time (Time) field in PageType 'CRM Service Day' +#: crm/fcrm/pagetype/crm_call_log/crm_call_log.json +#: crm/fcrm/pagetype/crm_service_day/crm_service_day.json #: frontend/src/components/Calendar/CalendarEventPanel.vue:242 #: frontend/src/components/Modals/EventModal.vue:112 msgid "End Time" @@ -2362,15 +2362,15 @@ msgstr "" msgid "Error updating field" msgstr "" -#: crm/fcrm/doctype/erpnext_crm_settings/erpnext_crm_settings.py:279 +#: crm/fcrm/pagetype/erpnext_crm_settings/erpnext_crm_settings.py:279 msgid "Error while creating customer in ERPNext, check error log for more details" msgstr "" -#: crm/fcrm/doctype/erpnext_crm_settings/erpnext_crm_settings.py:191 +#: crm/fcrm/pagetype/erpnext_crm_settings/erpnext_crm_settings.py:191 msgid "Error while creating prospect in ERPNext, check error log for more details" msgstr "" -#: crm/fcrm/doctype/erpnext_crm_settings/erpnext_crm_settings.py:117 +#: crm/fcrm/pagetype/erpnext_crm_settings/erpnext_crm_settings.py:117 msgid "Error while fetching customer in ERPNext, check error log for more details" msgstr "" @@ -2395,16 +2395,16 @@ msgstr "Eventos" msgid "Excel" msgstr "Excel" -#. Label of the exchange_rate (Float) field in DocType 'CRM Deal' -#. Label of the exchange_rate (Float) field in DocType 'CRM Organization' -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_organization/crm_organization.json +#. Label of the exchange_rate (Float) field in PageType 'CRM Deal' +#. Label of the exchange_rate (Float) field in PageType 'CRM Organization' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_organization/crm_organization.json msgid "Exchange Rate" msgstr "Tipo de cambio" -#. Label of the exchange_rate_provider_section (Section Break) field in DocType +#. Label of the exchange_rate_provider_section (Section Break) field in PageType #. 'FCRM Settings' -#: crm/fcrm/doctype/fcrm_settings/fcrm_settings.json +#: crm/fcrm/pagetype/fcrm_settings/fcrm_settings.json msgid "Exchange Rate Provider" msgstr "" @@ -2412,12 +2412,12 @@ msgstr "" msgid "Exchange rate provider" msgstr "" -#. Option for the 'Telephony Medium' (Select) field in DocType 'CRM Call Log' -#. Label of the exotel (Check) field in DocType 'CRM Telephony Agent' -#. Option for the 'Default Medium' (Select) field in DocType 'CRM Telephony +#. Option for the 'Telephony Medium' (Select) field in PageType 'CRM Call Log' +#. Label of the exotel (Check) field in PageType 'CRM Telephony Agent' +#. Option for the 'Default Medium' (Select) field in PageType 'CRM Telephony #. Agent' -#: crm/fcrm/doctype/crm_call_log/crm_call_log.json -#: crm/fcrm/doctype/crm_telephony_agent/crm_telephony_agent.json +#: crm/fcrm/pagetype/crm_call_log/crm_call_log.json +#: crm/fcrm/pagetype/crm_telephony_agent/crm_telephony_agent.json #: frontend/src/components/Layouts/AppSidebar.vue:602 #: frontend/src/components/Settings/TelephonySettings.vue:41 #: frontend/src/components/Settings/TelephonySettings.vue:63 @@ -2428,8 +2428,8 @@ msgstr "" msgid "Exotel Exception" msgstr "" -#. Label of the exotel_number (Data) field in DocType 'CRM Telephony Agent' -#: crm/fcrm/doctype/crm_telephony_agent/crm_telephony_agent.json +#. Label of the exotel_number (Data) field in PageType 'CRM Telephony Agent' +#: crm/fcrm/pagetype/crm_telephony_agent/crm_telephony_agent.json msgid "Exotel Number" msgstr "" @@ -2453,26 +2453,26 @@ msgstr "" msgid "Expand" msgstr "Expandir" -#. Label of the expected_closure_date (Date) field in DocType 'CRM Deal' -#: crm/fcrm/doctype/crm_deal/crm_deal.json +#. Label of the expected_closure_date (Date) field in PageType 'CRM Deal' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json msgid "Expected Closure Date" msgstr "" -#: crm/fcrm/doctype/crm_deal/crm_deal.py:173 +#: crm/fcrm/pagetype/crm_deal/crm_deal.py:173 msgid "Expected Closure Date is required." msgstr "" -#. Label of the expected_deal_value (Currency) field in DocType 'CRM Deal' -#: crm/fcrm/doctype/crm_deal/crm_deal.json +#. Label of the expected_deal_value (Currency) field in PageType 'CRM Deal' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json msgid "Expected Deal Value" msgstr "" -#: crm/fcrm/doctype/crm_deal/crm_deal.py:171 +#: crm/fcrm/pagetype/crm_deal/crm_deal.py:171 msgid "Expected Deal Value is required." msgstr "" -#. Option for the 'Status' (Select) field in DocType 'CRM Invitation' -#: crm/fcrm/doctype/crm_invitation/crm_invitation.json +#. Option for the 'Status' (Select) field in PageType 'CRM Invitation' +#: crm/fcrm/pagetype/crm_invitation/crm_invitation.json msgid "Expired" msgstr "Expirado" @@ -2489,22 +2489,22 @@ msgstr "" msgid "Export Type" msgstr "Tipo de Exportación" -#. Name of a DocType -#: crm/fcrm/doctype/fcrm_note/fcrm_note.json +#. Name of a PageType +#: crm/fcrm/pagetype/fcrm_note/fcrm_note.json msgid "FCRM Note" msgstr "" -#. Name of a DocType -#: crm/fcrm/doctype/fcrm_settings/fcrm_settings.json +#. Name of a PageType +#: crm/fcrm/pagetype/fcrm_settings/fcrm_settings.json msgid "FCRM Settings" msgstr "" -#. Option for the 'Status' (Select) field in DocType 'CRM Call Log' -#. Option for the 'SLA Status' (Select) field in DocType 'CRM Deal' -#. Option for the 'SLA Status' (Select) field in DocType 'CRM Lead' -#: crm/fcrm/doctype/crm_call_log/crm_call_log.json -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_lead/crm_lead.json +#. Option for the 'Status' (Select) field in PageType 'CRM Call Log' +#. Option for the 'SLA Status' (Select) field in PageType 'CRM Deal' +#. Option for the 'SLA Status' (Select) field in PageType 'CRM Lead' +#: crm/fcrm/pagetype/crm_call_log/crm_call_log.json +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_lead/crm_lead.json msgid "Failed" msgstr "Falló" @@ -2528,7 +2528,7 @@ msgstr "" msgid "Failed to delete template" msgstr "" -#: crm/fcrm/doctype/fcrm_settings/fcrm_settings.py:205 +#: crm/fcrm/pagetype/fcrm_settings/fcrm_settings.py:205 msgid "Failed to fetch exchange rate from {0} to {1} on {2}. Please check your internet connection or try again later." msgstr "" @@ -2561,8 +2561,8 @@ msgstr "" msgid "Failed to update template" msgstr "" -#. Label of the favicon (Attach) field in DocType 'FCRM Settings' -#: crm/fcrm/doctype/fcrm_settings/fcrm_settings.json +#. Label of the favicon (Attach) field in PageType 'FCRM Settings' +#: crm/fcrm/pagetype/fcrm_settings/fcrm_settings.json #: frontend/src/components/Settings/BrandSettings.vue:87 msgid "Favicon" msgstr "" @@ -2586,23 +2586,23 @@ msgid "File \"{0}\" was skipped because only {1} uploads are allowed" msgstr "" #: frontend/src/components/FilesUploader/FilesUploaderArea.vue:359 -msgid "File \"{0}\" was skipped because only {1} uploads are allowed for DocType \"{2}\"" +msgid "File \"{0}\" was skipped because only {1} uploads are allowed for PageType \"{2}\"" msgstr "" #: frontend/src/components/Filter.vue:6 msgid "Filter" msgstr "Filtrar" -#. Label of the filters (Code) field in DocType 'CRM View Settings' -#. Label of the filters_tab (Tab Break) field in DocType 'CRM View Settings' -#: crm/fcrm/doctype/crm_view_settings/crm_view_settings.json +#. Label of the filters (Code) field in PageType 'CRM View Settings' +#. Label of the filters_tab (Tab Break) field in PageType 'CRM View Settings' +#: crm/fcrm/pagetype/crm_view_settings/crm_view_settings.json msgid "Filters" msgstr "Filtros" -#. Label of the first_name (Data) field in DocType 'CRM Deal' -#. Label of the first_name (Data) field in DocType 'CRM Lead' -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_lead/crm_lead.json +#. Label of the first_name (Data) field in PageType 'CRM Deal' +#. Label of the first_name (Data) field in PageType 'CRM Lead' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_lead/crm_lead.json #: frontend/src/components/ColumnSettings.vue:103 #: frontend/src/components/Filter.vue:57 frontend/src/components/Filter.vue:88 #: frontend/src/components/SortBy.vue:6 frontend/src/components/SortBy.vue:103 @@ -2614,30 +2614,30 @@ msgstr "Primer Nombre" msgid "First Name is mandatory" msgstr "" -#. Label of the first_responded_on (Datetime) field in DocType 'CRM Deal' -#. Label of the first_responded_on (Datetime) field in DocType 'CRM Lead' -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_lead/crm_lead.json +#. Label of the first_responded_on (Datetime) field in PageType 'CRM Deal' +#. Label of the first_responded_on (Datetime) field in PageType 'CRM Lead' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_lead/crm_lead.json msgid "First Responded On" msgstr "Primera respuesta el" -#. Option for the 'SLA Status' (Select) field in DocType 'CRM Deal' -#. Option for the 'SLA Status' (Select) field in DocType 'CRM Lead' -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_lead/crm_lead.json +#. Option for the 'SLA Status' (Select) field in PageType 'CRM Deal' +#. Option for the 'SLA Status' (Select) field in PageType 'CRM Lead' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_lead/crm_lead.json msgid "First Response Due" msgstr "" -#. Label of the first_response_time (Duration) field in DocType 'CRM Service +#. Label of the first_response_time (Duration) field in PageType 'CRM Service #. Level Priority' -#: crm/fcrm/doctype/crm_service_level_priority/crm_service_level_priority.json +#: crm/fcrm/pagetype/crm_service_level_priority/crm_service_level_priority.json msgid "First Response TIme" msgstr "" -#. Label of the first_response_time (Duration) field in DocType 'CRM Deal' -#. Label of the first_response_time (Duration) field in DocType 'CRM Lead' -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_lead/crm_lead.json +#. Label of the first_response_time (Duration) field in PageType 'CRM Deal' +#. Label of the first_response_time (Duration) field in PageType 'CRM Lead' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_lead/crm_lead.json msgid "First Response Time" msgstr "Tiempo de primera respuesta" @@ -2670,66 +2670,66 @@ msgstr "" msgid "Forecasting enabled successfully" msgstr "" -#. Option for the 'Apply To' (Select) field in DocType 'CRM Form Script' -#: crm/fcrm/doctype/crm_form_script/crm_form_script.json +#. Option for the 'Apply To' (Select) field in PageType 'CRM Form Script' +#: crm/fcrm/pagetype/crm_form_script/crm_form_script.json msgid "Form" msgstr "Formulario" -#: crm/fcrm/doctype/erpnext_crm_settings/erpnext_crm_settings.js:19 +#: crm/fcrm/pagetype/erpnext_crm_settings/erpnext_crm_settings.js:19 msgid "Form Script updated successfully" msgstr "" #. Name of a Workspace -#: crm/fcrm/workspace/frappe_crm/frappe_crm.json -msgid "Frappe CRM" +#: crm/fcrm/workspace/jingrow_crm/jingrow_crm.json +msgid "Jingrow CRM" msgstr "" #: frontend/src/components/Layouts/AppSidebar.vue:608 -msgid "Frappe CRM mobile" +msgid "Jingrow CRM mobile" msgstr "" -#. Option for the 'Weekly Off' (Select) field in DocType 'CRM Holiday List' -#. Option for the 'Workday' (Select) field in DocType 'CRM Service Day' -#: crm/fcrm/doctype/crm_holiday_list/crm_holiday_list.json -#: crm/fcrm/doctype/crm_service_day/crm_service_day.json +#. Option for the 'Weekly Off' (Select) field in PageType 'CRM Holiday List' +#. Option for the 'Workday' (Select) field in PageType 'CRM Service Day' +#: crm/fcrm/pagetype/crm_holiday_list/crm_holiday_list.json +#: crm/fcrm/pagetype/crm_service_day/crm_service_day.json msgid "Friday" msgstr "Viernes" -#. Label of the from (Data) field in DocType 'CRM Call Log' -#. Label of the from (Data) field in DocType 'CRM Status Change Log' -#: crm/fcrm/doctype/crm_call_log/crm_call_log.json -#: crm/fcrm/doctype/crm_status_change_log/crm_status_change_log.json +#. Label of the from (Data) field in PageType 'CRM Call Log' +#. Label of the from (Data) field in PageType 'CRM Status Change Log' +#: crm/fcrm/pagetype/crm_call_log/crm_call_log.json +#: crm/fcrm/pagetype/crm_status_change_log/crm_status_change_log.json msgid "From" msgstr "Desde" -#. Label of the from_date (Date) field in DocType 'CRM Holiday List' -#. Label of the from_date (Datetime) field in DocType 'CRM Status Change Log' -#: crm/fcrm/doctype/crm_holiday_list/crm_holiday_list.json -#: crm/fcrm/doctype/crm_status_change_log/crm_status_change_log.json +#. Label of the from_date (Date) field in PageType 'CRM Holiday List' +#. Label of the from_date (Datetime) field in PageType 'CRM Status Change Log' +#: crm/fcrm/pagetype/crm_holiday_list/crm_holiday_list.json +#: crm/fcrm/pagetype/crm_status_change_log/crm_status_change_log.json msgid "From Date" msgstr "Desde la fecha" -#. Label of the from_type (Data) field in DocType 'CRM Status Change Log' -#: crm/fcrm/doctype/crm_status_change_log/crm_status_change_log.json +#. Label of the from_type (Data) field in PageType 'CRM Status Change Log' +#: crm/fcrm/pagetype/crm_status_change_log/crm_status_change_log.json msgid "From Type" msgstr "" -#. Label of the from_user (Link) field in DocType 'CRM Notification' -#: crm/fcrm/doctype/crm_notification/crm_notification.json +#. Label of the from_user (Link) field in PageType 'CRM Notification' +#: crm/fcrm/pagetype/crm_notification/crm_notification.json msgid "From User" msgstr "Del usuario" -#. Option for the 'SLA Status' (Select) field in DocType 'CRM Deal' -#. Option for the 'SLA Status' (Select) field in DocType 'CRM Lead' -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_lead/crm_lead.json +#. Option for the 'SLA Status' (Select) field in PageType 'CRM Deal' +#. Option for the 'SLA Status' (Select) field in PageType 'CRM Lead' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_lead/crm_lead.json msgid "Fulfilled" msgstr "Cumplido" -#. Label of the full_name (Data) field in DocType 'CRM Contacts' -#. Label of the lead_name (Data) field in DocType 'CRM Lead' -#: crm/fcrm/doctype/crm_contacts/crm_contacts.json -#: crm/fcrm/doctype/crm_lead/crm_lead.json +#. Label of the full_name (Data) field in PageType 'CRM Contacts' +#. Label of the lead_name (Data) field in PageType 'CRM Lead' +#: crm/fcrm/pagetype/crm_contacts/crm_contacts.json +#: crm/fcrm/pagetype/crm_lead/crm_lead.json msgid "Full Name" msgstr "Nombre completo" @@ -2742,12 +2742,12 @@ msgstr "" msgid "GMT+5:30" msgstr "" -#. Label of the gender (Link) field in DocType 'CRM Contacts' -#. Label of the gender (Link) field in DocType 'CRM Deal' -#. Label of the gender (Link) field in DocType 'CRM Lead' -#: crm/fcrm/doctype/crm_contacts/crm_contacts.json -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_lead/crm_lead.json +#. Label of the gender (Link) field in PageType 'CRM Contacts' +#. Label of the gender (Link) field in PageType 'CRM Deal' +#. Label of the gender (Link) field in PageType 'CRM Lead' +#: crm/fcrm/pagetype/crm_contacts/crm_contacts.json +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_lead/crm_lead.json msgid "Gender" msgstr "Género" @@ -2771,20 +2771,20 @@ msgstr "" msgid "Go to website" msgstr "" -#. Option for the 'Type' (Select) field in DocType 'CRM Fields Layout' -#: crm/fcrm/doctype/crm_fields_layout/crm_fields_layout.json +#. Option for the 'Type' (Select) field in PageType 'CRM Fields Layout' +#: crm/fcrm/pagetype/crm_fields_layout/crm_fields_layout.json msgid "Grid Row" msgstr "" -#. Label of the group_by_tab (Tab Break) field in DocType 'CRM View Settings' -#: crm/fcrm/doctype/crm_view_settings/crm_view_settings.json +#. Label of the group_by_tab (Tab Break) field in PageType 'CRM View Settings' +#: crm/fcrm/pagetype/crm_view_settings/crm_view_settings.json #: frontend/src/components/ViewControls.vue:379 #: frontend/src/components/ViewControls.vue:611 frontend/src/utils/view.js:16 msgid "Group By" msgstr "Agrupar por" -#. Label of the group_by_field (Data) field in DocType 'CRM View Settings' -#: crm/fcrm/doctype/crm_view_settings/crm_view_settings.json +#. Label of the group_by_field (Data) field in PageType 'CRM View Settings' +#: crm/fcrm/pagetype/crm_view_settings/crm_view_settings.json msgid "Group By Field" msgstr "" @@ -2808,28 +2808,28 @@ msgstr "Ayuda" msgid "Helpdesk" msgstr "" -#. Name of a DocType -#: crm/fcrm/doctype/helpdesk_crm_settings/helpdesk_crm_settings.json +#. Name of a PageType +#: crm/fcrm/pagetype/helpdesk_crm_settings/helpdesk_crm_settings.json msgid "Helpdesk CRM Settings" msgstr "" -#. Label of the helpdesk_site_apis_section (Section Break) field in DocType +#. Label of the helpdesk_site_apis_section (Section Break) field in PageType #. 'Helpdesk CRM Settings' -#: crm/fcrm/doctype/helpdesk_crm_settings/helpdesk_crm_settings.json +#: crm/fcrm/pagetype/helpdesk_crm_settings/helpdesk_crm_settings.json msgid "Helpdesk Site API's" msgstr "" -#. Label of the helpdesk_site_url (Data) field in DocType 'Helpdesk CRM +#. Label of the helpdesk_site_url (Data) field in PageType 'Helpdesk CRM #. Settings' -#: crm/fcrm/doctype/helpdesk_crm_settings/helpdesk_crm_settings.json +#: crm/fcrm/pagetype/helpdesk_crm_settings/helpdesk_crm_settings.json msgid "Helpdesk Site URL" msgstr "" -#: crm/fcrm/doctype/helpdesk_crm_settings/helpdesk_crm_settings.py:18 +#: crm/fcrm/pagetype/helpdesk_crm_settings/helpdesk_crm_settings.py:18 msgid "Helpdesk is not installed in the current site" msgstr "" -#: crm/fcrm/doctype/helpdesk_crm_settings/helpdesk_crm_settings.py:40 +#: crm/fcrm/pagetype/helpdesk_crm_settings/helpdesk_crm_settings.py:40 msgid "Helpdesk is not integrated with the CRM" msgstr "" @@ -2845,8 +2845,8 @@ msgstr "" msgid "Hi John, \\n\\nCan you please provide more details on this..." msgstr "" -#. Label of the hidden (Check) field in DocType 'CRM Dropdown Item' -#: crm/fcrm/doctype/crm_dropdown_item/crm_dropdown_item.json +#. Label of the hidden (Check) field in PageType 'CRM Dropdown Item' +#: crm/fcrm/pagetype/crm_dropdown_item/crm_dropdown_item.json msgid "Hidden" msgstr "Oculto" @@ -2877,26 +2877,26 @@ msgstr "" msgid "Hide preview" msgstr "" -#. Option for the 'Priority' (Select) field in DocType 'CRM Task' -#: crm/fcrm/doctype/crm_task/crm_task.json +#. Option for the 'Priority' (Select) field in PageType 'CRM Task' +#: crm/fcrm/pagetype/crm_task/crm_task.json msgid "High" msgstr "Alto" -#. Label of the holiday_list (Link) field in DocType 'CRM Service Level +#. Label of the holiday_list (Link) field in PageType 'CRM Service Level #. Agreement' -#: crm/fcrm/doctype/crm_service_level_agreement/crm_service_level_agreement.json +#: crm/fcrm/pagetype/crm_service_level_agreement/crm_service_level_agreement.json msgid "Holiday List" msgstr "Lista de festividades" -#. Label of the holiday_list_name (Data) field in DocType 'CRM Holiday List' -#: crm/fcrm/doctype/crm_holiday_list/crm_holiday_list.json +#. Label of the holiday_list_name (Data) field in PageType 'CRM Holiday List' +#: crm/fcrm/pagetype/crm_holiday_list/crm_holiday_list.json msgid "Holiday List Name" msgstr "Nombre de festividad" -#. Label of the holidays_section (Section Break) field in DocType 'CRM Holiday +#. Label of the holidays_section (Section Break) field in PageType 'CRM Holiday #. List' -#. Label of the holidays (Table) field in DocType 'CRM Holiday List' -#: crm/fcrm/doctype/crm_holiday_list/crm_holiday_list.json +#. Label of the holidays (Table) field in PageType 'CRM Holiday List' +#: crm/fcrm/pagetype/crm_holiday_list/crm_holiday_list.json msgid "Holidays" msgstr "Vacaciones" @@ -2914,15 +2914,15 @@ msgstr "" msgid "I understand, add conditions" msgstr "" -#. Label of the id (Data) field in DocType 'CRM Call Log' -#: crm/fcrm/doctype/crm_call_log/crm_call_log.json +#. Label of the id (Data) field in PageType 'CRM Call Log' +#: crm/fcrm/pagetype/crm_call_log/crm_call_log.json msgid "ID" msgstr "Identificador" -#. Label of the icon (Code) field in DocType 'CRM Dropdown Item' -#. Label of the icon (Data) field in DocType 'CRM View Settings' -#: crm/fcrm/doctype/crm_dropdown_item/crm_dropdown_item.json -#: crm/fcrm/doctype/crm_view_settings/crm_view_settings.json +#. Label of the icon (Code) field in PageType 'CRM Dropdown Item' +#. Label of the icon (Data) field in PageType 'CRM View Settings' +#: crm/fcrm/pagetype/crm_dropdown_item/crm_dropdown_item.json +#: crm/fcrm/pagetype/crm_view_settings/crm_view_settings.json msgid "Icon" msgstr "Icono" @@ -2942,10 +2942,10 @@ msgstr "" msgid "If enabled, records can be created from the incoming emails on this account." msgstr "" -#. Label of the image (Attach Image) field in DocType 'CRM Lead' -#. Label of the image (Attach Image) field in DocType 'CRM Product' -#: crm/fcrm/doctype/crm_lead/crm_lead.json -#: crm/fcrm/doctype/crm_product/crm_product.json +#. Label of the image (Attach Image) field in PageType 'CRM Lead' +#. Label of the image (Attach Image) field in PageType 'CRM Product' +#: crm/fcrm/pagetype/crm_lead/crm_lead.json +#: crm/fcrm/pagetype/crm_product/crm_product.json msgid "Image" msgstr "Imagen" @@ -2957,10 +2957,10 @@ msgstr "Imagen" msgid "In" msgstr "En" -#. Option for the 'Status' (Select) field in DocType 'CRM Call Log' -#. Option for the 'Status' (Select) field in DocType 'CRM Task' -#: crm/fcrm/doctype/crm_call_log/crm_call_log.json -#: crm/fcrm/doctype/crm_task/crm_task.json +#. Option for the 'Status' (Select) field in PageType 'CRM Call Log' +#. Option for the 'Status' (Select) field in PageType 'CRM Task' +#: crm/fcrm/pagetype/crm_call_log/crm_call_log.json +#: crm/fcrm/pagetype/crm_task/crm_task.json msgid "In Progress" msgstr "En Progreso" @@ -2976,8 +2976,8 @@ msgstr "" msgid "Inbox" msgstr "Bandeja de entrada" -#. Option for the 'Type' (Select) field in DocType 'CRM Call Log' -#: crm/fcrm/doctype/crm_call_log/crm_call_log.json +#. Option for the 'Type' (Select) field in PageType 'CRM Call Log' +#: crm/fcrm/pagetype/crm_call_log/crm_call_log.json msgid "Incoming" msgstr "Entrante" @@ -2985,24 +2985,24 @@ msgstr "Entrante" msgid "Incoming call..." msgstr "" -#. Label of a shortcut in the Frappe CRM Workspace -#: crm/fcrm/workspace/frappe_crm/frappe_crm.json +#. Label of a shortcut in the Jingrow CRM Workspace +#: crm/fcrm/workspace/jingrow_crm/jingrow_crm.json msgid "Industries" msgstr "" -#. Label of the industry (Link) field in DocType 'CRM Deal' -#. Label of the industry (Data) field in DocType 'CRM Industry' -#. Label of the industry (Link) field in DocType 'CRM Lead' -#. Label of the industry (Link) field in DocType 'CRM Organization' -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_industry/crm_industry.json -#: crm/fcrm/doctype/crm_lead/crm_lead.json -#: crm/fcrm/doctype/crm_organization/crm_organization.json +#. Label of the industry (Link) field in PageType 'CRM Deal' +#. Label of the industry (Data) field in PageType 'CRM Industry' +#. Label of the industry (Link) field in PageType 'CRM Lead' +#. Label of the industry (Link) field in PageType 'CRM Organization' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_industry/crm_industry.json +#: crm/fcrm/pagetype/crm_lead/crm_lead.json +#: crm/fcrm/pagetype/crm_organization/crm_organization.json msgid "Industry" msgstr "Industria" -#. Option for the 'Status' (Select) field in DocType 'CRM Call Log' -#: crm/fcrm/doctype/crm_call_log/crm_call_log.json +#. Option for the 'Status' (Select) field in PageType 'CRM Call Log' +#: crm/fcrm/pagetype/crm_call_log/crm_call_log.json msgid "Initiated" msgstr "Iniciado" @@ -3037,7 +3037,7 @@ msgstr "Integraciones" msgid "Introduction" msgstr "Introducción" -#: crm/fcrm/doctype/crm_twilio_settings/crm_twilio_settings.py:33 +#: crm/fcrm/pagetype/crm_twilio_settings/crm_twilio_settings.py:33 msgid "Invalid Account SID or Auth Token." msgstr "" @@ -3054,7 +3054,7 @@ msgstr "" msgid "Invalid chart name" msgstr "" -#: crm/fcrm/doctype/crm_exotel_settings/crm_exotel_settings.py:25 +#: crm/fcrm/pagetype/crm_exotel_settings/crm_exotel_settings.py:25 msgid "Invalid credentials" msgstr "" @@ -3103,8 +3103,8 @@ msgstr "" msgid "Invite your team" msgstr "" -#. Label of the invited_by (Link) field in DocType 'CRM Invitation' -#: crm/fcrm/doctype/crm_invitation/crm_invitation.json +#. Label of the invited_by (Link) field in PageType 'CRM Invitation' +#: crm/fcrm/pagetype/crm_invitation/crm_invitation.json msgid "Invited By" msgstr "" @@ -3118,59 +3118,59 @@ msgstr "" msgid "Is" msgstr "Es" -#. Label of the is_default (Check) field in DocType 'CRM View Settings' -#: crm/fcrm/doctype/crm_view_settings/crm_view_settings.json +#. Label of the is_default (Check) field in PageType 'CRM View Settings' +#: crm/fcrm/pagetype/crm_view_settings/crm_view_settings.json msgid "Is Default" msgstr "Es por defecto" -#. Label of the is_erpnext_in_different_site (Check) field in DocType 'ERPNext +#. Label of the is_erpnext_in_different_site (Check) field in PageType 'ERPNext #. CRM Settings' -#: crm/fcrm/doctype/erpnext_crm_settings/erpnext_crm_settings.json +#: crm/fcrm/pagetype/erpnext_crm_settings/erpnext_crm_settings.json msgid "Is ERPNext installed on a different site?" msgstr "" -#. Label of the is_group (Check) field in DocType 'CRM Territory' -#: crm/fcrm/doctype/crm_territory/crm_territory.json +#. Label of the is_group (Check) field in PageType 'CRM Territory' +#: crm/fcrm/pagetype/crm_territory/crm_territory.json msgid "Is Group" msgstr "Es un grupo" -#. Label of the is_helpdesk_in_different_site (Check) field in DocType +#. Label of the is_helpdesk_in_different_site (Check) field in PageType #. 'Helpdesk CRM Settings' -#: crm/fcrm/doctype/helpdesk_crm_settings/helpdesk_crm_settings.json +#: crm/fcrm/pagetype/helpdesk_crm_settings/helpdesk_crm_settings.json msgid "Is Helpdesk installed on a different site?" msgstr "" -#. Label of the is_primary (Check) field in DocType 'CRM Contacts' -#. Label of the is_primary (Check) field in DocType 'CRM Telephony Phone' -#: crm/fcrm/doctype/crm_contacts/crm_contacts.json -#: crm/fcrm/doctype/crm_telephony_phone/crm_telephony_phone.json +#. Label of the is_primary (Check) field in PageType 'CRM Contacts' +#. Label of the is_primary (Check) field in PageType 'CRM Telephony Phone' +#: crm/fcrm/pagetype/crm_contacts/crm_contacts.json +#: crm/fcrm/pagetype/crm_telephony_phone/crm_telephony_phone.json msgid "Is Primary" msgstr "Es primaria" -#. Label of the is_standard (Check) field in DocType 'CRM Dropdown Item' -#. Label of the is_standard (Check) field in DocType 'CRM Form Script' -#. Label of the is_standard (Check) field in DocType 'CRM View Settings' -#: crm/fcrm/doctype/crm_dropdown_item/crm_dropdown_item.json -#: crm/fcrm/doctype/crm_form_script/crm_form_script.json -#: crm/fcrm/doctype/crm_view_settings/crm_view_settings.json +#. Label of the is_standard (Check) field in PageType 'CRM Dropdown Item' +#. Label of the is_standard (Check) field in PageType 'CRM Form Script' +#. Label of the is_standard (Check) field in PageType 'CRM View Settings' +#: crm/fcrm/pagetype/crm_dropdown_item/crm_dropdown_item.json +#: crm/fcrm/pagetype/crm_form_script/crm_form_script.json +#: crm/fcrm/pagetype/crm_view_settings/crm_view_settings.json msgid "Is Standard" msgstr "Es estándar" -#. Description of the 'Enable Forecasting' (Check) field in DocType 'FCRM +#. Description of the 'Enable Forecasting' (Check) field in PageType 'FCRM #. Settings' -#: crm/fcrm/doctype/fcrm_settings/fcrm_settings.json +#: crm/fcrm/pagetype/fcrm_settings/fcrm_settings.json msgid "It will make deal's \"Expected Closure Date\" & \"Expected Deal Value\" mandatory to get accurate forecasting insights" msgstr "" -#. Label of the json (JSON) field in DocType 'CRM Global Settings' -#: crm/fcrm/doctype/crm_global_settings/crm_global_settings.json +#. Label of the json (JSON) field in PageType 'CRM Global Settings' +#: crm/fcrm/pagetype/crm_global_settings/crm_global_settings.json msgid "JSON" msgstr "JSON" -#. Label of the job_title (Data) field in DocType 'CRM Deal' -#. Label of the job_title (Data) field in DocType 'CRM Lead' -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_lead/crm_lead.json +#. Label of the job_title (Data) field in PageType 'CRM Deal' +#. Label of the job_title (Data) field in PageType 'CRM Lead' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_lead/crm_lead.json msgid "Job Title" msgstr "Título del trabajo" @@ -3182,20 +3182,20 @@ msgstr "Título del trabajo" msgid "John Doe" msgstr "" -#. Label of the kanban_tab (Tab Break) field in DocType 'CRM View Settings' -#: crm/fcrm/doctype/crm_view_settings/crm_view_settings.json +#. Label of the kanban_tab (Tab Break) field in PageType 'CRM View Settings' +#: crm/fcrm/pagetype/crm_view_settings/crm_view_settings.json #: frontend/src/components/ViewControls.vue:384 #: frontend/src/components/ViewControls.vue:600 frontend/src/utils/view.js:20 msgid "Kanban" msgstr "Kanban" -#. Label of the kanban_columns (Code) field in DocType 'CRM View Settings' -#: crm/fcrm/doctype/crm_view_settings/crm_view_settings.json +#. Label of the kanban_columns (Code) field in PageType 'CRM View Settings' +#: crm/fcrm/pagetype/crm_view_settings/crm_view_settings.json msgid "Kanban Columns" msgstr "" -#. Label of the kanban_fields (Code) field in DocType 'CRM View Settings' -#: crm/fcrm/doctype/crm_view_settings/crm_view_settings.json +#. Label of the kanban_fields (Code) field in PageType 'CRM View Settings' +#: crm/fcrm/pagetype/crm_view_settings/crm_view_settings.json msgid "Kanban Fields" msgstr "" @@ -3204,15 +3204,15 @@ msgstr "" msgid "Kanban Settings" msgstr "Configuración de Kanban" -#. Label of the key (Data) field in DocType 'CRM Invitation' -#: crm/fcrm/doctype/crm_invitation/crm_invitation.json +#. Label of the key (Data) field in PageType 'CRM Invitation' +#: crm/fcrm/pagetype/crm_invitation/crm_invitation.json msgid "Key" msgstr "Clave" -#. Label of the label (Data) field in DocType 'CRM Dropdown Item' -#. Label of the label (Data) field in DocType 'CRM View Settings' -#: crm/fcrm/doctype/crm_dropdown_item/crm_dropdown_item.json -#: crm/fcrm/doctype/crm_view_settings/crm_view_settings.json +#. Label of the label (Data) field in PageType 'CRM Dropdown Item' +#. Label of the label (Data) field in PageType 'CRM View Settings' +#: crm/fcrm/pagetype/crm_dropdown_item/crm_dropdown_item.json +#: crm/fcrm/pagetype/crm_view_settings/crm_view_settings.json #: frontend/src/components/ColumnSettings.vue:100 msgid "Label" msgstr "Etiqueta" @@ -3229,10 +3229,10 @@ msgstr "" msgid "Last Month" msgstr "El mes pasado" -#. Label of the last_name (Data) field in DocType 'CRM Deal' -#. Label of the last_name (Data) field in DocType 'CRM Lead' -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_lead/crm_lead.json +#. Label of the last_name (Data) field in PageType 'CRM Deal' +#. Label of the last_name (Data) field in PageType 'CRM Lead' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_lead/crm_lead.json msgid "Last Name" msgstr "Apellido" @@ -3240,9 +3240,9 @@ msgstr "Apellido" msgid "Last Quarter" msgstr "Último cuarto" -#. Label of the last_status_change_log (Link) field in DocType 'CRM Status +#. Label of the last_status_change_log (Link) field in PageType 'CRM Status #. Change Log' -#: crm/fcrm/doctype/crm_status_change_log/crm_status_change_log.json +#: crm/fcrm/pagetype/crm_status_change_log/crm_status_change_log.json msgid "Last Status Change Log" msgstr "" @@ -3270,15 +3270,15 @@ msgstr "" msgid "Last user assigned by this rule" msgstr "" -#. Label of the layout (Code) field in DocType 'CRM Dashboard' -#. Label of the layout (Code) field in DocType 'CRM Fields Layout' -#: crm/fcrm/doctype/crm_dashboard/crm_dashboard.json -#: crm/fcrm/doctype/crm_fields_layout/crm_fields_layout.json +#. Label of the layout (Code) field in PageType 'CRM Dashboard' +#. Label of the layout (Code) field in PageType 'CRM Fields Layout' +#: crm/fcrm/pagetype/crm_dashboard/crm_dashboard.json +#: crm/fcrm/pagetype/crm_fields_layout/crm_fields_layout.json msgid "Layout" msgstr "" -#. Label of the lead (Link) field in DocType 'CRM Deal' -#: crm/fcrm/doctype/crm_deal/crm_deal.json +#. Label of the lead (Link) field in PageType 'CRM Deal' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json #: frontend/src/components/Calendar/CalendarEventPanel.vue:263 #: frontend/src/components/Calendar/CalendarEventPanel.vue:288 #: frontend/src/components/Layouts/AppSidebar.vue:550 @@ -3291,32 +3291,32 @@ msgstr "" msgid "Lead" msgstr "Iniciativa" -#. Label of the lead_details_tab (Tab Break) field in DocType 'CRM Deal' -#: crm/fcrm/doctype/crm_deal/crm_deal.json +#. Label of the lead_details_tab (Tab Break) field in PageType 'CRM Deal' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json msgid "Lead Details" msgstr "Detalle de Iniciativas" -#. Label of the lead_name (Data) field in DocType 'CRM Deal' -#: crm/fcrm/doctype/crm_deal/crm_deal.json +#. Label of the lead_name (Data) field in PageType 'CRM Deal' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json msgid "Lead Name" msgstr "Nombre de la iniciativa" -#. Label of the lead_owner (Link) field in DocType 'CRM Lead' -#: crm/fcrm/doctype/crm_lead/crm_lead.json +#. Label of the lead_owner (Link) field in PageType 'CRM Lead' +#: crm/fcrm/pagetype/crm_lead/crm_lead.json msgid "Lead Owner" msgstr "Propietario de la iniciativa" -#: crm/fcrm/doctype/crm_lead/crm_lead.py:73 +#: crm/fcrm/pagetype/crm_lead/crm_lead.py:73 msgid "Lead Owner cannot be same as the Lead Email Address" msgstr "" -#. Label of a shortcut in the Frappe CRM Workspace -#: crm/fcrm/workspace/frappe_crm/frappe_crm.json +#. Label of a shortcut in the Jingrow CRM Workspace +#: crm/fcrm/workspace/jingrow_crm/jingrow_crm.json msgid "Lead Sources" msgstr "" -#. Label of a shortcut in the Frappe CRM Workspace -#: crm/fcrm/workspace/frappe_crm/frappe_crm.json +#. Label of a shortcut in the Jingrow CRM Workspace +#: crm/fcrm/workspace/jingrow_crm/jingrow_crm.json msgid "Lead Statuses" msgstr "" @@ -3328,8 +3328,8 @@ msgstr "" msgid "Lead to deal conversion pipeline" msgstr "" -#. Label of a shortcut in the Frappe CRM Workspace -#: crm/fcrm/workspace/frappe_crm/frappe_crm.json +#. Label of a shortcut in the Jingrow CRM Workspace +#: crm/fcrm/workspace/jingrow_crm/jingrow_crm.json #: frontend/src/pages/InvalidPage.vue:9 frontend/src/pages/Lead.vue:340 #: frontend/src/pages/MobileLead.vue:291 msgid "Leads" @@ -3345,8 +3345,8 @@ msgstr "" msgid "Learn about conditions" msgstr "" -#. Label of the lft (Int) field in DocType 'CRM Territory' -#: crm/fcrm/doctype/crm_territory/crm_territory.json +#. Label of the lft (Int) field in PageType 'CRM Territory' +#: crm/fcrm/pagetype/crm_territory/crm_territory.json msgid "Left" msgstr "Inactivo/Fuera" @@ -3367,15 +3367,15 @@ msgstr "Como" msgid "Link" msgstr "Enlace" -#. Label of the links (Table) field in DocType 'CRM Call Log' -#: crm/fcrm/doctype/crm_call_log/crm_call_log.json +#. Label of the links (Table) field in PageType 'CRM Call Log' +#: crm/fcrm/pagetype/crm_call_log/crm_call_log.json msgid "Links" msgstr "Enlaces" -#. Option for the 'Apply To' (Select) field in DocType 'CRM Form Script' -#. Label of the list_tab (Tab Break) field in DocType 'CRM View Settings' -#: crm/fcrm/doctype/crm_form_script/crm_form_script.json -#: crm/fcrm/doctype/crm_view_settings/crm_view_settings.json +#. Option for the 'Apply To' (Select) field in PageType 'CRM Form Script' +#. Label of the list_tab (Tab Break) field in PageType 'CRM View Settings' +#: crm/fcrm/pagetype/crm_form_script/crm_form_script.json +#: crm/fcrm/pagetype/crm_view_settings/crm_view_settings.json #: frontend/src/components/ViewControls.vue:374 #: frontend/src/components/ViewControls.vue:589 frontend/src/utils/view.js:12 msgid "List" @@ -3385,9 +3385,9 @@ msgstr "Lista" msgid "Listen" msgstr "" -#. Label of the load_default_columns (Check) field in DocType 'CRM View +#. Label of the load_default_columns (Check) field in PageType 'CRM View #. Settings' -#: crm/fcrm/doctype/crm_view_settings/crm_view_settings.json +#: crm/fcrm/pagetype/crm_view_settings/crm_view_settings.json msgid "Load Default Columns" msgstr "" @@ -3403,10 +3403,10 @@ msgstr "Carga más" msgid "Loading..." msgstr "Cargando..." -#. Label of the log_tab (Tab Break) field in DocType 'CRM Deal' -#. Label of the log_tab (Tab Break) field in DocType 'CRM Lead' -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_lead/crm_lead.json +#. Label of the log_tab (Tab Break) field in PageType 'CRM Deal' +#. Label of the log_tab (Tab Break) field in PageType 'CRM Lead' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_lead/crm_lead.json msgid "Log" msgstr "Registro" @@ -3417,28 +3417,28 @@ msgid "Log a Call" msgstr "" #: frontend/src/composables/frappecloud.js:23 -msgid "Login to Frappe Cloud?" -msgstr "¿Iniciar sesión en Frappe Cloud?" +msgid "Login to Jingrow Cloud?" +msgstr "¿Iniciar sesión en Jingrow Cloud?" -#. Label of the brand_logo (Attach) field in DocType 'FCRM Settings' -#: crm/fcrm/doctype/fcrm_settings/fcrm_settings.json +#. Label of the brand_logo (Attach) field in PageType 'FCRM Settings' +#: crm/fcrm/pagetype/fcrm_settings/fcrm_settings.json msgid "Logo" msgstr "Logo" -#. Option for the 'Type' (Select) field in DocType 'CRM Deal Status' -#: crm/fcrm/doctype/crm_deal_status/crm_deal_status.json +#. Option for the 'Type' (Select) field in PageType 'CRM Deal Status' +#: crm/fcrm/pagetype/crm_deal_status/crm_deal_status.json msgid "Lost" msgstr "Perdido" -#. Label of the lost_notes (Text) field in DocType 'CRM Deal' -#: crm/fcrm/doctype/crm_deal/crm_deal.json +#. Label of the lost_notes (Text) field in PageType 'CRM Deal' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json msgid "Lost Notes" msgstr "" -#. Label of the lost_reason (Link) field in DocType 'CRM Deal' -#. Label of the lost_reason (Data) field in DocType 'CRM Lost Reason' -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_lost_reason/crm_lost_reason.json +#. Label of the lost_reason (Link) field in PageType 'CRM Deal' +#. Label of the lost_reason (Data) field in PageType 'CRM Lost Reason' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_lost_reason/crm_lost_reason.json msgid "Lost Reason" msgstr "Razón de la pérdida" @@ -3464,8 +3464,8 @@ msgstr "" msgid "Lost reason is required" msgstr "" -#. Option for the 'Priority' (Select) field in DocType 'CRM Task' -#: crm/fcrm/doctype/crm_task/crm_task.json +#. Option for the 'Priority' (Select) field in PageType 'CRM Task' +#: crm/fcrm/pagetype/crm_task/crm_task.json msgid "Low" msgstr "Bajo" @@ -3542,8 +3542,8 @@ msgstr "Administrador" msgid "Mandatory field error: {0}" msgstr "" -#. Option for the 'Telephony Medium' (Select) field in DocType 'CRM Call Log' -#: crm/fcrm/doctype/crm_call_log/crm_call_log.json +#. Option for the 'Telephony Medium' (Select) field in PageType 'CRM Call Log' +#: crm/fcrm/pagetype/crm_call_log/crm_call_log.json msgid "Manual" msgstr "Manual" @@ -3562,25 +3562,25 @@ msgstr "Maestros" msgid "May 1, 2025" msgstr "" -#. Label of the medium (Data) field in DocType 'CRM Call Log' -#. Option for the 'Priority' (Select) field in DocType 'CRM Task' -#: crm/fcrm/doctype/crm_call_log/crm_call_log.json -#: crm/fcrm/doctype/crm_task/crm_task.json +#. Label of the medium (Data) field in PageType 'CRM Call Log' +#. Option for the 'Priority' (Select) field in PageType 'CRM Task' +#: crm/fcrm/pagetype/crm_call_log/crm_call_log.json +#: crm/fcrm/pagetype/crm_task/crm_task.json msgid "Medium" msgstr "Medio" -#. Option for the 'Type' (Select) field in DocType 'CRM Notification' -#: crm/fcrm/doctype/crm_notification/crm_notification.json +#. Option for the 'Type' (Select) field in PageType 'CRM Notification' +#: crm/fcrm/pagetype/crm_notification/crm_notification.json msgid "Mention" msgstr "Mencionar" -#. Label of the message (HTML Editor) field in DocType 'CRM Notification' -#: crm/fcrm/doctype/crm_notification/crm_notification.json +#. Label of the message (HTML Editor) field in PageType 'CRM Notification' +#: crm/fcrm/pagetype/crm_notification/crm_notification.json msgid "Message" msgstr "Mensaje" -#. Label of the middle_name (Data) field in DocType 'CRM Lead' -#: crm/fcrm/doctype/crm_lead/crm_lead.json +#. Label of the middle_name (Data) field in PageType 'CRM Lead' +#: crm/fcrm/pagetype/crm_lead/crm_lead.json msgid "Middle Name" msgstr "Segundo Nombre" @@ -3588,10 +3588,10 @@ msgstr "Segundo Nombre" msgid "Minimize" msgstr "" -#. Label of the mobile_no (Data) field in DocType 'CRM Contacts' -#. Label of the mobile_no (Data) field in DocType 'CRM Lead' -#: crm/fcrm/doctype/crm_contacts/crm_contacts.json -#: crm/fcrm/doctype/crm_lead/crm_lead.json +#. Label of the mobile_no (Data) field in PageType 'CRM Contacts' +#. Label of the mobile_no (Data) field in PageType 'CRM Lead' +#: crm/fcrm/pagetype/crm_contacts/crm_contacts.json +#: crm/fcrm/pagetype/crm_lead/crm_lead.json msgid "Mobile No" msgstr "Nº Móvil" @@ -3600,8 +3600,8 @@ msgstr "Nº Móvil" msgid "Mobile No should be a number" msgstr "" -#. Label of the mobile_no (Data) field in DocType 'CRM Telephony Agent' -#: crm/fcrm/doctype/crm_telephony_agent/crm_telephony_agent.json +#. Label of the mobile_no (Data) field in PageType 'CRM Telephony Agent' +#: crm/fcrm/pagetype/crm_telephony_agent/crm_telephony_agent.json msgid "Mobile No." msgstr "Nº Móvil." @@ -3623,10 +3623,10 @@ msgstr "" msgid "Mobile no" msgstr "" -#. Option for the 'Weekly Off' (Select) field in DocType 'CRM Holiday List' -#. Option for the 'Workday' (Select) field in DocType 'CRM Service Day' -#: crm/fcrm/doctype/crm_holiday_list/crm_holiday_list.json -#: crm/fcrm/doctype/crm_service_day/crm_service_day.json +#. Option for the 'Weekly Off' (Select) field in PageType 'CRM Holiday List' +#. Option for the 'Workday' (Select) field in PageType 'CRM Service Day' +#: crm/fcrm/pagetype/crm_holiday_list/crm_holiday_list.json +#: crm/fcrm/pagetype/crm_service_day/crm_service_day.json msgid "Monday" msgstr "Lunes" @@ -3658,12 +3658,12 @@ msgstr "" msgid "My Open Deals" msgstr "" -#. Label of the title (Data) field in DocType 'CRM Dashboard' -#. Label of the name1 (Data) field in DocType 'CRM Dropdown Item' -#. Label of the brand_name (Data) field in DocType 'FCRM Settings' -#: crm/fcrm/doctype/crm_dashboard/crm_dashboard.json -#: crm/fcrm/doctype/crm_dropdown_item/crm_dropdown_item.json -#: crm/fcrm/doctype/fcrm_settings/fcrm_settings.json +#. Label of the title (Data) field in PageType 'CRM Dashboard' +#. Label of the name1 (Data) field in PageType 'CRM Dropdown Item' +#. Label of the brand_name (Data) field in PageType 'FCRM Settings' +#: crm/fcrm/pagetype/crm_dashboard/crm_dashboard.json +#: crm/fcrm/pagetype/crm_dropdown_item/crm_dropdown_item.json +#: crm/fcrm/pagetype/fcrm_settings/fcrm_settings.json #: frontend/src/components/Settings/AssignmentRules/AssignmentRuleView.vue:51 #: frontend/src/components/Settings/AssignmentRules/AssignmentRuleView.vue:52 #: frontend/src/components/Settings/EmailTemplate/EditEmailTemplate.vue:39 @@ -3680,10 +3680,10 @@ msgstr "Nombre" msgid "Name is required" msgstr "" -#. Label of the naming_series (Select) field in DocType 'CRM Deal' -#. Label of the naming_series (Select) field in DocType 'CRM Product' -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_product/crm_product.json +#. Label of the naming_series (Select) field in PageType 'CRM Deal' +#. Label of the naming_series (Select) field in PageType 'CRM Product' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_product/crm_product.json msgid "Naming Series" msgstr "Secuencias e identificadores" @@ -3691,15 +3691,15 @@ msgstr "Secuencias e identificadores" msgid "Nested conditions" msgstr "" -#. Label of the net_amount (Currency) field in DocType 'CRM Products' -#: crm/fcrm/doctype/crm_products/crm_products.json +#. Label of the net_amount (Currency) field in PageType 'CRM Products' +#: crm/fcrm/pagetype/crm_products/crm_products.json msgid "Net Amount" msgstr "Importe Neto" -#. Label of the net_total (Currency) field in DocType 'CRM Deal' -#. Label of the net_total (Currency) field in DocType 'CRM Lead' -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_lead/crm_lead.json +#. Label of the net_total (Currency) field in PageType 'CRM Deal' +#. Label of the net_total (Currency) field in PageType 'CRM Lead' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_lead/crm_lead.json msgid "Net Total" msgstr "Total neto" @@ -3814,8 +3814,8 @@ msgstr "" msgid "Next Quarter" msgstr "" -#. Label of the next_step (Data) field in DocType 'CRM Deal' -#: crm/fcrm/doctype/crm_deal/crm_deal.json +#. Label of the next_step (Data) field in PageType 'CRM Deal' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json msgid "Next Step" msgstr "" @@ -3831,8 +3831,8 @@ msgstr "" msgid "No" msgstr "No" -#. Option for the 'Status' (Select) field in DocType 'CRM Call Log' -#: crm/fcrm/doctype/crm_call_log/crm_call_log.json +#. Option for the 'Status' (Select) field in PageType 'CRM Call Log' +#: crm/fcrm/pagetype/crm_call_log/crm_call_log.json msgid "No Answer" msgstr "Sin respuesta" @@ -3930,12 +3930,12 @@ msgstr "" msgid "No {0} Found" msgstr "Ningún {0} encontrado" -#. Label of the no_of_employees (Select) field in DocType 'CRM Deal' -#. Label of the no_of_employees (Select) field in DocType 'CRM Lead' -#. Label of the no_of_employees (Select) field in DocType 'CRM Organization' -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_lead/crm_lead.json -#: crm/fcrm/doctype/crm_organization/crm_organization.json +#. Label of the no_of_employees (Select) field in PageType 'CRM Deal' +#. Label of the no_of_employees (Select) field in PageType 'CRM Lead' +#. Label of the no_of_employees (Select) field in PageType 'CRM Organization' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_lead/crm_lead.json +#: crm/fcrm/pagetype/crm_organization/crm_organization.json msgid "No. of Employees" msgstr "Núm. de Empleados" @@ -3981,24 +3981,24 @@ msgstr "Diferente a" msgid "Not Saved" msgstr "No guardado" -#: crm/fcrm/doctype/crm_deal/crm_deal.py:272 +#: crm/fcrm/pagetype/crm_deal/crm_deal.py:272 msgid "Not allowed to add contact to Deal" msgstr "" -#: crm/fcrm/doctype/crm_lead/crm_lead.py:408 +#: crm/fcrm/pagetype/crm_lead/crm_lead.py:408 msgid "Not allowed to convert Lead to Deal" msgstr "" -#: crm/fcrm/doctype/crm_deal/crm_deal.py:283 +#: crm/fcrm/pagetype/crm_deal/crm_deal.py:283 msgid "Not allowed to remove contact from Deal" msgstr "" -#: crm/fcrm/doctype/crm_deal/crm_deal.py:294 +#: crm/fcrm/pagetype/crm_deal/crm_deal.py:294 msgid "Not allowed to set primary contact for Deal" msgstr "" -#. Label of the note (Link) field in DocType 'CRM Call Log' -#: crm/fcrm/doctype/crm_call_log/crm_call_log.json +#. Label of the note (Link) field in PageType 'CRM Call Log' +#: crm/fcrm/pagetype/crm_call_log/crm_call_log.json #: frontend/src/components/Layouts/AppSidebar.vue:554 msgid "Note" msgstr "Nota" @@ -4017,21 +4017,21 @@ msgstr "" msgid "Notification" msgstr "Notificación" -#. Label of the notification_text (Text) field in DocType 'CRM Notification' -#: crm/fcrm/doctype/crm_notification/crm_notification.json +#. Label of the notification_text (Text) field in PageType 'CRM Notification' +#: crm/fcrm/pagetype/crm_notification/crm_notification.json msgid "Notification Text" msgstr "" -#. Label of the notification_type_doc (Dynamic Link) field in DocType 'CRM +#. Label of the notification_type_pg (Dynamic Link) field in PageType 'CRM #. Notification' -#: crm/fcrm/doctype/crm_notification/crm_notification.json -msgid "Notification Type Doc" +#: crm/fcrm/pagetype/crm_notification/crm_notification.json +msgid "Notification Type Pg" msgstr "" -#. Label of the notification_type_doctype (Link) field in DocType 'CRM +#. Label of the notification_type_pagetype (Link) field in PageType 'CRM #. Notification' -#: crm/fcrm/doctype/crm_notification/crm_notification.json -msgid "Notification Type Doctype" +#: crm/fcrm/pagetype/crm_notification/crm_notification.json +msgid "Notification Type Pagetype" msgstr "" #: frontend/src/components/Layouts/AppSidebar.vue:13 @@ -4041,8 +4041,8 @@ msgstr "" msgid "Notifications" msgstr "Notificaciones" -#. Label of the number (Data) field in DocType 'CRM Telephony Phone' -#: crm/fcrm/doctype/crm_telephony_phone/crm_telephony_phone.json +#. Label of the number (Data) field in PageType 'CRM Telephony Phone' +#: crm/fcrm/pagetype/crm_telephony_phone/crm_telephony_phone.json msgid "Number" msgstr "Número" @@ -4064,18 +4064,18 @@ msgstr "" msgid "Old Condition" msgstr "" -#. Label of the old_parent (Link) field in DocType 'CRM Territory' -#: crm/fcrm/doctype/crm_territory/crm_territory.json +#. Label of the old_parent (Link) field in PageType 'CRM Territory' +#: crm/fcrm/pagetype/crm_territory/crm_territory.json msgid "Old Parent" msgstr "Antiguo Padre" -#. Option for the 'Type' (Select) field in DocType 'CRM Deal Status' -#: crm/fcrm/doctype/crm_deal_status/crm_deal_status.json +#. Option for the 'Type' (Select) field in PageType 'CRM Deal Status' +#: crm/fcrm/pagetype/crm_deal_status/crm_deal_status.json msgid "On Hold" msgstr "En espera" -#. Option for the 'Type' (Select) field in DocType 'CRM Deal Status' -#: crm/fcrm/doctype/crm_deal_status/crm_deal_status.json +#. Option for the 'Type' (Select) field in PageType 'CRM Deal Status' +#: crm/fcrm/pagetype/crm_deal_status/crm_deal_status.json msgid "Ongoing" msgstr "" @@ -4088,13 +4088,13 @@ msgstr "" msgid "Only image files are allowed" msgstr "" -#: crm/fcrm/doctype/crm_deal/crm_deal.py:60 -#: crm/fcrm/doctype/crm_telephony_agent/crm_telephony_agent.py:23 +#: crm/fcrm/pagetype/crm_deal/crm_deal.py:60 +#: crm/fcrm/pagetype/crm_telephony_agent/crm_telephony_agent.py:23 msgid "Only one {0} can be set as primary." msgstr "Solo uno {0} se puede establecer como primario." -#. Option for the 'Type' (Select) field in DocType 'CRM Deal Status' -#: crm/fcrm/doctype/crm_deal_status/crm_deal_status.json +#. Option for the 'Type' (Select) field in PageType 'CRM Deal Status' +#: crm/fcrm/pagetype/crm_deal_status/crm_deal_status.json msgid "Open" msgstr "Abrir/Abierto" @@ -4108,13 +4108,13 @@ msgstr "" msgid "Open Lead" msgstr "" -#: crm/fcrm/doctype/crm_deal/crm_deal.js:6 -#: crm/fcrm/doctype/crm_lead/crm_lead.js:6 +#: crm/fcrm/pagetype/crm_deal/crm_deal.js:6 +#: crm/fcrm/pagetype/crm_lead/crm_lead.js:6 msgid "Open in Portal" msgstr "" -#. Label of the open_in_new_window (Check) field in DocType 'CRM Dropdown Item' -#: crm/fcrm/doctype/crm_dropdown_item/crm_dropdown_item.json +#. Label of the open_in_new_window (Check) field in PageType 'CRM Dropdown Item' +#: crm/fcrm/pagetype/crm_dropdown_item/crm_dropdown_item.json msgid "Open in new window" msgstr "" @@ -4136,17 +4136,17 @@ msgstr "Opciones" msgid "Or create leads manually" msgstr "" -#. Label of the order_by_tab (Tab Break) field in DocType 'CRM View Settings' -#. Label of the order_by (Code) field in DocType 'CRM View Settings' -#: crm/fcrm/doctype/crm_view_settings/crm_view_settings.json +#. Label of the order_by_tab (Tab Break) field in PageType 'CRM View Settings' +#. Label of the order_by (Code) field in PageType 'CRM View Settings' +#: crm/fcrm/pagetype/crm_view_settings/crm_view_settings.json msgid "Order By" msgstr "Ordenar por" -#. Label of the organization (Link) field in DocType 'CRM Deal' -#. Label of the organization_tab (Tab Break) field in DocType 'CRM Deal' -#. Label of the organization (Data) field in DocType 'CRM Lead' -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_lead/crm_lead.json +#. Label of the organization (Link) field in PageType 'CRM Deal' +#. Label of the organization_tab (Tab Break) field in PageType 'CRM Deal' +#. Label of the organization (Data) field in PageType 'CRM Lead' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_lead/crm_lead.json #: frontend/src/components/Layouts/AppSidebar.vue:553 #: frontend/src/components/Modals/ConvertToDealModal.vue:25 #: frontend/src/pages/Contact.vue:494 frontend/src/pages/MobileContact.vue:502 @@ -4158,22 +4158,22 @@ msgstr "Ordenar por" msgid "Organization" msgstr "Organización" -#. Label of the organization_details_section (Section Break) field in DocType +#. Label of the organization_details_section (Section Break) field in PageType #. 'CRM Deal' -#: crm/fcrm/doctype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_deal/crm_deal.json msgid "Organization Details" msgstr "" -#. Label of the organization_logo (Attach Image) field in DocType 'CRM +#. Label of the organization_logo (Attach Image) field in PageType 'CRM #. Organization' -#: crm/fcrm/doctype/crm_organization/crm_organization.json +#: crm/fcrm/pagetype/crm_organization/crm_organization.json msgid "Organization Logo" msgstr "" -#. Label of the organization_name (Data) field in DocType 'CRM Deal' -#. Label of the organization_name (Data) field in DocType 'CRM Organization' -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_organization/crm_organization.json +#. Label of the organization_name (Data) field in PageType 'CRM Deal' +#. Label of the organization_name (Data) field in PageType 'CRM Organization' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_organization/crm_organization.json msgid "Organization Name" msgstr "Nombre de la Organización" @@ -4181,8 +4181,8 @@ msgstr "Nombre de la Organización" msgid "Organization logo" msgstr "" -#. Label of a shortcut in the Frappe CRM Workspace -#: crm/fcrm/workspace/frappe_crm/frappe_crm.json +#. Label of a shortcut in the Jingrow CRM Workspace +#: crm/fcrm/workspace/jingrow_crm/jingrow_crm.json #: frontend/src/pages/MobileOrganization.vue:205 #: frontend/src/pages/Organization.vue:234 msgid "Organizations" @@ -4196,8 +4196,8 @@ msgstr "" msgid "Other features" msgstr "" -#. Label of the organization_tab (Tab Break) field in DocType 'CRM Lead' -#: crm/fcrm/doctype/crm_lead/crm_lead.json +#. Label of the organization_tab (Tab Break) field in PageType 'CRM Lead' +#: crm/fcrm/pagetype/crm_lead/crm_lead.json msgid "Others" msgstr "Otros" @@ -4205,13 +4205,13 @@ msgstr "Otros" msgid "Outbound Call" msgstr "" -#. Option for the 'Type' (Select) field in DocType 'CRM Call Log' -#: crm/fcrm/doctype/crm_call_log/crm_call_log.json +#. Option for the 'Type' (Select) field in PageType 'CRM Call Log' +#: crm/fcrm/pagetype/crm_call_log/crm_call_log.json msgid "Outgoing" msgstr "Saliente" -#. Label of the log_owner (Link) field in DocType 'CRM Status Change Log' -#: crm/fcrm/doctype/crm_status_change_log/crm_status_change_log.json +#. Label of the log_owner (Link) field in PageType 'CRM Status Change Log' +#: crm/fcrm/pagetype/crm_status_change_log/crm_status_change_log.json msgid "Owner" msgstr "Propietario" @@ -4219,8 +4219,8 @@ msgstr "Propietario" msgid "Owner: {0}" msgstr "" -#. Label of the parent_crm_territory (Link) field in DocType 'CRM Territory' -#: crm/fcrm/doctype/crm_territory/crm_territory.json +#. Label of the parent_crm_territory (Link) field in PageType 'CRM Territory' +#: crm/fcrm/pagetype/crm_territory/crm_territory.json msgid "Parent CRM Territory" msgstr "" @@ -4251,8 +4251,8 @@ msgstr "" msgid "Payment Reminder from Frappé - (#{{ name }})" msgstr "" -#. Option for the 'Status' (Select) field in DocType 'CRM Invitation' -#: crm/fcrm/doctype/crm_invitation/crm_invitation.json +#. Option for the 'Status' (Select) field in PageType 'CRM Invitation' +#: crm/fcrm/pagetype/crm_invitation/crm_invitation.json msgid "Pending" msgstr "Pendiente" @@ -4264,10 +4264,10 @@ msgstr "" msgid "Period" msgstr "Período" -#. Label of the person_section (Section Break) field in DocType 'CRM Deal' -#. Label of the person_tab (Tab Break) field in DocType 'CRM Lead' -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_lead/crm_lead.json +#. Label of the person_section (Section Break) field in PageType 'CRM Deal' +#. Label of the person_tab (Tab Break) field in PageType 'CRM Lead' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_lead/crm_lead.json msgid "Person" msgstr "" @@ -4275,19 +4275,19 @@ msgstr "" msgid "Personal Settings" msgstr "" -#. Label of the phone (Data) field in DocType 'CRM Contacts' -#. Label of the phone (Data) field in DocType 'CRM Lead' -#. Option for the 'Device' (Select) field in DocType 'CRM Telephony Agent' -#: crm/fcrm/doctype/crm_contacts/crm_contacts.json -#: crm/fcrm/doctype/crm_lead/crm_lead.json -#: crm/fcrm/doctype/crm_telephony_agent/crm_telephony_agent.json +#. Label of the phone (Data) field in PageType 'CRM Contacts' +#. Label of the phone (Data) field in PageType 'CRM Lead' +#. Option for the 'Device' (Select) field in PageType 'CRM Telephony Agent' +#: crm/fcrm/pagetype/crm_contacts/crm_contacts.json +#: crm/fcrm/pagetype/crm_lead/crm_lead.json +#: crm/fcrm/pagetype/crm_telephony_agent/crm_telephony_agent.json #: frontend/src/pages/MobileOrganization.vue:495 #: frontend/src/pages/Organization.vue:516 msgid "Phone" msgstr "Teléfono" -#. Label of the phone_nos (Table) field in DocType 'CRM Telephony Agent' -#: crm/fcrm/doctype/crm_telephony_agent/crm_telephony_agent.json +#. Label of the phone_nos (Table) field in PageType 'CRM Telephony Agent' +#: crm/fcrm/pagetype/crm_telephony_agent/crm_telephony_agent.json msgid "Phone Numbers" msgstr "" @@ -4295,8 +4295,8 @@ msgstr "" msgid "Pin View" msgstr "" -#. Label of the pinned (Check) field in DocType 'CRM View Settings' -#: crm/fcrm/doctype/crm_view_settings/crm_view_settings.json +#. Label of the pinned (Check) field in PageType 'CRM View Settings' +#: crm/fcrm/pagetype/crm_view_settings/crm_view_settings.json msgid "Pinned" msgstr "" @@ -4346,7 +4346,7 @@ msgstr "" msgid "Please select an existing organization" msgstr "" -#: crm/fcrm/doctype/helpdesk_crm_settings/helpdesk_crm_settings.py:126 +#: crm/fcrm/pagetype/helpdesk_crm_settings/helpdesk_crm_settings.py:126 msgid "Please set Email Address" msgstr "Por favor, establece Dirección de correo electrónico" @@ -4354,18 +4354,18 @@ msgstr "Por favor, establece Dirección de correo electrónico" msgid "Please setup Exotel intergration" msgstr "" -#: crm/fcrm/doctype/crm_deal/crm_deal.py:181 +#: crm/fcrm/pagetype/crm_deal/crm_deal.py:181 msgid "Please specify a reason for losing the deal." msgstr "" -#: crm/fcrm/doctype/crm_deal/crm_deal.py:183 +#: crm/fcrm/pagetype/crm_deal/crm_deal.py:183 msgid "Please specify the reason for losing the deal." msgstr "" -#. Label of the position (Int) field in DocType 'CRM Deal Status' -#. Label of the position (Int) field in DocType 'CRM Lead Status' -#: crm/fcrm/doctype/crm_deal_status/crm_deal_status.json -#: crm/fcrm/doctype/crm_lead_status/crm_lead_status.json +#. Label of the position (Int) field in PageType 'CRM Deal Status' +#. Label of the position (Int) field in PageType 'CRM Lead Status' +#: crm/fcrm/pagetype/crm_deal_status/crm_deal_status.json +#: crm/fcrm/pagetype/crm_lead_status/crm_lead_status.json msgid "Position" msgstr "Posición" @@ -4373,18 +4373,18 @@ msgstr "Posición" msgid "Primary" msgstr "Primario" -#. Label of the email (Data) field in DocType 'CRM Deal' -#: crm/fcrm/doctype/crm_deal/crm_deal.json +#. Label of the email (Data) field in PageType 'CRM Deal' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json msgid "Primary Email" msgstr "Correo principal" -#. Label of the mobile_no (Data) field in DocType 'CRM Deal' -#: crm/fcrm/doctype/crm_deal/crm_deal.json +#. Label of the mobile_no (Data) field in PageType 'CRM Deal' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json msgid "Primary Mobile No" msgstr "" -#. Label of the phone (Data) field in DocType 'CRM Deal' -#: crm/fcrm/doctype/crm_deal/crm_deal.json +#. Label of the phone (Data) field in PageType 'CRM Deal' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json msgid "Primary Phone" msgstr "Teléfono principal" @@ -4392,57 +4392,57 @@ msgstr "Teléfono principal" msgid "Primary contact set" msgstr "" -#. Label of the priorities (Table) field in DocType 'CRM Service Level +#. Label of the priorities (Table) field in PageType 'CRM Service Level #. Agreement' -#: crm/fcrm/doctype/crm_service_level_agreement/crm_service_level_agreement.json +#: crm/fcrm/pagetype/crm_service_level_agreement/crm_service_level_agreement.json msgid "Priorities" msgstr "Prioridades" -#. Label of the priority (Link) field in DocType 'CRM Service Level Priority' -#. Label of the priority (Select) field in DocType 'CRM Task' -#: crm/fcrm/doctype/crm_service_level_priority/crm_service_level_priority.json -#: crm/fcrm/doctype/crm_task/crm_task.json +#. Label of the priority (Link) field in PageType 'CRM Service Level Priority' +#. Label of the priority (Select) field in PageType 'CRM Task' +#: crm/fcrm/pagetype/crm_service_level_priority/crm_service_level_priority.json +#: crm/fcrm/pagetype/crm_task/crm_task.json #: frontend/src/components/Settings/AssignmentRules/AssignmentRuleView.vue:64 #: frontend/src/components/Settings/AssignmentRules/AssignmentRulesList.vue:20 msgid "Priority" msgstr "Prioridad" -#. Label of the private (Check) field in DocType 'CRM Dashboard' -#: crm/fcrm/doctype/crm_dashboard/crm_dashboard.json +#. Label of the private (Check) field in PageType 'CRM Dashboard' +#: crm/fcrm/pagetype/crm_dashboard/crm_dashboard.json #: frontend/src/components/FilesUploader/FilesUploaderArea.vue:89 msgid "Private" msgstr "Privado" -#. Label of the probability (Percent) field in DocType 'CRM Deal' -#. Label of the probability (Percent) field in DocType 'CRM Deal Status' -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_deal_status/crm_deal_status.json +#. Label of the probability (Percent) field in PageType 'CRM Deal' +#. Label of the probability (Percent) field in PageType 'CRM Deal Status' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_deal_status/crm_deal_status.json msgid "Probability" msgstr "" -#. Label of the product_code (Link) field in DocType 'CRM Products' -#: crm/fcrm/doctype/crm_products/crm_products.json +#. Label of the product_code (Link) field in PageType 'CRM Products' +#: crm/fcrm/pagetype/crm_products/crm_products.json msgid "Product" msgstr "Producto" -#. Label of the product_code (Data) field in DocType 'CRM Product' -#: crm/fcrm/doctype/crm_product/crm_product.json +#. Label of the product_code (Data) field in PageType 'CRM Product' +#: crm/fcrm/pagetype/crm_product/crm_product.json msgid "Product Code" msgstr "" -#. Label of the product_name (Data) field in DocType 'CRM Product' -#. Label of the product_name (Data) field in DocType 'CRM Products' -#: crm/fcrm/doctype/crm_product/crm_product.json -#: crm/fcrm/doctype/crm_products/crm_products.json +#. Label of the product_name (Data) field in PageType 'CRM Product' +#. Label of the product_name (Data) field in PageType 'CRM Products' +#: crm/fcrm/pagetype/crm_product/crm_product.json +#: crm/fcrm/pagetype/crm_products/crm_products.json msgid "Product Name" msgstr "" -#. Label of the products_tab (Tab Break) field in DocType 'CRM Deal' -#. Label of the products (Table) field in DocType 'CRM Deal' -#. Label of the products_tab (Tab Break) field in DocType 'CRM Lead' -#. Label of the products (Table) field in DocType 'CRM Lead' -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_lead/crm_lead.json +#. Label of the products_tab (Tab Break) field in PageType 'CRM Deal' +#. Label of the products (Table) field in PageType 'CRM Deal' +#. Label of the products_tab (Tab Break) field in PageType 'CRM Lead' +#. Label of the products (Table) field in PageType 'CRM Lead' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_lead/crm_lead.json msgid "Products" msgstr "Productos" @@ -4459,8 +4459,8 @@ msgstr "" msgid "Projected vs actual revenue based on deal probability" msgstr "" -#. Label of the public (Check) field in DocType 'CRM View Settings' -#: crm/fcrm/doctype/crm_view_settings/crm_view_settings.json +#. Label of the public (Check) field in PageType 'CRM View Settings' +#: crm/fcrm/pagetype/crm_view_settings/crm_view_settings.json msgid "Public" msgstr "Público" @@ -4472,23 +4472,23 @@ msgstr "" msgid "Public view" msgstr "" -#. Label of the qty (Float) field in DocType 'CRM Products' -#: crm/fcrm/doctype/crm_products/crm_products.json +#. Label of the qty (Float) field in PageType 'CRM Products' +#: crm/fcrm/pagetype/crm_products/crm_products.json msgid "Quantity" msgstr "Cantidad" -#. Option for the 'Status' (Select) field in DocType 'CRM Call Log' -#: crm/fcrm/doctype/crm_call_log/crm_call_log.json +#. Option for the 'Status' (Select) field in PageType 'CRM Call Log' +#: crm/fcrm/pagetype/crm_call_log/crm_call_log.json msgid "Queued" msgstr "En cola" -#. Option for the 'Type' (Select) field in DocType 'CRM Fields Layout' -#: crm/fcrm/doctype/crm_fields_layout/crm_fields_layout.json +#. Option for the 'Type' (Select) field in PageType 'CRM Fields Layout' +#: crm/fcrm/pagetype/crm_fields_layout/crm_fields_layout.json msgid "Quick Entry" msgstr "Entrada Rápida" -#. Option for the 'Type' (Select) field in DocType 'CRM Global Settings' -#: crm/fcrm/doctype/crm_global_settings/crm_global_settings.json +#. Option for the 'Type' (Select) field in PageType 'CRM Global Settings' +#: crm/fcrm/pagetype/crm_global_settings/crm_global_settings.json msgid "Quick Filters" msgstr "" @@ -4500,13 +4500,13 @@ msgstr "" msgid "Quick entry layout" msgstr "" -#. Label of the rate (Currency) field in DocType 'CRM Products' -#: crm/fcrm/doctype/crm_products/crm_products.json +#. Label of the rate (Currency) field in PageType 'CRM Products' +#: crm/fcrm/pagetype/crm_products/crm_products.json msgid "Rate" msgstr "Precio" -#. Label of the read (Check) field in DocType 'CRM Notification' -#: crm/fcrm/doctype/crm_notification/crm_notification.json +#. Label of the read (Check) field in PageType 'CRM Notification' +#: crm/fcrm/pagetype/crm_notification/crm_notification.json msgid "Read" msgstr "Leer" @@ -4514,48 +4514,48 @@ msgstr "Leer" msgid "Reason" msgstr "Razón" -#. Label of the record_calls (Check) field in DocType 'CRM Twilio Settings' -#: crm/fcrm/doctype/crm_twilio_settings/crm_twilio_settings.json +#. Label of the record_calls (Check) field in PageType 'CRM Twilio Settings' +#: crm/fcrm/pagetype/crm_twilio_settings/crm_twilio_settings.json msgid "Record Calls" msgstr "" -#. Label of the record_call (Check) field in DocType 'CRM Exotel Settings' -#: crm/fcrm/doctype/crm_exotel_settings/crm_exotel_settings.json +#. Label of the record_call (Check) field in PageType 'CRM Exotel Settings' +#: crm/fcrm/pagetype/crm_exotel_settings/crm_exotel_settings.json msgid "Record Outgoing Calls" msgstr "" -#. Label of the recording_url (Data) field in DocType 'CRM Call Log' -#: crm/fcrm/doctype/crm_call_log/crm_call_log.json +#. Label of the recording_url (Data) field in PageType 'CRM Call Log' +#: crm/fcrm/pagetype/crm_call_log/crm_call_log.json msgid "Recording URL" msgstr "URL de grabación" -#. Label of the reference_name (Dynamic Link) field in DocType 'CRM +#. Label of the reference_name (Dynamic Link) field in PageType 'CRM #. Notification' -#. Label of the reference_docname (Dynamic Link) field in DocType 'CRM Task' -#. Label of the reference_docname (Dynamic Link) field in DocType 'FCRM Note' -#: crm/fcrm/doctype/crm_notification/crm_notification.json -#: crm/fcrm/doctype/crm_task/crm_task.json -#: crm/fcrm/doctype/fcrm_note/fcrm_note.json -msgid "Reference Doc" +#. Label of the reference_docname (Dynamic Link) field in PageType 'CRM Task' +#. Label of the reference_docname (Dynamic Link) field in PageType 'FCRM Note' +#: crm/fcrm/pagetype/crm_notification/crm_notification.json +#: crm/fcrm/pagetype/crm_task/crm_task.json +#: crm/fcrm/pagetype/fcrm_note/fcrm_note.json +msgid "Reference Pg" msgstr "" -#. Label of the reference_doctype (Link) field in DocType 'CRM Notification' -#: crm/fcrm/doctype/crm_notification/crm_notification.json -msgid "Reference Doctype" -msgstr "Referencia a 'DocType'" +#. Label of the reference_pagetype (Link) field in PageType 'CRM Notification' +#: crm/fcrm/pagetype/crm_notification/crm_notification.json +msgid "Reference Pagetype" +msgstr "Referencia a 'PageType'" -#. Label of the reference_doctype (Link) field in DocType 'CRM Call Log' -#. Label of the reference_doctype (Link) field in DocType 'CRM Task' -#. Label of the reference_doctype (Link) field in DocType 'FCRM Note' -#: crm/fcrm/doctype/crm_call_log/crm_call_log.json -#: crm/fcrm/doctype/crm_task/crm_task.json -#: crm/fcrm/doctype/fcrm_note/fcrm_note.json +#. Label of the reference_pagetype (Link) field in PageType 'CRM Call Log' +#. Label of the reference_pagetype (Link) field in PageType 'CRM Task' +#. Label of the reference_pagetype (Link) field in PageType 'FCRM Note' +#: crm/fcrm/pagetype/crm_call_log/crm_call_log.json +#: crm/fcrm/pagetype/crm_task/crm_task.json +#: crm/fcrm/pagetype/fcrm_note/fcrm_note.json msgid "Reference Document Type" msgstr "Tipo de Documento de Referencia" -#. Label of the reference_docname (Dynamic Link) field in DocType 'CRM Call +#. Label of the reference_docname (Dynamic Link) field in PageType 'CRM Call #. Log' -#: crm/fcrm/doctype/crm_call_log/crm_call_log.json +#: crm/fcrm/pagetype/crm_call_log/crm_call_log.json msgid "Reference Name" msgstr "Nombre Referencia" @@ -4625,8 +4625,8 @@ msgstr "Responder a todos" msgid "Report an Issue" msgstr "" -#. Option for the 'Type' (Select) field in DocType 'CRM Fields Layout' -#: crm/fcrm/doctype/crm_fields_layout/crm_fields_layout.json +#. Option for the 'Type' (Select) field in PageType 'CRM Fields Layout' +#: crm/fcrm/pagetype/crm_fields_layout/crm_fields_layout.json msgid "Required Fields" msgstr "" @@ -4642,7 +4642,7 @@ msgstr "Reiniciar" msgid "Reset Changes" msgstr "Restablecer Cambios" -#: crm/fcrm/doctype/erpnext_crm_settings/erpnext_crm_settings.js:7 +#: crm/fcrm/pagetype/erpnext_crm_settings/erpnext_crm_settings.js:7 msgid "Reset ERPNext Form Script" msgstr "" @@ -4654,35 +4654,35 @@ msgstr "" msgid "Reset to default" msgstr "Restaurar valores" -#. Label of the response_by (Datetime) field in DocType 'CRM Deal' -#. Label of the response_by (Datetime) field in DocType 'CRM Lead' -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_lead/crm_lead.json +#. Label of the response_by (Datetime) field in PageType 'CRM Deal' +#. Label of the response_by (Datetime) field in PageType 'CRM Lead' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_lead/crm_lead.json msgid "Response By" msgstr "Respuesta por" -#. Label of the response_details_section (Section Break) field in DocType 'CRM +#. Label of the response_details_section (Section Break) field in PageType 'CRM #. Deal' -#. Label of the response_details_section (Section Break) field in DocType 'CRM +#. Label of the response_details_section (Section Break) field in PageType 'CRM #. Lead' -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_lead/crm_lead.json +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_lead/crm_lead.json msgid "Response Details" msgstr "Detalles de respuesta" -#. Label of the section_break_ufaf (Section Break) field in DocType 'CRM +#. Label of the section_break_ufaf (Section Break) field in PageType 'CRM #. Service Level Agreement' -#: crm/fcrm/doctype/crm_service_level_agreement/crm_service_level_agreement.json +#: crm/fcrm/pagetype/crm_service_level_agreement/crm_service_level_agreement.json msgid "Response and Follow Up" msgstr "" -#: crm/fcrm/doctype/fcrm_settings/fcrm_settings.js:14 +#: crm/fcrm/pagetype/fcrm_settings/fcrm_settings.js:14 msgid "Restore" msgstr "Restaurar" -#. Label of the restore_defaults (Button) field in DocType 'FCRM Settings' -#: crm/fcrm/doctype/fcrm_settings/fcrm_settings.js:13 -#: crm/fcrm/doctype/fcrm_settings/fcrm_settings.json +#. Label of the restore_defaults (Button) field in PageType 'FCRM Settings' +#: crm/fcrm/pagetype/fcrm_settings/fcrm_settings.js:13 +#: crm/fcrm/pagetype/fcrm_settings/fcrm_settings.json msgid "Restore Defaults" msgstr "" @@ -4699,13 +4699,13 @@ msgstr "" msgid "Rich Text" msgstr "Texto Enriquecido" -#. Label of the rgt (Int) field in DocType 'CRM Territory' -#: crm/fcrm/doctype/crm_territory/crm_territory.json +#. Label of the rgt (Int) field in PageType 'CRM Territory' +#: crm/fcrm/pagetype/crm_territory/crm_territory.json msgid "Right" msgstr "derecho" -#. Option for the 'Status' (Select) field in DocType 'CRM Call Log' -#: crm/fcrm/doctype/crm_call_log/crm_call_log.json +#. Option for the 'Status' (Select) field in PageType 'CRM Call Log' +#: crm/fcrm/pagetype/crm_call_log/crm_call_log.json msgid "Ringing" msgstr "Zumbido" @@ -4714,55 +4714,55 @@ msgstr "Zumbido" msgid "Ringing..." msgstr "" -#. Label of the role (Select) field in DocType 'CRM Invitation' -#: crm/fcrm/doctype/crm_invitation/crm_invitation.json +#. Label of the role (Select) field in PageType 'CRM Invitation' +#: crm/fcrm/pagetype/crm_invitation/crm_invitation.json #: frontend/src/components/Modals/AddExistingUserModal.vue:46 msgid "Role" msgstr "Rol" -#. Option for the 'Type' (Select) field in DocType 'CRM Dropdown Item' -#. Label of the route (Data) field in DocType 'CRM Dropdown Item' -#: crm/fcrm/doctype/crm_dropdown_item/crm_dropdown_item.json +#. Option for the 'Type' (Select) field in PageType 'CRM Dropdown Item' +#. Label of the route (Data) field in PageType 'CRM Dropdown Item' +#: crm/fcrm/pagetype/crm_dropdown_item/crm_dropdown_item.json msgid "Route" msgstr "Ruta" -#. Label of the route_name (Data) field in DocType 'CRM View Settings' -#: crm/fcrm/doctype/crm_view_settings/crm_view_settings.json +#. Label of the route_name (Data) field in PageType 'CRM View Settings' +#: crm/fcrm/pagetype/crm_view_settings/crm_view_settings.json msgid "Route Name" msgstr "" -#. Label of the rows (Code) field in DocType 'CRM View Settings' -#: crm/fcrm/doctype/crm_view_settings/crm_view_settings.json +#. Label of the rows (Code) field in PageType 'CRM View Settings' +#: crm/fcrm/pagetype/crm_view_settings/crm_view_settings.json msgid "Rows" msgstr "" -#. Label of the sla_tab (Tab Break) field in DocType 'CRM Deal' -#. Label of the sla (Link) field in DocType 'CRM Deal' -#. Label of the sla_tab (Tab Break) field in DocType 'CRM Lead' -#. Label of the sla (Link) field in DocType 'CRM Lead' -#. Label of a shortcut in the Frappe CRM Workspace -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_lead/crm_lead.json -#: crm/fcrm/workspace/frappe_crm/frappe_crm.json +#. Label of the sla_tab (Tab Break) field in PageType 'CRM Deal' +#. Label of the sla (Link) field in PageType 'CRM Deal' +#. Label of the sla_tab (Tab Break) field in PageType 'CRM Lead' +#. Label of the sla (Link) field in PageType 'CRM Lead' +#. Label of a shortcut in the Jingrow CRM Workspace +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_lead/crm_lead.json +#: crm/fcrm/workspace/jingrow_crm/jingrow_crm.json msgid "SLA" msgstr "" -#. Label of the sla_creation (Datetime) field in DocType 'CRM Deal' -#. Label of the sla_creation (Datetime) field in DocType 'CRM Lead' -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_lead/crm_lead.json +#. Label of the sla_creation (Datetime) field in PageType 'CRM Deal' +#. Label of the sla_creation (Datetime) field in PageType 'CRM Lead' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_lead/crm_lead.json msgid "SLA Creation" msgstr "" -#. Label of the sla_name (Data) field in DocType 'CRM Service Level Agreement' -#: crm/fcrm/doctype/crm_service_level_agreement/crm_service_level_agreement.json +#. Label of the sla_name (Data) field in PageType 'CRM Service Level Agreement' +#: crm/fcrm/pagetype/crm_service_level_agreement/crm_service_level_agreement.json msgid "SLA Name" msgstr "" -#. Label of the sla_status (Select) field in DocType 'CRM Deal' -#. Label of the sla_status (Select) field in DocType 'CRM Lead' -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_lead/crm_lead.json +#. Label of the sla_status (Select) field in PageType 'CRM Deal' +#. Label of the sla_status (Select) field in PageType 'CRM Lead' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_lead/crm_lead.json msgid "SLA Status" msgstr "" @@ -4771,57 +4771,57 @@ msgid "SUBJECT" msgstr "" #. Name of a role -#. Option for the 'Role' (Select) field in DocType 'CRM Invitation' -#: crm/fcrm/doctype/crm_call_log/crm_call_log.json -#: crm/fcrm/doctype/crm_communication_status/crm_communication_status.json -#: crm/fcrm/doctype/crm_dashboard/crm_dashboard.json -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_deal_status/crm_deal_status.json -#: crm/fcrm/doctype/crm_exotel_settings/crm_exotel_settings.json -#: crm/fcrm/doctype/crm_form_script/crm_form_script.json -#: crm/fcrm/doctype/crm_global_settings/crm_global_settings.json -#: crm/fcrm/doctype/crm_holiday_list/crm_holiday_list.json -#: crm/fcrm/doctype/crm_industry/crm_industry.json -#: crm/fcrm/doctype/crm_invitation/crm_invitation.json -#: crm/fcrm/doctype/crm_lead/crm_lead.json -#: crm/fcrm/doctype/crm_lead_source/crm_lead_source.json -#: crm/fcrm/doctype/crm_lead_status/crm_lead_status.json -#: crm/fcrm/doctype/crm_lost_reason/crm_lost_reason.json -#: crm/fcrm/doctype/crm_notification/crm_notification.json -#: crm/fcrm/doctype/crm_organization/crm_organization.json -#: crm/fcrm/doctype/crm_service_level_agreement/crm_service_level_agreement.json -#: crm/fcrm/doctype/crm_task/crm_task.json -#: crm/fcrm/doctype/crm_territory/crm_territory.json -#: crm/fcrm/doctype/crm_twilio_settings/crm_twilio_settings.json -#: crm/fcrm/doctype/crm_view_settings/crm_view_settings.json -#: crm/fcrm/doctype/erpnext_crm_settings/erpnext_crm_settings.json -#: crm/fcrm/doctype/fcrm_note/fcrm_note.json -#: crm/fcrm/doctype/fcrm_settings/fcrm_settings.json -#: crm/fcrm/doctype/helpdesk_crm_settings/helpdesk_crm_settings.json +#. Option for the 'Role' (Select) field in PageType 'CRM Invitation' +#: crm/fcrm/pagetype/crm_call_log/crm_call_log.json +#: crm/fcrm/pagetype/crm_communication_status/crm_communication_status.json +#: crm/fcrm/pagetype/crm_dashboard/crm_dashboard.json +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_deal_status/crm_deal_status.json +#: crm/fcrm/pagetype/crm_exotel_settings/crm_exotel_settings.json +#: crm/fcrm/pagetype/crm_form_script/crm_form_script.json +#: crm/fcrm/pagetype/crm_global_settings/crm_global_settings.json +#: crm/fcrm/pagetype/crm_holiday_list/crm_holiday_list.json +#: crm/fcrm/pagetype/crm_industry/crm_industry.json +#: crm/fcrm/pagetype/crm_invitation/crm_invitation.json +#: crm/fcrm/pagetype/crm_lead/crm_lead.json +#: crm/fcrm/pagetype/crm_lead_source/crm_lead_source.json +#: crm/fcrm/pagetype/crm_lead_status/crm_lead_status.json +#: crm/fcrm/pagetype/crm_lost_reason/crm_lost_reason.json +#: crm/fcrm/pagetype/crm_notification/crm_notification.json +#: crm/fcrm/pagetype/crm_organization/crm_organization.json +#: crm/fcrm/pagetype/crm_service_level_agreement/crm_service_level_agreement.json +#: crm/fcrm/pagetype/crm_task/crm_task.json +#: crm/fcrm/pagetype/crm_territory/crm_territory.json +#: crm/fcrm/pagetype/crm_twilio_settings/crm_twilio_settings.json +#: crm/fcrm/pagetype/crm_view_settings/crm_view_settings.json +#: crm/fcrm/pagetype/erpnext_crm_settings/erpnext_crm_settings.json +#: crm/fcrm/pagetype/fcrm_note/fcrm_note.json +#: crm/fcrm/pagetype/fcrm_settings/fcrm_settings.json +#: crm/fcrm/pagetype/helpdesk_crm_settings/helpdesk_crm_settings.json msgid "Sales Manager" msgstr "Gerente de ventas" #. Name of a role -#. Option for the 'Role' (Select) field in DocType 'CRM Invitation' -#: crm/fcrm/doctype/crm_call_log/crm_call_log.json -#: crm/fcrm/doctype/crm_communication_status/crm_communication_status.json -#: crm/fcrm/doctype/crm_dashboard/crm_dashboard.json -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_deal_status/crm_deal_status.json -#: crm/fcrm/doctype/crm_global_settings/crm_global_settings.json -#: crm/fcrm/doctype/crm_holiday_list/crm_holiday_list.json -#: crm/fcrm/doctype/crm_industry/crm_industry.json -#: crm/fcrm/doctype/crm_invitation/crm_invitation.json -#: crm/fcrm/doctype/crm_lead/crm_lead.json -#: crm/fcrm/doctype/crm_lead_source/crm_lead_source.json -#: crm/fcrm/doctype/crm_lead_status/crm_lead_status.json -#: crm/fcrm/doctype/crm_lost_reason/crm_lost_reason.json -#: crm/fcrm/doctype/crm_notification/crm_notification.json -#: crm/fcrm/doctype/crm_organization/crm_organization.json -#: crm/fcrm/doctype/crm_task/crm_task.json -#: crm/fcrm/doctype/crm_territory/crm_territory.json -#: crm/fcrm/doctype/crm_view_settings/crm_view_settings.json -#: crm/fcrm/doctype/fcrm_note/fcrm_note.json +#. Option for the 'Role' (Select) field in PageType 'CRM Invitation' +#: crm/fcrm/pagetype/crm_call_log/crm_call_log.json +#: crm/fcrm/pagetype/crm_communication_status/crm_communication_status.json +#: crm/fcrm/pagetype/crm_dashboard/crm_dashboard.json +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_deal_status/crm_deal_status.json +#: crm/fcrm/pagetype/crm_global_settings/crm_global_settings.json +#: crm/fcrm/pagetype/crm_holiday_list/crm_holiday_list.json +#: crm/fcrm/pagetype/crm_industry/crm_industry.json +#: crm/fcrm/pagetype/crm_invitation/crm_invitation.json +#: crm/fcrm/pagetype/crm_lead/crm_lead.json +#: crm/fcrm/pagetype/crm_lead_source/crm_lead_source.json +#: crm/fcrm/pagetype/crm_lead_status/crm_lead_status.json +#: crm/fcrm/pagetype/crm_lost_reason/crm_lost_reason.json +#: crm/fcrm/pagetype/crm_notification/crm_notification.json +#: crm/fcrm/pagetype/crm_organization/crm_organization.json +#: crm/fcrm/pagetype/crm_task/crm_task.json +#: crm/fcrm/pagetype/crm_territory/crm_territory.json +#: crm/fcrm/pagetype/crm_view_settings/crm_view_settings.json +#: crm/fcrm/pagetype/fcrm_note/fcrm_note.json #: frontend/src/components/Modals/AddExistingUserModal.vue:92 #: frontend/src/components/Settings/InviteUserPage.vue:156 #: frontend/src/components/Settings/InviteUserPage.vue:163 @@ -4845,17 +4845,17 @@ msgstr "" msgid "Salesperson" msgstr "" -#. Label of the salutation (Link) field in DocType 'CRM Deal' -#. Label of the salutation (Link) field in DocType 'CRM Lead' -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_lead/crm_lead.json +#. Label of the salutation (Link) field in PageType 'CRM Deal' +#. Label of the salutation (Link) field in PageType 'CRM Lead' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_lead/crm_lead.json msgid "Salutation" msgstr "Saludo." -#. Option for the 'Weekly Off' (Select) field in DocType 'CRM Holiday List' -#. Option for the 'Workday' (Select) field in DocType 'CRM Service Day' -#: crm/fcrm/doctype/crm_holiday_list/crm_holiday_list.json -#: crm/fcrm/doctype/crm_service_day/crm_service_day.json +#. Option for the 'Weekly Off' (Select) field in PageType 'CRM Holiday List' +#. Option for the 'Workday' (Select) field in PageType 'CRM Service Day' +#: crm/fcrm/pagetype/crm_holiday_list/crm_holiday_list.json +#: crm/fcrm/pagetype/crm_service_day/crm_service_day.json msgid "Saturday" msgstr "Sábado" @@ -4904,8 +4904,8 @@ msgstr "" msgid "Schedule an event" msgstr "" -#. Label of the script (Code) field in DocType 'CRM Form Script' -#: crm/fcrm/doctype/crm_form_script/crm_form_script.json +#. Label of the script (Code) field in PageType 'CRM Form Script' +#: crm/fcrm/pagetype/crm_form_script/crm_form_script.json msgid "Script" msgstr "Script" @@ -4973,18 +4973,18 @@ msgstr "" msgid "Send invites to" msgstr "" -#. Option for the 'Type' (Select) field in DocType 'CRM Dropdown Item' -#: crm/fcrm/doctype/crm_dropdown_item/crm_dropdown_item.json +#. Option for the 'Type' (Select) field in PageType 'CRM Dropdown Item' +#: crm/fcrm/pagetype/crm_dropdown_item/crm_dropdown_item.json msgid "Separator" msgstr "Separador" -#. Label of the naming_series (Select) field in DocType 'CRM Lead' -#: crm/fcrm/doctype/crm_lead/crm_lead.json +#. Label of the naming_series (Select) field in PageType 'CRM Lead' +#: crm/fcrm/pagetype/crm_lead/crm_lead.json msgid "Series" msgstr "Secuencia" -#. Label of the service_provider (Select) field in DocType 'FCRM Settings' -#: crm/fcrm/doctype/fcrm_settings/fcrm_settings.json +#. Label of the service_provider (Select) field in PageType 'FCRM Settings' +#: crm/fcrm/pagetype/fcrm_settings/fcrm_settings.json msgid "Service Provider" msgstr "" @@ -5029,7 +5029,7 @@ msgid "Setting up" msgstr "Puesta en marcha" #: frontend/src/components/Settings/emailConfig.js:145 -msgid "Setting up Frappe Mail requires you to have an API key and API Secret of your email account. Read more " +msgid "Setting up Jingrow Mail requires you to have an API key and API Secret of your email account. Read more " msgstr "" #: frontend/src/components/Settings/emailConfig.js:97 @@ -5062,8 +5062,8 @@ msgid "Setting up Yandex requires you to enable two factor authentication\n" "\t\t and app specific passwords. Read more " msgstr "" -#. Label of the defaults_tab (Tab Break) field in DocType 'FCRM Settings' -#: crm/fcrm/doctype/fcrm_settings/fcrm_settings.json +#. Label of the defaults_tab (Tab Break) field in PageType 'FCRM Settings' +#: crm/fcrm/pagetype/fcrm_settings/fcrm_settings.json #: frontend/src/components/Layouts/AppSidebar.vue:537 #: frontend/src/components/Settings/Settings.vue:12 msgid "Settings" @@ -5073,7 +5073,7 @@ msgstr "Configuración" msgid "Setup Email" msgstr "" -#: crm/fcrm/doctype/fcrm_settings/fcrm_settings.py:199 +#: crm/fcrm/pagetype/fcrm_settings/fcrm_settings.py:199 msgid "Setup the Exchange Rate Provider as 'Exchangerate Host' in settings, as default provider does not support currency conversion for {0} to {1}." msgstr "" @@ -5108,20 +5108,20 @@ msgstr "" msgid "Show preview" msgstr "" -#. Option for the 'Type' (Select) field in DocType 'CRM Fields Layout' -#: crm/fcrm/doctype/crm_fields_layout/crm_fields_layout.json +#. Option for the 'Type' (Select) field in PageType 'CRM Fields Layout' +#: crm/fcrm/pagetype/crm_fields_layout/crm_fields_layout.json msgid "Side Panel" msgstr "" -#. Option for the 'Type' (Select) field in DocType 'CRM Global Settings' -#: crm/fcrm/doctype/crm_global_settings/crm_global_settings.json +#. Option for the 'Type' (Select) field in PageType 'CRM Global Settings' +#: crm/fcrm/pagetype/crm_global_settings/crm_global_settings.json msgid "Sidebar Items" msgstr "Elementos de barra lateral" -#. Description of the 'Condition' (Code) field in DocType 'CRM Service Level +#. Description of the 'Condition' (Code) field in PageType 'CRM Service Level #. Agreement' -#: crm/fcrm/doctype/crm_service_level_agreement/crm_service_level_agreement.json -msgid "Simple Python Expression, Example: doc.status == 'Open' and doc.lead_source == 'Ads'" +#: crm/fcrm/pagetype/crm_service_level_agreement/crm_service_level_agreement.json +msgid "Simple Python Expression, Example: pg.status == 'Open' and pg.lead_source == 'Ads'" msgstr "" #: frontend/src/components/AssignTo.vue:83 @@ -5145,16 +5145,16 @@ msgstr "" msgid "Sort" msgstr "" -#. Label of the source (Link) field in DocType 'CRM Deal' -#. Label of the source (Link) field in DocType 'CRM Lead' -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_lead/crm_lead.json +#. Label of the source (Link) field in PageType 'CRM Deal' +#. Label of the source (Link) field in PageType 'CRM Lead' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_lead/crm_lead.json #: frontend/src/components/Modals/EditValueModal.vue:10 msgid "Source" msgstr "Referencia" -#. Label of the source_name (Data) field in DocType 'CRM Lead Source' -#: crm/fcrm/doctype/crm_lead_source/crm_lead_source.json +#. Label of the source_name (Data) field in PageType 'CRM Lead Source' +#: crm/fcrm/pagetype/crm_lead_source/crm_lead_source.json msgid "Source Name" msgstr "Nombre de la Fuente" @@ -5167,12 +5167,12 @@ msgstr "Espaciador" msgid "Stage" msgstr "" -#: crm/fcrm/doctype/crm_form_script/crm_form_script.js:15 +#: crm/fcrm/pagetype/crm_form_script/crm_form_script.js:15 msgid "Standard Form Scripts can not be modified, duplicate the Form Script instead." msgstr "" -#. Label of the standard_rate (Currency) field in DocType 'CRM Product' -#: crm/fcrm/doctype/crm_product/crm_product.json +#. Label of the standard_rate (Currency) field in PageType 'CRM Product' +#: crm/fcrm/pagetype/crm_product/crm_product.json msgid "Standard Selling Rate" msgstr "Precio de venta estándar" @@ -5180,18 +5180,18 @@ msgstr "Precio de venta estándar" msgid "Standard Views" msgstr "" -#. Label of the start_date (Date) field in DocType 'CRM Service Level +#. Label of the start_date (Date) field in PageType 'CRM Service Level #. Agreement' -#. Label of the start_date (Date) field in DocType 'CRM Task' -#: crm/fcrm/doctype/crm_service_level_agreement/crm_service_level_agreement.json -#: crm/fcrm/doctype/crm_task/crm_task.json +#. Label of the start_date (Date) field in PageType 'CRM Task' +#: crm/fcrm/pagetype/crm_service_level_agreement/crm_service_level_agreement.json +#: crm/fcrm/pagetype/crm_task/crm_task.json msgid "Start Date" msgstr "Fecha de inicio" -#. Label of the start_time (Datetime) field in DocType 'CRM Call Log' -#. Label of the start_time (Time) field in DocType 'CRM Service Day' -#: crm/fcrm/doctype/crm_call_log/crm_call_log.json -#: crm/fcrm/doctype/crm_service_day/crm_service_day.json +#. Label of the start_time (Datetime) field in PageType 'CRM Call Log' +#. Label of the start_time (Time) field in PageType 'CRM Service Day' +#: crm/fcrm/pagetype/crm_call_log/crm_call_log.json +#: crm/fcrm/pagetype/crm_service_day/crm_service_day.json #: frontend/src/components/Calendar/CalendarEventPanel.vue:234 #: frontend/src/components/Modals/EventModal.vue:103 msgid "Start Time" @@ -5205,32 +5205,32 @@ msgstr "" msgid "Start with sample 10 leads" msgstr "" -#. Label of the status (Select) field in DocType 'CRM Call Log' -#. Label of the status (Data) field in DocType 'CRM Communication Status' -#. Label of the status (Link) field in DocType 'CRM Deal' -#. Label of the deal_status (Data) field in DocType 'CRM Deal Status' -#. Label of the status (Select) field in DocType 'CRM Invitation' -#. Label of the status (Link) field in DocType 'CRM Lead' -#. Label of the lead_status (Data) field in DocType 'CRM Lead Status' -#. Label of the status (Select) field in DocType 'CRM Task' -#: crm/fcrm/doctype/crm_call_log/crm_call_log.json -#: crm/fcrm/doctype/crm_communication_status/crm_communication_status.json -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_deal_status/crm_deal_status.json -#: crm/fcrm/doctype/crm_invitation/crm_invitation.json -#: crm/fcrm/doctype/crm_lead/crm_lead.json -#: crm/fcrm/doctype/crm_lead_status/crm_lead_status.json -#: crm/fcrm/doctype/crm_task/crm_task.json frontend/src/pages/Contact.vue:505 +#. Label of the status (Select) field in PageType 'CRM Call Log' +#. Label of the status (Data) field in PageType 'CRM Communication Status' +#. Label of the status (Link) field in PageType 'CRM Deal' +#. Label of the deal_status (Data) field in PageType 'CRM Deal Status' +#. Label of the status (Select) field in PageType 'CRM Invitation' +#. Label of the status (Link) field in PageType 'CRM Lead' +#. Label of the lead_status (Data) field in PageType 'CRM Lead Status' +#. Label of the status (Select) field in PageType 'CRM Task' +#: crm/fcrm/pagetype/crm_call_log/crm_call_log.json +#: crm/fcrm/pagetype/crm_communication_status/crm_communication_status.json +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_deal_status/crm_deal_status.json +#: crm/fcrm/pagetype/crm_invitation/crm_invitation.json +#: crm/fcrm/pagetype/crm_lead/crm_lead.json +#: crm/fcrm/pagetype/crm_lead_status/crm_lead_status.json +#: crm/fcrm/pagetype/crm_task/crm_task.json frontend/src/pages/Contact.vue:505 #: frontend/src/pages/MobileContact.vue:513 #: frontend/src/pages/MobileOrganization.vue:457 #: frontend/src/pages/Organization.vue:478 msgid "Status" msgstr "Estado" -#. Label of the status_change_log (Table) field in DocType 'CRM Deal' -#. Label of the status_change_log (Table) field in DocType 'CRM Lead' -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_lead/crm_lead.json +#. Label of the status_change_log (Table) field in PageType 'CRM Deal' +#. Label of the status_change_log (Table) field in PageType 'CRM Lead' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_lead/crm_lead.json msgid "Status Change Log" msgstr "" @@ -5239,8 +5239,8 @@ msgstr "" msgid "Status is required" msgstr "" -#. Label of the subdomain (Data) field in DocType 'CRM Exotel Settings' -#: crm/fcrm/doctype/crm_exotel_settings/crm_exotel_settings.json +#. Label of the subdomain (Data) field in PageType 'CRM Exotel Settings' +#: crm/fcrm/pagetype/crm_exotel_settings/crm_exotel_settings.json msgid "Subdomain" msgstr "Sub-dominio" @@ -5258,10 +5258,10 @@ msgstr "El Asunto es obligatorio" msgid "Subject: {0}" msgstr "" -#. Option for the 'Weekly Off' (Select) field in DocType 'CRM Holiday List' -#. Option for the 'Workday' (Select) field in DocType 'CRM Service Day' -#: crm/fcrm/doctype/crm_holiday_list/crm_holiday_list.json -#: crm/fcrm/doctype/crm_service_day/crm_service_day.json +#. Option for the 'Weekly Off' (Select) field in PageType 'CRM Holiday List' +#. Option for the 'Workday' (Select) field in PageType 'CRM Service Day' +#: crm/fcrm/pagetype/crm_holiday_list/crm_holiday_list.json +#: crm/fcrm/pagetype/crm_service_day/crm_service_day.json msgid "Sunday" msgstr "Domingo" @@ -5282,21 +5282,21 @@ msgid "System Configuration" msgstr "" #. Name of a role -#. Option for the 'Role' (Select) field in DocType 'CRM Invitation' -#: crm/fcrm/doctype/crm_dashboard/crm_dashboard.json -#: crm/fcrm/doctype/crm_exotel_settings/crm_exotel_settings.json -#: crm/fcrm/doctype/crm_fields_layout/crm_fields_layout.json -#: crm/fcrm/doctype/crm_global_settings/crm_global_settings.json -#: crm/fcrm/doctype/crm_invitation/crm_invitation.json -#: crm/fcrm/doctype/crm_lead_source/crm_lead_source.json -#: crm/fcrm/doctype/crm_lost_reason/crm_lost_reason.json -#: crm/fcrm/doctype/crm_notification/crm_notification.json -#: crm/fcrm/doctype/crm_product/crm_product.json -#: crm/fcrm/doctype/crm_telephony_agent/crm_telephony_agent.json -#: crm/fcrm/doctype/crm_twilio_settings/crm_twilio_settings.json -#: crm/fcrm/doctype/erpnext_crm_settings/erpnext_crm_settings.json -#: crm/fcrm/doctype/fcrm_settings/fcrm_settings.json -#: crm/fcrm/doctype/helpdesk_crm_settings/helpdesk_crm_settings.json +#. Option for the 'Role' (Select) field in PageType 'CRM Invitation' +#: crm/fcrm/pagetype/crm_dashboard/crm_dashboard.json +#: crm/fcrm/pagetype/crm_exotel_settings/crm_exotel_settings.json +#: crm/fcrm/pagetype/crm_fields_layout/crm_fields_layout.json +#: crm/fcrm/pagetype/crm_global_settings/crm_global_settings.json +#: crm/fcrm/pagetype/crm_invitation/crm_invitation.json +#: crm/fcrm/pagetype/crm_lead_source/crm_lead_source.json +#: crm/fcrm/pagetype/crm_lost_reason/crm_lost_reason.json +#: crm/fcrm/pagetype/crm_notification/crm_notification.json +#: crm/fcrm/pagetype/crm_product/crm_product.json +#: crm/fcrm/pagetype/crm_telephony_agent/crm_telephony_agent.json +#: crm/fcrm/pagetype/crm_twilio_settings/crm_twilio_settings.json +#: crm/fcrm/pagetype/erpnext_crm_settings/erpnext_crm_settings.json +#: crm/fcrm/pagetype/fcrm_settings/fcrm_settings.json +#: crm/fcrm/pagetype/helpdesk_crm_settings/helpdesk_crm_settings.json msgid "System Manager" msgstr "Administrador del sistema" @@ -5308,8 +5308,8 @@ msgstr "" msgid "Take a note..." msgstr "" -#. Option for the 'Type' (Select) field in DocType 'CRM Notification' -#: crm/fcrm/doctype/crm_notification/crm_notification.json +#. Option for the 'Type' (Select) field in PageType 'CRM Notification' +#: crm/fcrm/pagetype/crm_notification/crm_notification.json #: frontend/src/components/Layouts/AppSidebar.vue:555 msgid "Task" msgstr "Tarea" @@ -5327,8 +5327,8 @@ msgstr "" msgid "Telephony" msgstr "" -#. Label of the telephony_medium (Select) field in DocType 'CRM Call Log' -#: crm/fcrm/doctype/crm_call_log/crm_call_log.json +#. Label of the telephony_medium (Select) field in PageType 'CRM Call Log' +#: crm/fcrm/pagetype/crm_call_log/crm_call_log.json msgid "Telephony Medium" msgstr "" @@ -5364,27 +5364,27 @@ msgstr "" msgid "Template updated successfully" msgstr "" -#. Label of a shortcut in the Frappe CRM Workspace -#: crm/fcrm/workspace/frappe_crm/frappe_crm.json +#. Label of a shortcut in the Jingrow CRM Workspace +#: crm/fcrm/workspace/jingrow_crm/jingrow_crm.json msgid "Territories" msgstr "" -#. Label of the territory (Link) field in DocType 'CRM Deal' -#. Label of the territory (Link) field in DocType 'CRM Lead' -#. Label of the territory (Link) field in DocType 'CRM Organization' -#: crm/api/dashboard.py:1022 crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_lead/crm_lead.json -#: crm/fcrm/doctype/crm_organization/crm_organization.json +#. Label of the territory (Link) field in PageType 'CRM Deal' +#. Label of the territory (Link) field in PageType 'CRM Lead' +#. Label of the territory (Link) field in PageType 'CRM Organization' +#: crm/api/dashboard.py:1022 crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_lead/crm_lead.json +#: crm/fcrm/pagetype/crm_organization/crm_organization.json msgid "Territory" msgstr "Territorio" -#. Label of the territory_manager (Link) field in DocType 'CRM Territory' -#: crm/fcrm/doctype/crm_territory/crm_territory.json +#. Label of the territory_manager (Link) field in PageType 'CRM Territory' +#: crm/fcrm/pagetype/crm_territory/crm_territory.json msgid "Territory Manager" msgstr "Gerente de Territorio" -#. Label of the territory_name (Data) field in DocType 'CRM Territory' -#: crm/fcrm/doctype/crm_territory/crm_territory.json +#. Label of the territory_name (Data) field in PageType 'CRM Territory' +#: crm/fcrm/pagetype/crm_territory/crm_territory.json msgid "Territory Name" msgstr "Nombre Territorio" @@ -5392,22 +5392,22 @@ msgstr "Nombre Territorio" msgid "Thanks" msgstr "Gracias" -#: crm/fcrm/doctype/crm_service_level_agreement/crm_service_level_agreement.py:46 +#: crm/fcrm/pagetype/crm_service_level_agreement/crm_service_level_agreement.py:46 msgid "The Condition '{0}' is invalid: {1}" msgstr "" -#. Description of the 'Exchange Rate' (Float) field in DocType 'CRM Deal' -#: crm/fcrm/doctype/crm_deal/crm_deal.json +#. Description of the 'Exchange Rate' (Float) field in PageType 'CRM Deal' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json msgid "The rate used to convert the deal’s currency to your crm's base currency (set in CRM Settings). It is set once when the currency is first added and doesn't change automatically." msgstr "" -#. Description of the 'Exchange Rate' (Float) field in DocType 'CRM +#. Description of the 'Exchange Rate' (Float) field in PageType 'CRM #. Organization' -#: crm/fcrm/doctype/crm_organization/crm_organization.json +#: crm/fcrm/pagetype/crm_organization/crm_organization.json msgid "The rate used to convert the organization’s currency to your crm's base currency (set in CRM Settings). It is set once when the currency is first added and doesn't change automatically." msgstr "" -#: crm/fcrm/doctype/crm_service_level_agreement/crm_service_level_agreement.js:14 +#: crm/fcrm/pagetype/crm_service_level_agreement/crm_service_level_agreement.js:14 msgid "There can only be one default priority in Priorities table" msgstr "" @@ -5444,14 +5444,14 @@ msgstr "" msgid "This will delete selected items and unlink linked items to it, are you sure?" msgstr "" -#: crm/fcrm/doctype/fcrm_settings/fcrm_settings.js:9 +#: crm/fcrm/pagetype/fcrm_settings/fcrm_settings.js:9 msgid "This will restore (if not exist) all the default statuses, custom fields and layouts. Delete & Restore will delete default layouts and then restore them." msgstr "" -#. Option for the 'Weekly Off' (Select) field in DocType 'CRM Holiday List' -#. Option for the 'Workday' (Select) field in DocType 'CRM Service Day' -#: crm/fcrm/doctype/crm_holiday_list/crm_holiday_list.json -#: crm/fcrm/doctype/crm_service_day/crm_service_day.json +#. Option for the 'Weekly Off' (Select) field in PageType 'CRM Holiday List' +#. Option for the 'Workday' (Select) field in PageType 'CRM Service Day' +#: crm/fcrm/pagetype/crm_holiday_list/crm_holiday_list.json +#: crm/fcrm/pagetype/crm_service_day/crm_service_day.json msgid "Thursday" msgstr "Jueves" @@ -5463,18 +5463,18 @@ msgstr "Hora" msgid "Timespan" msgstr "Espacio de tiempo" -#. Label of the title (Data) field in DocType 'CRM Task' -#. Label of the title (Data) field in DocType 'FCRM Note' -#: crm/fcrm/doctype/crm_task/crm_task.json -#: crm/fcrm/doctype/fcrm_note/fcrm_note.json +#. Label of the title (Data) field in PageType 'CRM Task' +#. Label of the title (Data) field in PageType 'FCRM Note' +#: crm/fcrm/pagetype/crm_task/crm_task.json +#: crm/fcrm/pagetype/fcrm_note/fcrm_note.json #: frontend/src/components/Modals/EventModal.vue:43 #: frontend/src/components/Modals/NoteModal.vue:26 #: frontend/src/components/Modals/TaskModal.vue:25 msgid "Title" msgstr "Nombre" -#. Label of the title_field (Data) field in DocType 'CRM View Settings' -#: crm/fcrm/doctype/crm_view_settings/crm_view_settings.json +#. Label of the title_field (Data) field in PageType 'CRM View Settings' +#: crm/fcrm/pagetype/crm_view_settings/crm_view_settings.json #: frontend/src/components/Kanban/KanbanSettings.vue:29 msgid "Title Field" msgstr "Campo de título" @@ -5484,28 +5484,28 @@ msgstr "Campo de título" msgid "Title is required" msgstr "" -#. Label of the to (Data) field in DocType 'CRM Call Log' -#. Label of the to (Data) field in DocType 'CRM Status Change Log' -#: crm/fcrm/doctype/crm_call_log/crm_call_log.json -#: crm/fcrm/doctype/crm_status_change_log/crm_status_change_log.json +#. Label of the to (Data) field in PageType 'CRM Call Log' +#. Label of the to (Data) field in PageType 'CRM Status Change Log' +#: crm/fcrm/pagetype/crm_call_log/crm_call_log.json +#: crm/fcrm/pagetype/crm_status_change_log/crm_status_change_log.json #: frontend/src/components/Activities/EmailArea.vue:53 msgid "To" msgstr "A" -#. Label of the to_date (Date) field in DocType 'CRM Holiday List' -#. Label of the to_date (Datetime) field in DocType 'CRM Status Change Log' -#: crm/fcrm/doctype/crm_holiday_list/crm_holiday_list.json -#: crm/fcrm/doctype/crm_status_change_log/crm_status_change_log.json +#. Label of the to_date (Date) field in PageType 'CRM Holiday List' +#. Label of the to_date (Datetime) field in PageType 'CRM Status Change Log' +#: crm/fcrm/pagetype/crm_holiday_list/crm_holiday_list.json +#: crm/fcrm/pagetype/crm_status_change_log/crm_status_change_log.json msgid "To Date" msgstr "Hasta la fecha" -#. Label of the to_type (Data) field in DocType 'CRM Status Change Log' -#: crm/fcrm/doctype/crm_status_change_log/crm_status_change_log.json +#. Label of the to_type (Data) field in PageType 'CRM Status Change Log' +#: crm/fcrm/pagetype/crm_status_change_log/crm_status_change_log.json msgid "To Type" msgstr "" -#. Label of the to_user (Link) field in DocType 'CRM Notification' -#: crm/fcrm/doctype/crm_notification/crm_notification.json +#. Label of the to_user (Link) field in PageType 'CRM Notification' +#: crm/fcrm/pagetype/crm_notification/crm_notification.json msgid "To User" msgstr "Al usuario" @@ -5517,8 +5517,8 @@ msgstr "" msgid "Today" msgstr "Hoy" -#. Option for the 'Status' (Select) field in DocType 'CRM Task' -#: crm/fcrm/doctype/crm_task/crm_task.json +#. Option for the 'Status' (Select) field in PageType 'CRM Task' +#: crm/fcrm/pagetype/crm_task/crm_task.json msgid "Todo" msgstr "" @@ -5535,22 +5535,22 @@ msgstr "" msgid "Took a call with John Doe and discussed the new project." msgstr "" -#. Label of the total (Currency) field in DocType 'CRM Deal' -#. Label of the total (Currency) field in DocType 'CRM Lead' -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_lead/crm_lead.json +#. Label of the total (Currency) field in PageType 'CRM Deal' +#. Label of the total (Currency) field in PageType 'CRM Lead' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_lead/crm_lead.json msgid "Total" msgstr "Total" -#. Label of the total_holidays (Int) field in DocType 'CRM Holiday List' -#: crm/fcrm/doctype/crm_holiday_list/crm_holiday_list.json +#. Label of the total_holidays (Int) field in PageType 'CRM Holiday List' +#: crm/fcrm/pagetype/crm_holiday_list/crm_holiday_list.json msgid "Total Holidays" msgstr "Vacaciones Totales" -#. Description of the 'Net Total' (Currency) field in DocType 'CRM Deal' -#. Description of the 'Net Total' (Currency) field in DocType 'CRM Lead' -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_lead/crm_lead.json +#. Description of the 'Net Total' (Currency) field in PageType 'CRM Deal' +#. Description of the 'Net Total' (Currency) field in PageType 'CRM Lead' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_lead/crm_lead.json msgid "Total after discount" msgstr "" @@ -5571,10 +5571,10 @@ msgstr "" msgid "Total number of won deals based on its closure date" msgstr "" -#. Option for the 'Weekly Off' (Select) field in DocType 'CRM Holiday List' -#. Option for the 'Workday' (Select) field in DocType 'CRM Service Day' -#: crm/fcrm/doctype/crm_holiday_list/crm_holiday_list.json -#: crm/fcrm/doctype/crm_service_day/crm_service_day.json +#. Option for the 'Weekly Off' (Select) field in PageType 'CRM Holiday List' +#. Option for the 'Workday' (Select) field in PageType 'CRM Service Day' +#: crm/fcrm/pagetype/crm_holiday_list/crm_holiday_list.json +#: crm/fcrm/pagetype/crm_service_day/crm_service_day.json msgid "Tuesday" msgstr "Martes" @@ -5582,30 +5582,30 @@ msgstr "Martes" msgid "Turn into a group" msgstr "" -#. Label of the twiml_sid (Data) field in DocType 'CRM Twilio Settings' -#: crm/fcrm/doctype/crm_twilio_settings/crm_twilio_settings.json +#. Label of the twiml_sid (Data) field in PageType 'CRM Twilio Settings' +#: crm/fcrm/pagetype/crm_twilio_settings/crm_twilio_settings.json msgid "TwiML SID" msgstr "" -#. Option for the 'Telephony Medium' (Select) field in DocType 'CRM Call Log' -#. Label of the twilio (Check) field in DocType 'CRM Telephony Agent' -#. Option for the 'Default Medium' (Select) field in DocType 'CRM Telephony +#. Option for the 'Telephony Medium' (Select) field in PageType 'CRM Call Log' +#. Label of the twilio (Check) field in PageType 'CRM Telephony Agent' +#. Option for the 'Default Medium' (Select) field in PageType 'CRM Telephony #. Agent' -#: crm/fcrm/doctype/crm_call_log/crm_call_log.json -#: crm/fcrm/doctype/crm_telephony_agent/crm_telephony_agent.json +#: crm/fcrm/pagetype/crm_call_log/crm_call_log.json +#: crm/fcrm/pagetype/crm_telephony_agent/crm_telephony_agent.json #: frontend/src/components/Layouts/AppSidebar.vue:601 #: frontend/src/components/Settings/TelephonySettings.vue:40 #: frontend/src/components/Settings/TelephonySettings.vue:50 msgid "Twilio" msgstr "" -#: crm/fcrm/doctype/crm_twilio_settings/crm_twilio_settings.py:59 -#: crm/fcrm/doctype/crm_twilio_settings/crm_twilio_settings.py:60 +#: crm/fcrm/pagetype/crm_twilio_settings/crm_twilio_settings.py:59 +#: crm/fcrm/pagetype/crm_twilio_settings/crm_twilio_settings.py:60 msgid "Twilio API credential creation error." msgstr "" -#. Label of the twilio_number (Data) field in DocType 'CRM Telephony Agent' -#: crm/fcrm/doctype/crm_telephony_agent/crm_telephony_agent.json +#. Label of the twilio_number (Data) field in PageType 'CRM Telephony Agent' +#: crm/fcrm/pagetype/crm_telephony_agent/crm_telephony_agent.json msgid "Twilio Number" msgstr "" @@ -5617,20 +5617,20 @@ msgstr "" msgid "Twilio settings updated successfully" msgstr "" -#. Label of the type (Select) field in DocType 'CRM Call Log' -#. Label of the type (Select) field in DocType 'CRM Deal Status' -#. Label of the type (Select) field in DocType 'CRM Dropdown Item' -#. Label of the type (Select) field in DocType 'CRM Fields Layout' -#. Label of the type (Select) field in DocType 'CRM Global Settings' -#. Label of the type (Select) field in DocType 'CRM Notification' -#. Label of the type (Select) field in DocType 'CRM View Settings' -#: crm/fcrm/doctype/crm_call_log/crm_call_log.json -#: crm/fcrm/doctype/crm_deal_status/crm_deal_status.json -#: crm/fcrm/doctype/crm_dropdown_item/crm_dropdown_item.json -#: crm/fcrm/doctype/crm_fields_layout/crm_fields_layout.json -#: crm/fcrm/doctype/crm_global_settings/crm_global_settings.json -#: crm/fcrm/doctype/crm_notification/crm_notification.json -#: crm/fcrm/doctype/crm_view_settings/crm_view_settings.json +#. Label of the type (Select) field in PageType 'CRM Call Log' +#. Label of the type (Select) field in PageType 'CRM Deal Status' +#. Label of the type (Select) field in PageType 'CRM Dropdown Item' +#. Label of the type (Select) field in PageType 'CRM Fields Layout' +#. Label of the type (Select) field in PageType 'CRM Global Settings' +#. Label of the type (Select) field in PageType 'CRM Notification' +#. Label of the type (Select) field in PageType 'CRM View Settings' +#: crm/fcrm/pagetype/crm_call_log/crm_call_log.json +#: crm/fcrm/pagetype/crm_deal_status/crm_deal_status.json +#: crm/fcrm/pagetype/crm_dropdown_item/crm_dropdown_item.json +#: crm/fcrm/pagetype/crm_fields_layout/crm_fields_layout.json +#: crm/fcrm/pagetype/crm_global_settings/crm_global_settings.json +#: crm/fcrm/pagetype/crm_notification/crm_notification.json +#: crm/fcrm/pagetype/crm_view_settings/crm_view_settings.json msgid "Type" msgstr "Tipo" @@ -5772,12 +5772,12 @@ msgstr "" msgid "Uploading {0}%" msgstr "Subiendo {0}%" -#. Label of the user (Link) field in DocType 'CRM Dashboard' -#. Label of the user (Link) field in DocType 'CRM Telephony Agent' -#. Label of the user (Link) field in DocType 'CRM View Settings' -#: crm/fcrm/doctype/crm_dashboard/crm_dashboard.json -#: crm/fcrm/doctype/crm_telephony_agent/crm_telephony_agent.json -#: crm/fcrm/doctype/crm_view_settings/crm_view_settings.json +#. Label of the user (Link) field in PageType 'CRM Dashboard' +#. Label of the user (Link) field in PageType 'CRM Telephony Agent' +#. Label of the user (Link) field in PageType 'CRM View Settings' +#: crm/fcrm/pagetype/crm_dashboard/crm_dashboard.json +#: crm/fcrm/pagetype/crm_telephony_agent/crm_telephony_agent.json +#: crm/fcrm/pagetype/crm_view_settings/crm_view_settings.json msgid "User" msgstr "Usuario" @@ -5785,8 +5785,8 @@ msgstr "Usuario" msgid "User Management" msgstr "" -#. Label of the user_name (Data) field in DocType 'CRM Telephony Agent' -#: crm/fcrm/doctype/crm_telephony_agent/crm_telephony_agent.json +#. Label of the user_name (Data) field in PageType 'CRM Telephony Agent' +#: crm/fcrm/pagetype/crm_telephony_agent/crm_telephony_agent.json msgid "User Name" msgstr "Nombre de usuario" @@ -5808,9 +5808,9 @@ msgstr "" msgid "Users are required" msgstr "" -#. Label of the section_break_nevd (Section Break) field in DocType 'CRM +#. Label of the section_break_nevd (Section Break) field in PageType 'CRM #. Service Level Agreement' -#: crm/fcrm/doctype/crm_service_level_agreement/crm_service_level_agreement.json +#: crm/fcrm/pagetype/crm_service_level_agreement/crm_service_level_agreement.json msgid "Validity" msgstr "Validez" @@ -5834,33 +5834,33 @@ msgstr "Vistas" msgid "Web form" msgstr "" -#. Label of the webhook_verify_token (Data) field in DocType 'CRM Exotel +#. Label of the webhook_verify_token (Data) field in PageType 'CRM Exotel #. Settings' -#: crm/fcrm/doctype/crm_exotel_settings/crm_exotel_settings.json +#: crm/fcrm/pagetype/crm_exotel_settings/crm_exotel_settings.json msgid "Webhook Verify Token" msgstr "" -#. Label of the website (Data) field in DocType 'CRM Deal' -#. Label of the website (Data) field in DocType 'CRM Lead' -#. Label of the website (Data) field in DocType 'CRM Organization' -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_lead/crm_lead.json -#: crm/fcrm/doctype/crm_organization/crm_organization.json +#. Label of the website (Data) field in PageType 'CRM Deal' +#. Label of the website (Data) field in PageType 'CRM Lead' +#. Label of the website (Data) field in PageType 'CRM Organization' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_lead/crm_lead.json +#: crm/fcrm/pagetype/crm_organization/crm_organization.json #: frontend/src/components/Modals/AboutModal.vue:52 msgid "Website" msgstr "Sitio Web" -#. Option for the 'Weekly Off' (Select) field in DocType 'CRM Holiday List' -#. Option for the 'Workday' (Select) field in DocType 'CRM Service Day' -#: crm/fcrm/doctype/crm_holiday_list/crm_holiday_list.json -#: crm/fcrm/doctype/crm_service_day/crm_service_day.json +#. Option for the 'Weekly Off' (Select) field in PageType 'CRM Holiday List' +#. Option for the 'Workday' (Select) field in PageType 'CRM Service Day' +#: crm/fcrm/pagetype/crm_holiday_list/crm_holiday_list.json +#: crm/fcrm/pagetype/crm_service_day/crm_service_day.json msgid "Wednesday" msgstr "Miércoles" -#. Label of the weekly_off (Check) field in DocType 'CRM Holiday' -#. Label of the weekly_off (Select) field in DocType 'CRM Holiday List' -#: crm/fcrm/doctype/crm_holiday/crm_holiday.json -#: crm/fcrm/doctype/crm_holiday_list/crm_holiday_list.json +#. Label of the weekly_off (Check) field in PageType 'CRM Holiday' +#. Label of the weekly_off (Select) field in PageType 'CRM Holiday List' +#: crm/fcrm/pagetype/crm_holiday/crm_holiday.json +#: crm/fcrm/pagetype/crm_holiday_list/crm_holiday_list.json msgid "Weekly Off" msgstr "Semanal Desactivado" @@ -5868,7 +5868,7 @@ msgstr "Semanal Desactivado" msgid "Welcome Message" msgstr "" -#: crm/fcrm/doctype/helpdesk_crm_settings/helpdesk_crm_settings.py:155 +#: crm/fcrm/pagetype/helpdesk_crm_settings/helpdesk_crm_settings.py:155 msgid "Welcome to Helpdesk" msgstr "" @@ -5876,8 +5876,8 @@ msgstr "" msgid "Welcome {0}, lets add your first lead" msgstr "" -#. Option for the 'Type' (Select) field in DocType 'CRM Notification' -#: crm/fcrm/doctype/crm_notification/crm_notification.json +#. Option for the 'Type' (Select) field in PageType 'CRM Notification' +#: crm/fcrm/pagetype/crm_notification/crm_notification.json #: frontend/src/components/Layouts/AppSidebar.vue:603 #: frontend/src/components/Settings/Settings.vue:190 #: frontend/src/pages/Deal.vue:572 frontend/src/pages/Lead.vue:429 @@ -5902,8 +5902,8 @@ msgstr "Ancho" msgid "Width can be in number, pixel or rem (eg. 3, 30px, 10rem)" msgstr "" -#. Option for the 'Type' (Select) field in DocType 'CRM Deal Status' -#: crm/fcrm/doctype/crm_deal_status/crm_deal_status.json +#. Option for the 'Type' (Select) field in PageType 'CRM Deal Status' +#: crm/fcrm/pagetype/crm_deal_status/crm_deal_status.json msgid "Won" msgstr "" @@ -5912,16 +5912,16 @@ msgstr "" msgid "Won deals" msgstr "" -#. Label of the workday (Select) field in DocType 'CRM Service Day' -#: crm/fcrm/doctype/crm_service_day/crm_service_day.json +#. Label of the workday (Select) field in PageType 'CRM Service Day' +#: crm/fcrm/pagetype/crm_service_day/crm_service_day.json msgid "Workday" msgstr "Jornada laboral" -#. Label of the section_break_rmgo (Section Break) field in DocType 'CRM +#. Label of the section_break_rmgo (Section Break) field in PageType 'CRM #. Service Level Agreement' -#. Label of the working_hours (Table) field in DocType 'CRM Service Level +#. Label of the working_hours (Table) field in PageType 'CRM Service Level #. Agreement' -#: crm/fcrm/doctype/crm_service_level_agreement/crm_service_level_agreement.json +#: crm/fcrm/pagetype/crm_service_level_agreement/crm_service_level_agreement.json msgid "Working Hours" msgstr "Horas de Trabajo" @@ -5967,7 +5967,7 @@ msgstr "" msgid "You do not have permission to access this document" msgstr "" -#: crm/fcrm/doctype/crm_form_script/crm_form_script.py:24 +#: crm/fcrm/pagetype/crm_form_script/crm_form_script.py:24 msgid "You need to be in developer mode to edit a Standard Form Script" msgstr "" @@ -5995,10 +5995,10 @@ msgstr "" msgid "added a" msgstr "" -#. Option for the 'Color' (Select) field in DocType 'CRM Deal Status' -#. Option for the 'Color' (Select) field in DocType 'CRM Lead Status' -#: crm/fcrm/doctype/crm_deal_status/crm_deal_status.json -#: crm/fcrm/doctype/crm_lead_status/crm_lead_status.json +#. Option for the 'Color' (Select) field in PageType 'CRM Deal Status' +#. Option for the 'Color' (Select) field in PageType 'CRM Lead Status' +#: crm/fcrm/pagetype/crm_deal_status/crm_deal_status.json +#: crm/fcrm/pagetype/crm_lead_status/crm_lead_status.json msgid "amber" msgstr "" @@ -6010,17 +6010,17 @@ msgstr "" msgid "assigned a {0} {1} to you" msgstr "" -#. Option for the 'Color' (Select) field in DocType 'CRM Deal Status' -#. Option for the 'Color' (Select) field in DocType 'CRM Lead Status' -#: crm/fcrm/doctype/crm_deal_status/crm_deal_status.json -#: crm/fcrm/doctype/crm_lead_status/crm_lead_status.json +#. Option for the 'Color' (Select) field in PageType 'CRM Deal Status' +#. Option for the 'Color' (Select) field in PageType 'CRM Lead Status' +#: crm/fcrm/pagetype/crm_deal_status/crm_deal_status.json +#: crm/fcrm/pagetype/crm_lead_status/crm_lead_status.json msgid "black" msgstr "negro" -#. Option for the 'Color' (Select) field in DocType 'CRM Deal Status' -#. Option for the 'Color' (Select) field in DocType 'CRM Lead Status' -#: crm/fcrm/doctype/crm_deal_status/crm_deal_status.json -#: crm/fcrm/doctype/crm_lead_status/crm_lead_status.json +#. Option for the 'Color' (Select) field in PageType 'CRM Deal Status' +#. Option for the 'Color' (Select) field in PageType 'CRM Lead Status' +#: crm/fcrm/pagetype/crm_deal_status/crm_deal_status.json +#: crm/fcrm/pagetype/crm_lead_status/crm_lead_status.json msgid "blue" msgstr "azul" @@ -6037,10 +6037,10 @@ msgstr "comentario" msgid "condition" msgstr "condición" -#. Option for the 'Color' (Select) field in DocType 'CRM Deal Status' -#. Option for the 'Color' (Select) field in DocType 'CRM Lead Status' -#: crm/fcrm/doctype/crm_deal_status/crm_deal_status.json -#: crm/fcrm/doctype/crm_lead_status/crm_lead_status.json +#. Option for the 'Color' (Select) field in PageType 'CRM Deal Status' +#. Option for the 'Color' (Select) field in PageType 'CRM Lead Status' +#: crm/fcrm/pagetype/crm_deal_status/crm_deal_status.json +#: crm/fcrm/pagetype/crm_lead_status/crm_lead_status.json msgid "cyan" msgstr "cian" @@ -6059,33 +6059,33 @@ msgstr "escritorio" msgid "email already exists" msgstr "" -#. Option for the 'Service Provider' (Select) field in DocType 'FCRM Settings' -#: crm/fcrm/doctype/fcrm_settings/fcrm_settings.json +#. Option for the 'Service Provider' (Select) field in PageType 'FCRM Settings' +#: crm/fcrm/pagetype/fcrm_settings/fcrm_settings.json #: frontend/src/components/Settings/CurrencySettings.vue:106 msgid "exchangerate.host" msgstr "" -#. Option for the 'Service Provider' (Select) field in DocType 'FCRM Settings' -#: crm/fcrm/doctype/fcrm_settings/fcrm_settings.json +#. Option for the 'Service Provider' (Select) field in PageType 'FCRM Settings' +#: crm/fcrm/pagetype/fcrm_settings/fcrm_settings.json msgid "frankfurter.app" msgstr "" -#. Option for the 'Color' (Select) field in DocType 'CRM Deal Status' -#. Option for the 'Color' (Select) field in DocType 'CRM Lead Status' -#: crm/fcrm/doctype/crm_deal_status/crm_deal_status.json -#: crm/fcrm/doctype/crm_lead_status/crm_lead_status.json +#. Option for the 'Color' (Select) field in PageType 'CRM Deal Status' +#. Option for the 'Color' (Select) field in PageType 'CRM Lead Status' +#: crm/fcrm/pagetype/crm_deal_status/crm_deal_status.json +#: crm/fcrm/pagetype/crm_lead_status/crm_lead_status.json msgid "gray" msgstr "gris" -#. Option for the 'Color' (Select) field in DocType 'CRM Deal Status' -#. Option for the 'Color' (Select) field in DocType 'CRM Lead Status' -#: crm/fcrm/doctype/crm_deal_status/crm_deal_status.json -#: crm/fcrm/doctype/crm_lead_status/crm_lead_status.json +#. Option for the 'Color' (Select) field in PageType 'CRM Deal Status' +#. Option for the 'Color' (Select) field in PageType 'CRM Lead Status' +#: crm/fcrm/pagetype/crm_deal_status/crm_deal_status.json +#: crm/fcrm/pagetype/crm_lead_status/crm_lead_status.json msgid "green" msgstr "verde" -#. Option for the 'Type' (Select) field in DocType 'CRM View Settings' -#: crm/fcrm/doctype/crm_view_settings/crm_view_settings.json +#. Option for the 'Type' (Select) field in PageType 'CRM View Settings' +#: crm/fcrm/pagetype/crm_view_settings/crm_view_settings.json msgid "group_by" msgstr "" @@ -6170,12 +6170,12 @@ msgstr "" msgid "just now" msgstr "justo ahora" -#. Option for the 'Type' (Select) field in DocType 'CRM View Settings' -#: crm/fcrm/doctype/crm_view_settings/crm_view_settings.json +#. Option for the 'Type' (Select) field in PageType 'CRM View Settings' +#: crm/fcrm/pagetype/crm_view_settings/crm_view_settings.json msgid "kanban" msgstr "kanban" -#: crm/api/doc.py:40 crm/api/doc.py:158 crm/api/doc.py:503 +#: crm/api/pg.py:40 crm/api/pg.py:158 crm/api/pg.py:503 msgid "label" msgstr "etiqueta" @@ -6184,8 +6184,8 @@ msgstr "etiqueta" msgid "leads" msgstr "clientes potenciales" -#. Option for the 'Type' (Select) field in DocType 'CRM View Settings' -#: crm/fcrm/doctype/crm_view_settings/crm_view_settings.json +#. Option for the 'Type' (Select) field in PageType 'CRM View Settings' +#: crm/fcrm/pagetype/crm_view_settings/crm_view_settings.json msgid "list" msgstr "lista" @@ -6206,17 +6206,17 @@ msgstr "ahora" msgid "operator" msgstr "operador" -#. Option for the 'Color' (Select) field in DocType 'CRM Deal Status' -#. Option for the 'Color' (Select) field in DocType 'CRM Lead Status' -#: crm/fcrm/doctype/crm_deal_status/crm_deal_status.json -#: crm/fcrm/doctype/crm_lead_status/crm_lead_status.json +#. Option for the 'Color' (Select) field in PageType 'CRM Deal Status' +#. Option for the 'Color' (Select) field in PageType 'CRM Lead Status' +#: crm/fcrm/pagetype/crm_deal_status/crm_deal_status.json +#: crm/fcrm/pagetype/crm_lead_status/crm_lead_status.json msgid "orange" msgstr "naranja" -#. Option for the 'Color' (Select) field in DocType 'CRM Deal Status' -#. Option for the 'Color' (Select) field in DocType 'CRM Lead Status' -#: crm/fcrm/doctype/crm_deal_status/crm_deal_status.json -#: crm/fcrm/doctype/crm_lead_status/crm_lead_status.json +#. Option for the 'Color' (Select) field in PageType 'CRM Deal Status' +#. Option for the 'Color' (Select) field in PageType 'CRM Lead Status' +#: crm/fcrm/pagetype/crm_deal_status/crm_deal_status.json +#: crm/fcrm/pagetype/crm_lead_status/crm_lead_status.json msgid "pink" msgstr "rosa" @@ -6232,10 +6232,10 @@ msgstr "privado" msgid "public" msgstr "público" -#. Option for the 'Color' (Select) field in DocType 'CRM Deal Status' -#. Option for the 'Color' (Select) field in DocType 'CRM Lead Status' -#: crm/fcrm/doctype/crm_deal_status/crm_deal_status.json -#: crm/fcrm/doctype/crm_lead_status/crm_lead_status.json +#. Option for the 'Color' (Select) field in PageType 'CRM Deal Status' +#. Option for the 'Color' (Select) field in PageType 'CRM Lead Status' +#: crm/fcrm/pagetype/crm_deal_status/crm_deal_status.json +#: crm/fcrm/pagetype/crm_lead_status/crm_lead_status.json msgid "purple" msgstr "púrpura" @@ -6243,17 +6243,17 @@ msgstr "púrpura" msgid "received a whatsapp message in {0}" msgstr "" -#. Option for the 'Color' (Select) field in DocType 'CRM Deal Status' -#. Option for the 'Color' (Select) field in DocType 'CRM Lead Status' -#: crm/fcrm/doctype/crm_deal_status/crm_deal_status.json -#: crm/fcrm/doctype/crm_lead_status/crm_lead_status.json +#. Option for the 'Color' (Select) field in PageType 'CRM Deal Status' +#. Option for the 'Color' (Select) field in PageType 'CRM Lead Status' +#: crm/fcrm/pagetype/crm_deal_status/crm_deal_status.json +#: crm/fcrm/pagetype/crm_lead_status/crm_lead_status.json msgid "red" msgstr "rojo" -#. Option for the 'Color' (Select) field in DocType 'CRM Deal Status' -#. Option for the 'Color' (Select) field in DocType 'CRM Lead Status' -#: crm/fcrm/doctype/crm_deal_status/crm_deal_status.json -#: crm/fcrm/doctype/crm_lead_status/crm_lead_status.json +#. Option for the 'Color' (Select) field in PageType 'CRM Deal Status' +#. Option for the 'Color' (Select) field in PageType 'CRM Lead Status' +#: crm/fcrm/pagetype/crm_deal_status/crm_deal_status.json +#: crm/fcrm/pagetype/crm_lead_status/crm_lead_status.json msgid "teal" msgstr "" @@ -6266,10 +6266,10 @@ msgstr "a" msgid "tomorrow" msgstr "" -#. Option for the 'Color' (Select) field in DocType 'CRM Deal Status' -#. Option for the 'Color' (Select) field in DocType 'CRM Lead Status' -#: crm/fcrm/doctype/crm_deal_status/crm_deal_status.json -#: crm/fcrm/doctype/crm_lead_status/crm_lead_status.json +#. Option for the 'Color' (Select) field in PageType 'CRM Deal Status' +#. Option for the 'Color' (Select) field in PageType 'CRM Lead Status' +#: crm/fcrm/pagetype/crm_deal_status/crm_deal_status.json +#: crm/fcrm/pagetype/crm_lead_status/crm_lead_status.json msgid "violet" msgstr "violeta" @@ -6278,10 +6278,10 @@ msgstr "violeta" msgid "which are not compatible with this UI, you will need to recreate the conditions here if you want to manage and add new conditions from this UI." msgstr "" -#. Option for the 'Color' (Select) field in DocType 'CRM Deal Status' -#. Option for the 'Color' (Select) field in DocType 'CRM Lead Status' -#: crm/fcrm/doctype/crm_deal_status/crm_deal_status.json -#: crm/fcrm/doctype/crm_lead_status/crm_lead_status.json +#. Option for the 'Color' (Select) field in PageType 'CRM Deal Status' +#. Option for the 'Color' (Select) field in PageType 'CRM Lead Status' +#: crm/fcrm/pagetype/crm_deal_status/crm_deal_status.json +#: crm/fcrm/pagetype/crm_lead_status/crm_lead_status.json msgid "yellow" msgstr "amarillo" @@ -6379,7 +6379,7 @@ msgid "⚠️ Method \"{0}\" not found in class." msgstr "" #: frontend/src/data/script.js:83 -msgid "⚠️ No class found for doctype: {0}, it is mandatory to have a class for the parent doctype. it can be empty, but it should be present." +msgid "⚠️ No class found for pagetype: {0}, it is mandatory to have a class for the parent pagetype. it can be empty, but it should be present." msgstr "" #: frontend/src/data/script.js:180 diff --git a/crm/locale/fa.po b/crm/locale/fa.po index 0ae55808..495d9be9 100644 --- a/crm/locale/fa.po +++ b/crm/locale/fa.po @@ -1,6 +1,6 @@ msgid "" msgstr "" -"Project-Id-Version: frappe\n" +"Project-Id-Version: jingrow\n" "Report-Msgid-Bugs-To: shariq@jingrow.com\n" "POT-Creation-Date: 2025-09-21 09:35+0000\n" "PO-Revision-Date: 2025-09-22 20:42\n" @@ -11,10 +11,10 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Generated-By: Babel 2.16.0\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -"X-Crowdin-Project: frappe\n" +"X-Crowdin-Project: jingrow\n" "X-Crowdin-Project-ID: 639578\n" "X-Crowdin-Language: fa\n" -"X-Crowdin-File: /[frappe.crm] develop/crm/locale/main.pot\n" +"X-Crowdin-File: /[jingrow.crm] develop/crm/locale/main.pot\n" "X-Crowdin-File-ID: 97\n" "Language: fa_IR\n" @@ -55,73 +55,73 @@ msgstr "1 هفته قبل" msgid "1 year ago" msgstr "1 سال پیش" -#. Option for the 'No. of Employees' (Select) field in DocType 'CRM Deal' -#. Option for the 'No. of Employees' (Select) field in DocType 'CRM Lead' -#. Option for the 'No. of Employees' (Select) field in DocType 'CRM +#. Option for the 'No. of Employees' (Select) field in PageType 'CRM Deal' +#. Option for the 'No. of Employees' (Select) field in PageType 'CRM Lead' +#. Option for the 'No. of Employees' (Select) field in PageType 'CRM #. Organization' -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_lead/crm_lead.json -#: crm/fcrm/doctype/crm_organization/crm_organization.json +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_lead/crm_lead.json +#: crm/fcrm/pagetype/crm_organization/crm_organization.json msgid "1-10" msgstr "1-10" -#. Option for the 'No. of Employees' (Select) field in DocType 'CRM Deal' -#. Option for the 'No. of Employees' (Select) field in DocType 'CRM Lead' -#. Option for the 'No. of Employees' (Select) field in DocType 'CRM +#. Option for the 'No. of Employees' (Select) field in PageType 'CRM Deal' +#. Option for the 'No. of Employees' (Select) field in PageType 'CRM Lead' +#. Option for the 'No. of Employees' (Select) field in PageType 'CRM #. Organization' -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_lead/crm_lead.json -#: crm/fcrm/doctype/crm_organization/crm_organization.json +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_lead/crm_lead.json +#: crm/fcrm/pagetype/crm_organization/crm_organization.json msgid "1000+" msgstr "1000+" -#. Option for the 'No. of Employees' (Select) field in DocType 'CRM Deal' -#. Option for the 'No. of Employees' (Select) field in DocType 'CRM Lead' -#. Option for the 'No. of Employees' (Select) field in DocType 'CRM +#. Option for the 'No. of Employees' (Select) field in PageType 'CRM Deal' +#. Option for the 'No. of Employees' (Select) field in PageType 'CRM Lead' +#. Option for the 'No. of Employees' (Select) field in PageType 'CRM #. Organization' -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_lead/crm_lead.json -#: crm/fcrm/doctype/crm_organization/crm_organization.json +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_lead/crm_lead.json +#: crm/fcrm/pagetype/crm_organization/crm_organization.json msgid "11-50" msgstr "11-50" -#. Option for the 'No. of Employees' (Select) field in DocType 'CRM Deal' -#. Option for the 'No. of Employees' (Select) field in DocType 'CRM Lead' -#. Option for the 'No. of Employees' (Select) field in DocType 'CRM +#. Option for the 'No. of Employees' (Select) field in PageType 'CRM Deal' +#. Option for the 'No. of Employees' (Select) field in PageType 'CRM Lead' +#. Option for the 'No. of Employees' (Select) field in PageType 'CRM #. Organization' -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_lead/crm_lead.json -#: crm/fcrm/doctype/crm_organization/crm_organization.json +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_lead/crm_lead.json +#: crm/fcrm/pagetype/crm_organization/crm_organization.json msgid "201-500" msgstr "201-500" -#. Option for the 'No. of Employees' (Select) field in DocType 'CRM Deal' -#. Option for the 'No. of Employees' (Select) field in DocType 'CRM Lead' -#. Option for the 'No. of Employees' (Select) field in DocType 'CRM +#. Option for the 'No. of Employees' (Select) field in PageType 'CRM Deal' +#. Option for the 'No. of Employees' (Select) field in PageType 'CRM Lead' +#. Option for the 'No. of Employees' (Select) field in PageType 'CRM #. Organization' -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_lead/crm_lead.json -#: crm/fcrm/doctype/crm_organization/crm_organization.json +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_lead/crm_lead.json +#: crm/fcrm/pagetype/crm_organization/crm_organization.json msgid "501-1000" msgstr "501-1000" -#. Option for the 'No. of Employees' (Select) field in DocType 'CRM Deal' -#. Option for the 'No. of Employees' (Select) field in DocType 'CRM Lead' -#. Option for the 'No. of Employees' (Select) field in DocType 'CRM +#. Option for the 'No. of Employees' (Select) field in PageType 'CRM Deal' +#. Option for the 'No. of Employees' (Select) field in PageType 'CRM Lead' +#. Option for the 'No. of Employees' (Select) field in PageType 'CRM #. Organization' -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_lead/crm_lead.json -#: crm/fcrm/doctype/crm_organization/crm_organization.json +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_lead/crm_lead.json +#: crm/fcrm/pagetype/crm_organization/crm_organization.json msgid "51-200" msgstr "51-200" -#. Paragraph text in the Frappe CRM Workspace -#: crm/fcrm/workspace/frappe_crm/frappe_crm.json +#. Paragraph text in the Jingrow CRM Workspace +#: crm/fcrm/workspace/jingrow_crm/jingrow_crm.json msgid "META" msgstr "" -#. Paragraph text in the Frappe CRM Workspace -#: crm/fcrm/workspace/frappe_crm/frappe_crm.json +#. Paragraph text in the Jingrow CRM Workspace +#: crm/fcrm/workspace/jingrow_crm/jingrow_crm.json msgid "SHORTCUTS" msgstr "" @@ -130,8 +130,8 @@ msgstr "" msgid "

Dear {{ lead_name }},

\\n\\n

This is a reminder for the payment of {{ grand_total }}.

\\n\\n

Thanks,

\\n

Frappé

" msgstr "" -#. Header text in the Frappe CRM Workspace -#: crm/fcrm/workspace/frappe_crm/frappe_crm.json +#. Header text in the Jingrow CRM Workspace +#: crm/fcrm/workspace/jingrow_crm/jingrow_crm.json msgid "PORTAL" msgstr "" @@ -139,7 +139,7 @@ msgstr "" msgid "@John, can you please check this?" msgstr "" -#: crm/fcrm/doctype/crm_lead/crm_lead.py:56 +#: crm/fcrm/pagetype/crm_lead/crm_lead.py:56 msgid "A Lead requires either a person's name or an organization's name" msgstr "یک Lead یا به نام شخص یا نام سازمان نیاز دارد" @@ -147,14 +147,14 @@ msgstr "یک Lead یا به نام شخص یا نام سازمان نیاز دا msgid "A new account has been created for you at {0}" msgstr "یک حساب کاربری جدید برای شما در {0} ایجاد شده است" -#. Label of the api_key (Data) field in DocType 'CRM Exotel Settings' -#. Label of the api_key (Data) field in DocType 'CRM Twilio Settings' -#. Label of the api_key (Data) field in DocType 'ERPNext CRM Settings' -#. Label of the api_key (Data) field in DocType 'Helpdesk CRM Settings' -#: crm/fcrm/doctype/crm_exotel_settings/crm_exotel_settings.json -#: crm/fcrm/doctype/crm_twilio_settings/crm_twilio_settings.json -#: crm/fcrm/doctype/erpnext_crm_settings/erpnext_crm_settings.json -#: crm/fcrm/doctype/helpdesk_crm_settings/helpdesk_crm_settings.json +#. Label of the api_key (Data) field in PageType 'CRM Exotel Settings' +#. Label of the api_key (Data) field in PageType 'CRM Twilio Settings' +#. Label of the api_key (Data) field in PageType 'ERPNext CRM Settings' +#. Label of the api_key (Data) field in PageType 'Helpdesk CRM Settings' +#: crm/fcrm/pagetype/crm_exotel_settings/crm_exotel_settings.json +#: crm/fcrm/pagetype/crm_twilio_settings/crm_twilio_settings.json +#: crm/fcrm/pagetype/erpnext_crm_settings/erpnext_crm_settings.json +#: crm/fcrm/pagetype/helpdesk_crm_settings/helpdesk_crm_settings.json msgid "API Key" msgstr "کلید API" @@ -162,17 +162,17 @@ msgstr "کلید API" msgid "API Key is required" msgstr "" -#. Label of the api_secret (Password) field in DocType 'CRM Twilio Settings' -#. Label of the api_secret (Password) field in DocType 'ERPNext CRM Settings' -#. Label of the api_secret (Password) field in DocType 'Helpdesk CRM Settings' -#: crm/fcrm/doctype/crm_twilio_settings/crm_twilio_settings.json -#: crm/fcrm/doctype/erpnext_crm_settings/erpnext_crm_settings.json -#: crm/fcrm/doctype/helpdesk_crm_settings/helpdesk_crm_settings.json +#. Label of the api_secret (Password) field in PageType 'CRM Twilio Settings' +#. Label of the api_secret (Password) field in PageType 'ERPNext CRM Settings' +#. Label of the api_secret (Password) field in PageType 'Helpdesk CRM Settings' +#: crm/fcrm/pagetype/crm_twilio_settings/crm_twilio_settings.json +#: crm/fcrm/pagetype/erpnext_crm_settings/erpnext_crm_settings.json +#: crm/fcrm/pagetype/helpdesk_crm_settings/helpdesk_crm_settings.json msgid "API Secret" msgstr "API Secret" -#. Label of the api_token (Password) field in DocType 'CRM Exotel Settings' -#: crm/fcrm/doctype/crm_exotel_settings/crm_exotel_settings.json +#. Label of the api_token (Password) field in PageType 'CRM Exotel Settings' +#: crm/fcrm/pagetype/crm_exotel_settings/crm_exotel_settings.json msgid "API Token" msgstr "" @@ -180,7 +180,7 @@ msgstr "" msgid "Accept" msgstr "" -#: crm/fcrm/doctype/crm_invitation/crm_invitation.js:7 +#: crm/fcrm/pagetype/crm_invitation/crm_invitation.js:7 msgid "Accept Invitation" msgstr "پذیرش دعوت نامه" @@ -188,22 +188,22 @@ msgstr "پذیرش دعوت نامه" msgid "Accept call" msgstr "" -#. Option for the 'Status' (Select) field in DocType 'CRM Invitation' -#: crm/fcrm/doctype/crm_invitation/crm_invitation.json +#. Option for the 'Status' (Select) field in PageType 'CRM Invitation' +#: crm/fcrm/pagetype/crm_invitation/crm_invitation.json msgid "Accepted" msgstr "پذیرفته شده" -#. Label of the accepted_at (Datetime) field in DocType 'CRM Invitation' -#: crm/fcrm/doctype/crm_invitation/crm_invitation.json +#. Label of the accepted_at (Datetime) field in PageType 'CRM Invitation' +#: crm/fcrm/pagetype/crm_invitation/crm_invitation.json msgid "Accepted At" msgstr "پذیرفته شده در" -#. Label of the access_key (Data) field in DocType 'FCRM Settings' -#: crm/fcrm/doctype/fcrm_settings/fcrm_settings.json +#. Label of the access_key (Data) field in PageType 'FCRM Settings' +#: crm/fcrm/pagetype/fcrm_settings/fcrm_settings.json msgid "Access Key" msgstr "کلید دسترسی" -#: crm/fcrm/doctype/fcrm_settings/fcrm_settings.py:156 +#: crm/fcrm/pagetype/fcrm_settings/fcrm_settings.py:156 msgid "Access Key is required for Service Provider: {0}" msgstr "کلید دسترسی برای ارائه‌دهنده خدمات لازم است: {0}" @@ -219,10 +219,10 @@ msgstr "" msgid "Account Name" msgstr "نام کاربری" -#. Label of the account_sid (Data) field in DocType 'CRM Exotel Settings' -#. Label of the account_sid (Data) field in DocType 'CRM Twilio Settings' -#: crm/fcrm/doctype/crm_exotel_settings/crm_exotel_settings.json -#: crm/fcrm/doctype/crm_twilio_settings/crm_twilio_settings.json +#. Label of the account_sid (Data) field in PageType 'CRM Exotel Settings' +#. Label of the account_sid (Data) field in PageType 'CRM Twilio Settings' +#: crm/fcrm/pagetype/crm_exotel_settings/crm_exotel_settings.json +#: crm/fcrm/pagetype/crm_twilio_settings/crm_twilio_settings.json msgid "Account SID" msgstr "" @@ -296,9 +296,9 @@ msgstr "افزودن مرتب‌سازی" msgid "Add Tab" msgstr "افزودن تب" -#. Label of the add_weekly_holidays_section (Section Break) field in DocType +#. Label of the add_weekly_holidays_section (Section Break) field in PageType #. 'CRM Holiday List' -#: crm/fcrm/doctype/crm_holiday_list/crm_holiday_list.json +#: crm/fcrm/pagetype/crm_holiday_list/crm_holiday_list.json msgid "Add Weekly Holidays" msgstr "افزودن تعطیلات هفتگی" @@ -363,8 +363,8 @@ msgstr "افزودن یادداشت" msgid "Add sample data" msgstr "افزودن داده‌های نمونه" -#. Description of the 'Icon' (Code) field in DocType 'CRM Dropdown Item' -#: crm/fcrm/doctype/crm_dropdown_item/crm_dropdown_item.json +#. Description of the 'Icon' (Code) field in PageType 'CRM Dropdown Item' +#: crm/fcrm/pagetype/crm_dropdown_item/crm_dropdown_item.json msgid "Add svg code or use feather icons e.g 'settings'" msgstr "" @@ -372,8 +372,8 @@ msgstr "" msgid "Add task" msgstr "افزودن تسک" -#. Label of the add_to_holidays (Button) field in DocType 'CRM Holiday List' -#: crm/fcrm/doctype/crm_holiday_list/crm_holiday_list.json +#. Label of the add_to_holidays (Button) field in PageType 'CRM Holiday List' +#: crm/fcrm/pagetype/crm_holiday_list/crm_holiday_list.json msgid "Add to Holidays" msgstr "افزودن به تعطیلات" @@ -385,8 +385,8 @@ msgstr "" msgid "Add, edit, and manage email templates for various CRM communications" msgstr "" -#. Label of the address (Link) field in DocType 'CRM Organization' -#: crm/fcrm/doctype/crm_organization/crm_organization.json +#. Label of the address (Link) field in PageType 'CRM Organization' +#: crm/fcrm/pagetype/crm_organization/crm_organization.json msgid "Address" msgstr "آدرس" @@ -406,14 +406,14 @@ msgid "Agent is unavailable to take the call, please call after some time." msgstr "" #. Name of a role -#: crm/fcrm/doctype/crm_exotel_settings/crm_exotel_settings.json -#: crm/fcrm/doctype/crm_fields_layout/crm_fields_layout.json -#: crm/fcrm/doctype/crm_form_script/crm_form_script.json -#: crm/fcrm/doctype/crm_industry/crm_industry.json -#: crm/fcrm/doctype/crm_lead/crm_lead.json -#: crm/fcrm/doctype/crm_lead_source/crm_lead_source.json -#: crm/fcrm/doctype/crm_lead_status/crm_lead_status.json -#: crm/fcrm/doctype/fcrm_settings/fcrm_settings.json +#: crm/fcrm/pagetype/crm_exotel_settings/crm_exotel_settings.json +#: crm/fcrm/pagetype/crm_fields_layout/crm_fields_layout.json +#: crm/fcrm/pagetype/crm_form_script/crm_form_script.json +#: crm/fcrm/pagetype/crm_industry/crm_industry.json +#: crm/fcrm/pagetype/crm_lead/crm_lead.json +#: crm/fcrm/pagetype/crm_lead_source/crm_lead_source.json +#: crm/fcrm/pagetype/crm_lead_status/crm_lead_status.json +#: crm/fcrm/pagetype/fcrm_settings/fcrm_settings.json #: frontend/src/components/Settings/EmailTemplate/EmailTemplates.vue:76 #: frontend/src/components/Settings/Users.vue:85 msgid "All" @@ -426,16 +426,16 @@ msgstr "همه" msgid "All day" msgstr "" -#. Label of the amount (Currency) field in DocType 'CRM Products' -#: crm/fcrm/doctype/crm_products/crm_products.json +#. Label of the amount (Currency) field in PageType 'CRM Products' +#: crm/fcrm/pagetype/crm_products/crm_products.json #: frontend/src/pages/Contact.vue:499 frontend/src/pages/MobileContact.vue:507 #: frontend/src/pages/MobileOrganization.vue:451 #: frontend/src/pages/Organization.vue:472 msgid "Amount" msgstr "مبلغ" -#. Description of the 'Net Amount' (Currency) field in DocType 'CRM Products' -#: crm/fcrm/doctype/crm_products/crm_products.json +#. Description of the 'Net Amount' (Currency) field in PageType 'CRM Products' +#: crm/fcrm/pagetype/crm_products/crm_products.json msgid "Amount after discount" msgstr "مبلغ پس از تخفیف" @@ -447,13 +447,13 @@ msgstr "یک خطا رخ داد" msgid "An error occurred while updating the document" msgstr "" -#. Description of the 'Favicon' (Attach) field in DocType 'FCRM Settings' -#: crm/fcrm/doctype/fcrm_settings/fcrm_settings.json +#. Description of the 'Favicon' (Attach) field in PageType 'FCRM Settings' +#: crm/fcrm/pagetype/fcrm_settings/fcrm_settings.json msgid "An icon file with .ico extension. Should be 16 x 16 px. Generated using a favicon generator. [favicon-generator.org]" msgstr "یک فایل نماد با پسوند ico. باید 16 در 16 پیکسل باشد. با استفاده از یک ژنراتور فاویکون تولید شده است. [favicon-generator.org]" -#. Description of the 'Logo' (Attach) field in DocType 'FCRM Settings' -#: crm/fcrm/doctype/fcrm_settings/fcrm_settings.json +#. Description of the 'Logo' (Attach) field in PageType 'FCRM Settings' +#: crm/fcrm/pagetype/fcrm_settings/fcrm_settings.json msgid "An image with 1:1 & 2:1 ratio is preferred" msgstr "تصویری با نسبت 1:1 و 2:1 ترجیح داده می‌شود" @@ -461,12 +461,12 @@ msgstr "تصویری با نسبت 1:1 و 2:1 ترجیح داده می‌شود" msgid "And" msgstr "" -#. Label of the annual_revenue (Currency) field in DocType 'CRM Deal' -#. Label of the annual_revenue (Currency) field in DocType 'CRM Lead' -#. Label of the annual_revenue (Currency) field in DocType 'CRM Organization' -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_lead/crm_lead.json -#: crm/fcrm/doctype/crm_organization/crm_organization.json +#. Label of the annual_revenue (Currency) field in PageType 'CRM Deal' +#. Label of the annual_revenue (Currency) field in PageType 'CRM Lead' +#. Label of the annual_revenue (Currency) field in PageType 'CRM Organization' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_lead/crm_lead.json +#: crm/fcrm/pagetype/crm_organization/crm_organization.json msgid "Annual Revenue" msgstr "درآمد سالانه" @@ -488,13 +488,13 @@ msgstr "" msgid "Apply" msgstr "درخواست دادن" -#. Label of the apply_on (Link) field in DocType 'CRM Service Level Agreement' -#: crm/fcrm/doctype/crm_service_level_agreement/crm_service_level_agreement.json +#. Label of the apply_on (Link) field in PageType 'CRM Service Level Agreement' +#: crm/fcrm/pagetype/crm_service_level_agreement/crm_service_level_agreement.json msgid "Apply On" msgstr "اعمال روی" -#. Label of the view (Select) field in DocType 'CRM Form Script' -#: crm/fcrm/doctype/crm_form_script/crm_form_script.json +#. Label of the view (Select) field in PageType 'CRM Form Script' +#: crm/fcrm/pagetype/crm_form_script/crm_form_script.json msgid "Apply To" msgstr "درخواست به" @@ -540,10 +540,10 @@ msgid "Are you sure you want to go back? Unsaved changes will be lost." msgstr "" #: frontend/src/composables/frappecloud.js:24 -msgid "Are you sure you want to login to your Frappe Cloud dashboard?" +msgid "Are you sure you want to login to your Jingrow Cloud dashboard?" msgstr "" -#: crm/fcrm/doctype/erpnext_crm_settings/erpnext_crm_settings.js:9 +#: crm/fcrm/pagetype/erpnext_crm_settings/erpnext_crm_settings.js:9 msgid "Are you sure you want to reset 'Create Quotation from CRM Deal' Form Script?" msgstr "" @@ -555,7 +555,7 @@ msgstr "" msgid "Are you sure you want to unlink {0} linked item(s)?" msgstr "" -#: crm/fcrm/doctype/fcrm_settings/fcrm_settings.py:193 +#: crm/fcrm/pagetype/fcrm_settings/fcrm_settings.py:193 msgid "Ask your manager to set up the Exchange Rate Provider, as default provider does not support currency conversion for {0} to {1}." msgstr "" @@ -581,8 +581,8 @@ msgstr "" msgid "Assign to me" msgstr "به من اختصاص دهید" -#. Label of the assigned_to (Link) field in DocType 'CRM Task' -#: crm/fcrm/doctype/crm_task/crm_task.json +#. Label of the assigned_to (Link) field in PageType 'CRM Task' +#: crm/fcrm/pagetype/crm_task/crm_task.json msgid "Assigned To" msgstr "اختصاص یافته به" @@ -594,13 +594,13 @@ msgstr "" msgid "Assignees" msgstr "" -#. Option for the 'Type' (Select) field in DocType 'CRM Notification' -#: crm/fcrm/doctype/crm_notification/crm_notification.json +#. Option for the 'Type' (Select) field in PageType 'CRM Notification' +#: crm/fcrm/pagetype/crm_notification/crm_notification.json msgid "Assignment" msgstr "تخصیص" -#. Label of a shortcut in the Frappe CRM Workspace -#: crm/fcrm/workspace/frappe_crm/frappe_crm.json +#. Label of a shortcut in the Jingrow CRM Workspace +#: crm/fcrm/workspace/jingrow_crm/jingrow_crm.json msgid "Assignment Rule" msgstr "قانون تخصیص" @@ -678,14 +678,14 @@ msgstr "پیوست ها" msgid "Attendees" msgstr "شرکت کنندگان" -#. Label of the auth_token (Password) field in DocType 'CRM Twilio Settings' -#: crm/fcrm/doctype/crm_twilio_settings/crm_twilio_settings.json +#. Label of the auth_token (Password) field in PageType 'CRM Twilio Settings' +#: crm/fcrm/pagetype/crm_twilio_settings/crm_twilio_settings.json msgid "Auth Token" msgstr "توکن احراز هویت" -#. Label of the auto_update_expected_deal_value (Check) field in DocType 'FCRM +#. Label of the auto_update_expected_deal_value (Check) field in PageType 'FCRM #. Settings' -#: crm/fcrm/doctype/fcrm_settings/fcrm_settings.json +#: crm/fcrm/pagetype/fcrm_settings/fcrm_settings.json msgid "Auto Update Expected Deal Value" msgstr "" @@ -702,8 +702,8 @@ msgid "Auto update of expected deal value enabled" msgstr "" #. Description of the 'Auto Update Expected Deal Value' (Check) field in -#. DocType 'FCRM Settings' -#: crm/fcrm/doctype/fcrm_settings/fcrm_settings.json +#. PageType 'FCRM Settings' +#: crm/fcrm/pagetype/fcrm_settings/fcrm_settings.json #: frontend/src/components/Settings/ForecastingSettings.vue:46 msgid "Automatically update \"Expected Deal Value\" based on the total value of associated products in a deal" msgstr "" @@ -793,8 +793,8 @@ msgstr "بازگشت" msgid "Back to file upload" msgstr "بازگشت به آپلود فایل" -#. Option for the 'Status' (Select) field in DocType 'CRM Task' -#: crm/fcrm/doctype/crm_task/crm_task.json +#. Option for the 'Status' (Select) field in PageType 'CRM Task' +#: crm/fcrm/pagetype/crm_task/crm_task.json msgid "Backlog" msgstr "" @@ -818,8 +818,8 @@ msgstr "" msgid "Brand settings" msgstr "" -#. Label of the branding_tab (Tab Break) field in DocType 'FCRM Settings' -#: crm/fcrm/doctype/fcrm_settings/fcrm_settings.json +#. Label of the branding_tab (Tab Break) field in PageType 'FCRM Settings' +#: crm/fcrm/pagetype/fcrm_settings/fcrm_settings.json msgid "Branding" msgstr "" @@ -827,8 +827,8 @@ msgstr "" msgid "Bulk Edit" msgstr "ویرایش انبوه" -#. Option for the 'Status' (Select) field in DocType 'CRM Call Log' -#: crm/fcrm/doctype/crm_call_log/crm_call_log.json +#. Option for the 'Status' (Select) field in PageType 'CRM Call Log' +#: crm/fcrm/pagetype/crm_call_log/crm_call_log.json msgid "Busy" msgstr "مشغول" @@ -838,174 +838,174 @@ msgstr "مشغول" msgid "CC" msgstr "CC" -#. Name of a DocType -#: crm/fcrm/doctype/crm_call_log/crm_call_log.json +#. Name of a PageType +#: crm/fcrm/pagetype/crm_call_log/crm_call_log.json msgid "CRM Call Log" msgstr "" -#. Name of a DocType -#: crm/fcrm/doctype/crm_communication_status/crm_communication_status.json +#. Name of a PageType +#: crm/fcrm/pagetype/crm_communication_status/crm_communication_status.json msgid "CRM Communication Status" msgstr "" -#. Name of a DocType -#: crm/fcrm/doctype/crm_contacts/crm_contacts.json +#. Name of a PageType +#: crm/fcrm/pagetype/crm_contacts/crm_contacts.json msgid "CRM Contacts" msgstr "" -#. Name of a DocType -#: crm/fcrm/doctype/crm_dashboard/crm_dashboard.json +#. Name of a PageType +#: crm/fcrm/pagetype/crm_dashboard/crm_dashboard.json #: frontend/src/pages/Dashboard.vue:304 msgid "CRM Dashboard" msgstr "داشبورد CRM" -#. Name of a DocType -#: crm/fcrm/doctype/crm_deal/crm_deal.json +#. Name of a PageType +#: crm/fcrm/pagetype/crm_deal/crm_deal.json msgid "CRM Deal" msgstr "" -#. Name of a DocType -#: crm/fcrm/doctype/crm_deal_status/crm_deal_status.json +#. Name of a PageType +#: crm/fcrm/pagetype/crm_deal_status/crm_deal_status.json msgid "CRM Deal Status" msgstr "" -#. Name of a DocType -#: crm/fcrm/doctype/crm_dropdown_item/crm_dropdown_item.json +#. Name of a PageType +#: crm/fcrm/pagetype/crm_dropdown_item/crm_dropdown_item.json msgid "CRM Dropdown Item" msgstr "" -#. Name of a DocType -#: crm/fcrm/doctype/crm_exotel_settings/crm_exotel_settings.json +#. Name of a PageType +#: crm/fcrm/pagetype/crm_exotel_settings/crm_exotel_settings.json msgid "CRM Exotel Settings" msgstr "" -#. Name of a DocType -#: crm/fcrm/doctype/crm_fields_layout/crm_fields_layout.json +#. Name of a PageType +#: crm/fcrm/pagetype/crm_fields_layout/crm_fields_layout.json msgid "CRM Fields Layout" msgstr "" -#. Name of a DocType -#: crm/fcrm/doctype/crm_form_script/crm_form_script.json +#. Name of a PageType +#: crm/fcrm/pagetype/crm_form_script/crm_form_script.json msgid "CRM Form Script" msgstr "" -#. Name of a DocType -#: crm/fcrm/doctype/crm_global_settings/crm_global_settings.json +#. Name of a PageType +#: crm/fcrm/pagetype/crm_global_settings/crm_global_settings.json msgid "CRM Global Settings" msgstr "" -#. Name of a DocType -#: crm/fcrm/doctype/crm_holiday/crm_holiday.json +#. Name of a PageType +#: crm/fcrm/pagetype/crm_holiday/crm_holiday.json msgid "CRM Holiday" msgstr "" -#. Name of a DocType -#: crm/fcrm/doctype/crm_holiday_list/crm_holiday_list.json +#. Name of a PageType +#: crm/fcrm/pagetype/crm_holiday_list/crm_holiday_list.json msgid "CRM Holiday List" msgstr "" -#. Name of a DocType -#: crm/fcrm/doctype/crm_industry/crm_industry.json +#. Name of a PageType +#: crm/fcrm/pagetype/crm_industry/crm_industry.json msgid "CRM Industry" msgstr "" -#. Name of a DocType -#: crm/fcrm/doctype/crm_invitation/crm_invitation.json +#. Name of a PageType +#: crm/fcrm/pagetype/crm_invitation/crm_invitation.json msgid "CRM Invitation" msgstr "" -#. Name of a DocType -#: crm/fcrm/doctype/crm_lead/crm_lead.json +#. Name of a PageType +#: crm/fcrm/pagetype/crm_lead/crm_lead.json msgid "CRM Lead" msgstr "" -#. Name of a DocType -#: crm/fcrm/doctype/crm_lead_source/crm_lead_source.json +#. Name of a PageType +#: crm/fcrm/pagetype/crm_lead_source/crm_lead_source.json msgid "CRM Lead Source" msgstr "" -#. Name of a DocType -#: crm/fcrm/doctype/crm_lead_status/crm_lead_status.json +#. Name of a PageType +#: crm/fcrm/pagetype/crm_lead_status/crm_lead_status.json msgid "CRM Lead Status" msgstr "" -#. Name of a DocType -#: crm/fcrm/doctype/crm_lost_reason/crm_lost_reason.json +#. Name of a PageType +#: crm/fcrm/pagetype/crm_lost_reason/crm_lost_reason.json msgid "CRM Lost Reason" msgstr "" -#. Name of a DocType -#: crm/fcrm/doctype/crm_notification/crm_notification.json +#. Name of a PageType +#: crm/fcrm/pagetype/crm_notification/crm_notification.json msgid "CRM Notification" msgstr "" -#. Name of a DocType -#: crm/fcrm/doctype/crm_organization/crm_organization.json +#. Name of a PageType +#: crm/fcrm/pagetype/crm_organization/crm_organization.json msgid "CRM Organization" msgstr "" -#. Label of a shortcut in the Frappe CRM Workspace -#: crm/fcrm/workspace/frappe_crm/frappe_crm.json +#. Label of a shortcut in the Jingrow CRM Workspace +#: crm/fcrm/workspace/jingrow_crm/jingrow_crm.json msgid "CRM Portal Page" msgstr "" -#. Name of a DocType -#: crm/fcrm/doctype/crm_product/crm_product.json +#. Name of a PageType +#: crm/fcrm/pagetype/crm_product/crm_product.json msgid "CRM Product" msgstr "" -#. Name of a DocType -#: crm/fcrm/doctype/crm_products/crm_products.json +#. Name of a PageType +#: crm/fcrm/pagetype/crm_products/crm_products.json msgid "CRM Products" msgstr "" -#. Name of a DocType -#: crm/fcrm/doctype/crm_service_day/crm_service_day.json +#. Name of a PageType +#: crm/fcrm/pagetype/crm_service_day/crm_service_day.json msgid "CRM Service Day" msgstr "" -#. Name of a DocType -#: crm/fcrm/doctype/crm_service_level_agreement/crm_service_level_agreement.json +#. Name of a PageType +#: crm/fcrm/pagetype/crm_service_level_agreement/crm_service_level_agreement.json msgid "CRM Service Level Agreement" msgstr "" -#. Name of a DocType -#: crm/fcrm/doctype/crm_service_level_priority/crm_service_level_priority.json +#. Name of a PageType +#: crm/fcrm/pagetype/crm_service_level_priority/crm_service_level_priority.json msgid "CRM Service Level Priority" msgstr "" -#. Name of a DocType -#: crm/fcrm/doctype/crm_status_change_log/crm_status_change_log.json +#. Name of a PageType +#: crm/fcrm/pagetype/crm_status_change_log/crm_status_change_log.json msgid "CRM Status Change Log" msgstr "" -#. Name of a DocType -#: crm/fcrm/doctype/crm_task/crm_task.json +#. Name of a PageType +#: crm/fcrm/pagetype/crm_task/crm_task.json msgid "CRM Task" msgstr "" -#. Name of a DocType -#: crm/fcrm/doctype/crm_telephony_agent/crm_telephony_agent.json +#. Name of a PageType +#: crm/fcrm/pagetype/crm_telephony_agent/crm_telephony_agent.json msgid "CRM Telephony Agent" msgstr "" -#. Name of a DocType -#: crm/fcrm/doctype/crm_telephony_phone/crm_telephony_phone.json +#. Name of a PageType +#: crm/fcrm/pagetype/crm_telephony_phone/crm_telephony_phone.json msgid "CRM Telephony Phone" msgstr "" -#. Name of a DocType -#: crm/fcrm/doctype/crm_territory/crm_territory.json +#. Name of a PageType +#: crm/fcrm/pagetype/crm_territory/crm_territory.json msgid "CRM Territory" msgstr "" -#. Name of a DocType -#: crm/fcrm/doctype/crm_twilio_settings/crm_twilio_settings.json +#. Name of a PageType +#: crm/fcrm/pagetype/crm_twilio_settings/crm_twilio_settings.json msgid "CRM Twilio Settings" msgstr "" -#. Name of a DocType -#: crm/fcrm/doctype/crm_view_settings/crm_view_settings.json +#. Name of a PageType +#: crm/fcrm/pagetype/crm_view_settings/crm_view_settings.json msgid "CRM View Settings" msgstr "" @@ -1021,13 +1021,13 @@ msgstr "CSV" msgid "Call Details" msgstr "جزئیات تماس" -#. Label of the receiver (Link) field in DocType 'CRM Call Log' -#: crm/fcrm/doctype/crm_call_log/crm_call_log.json +#. Label of the receiver (Link) field in PageType 'CRM Call Log' +#: crm/fcrm/pagetype/crm_call_log/crm_call_log.json msgid "Call Received By" msgstr "تماس دریافت شده توسط" -#. Description of the 'Duration' (Duration) field in DocType 'CRM Call Log' -#: crm/fcrm/doctype/crm_call_log/crm_call_log.json +#. Description of the 'Duration' (Duration) field in PageType 'CRM Call Log' +#: crm/fcrm/pagetype/crm_call_log/crm_call_log.json msgid "Call duration in seconds" msgstr "مدت زمان تماس بر حسب ثانیه" @@ -1045,8 +1045,8 @@ msgstr "" msgid "Call with John Doe" msgstr "" -#. Label of the caller (Link) field in DocType 'CRM Call Log' -#: crm/fcrm/doctype/crm_call_log/crm_call_log.json +#. Label of the caller (Link) field in PageType 'CRM Call Log' +#: crm/fcrm/pagetype/crm_call_log/crm_call_log.json msgid "Caller" msgstr "" @@ -1083,10 +1083,10 @@ msgstr "دوربین" msgid "Cancel" msgstr "لغو" -#. Option for the 'Status' (Select) field in DocType 'CRM Call Log' -#. Option for the 'Status' (Select) field in DocType 'CRM Task' -#: crm/fcrm/doctype/crm_call_log/crm_call_log.json -#: crm/fcrm/doctype/crm_task/crm_task.json +#. Option for the 'Status' (Select) field in PageType 'CRM Call Log' +#. Option for the 'Status' (Select) field in PageType 'CRM Task' +#: crm/fcrm/pagetype/crm_call_log/crm_call_log.json +#: crm/fcrm/pagetype/crm_task/crm_task.json msgid "Canceled" msgstr "لغو شده" @@ -1094,7 +1094,7 @@ msgstr "لغو شده" msgid "Cannot change role of user with Admin access" msgstr "" -#: crm/fcrm/doctype/fcrm_settings/fcrm_settings.py:34 +#: crm/fcrm/pagetype/fcrm_settings/fcrm_settings.py:34 msgid "Cannot delete standard items {0}" msgstr "آیتم‌های استاندارد {0} را نمی‌توان حذف کرد" @@ -1189,8 +1189,8 @@ msgstr "پاک کردن واگذاری" msgid "Clear Sort" msgstr "" -#. Label of the clear_table (Button) field in DocType 'CRM Holiday List' -#: crm/fcrm/doctype/crm_holiday_list/crm_holiday_list.json +#. Label of the clear_table (Button) field in PageType 'CRM Holiday List' +#: crm/fcrm/pagetype/crm_holiday_list/crm_holiday_list.json msgid "Clear Table" msgstr "پاک کردن جدول" @@ -1211,8 +1211,8 @@ msgstr "بستن" msgid "Close panel" msgstr "" -#. Label of the closed_date (Date) field in DocType 'CRM Deal' -#: crm/fcrm/doctype/crm_deal/crm_deal.json +#. Label of the closed_date (Date) field in PageType 'CRM Deal' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json msgid "Closed Date" msgstr "" @@ -1224,10 +1224,10 @@ msgstr "جمع شدن" msgid "Collapsible" msgstr "تاشو" -#. Label of the color (Select) field in DocType 'CRM Deal Status' -#. Label of the color (Select) field in DocType 'CRM Lead Status' -#: crm/fcrm/doctype/crm_deal_status/crm_deal_status.json -#: crm/fcrm/doctype/crm_lead_status/crm_lead_status.json +#. Label of the color (Select) field in PageType 'CRM Deal Status' +#. Label of the color (Select) field in PageType 'CRM Lead Status' +#: crm/fcrm/pagetype/crm_deal_status/crm_deal_status.json +#: crm/fcrm/pagetype/crm_lead_status/crm_lead_status.json msgid "Color" msgstr "رنگ" @@ -1235,20 +1235,20 @@ msgstr "رنگ" msgid "Column" msgstr "ستون" -#. Label of the column_field (Data) field in DocType 'CRM View Settings' -#: crm/fcrm/doctype/crm_view_settings/crm_view_settings.json +#. Label of the column_field (Data) field in PageType 'CRM View Settings' +#: crm/fcrm/pagetype/crm_view_settings/crm_view_settings.json #: frontend/src/components/Kanban/KanbanSettings.vue:12 msgid "Column Field" msgstr "" -#. Label of the columns (Code) field in DocType 'CRM View Settings' -#: crm/fcrm/doctype/crm_view_settings/crm_view_settings.json +#. Label of the columns (Code) field in PageType 'CRM View Settings' +#: crm/fcrm/pagetype/crm_view_settings/crm_view_settings.json #: frontend/src/components/ColumnSettings.vue:4 msgid "Columns" msgstr "ستون ها" -#. Label of the comment (Link) field in DocType 'CRM Notification' -#: crm/fcrm/doctype/crm_notification/crm_notification.json +#. Label of the comment (Link) field in PageType 'CRM Notification' +#: crm/fcrm/pagetype/crm_notification/crm_notification.json #: frontend/src/components/CommentBox.vue:78 #: frontend/src/components/CommunicationArea.vue:16 #: frontend/src/components/Layouts/AppSidebar.vue:579 @@ -1264,20 +1264,20 @@ msgstr "دیدگاه‌ها" msgid "Common reasons for losing deals" msgstr "" -#. Label of the communication_status (Link) field in DocType 'CRM Deal' -#. Label of the communication_status (Link) field in DocType 'CRM Lead' -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_lead/crm_lead.json +#. Label of the communication_status (Link) field in PageType 'CRM Deal' +#. Label of the communication_status (Link) field in PageType 'CRM Lead' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_lead/crm_lead.json msgid "Communication Status" msgstr "" -#. Label of a shortcut in the Frappe CRM Workspace -#: crm/fcrm/workspace/frappe_crm/frappe_crm.json +#. Label of a shortcut in the Jingrow CRM Workspace +#: crm/fcrm/workspace/jingrow_crm/jingrow_crm.json msgid "Communication Statuses" msgstr "" -#. Label of the erpnext_company (Data) field in DocType 'ERPNext CRM Settings' -#: crm/fcrm/doctype/erpnext_crm_settings/erpnext_crm_settings.json +#. Label of the erpnext_company (Data) field in PageType 'ERPNext CRM Settings' +#: crm/fcrm/pagetype/erpnext_crm_settings/erpnext_crm_settings.json msgid "Company in ERPNext Site" msgstr "" @@ -1285,18 +1285,18 @@ msgstr "" msgid "Complete Registration" msgstr "ثبت نام کامل" -#. Option for the 'Status' (Select) field in DocType 'CRM Call Log' -#: crm/fcrm/doctype/crm_call_log/crm_call_log.json +#. Option for the 'Status' (Select) field in PageType 'CRM Call Log' +#: crm/fcrm/pagetype/crm_call_log/crm_call_log.json msgid "Completed" msgstr "تکمیل شده" -#. Option for the 'Device' (Select) field in DocType 'CRM Telephony Agent' -#: crm/fcrm/doctype/crm_telephony_agent/crm_telephony_agent.json +#. Option for the 'Device' (Select) field in PageType 'CRM Telephony Agent' +#: crm/fcrm/pagetype/crm_telephony_agent/crm_telephony_agent.json msgid "Computer" msgstr "کامپیوتر" -#. Label of the condition (Code) field in DocType 'CRM Service Level Agreement' -#: crm/fcrm/doctype/crm_service_level_agreement/crm_service_level_agreement.json +#. Label of the condition (Code) field in PageType 'CRM Service Level Agreement' +#: crm/fcrm/pagetype/crm_service_level_agreement/crm_service_level_agreement.json msgid "Condition" msgstr "شرط" @@ -1354,17 +1354,17 @@ msgstr "" msgid "Connect your email" msgstr "" -#. Label of the contact (Link) field in DocType 'CRM Contacts' -#. Label of the contact (Link) field in DocType 'CRM Deal' -#: crm/fcrm/doctype/crm_contacts/crm_contacts.json -#: crm/fcrm/doctype/crm_deal/crm_deal.json +#. Label of the contact (Link) field in PageType 'CRM Contacts' +#. Label of the contact (Link) field in PageType 'CRM Deal' +#: crm/fcrm/pagetype/crm_contacts/crm_contacts.json +#: crm/fcrm/pagetype/crm_deal/crm_deal.json #: frontend/src/components/Layouts/AppSidebar.vue:552 #: frontend/src/components/Modals/ConvertToDealModal.vue:51 #: frontend/src/pages/MobileLead.vue:145 msgid "Contact" msgstr "مخاطب" -#: crm/fcrm/doctype/crm_lead/crm_lead.py:212 +#: crm/fcrm/pagetype/crm_lead/crm_lead.py:212 msgid "Contact Already Exists" msgstr "مخاطب از قبل وجود دارد" @@ -1384,7 +1384,7 @@ msgstr "مخاطب افزوده شد" msgid "Contact already added" msgstr "مخاطب قبلاً اضافه شده است" -#: crm/fcrm/doctype/crm_lead/crm_lead.py:211 +#: crm/fcrm/pagetype/crm_lead/crm_lead.py:211 msgid "Contact already exists with {0}" msgstr "مخاطب از قبل با {0} وجود دارد" @@ -1405,18 +1405,18 @@ msgstr "مخاطب حذف شد" msgid "Contact updated" msgstr "" -#. Label of the contacts_tab (Tab Break) field in DocType 'CRM Deal' -#. Label of the contacts (Table) field in DocType 'CRM Deal' -#. Label of a shortcut in the Frappe CRM Workspace -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/workspace/frappe_crm/frappe_crm.json +#. Label of the contacts_tab (Tab Break) field in PageType 'CRM Deal' +#. Label of the contacts (Table) field in PageType 'CRM Deal' +#. Label of a shortcut in the Jingrow CRM Workspace +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/workspace/jingrow_crm/jingrow_crm.json #: frontend/src/pages/Contact.vue:234 frontend/src/pages/MobileContact.vue:212 #: frontend/src/pages/MobileOrganization.vue:331 msgid "Contacts" msgstr "مخاطب" -#. Label of the content (Text Editor) field in DocType 'FCRM Note' -#: crm/fcrm/doctype/fcrm_note/fcrm_note.json +#. Label of the content (Text Editor) field in PageType 'FCRM Note' +#: crm/fcrm/pagetype/fcrm_note/fcrm_note.json #: frontend/src/components/Modals/NoteModal.vue:33 #: frontend/src/components/Settings/EmailTemplate/EditEmailTemplate.vue:89 #: frontend/src/components/Settings/EmailTemplate/EditEmailTemplate.vue:102 @@ -1456,8 +1456,8 @@ msgstr "" msgid "Convert to Deal" msgstr "" -#. Label of the converted (Check) field in DocType 'CRM Lead' -#: crm/fcrm/doctype/crm_lead/crm_lead.json +#. Label of the converted (Check) field in PageType 'CRM Lead' +#: crm/fcrm/pagetype/crm_lead/crm_lead.json msgid "Converted" msgstr "برنده" @@ -1533,9 +1533,9 @@ msgstr "" msgid "Create an event" msgstr "ایجاد یک رویداد" -#. Label of the create_customer_on_status_change (Check) field in DocType +#. Label of the create_customer_on_status_change (Check) field in PageType #. 'ERPNext CRM Settings' -#: crm/fcrm/doctype/erpnext_crm_settings/erpnext_crm_settings.json +#: crm/fcrm/pagetype/erpnext_crm_settings/erpnext_crm_settings.json msgid "Create customer on status change" msgstr "ایجاد مشتری در صورت تغییر وضعیت" @@ -1560,13 +1560,13 @@ msgstr "" msgid "Create your first task" msgstr "" -#. Label of the currency (Link) field in DocType 'CRM Deal' -#. Label of the currency (Link) field in DocType 'CRM Organization' -#. Label of the currency (Link) field in DocType 'FCRM Settings' -#. Label of the currency_tab (Tab Break) field in DocType 'FCRM Settings' -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_organization/crm_organization.json -#: crm/fcrm/doctype/fcrm_settings/fcrm_settings.json +#. Label of the currency (Link) field in PageType 'CRM Deal' +#. Label of the currency (Link) field in PageType 'CRM Organization' +#. Label of the currency (Link) field in PageType 'FCRM Settings' +#. Label of the currency_tab (Tab Break) field in PageType 'FCRM Settings' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_organization/crm_organization.json +#: crm/fcrm/pagetype/fcrm_settings/fcrm_settings.json #: frontend/src/components/Settings/CurrencySettings.vue:31 msgid "Currency" msgstr "واحد پول" @@ -1631,13 +1631,13 @@ msgstr "" msgid "Data" msgstr "داده ها" -#. Option for the 'Type' (Select) field in DocType 'CRM Fields Layout' -#: crm/fcrm/doctype/crm_fields_layout/crm_fields_layout.json +#. Option for the 'Type' (Select) field in PageType 'CRM Fields Layout' +#: crm/fcrm/pagetype/crm_fields_layout/crm_fields_layout.json msgid "Data Fields" msgstr "فیلدهای داده" -#. Label of the date (Date) field in DocType 'CRM Holiday' -#: crm/api/dashboard.py:601 crm/fcrm/doctype/crm_holiday/crm_holiday.json +#. Label of the date (Date) field in PageType 'CRM Holiday' +#: crm/api/dashboard.py:601 crm/fcrm/pagetype/crm_holiday/crm_holiday.json #: frontend/src/components/Calendar/CalendarEventPanel.vue:202 msgid "Date" msgstr "تاریخ" @@ -1660,23 +1660,23 @@ msgstr "تاریخ و زمان" msgid "Deal" msgstr "" -#. Label of the deal_owner (Link) field in DocType 'CRM Deal' -#: crm/fcrm/doctype/crm_deal/crm_deal.json +#. Label of the deal_owner (Link) field in PageType 'CRM Deal' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json msgid "Deal Owner" msgstr "صاحب معامله" -#. Label of the deal_status (Link) field in DocType 'ERPNext CRM Settings' -#: crm/fcrm/doctype/erpnext_crm_settings/erpnext_crm_settings.json +#. Label of the deal_status (Link) field in PageType 'ERPNext CRM Settings' +#: crm/fcrm/pagetype/erpnext_crm_settings/erpnext_crm_settings.json msgid "Deal Status" msgstr "" -#. Label of a shortcut in the Frappe CRM Workspace -#: crm/fcrm/workspace/frappe_crm/frappe_crm.json +#. Label of a shortcut in the Jingrow CRM Workspace +#: crm/fcrm/workspace/jingrow_crm/jingrow_crm.json msgid "Deal Statuses" msgstr "" -#. Label of the deal_value (Currency) field in DocType 'CRM Deal' -#: crm/fcrm/doctype/crm_deal/crm_deal.json +#. Label of the deal_value (Currency) field in PageType 'CRM Deal' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json msgid "Deal Value" msgstr "" @@ -1694,8 +1694,8 @@ msgstr "" msgid "Deal value" msgstr "" -#. Label of a shortcut in the Frappe CRM Workspace -#: crm/fcrm/workspace/frappe_crm/frappe_crm.json +#. Label of a shortcut in the Jingrow CRM Workspace +#: crm/fcrm/workspace/jingrow_crm/jingrow_crm.json #: frontend/src/pages/Deal.vue:480 frontend/src/pages/MobileContact.vue:288 #: frontend/src/pages/MobileDeal.vue:384 #: frontend/src/pages/MobileOrganization.vue:325 @@ -1732,8 +1732,8 @@ msgstr "" msgid "Dear {{ lead_name }}, \\n\\nThis is a reminder for the payment of {{ grand_total }}. \\n\\nThanks, \\nFrappé" msgstr "" -#. Label of the default (Check) field in DocType 'CRM Service Level Agreement' -#: crm/fcrm/doctype/crm_service_level_agreement/crm_service_level_agreement.json +#. Label of the default (Check) field in PageType 'CRM Service Level Agreement' +#: crm/fcrm/pagetype/crm_service_level_agreement/crm_service_level_agreement.json msgid "Default" msgstr "پیش‌فرض" @@ -1745,8 +1745,8 @@ msgstr "صندوق ورودی پیش‌فرض" msgid "Default Incoming" msgstr "ورودی پیش‌فرض" -#. Label of the default_medium (Select) field in DocType 'CRM Telephony Agent' -#: crm/fcrm/doctype/crm_telephony_agent/crm_telephony_agent.json +#. Label of the default_medium (Select) field in PageType 'CRM Telephony Agent' +#: crm/fcrm/pagetype/crm_telephony_agent/crm_telephony_agent.json msgid "Default Medium" msgstr "" @@ -1754,9 +1754,9 @@ msgstr "" msgid "Default Outgoing" msgstr "خروجی پیش‌فرض" -#. Label of the default_priority (Check) field in DocType 'CRM Service Level +#. Label of the default_priority (Check) field in PageType 'CRM Service Level #. Priority' -#: crm/fcrm/doctype/crm_service_level_priority/crm_service_level_priority.json +#: crm/fcrm/pagetype/crm_service_level_priority/crm_service_level_priority.json msgid "Default Priority" msgstr "اولویت پیش‌فرض" @@ -1768,7 +1768,7 @@ msgstr "ارسال پیش‌فرض" msgid "Default Sending and Inbox" msgstr "ارسال پیش‌فرض و صندوق ورودی" -#: crm/fcrm/doctype/crm_service_level_agreement/crm_service_level_agreement.py:33 +#: crm/fcrm/pagetype/crm_service_level_agreement/crm_service_level_agreement.py:33 msgid "Default Service Level Agreement already exists for {0}" msgstr "" @@ -1788,8 +1788,8 @@ msgstr "" msgid "Default medium" msgstr "" -#: crm/fcrm/doctype/fcrm_settings/fcrm_settings.js:18 -#: crm/fcrm/doctype/fcrm_settings/fcrm_settings.js:30 +#: crm/fcrm/pagetype/fcrm_settings/fcrm_settings.js:18 +#: crm/fcrm/pagetype/fcrm_settings/fcrm_settings.js:30 msgid "Default statuses, custom fields and layouts restored successfully." msgstr "" @@ -1825,7 +1825,7 @@ msgstr "" msgid "Delete" msgstr "حذف" -#: crm/fcrm/doctype/fcrm_settings/fcrm_settings.js:26 +#: crm/fcrm/pagetype/fcrm_settings/fcrm_settings.js:26 msgid "Delete & Restore" msgstr "حذف و بازیابی" @@ -1883,14 +1883,14 @@ msgstr "" msgid "Delete {0} items" msgstr "" -#. Label of the description (Text Editor) field in DocType 'CRM Holiday' -#. Label of the description (Text Editor) field in DocType 'CRM Lost Reason' -#. Label of the description (Text Editor) field in DocType 'CRM Product' -#. Label of the description (Text Editor) field in DocType 'CRM Task' -#: crm/fcrm/doctype/crm_holiday/crm_holiday.json -#: crm/fcrm/doctype/crm_lost_reason/crm_lost_reason.json -#: crm/fcrm/doctype/crm_product/crm_product.json -#: crm/fcrm/doctype/crm_task/crm_task.json +#. Label of the description (Text Editor) field in PageType 'CRM Holiday' +#. Label of the description (Text Editor) field in PageType 'CRM Lost Reason' +#. Label of the description (Text Editor) field in PageType 'CRM Product' +#. Label of the description (Text Editor) field in PageType 'CRM Task' +#: crm/fcrm/pagetype/crm_holiday/crm_holiday.json +#: crm/fcrm/pagetype/crm_lost_reason/crm_lost_reason.json +#: crm/fcrm/pagetype/crm_product/crm_product.json +#: crm/fcrm/pagetype/crm_task/crm_task.json #: frontend/src/components/Calendar/CalendarEventPanel.vue:152 #: frontend/src/components/Modals/EventModal.vue:134 #: frontend/src/components/Modals/TaskModal.vue:36 @@ -1907,29 +1907,29 @@ msgstr "توضیحات الزامی است" msgid "Desk" msgstr "پیشخوان" -#. Label of the details (Tab Break) field in DocType 'CRM Lead' -#. Label of the details (Text Editor) field in DocType 'CRM Lead Source' -#: crm/fcrm/doctype/crm_lead/crm_lead.json -#: crm/fcrm/doctype/crm_lead_source/crm_lead_source.json +#. Label of the details (Tab Break) field in PageType 'CRM Lead' +#. Label of the details (Text Editor) field in PageType 'CRM Lead Source' +#: crm/fcrm/pagetype/crm_lead/crm_lead.json +#: crm/fcrm/pagetype/crm_lead_source/crm_lead_source.json #: frontend/src/pages/MobileContact.vue:283 #: frontend/src/pages/MobileDeal.vue:424 frontend/src/pages/MobileLead.vue:331 #: frontend/src/pages/MobileOrganization.vue:320 msgid "Details" msgstr "جزئیات" -#. Label of the call_receiving_device (Select) field in DocType 'CRM Telephony +#. Label of the call_receiving_device (Select) field in PageType 'CRM Telephony #. Agent' -#: crm/fcrm/doctype/crm_telephony_agent/crm_telephony_agent.json +#: crm/fcrm/pagetype/crm_telephony_agent/crm_telephony_agent.json #: frontend/src/components/FilesUploader/FilesUploaderArea.vue:39 msgid "Device" msgstr "دستگاه" -#: crm/fcrm/doctype/crm_form_script/crm_form_script.js:30 +#: crm/fcrm/pagetype/crm_form_script/crm_form_script.js:30 msgid "Disable" msgstr "غیر فعال کردن" -#. Label of the disabled (Check) field in DocType 'CRM Product' -#: crm/fcrm/doctype/crm_product/crm_product.json +#. Label of the disabled (Check) field in PageType 'CRM Product' +#: crm/fcrm/pagetype/crm_product/crm_product.json msgid "Disabled" msgstr "غیرفعال" @@ -1943,27 +1943,27 @@ msgstr "دور انداختن" msgid "Discard unsaved changes?" msgstr "" -#. Label of the discount_percentage (Percent) field in DocType 'CRM Products' -#: crm/fcrm/doctype/crm_products/crm_products.json +#. Label of the discount_percentage (Percent) field in PageType 'CRM Products' +#: crm/fcrm/pagetype/crm_products/crm_products.json msgid "Discount %" msgstr "تخفیف %" -#. Label of the discount_amount (Currency) field in DocType 'CRM Products' -#: crm/fcrm/doctype/crm_products/crm_products.json +#. Label of the discount_amount (Currency) field in PageType 'CRM Products' +#: crm/fcrm/pagetype/crm_products/crm_products.json msgid "Discount Amount" msgstr "مبلغ تخفیف" -#. Label of the dt (Link) field in DocType 'CRM Form Script' -#. Label of the dt (Link) field in DocType 'CRM Global Settings' -#. Label of the dt (Link) field in DocType 'CRM View Settings' -#: crm/fcrm/doctype/crm_form_script/crm_form_script.json -#: crm/fcrm/doctype/crm_global_settings/crm_global_settings.json -#: crm/fcrm/doctype/crm_view_settings/crm_view_settings.json -msgid "DocType" -msgstr "DocType" +#. Label of the dt (Link) field in PageType 'CRM Form Script' +#. Label of the dt (Link) field in PageType 'CRM Global Settings' +#. Label of the dt (Link) field in PageType 'CRM View Settings' +#: crm/fcrm/pagetype/crm_form_script/crm_form_script.json +#: crm/fcrm/pagetype/crm_global_settings/crm_global_settings.json +#: crm/fcrm/pagetype/crm_view_settings/crm_view_settings.json +msgid "PageType" +msgstr "PageType" -#. Label of the dt (Link) field in DocType 'CRM Fields Layout' -#: crm/fcrm/doctype/crm_fields_layout/crm_fields_layout.json +#. Label of the dt (Link) field in PageType 'CRM Fields Layout' +#: crm/fcrm/pagetype/crm_fields_layout/crm_fields_layout.json msgid "Document Type" msgstr "نوع سند" @@ -1983,8 +1983,8 @@ msgstr "" msgid "Documentation" msgstr "مستندات" -#. Option for the 'Status' (Select) field in DocType 'CRM Task' -#: crm/fcrm/doctype/crm_task/crm_task.json +#. Option for the 'Status' (Select) field in PageType 'CRM Task' +#: crm/fcrm/pagetype/crm_task/crm_task.json msgid "Done" msgstr "انجام شده" @@ -2006,13 +2006,13 @@ msgstr "فایل‌ها را به اینجا بکشید و رها کنید یا msgid "Drop files here" msgstr "" -#. Label of the dropdown_items_tab (Tab Break) field in DocType 'FCRM Settings' -#: crm/fcrm/doctype/fcrm_settings/fcrm_settings.json +#. Label of the dropdown_items_tab (Tab Break) field in PageType 'FCRM Settings' +#: crm/fcrm/pagetype/fcrm_settings/fcrm_settings.json msgid "Dropdown Items" msgstr "" -#. Label of the due_date (Datetime) field in DocType 'CRM Task' -#: crm/fcrm/doctype/crm_task/crm_task.json +#. Label of the due_date (Datetime) field in PageType 'CRM Task' +#: crm/fcrm/pagetype/crm_task/crm_task.json msgid "Due Date" msgstr "سررسید" @@ -2048,10 +2048,10 @@ msgstr "" msgid "Duplicate template" msgstr "" -#. Label of the duration (Duration) field in DocType 'CRM Call Log' -#. Label of the duration (Duration) field in DocType 'CRM Status Change Log' -#: crm/fcrm/doctype/crm_call_log/crm_call_log.json -#: crm/fcrm/doctype/crm_status_change_log/crm_status_change_log.json +#. Label of the duration (Duration) field in PageType 'CRM Call Log' +#. Label of the duration (Duration) field in PageType 'CRM Status Change Log' +#: crm/fcrm/pagetype/crm_call_log/crm_call_log.json +#: crm/fcrm/pagetype/crm_status_change_log/crm_status_change_log.json msgid "Duration" msgstr "مدت زمان" @@ -2060,28 +2060,28 @@ msgstr "مدت زمان" msgid "ERPNext" msgstr "ERPNext" -#. Name of a DocType -#: crm/fcrm/doctype/erpnext_crm_settings/erpnext_crm_settings.json +#. Name of a PageType +#: crm/fcrm/pagetype/erpnext_crm_settings/erpnext_crm_settings.json msgid "ERPNext CRM Settings" msgstr "" -#. Label of the section_break_oubd (Section Break) field in DocType 'ERPNext +#. Label of the section_break_oubd (Section Break) field in PageType 'ERPNext #. CRM Settings' -#: crm/fcrm/doctype/erpnext_crm_settings/erpnext_crm_settings.json +#: crm/fcrm/pagetype/erpnext_crm_settings/erpnext_crm_settings.json msgid "ERPNext Site API's" msgstr "" -#. Label of the erpnext_site_url (Data) field in DocType 'ERPNext CRM Settings' -#: crm/fcrm/doctype/erpnext_crm_settings/erpnext_crm_settings.json +#. Label of the erpnext_site_url (Data) field in PageType 'ERPNext CRM Settings' +#: crm/fcrm/pagetype/erpnext_crm_settings/erpnext_crm_settings.json msgid "ERPNext Site URL" msgstr "" -#: crm/fcrm/doctype/erpnext_crm_settings/erpnext_crm_settings.py:25 +#: crm/fcrm/pagetype/erpnext_crm_settings/erpnext_crm_settings.py:25 msgid "ERPNext is not installed in the current site" msgstr "" -#: crm/fcrm/doctype/erpnext_crm_settings/erpnext_crm_settings.py:98 -#: crm/fcrm/doctype/erpnext_crm_settings/erpnext_crm_settings.py:124 +#: crm/fcrm/pagetype/erpnext_crm_settings/erpnext_crm_settings.py:98 +#: crm/fcrm/pagetype/erpnext_crm_settings/erpnext_crm_settings.py:124 msgid "ERPNext is not integrated with the CRM" msgstr "" @@ -2191,12 +2191,12 @@ msgstr "در حال ویرایش ردیف {0}" msgid "Editing event" msgstr "" -#. Label of the email (Data) field in DocType 'CRM Contacts' -#. Label of the email (Data) field in DocType 'CRM Invitation' -#. Label of the email (Data) field in DocType 'CRM Lead' -#: crm/fcrm/doctype/crm_contacts/crm_contacts.json -#: crm/fcrm/doctype/crm_invitation/crm_invitation.json -#: crm/fcrm/doctype/crm_lead/crm_lead.json frontend/src/pages/Contact.vue:510 +#. Label of the email (Data) field in PageType 'CRM Contacts' +#. Label of the email (Data) field in PageType 'CRM Invitation' +#. Label of the email (Data) field in PageType 'CRM Lead' +#: crm/fcrm/pagetype/crm_contacts/crm_contacts.json +#: crm/fcrm/pagetype/crm_invitation/crm_invitation.json +#: crm/fcrm/pagetype/crm_lead/crm_lead.json frontend/src/pages/Contact.vue:510 #: frontend/src/pages/MobileContact.vue:518 #: frontend/src/pages/MobileOrganization.vue:462 #: frontend/src/pages/MobileOrganization.vue:490 @@ -2213,8 +2213,8 @@ msgstr "" msgid "Email ID is required" msgstr "" -#. Label of the email_sent_at (Datetime) field in DocType 'CRM Invitation' -#: crm/fcrm/doctype/crm_invitation/crm_invitation.json +#. Label of the email_sent_at (Datetime) field in PageType 'CRM Invitation' +#: crm/fcrm/pagetype/crm_invitation/crm_invitation.json msgid "Email Sent At" msgstr "ایمیل ارسال شده در" @@ -2272,12 +2272,12 @@ msgstr "" msgid "Empty - Choose a field to sort by" msgstr "" -#: crm/fcrm/doctype/crm_form_script/crm_form_script.js:30 +#: crm/fcrm/pagetype/crm_form_script/crm_form_script.js:30 msgid "Enable" msgstr "فعال کردن" -#. Label of the enable_forecasting (Check) field in DocType 'FCRM Settings' -#: crm/fcrm/doctype/fcrm_settings/fcrm_settings.json +#. Label of the enable_forecasting (Check) field in PageType 'FCRM Settings' +#: crm/fcrm/pagetype/fcrm_settings/fcrm_settings.json msgid "Enable Forecasting" msgstr "" @@ -2293,18 +2293,18 @@ msgstr "خروجی را فعال کنید" msgid "Enable forecasting" msgstr "" -#. Label of the enabled (Check) field in DocType 'CRM Exotel Settings' -#. Label of the enabled (Check) field in DocType 'CRM Form Script' -#. Label of the enabled (Check) field in DocType 'CRM Service Level Agreement' -#. Label of the enabled (Check) field in DocType 'CRM Twilio Settings' -#. Label of the enabled (Check) field in DocType 'ERPNext CRM Settings' -#. Label of the enabled (Check) field in DocType 'Helpdesk CRM Settings' -#: crm/fcrm/doctype/crm_exotel_settings/crm_exotel_settings.json -#: crm/fcrm/doctype/crm_form_script/crm_form_script.json -#: crm/fcrm/doctype/crm_service_level_agreement/crm_service_level_agreement.json -#: crm/fcrm/doctype/crm_twilio_settings/crm_twilio_settings.json -#: crm/fcrm/doctype/erpnext_crm_settings/erpnext_crm_settings.json -#: crm/fcrm/doctype/helpdesk_crm_settings/helpdesk_crm_settings.json +#. Label of the enabled (Check) field in PageType 'CRM Exotel Settings' +#. Label of the enabled (Check) field in PageType 'CRM Form Script' +#. Label of the enabled (Check) field in PageType 'CRM Service Level Agreement' +#. Label of the enabled (Check) field in PageType 'CRM Twilio Settings' +#. Label of the enabled (Check) field in PageType 'ERPNext CRM Settings' +#. Label of the enabled (Check) field in PageType 'Helpdesk CRM Settings' +#: crm/fcrm/pagetype/crm_exotel_settings/crm_exotel_settings.json +#: crm/fcrm/pagetype/crm_form_script/crm_form_script.json +#: crm/fcrm/pagetype/crm_service_level_agreement/crm_service_level_agreement.json +#: crm/fcrm/pagetype/crm_twilio_settings/crm_twilio_settings.json +#: crm/fcrm/pagetype/erpnext_crm_settings/erpnext_crm_settings.json +#: crm/fcrm/pagetype/helpdesk_crm_settings/helpdesk_crm_settings.json #: frontend/src/components/Settings/AssignmentRules/AssignmentRuleView.vue:32 #: frontend/src/components/Settings/AssignmentRules/AssignmentRulesList.vue:21 #: frontend/src/components/Settings/EmailTemplate/EditEmailTemplate.vue:18 @@ -2313,15 +2313,15 @@ msgstr "" msgid "Enabled" msgstr "فعال" -#. Label of the end_date (Date) field in DocType 'CRM Service Level Agreement' -#: crm/fcrm/doctype/crm_service_level_agreement/crm_service_level_agreement.json +#. Label of the end_date (Date) field in PageType 'CRM Service Level Agreement' +#: crm/fcrm/pagetype/crm_service_level_agreement/crm_service_level_agreement.json msgid "End Date" msgstr "تاریخ پایان" -#. Label of the end_time (Datetime) field in DocType 'CRM Call Log' -#. Label of the end_time (Time) field in DocType 'CRM Service Day' -#: crm/fcrm/doctype/crm_call_log/crm_call_log.json -#: crm/fcrm/doctype/crm_service_day/crm_service_day.json +#. Label of the end_time (Datetime) field in PageType 'CRM Call Log' +#. Label of the end_time (Time) field in PageType 'CRM Service Day' +#: crm/fcrm/pagetype/crm_call_log/crm_call_log.json +#: crm/fcrm/pagetype/crm_service_day/crm_service_day.json #: frontend/src/components/Calendar/CalendarEventPanel.vue:242 #: frontend/src/components/Modals/EventModal.vue:112 msgid "End Time" @@ -2362,15 +2362,15 @@ msgstr "" msgid "Error updating field" msgstr "" -#: crm/fcrm/doctype/erpnext_crm_settings/erpnext_crm_settings.py:279 +#: crm/fcrm/pagetype/erpnext_crm_settings/erpnext_crm_settings.py:279 msgid "Error while creating customer in ERPNext, check error log for more details" msgstr "" -#: crm/fcrm/doctype/erpnext_crm_settings/erpnext_crm_settings.py:191 +#: crm/fcrm/pagetype/erpnext_crm_settings/erpnext_crm_settings.py:191 msgid "Error while creating prospect in ERPNext, check error log for more details" msgstr "" -#: crm/fcrm/doctype/erpnext_crm_settings/erpnext_crm_settings.py:117 +#: crm/fcrm/pagetype/erpnext_crm_settings/erpnext_crm_settings.py:117 msgid "Error while fetching customer in ERPNext, check error log for more details" msgstr "" @@ -2395,16 +2395,16 @@ msgstr "مناسبت ها" msgid "Excel" msgstr "اکسل" -#. Label of the exchange_rate (Float) field in DocType 'CRM Deal' -#. Label of the exchange_rate (Float) field in DocType 'CRM Organization' -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_organization/crm_organization.json +#. Label of the exchange_rate (Float) field in PageType 'CRM Deal' +#. Label of the exchange_rate (Float) field in PageType 'CRM Organization' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_organization/crm_organization.json msgid "Exchange Rate" msgstr "قیمت ارز" -#. Label of the exchange_rate_provider_section (Section Break) field in DocType +#. Label of the exchange_rate_provider_section (Section Break) field in PageType #. 'FCRM Settings' -#: crm/fcrm/doctype/fcrm_settings/fcrm_settings.json +#: crm/fcrm/pagetype/fcrm_settings/fcrm_settings.json msgid "Exchange Rate Provider" msgstr "" @@ -2412,12 +2412,12 @@ msgstr "" msgid "Exchange rate provider" msgstr "" -#. Option for the 'Telephony Medium' (Select) field in DocType 'CRM Call Log' -#. Label of the exotel (Check) field in DocType 'CRM Telephony Agent' -#. Option for the 'Default Medium' (Select) field in DocType 'CRM Telephony +#. Option for the 'Telephony Medium' (Select) field in PageType 'CRM Call Log' +#. Label of the exotel (Check) field in PageType 'CRM Telephony Agent' +#. Option for the 'Default Medium' (Select) field in PageType 'CRM Telephony #. Agent' -#: crm/fcrm/doctype/crm_call_log/crm_call_log.json -#: crm/fcrm/doctype/crm_telephony_agent/crm_telephony_agent.json +#: crm/fcrm/pagetype/crm_call_log/crm_call_log.json +#: crm/fcrm/pagetype/crm_telephony_agent/crm_telephony_agent.json #: frontend/src/components/Layouts/AppSidebar.vue:602 #: frontend/src/components/Settings/TelephonySettings.vue:41 #: frontend/src/components/Settings/TelephonySettings.vue:63 @@ -2428,8 +2428,8 @@ msgstr "" msgid "Exotel Exception" msgstr "" -#. Label of the exotel_number (Data) field in DocType 'CRM Telephony Agent' -#: crm/fcrm/doctype/crm_telephony_agent/crm_telephony_agent.json +#. Label of the exotel_number (Data) field in PageType 'CRM Telephony Agent' +#: crm/fcrm/pagetype/crm_telephony_agent/crm_telephony_agent.json msgid "Exotel Number" msgstr "" @@ -2453,26 +2453,26 @@ msgstr "" msgid "Expand" msgstr "بسط دادن" -#. Label of the expected_closure_date (Date) field in DocType 'CRM Deal' -#: crm/fcrm/doctype/crm_deal/crm_deal.json +#. Label of the expected_closure_date (Date) field in PageType 'CRM Deal' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json msgid "Expected Closure Date" msgstr "" -#: crm/fcrm/doctype/crm_deal/crm_deal.py:173 +#: crm/fcrm/pagetype/crm_deal/crm_deal.py:173 msgid "Expected Closure Date is required." msgstr "" -#. Label of the expected_deal_value (Currency) field in DocType 'CRM Deal' -#: crm/fcrm/doctype/crm_deal/crm_deal.json +#. Label of the expected_deal_value (Currency) field in PageType 'CRM Deal' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json msgid "Expected Deal Value" msgstr "" -#: crm/fcrm/doctype/crm_deal/crm_deal.py:171 +#: crm/fcrm/pagetype/crm_deal/crm_deal.py:171 msgid "Expected Deal Value is required." msgstr "" -#. Option for the 'Status' (Select) field in DocType 'CRM Invitation' -#: crm/fcrm/doctype/crm_invitation/crm_invitation.json +#. Option for the 'Status' (Select) field in PageType 'CRM Invitation' +#: crm/fcrm/pagetype/crm_invitation/crm_invitation.json msgid "Expired" msgstr "منقضی شده" @@ -2489,22 +2489,22 @@ msgstr "" msgid "Export Type" msgstr "نوع برون‌بُرد" -#. Name of a DocType -#: crm/fcrm/doctype/fcrm_note/fcrm_note.json +#. Name of a PageType +#: crm/fcrm/pagetype/fcrm_note/fcrm_note.json msgid "FCRM Note" msgstr "" -#. Name of a DocType -#: crm/fcrm/doctype/fcrm_settings/fcrm_settings.json +#. Name of a PageType +#: crm/fcrm/pagetype/fcrm_settings/fcrm_settings.json msgid "FCRM Settings" msgstr "" -#. Option for the 'Status' (Select) field in DocType 'CRM Call Log' -#. Option for the 'SLA Status' (Select) field in DocType 'CRM Deal' -#. Option for the 'SLA Status' (Select) field in DocType 'CRM Lead' -#: crm/fcrm/doctype/crm_call_log/crm_call_log.json -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_lead/crm_lead.json +#. Option for the 'Status' (Select) field in PageType 'CRM Call Log' +#. Option for the 'SLA Status' (Select) field in PageType 'CRM Deal' +#. Option for the 'SLA Status' (Select) field in PageType 'CRM Lead' +#: crm/fcrm/pagetype/crm_call_log/crm_call_log.json +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_lead/crm_lead.json msgid "Failed" msgstr "ناموفق" @@ -2528,7 +2528,7 @@ msgstr "" msgid "Failed to delete template" msgstr "" -#: crm/fcrm/doctype/fcrm_settings/fcrm_settings.py:205 +#: crm/fcrm/pagetype/fcrm_settings/fcrm_settings.py:205 msgid "Failed to fetch exchange rate from {0} to {1} on {2}. Please check your internet connection or try again later." msgstr "" @@ -2561,8 +2561,8 @@ msgstr "" msgid "Failed to update template" msgstr "" -#. Label of the favicon (Attach) field in DocType 'FCRM Settings' -#: crm/fcrm/doctype/fcrm_settings/fcrm_settings.json +#. Label of the favicon (Attach) field in PageType 'FCRM Settings' +#: crm/fcrm/pagetype/fcrm_settings/fcrm_settings.json #: frontend/src/components/Settings/BrandSettings.vue:87 msgid "Favicon" msgstr "" @@ -2586,23 +2586,23 @@ msgid "File \"{0}\" was skipped because only {1} uploads are allowed" msgstr "" #: frontend/src/components/FilesUploader/FilesUploaderArea.vue:359 -msgid "File \"{0}\" was skipped because only {1} uploads are allowed for DocType \"{2}\"" +msgid "File \"{0}\" was skipped because only {1} uploads are allowed for PageType \"{2}\"" msgstr "" #: frontend/src/components/Filter.vue:6 msgid "Filter" msgstr "فیلتر" -#. Label of the filters (Code) field in DocType 'CRM View Settings' -#. Label of the filters_tab (Tab Break) field in DocType 'CRM View Settings' -#: crm/fcrm/doctype/crm_view_settings/crm_view_settings.json +#. Label of the filters (Code) field in PageType 'CRM View Settings' +#. Label of the filters_tab (Tab Break) field in PageType 'CRM View Settings' +#: crm/fcrm/pagetype/crm_view_settings/crm_view_settings.json msgid "Filters" msgstr "فیلترها" -#. Label of the first_name (Data) field in DocType 'CRM Deal' -#. Label of the first_name (Data) field in DocType 'CRM Lead' -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_lead/crm_lead.json +#. Label of the first_name (Data) field in PageType 'CRM Deal' +#. Label of the first_name (Data) field in PageType 'CRM Lead' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_lead/crm_lead.json #: frontend/src/components/ColumnSettings.vue:103 #: frontend/src/components/Filter.vue:57 frontend/src/components/Filter.vue:88 #: frontend/src/components/SortBy.vue:6 frontend/src/components/SortBy.vue:103 @@ -2614,30 +2614,30 @@ msgstr "نام کوچک" msgid "First Name is mandatory" msgstr "" -#. Label of the first_responded_on (Datetime) field in DocType 'CRM Deal' -#. Label of the first_responded_on (Datetime) field in DocType 'CRM Lead' -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_lead/crm_lead.json +#. Label of the first_responded_on (Datetime) field in PageType 'CRM Deal' +#. Label of the first_responded_on (Datetime) field in PageType 'CRM Lead' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_lead/crm_lead.json msgid "First Responded On" msgstr "اولین پاسخ در" -#. Option for the 'SLA Status' (Select) field in DocType 'CRM Deal' -#. Option for the 'SLA Status' (Select) field in DocType 'CRM Lead' -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_lead/crm_lead.json +#. Option for the 'SLA Status' (Select) field in PageType 'CRM Deal' +#. Option for the 'SLA Status' (Select) field in PageType 'CRM Lead' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_lead/crm_lead.json msgid "First Response Due" msgstr "اولین پاسخ به علت" -#. Label of the first_response_time (Duration) field in DocType 'CRM Service +#. Label of the first_response_time (Duration) field in PageType 'CRM Service #. Level Priority' -#: crm/fcrm/doctype/crm_service_level_priority/crm_service_level_priority.json +#: crm/fcrm/pagetype/crm_service_level_priority/crm_service_level_priority.json msgid "First Response TIme" msgstr "" -#. Label of the first_response_time (Duration) field in DocType 'CRM Deal' -#. Label of the first_response_time (Duration) field in DocType 'CRM Lead' -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_lead/crm_lead.json +#. Label of the first_response_time (Duration) field in PageType 'CRM Deal' +#. Label of the first_response_time (Duration) field in PageType 'CRM Lead' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_lead/crm_lead.json msgid "First Response Time" msgstr "اولین زمان پاسخگویی" @@ -2670,66 +2670,66 @@ msgstr "" msgid "Forecasting enabled successfully" msgstr "" -#. Option for the 'Apply To' (Select) field in DocType 'CRM Form Script' -#: crm/fcrm/doctype/crm_form_script/crm_form_script.json +#. Option for the 'Apply To' (Select) field in PageType 'CRM Form Script' +#: crm/fcrm/pagetype/crm_form_script/crm_form_script.json msgid "Form" msgstr "فرم" -#: crm/fcrm/doctype/erpnext_crm_settings/erpnext_crm_settings.js:19 +#: crm/fcrm/pagetype/erpnext_crm_settings/erpnext_crm_settings.js:19 msgid "Form Script updated successfully" msgstr "" #. Name of a Workspace -#: crm/fcrm/workspace/frappe_crm/frappe_crm.json -msgid "Frappe CRM" +#: crm/fcrm/workspace/jingrow_crm/jingrow_crm.json +msgid "Jingrow CRM" msgstr "" #: frontend/src/components/Layouts/AppSidebar.vue:608 -msgid "Frappe CRM mobile" +msgid "Jingrow CRM mobile" msgstr "" -#. Option for the 'Weekly Off' (Select) field in DocType 'CRM Holiday List' -#. Option for the 'Workday' (Select) field in DocType 'CRM Service Day' -#: crm/fcrm/doctype/crm_holiday_list/crm_holiday_list.json -#: crm/fcrm/doctype/crm_service_day/crm_service_day.json +#. Option for the 'Weekly Off' (Select) field in PageType 'CRM Holiday List' +#. Option for the 'Workday' (Select) field in PageType 'CRM Service Day' +#: crm/fcrm/pagetype/crm_holiday_list/crm_holiday_list.json +#: crm/fcrm/pagetype/crm_service_day/crm_service_day.json msgid "Friday" msgstr "جمعه" -#. Label of the from (Data) field in DocType 'CRM Call Log' -#. Label of the from (Data) field in DocType 'CRM Status Change Log' -#: crm/fcrm/doctype/crm_call_log/crm_call_log.json -#: crm/fcrm/doctype/crm_status_change_log/crm_status_change_log.json +#. Label of the from (Data) field in PageType 'CRM Call Log' +#. Label of the from (Data) field in PageType 'CRM Status Change Log' +#: crm/fcrm/pagetype/crm_call_log/crm_call_log.json +#: crm/fcrm/pagetype/crm_status_change_log/crm_status_change_log.json msgid "From" msgstr "از" -#. Label of the from_date (Date) field in DocType 'CRM Holiday List' -#. Label of the from_date (Datetime) field in DocType 'CRM Status Change Log' -#: crm/fcrm/doctype/crm_holiday_list/crm_holiday_list.json -#: crm/fcrm/doctype/crm_status_change_log/crm_status_change_log.json +#. Label of the from_date (Date) field in PageType 'CRM Holiday List' +#. Label of the from_date (Datetime) field in PageType 'CRM Status Change Log' +#: crm/fcrm/pagetype/crm_holiday_list/crm_holiday_list.json +#: crm/fcrm/pagetype/crm_status_change_log/crm_status_change_log.json msgid "From Date" msgstr "از تاریخ" -#. Label of the from_type (Data) field in DocType 'CRM Status Change Log' -#: crm/fcrm/doctype/crm_status_change_log/crm_status_change_log.json +#. Label of the from_type (Data) field in PageType 'CRM Status Change Log' +#: crm/fcrm/pagetype/crm_status_change_log/crm_status_change_log.json msgid "From Type" msgstr "" -#. Label of the from_user (Link) field in DocType 'CRM Notification' -#: crm/fcrm/doctype/crm_notification/crm_notification.json +#. Label of the from_user (Link) field in PageType 'CRM Notification' +#: crm/fcrm/pagetype/crm_notification/crm_notification.json msgid "From User" msgstr "از کاربر" -#. Option for the 'SLA Status' (Select) field in DocType 'CRM Deal' -#. Option for the 'SLA Status' (Select) field in DocType 'CRM Lead' -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_lead/crm_lead.json +#. Option for the 'SLA Status' (Select) field in PageType 'CRM Deal' +#. Option for the 'SLA Status' (Select) field in PageType 'CRM Lead' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_lead/crm_lead.json msgid "Fulfilled" msgstr "برآورده شد" -#. Label of the full_name (Data) field in DocType 'CRM Contacts' -#. Label of the lead_name (Data) field in DocType 'CRM Lead' -#: crm/fcrm/doctype/crm_contacts/crm_contacts.json -#: crm/fcrm/doctype/crm_lead/crm_lead.json +#. Label of the full_name (Data) field in PageType 'CRM Contacts' +#. Label of the lead_name (Data) field in PageType 'CRM Lead' +#: crm/fcrm/pagetype/crm_contacts/crm_contacts.json +#: crm/fcrm/pagetype/crm_lead/crm_lead.json msgid "Full Name" msgstr "نام و نام خانوادگی" @@ -2742,12 +2742,12 @@ msgstr "" msgid "GMT+5:30" msgstr "" -#. Label of the gender (Link) field in DocType 'CRM Contacts' -#. Label of the gender (Link) field in DocType 'CRM Deal' -#. Label of the gender (Link) field in DocType 'CRM Lead' -#: crm/fcrm/doctype/crm_contacts/crm_contacts.json -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_lead/crm_lead.json +#. Label of the gender (Link) field in PageType 'CRM Contacts' +#. Label of the gender (Link) field in PageType 'CRM Deal' +#. Label of the gender (Link) field in PageType 'CRM Lead' +#: crm/fcrm/pagetype/crm_contacts/crm_contacts.json +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_lead/crm_lead.json msgid "Gender" msgstr "جنسیت" @@ -2771,20 +2771,20 @@ msgstr "رفتن به صفحه دعوت" msgid "Go to website" msgstr "" -#. Option for the 'Type' (Select) field in DocType 'CRM Fields Layout' -#: crm/fcrm/doctype/crm_fields_layout/crm_fields_layout.json +#. Option for the 'Type' (Select) field in PageType 'CRM Fields Layout' +#: crm/fcrm/pagetype/crm_fields_layout/crm_fields_layout.json msgid "Grid Row" msgstr "" -#. Label of the group_by_tab (Tab Break) field in DocType 'CRM View Settings' -#: crm/fcrm/doctype/crm_view_settings/crm_view_settings.json +#. Label of the group_by_tab (Tab Break) field in PageType 'CRM View Settings' +#: crm/fcrm/pagetype/crm_view_settings/crm_view_settings.json #: frontend/src/components/ViewControls.vue:379 #: frontend/src/components/ViewControls.vue:611 frontend/src/utils/view.js:16 msgid "Group By" msgstr "دسته‌بندی بر اساس" -#. Label of the group_by_field (Data) field in DocType 'CRM View Settings' -#: crm/fcrm/doctype/crm_view_settings/crm_view_settings.json +#. Label of the group_by_field (Data) field in PageType 'CRM View Settings' +#: crm/fcrm/pagetype/crm_view_settings/crm_view_settings.json msgid "Group By Field" msgstr "" @@ -2808,28 +2808,28 @@ msgstr "کمک" msgid "Helpdesk" msgstr "" -#. Name of a DocType -#: crm/fcrm/doctype/helpdesk_crm_settings/helpdesk_crm_settings.json +#. Name of a PageType +#: crm/fcrm/pagetype/helpdesk_crm_settings/helpdesk_crm_settings.json msgid "Helpdesk CRM Settings" msgstr "" -#. Label of the helpdesk_site_apis_section (Section Break) field in DocType +#. Label of the helpdesk_site_apis_section (Section Break) field in PageType #. 'Helpdesk CRM Settings' -#: crm/fcrm/doctype/helpdesk_crm_settings/helpdesk_crm_settings.json +#: crm/fcrm/pagetype/helpdesk_crm_settings/helpdesk_crm_settings.json msgid "Helpdesk Site API's" msgstr "" -#. Label of the helpdesk_site_url (Data) field in DocType 'Helpdesk CRM +#. Label of the helpdesk_site_url (Data) field in PageType 'Helpdesk CRM #. Settings' -#: crm/fcrm/doctype/helpdesk_crm_settings/helpdesk_crm_settings.json +#: crm/fcrm/pagetype/helpdesk_crm_settings/helpdesk_crm_settings.json msgid "Helpdesk Site URL" msgstr "" -#: crm/fcrm/doctype/helpdesk_crm_settings/helpdesk_crm_settings.py:18 +#: crm/fcrm/pagetype/helpdesk_crm_settings/helpdesk_crm_settings.py:18 msgid "Helpdesk is not installed in the current site" msgstr "" -#: crm/fcrm/doctype/helpdesk_crm_settings/helpdesk_crm_settings.py:40 +#: crm/fcrm/pagetype/helpdesk_crm_settings/helpdesk_crm_settings.py:40 msgid "Helpdesk is not integrated with the CRM" msgstr "" @@ -2845,8 +2845,8 @@ msgstr "" msgid "Hi John, \\n\\nCan you please provide more details on this..." msgstr "" -#. Label of the hidden (Check) field in DocType 'CRM Dropdown Item' -#: crm/fcrm/doctype/crm_dropdown_item/crm_dropdown_item.json +#. Label of the hidden (Check) field in PageType 'CRM Dropdown Item' +#: crm/fcrm/pagetype/crm_dropdown_item/crm_dropdown_item.json msgid "Hidden" msgstr "پنهان شده است" @@ -2877,26 +2877,26 @@ msgstr "" msgid "Hide preview" msgstr "" -#. Option for the 'Priority' (Select) field in DocType 'CRM Task' -#: crm/fcrm/doctype/crm_task/crm_task.json +#. Option for the 'Priority' (Select) field in PageType 'CRM Task' +#: crm/fcrm/pagetype/crm_task/crm_task.json msgid "High" msgstr "بالا" -#. Label of the holiday_list (Link) field in DocType 'CRM Service Level +#. Label of the holiday_list (Link) field in PageType 'CRM Service Level #. Agreement' -#: crm/fcrm/doctype/crm_service_level_agreement/crm_service_level_agreement.json +#: crm/fcrm/pagetype/crm_service_level_agreement/crm_service_level_agreement.json msgid "Holiday List" msgstr "لیست تعطیلات" -#. Label of the holiday_list_name (Data) field in DocType 'CRM Holiday List' -#: crm/fcrm/doctype/crm_holiday_list/crm_holiday_list.json +#. Label of the holiday_list_name (Data) field in PageType 'CRM Holiday List' +#: crm/fcrm/pagetype/crm_holiday_list/crm_holiday_list.json msgid "Holiday List Name" msgstr "نام لیست تعطیلات" -#. Label of the holidays_section (Section Break) field in DocType 'CRM Holiday +#. Label of the holidays_section (Section Break) field in PageType 'CRM Holiday #. List' -#. Label of the holidays (Table) field in DocType 'CRM Holiday List' -#: crm/fcrm/doctype/crm_holiday_list/crm_holiday_list.json +#. Label of the holidays (Table) field in PageType 'CRM Holiday List' +#: crm/fcrm/pagetype/crm_holiday_list/crm_holiday_list.json msgid "Holidays" msgstr "تعطیلات" @@ -2914,15 +2914,15 @@ msgstr "" msgid "I understand, add conditions" msgstr "" -#. Label of the id (Data) field in DocType 'CRM Call Log' -#: crm/fcrm/doctype/crm_call_log/crm_call_log.json +#. Label of the id (Data) field in PageType 'CRM Call Log' +#: crm/fcrm/pagetype/crm_call_log/crm_call_log.json msgid "ID" msgstr "شناسه" -#. Label of the icon (Code) field in DocType 'CRM Dropdown Item' -#. Label of the icon (Data) field in DocType 'CRM View Settings' -#: crm/fcrm/doctype/crm_dropdown_item/crm_dropdown_item.json -#: crm/fcrm/doctype/crm_view_settings/crm_view_settings.json +#. Label of the icon (Code) field in PageType 'CRM Dropdown Item' +#. Label of the icon (Data) field in PageType 'CRM View Settings' +#: crm/fcrm/pagetype/crm_dropdown_item/crm_dropdown_item.json +#: crm/fcrm/pagetype/crm_view_settings/crm_view_settings.json msgid "Icon" msgstr "آیکون" @@ -2942,10 +2942,10 @@ msgstr "" msgid "If enabled, records can be created from the incoming emails on this account." msgstr "" -#. Label of the image (Attach Image) field in DocType 'CRM Lead' -#. Label of the image (Attach Image) field in DocType 'CRM Product' -#: crm/fcrm/doctype/crm_lead/crm_lead.json -#: crm/fcrm/doctype/crm_product/crm_product.json +#. Label of the image (Attach Image) field in PageType 'CRM Lead' +#. Label of the image (Attach Image) field in PageType 'CRM Product' +#: crm/fcrm/pagetype/crm_lead/crm_lead.json +#: crm/fcrm/pagetype/crm_product/crm_product.json msgid "Image" msgstr "تصویر" @@ -2957,10 +2957,10 @@ msgstr "تصویر" msgid "In" msgstr "یکی از" -#. Option for the 'Status' (Select) field in DocType 'CRM Call Log' -#. Option for the 'Status' (Select) field in DocType 'CRM Task' -#: crm/fcrm/doctype/crm_call_log/crm_call_log.json -#: crm/fcrm/doctype/crm_task/crm_task.json +#. Option for the 'Status' (Select) field in PageType 'CRM Call Log' +#. Option for the 'Status' (Select) field in PageType 'CRM Task' +#: crm/fcrm/pagetype/crm_call_log/crm_call_log.json +#: crm/fcrm/pagetype/crm_task/crm_task.json msgid "In Progress" msgstr "در حال پیش رفت" @@ -2976,8 +2976,8 @@ msgstr "" msgid "Inbox" msgstr "صندوق ورودی" -#. Option for the 'Type' (Select) field in DocType 'CRM Call Log' -#: crm/fcrm/doctype/crm_call_log/crm_call_log.json +#. Option for the 'Type' (Select) field in PageType 'CRM Call Log' +#: crm/fcrm/pagetype/crm_call_log/crm_call_log.json msgid "Incoming" msgstr "ورودی" @@ -2985,24 +2985,24 @@ msgstr "ورودی" msgid "Incoming call..." msgstr "" -#. Label of a shortcut in the Frappe CRM Workspace -#: crm/fcrm/workspace/frappe_crm/frappe_crm.json +#. Label of a shortcut in the Jingrow CRM Workspace +#: crm/fcrm/workspace/jingrow_crm/jingrow_crm.json msgid "Industries" msgstr "" -#. Label of the industry (Link) field in DocType 'CRM Deal' -#. Label of the industry (Data) field in DocType 'CRM Industry' -#. Label of the industry (Link) field in DocType 'CRM Lead' -#. Label of the industry (Link) field in DocType 'CRM Organization' -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_industry/crm_industry.json -#: crm/fcrm/doctype/crm_lead/crm_lead.json -#: crm/fcrm/doctype/crm_organization/crm_organization.json +#. Label of the industry (Link) field in PageType 'CRM Deal' +#. Label of the industry (Data) field in PageType 'CRM Industry' +#. Label of the industry (Link) field in PageType 'CRM Lead' +#. Label of the industry (Link) field in PageType 'CRM Organization' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_industry/crm_industry.json +#: crm/fcrm/pagetype/crm_lead/crm_lead.json +#: crm/fcrm/pagetype/crm_organization/crm_organization.json msgid "Industry" msgstr "صنعت" -#. Option for the 'Status' (Select) field in DocType 'CRM Call Log' -#: crm/fcrm/doctype/crm_call_log/crm_call_log.json +#. Option for the 'Status' (Select) field in PageType 'CRM Call Log' +#: crm/fcrm/pagetype/crm_call_log/crm_call_log.json msgid "Initiated" msgstr "آغاز شده" @@ -3037,7 +3037,7 @@ msgstr "یکپارچه سازی‌ها" msgid "Introduction" msgstr "معرفی" -#: crm/fcrm/doctype/crm_twilio_settings/crm_twilio_settings.py:33 +#: crm/fcrm/pagetype/crm_twilio_settings/crm_twilio_settings.py:33 msgid "Invalid Account SID or Auth Token." msgstr "" @@ -3054,7 +3054,7 @@ msgstr "" msgid "Invalid chart name" msgstr "" -#: crm/fcrm/doctype/crm_exotel_settings/crm_exotel_settings.py:25 +#: crm/fcrm/pagetype/crm_exotel_settings/crm_exotel_settings.py:25 msgid "Invalid credentials" msgstr "" @@ -3103,8 +3103,8 @@ msgstr "" msgid "Invite your team" msgstr "" -#. Label of the invited_by (Link) field in DocType 'CRM Invitation' -#: crm/fcrm/doctype/crm_invitation/crm_invitation.json +#. Label of the invited_by (Link) field in PageType 'CRM Invitation' +#: crm/fcrm/pagetype/crm_invitation/crm_invitation.json msgid "Invited By" msgstr "دعوت شده توسط" @@ -3118,59 +3118,59 @@ msgstr "دعوت شده توسط" msgid "Is" msgstr "هست" -#. Label of the is_default (Check) field in DocType 'CRM View Settings' -#: crm/fcrm/doctype/crm_view_settings/crm_view_settings.json +#. Label of the is_default (Check) field in PageType 'CRM View Settings' +#: crm/fcrm/pagetype/crm_view_settings/crm_view_settings.json msgid "Is Default" msgstr "پیش‌فرض است" -#. Label of the is_erpnext_in_different_site (Check) field in DocType 'ERPNext +#. Label of the is_erpnext_in_different_site (Check) field in PageType 'ERPNext #. CRM Settings' -#: crm/fcrm/doctype/erpnext_crm_settings/erpnext_crm_settings.json +#: crm/fcrm/pagetype/erpnext_crm_settings/erpnext_crm_settings.json msgid "Is ERPNext installed on a different site?" msgstr "" -#. Label of the is_group (Check) field in DocType 'CRM Territory' -#: crm/fcrm/doctype/crm_territory/crm_territory.json +#. Label of the is_group (Check) field in PageType 'CRM Territory' +#: crm/fcrm/pagetype/crm_territory/crm_territory.json msgid "Is Group" msgstr "گروه است" -#. Label of the is_helpdesk_in_different_site (Check) field in DocType +#. Label of the is_helpdesk_in_different_site (Check) field in PageType #. 'Helpdesk CRM Settings' -#: crm/fcrm/doctype/helpdesk_crm_settings/helpdesk_crm_settings.json +#: crm/fcrm/pagetype/helpdesk_crm_settings/helpdesk_crm_settings.json msgid "Is Helpdesk installed on a different site?" msgstr "" -#. Label of the is_primary (Check) field in DocType 'CRM Contacts' -#. Label of the is_primary (Check) field in DocType 'CRM Telephony Phone' -#: crm/fcrm/doctype/crm_contacts/crm_contacts.json -#: crm/fcrm/doctype/crm_telephony_phone/crm_telephony_phone.json +#. Label of the is_primary (Check) field in PageType 'CRM Contacts' +#. Label of the is_primary (Check) field in PageType 'CRM Telephony Phone' +#: crm/fcrm/pagetype/crm_contacts/crm_contacts.json +#: crm/fcrm/pagetype/crm_telephony_phone/crm_telephony_phone.json msgid "Is Primary" msgstr "اصلی است" -#. Label of the is_standard (Check) field in DocType 'CRM Dropdown Item' -#. Label of the is_standard (Check) field in DocType 'CRM Form Script' -#. Label of the is_standard (Check) field in DocType 'CRM View Settings' -#: crm/fcrm/doctype/crm_dropdown_item/crm_dropdown_item.json -#: crm/fcrm/doctype/crm_form_script/crm_form_script.json -#: crm/fcrm/doctype/crm_view_settings/crm_view_settings.json +#. Label of the is_standard (Check) field in PageType 'CRM Dropdown Item' +#. Label of the is_standard (Check) field in PageType 'CRM Form Script' +#. Label of the is_standard (Check) field in PageType 'CRM View Settings' +#: crm/fcrm/pagetype/crm_dropdown_item/crm_dropdown_item.json +#: crm/fcrm/pagetype/crm_form_script/crm_form_script.json +#: crm/fcrm/pagetype/crm_view_settings/crm_view_settings.json msgid "Is Standard" msgstr "استاندارد است" -#. Description of the 'Enable Forecasting' (Check) field in DocType 'FCRM +#. Description of the 'Enable Forecasting' (Check) field in PageType 'FCRM #. Settings' -#: crm/fcrm/doctype/fcrm_settings/fcrm_settings.json +#: crm/fcrm/pagetype/fcrm_settings/fcrm_settings.json msgid "It will make deal's \"Expected Closure Date\" & \"Expected Deal Value\" mandatory to get accurate forecasting insights" msgstr "" -#. Label of the json (JSON) field in DocType 'CRM Global Settings' -#: crm/fcrm/doctype/crm_global_settings/crm_global_settings.json +#. Label of the json (JSON) field in PageType 'CRM Global Settings' +#: crm/fcrm/pagetype/crm_global_settings/crm_global_settings.json msgid "JSON" msgstr "JSON" -#. Label of the job_title (Data) field in DocType 'CRM Deal' -#. Label of the job_title (Data) field in DocType 'CRM Lead' -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_lead/crm_lead.json +#. Label of the job_title (Data) field in PageType 'CRM Deal' +#. Label of the job_title (Data) field in PageType 'CRM Lead' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_lead/crm_lead.json msgid "Job Title" msgstr "عنوان شغلی" @@ -3182,20 +3182,20 @@ msgstr "عنوان شغلی" msgid "John Doe" msgstr "John Doe" -#. Label of the kanban_tab (Tab Break) field in DocType 'CRM View Settings' -#: crm/fcrm/doctype/crm_view_settings/crm_view_settings.json +#. Label of the kanban_tab (Tab Break) field in PageType 'CRM View Settings' +#: crm/fcrm/pagetype/crm_view_settings/crm_view_settings.json #: frontend/src/components/ViewControls.vue:384 #: frontend/src/components/ViewControls.vue:600 frontend/src/utils/view.js:20 msgid "Kanban" msgstr "کانبان" -#. Label of the kanban_columns (Code) field in DocType 'CRM View Settings' -#: crm/fcrm/doctype/crm_view_settings/crm_view_settings.json +#. Label of the kanban_columns (Code) field in PageType 'CRM View Settings' +#: crm/fcrm/pagetype/crm_view_settings/crm_view_settings.json msgid "Kanban Columns" msgstr "" -#. Label of the kanban_fields (Code) field in DocType 'CRM View Settings' -#: crm/fcrm/doctype/crm_view_settings/crm_view_settings.json +#. Label of the kanban_fields (Code) field in PageType 'CRM View Settings' +#: crm/fcrm/pagetype/crm_view_settings/crm_view_settings.json msgid "Kanban Fields" msgstr "" @@ -3204,15 +3204,15 @@ msgstr "" msgid "Kanban Settings" msgstr "تنظیمات کانبان" -#. Label of the key (Data) field in DocType 'CRM Invitation' -#: crm/fcrm/doctype/crm_invitation/crm_invitation.json +#. Label of the key (Data) field in PageType 'CRM Invitation' +#: crm/fcrm/pagetype/crm_invitation/crm_invitation.json msgid "Key" msgstr "کلید" -#. Label of the label (Data) field in DocType 'CRM Dropdown Item' -#. Label of the label (Data) field in DocType 'CRM View Settings' -#: crm/fcrm/doctype/crm_dropdown_item/crm_dropdown_item.json -#: crm/fcrm/doctype/crm_view_settings/crm_view_settings.json +#. Label of the label (Data) field in PageType 'CRM Dropdown Item' +#. Label of the label (Data) field in PageType 'CRM View Settings' +#: crm/fcrm/pagetype/crm_dropdown_item/crm_dropdown_item.json +#: crm/fcrm/pagetype/crm_view_settings/crm_view_settings.json #: frontend/src/components/ColumnSettings.vue:100 msgid "Label" msgstr "برچسب" @@ -3229,10 +3229,10 @@ msgstr "۶ ماه گذشته" msgid "Last Month" msgstr "ماه گذشته" -#. Label of the last_name (Data) field in DocType 'CRM Deal' -#. Label of the last_name (Data) field in DocType 'CRM Lead' -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_lead/crm_lead.json +#. Label of the last_name (Data) field in PageType 'CRM Deal' +#. Label of the last_name (Data) field in PageType 'CRM Lead' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_lead/crm_lead.json msgid "Last Name" msgstr "نام خانوادگی" @@ -3240,9 +3240,9 @@ msgstr "نام خانوادگی" msgid "Last Quarter" msgstr "سه ماهه گذشته" -#. Label of the last_status_change_log (Link) field in DocType 'CRM Status +#. Label of the last_status_change_log (Link) field in PageType 'CRM Status #. Change Log' -#: crm/fcrm/doctype/crm_status_change_log/crm_status_change_log.json +#: crm/fcrm/pagetype/crm_status_change_log/crm_status_change_log.json msgid "Last Status Change Log" msgstr "" @@ -3270,15 +3270,15 @@ msgstr "" msgid "Last user assigned by this rule" msgstr "" -#. Label of the layout (Code) field in DocType 'CRM Dashboard' -#. Label of the layout (Code) field in DocType 'CRM Fields Layout' -#: crm/fcrm/doctype/crm_dashboard/crm_dashboard.json -#: crm/fcrm/doctype/crm_fields_layout/crm_fields_layout.json +#. Label of the layout (Code) field in PageType 'CRM Dashboard' +#. Label of the layout (Code) field in PageType 'CRM Fields Layout' +#: crm/fcrm/pagetype/crm_dashboard/crm_dashboard.json +#: crm/fcrm/pagetype/crm_fields_layout/crm_fields_layout.json msgid "Layout" msgstr "چیدمان" -#. Label of the lead (Link) field in DocType 'CRM Deal' -#: crm/fcrm/doctype/crm_deal/crm_deal.json +#. Label of the lead (Link) field in PageType 'CRM Deal' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json #: frontend/src/components/Calendar/CalendarEventPanel.vue:263 #: frontend/src/components/Calendar/CalendarEventPanel.vue:288 #: frontend/src/components/Layouts/AppSidebar.vue:550 @@ -3291,32 +3291,32 @@ msgstr "چیدمان" msgid "Lead" msgstr "سرنخ" -#. Label of the lead_details_tab (Tab Break) field in DocType 'CRM Deal' -#: crm/fcrm/doctype/crm_deal/crm_deal.json +#. Label of the lead_details_tab (Tab Break) field in PageType 'CRM Deal' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json msgid "Lead Details" msgstr "جزئیات سرنخ" -#. Label of the lead_name (Data) field in DocType 'CRM Deal' -#: crm/fcrm/doctype/crm_deal/crm_deal.json +#. Label of the lead_name (Data) field in PageType 'CRM Deal' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json msgid "Lead Name" msgstr "نام سرنخ" -#. Label of the lead_owner (Link) field in DocType 'CRM Lead' -#: crm/fcrm/doctype/crm_lead/crm_lead.json +#. Label of the lead_owner (Link) field in PageType 'CRM Lead' +#: crm/fcrm/pagetype/crm_lead/crm_lead.json msgid "Lead Owner" msgstr "مالک اصلی" -#: crm/fcrm/doctype/crm_lead/crm_lead.py:73 +#: crm/fcrm/pagetype/crm_lead/crm_lead.py:73 msgid "Lead Owner cannot be same as the Lead Email Address" msgstr "مالک اصلی نمی‌تواند با آدرس ایمیل اصلی یکسان باشد" -#. Label of a shortcut in the Frappe CRM Workspace -#: crm/fcrm/workspace/frappe_crm/frappe_crm.json +#. Label of a shortcut in the Jingrow CRM Workspace +#: crm/fcrm/workspace/jingrow_crm/jingrow_crm.json msgid "Lead Sources" msgstr "" -#. Label of a shortcut in the Frappe CRM Workspace -#: crm/fcrm/workspace/frappe_crm/frappe_crm.json +#. Label of a shortcut in the Jingrow CRM Workspace +#: crm/fcrm/workspace/jingrow_crm/jingrow_crm.json msgid "Lead Statuses" msgstr "" @@ -3328,8 +3328,8 @@ msgstr "" msgid "Lead to deal conversion pipeline" msgstr "" -#. Label of a shortcut in the Frappe CRM Workspace -#: crm/fcrm/workspace/frappe_crm/frappe_crm.json +#. Label of a shortcut in the Jingrow CRM Workspace +#: crm/fcrm/workspace/jingrow_crm/jingrow_crm.json #: frontend/src/pages/InvalidPage.vue:9 frontend/src/pages/Lead.vue:340 #: frontend/src/pages/MobileLead.vue:291 msgid "Leads" @@ -3345,8 +3345,8 @@ msgstr "" msgid "Learn about conditions" msgstr "" -#. Label of the lft (Int) field in DocType 'CRM Territory' -#: crm/fcrm/doctype/crm_territory/crm_territory.json +#. Label of the lft (Int) field in PageType 'CRM Territory' +#: crm/fcrm/pagetype/crm_territory/crm_territory.json msgid "Left" msgstr "چپ" @@ -3367,15 +3367,15 @@ msgstr "شبیه" msgid "Link" msgstr "" -#. Label of the links (Table) field in DocType 'CRM Call Log' -#: crm/fcrm/doctype/crm_call_log/crm_call_log.json +#. Label of the links (Table) field in PageType 'CRM Call Log' +#: crm/fcrm/pagetype/crm_call_log/crm_call_log.json msgid "Links" msgstr "پیوندها" -#. Option for the 'Apply To' (Select) field in DocType 'CRM Form Script' -#. Label of the list_tab (Tab Break) field in DocType 'CRM View Settings' -#: crm/fcrm/doctype/crm_form_script/crm_form_script.json -#: crm/fcrm/doctype/crm_view_settings/crm_view_settings.json +#. Option for the 'Apply To' (Select) field in PageType 'CRM Form Script' +#. Label of the list_tab (Tab Break) field in PageType 'CRM View Settings' +#: crm/fcrm/pagetype/crm_form_script/crm_form_script.json +#: crm/fcrm/pagetype/crm_view_settings/crm_view_settings.json #: frontend/src/components/ViewControls.vue:374 #: frontend/src/components/ViewControls.vue:589 frontend/src/utils/view.js:12 msgid "List" @@ -3385,9 +3385,9 @@ msgstr "لیست" msgid "Listen" msgstr "" -#. Label of the load_default_columns (Check) field in DocType 'CRM View +#. Label of the load_default_columns (Check) field in PageType 'CRM View #. Settings' -#: crm/fcrm/doctype/crm_view_settings/crm_view_settings.json +#: crm/fcrm/pagetype/crm_view_settings/crm_view_settings.json msgid "Load Default Columns" msgstr "" @@ -3403,10 +3403,10 @@ msgstr "بارگذاری بیشتر" msgid "Loading..." msgstr "بارگذاری..." -#. Label of the log_tab (Tab Break) field in DocType 'CRM Deal' -#. Label of the log_tab (Tab Break) field in DocType 'CRM Lead' -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_lead/crm_lead.json +#. Label of the log_tab (Tab Break) field in PageType 'CRM Deal' +#. Label of the log_tab (Tab Break) field in PageType 'CRM Lead' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_lead/crm_lead.json msgid "Log" msgstr "لاگ" @@ -3417,28 +3417,28 @@ msgid "Log a Call" msgstr "" #: frontend/src/composables/frappecloud.js:23 -msgid "Login to Frappe Cloud?" -msgstr "ورود به Frappe Cloud?" +msgid "Login to Jingrow Cloud?" +msgstr "ورود به Jingrow Cloud?" -#. Label of the brand_logo (Attach) field in DocType 'FCRM Settings' -#: crm/fcrm/doctype/fcrm_settings/fcrm_settings.json +#. Label of the brand_logo (Attach) field in PageType 'FCRM Settings' +#: crm/fcrm/pagetype/fcrm_settings/fcrm_settings.json msgid "Logo" msgstr "لوگو" -#. Option for the 'Type' (Select) field in DocType 'CRM Deal Status' -#: crm/fcrm/doctype/crm_deal_status/crm_deal_status.json +#. Option for the 'Type' (Select) field in PageType 'CRM Deal Status' +#: crm/fcrm/pagetype/crm_deal_status/crm_deal_status.json msgid "Lost" msgstr "از دست رفته" -#. Label of the lost_notes (Text) field in DocType 'CRM Deal' -#: crm/fcrm/doctype/crm_deal/crm_deal.json +#. Label of the lost_notes (Text) field in PageType 'CRM Deal' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json msgid "Lost Notes" msgstr "" -#. Label of the lost_reason (Link) field in DocType 'CRM Deal' -#. Label of the lost_reason (Data) field in DocType 'CRM Lost Reason' -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_lost_reason/crm_lost_reason.json +#. Label of the lost_reason (Link) field in PageType 'CRM Deal' +#. Label of the lost_reason (Data) field in PageType 'CRM Lost Reason' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_lost_reason/crm_lost_reason.json msgid "Lost Reason" msgstr "دلیل از دست دادن" @@ -3464,8 +3464,8 @@ msgstr "" msgid "Lost reason is required" msgstr "" -#. Option for the 'Priority' (Select) field in DocType 'CRM Task' -#: crm/fcrm/doctype/crm_task/crm_task.json +#. Option for the 'Priority' (Select) field in PageType 'CRM Task' +#: crm/fcrm/pagetype/crm_task/crm_task.json msgid "Low" msgstr "کم" @@ -3542,8 +3542,8 @@ msgstr "مدیر" msgid "Mandatory field error: {0}" msgstr "" -#. Option for the 'Telephony Medium' (Select) field in DocType 'CRM Call Log' -#: crm/fcrm/doctype/crm_call_log/crm_call_log.json +#. Option for the 'Telephony Medium' (Select) field in PageType 'CRM Call Log' +#: crm/fcrm/pagetype/crm_call_log/crm_call_log.json msgid "Manual" msgstr "دستی" @@ -3562,25 +3562,25 @@ msgstr "کارشناسی ارشد" msgid "May 1, 2025" msgstr "" -#. Label of the medium (Data) field in DocType 'CRM Call Log' -#. Option for the 'Priority' (Select) field in DocType 'CRM Task' -#: crm/fcrm/doctype/crm_call_log/crm_call_log.json -#: crm/fcrm/doctype/crm_task/crm_task.json +#. Label of the medium (Data) field in PageType 'CRM Call Log' +#. Option for the 'Priority' (Select) field in PageType 'CRM Task' +#: crm/fcrm/pagetype/crm_call_log/crm_call_log.json +#: crm/fcrm/pagetype/crm_task/crm_task.json msgid "Medium" msgstr "متوسط" -#. Option for the 'Type' (Select) field in DocType 'CRM Notification' -#: crm/fcrm/doctype/crm_notification/crm_notification.json +#. Option for the 'Type' (Select) field in PageType 'CRM Notification' +#: crm/fcrm/pagetype/crm_notification/crm_notification.json msgid "Mention" msgstr "اشاره" -#. Label of the message (HTML Editor) field in DocType 'CRM Notification' -#: crm/fcrm/doctype/crm_notification/crm_notification.json +#. Label of the message (HTML Editor) field in PageType 'CRM Notification' +#: crm/fcrm/pagetype/crm_notification/crm_notification.json msgid "Message" msgstr "پیام" -#. Label of the middle_name (Data) field in DocType 'CRM Lead' -#: crm/fcrm/doctype/crm_lead/crm_lead.json +#. Label of the middle_name (Data) field in PageType 'CRM Lead' +#: crm/fcrm/pagetype/crm_lead/crm_lead.json msgid "Middle Name" msgstr "نام میانی" @@ -3588,10 +3588,10 @@ msgstr "نام میانی" msgid "Minimize" msgstr "" -#. Label of the mobile_no (Data) field in DocType 'CRM Contacts' -#. Label of the mobile_no (Data) field in DocType 'CRM Lead' -#: crm/fcrm/doctype/crm_contacts/crm_contacts.json -#: crm/fcrm/doctype/crm_lead/crm_lead.json +#. Label of the mobile_no (Data) field in PageType 'CRM Contacts' +#. Label of the mobile_no (Data) field in PageType 'CRM Lead' +#: crm/fcrm/pagetype/crm_contacts/crm_contacts.json +#: crm/fcrm/pagetype/crm_lead/crm_lead.json msgid "Mobile No" msgstr "شماره موبایل" @@ -3600,8 +3600,8 @@ msgstr "شماره موبایل" msgid "Mobile No should be a number" msgstr "" -#. Label of the mobile_no (Data) field in DocType 'CRM Telephony Agent' -#: crm/fcrm/doctype/crm_telephony_agent/crm_telephony_agent.json +#. Label of the mobile_no (Data) field in PageType 'CRM Telephony Agent' +#: crm/fcrm/pagetype/crm_telephony_agent/crm_telephony_agent.json msgid "Mobile No." msgstr "شماره موبایل." @@ -3623,10 +3623,10 @@ msgstr "" msgid "Mobile no" msgstr "" -#. Option for the 'Weekly Off' (Select) field in DocType 'CRM Holiday List' -#. Option for the 'Workday' (Select) field in DocType 'CRM Service Day' -#: crm/fcrm/doctype/crm_holiday_list/crm_holiday_list.json -#: crm/fcrm/doctype/crm_service_day/crm_service_day.json +#. Option for the 'Weekly Off' (Select) field in PageType 'CRM Holiday List' +#. Option for the 'Workday' (Select) field in PageType 'CRM Service Day' +#: crm/fcrm/pagetype/crm_holiday_list/crm_holiday_list.json +#: crm/fcrm/pagetype/crm_service_day/crm_service_day.json msgid "Monday" msgstr "دوشنبه" @@ -3658,12 +3658,12 @@ msgstr "" msgid "My Open Deals" msgstr "" -#. Label of the title (Data) field in DocType 'CRM Dashboard' -#. Label of the name1 (Data) field in DocType 'CRM Dropdown Item' -#. Label of the brand_name (Data) field in DocType 'FCRM Settings' -#: crm/fcrm/doctype/crm_dashboard/crm_dashboard.json -#: crm/fcrm/doctype/crm_dropdown_item/crm_dropdown_item.json -#: crm/fcrm/doctype/fcrm_settings/fcrm_settings.json +#. Label of the title (Data) field in PageType 'CRM Dashboard' +#. Label of the name1 (Data) field in PageType 'CRM Dropdown Item' +#. Label of the brand_name (Data) field in PageType 'FCRM Settings' +#: crm/fcrm/pagetype/crm_dashboard/crm_dashboard.json +#: crm/fcrm/pagetype/crm_dropdown_item/crm_dropdown_item.json +#: crm/fcrm/pagetype/fcrm_settings/fcrm_settings.json #: frontend/src/components/Settings/AssignmentRules/AssignmentRuleView.vue:51 #: frontend/src/components/Settings/AssignmentRules/AssignmentRuleView.vue:52 #: frontend/src/components/Settings/EmailTemplate/EditEmailTemplate.vue:39 @@ -3680,10 +3680,10 @@ msgstr "نام" msgid "Name is required" msgstr "" -#. Label of the naming_series (Select) field in DocType 'CRM Deal' -#. Label of the naming_series (Select) field in DocType 'CRM Product' -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_product/crm_product.json +#. Label of the naming_series (Select) field in PageType 'CRM Deal' +#. Label of the naming_series (Select) field in PageType 'CRM Product' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_product/crm_product.json msgid "Naming Series" msgstr "سری نام‌گذاری" @@ -3691,15 +3691,15 @@ msgstr "سری نام‌گذاری" msgid "Nested conditions" msgstr "" -#. Label of the net_amount (Currency) field in DocType 'CRM Products' -#: crm/fcrm/doctype/crm_products/crm_products.json +#. Label of the net_amount (Currency) field in PageType 'CRM Products' +#: crm/fcrm/pagetype/crm_products/crm_products.json msgid "Net Amount" msgstr "مبلغ خالص" -#. Label of the net_total (Currency) field in DocType 'CRM Deal' -#. Label of the net_total (Currency) field in DocType 'CRM Lead' -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_lead/crm_lead.json +#. Label of the net_total (Currency) field in PageType 'CRM Deal' +#. Label of the net_total (Currency) field in PageType 'CRM Lead' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_lead/crm_lead.json msgid "Net Total" msgstr "کل خالص" @@ -3814,8 +3814,8 @@ msgstr "ماه آینده" msgid "Next Quarter" msgstr "سه‌ماهه آینده" -#. Label of the next_step (Data) field in DocType 'CRM Deal' -#: crm/fcrm/doctype/crm_deal/crm_deal.json +#. Label of the next_step (Data) field in PageType 'CRM Deal' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json msgid "Next Step" msgstr "" @@ -3831,8 +3831,8 @@ msgstr "سال آینده" msgid "No" msgstr "خیر" -#. Option for the 'Status' (Select) field in DocType 'CRM Call Log' -#: crm/fcrm/doctype/crm_call_log/crm_call_log.json +#. Option for the 'Status' (Select) field in PageType 'CRM Call Log' +#: crm/fcrm/pagetype/crm_call_log/crm_call_log.json msgid "No Answer" msgstr "بدون پاسخ" @@ -3930,12 +3930,12 @@ msgstr "" msgid "No {0} Found" msgstr "هیچ {0} یافت نشد" -#. Label of the no_of_employees (Select) field in DocType 'CRM Deal' -#. Label of the no_of_employees (Select) field in DocType 'CRM Lead' -#. Label of the no_of_employees (Select) field in DocType 'CRM Organization' -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_lead/crm_lead.json -#: crm/fcrm/doctype/crm_organization/crm_organization.json +#. Label of the no_of_employees (Select) field in PageType 'CRM Deal' +#. Label of the no_of_employees (Select) field in PageType 'CRM Lead' +#. Label of the no_of_employees (Select) field in PageType 'CRM Organization' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_lead/crm_lead.json +#: crm/fcrm/pagetype/crm_organization/crm_organization.json msgid "No. of Employees" msgstr "تعداد کارمندان" @@ -3981,24 +3981,24 @@ msgstr "شبیه نیست به" msgid "Not Saved" msgstr "ذخیره نشد" -#: crm/fcrm/doctype/crm_deal/crm_deal.py:272 +#: crm/fcrm/pagetype/crm_deal/crm_deal.py:272 msgid "Not allowed to add contact to Deal" msgstr "" -#: crm/fcrm/doctype/crm_lead/crm_lead.py:408 +#: crm/fcrm/pagetype/crm_lead/crm_lead.py:408 msgid "Not allowed to convert Lead to Deal" msgstr "" -#: crm/fcrm/doctype/crm_deal/crm_deal.py:283 +#: crm/fcrm/pagetype/crm_deal/crm_deal.py:283 msgid "Not allowed to remove contact from Deal" msgstr "" -#: crm/fcrm/doctype/crm_deal/crm_deal.py:294 +#: crm/fcrm/pagetype/crm_deal/crm_deal.py:294 msgid "Not allowed to set primary contact for Deal" msgstr "" -#. Label of the note (Link) field in DocType 'CRM Call Log' -#: crm/fcrm/doctype/crm_call_log/crm_call_log.json +#. Label of the note (Link) field in PageType 'CRM Call Log' +#: crm/fcrm/pagetype/crm_call_log/crm_call_log.json #: frontend/src/components/Layouts/AppSidebar.vue:554 msgid "Note" msgstr "یادداشت" @@ -4017,21 +4017,21 @@ msgstr "" msgid "Notification" msgstr "اعلان" -#. Label of the notification_text (Text) field in DocType 'CRM Notification' -#: crm/fcrm/doctype/crm_notification/crm_notification.json +#. Label of the notification_text (Text) field in PageType 'CRM Notification' +#: crm/fcrm/pagetype/crm_notification/crm_notification.json msgid "Notification Text" msgstr "متن اعلان" -#. Label of the notification_type_doc (Dynamic Link) field in DocType 'CRM +#. Label of the notification_type_pg (Dynamic Link) field in PageType 'CRM #. Notification' -#: crm/fcrm/doctype/crm_notification/crm_notification.json -msgid "Notification Type Doc" +#: crm/fcrm/pagetype/crm_notification/crm_notification.json +msgid "Notification Type Pg" msgstr "" -#. Label of the notification_type_doctype (Link) field in DocType 'CRM +#. Label of the notification_type_pagetype (Link) field in PageType 'CRM #. Notification' -#: crm/fcrm/doctype/crm_notification/crm_notification.json -msgid "Notification Type Doctype" +#: crm/fcrm/pagetype/crm_notification/crm_notification.json +msgid "Notification Type Pagetype" msgstr "" #: frontend/src/components/Layouts/AppSidebar.vue:13 @@ -4041,8 +4041,8 @@ msgstr "" msgid "Notifications" msgstr "اعلان‌ها" -#. Label of the number (Data) field in DocType 'CRM Telephony Phone' -#: crm/fcrm/doctype/crm_telephony_phone/crm_telephony_phone.json +#. Label of the number (Data) field in PageType 'CRM Telephony Phone' +#: crm/fcrm/pagetype/crm_telephony_phone/crm_telephony_phone.json msgid "Number" msgstr "شماره" @@ -4064,18 +4064,18 @@ msgstr "" msgid "Old Condition" msgstr "" -#. Label of the old_parent (Link) field in DocType 'CRM Territory' -#: crm/fcrm/doctype/crm_territory/crm_territory.json +#. Label of the old_parent (Link) field in PageType 'CRM Territory' +#: crm/fcrm/pagetype/crm_territory/crm_territory.json msgid "Old Parent" msgstr "مرجع پیشین" -#. Option for the 'Type' (Select) field in DocType 'CRM Deal Status' -#: crm/fcrm/doctype/crm_deal_status/crm_deal_status.json +#. Option for the 'Type' (Select) field in PageType 'CRM Deal Status' +#: crm/fcrm/pagetype/crm_deal_status/crm_deal_status.json msgid "On Hold" msgstr "در انتظار" -#. Option for the 'Type' (Select) field in DocType 'CRM Deal Status' -#: crm/fcrm/doctype/crm_deal_status/crm_deal_status.json +#. Option for the 'Type' (Select) field in PageType 'CRM Deal Status' +#: crm/fcrm/pagetype/crm_deal_status/crm_deal_status.json msgid "Ongoing" msgstr "" @@ -4088,13 +4088,13 @@ msgstr "" msgid "Only image files are allowed" msgstr "" -#: crm/fcrm/doctype/crm_deal/crm_deal.py:60 -#: crm/fcrm/doctype/crm_telephony_agent/crm_telephony_agent.py:23 +#: crm/fcrm/pagetype/crm_deal/crm_deal.py:60 +#: crm/fcrm/pagetype/crm_telephony_agent/crm_telephony_agent.py:23 msgid "Only one {0} can be set as primary." msgstr "فقط یک {0} را می‌توان به عنوان اصلی تنظیم کرد." -#. Option for the 'Type' (Select) field in DocType 'CRM Deal Status' -#: crm/fcrm/doctype/crm_deal_status/crm_deal_status.json +#. Option for the 'Type' (Select) field in PageType 'CRM Deal Status' +#: crm/fcrm/pagetype/crm_deal_status/crm_deal_status.json msgid "Open" msgstr "باز" @@ -4108,13 +4108,13 @@ msgstr "" msgid "Open Lead" msgstr "" -#: crm/fcrm/doctype/crm_deal/crm_deal.js:6 -#: crm/fcrm/doctype/crm_lead/crm_lead.js:6 +#: crm/fcrm/pagetype/crm_deal/crm_deal.js:6 +#: crm/fcrm/pagetype/crm_lead/crm_lead.js:6 msgid "Open in Portal" msgstr "" -#. Label of the open_in_new_window (Check) field in DocType 'CRM Dropdown Item' -#: crm/fcrm/doctype/crm_dropdown_item/crm_dropdown_item.json +#. Label of the open_in_new_window (Check) field in PageType 'CRM Dropdown Item' +#: crm/fcrm/pagetype/crm_dropdown_item/crm_dropdown_item.json msgid "Open in new window" msgstr "باز کردن در پنجره جدید" @@ -4136,17 +4136,17 @@ msgstr "گزینه‌ها" msgid "Or create leads manually" msgstr "" -#. Label of the order_by_tab (Tab Break) field in DocType 'CRM View Settings' -#. Label of the order_by (Code) field in DocType 'CRM View Settings' -#: crm/fcrm/doctype/crm_view_settings/crm_view_settings.json +#. Label of the order_by_tab (Tab Break) field in PageType 'CRM View Settings' +#. Label of the order_by (Code) field in PageType 'CRM View Settings' +#: crm/fcrm/pagetype/crm_view_settings/crm_view_settings.json msgid "Order By" msgstr "سفارش توسط" -#. Label of the organization (Link) field in DocType 'CRM Deal' -#. Label of the organization_tab (Tab Break) field in DocType 'CRM Deal' -#. Label of the organization (Data) field in DocType 'CRM Lead' -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_lead/crm_lead.json +#. Label of the organization (Link) field in PageType 'CRM Deal' +#. Label of the organization_tab (Tab Break) field in PageType 'CRM Deal' +#. Label of the organization (Data) field in PageType 'CRM Lead' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_lead/crm_lead.json #: frontend/src/components/Layouts/AppSidebar.vue:553 #: frontend/src/components/Modals/ConvertToDealModal.vue:25 #: frontend/src/pages/Contact.vue:494 frontend/src/pages/MobileContact.vue:502 @@ -4158,22 +4158,22 @@ msgstr "سفارش توسط" msgid "Organization" msgstr "سازمان" -#. Label of the organization_details_section (Section Break) field in DocType +#. Label of the organization_details_section (Section Break) field in PageType #. 'CRM Deal' -#: crm/fcrm/doctype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_deal/crm_deal.json msgid "Organization Details" msgstr "" -#. Label of the organization_logo (Attach Image) field in DocType 'CRM +#. Label of the organization_logo (Attach Image) field in PageType 'CRM #. Organization' -#: crm/fcrm/doctype/crm_organization/crm_organization.json +#: crm/fcrm/pagetype/crm_organization/crm_organization.json msgid "Organization Logo" msgstr "لوگوی سازمان" -#. Label of the organization_name (Data) field in DocType 'CRM Deal' -#. Label of the organization_name (Data) field in DocType 'CRM Organization' -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_organization/crm_organization.json +#. Label of the organization_name (Data) field in PageType 'CRM Deal' +#. Label of the organization_name (Data) field in PageType 'CRM Organization' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_organization/crm_organization.json msgid "Organization Name" msgstr "نام سازمان" @@ -4181,8 +4181,8 @@ msgstr "نام سازمان" msgid "Organization logo" msgstr "لوگوی سازمان" -#. Label of a shortcut in the Frappe CRM Workspace -#: crm/fcrm/workspace/frappe_crm/frappe_crm.json +#. Label of a shortcut in the Jingrow CRM Workspace +#: crm/fcrm/workspace/jingrow_crm/jingrow_crm.json #: frontend/src/pages/MobileOrganization.vue:205 #: frontend/src/pages/Organization.vue:234 msgid "Organizations" @@ -4196,8 +4196,8 @@ msgstr "" msgid "Other features" msgstr "" -#. Label of the organization_tab (Tab Break) field in DocType 'CRM Lead' -#: crm/fcrm/doctype/crm_lead/crm_lead.json +#. Label of the organization_tab (Tab Break) field in PageType 'CRM Lead' +#: crm/fcrm/pagetype/crm_lead/crm_lead.json msgid "Others" msgstr "سایر" @@ -4205,13 +4205,13 @@ msgstr "سایر" msgid "Outbound Call" msgstr "" -#. Option for the 'Type' (Select) field in DocType 'CRM Call Log' -#: crm/fcrm/doctype/crm_call_log/crm_call_log.json +#. Option for the 'Type' (Select) field in PageType 'CRM Call Log' +#: crm/fcrm/pagetype/crm_call_log/crm_call_log.json msgid "Outgoing" msgstr "خروجی" -#. Label of the log_owner (Link) field in DocType 'CRM Status Change Log' -#: crm/fcrm/doctype/crm_status_change_log/crm_status_change_log.json +#. Label of the log_owner (Link) field in PageType 'CRM Status Change Log' +#: crm/fcrm/pagetype/crm_status_change_log/crm_status_change_log.json msgid "Owner" msgstr "مالک" @@ -4219,8 +4219,8 @@ msgstr "مالک" msgid "Owner: {0}" msgstr "" -#. Label of the parent_crm_territory (Link) field in DocType 'CRM Territory' -#: crm/fcrm/doctype/crm_territory/crm_territory.json +#. Label of the parent_crm_territory (Link) field in PageType 'CRM Territory' +#: crm/fcrm/pagetype/crm_territory/crm_territory.json msgid "Parent CRM Territory" msgstr "" @@ -4251,8 +4251,8 @@ msgstr "یادآور پرداخت" msgid "Payment Reminder from Frappé - (#{{ name }})" msgstr "" -#. Option for the 'Status' (Select) field in DocType 'CRM Invitation' -#: crm/fcrm/doctype/crm_invitation/crm_invitation.json +#. Option for the 'Status' (Select) field in PageType 'CRM Invitation' +#: crm/fcrm/pagetype/crm_invitation/crm_invitation.json msgid "Pending" msgstr "انتظار" @@ -4264,10 +4264,10 @@ msgstr "" msgid "Period" msgstr "دوره زمانی" -#. Label of the person_section (Section Break) field in DocType 'CRM Deal' -#. Label of the person_tab (Tab Break) field in DocType 'CRM Lead' -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_lead/crm_lead.json +#. Label of the person_section (Section Break) field in PageType 'CRM Deal' +#. Label of the person_tab (Tab Break) field in PageType 'CRM Lead' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_lead/crm_lead.json msgid "Person" msgstr "" @@ -4275,19 +4275,19 @@ msgstr "" msgid "Personal Settings" msgstr "" -#. Label of the phone (Data) field in DocType 'CRM Contacts' -#. Label of the phone (Data) field in DocType 'CRM Lead' -#. Option for the 'Device' (Select) field in DocType 'CRM Telephony Agent' -#: crm/fcrm/doctype/crm_contacts/crm_contacts.json -#: crm/fcrm/doctype/crm_lead/crm_lead.json -#: crm/fcrm/doctype/crm_telephony_agent/crm_telephony_agent.json +#. Label of the phone (Data) field in PageType 'CRM Contacts' +#. Label of the phone (Data) field in PageType 'CRM Lead' +#. Option for the 'Device' (Select) field in PageType 'CRM Telephony Agent' +#: crm/fcrm/pagetype/crm_contacts/crm_contacts.json +#: crm/fcrm/pagetype/crm_lead/crm_lead.json +#: crm/fcrm/pagetype/crm_telephony_agent/crm_telephony_agent.json #: frontend/src/pages/MobileOrganization.vue:495 #: frontend/src/pages/Organization.vue:516 msgid "Phone" msgstr "تلفن" -#. Label of the phone_nos (Table) field in DocType 'CRM Telephony Agent' -#: crm/fcrm/doctype/crm_telephony_agent/crm_telephony_agent.json +#. Label of the phone_nos (Table) field in PageType 'CRM Telephony Agent' +#: crm/fcrm/pagetype/crm_telephony_agent/crm_telephony_agent.json msgid "Phone Numbers" msgstr "" @@ -4295,8 +4295,8 @@ msgstr "" msgid "Pin View" msgstr "" -#. Label of the pinned (Check) field in DocType 'CRM View Settings' -#: crm/fcrm/doctype/crm_view_settings/crm_view_settings.json +#. Label of the pinned (Check) field in PageType 'CRM View Settings' +#: crm/fcrm/pagetype/crm_view_settings/crm_view_settings.json msgid "Pinned" msgstr "" @@ -4346,7 +4346,7 @@ msgstr "لطفاً یک مخاطب موجود را انتخاب کنید" msgid "Please select an existing organization" msgstr "لطفاً یک سازمان موجود را انتخاب کنید" -#: crm/fcrm/doctype/helpdesk_crm_settings/helpdesk_crm_settings.py:126 +#: crm/fcrm/pagetype/helpdesk_crm_settings/helpdesk_crm_settings.py:126 msgid "Please set Email Address" msgstr "لطفا آدرس ایمیل را تنظیم کنید" @@ -4354,18 +4354,18 @@ msgstr "لطفا آدرس ایمیل را تنظیم کنید" msgid "Please setup Exotel intergration" msgstr "" -#: crm/fcrm/doctype/crm_deal/crm_deal.py:181 +#: crm/fcrm/pagetype/crm_deal/crm_deal.py:181 msgid "Please specify a reason for losing the deal." msgstr "" -#: crm/fcrm/doctype/crm_deal/crm_deal.py:183 +#: crm/fcrm/pagetype/crm_deal/crm_deal.py:183 msgid "Please specify the reason for losing the deal." msgstr "" -#. Label of the position (Int) field in DocType 'CRM Deal Status' -#. Label of the position (Int) field in DocType 'CRM Lead Status' -#: crm/fcrm/doctype/crm_deal_status/crm_deal_status.json -#: crm/fcrm/doctype/crm_lead_status/crm_lead_status.json +#. Label of the position (Int) field in PageType 'CRM Deal Status' +#. Label of the position (Int) field in PageType 'CRM Lead Status' +#: crm/fcrm/pagetype/crm_deal_status/crm_deal_status.json +#: crm/fcrm/pagetype/crm_lead_status/crm_lead_status.json msgid "Position" msgstr "موقعیت" @@ -4373,18 +4373,18 @@ msgstr "موقعیت" msgid "Primary" msgstr "اصلی" -#. Label of the email (Data) field in DocType 'CRM Deal' -#: crm/fcrm/doctype/crm_deal/crm_deal.json +#. Label of the email (Data) field in PageType 'CRM Deal' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json msgid "Primary Email" msgstr "ایمیل اصلی" -#. Label of the mobile_no (Data) field in DocType 'CRM Deal' -#: crm/fcrm/doctype/crm_deal/crm_deal.json +#. Label of the mobile_no (Data) field in PageType 'CRM Deal' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json msgid "Primary Mobile No" msgstr "" -#. Label of the phone (Data) field in DocType 'CRM Deal' -#: crm/fcrm/doctype/crm_deal/crm_deal.json +#. Label of the phone (Data) field in PageType 'CRM Deal' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json msgid "Primary Phone" msgstr "تلفن اصلی" @@ -4392,57 +4392,57 @@ msgstr "تلفن اصلی" msgid "Primary contact set" msgstr "" -#. Label of the priorities (Table) field in DocType 'CRM Service Level +#. Label of the priorities (Table) field in PageType 'CRM Service Level #. Agreement' -#: crm/fcrm/doctype/crm_service_level_agreement/crm_service_level_agreement.json +#: crm/fcrm/pagetype/crm_service_level_agreement/crm_service_level_agreement.json msgid "Priorities" msgstr "اولویت های" -#. Label of the priority (Link) field in DocType 'CRM Service Level Priority' -#. Label of the priority (Select) field in DocType 'CRM Task' -#: crm/fcrm/doctype/crm_service_level_priority/crm_service_level_priority.json -#: crm/fcrm/doctype/crm_task/crm_task.json +#. Label of the priority (Link) field in PageType 'CRM Service Level Priority' +#. Label of the priority (Select) field in PageType 'CRM Task' +#: crm/fcrm/pagetype/crm_service_level_priority/crm_service_level_priority.json +#: crm/fcrm/pagetype/crm_task/crm_task.json #: frontend/src/components/Settings/AssignmentRules/AssignmentRuleView.vue:64 #: frontend/src/components/Settings/AssignmentRules/AssignmentRulesList.vue:20 msgid "Priority" msgstr "اولویت" -#. Label of the private (Check) field in DocType 'CRM Dashboard' -#: crm/fcrm/doctype/crm_dashboard/crm_dashboard.json +#. Label of the private (Check) field in PageType 'CRM Dashboard' +#: crm/fcrm/pagetype/crm_dashboard/crm_dashboard.json #: frontend/src/components/FilesUploader/FilesUploaderArea.vue:89 msgid "Private" msgstr "خصوصی" -#. Label of the probability (Percent) field in DocType 'CRM Deal' -#. Label of the probability (Percent) field in DocType 'CRM Deal Status' -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_deal_status/crm_deal_status.json +#. Label of the probability (Percent) field in PageType 'CRM Deal' +#. Label of the probability (Percent) field in PageType 'CRM Deal Status' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_deal_status/crm_deal_status.json msgid "Probability" msgstr "احتمال" -#. Label of the product_code (Link) field in DocType 'CRM Products' -#: crm/fcrm/doctype/crm_products/crm_products.json +#. Label of the product_code (Link) field in PageType 'CRM Products' +#: crm/fcrm/pagetype/crm_products/crm_products.json msgid "Product" msgstr "تولید - محصول" -#. Label of the product_code (Data) field in DocType 'CRM Product' -#: crm/fcrm/doctype/crm_product/crm_product.json +#. Label of the product_code (Data) field in PageType 'CRM Product' +#: crm/fcrm/pagetype/crm_product/crm_product.json msgid "Product Code" msgstr "" -#. Label of the product_name (Data) field in DocType 'CRM Product' -#. Label of the product_name (Data) field in DocType 'CRM Products' -#: crm/fcrm/doctype/crm_product/crm_product.json -#: crm/fcrm/doctype/crm_products/crm_products.json +#. Label of the product_name (Data) field in PageType 'CRM Product' +#. Label of the product_name (Data) field in PageType 'CRM Products' +#: crm/fcrm/pagetype/crm_product/crm_product.json +#: crm/fcrm/pagetype/crm_products/crm_products.json msgid "Product Name" msgstr "" -#. Label of the products_tab (Tab Break) field in DocType 'CRM Deal' -#. Label of the products (Table) field in DocType 'CRM Deal' -#. Label of the products_tab (Tab Break) field in DocType 'CRM Lead' -#. Label of the products (Table) field in DocType 'CRM Lead' -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_lead/crm_lead.json +#. Label of the products_tab (Tab Break) field in PageType 'CRM Deal' +#. Label of the products (Table) field in PageType 'CRM Deal' +#. Label of the products_tab (Tab Break) field in PageType 'CRM Lead' +#. Label of the products (Table) field in PageType 'CRM Lead' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_lead/crm_lead.json msgid "Products" msgstr "محصولات" @@ -4459,8 +4459,8 @@ msgstr "" msgid "Projected vs actual revenue based on deal probability" msgstr "" -#. Label of the public (Check) field in DocType 'CRM View Settings' -#: crm/fcrm/doctype/crm_view_settings/crm_view_settings.json +#. Label of the public (Check) field in PageType 'CRM View Settings' +#: crm/fcrm/pagetype/crm_view_settings/crm_view_settings.json msgid "Public" msgstr "عمومی" @@ -4472,23 +4472,23 @@ msgstr "" msgid "Public view" msgstr "" -#. Label of the qty (Float) field in DocType 'CRM Products' -#: crm/fcrm/doctype/crm_products/crm_products.json +#. Label of the qty (Float) field in PageType 'CRM Products' +#: crm/fcrm/pagetype/crm_products/crm_products.json msgid "Quantity" msgstr "مقدار" -#. Option for the 'Status' (Select) field in DocType 'CRM Call Log' -#: crm/fcrm/doctype/crm_call_log/crm_call_log.json +#. Option for the 'Status' (Select) field in PageType 'CRM Call Log' +#: crm/fcrm/pagetype/crm_call_log/crm_call_log.json msgid "Queued" msgstr "در صف" -#. Option for the 'Type' (Select) field in DocType 'CRM Fields Layout' -#: crm/fcrm/doctype/crm_fields_layout/crm_fields_layout.json +#. Option for the 'Type' (Select) field in PageType 'CRM Fields Layout' +#: crm/fcrm/pagetype/crm_fields_layout/crm_fields_layout.json msgid "Quick Entry" msgstr "ثبت سریع" -#. Option for the 'Type' (Select) field in DocType 'CRM Global Settings' -#: crm/fcrm/doctype/crm_global_settings/crm_global_settings.json +#. Option for the 'Type' (Select) field in PageType 'CRM Global Settings' +#: crm/fcrm/pagetype/crm_global_settings/crm_global_settings.json msgid "Quick Filters" msgstr "فیلترهای سریع" @@ -4500,13 +4500,13 @@ msgstr "" msgid "Quick entry layout" msgstr "" -#. Label of the rate (Currency) field in DocType 'CRM Products' -#: crm/fcrm/doctype/crm_products/crm_products.json +#. Label of the rate (Currency) field in PageType 'CRM Products' +#: crm/fcrm/pagetype/crm_products/crm_products.json msgid "Rate" msgstr "نرخ" -#. Label of the read (Check) field in DocType 'CRM Notification' -#: crm/fcrm/doctype/crm_notification/crm_notification.json +#. Label of the read (Check) field in PageType 'CRM Notification' +#: crm/fcrm/pagetype/crm_notification/crm_notification.json msgid "Read" msgstr "خواندن" @@ -4514,48 +4514,48 @@ msgstr "خواندن" msgid "Reason" msgstr "دلیل" -#. Label of the record_calls (Check) field in DocType 'CRM Twilio Settings' -#: crm/fcrm/doctype/crm_twilio_settings/crm_twilio_settings.json +#. Label of the record_calls (Check) field in PageType 'CRM Twilio Settings' +#: crm/fcrm/pagetype/crm_twilio_settings/crm_twilio_settings.json msgid "Record Calls" msgstr "" -#. Label of the record_call (Check) field in DocType 'CRM Exotel Settings' -#: crm/fcrm/doctype/crm_exotel_settings/crm_exotel_settings.json +#. Label of the record_call (Check) field in PageType 'CRM Exotel Settings' +#: crm/fcrm/pagetype/crm_exotel_settings/crm_exotel_settings.json msgid "Record Outgoing Calls" msgstr "" -#. Label of the recording_url (Data) field in DocType 'CRM Call Log' -#: crm/fcrm/doctype/crm_call_log/crm_call_log.json +#. Label of the recording_url (Data) field in PageType 'CRM Call Log' +#: crm/fcrm/pagetype/crm_call_log/crm_call_log.json msgid "Recording URL" msgstr "URL ضبط" -#. Label of the reference_name (Dynamic Link) field in DocType 'CRM +#. Label of the reference_name (Dynamic Link) field in PageType 'CRM #. Notification' -#. Label of the reference_docname (Dynamic Link) field in DocType 'CRM Task' -#. Label of the reference_docname (Dynamic Link) field in DocType 'FCRM Note' -#: crm/fcrm/doctype/crm_notification/crm_notification.json -#: crm/fcrm/doctype/crm_task/crm_task.json -#: crm/fcrm/doctype/fcrm_note/fcrm_note.json -msgid "Reference Doc" +#. Label of the reference_docname (Dynamic Link) field in PageType 'CRM Task' +#. Label of the reference_docname (Dynamic Link) field in PageType 'FCRM Note' +#: crm/fcrm/pagetype/crm_notification/crm_notification.json +#: crm/fcrm/pagetype/crm_task/crm_task.json +#: crm/fcrm/pagetype/fcrm_note/fcrm_note.json +msgid "Reference Pg" msgstr "" -#. Label of the reference_doctype (Link) field in DocType 'CRM Notification' -#: crm/fcrm/doctype/crm_notification/crm_notification.json -msgid "Reference Doctype" +#. Label of the reference_pagetype (Link) field in PageType 'CRM Notification' +#: crm/fcrm/pagetype/crm_notification/crm_notification.json +msgid "Reference Pagetype" msgstr "نوع مرجع" -#. Label of the reference_doctype (Link) field in DocType 'CRM Call Log' -#. Label of the reference_doctype (Link) field in DocType 'CRM Task' -#. Label of the reference_doctype (Link) field in DocType 'FCRM Note' -#: crm/fcrm/doctype/crm_call_log/crm_call_log.json -#: crm/fcrm/doctype/crm_task/crm_task.json -#: crm/fcrm/doctype/fcrm_note/fcrm_note.json +#. Label of the reference_pagetype (Link) field in PageType 'CRM Call Log' +#. Label of the reference_pagetype (Link) field in PageType 'CRM Task' +#. Label of the reference_pagetype (Link) field in PageType 'FCRM Note' +#: crm/fcrm/pagetype/crm_call_log/crm_call_log.json +#: crm/fcrm/pagetype/crm_task/crm_task.json +#: crm/fcrm/pagetype/fcrm_note/fcrm_note.json msgid "Reference Document Type" msgstr "نوع سند مرجع" -#. Label of the reference_docname (Dynamic Link) field in DocType 'CRM Call +#. Label of the reference_docname (Dynamic Link) field in PageType 'CRM Call #. Log' -#: crm/fcrm/doctype/crm_call_log/crm_call_log.json +#: crm/fcrm/pagetype/crm_call_log/crm_call_log.json msgid "Reference Name" msgstr "نام مرجع" @@ -4625,8 +4625,8 @@ msgstr "پاسخ به همه" msgid "Report an Issue" msgstr "گزارش یک مشکل" -#. Option for the 'Type' (Select) field in DocType 'CRM Fields Layout' -#: crm/fcrm/doctype/crm_fields_layout/crm_fields_layout.json +#. Option for the 'Type' (Select) field in PageType 'CRM Fields Layout' +#: crm/fcrm/pagetype/crm_fields_layout/crm_fields_layout.json msgid "Required Fields" msgstr "فیلدهای الزامی" @@ -4642,7 +4642,7 @@ msgstr "بازنشانی" msgid "Reset Changes" msgstr "بازنشانی تغییرات" -#: crm/fcrm/doctype/erpnext_crm_settings/erpnext_crm_settings.js:7 +#: crm/fcrm/pagetype/erpnext_crm_settings/erpnext_crm_settings.js:7 msgid "Reset ERPNext Form Script" msgstr "" @@ -4654,35 +4654,35 @@ msgstr "بازنشانی به حالت پیش‌فرض" msgid "Reset to default" msgstr "بازنشانی به حالت پیش‌فرض" -#. Label of the response_by (Datetime) field in DocType 'CRM Deal' -#. Label of the response_by (Datetime) field in DocType 'CRM Lead' -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_lead/crm_lead.json +#. Label of the response_by (Datetime) field in PageType 'CRM Deal' +#. Label of the response_by (Datetime) field in PageType 'CRM Lead' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_lead/crm_lead.json msgid "Response By" msgstr "پاسخ توسط" -#. Label of the response_details_section (Section Break) field in DocType 'CRM +#. Label of the response_details_section (Section Break) field in PageType 'CRM #. Deal' -#. Label of the response_details_section (Section Break) field in DocType 'CRM +#. Label of the response_details_section (Section Break) field in PageType 'CRM #. Lead' -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_lead/crm_lead.json +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_lead/crm_lead.json msgid "Response Details" msgstr "جزئیات پاسخ" -#. Label of the section_break_ufaf (Section Break) field in DocType 'CRM +#. Label of the section_break_ufaf (Section Break) field in PageType 'CRM #. Service Level Agreement' -#: crm/fcrm/doctype/crm_service_level_agreement/crm_service_level_agreement.json +#: crm/fcrm/pagetype/crm_service_level_agreement/crm_service_level_agreement.json msgid "Response and Follow Up" msgstr "" -#: crm/fcrm/doctype/fcrm_settings/fcrm_settings.js:14 +#: crm/fcrm/pagetype/fcrm_settings/fcrm_settings.js:14 msgid "Restore" msgstr "بازگرداندن" -#. Label of the restore_defaults (Button) field in DocType 'FCRM Settings' -#: crm/fcrm/doctype/fcrm_settings/fcrm_settings.js:13 -#: crm/fcrm/doctype/fcrm_settings/fcrm_settings.json +#. Label of the restore_defaults (Button) field in PageType 'FCRM Settings' +#: crm/fcrm/pagetype/fcrm_settings/fcrm_settings.js:13 +#: crm/fcrm/pagetype/fcrm_settings/fcrm_settings.json msgid "Restore Defaults" msgstr "" @@ -4699,13 +4699,13 @@ msgstr "درآمد" msgid "Rich Text" msgstr "متن غنی" -#. Label of the rgt (Int) field in DocType 'CRM Territory' -#: crm/fcrm/doctype/crm_territory/crm_territory.json +#. Label of the rgt (Int) field in PageType 'CRM Territory' +#: crm/fcrm/pagetype/crm_territory/crm_territory.json msgid "Right" msgstr "راست" -#. Option for the 'Status' (Select) field in DocType 'CRM Call Log' -#: crm/fcrm/doctype/crm_call_log/crm_call_log.json +#. Option for the 'Status' (Select) field in PageType 'CRM Call Log' +#: crm/fcrm/pagetype/crm_call_log/crm_call_log.json msgid "Ringing" msgstr "زنگ زدن" @@ -4714,55 +4714,55 @@ msgstr "زنگ زدن" msgid "Ringing..." msgstr "" -#. Label of the role (Select) field in DocType 'CRM Invitation' -#: crm/fcrm/doctype/crm_invitation/crm_invitation.json +#. Label of the role (Select) field in PageType 'CRM Invitation' +#: crm/fcrm/pagetype/crm_invitation/crm_invitation.json #: frontend/src/components/Modals/AddExistingUserModal.vue:46 msgid "Role" msgstr "نقش" -#. Option for the 'Type' (Select) field in DocType 'CRM Dropdown Item' -#. Label of the route (Data) field in DocType 'CRM Dropdown Item' -#: crm/fcrm/doctype/crm_dropdown_item/crm_dropdown_item.json +#. Option for the 'Type' (Select) field in PageType 'CRM Dropdown Item' +#. Label of the route (Data) field in PageType 'CRM Dropdown Item' +#: crm/fcrm/pagetype/crm_dropdown_item/crm_dropdown_item.json msgid "Route" msgstr "مسیر" -#. Label of the route_name (Data) field in DocType 'CRM View Settings' -#: crm/fcrm/doctype/crm_view_settings/crm_view_settings.json +#. Label of the route_name (Data) field in PageType 'CRM View Settings' +#: crm/fcrm/pagetype/crm_view_settings/crm_view_settings.json msgid "Route Name" msgstr "" -#. Label of the rows (Code) field in DocType 'CRM View Settings' -#: crm/fcrm/doctype/crm_view_settings/crm_view_settings.json +#. Label of the rows (Code) field in PageType 'CRM View Settings' +#: crm/fcrm/pagetype/crm_view_settings/crm_view_settings.json msgid "Rows" msgstr "" -#. Label of the sla_tab (Tab Break) field in DocType 'CRM Deal' -#. Label of the sla (Link) field in DocType 'CRM Deal' -#. Label of the sla_tab (Tab Break) field in DocType 'CRM Lead' -#. Label of the sla (Link) field in DocType 'CRM Lead' -#. Label of a shortcut in the Frappe CRM Workspace -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_lead/crm_lead.json -#: crm/fcrm/workspace/frappe_crm/frappe_crm.json +#. Label of the sla_tab (Tab Break) field in PageType 'CRM Deal' +#. Label of the sla (Link) field in PageType 'CRM Deal' +#. Label of the sla_tab (Tab Break) field in PageType 'CRM Lead' +#. Label of the sla (Link) field in PageType 'CRM Lead' +#. Label of a shortcut in the Jingrow CRM Workspace +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_lead/crm_lead.json +#: crm/fcrm/workspace/jingrow_crm/jingrow_crm.json msgid "SLA" msgstr "" -#. Label of the sla_creation (Datetime) field in DocType 'CRM Deal' -#. Label of the sla_creation (Datetime) field in DocType 'CRM Lead' -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_lead/crm_lead.json +#. Label of the sla_creation (Datetime) field in PageType 'CRM Deal' +#. Label of the sla_creation (Datetime) field in PageType 'CRM Lead' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_lead/crm_lead.json msgid "SLA Creation" msgstr "" -#. Label of the sla_name (Data) field in DocType 'CRM Service Level Agreement' -#: crm/fcrm/doctype/crm_service_level_agreement/crm_service_level_agreement.json +#. Label of the sla_name (Data) field in PageType 'CRM Service Level Agreement' +#: crm/fcrm/pagetype/crm_service_level_agreement/crm_service_level_agreement.json msgid "SLA Name" msgstr "" -#. Label of the sla_status (Select) field in DocType 'CRM Deal' -#. Label of the sla_status (Select) field in DocType 'CRM Lead' -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_lead/crm_lead.json +#. Label of the sla_status (Select) field in PageType 'CRM Deal' +#. Label of the sla_status (Select) field in PageType 'CRM Lead' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_lead/crm_lead.json msgid "SLA Status" msgstr "وضعیت SLA" @@ -4771,57 +4771,57 @@ msgid "SUBJECT" msgstr "" #. Name of a role -#. Option for the 'Role' (Select) field in DocType 'CRM Invitation' -#: crm/fcrm/doctype/crm_call_log/crm_call_log.json -#: crm/fcrm/doctype/crm_communication_status/crm_communication_status.json -#: crm/fcrm/doctype/crm_dashboard/crm_dashboard.json -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_deal_status/crm_deal_status.json -#: crm/fcrm/doctype/crm_exotel_settings/crm_exotel_settings.json -#: crm/fcrm/doctype/crm_form_script/crm_form_script.json -#: crm/fcrm/doctype/crm_global_settings/crm_global_settings.json -#: crm/fcrm/doctype/crm_holiday_list/crm_holiday_list.json -#: crm/fcrm/doctype/crm_industry/crm_industry.json -#: crm/fcrm/doctype/crm_invitation/crm_invitation.json -#: crm/fcrm/doctype/crm_lead/crm_lead.json -#: crm/fcrm/doctype/crm_lead_source/crm_lead_source.json -#: crm/fcrm/doctype/crm_lead_status/crm_lead_status.json -#: crm/fcrm/doctype/crm_lost_reason/crm_lost_reason.json -#: crm/fcrm/doctype/crm_notification/crm_notification.json -#: crm/fcrm/doctype/crm_organization/crm_organization.json -#: crm/fcrm/doctype/crm_service_level_agreement/crm_service_level_agreement.json -#: crm/fcrm/doctype/crm_task/crm_task.json -#: crm/fcrm/doctype/crm_territory/crm_territory.json -#: crm/fcrm/doctype/crm_twilio_settings/crm_twilio_settings.json -#: crm/fcrm/doctype/crm_view_settings/crm_view_settings.json -#: crm/fcrm/doctype/erpnext_crm_settings/erpnext_crm_settings.json -#: crm/fcrm/doctype/fcrm_note/fcrm_note.json -#: crm/fcrm/doctype/fcrm_settings/fcrm_settings.json -#: crm/fcrm/doctype/helpdesk_crm_settings/helpdesk_crm_settings.json +#. Option for the 'Role' (Select) field in PageType 'CRM Invitation' +#: crm/fcrm/pagetype/crm_call_log/crm_call_log.json +#: crm/fcrm/pagetype/crm_communication_status/crm_communication_status.json +#: crm/fcrm/pagetype/crm_dashboard/crm_dashboard.json +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_deal_status/crm_deal_status.json +#: crm/fcrm/pagetype/crm_exotel_settings/crm_exotel_settings.json +#: crm/fcrm/pagetype/crm_form_script/crm_form_script.json +#: crm/fcrm/pagetype/crm_global_settings/crm_global_settings.json +#: crm/fcrm/pagetype/crm_holiday_list/crm_holiday_list.json +#: crm/fcrm/pagetype/crm_industry/crm_industry.json +#: crm/fcrm/pagetype/crm_invitation/crm_invitation.json +#: crm/fcrm/pagetype/crm_lead/crm_lead.json +#: crm/fcrm/pagetype/crm_lead_source/crm_lead_source.json +#: crm/fcrm/pagetype/crm_lead_status/crm_lead_status.json +#: crm/fcrm/pagetype/crm_lost_reason/crm_lost_reason.json +#: crm/fcrm/pagetype/crm_notification/crm_notification.json +#: crm/fcrm/pagetype/crm_organization/crm_organization.json +#: crm/fcrm/pagetype/crm_service_level_agreement/crm_service_level_agreement.json +#: crm/fcrm/pagetype/crm_task/crm_task.json +#: crm/fcrm/pagetype/crm_territory/crm_territory.json +#: crm/fcrm/pagetype/crm_twilio_settings/crm_twilio_settings.json +#: crm/fcrm/pagetype/crm_view_settings/crm_view_settings.json +#: crm/fcrm/pagetype/erpnext_crm_settings/erpnext_crm_settings.json +#: crm/fcrm/pagetype/fcrm_note/fcrm_note.json +#: crm/fcrm/pagetype/fcrm_settings/fcrm_settings.json +#: crm/fcrm/pagetype/helpdesk_crm_settings/helpdesk_crm_settings.json msgid "Sales Manager" msgstr "مدیر فروش" #. Name of a role -#. Option for the 'Role' (Select) field in DocType 'CRM Invitation' -#: crm/fcrm/doctype/crm_call_log/crm_call_log.json -#: crm/fcrm/doctype/crm_communication_status/crm_communication_status.json -#: crm/fcrm/doctype/crm_dashboard/crm_dashboard.json -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_deal_status/crm_deal_status.json -#: crm/fcrm/doctype/crm_global_settings/crm_global_settings.json -#: crm/fcrm/doctype/crm_holiday_list/crm_holiday_list.json -#: crm/fcrm/doctype/crm_industry/crm_industry.json -#: crm/fcrm/doctype/crm_invitation/crm_invitation.json -#: crm/fcrm/doctype/crm_lead/crm_lead.json -#: crm/fcrm/doctype/crm_lead_source/crm_lead_source.json -#: crm/fcrm/doctype/crm_lead_status/crm_lead_status.json -#: crm/fcrm/doctype/crm_lost_reason/crm_lost_reason.json -#: crm/fcrm/doctype/crm_notification/crm_notification.json -#: crm/fcrm/doctype/crm_organization/crm_organization.json -#: crm/fcrm/doctype/crm_task/crm_task.json -#: crm/fcrm/doctype/crm_territory/crm_territory.json -#: crm/fcrm/doctype/crm_view_settings/crm_view_settings.json -#: crm/fcrm/doctype/fcrm_note/fcrm_note.json +#. Option for the 'Role' (Select) field in PageType 'CRM Invitation' +#: crm/fcrm/pagetype/crm_call_log/crm_call_log.json +#: crm/fcrm/pagetype/crm_communication_status/crm_communication_status.json +#: crm/fcrm/pagetype/crm_dashboard/crm_dashboard.json +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_deal_status/crm_deal_status.json +#: crm/fcrm/pagetype/crm_global_settings/crm_global_settings.json +#: crm/fcrm/pagetype/crm_holiday_list/crm_holiday_list.json +#: crm/fcrm/pagetype/crm_industry/crm_industry.json +#: crm/fcrm/pagetype/crm_invitation/crm_invitation.json +#: crm/fcrm/pagetype/crm_lead/crm_lead.json +#: crm/fcrm/pagetype/crm_lead_source/crm_lead_source.json +#: crm/fcrm/pagetype/crm_lead_status/crm_lead_status.json +#: crm/fcrm/pagetype/crm_lost_reason/crm_lost_reason.json +#: crm/fcrm/pagetype/crm_notification/crm_notification.json +#: crm/fcrm/pagetype/crm_organization/crm_organization.json +#: crm/fcrm/pagetype/crm_task/crm_task.json +#: crm/fcrm/pagetype/crm_territory/crm_territory.json +#: crm/fcrm/pagetype/crm_view_settings/crm_view_settings.json +#: crm/fcrm/pagetype/fcrm_note/fcrm_note.json #: frontend/src/components/Modals/AddExistingUserModal.vue:92 #: frontend/src/components/Settings/InviteUserPage.vue:156 #: frontend/src/components/Settings/InviteUserPage.vue:163 @@ -4845,17 +4845,17 @@ msgstr "" msgid "Salesperson" msgstr "" -#. Label of the salutation (Link) field in DocType 'CRM Deal' -#. Label of the salutation (Link) field in DocType 'CRM Lead' -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_lead/crm_lead.json +#. Label of the salutation (Link) field in PageType 'CRM Deal' +#. Label of the salutation (Link) field in PageType 'CRM Lead' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_lead/crm_lead.json msgid "Salutation" msgstr "عنوان پیشوند" -#. Option for the 'Weekly Off' (Select) field in DocType 'CRM Holiday List' -#. Option for the 'Workday' (Select) field in DocType 'CRM Service Day' -#: crm/fcrm/doctype/crm_holiday_list/crm_holiday_list.json -#: crm/fcrm/doctype/crm_service_day/crm_service_day.json +#. Option for the 'Weekly Off' (Select) field in PageType 'CRM Holiday List' +#. Option for the 'Workday' (Select) field in PageType 'CRM Service Day' +#: crm/fcrm/pagetype/crm_holiday_list/crm_holiday_list.json +#: crm/fcrm/pagetype/crm_service_day/crm_service_day.json msgid "Saturday" msgstr "شنبه" @@ -4904,8 +4904,8 @@ msgstr "زمان‌بندی یک رویداد" msgid "Schedule an event" msgstr "زمان‌بندی یک رویداد" -#. Label of the script (Code) field in DocType 'CRM Form Script' -#: crm/fcrm/doctype/crm_form_script/crm_form_script.json +#. Label of the script (Code) field in PageType 'CRM Form Script' +#: crm/fcrm/pagetype/crm_form_script/crm_form_script.json msgid "Script" msgstr "اسکریپت" @@ -4973,18 +4973,18 @@ msgstr "" msgid "Send invites to" msgstr "" -#. Option for the 'Type' (Select) field in DocType 'CRM Dropdown Item' -#: crm/fcrm/doctype/crm_dropdown_item/crm_dropdown_item.json +#. Option for the 'Type' (Select) field in PageType 'CRM Dropdown Item' +#: crm/fcrm/pagetype/crm_dropdown_item/crm_dropdown_item.json msgid "Separator" msgstr "جداکننده" -#. Label of the naming_series (Select) field in DocType 'CRM Lead' -#: crm/fcrm/doctype/crm_lead/crm_lead.json +#. Label of the naming_series (Select) field in PageType 'CRM Lead' +#: crm/fcrm/pagetype/crm_lead/crm_lead.json msgid "Series" msgstr "سری" -#. Label of the service_provider (Select) field in DocType 'FCRM Settings' -#: crm/fcrm/doctype/fcrm_settings/fcrm_settings.json +#. Label of the service_provider (Select) field in PageType 'FCRM Settings' +#: crm/fcrm/pagetype/fcrm_settings/fcrm_settings.json msgid "Service Provider" msgstr "ارائه دهنده خدمات" @@ -5029,7 +5029,7 @@ msgid "Setting up" msgstr "" #: frontend/src/components/Settings/emailConfig.js:145 -msgid "Setting up Frappe Mail requires you to have an API key and API Secret of your email account. Read more " +msgid "Setting up Jingrow Mail requires you to have an API key and API Secret of your email account. Read more " msgstr "" #: frontend/src/components/Settings/emailConfig.js:97 @@ -5062,8 +5062,8 @@ msgid "Setting up Yandex requires you to enable two factor authentication\n" "\t\t and app specific passwords. Read more " msgstr "" -#. Label of the defaults_tab (Tab Break) field in DocType 'FCRM Settings' -#: crm/fcrm/doctype/fcrm_settings/fcrm_settings.json +#. Label of the defaults_tab (Tab Break) field in PageType 'FCRM Settings' +#: crm/fcrm/pagetype/fcrm_settings/fcrm_settings.json #: frontend/src/components/Layouts/AppSidebar.vue:537 #: frontend/src/components/Settings/Settings.vue:12 msgid "Settings" @@ -5073,7 +5073,7 @@ msgstr "تنظیمات" msgid "Setup Email" msgstr "" -#: crm/fcrm/doctype/fcrm_settings/fcrm_settings.py:199 +#: crm/fcrm/pagetype/fcrm_settings/fcrm_settings.py:199 msgid "Setup the Exchange Rate Provider as 'Exchangerate Host' in settings, as default provider does not support currency conversion for {0} to {1}." msgstr "" @@ -5108,20 +5108,20 @@ msgstr "نمایش کمتر" msgid "Show preview" msgstr "" -#. Option for the 'Type' (Select) field in DocType 'CRM Fields Layout' -#: crm/fcrm/doctype/crm_fields_layout/crm_fields_layout.json +#. Option for the 'Type' (Select) field in PageType 'CRM Fields Layout' +#: crm/fcrm/pagetype/crm_fields_layout/crm_fields_layout.json msgid "Side Panel" msgstr "پنل کناری" -#. Option for the 'Type' (Select) field in DocType 'CRM Global Settings' -#: crm/fcrm/doctype/crm_global_settings/crm_global_settings.json +#. Option for the 'Type' (Select) field in PageType 'CRM Global Settings' +#: crm/fcrm/pagetype/crm_global_settings/crm_global_settings.json msgid "Sidebar Items" msgstr "موارد نوار کناری" -#. Description of the 'Condition' (Code) field in DocType 'CRM Service Level +#. Description of the 'Condition' (Code) field in PageType 'CRM Service Level #. Agreement' -#: crm/fcrm/doctype/crm_service_level_agreement/crm_service_level_agreement.json -msgid "Simple Python Expression, Example: doc.status == 'Open' and doc.lead_source == 'Ads'" +#: crm/fcrm/pagetype/crm_service_level_agreement/crm_service_level_agreement.json +msgid "Simple Python Expression, Example: pg.status == 'Open' and pg.lead_source == 'Ads'" msgstr "" #: frontend/src/components/AssignTo.vue:83 @@ -5145,16 +5145,16 @@ msgstr "" msgid "Sort" msgstr "مرتب‌سازی" -#. Label of the source (Link) field in DocType 'CRM Deal' -#. Label of the source (Link) field in DocType 'CRM Lead' -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_lead/crm_lead.json +#. Label of the source (Link) field in PageType 'CRM Deal' +#. Label of the source (Link) field in PageType 'CRM Lead' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_lead/crm_lead.json #: frontend/src/components/Modals/EditValueModal.vue:10 msgid "Source" msgstr "منبع" -#. Label of the source_name (Data) field in DocType 'CRM Lead Source' -#: crm/fcrm/doctype/crm_lead_source/crm_lead_source.json +#. Label of the source_name (Data) field in PageType 'CRM Lead Source' +#: crm/fcrm/pagetype/crm_lead_source/crm_lead_source.json msgid "Source Name" msgstr "نام منبع" @@ -5167,12 +5167,12 @@ msgstr "اسپیسر" msgid "Stage" msgstr "صحنه" -#: crm/fcrm/doctype/crm_form_script/crm_form_script.js:15 +#: crm/fcrm/pagetype/crm_form_script/crm_form_script.js:15 msgid "Standard Form Scripts can not be modified, duplicate the Form Script instead." msgstr "" -#. Label of the standard_rate (Currency) field in DocType 'CRM Product' -#: crm/fcrm/doctype/crm_product/crm_product.json +#. Label of the standard_rate (Currency) field in PageType 'CRM Product' +#: crm/fcrm/pagetype/crm_product/crm_product.json msgid "Standard Selling Rate" msgstr "نرخ فروش استاندارد" @@ -5180,18 +5180,18 @@ msgstr "نرخ فروش استاندارد" msgid "Standard Views" msgstr "" -#. Label of the start_date (Date) field in DocType 'CRM Service Level +#. Label of the start_date (Date) field in PageType 'CRM Service Level #. Agreement' -#. Label of the start_date (Date) field in DocType 'CRM Task' -#: crm/fcrm/doctype/crm_service_level_agreement/crm_service_level_agreement.json -#: crm/fcrm/doctype/crm_task/crm_task.json +#. Label of the start_date (Date) field in PageType 'CRM Task' +#: crm/fcrm/pagetype/crm_service_level_agreement/crm_service_level_agreement.json +#: crm/fcrm/pagetype/crm_task/crm_task.json msgid "Start Date" msgstr "تاریخ شروع" -#. Label of the start_time (Datetime) field in DocType 'CRM Call Log' -#. Label of the start_time (Time) field in DocType 'CRM Service Day' -#: crm/fcrm/doctype/crm_call_log/crm_call_log.json -#: crm/fcrm/doctype/crm_service_day/crm_service_day.json +#. Label of the start_time (Datetime) field in PageType 'CRM Call Log' +#. Label of the start_time (Time) field in PageType 'CRM Service Day' +#: crm/fcrm/pagetype/crm_call_log/crm_call_log.json +#: crm/fcrm/pagetype/crm_service_day/crm_service_day.json #: frontend/src/components/Calendar/CalendarEventPanel.vue:234 #: frontend/src/components/Modals/EventModal.vue:103 msgid "Start Time" @@ -5205,32 +5205,32 @@ msgstr "زمان شروع و پایان الزامی است" msgid "Start with sample 10 leads" msgstr "" -#. Label of the status (Select) field in DocType 'CRM Call Log' -#. Label of the status (Data) field in DocType 'CRM Communication Status' -#. Label of the status (Link) field in DocType 'CRM Deal' -#. Label of the deal_status (Data) field in DocType 'CRM Deal Status' -#. Label of the status (Select) field in DocType 'CRM Invitation' -#. Label of the status (Link) field in DocType 'CRM Lead' -#. Label of the lead_status (Data) field in DocType 'CRM Lead Status' -#. Label of the status (Select) field in DocType 'CRM Task' -#: crm/fcrm/doctype/crm_call_log/crm_call_log.json -#: crm/fcrm/doctype/crm_communication_status/crm_communication_status.json -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_deal_status/crm_deal_status.json -#: crm/fcrm/doctype/crm_invitation/crm_invitation.json -#: crm/fcrm/doctype/crm_lead/crm_lead.json -#: crm/fcrm/doctype/crm_lead_status/crm_lead_status.json -#: crm/fcrm/doctype/crm_task/crm_task.json frontend/src/pages/Contact.vue:505 +#. Label of the status (Select) field in PageType 'CRM Call Log' +#. Label of the status (Data) field in PageType 'CRM Communication Status' +#. Label of the status (Link) field in PageType 'CRM Deal' +#. Label of the deal_status (Data) field in PageType 'CRM Deal Status' +#. Label of the status (Select) field in PageType 'CRM Invitation' +#. Label of the status (Link) field in PageType 'CRM Lead' +#. Label of the lead_status (Data) field in PageType 'CRM Lead Status' +#. Label of the status (Select) field in PageType 'CRM Task' +#: crm/fcrm/pagetype/crm_call_log/crm_call_log.json +#: crm/fcrm/pagetype/crm_communication_status/crm_communication_status.json +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_deal_status/crm_deal_status.json +#: crm/fcrm/pagetype/crm_invitation/crm_invitation.json +#: crm/fcrm/pagetype/crm_lead/crm_lead.json +#: crm/fcrm/pagetype/crm_lead_status/crm_lead_status.json +#: crm/fcrm/pagetype/crm_task/crm_task.json frontend/src/pages/Contact.vue:505 #: frontend/src/pages/MobileContact.vue:513 #: frontend/src/pages/MobileOrganization.vue:457 #: frontend/src/pages/Organization.vue:478 msgid "Status" msgstr "وضعیت" -#. Label of the status_change_log (Table) field in DocType 'CRM Deal' -#. Label of the status_change_log (Table) field in DocType 'CRM Lead' -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_lead/crm_lead.json +#. Label of the status_change_log (Table) field in PageType 'CRM Deal' +#. Label of the status_change_log (Table) field in PageType 'CRM Lead' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_lead/crm_lead.json msgid "Status Change Log" msgstr "" @@ -5239,8 +5239,8 @@ msgstr "" msgid "Status is required" msgstr "" -#. Label of the subdomain (Data) field in DocType 'CRM Exotel Settings' -#: crm/fcrm/doctype/crm_exotel_settings/crm_exotel_settings.json +#. Label of the subdomain (Data) field in PageType 'CRM Exotel Settings' +#: crm/fcrm/pagetype/crm_exotel_settings/crm_exotel_settings.json msgid "Subdomain" msgstr "زیر دامنه" @@ -5258,10 +5258,10 @@ msgstr "موضوع الزامی است" msgid "Subject: {0}" msgstr "" -#. Option for the 'Weekly Off' (Select) field in DocType 'CRM Holiday List' -#. Option for the 'Workday' (Select) field in DocType 'CRM Service Day' -#: crm/fcrm/doctype/crm_holiday_list/crm_holiday_list.json -#: crm/fcrm/doctype/crm_service_day/crm_service_day.json +#. Option for the 'Weekly Off' (Select) field in PageType 'CRM Holiday List' +#. Option for the 'Workday' (Select) field in PageType 'CRM Service Day' +#: crm/fcrm/pagetype/crm_holiday_list/crm_holiday_list.json +#: crm/fcrm/pagetype/crm_service_day/crm_service_day.json msgid "Sunday" msgstr "یک‌شنبه" @@ -5282,21 +5282,21 @@ msgid "System Configuration" msgstr "" #. Name of a role -#. Option for the 'Role' (Select) field in DocType 'CRM Invitation' -#: crm/fcrm/doctype/crm_dashboard/crm_dashboard.json -#: crm/fcrm/doctype/crm_exotel_settings/crm_exotel_settings.json -#: crm/fcrm/doctype/crm_fields_layout/crm_fields_layout.json -#: crm/fcrm/doctype/crm_global_settings/crm_global_settings.json -#: crm/fcrm/doctype/crm_invitation/crm_invitation.json -#: crm/fcrm/doctype/crm_lead_source/crm_lead_source.json -#: crm/fcrm/doctype/crm_lost_reason/crm_lost_reason.json -#: crm/fcrm/doctype/crm_notification/crm_notification.json -#: crm/fcrm/doctype/crm_product/crm_product.json -#: crm/fcrm/doctype/crm_telephony_agent/crm_telephony_agent.json -#: crm/fcrm/doctype/crm_twilio_settings/crm_twilio_settings.json -#: crm/fcrm/doctype/erpnext_crm_settings/erpnext_crm_settings.json -#: crm/fcrm/doctype/fcrm_settings/fcrm_settings.json -#: crm/fcrm/doctype/helpdesk_crm_settings/helpdesk_crm_settings.json +#. Option for the 'Role' (Select) field in PageType 'CRM Invitation' +#: crm/fcrm/pagetype/crm_dashboard/crm_dashboard.json +#: crm/fcrm/pagetype/crm_exotel_settings/crm_exotel_settings.json +#: crm/fcrm/pagetype/crm_fields_layout/crm_fields_layout.json +#: crm/fcrm/pagetype/crm_global_settings/crm_global_settings.json +#: crm/fcrm/pagetype/crm_invitation/crm_invitation.json +#: crm/fcrm/pagetype/crm_lead_source/crm_lead_source.json +#: crm/fcrm/pagetype/crm_lost_reason/crm_lost_reason.json +#: crm/fcrm/pagetype/crm_notification/crm_notification.json +#: crm/fcrm/pagetype/crm_product/crm_product.json +#: crm/fcrm/pagetype/crm_telephony_agent/crm_telephony_agent.json +#: crm/fcrm/pagetype/crm_twilio_settings/crm_twilio_settings.json +#: crm/fcrm/pagetype/erpnext_crm_settings/erpnext_crm_settings.json +#: crm/fcrm/pagetype/fcrm_settings/fcrm_settings.json +#: crm/fcrm/pagetype/helpdesk_crm_settings/helpdesk_crm_settings.json msgid "System Manager" msgstr "مدیر سیستم" @@ -5308,8 +5308,8 @@ msgstr "" msgid "Take a note..." msgstr "یادداشت کنید..." -#. Option for the 'Type' (Select) field in DocType 'CRM Notification' -#: crm/fcrm/doctype/crm_notification/crm_notification.json +#. Option for the 'Type' (Select) field in PageType 'CRM Notification' +#: crm/fcrm/pagetype/crm_notification/crm_notification.json #: frontend/src/components/Layouts/AppSidebar.vue:555 msgid "Task" msgstr "تسک" @@ -5327,8 +5327,8 @@ msgstr "" msgid "Telephony" msgstr "" -#. Label of the telephony_medium (Select) field in DocType 'CRM Call Log' -#: crm/fcrm/doctype/crm_call_log/crm_call_log.json +#. Label of the telephony_medium (Select) field in PageType 'CRM Call Log' +#: crm/fcrm/pagetype/crm_call_log/crm_call_log.json msgid "Telephony Medium" msgstr "" @@ -5364,27 +5364,27 @@ msgstr "" msgid "Template updated successfully" msgstr "" -#. Label of a shortcut in the Frappe CRM Workspace -#: crm/fcrm/workspace/frappe_crm/frappe_crm.json +#. Label of a shortcut in the Jingrow CRM Workspace +#: crm/fcrm/workspace/jingrow_crm/jingrow_crm.json msgid "Territories" msgstr "" -#. Label of the territory (Link) field in DocType 'CRM Deal' -#. Label of the territory (Link) field in DocType 'CRM Lead' -#. Label of the territory (Link) field in DocType 'CRM Organization' -#: crm/api/dashboard.py:1022 crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_lead/crm_lead.json -#: crm/fcrm/doctype/crm_organization/crm_organization.json +#. Label of the territory (Link) field in PageType 'CRM Deal' +#. Label of the territory (Link) field in PageType 'CRM Lead' +#. Label of the territory (Link) field in PageType 'CRM Organization' +#: crm/api/dashboard.py:1022 crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_lead/crm_lead.json +#: crm/fcrm/pagetype/crm_organization/crm_organization.json msgid "Territory" msgstr "قلمرو" -#. Label of the territory_manager (Link) field in DocType 'CRM Territory' -#: crm/fcrm/doctype/crm_territory/crm_territory.json +#. Label of the territory_manager (Link) field in PageType 'CRM Territory' +#: crm/fcrm/pagetype/crm_territory/crm_territory.json msgid "Territory Manager" msgstr "مدیر منطقه" -#. Label of the territory_name (Data) field in DocType 'CRM Territory' -#: crm/fcrm/doctype/crm_territory/crm_territory.json +#. Label of the territory_name (Data) field in PageType 'CRM Territory' +#: crm/fcrm/pagetype/crm_territory/crm_territory.json msgid "Territory Name" msgstr "نام منطقه" @@ -5392,22 +5392,22 @@ msgstr "نام منطقه" msgid "Thanks" msgstr "با تشکر" -#: crm/fcrm/doctype/crm_service_level_agreement/crm_service_level_agreement.py:46 +#: crm/fcrm/pagetype/crm_service_level_agreement/crm_service_level_agreement.py:46 msgid "The Condition '{0}' is invalid: {1}" msgstr "شرط '{0}' نامعتبر است: {1}" -#. Description of the 'Exchange Rate' (Float) field in DocType 'CRM Deal' -#: crm/fcrm/doctype/crm_deal/crm_deal.json +#. Description of the 'Exchange Rate' (Float) field in PageType 'CRM Deal' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json msgid "The rate used to convert the deal’s currency to your crm's base currency (set in CRM Settings). It is set once when the currency is first added and doesn't change automatically." msgstr "" -#. Description of the 'Exchange Rate' (Float) field in DocType 'CRM +#. Description of the 'Exchange Rate' (Float) field in PageType 'CRM #. Organization' -#: crm/fcrm/doctype/crm_organization/crm_organization.json +#: crm/fcrm/pagetype/crm_organization/crm_organization.json msgid "The rate used to convert the organization’s currency to your crm's base currency (set in CRM Settings). It is set once when the currency is first added and doesn't change automatically." msgstr "" -#: crm/fcrm/doctype/crm_service_level_agreement/crm_service_level_agreement.js:14 +#: crm/fcrm/pagetype/crm_service_level_agreement/crm_service_level_agreement.js:14 msgid "There can only be one default priority in Priorities table" msgstr "" @@ -5444,14 +5444,14 @@ msgstr "" msgid "This will delete selected items and unlink linked items to it, are you sure?" msgstr "" -#: crm/fcrm/doctype/fcrm_settings/fcrm_settings.js:9 +#: crm/fcrm/pagetype/fcrm_settings/fcrm_settings.js:9 msgid "This will restore (if not exist) all the default statuses, custom fields and layouts. Delete & Restore will delete default layouts and then restore them." msgstr "" -#. Option for the 'Weekly Off' (Select) field in DocType 'CRM Holiday List' -#. Option for the 'Workday' (Select) field in DocType 'CRM Service Day' -#: crm/fcrm/doctype/crm_holiday_list/crm_holiday_list.json -#: crm/fcrm/doctype/crm_service_day/crm_service_day.json +#. Option for the 'Weekly Off' (Select) field in PageType 'CRM Holiday List' +#. Option for the 'Workday' (Select) field in PageType 'CRM Service Day' +#: crm/fcrm/pagetype/crm_holiday_list/crm_holiday_list.json +#: crm/fcrm/pagetype/crm_service_day/crm_service_day.json msgid "Thursday" msgstr "پنج‌شنبه" @@ -5463,18 +5463,18 @@ msgstr "زمان" msgid "Timespan" msgstr "مدت زمان" -#. Label of the title (Data) field in DocType 'CRM Task' -#. Label of the title (Data) field in DocType 'FCRM Note' -#: crm/fcrm/doctype/crm_task/crm_task.json -#: crm/fcrm/doctype/fcrm_note/fcrm_note.json +#. Label of the title (Data) field in PageType 'CRM Task' +#. Label of the title (Data) field in PageType 'FCRM Note' +#: crm/fcrm/pagetype/crm_task/crm_task.json +#: crm/fcrm/pagetype/fcrm_note/fcrm_note.json #: frontend/src/components/Modals/EventModal.vue:43 #: frontend/src/components/Modals/NoteModal.vue:26 #: frontend/src/components/Modals/TaskModal.vue:25 msgid "Title" msgstr "عنوان" -#. Label of the title_field (Data) field in DocType 'CRM View Settings' -#: crm/fcrm/doctype/crm_view_settings/crm_view_settings.json +#. Label of the title_field (Data) field in PageType 'CRM View Settings' +#: crm/fcrm/pagetype/crm_view_settings/crm_view_settings.json #: frontend/src/components/Kanban/KanbanSettings.vue:29 msgid "Title Field" msgstr "فیلد عنوان" @@ -5484,28 +5484,28 @@ msgstr "فیلد عنوان" msgid "Title is required" msgstr "عنوان الزامی است" -#. Label of the to (Data) field in DocType 'CRM Call Log' -#. Label of the to (Data) field in DocType 'CRM Status Change Log' -#: crm/fcrm/doctype/crm_call_log/crm_call_log.json -#: crm/fcrm/doctype/crm_status_change_log/crm_status_change_log.json +#. Label of the to (Data) field in PageType 'CRM Call Log' +#. Label of the to (Data) field in PageType 'CRM Status Change Log' +#: crm/fcrm/pagetype/crm_call_log/crm_call_log.json +#: crm/fcrm/pagetype/crm_status_change_log/crm_status_change_log.json #: frontend/src/components/Activities/EmailArea.vue:53 msgid "To" msgstr "به" -#. Label of the to_date (Date) field in DocType 'CRM Holiday List' -#. Label of the to_date (Datetime) field in DocType 'CRM Status Change Log' -#: crm/fcrm/doctype/crm_holiday_list/crm_holiday_list.json -#: crm/fcrm/doctype/crm_status_change_log/crm_status_change_log.json +#. Label of the to_date (Date) field in PageType 'CRM Holiday List' +#. Label of the to_date (Datetime) field in PageType 'CRM Status Change Log' +#: crm/fcrm/pagetype/crm_holiday_list/crm_holiday_list.json +#: crm/fcrm/pagetype/crm_status_change_log/crm_status_change_log.json msgid "To Date" msgstr "تا تاریخ" -#. Label of the to_type (Data) field in DocType 'CRM Status Change Log' -#: crm/fcrm/doctype/crm_status_change_log/crm_status_change_log.json +#. Label of the to_type (Data) field in PageType 'CRM Status Change Log' +#: crm/fcrm/pagetype/crm_status_change_log/crm_status_change_log.json msgid "To Type" msgstr "" -#. Label of the to_user (Link) field in DocType 'CRM Notification' -#: crm/fcrm/doctype/crm_notification/crm_notification.json +#. Label of the to_user (Link) field in PageType 'CRM Notification' +#: crm/fcrm/pagetype/crm_notification/crm_notification.json msgid "To User" msgstr "به کاربر" @@ -5517,8 +5517,8 @@ msgstr "" msgid "Today" msgstr "امروز" -#. Option for the 'Status' (Select) field in DocType 'CRM Task' -#: crm/fcrm/doctype/crm_task/crm_task.json +#. Option for the 'Status' (Select) field in PageType 'CRM Task' +#: crm/fcrm/pagetype/crm_task/crm_task.json msgid "Todo" msgstr "" @@ -5535,22 +5535,22 @@ msgstr "فردا" msgid "Took a call with John Doe and discussed the new project." msgstr "" -#. Label of the total (Currency) field in DocType 'CRM Deal' -#. Label of the total (Currency) field in DocType 'CRM Lead' -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_lead/crm_lead.json +#. Label of the total (Currency) field in PageType 'CRM Deal' +#. Label of the total (Currency) field in PageType 'CRM Lead' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_lead/crm_lead.json msgid "Total" msgstr "جمع" -#. Label of the total_holidays (Int) field in DocType 'CRM Holiday List' -#: crm/fcrm/doctype/crm_holiday_list/crm_holiday_list.json +#. Label of the total_holidays (Int) field in PageType 'CRM Holiday List' +#: crm/fcrm/pagetype/crm_holiday_list/crm_holiday_list.json msgid "Total Holidays" msgstr "کل تعطیلات" -#. Description of the 'Net Total' (Currency) field in DocType 'CRM Deal' -#. Description of the 'Net Total' (Currency) field in DocType 'CRM Lead' -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_lead/crm_lead.json +#. Description of the 'Net Total' (Currency) field in PageType 'CRM Deal' +#. Description of the 'Net Total' (Currency) field in PageType 'CRM Lead' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_lead/crm_lead.json msgid "Total after discount" msgstr "" @@ -5571,10 +5571,10 @@ msgstr "" msgid "Total number of won deals based on its closure date" msgstr "" -#. Option for the 'Weekly Off' (Select) field in DocType 'CRM Holiday List' -#. Option for the 'Workday' (Select) field in DocType 'CRM Service Day' -#: crm/fcrm/doctype/crm_holiday_list/crm_holiday_list.json -#: crm/fcrm/doctype/crm_service_day/crm_service_day.json +#. Option for the 'Weekly Off' (Select) field in PageType 'CRM Holiday List' +#. Option for the 'Workday' (Select) field in PageType 'CRM Service Day' +#: crm/fcrm/pagetype/crm_holiday_list/crm_holiday_list.json +#: crm/fcrm/pagetype/crm_service_day/crm_service_day.json msgid "Tuesday" msgstr "سه‌شنبه" @@ -5582,30 +5582,30 @@ msgstr "سه‌شنبه" msgid "Turn into a group" msgstr "تبدیل به گروه" -#. Label of the twiml_sid (Data) field in DocType 'CRM Twilio Settings' -#: crm/fcrm/doctype/crm_twilio_settings/crm_twilio_settings.json +#. Label of the twiml_sid (Data) field in PageType 'CRM Twilio Settings' +#: crm/fcrm/pagetype/crm_twilio_settings/crm_twilio_settings.json msgid "TwiML SID" msgstr "TwiML SID" -#. Option for the 'Telephony Medium' (Select) field in DocType 'CRM Call Log' -#. Label of the twilio (Check) field in DocType 'CRM Telephony Agent' -#. Option for the 'Default Medium' (Select) field in DocType 'CRM Telephony +#. Option for the 'Telephony Medium' (Select) field in PageType 'CRM Call Log' +#. Label of the twilio (Check) field in PageType 'CRM Telephony Agent' +#. Option for the 'Default Medium' (Select) field in PageType 'CRM Telephony #. Agent' -#: crm/fcrm/doctype/crm_call_log/crm_call_log.json -#: crm/fcrm/doctype/crm_telephony_agent/crm_telephony_agent.json +#: crm/fcrm/pagetype/crm_call_log/crm_call_log.json +#: crm/fcrm/pagetype/crm_telephony_agent/crm_telephony_agent.json #: frontend/src/components/Layouts/AppSidebar.vue:601 #: frontend/src/components/Settings/TelephonySettings.vue:40 #: frontend/src/components/Settings/TelephonySettings.vue:50 msgid "Twilio" msgstr "Twilio" -#: crm/fcrm/doctype/crm_twilio_settings/crm_twilio_settings.py:59 -#: crm/fcrm/doctype/crm_twilio_settings/crm_twilio_settings.py:60 +#: crm/fcrm/pagetype/crm_twilio_settings/crm_twilio_settings.py:59 +#: crm/fcrm/pagetype/crm_twilio_settings/crm_twilio_settings.py:60 msgid "Twilio API credential creation error." msgstr "" -#. Label of the twilio_number (Data) field in DocType 'CRM Telephony Agent' -#: crm/fcrm/doctype/crm_telephony_agent/crm_telephony_agent.json +#. Label of the twilio_number (Data) field in PageType 'CRM Telephony Agent' +#: crm/fcrm/pagetype/crm_telephony_agent/crm_telephony_agent.json msgid "Twilio Number" msgstr "" @@ -5617,20 +5617,20 @@ msgstr "Twilio فعال نیست" msgid "Twilio settings updated successfully" msgstr "" -#. Label of the type (Select) field in DocType 'CRM Call Log' -#. Label of the type (Select) field in DocType 'CRM Deal Status' -#. Label of the type (Select) field in DocType 'CRM Dropdown Item' -#. Label of the type (Select) field in DocType 'CRM Fields Layout' -#. Label of the type (Select) field in DocType 'CRM Global Settings' -#. Label of the type (Select) field in DocType 'CRM Notification' -#. Label of the type (Select) field in DocType 'CRM View Settings' -#: crm/fcrm/doctype/crm_call_log/crm_call_log.json -#: crm/fcrm/doctype/crm_deal_status/crm_deal_status.json -#: crm/fcrm/doctype/crm_dropdown_item/crm_dropdown_item.json -#: crm/fcrm/doctype/crm_fields_layout/crm_fields_layout.json -#: crm/fcrm/doctype/crm_global_settings/crm_global_settings.json -#: crm/fcrm/doctype/crm_notification/crm_notification.json -#: crm/fcrm/doctype/crm_view_settings/crm_view_settings.json +#. Label of the type (Select) field in PageType 'CRM Call Log' +#. Label of the type (Select) field in PageType 'CRM Deal Status' +#. Label of the type (Select) field in PageType 'CRM Dropdown Item' +#. Label of the type (Select) field in PageType 'CRM Fields Layout' +#. Label of the type (Select) field in PageType 'CRM Global Settings' +#. Label of the type (Select) field in PageType 'CRM Notification' +#. Label of the type (Select) field in PageType 'CRM View Settings' +#: crm/fcrm/pagetype/crm_call_log/crm_call_log.json +#: crm/fcrm/pagetype/crm_deal_status/crm_deal_status.json +#: crm/fcrm/pagetype/crm_dropdown_item/crm_dropdown_item.json +#: crm/fcrm/pagetype/crm_fields_layout/crm_fields_layout.json +#: crm/fcrm/pagetype/crm_global_settings/crm_global_settings.json +#: crm/fcrm/pagetype/crm_notification/crm_notification.json +#: crm/fcrm/pagetype/crm_view_settings/crm_view_settings.json msgid "Type" msgstr "نوع" @@ -5772,12 +5772,12 @@ msgstr "آپلود تصویر" msgid "Uploading {0}%" msgstr "در حال آپلود {0}%" -#. Label of the user (Link) field in DocType 'CRM Dashboard' -#. Label of the user (Link) field in DocType 'CRM Telephony Agent' -#. Label of the user (Link) field in DocType 'CRM View Settings' -#: crm/fcrm/doctype/crm_dashboard/crm_dashboard.json -#: crm/fcrm/doctype/crm_telephony_agent/crm_telephony_agent.json -#: crm/fcrm/doctype/crm_view_settings/crm_view_settings.json +#. Label of the user (Link) field in PageType 'CRM Dashboard' +#. Label of the user (Link) field in PageType 'CRM Telephony Agent' +#. Label of the user (Link) field in PageType 'CRM View Settings' +#: crm/fcrm/pagetype/crm_dashboard/crm_dashboard.json +#: crm/fcrm/pagetype/crm_telephony_agent/crm_telephony_agent.json +#: crm/fcrm/pagetype/crm_view_settings/crm_view_settings.json msgid "User" msgstr "کاربر" @@ -5785,8 +5785,8 @@ msgstr "کاربر" msgid "User Management" msgstr "" -#. Label of the user_name (Data) field in DocType 'CRM Telephony Agent' -#: crm/fcrm/doctype/crm_telephony_agent/crm_telephony_agent.json +#. Label of the user_name (Data) field in PageType 'CRM Telephony Agent' +#: crm/fcrm/pagetype/crm_telephony_agent/crm_telephony_agent.json msgid "User Name" msgstr "نام کاربری" @@ -5808,9 +5808,9 @@ msgstr "" msgid "Users are required" msgstr "" -#. Label of the section_break_nevd (Section Break) field in DocType 'CRM +#. Label of the section_break_nevd (Section Break) field in PageType 'CRM #. Service Level Agreement' -#: crm/fcrm/doctype/crm_service_level_agreement/crm_service_level_agreement.json +#: crm/fcrm/pagetype/crm_service_level_agreement/crm_service_level_agreement.json msgid "Validity" msgstr "اعتبار" @@ -5834,33 +5834,33 @@ msgstr "بازدیدها" msgid "Web form" msgstr "" -#. Label of the webhook_verify_token (Data) field in DocType 'CRM Exotel +#. Label of the webhook_verify_token (Data) field in PageType 'CRM Exotel #. Settings' -#: crm/fcrm/doctype/crm_exotel_settings/crm_exotel_settings.json +#: crm/fcrm/pagetype/crm_exotel_settings/crm_exotel_settings.json msgid "Webhook Verify Token" msgstr "" -#. Label of the website (Data) field in DocType 'CRM Deal' -#. Label of the website (Data) field in DocType 'CRM Lead' -#. Label of the website (Data) field in DocType 'CRM Organization' -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_lead/crm_lead.json -#: crm/fcrm/doctype/crm_organization/crm_organization.json +#. Label of the website (Data) field in PageType 'CRM Deal' +#. Label of the website (Data) field in PageType 'CRM Lead' +#. Label of the website (Data) field in PageType 'CRM Organization' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_lead/crm_lead.json +#: crm/fcrm/pagetype/crm_organization/crm_organization.json #: frontend/src/components/Modals/AboutModal.vue:52 msgid "Website" msgstr "سایت اینترنتی" -#. Option for the 'Weekly Off' (Select) field in DocType 'CRM Holiday List' -#. Option for the 'Workday' (Select) field in DocType 'CRM Service Day' -#: crm/fcrm/doctype/crm_holiday_list/crm_holiday_list.json -#: crm/fcrm/doctype/crm_service_day/crm_service_day.json +#. Option for the 'Weekly Off' (Select) field in PageType 'CRM Holiday List' +#. Option for the 'Workday' (Select) field in PageType 'CRM Service Day' +#: crm/fcrm/pagetype/crm_holiday_list/crm_holiday_list.json +#: crm/fcrm/pagetype/crm_service_day/crm_service_day.json msgid "Wednesday" msgstr "چهارشنبه" -#. Label of the weekly_off (Check) field in DocType 'CRM Holiday' -#. Label of the weekly_off (Select) field in DocType 'CRM Holiday List' -#: crm/fcrm/doctype/crm_holiday/crm_holiday.json -#: crm/fcrm/doctype/crm_holiday_list/crm_holiday_list.json +#. Label of the weekly_off (Check) field in PageType 'CRM Holiday' +#. Label of the weekly_off (Select) field in PageType 'CRM Holiday List' +#: crm/fcrm/pagetype/crm_holiday/crm_holiday.json +#: crm/fcrm/pagetype/crm_holiday_list/crm_holiday_list.json msgid "Weekly Off" msgstr "تعطیلات هفتگی" @@ -5868,7 +5868,7 @@ msgstr "تعطیلات هفتگی" msgid "Welcome Message" msgstr "پیام خوش آمد گویی" -#: crm/fcrm/doctype/helpdesk_crm_settings/helpdesk_crm_settings.py:155 +#: crm/fcrm/pagetype/helpdesk_crm_settings/helpdesk_crm_settings.py:155 msgid "Welcome to Helpdesk" msgstr "" @@ -5876,8 +5876,8 @@ msgstr "" msgid "Welcome {0}, lets add your first lead" msgstr "" -#. Option for the 'Type' (Select) field in DocType 'CRM Notification' -#: crm/fcrm/doctype/crm_notification/crm_notification.json +#. Option for the 'Type' (Select) field in PageType 'CRM Notification' +#: crm/fcrm/pagetype/crm_notification/crm_notification.json #: frontend/src/components/Layouts/AppSidebar.vue:603 #: frontend/src/components/Settings/Settings.vue:190 #: frontend/src/pages/Deal.vue:572 frontend/src/pages/Lead.vue:429 @@ -5902,8 +5902,8 @@ msgstr "عرض" msgid "Width can be in number, pixel or rem (eg. 3, 30px, 10rem)" msgstr "عرض می تواند بر حسب عدد، پیکسل یا rem باشد (مثلاً 3، 30px، 10rem)" -#. Option for the 'Type' (Select) field in DocType 'CRM Deal Status' -#: crm/fcrm/doctype/crm_deal_status/crm_deal_status.json +#. Option for the 'Type' (Select) field in PageType 'CRM Deal Status' +#: crm/fcrm/pagetype/crm_deal_status/crm_deal_status.json msgid "Won" msgstr "" @@ -5912,16 +5912,16 @@ msgstr "" msgid "Won deals" msgstr "" -#. Label of the workday (Select) field in DocType 'CRM Service Day' -#: crm/fcrm/doctype/crm_service_day/crm_service_day.json +#. Label of the workday (Select) field in PageType 'CRM Service Day' +#: crm/fcrm/pagetype/crm_service_day/crm_service_day.json msgid "Workday" msgstr "روز کاری" -#. Label of the section_break_rmgo (Section Break) field in DocType 'CRM +#. Label of the section_break_rmgo (Section Break) field in PageType 'CRM #. Service Level Agreement' -#. Label of the working_hours (Table) field in DocType 'CRM Service Level +#. Label of the working_hours (Table) field in PageType 'CRM Service Level #. Agreement' -#: crm/fcrm/doctype/crm_service_level_agreement/crm_service_level_agreement.json +#: crm/fcrm/pagetype/crm_service_level_agreement/crm_service_level_agreement.json msgid "Working Hours" msgstr "ساعات کاری" @@ -5967,7 +5967,7 @@ msgstr "" msgid "You do not have permission to access this document" msgstr "شما اجازه دسترسی به این سند را ندارید" -#: crm/fcrm/doctype/crm_form_script/crm_form_script.py:24 +#: crm/fcrm/pagetype/crm_form_script/crm_form_script.py:24 msgid "You need to be in developer mode to edit a Standard Form Script" msgstr "برای ویرایش یک اسکریپت فرم استاندارد، باید در حالت توسعه دهنده باشید" @@ -5995,10 +5995,10 @@ msgstr "" msgid "added a" msgstr "" -#. Option for the 'Color' (Select) field in DocType 'CRM Deal Status' -#. Option for the 'Color' (Select) field in DocType 'CRM Lead Status' -#: crm/fcrm/doctype/crm_deal_status/crm_deal_status.json -#: crm/fcrm/doctype/crm_lead_status/crm_lead_status.json +#. Option for the 'Color' (Select) field in PageType 'CRM Deal Status' +#. Option for the 'Color' (Select) field in PageType 'CRM Lead Status' +#: crm/fcrm/pagetype/crm_deal_status/crm_deal_status.json +#: crm/fcrm/pagetype/crm_lead_status/crm_lead_status.json msgid "amber" msgstr "کهربایی" @@ -6010,17 +6010,17 @@ msgstr "" msgid "assigned a {0} {1} to you" msgstr "" -#. Option for the 'Color' (Select) field in DocType 'CRM Deal Status' -#. Option for the 'Color' (Select) field in DocType 'CRM Lead Status' -#: crm/fcrm/doctype/crm_deal_status/crm_deal_status.json -#: crm/fcrm/doctype/crm_lead_status/crm_lead_status.json +#. Option for the 'Color' (Select) field in PageType 'CRM Deal Status' +#. Option for the 'Color' (Select) field in PageType 'CRM Lead Status' +#: crm/fcrm/pagetype/crm_deal_status/crm_deal_status.json +#: crm/fcrm/pagetype/crm_lead_status/crm_lead_status.json msgid "black" msgstr "مشکی" -#. Option for the 'Color' (Select) field in DocType 'CRM Deal Status' -#. Option for the 'Color' (Select) field in DocType 'CRM Lead Status' -#: crm/fcrm/doctype/crm_deal_status/crm_deal_status.json -#: crm/fcrm/doctype/crm_lead_status/crm_lead_status.json +#. Option for the 'Color' (Select) field in PageType 'CRM Deal Status' +#. Option for the 'Color' (Select) field in PageType 'CRM Lead Status' +#: crm/fcrm/pagetype/crm_deal_status/crm_deal_status.json +#: crm/fcrm/pagetype/crm_lead_status/crm_lead_status.json msgid "blue" msgstr "آبی" @@ -6037,10 +6037,10 @@ msgstr "comment" msgid "condition" msgstr "شرط" -#. Option for the 'Color' (Select) field in DocType 'CRM Deal Status' -#. Option for the 'Color' (Select) field in DocType 'CRM Lead Status' -#: crm/fcrm/doctype/crm_deal_status/crm_deal_status.json -#: crm/fcrm/doctype/crm_lead_status/crm_lead_status.json +#. Option for the 'Color' (Select) field in PageType 'CRM Deal Status' +#. Option for the 'Color' (Select) field in PageType 'CRM Lead Status' +#: crm/fcrm/pagetype/crm_deal_status/crm_deal_status.json +#: crm/fcrm/pagetype/crm_lead_status/crm_lead_status.json msgid "cyan" msgstr "فیروزه ای" @@ -6059,33 +6059,33 @@ msgstr "پیشخوان" msgid "email already exists" msgstr "" -#. Option for the 'Service Provider' (Select) field in DocType 'FCRM Settings' -#: crm/fcrm/doctype/fcrm_settings/fcrm_settings.json +#. Option for the 'Service Provider' (Select) field in PageType 'FCRM Settings' +#: crm/fcrm/pagetype/fcrm_settings/fcrm_settings.json #: frontend/src/components/Settings/CurrencySettings.vue:106 msgid "exchangerate.host" msgstr "exchangerate.host" -#. Option for the 'Service Provider' (Select) field in DocType 'FCRM Settings' -#: crm/fcrm/doctype/fcrm_settings/fcrm_settings.json +#. Option for the 'Service Provider' (Select) field in PageType 'FCRM Settings' +#: crm/fcrm/pagetype/fcrm_settings/fcrm_settings.json msgid "frankfurter.app" msgstr "frankfurter.app" -#. Option for the 'Color' (Select) field in DocType 'CRM Deal Status' -#. Option for the 'Color' (Select) field in DocType 'CRM Lead Status' -#: crm/fcrm/doctype/crm_deal_status/crm_deal_status.json -#: crm/fcrm/doctype/crm_lead_status/crm_lead_status.json +#. Option for the 'Color' (Select) field in PageType 'CRM Deal Status' +#. Option for the 'Color' (Select) field in PageType 'CRM Lead Status' +#: crm/fcrm/pagetype/crm_deal_status/crm_deal_status.json +#: crm/fcrm/pagetype/crm_lead_status/crm_lead_status.json msgid "gray" msgstr "خاکستری" -#. Option for the 'Color' (Select) field in DocType 'CRM Deal Status' -#. Option for the 'Color' (Select) field in DocType 'CRM Lead Status' -#: crm/fcrm/doctype/crm_deal_status/crm_deal_status.json -#: crm/fcrm/doctype/crm_lead_status/crm_lead_status.json +#. Option for the 'Color' (Select) field in PageType 'CRM Deal Status' +#. Option for the 'Color' (Select) field in PageType 'CRM Lead Status' +#: crm/fcrm/pagetype/crm_deal_status/crm_deal_status.json +#: crm/fcrm/pagetype/crm_lead_status/crm_lead_status.json msgid "green" msgstr "سبز" -#. Option for the 'Type' (Select) field in DocType 'CRM View Settings' -#: crm/fcrm/doctype/crm_view_settings/crm_view_settings.json +#. Option for the 'Type' (Select) field in PageType 'CRM View Settings' +#: crm/fcrm/pagetype/crm_view_settings/crm_view_settings.json msgid "group_by" msgstr "group_by" @@ -6170,12 +6170,12 @@ msgstr "" msgid "just now" msgstr "همین الان" -#. Option for the 'Type' (Select) field in DocType 'CRM View Settings' -#: crm/fcrm/doctype/crm_view_settings/crm_view_settings.json +#. Option for the 'Type' (Select) field in PageType 'CRM View Settings' +#: crm/fcrm/pagetype/crm_view_settings/crm_view_settings.json msgid "kanban" msgstr "کانبان" -#: crm/api/doc.py:40 crm/api/doc.py:158 crm/api/doc.py:503 +#: crm/api/pg.py:40 crm/api/pg.py:158 crm/api/pg.py:503 msgid "label" msgstr "برچسب" @@ -6184,8 +6184,8 @@ msgstr "برچسب" msgid "leads" msgstr "سرنخ ها" -#. Option for the 'Type' (Select) field in DocType 'CRM View Settings' -#: crm/fcrm/doctype/crm_view_settings/crm_view_settings.json +#. Option for the 'Type' (Select) field in PageType 'CRM View Settings' +#: crm/fcrm/pagetype/crm_view_settings/crm_view_settings.json msgid "list" msgstr "فهرست" @@ -6206,17 +6206,17 @@ msgstr "اکنون" msgid "operator" msgstr "اپراتور" -#. Option for the 'Color' (Select) field in DocType 'CRM Deal Status' -#. Option for the 'Color' (Select) field in DocType 'CRM Lead Status' -#: crm/fcrm/doctype/crm_deal_status/crm_deal_status.json -#: crm/fcrm/doctype/crm_lead_status/crm_lead_status.json +#. Option for the 'Color' (Select) field in PageType 'CRM Deal Status' +#. Option for the 'Color' (Select) field in PageType 'CRM Lead Status' +#: crm/fcrm/pagetype/crm_deal_status/crm_deal_status.json +#: crm/fcrm/pagetype/crm_lead_status/crm_lead_status.json msgid "orange" msgstr "نارنجی" -#. Option for the 'Color' (Select) field in DocType 'CRM Deal Status' -#. Option for the 'Color' (Select) field in DocType 'CRM Lead Status' -#: crm/fcrm/doctype/crm_deal_status/crm_deal_status.json -#: crm/fcrm/doctype/crm_lead_status/crm_lead_status.json +#. Option for the 'Color' (Select) field in PageType 'CRM Deal Status' +#. Option for the 'Color' (Select) field in PageType 'CRM Lead Status' +#: crm/fcrm/pagetype/crm_deal_status/crm_deal_status.json +#: crm/fcrm/pagetype/crm_lead_status/crm_lead_status.json msgid "pink" msgstr "صورتی" @@ -6232,10 +6232,10 @@ msgstr "خصوصی" msgid "public" msgstr "عمومی" -#. Option for the 'Color' (Select) field in DocType 'CRM Deal Status' -#. Option for the 'Color' (Select) field in DocType 'CRM Lead Status' -#: crm/fcrm/doctype/crm_deal_status/crm_deal_status.json -#: crm/fcrm/doctype/crm_lead_status/crm_lead_status.json +#. Option for the 'Color' (Select) field in PageType 'CRM Deal Status' +#. Option for the 'Color' (Select) field in PageType 'CRM Lead Status' +#: crm/fcrm/pagetype/crm_deal_status/crm_deal_status.json +#: crm/fcrm/pagetype/crm_lead_status/crm_lead_status.json msgid "purple" msgstr "بنفش" @@ -6243,17 +6243,17 @@ msgstr "بنفش" msgid "received a whatsapp message in {0}" msgstr "یک پیام واتساپ در {0} دریافت شد" -#. Option for the 'Color' (Select) field in DocType 'CRM Deal Status' -#. Option for the 'Color' (Select) field in DocType 'CRM Lead Status' -#: crm/fcrm/doctype/crm_deal_status/crm_deal_status.json -#: crm/fcrm/doctype/crm_lead_status/crm_lead_status.json +#. Option for the 'Color' (Select) field in PageType 'CRM Deal Status' +#. Option for the 'Color' (Select) field in PageType 'CRM Lead Status' +#: crm/fcrm/pagetype/crm_deal_status/crm_deal_status.json +#: crm/fcrm/pagetype/crm_lead_status/crm_lead_status.json msgid "red" msgstr "قرمز" -#. Option for the 'Color' (Select) field in DocType 'CRM Deal Status' -#. Option for the 'Color' (Select) field in DocType 'CRM Lead Status' -#: crm/fcrm/doctype/crm_deal_status/crm_deal_status.json -#: crm/fcrm/doctype/crm_lead_status/crm_lead_status.json +#. Option for the 'Color' (Select) field in PageType 'CRM Deal Status' +#. Option for the 'Color' (Select) field in PageType 'CRM Lead Status' +#: crm/fcrm/pagetype/crm_deal_status/crm_deal_status.json +#: crm/fcrm/pagetype/crm_lead_status/crm_lead_status.json msgid "teal" msgstr "فیروزه‌ای" @@ -6266,10 +6266,10 @@ msgstr "به" msgid "tomorrow" msgstr "فردا" -#. Option for the 'Color' (Select) field in DocType 'CRM Deal Status' -#. Option for the 'Color' (Select) field in DocType 'CRM Lead Status' -#: crm/fcrm/doctype/crm_deal_status/crm_deal_status.json -#: crm/fcrm/doctype/crm_lead_status/crm_lead_status.json +#. Option for the 'Color' (Select) field in PageType 'CRM Deal Status' +#. Option for the 'Color' (Select) field in PageType 'CRM Lead Status' +#: crm/fcrm/pagetype/crm_deal_status/crm_deal_status.json +#: crm/fcrm/pagetype/crm_lead_status/crm_lead_status.json msgid "violet" msgstr "بنفش" @@ -6278,10 +6278,10 @@ msgstr "بنفش" msgid "which are not compatible with this UI, you will need to recreate the conditions here if you want to manage and add new conditions from this UI." msgstr "" -#. Option for the 'Color' (Select) field in DocType 'CRM Deal Status' -#. Option for the 'Color' (Select) field in DocType 'CRM Lead Status' -#: crm/fcrm/doctype/crm_deal_status/crm_deal_status.json -#: crm/fcrm/doctype/crm_lead_status/crm_lead_status.json +#. Option for the 'Color' (Select) field in PageType 'CRM Deal Status' +#. Option for the 'Color' (Select) field in PageType 'CRM Lead Status' +#: crm/fcrm/pagetype/crm_deal_status/crm_deal_status.json +#: crm/fcrm/pagetype/crm_lead_status/crm_lead_status.json msgid "yellow" msgstr "زرد" @@ -6379,7 +6379,7 @@ msgid "⚠️ Method \"{0}\" not found in class." msgstr "" #: frontend/src/data/script.js:83 -msgid "⚠️ No class found for doctype: {0}, it is mandatory to have a class for the parent doctype. it can be empty, but it should be present." +msgid "⚠️ No class found for pagetype: {0}, it is mandatory to have a class for the parent pagetype. it can be empty, but it should be present." msgstr "" #: frontend/src/data/script.js:180 diff --git a/crm/locale/fr.po b/crm/locale/fr.po index 62053135..9b563928 100644 --- a/crm/locale/fr.po +++ b/crm/locale/fr.po @@ -1,6 +1,6 @@ msgid "" msgstr "" -"Project-Id-Version: frappe\n" +"Project-Id-Version: jingrow\n" "Report-Msgid-Bugs-To: shariq@jingrow.com\n" "POT-Creation-Date: 2025-09-21 09:35+0000\n" "PO-Revision-Date: 2025-09-22 20:42\n" @@ -11,10 +11,10 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Generated-By: Babel 2.16.0\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" -"X-Crowdin-Project: frappe\n" +"X-Crowdin-Project: jingrow\n" "X-Crowdin-Project-ID: 639578\n" "X-Crowdin-Language: fr\n" -"X-Crowdin-File: /[frappe.crm] develop/crm/locale/main.pot\n" +"X-Crowdin-File: /[jingrow.crm] develop/crm/locale/main.pot\n" "X-Crowdin-File-ID: 97\n" "Language: fr_FR\n" @@ -55,73 +55,73 @@ msgstr "Il ya 1 semaine" msgid "1 year ago" msgstr "Il y a 1 an" -#. Option for the 'No. of Employees' (Select) field in DocType 'CRM Deal' -#. Option for the 'No. of Employees' (Select) field in DocType 'CRM Lead' -#. Option for the 'No. of Employees' (Select) field in DocType 'CRM +#. Option for the 'No. of Employees' (Select) field in PageType 'CRM Deal' +#. Option for the 'No. of Employees' (Select) field in PageType 'CRM Lead' +#. Option for the 'No. of Employees' (Select) field in PageType 'CRM #. Organization' -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_lead/crm_lead.json -#: crm/fcrm/doctype/crm_organization/crm_organization.json +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_lead/crm_lead.json +#: crm/fcrm/pagetype/crm_organization/crm_organization.json msgid "1-10" msgstr "1-10" -#. Option for the 'No. of Employees' (Select) field in DocType 'CRM Deal' -#. Option for the 'No. of Employees' (Select) field in DocType 'CRM Lead' -#. Option for the 'No. of Employees' (Select) field in DocType 'CRM +#. Option for the 'No. of Employees' (Select) field in PageType 'CRM Deal' +#. Option for the 'No. of Employees' (Select) field in PageType 'CRM Lead' +#. Option for the 'No. of Employees' (Select) field in PageType 'CRM #. Organization' -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_lead/crm_lead.json -#: crm/fcrm/doctype/crm_organization/crm_organization.json +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_lead/crm_lead.json +#: crm/fcrm/pagetype/crm_organization/crm_organization.json msgid "1000+" msgstr "1000+" -#. Option for the 'No. of Employees' (Select) field in DocType 'CRM Deal' -#. Option for the 'No. of Employees' (Select) field in DocType 'CRM Lead' -#. Option for the 'No. of Employees' (Select) field in DocType 'CRM +#. Option for the 'No. of Employees' (Select) field in PageType 'CRM Deal' +#. Option for the 'No. of Employees' (Select) field in PageType 'CRM Lead' +#. Option for the 'No. of Employees' (Select) field in PageType 'CRM #. Organization' -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_lead/crm_lead.json -#: crm/fcrm/doctype/crm_organization/crm_organization.json +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_lead/crm_lead.json +#: crm/fcrm/pagetype/crm_organization/crm_organization.json msgid "11-50" msgstr "11-50" -#. Option for the 'No. of Employees' (Select) field in DocType 'CRM Deal' -#. Option for the 'No. of Employees' (Select) field in DocType 'CRM Lead' -#. Option for the 'No. of Employees' (Select) field in DocType 'CRM +#. Option for the 'No. of Employees' (Select) field in PageType 'CRM Deal' +#. Option for the 'No. of Employees' (Select) field in PageType 'CRM Lead' +#. Option for the 'No. of Employees' (Select) field in PageType 'CRM #. Organization' -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_lead/crm_lead.json -#: crm/fcrm/doctype/crm_organization/crm_organization.json +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_lead/crm_lead.json +#: crm/fcrm/pagetype/crm_organization/crm_organization.json msgid "201-500" msgstr "201-500" -#. Option for the 'No. of Employees' (Select) field in DocType 'CRM Deal' -#. Option for the 'No. of Employees' (Select) field in DocType 'CRM Lead' -#. Option for the 'No. of Employees' (Select) field in DocType 'CRM +#. Option for the 'No. of Employees' (Select) field in PageType 'CRM Deal' +#. Option for the 'No. of Employees' (Select) field in PageType 'CRM Lead' +#. Option for the 'No. of Employees' (Select) field in PageType 'CRM #. Organization' -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_lead/crm_lead.json -#: crm/fcrm/doctype/crm_organization/crm_organization.json +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_lead/crm_lead.json +#: crm/fcrm/pagetype/crm_organization/crm_organization.json msgid "501-1000" msgstr "501-1000" -#. Option for the 'No. of Employees' (Select) field in DocType 'CRM Deal' -#. Option for the 'No. of Employees' (Select) field in DocType 'CRM Lead' -#. Option for the 'No. of Employees' (Select) field in DocType 'CRM +#. Option for the 'No. of Employees' (Select) field in PageType 'CRM Deal' +#. Option for the 'No. of Employees' (Select) field in PageType 'CRM Lead' +#. Option for the 'No. of Employees' (Select) field in PageType 'CRM #. Organization' -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_lead/crm_lead.json -#: crm/fcrm/doctype/crm_organization/crm_organization.json +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_lead/crm_lead.json +#: crm/fcrm/pagetype/crm_organization/crm_organization.json msgid "51-200" msgstr "51-200" -#. Paragraph text in the Frappe CRM Workspace -#: crm/fcrm/workspace/frappe_crm/frappe_crm.json +#. Paragraph text in the Jingrow CRM Workspace +#: crm/fcrm/workspace/jingrow_crm/jingrow_crm.json msgid "META" msgstr "" -#. Paragraph text in the Frappe CRM Workspace -#: crm/fcrm/workspace/frappe_crm/frappe_crm.json +#. Paragraph text in the Jingrow CRM Workspace +#: crm/fcrm/workspace/jingrow_crm/jingrow_crm.json msgid "SHORTCUTS" msgstr "" @@ -130,8 +130,8 @@ msgstr "" msgid "

Dear {{ lead_name }},

\\n\\n

This is a reminder for the payment of {{ grand_total }}.

\\n\\n

Thanks,

\\n

Frappé

" msgstr "" -#. Header text in the Frappe CRM Workspace -#: crm/fcrm/workspace/frappe_crm/frappe_crm.json +#. Header text in the Jingrow CRM Workspace +#: crm/fcrm/workspace/jingrow_crm/jingrow_crm.json msgid "PORTAL" msgstr "" @@ -139,7 +139,7 @@ msgstr "" msgid "@John, can you please check this?" msgstr "" -#: crm/fcrm/doctype/crm_lead/crm_lead.py:56 +#: crm/fcrm/pagetype/crm_lead/crm_lead.py:56 msgid "A Lead requires either a person's name or an organization's name" msgstr "Un responsable requiert le nom d'une personne ou le nom d'une organisation" @@ -147,14 +147,14 @@ msgstr "Un responsable requiert le nom d'une personne ou le nom d'une organisati msgid "A new account has been created for you at {0}" msgstr "Un nouveau compte a été créé pour vous à {0}" -#. Label of the api_key (Data) field in DocType 'CRM Exotel Settings' -#. Label of the api_key (Data) field in DocType 'CRM Twilio Settings' -#. Label of the api_key (Data) field in DocType 'ERPNext CRM Settings' -#. Label of the api_key (Data) field in DocType 'Helpdesk CRM Settings' -#: crm/fcrm/doctype/crm_exotel_settings/crm_exotel_settings.json -#: crm/fcrm/doctype/crm_twilio_settings/crm_twilio_settings.json -#: crm/fcrm/doctype/erpnext_crm_settings/erpnext_crm_settings.json -#: crm/fcrm/doctype/helpdesk_crm_settings/helpdesk_crm_settings.json +#. Label of the api_key (Data) field in PageType 'CRM Exotel Settings' +#. Label of the api_key (Data) field in PageType 'CRM Twilio Settings' +#. Label of the api_key (Data) field in PageType 'ERPNext CRM Settings' +#. Label of the api_key (Data) field in PageType 'Helpdesk CRM Settings' +#: crm/fcrm/pagetype/crm_exotel_settings/crm_exotel_settings.json +#: crm/fcrm/pagetype/crm_twilio_settings/crm_twilio_settings.json +#: crm/fcrm/pagetype/erpnext_crm_settings/erpnext_crm_settings.json +#: crm/fcrm/pagetype/helpdesk_crm_settings/helpdesk_crm_settings.json msgid "API Key" msgstr "Clé API" @@ -162,17 +162,17 @@ msgstr "Clé API" msgid "API Key is required" msgstr "" -#. Label of the api_secret (Password) field in DocType 'CRM Twilio Settings' -#. Label of the api_secret (Password) field in DocType 'ERPNext CRM Settings' -#. Label of the api_secret (Password) field in DocType 'Helpdesk CRM Settings' -#: crm/fcrm/doctype/crm_twilio_settings/crm_twilio_settings.json -#: crm/fcrm/doctype/erpnext_crm_settings/erpnext_crm_settings.json -#: crm/fcrm/doctype/helpdesk_crm_settings/helpdesk_crm_settings.json +#. Label of the api_secret (Password) field in PageType 'CRM Twilio Settings' +#. Label of the api_secret (Password) field in PageType 'ERPNext CRM Settings' +#. Label of the api_secret (Password) field in PageType 'Helpdesk CRM Settings' +#: crm/fcrm/pagetype/crm_twilio_settings/crm_twilio_settings.json +#: crm/fcrm/pagetype/erpnext_crm_settings/erpnext_crm_settings.json +#: crm/fcrm/pagetype/helpdesk_crm_settings/helpdesk_crm_settings.json msgid "API Secret" msgstr "Secret API" -#. Label of the api_token (Password) field in DocType 'CRM Exotel Settings' -#: crm/fcrm/doctype/crm_exotel_settings/crm_exotel_settings.json +#. Label of the api_token (Password) field in PageType 'CRM Exotel Settings' +#: crm/fcrm/pagetype/crm_exotel_settings/crm_exotel_settings.json msgid "API Token" msgstr "" @@ -180,7 +180,7 @@ msgstr "" msgid "Accept" msgstr "" -#: crm/fcrm/doctype/crm_invitation/crm_invitation.js:7 +#: crm/fcrm/pagetype/crm_invitation/crm_invitation.js:7 msgid "Accept Invitation" msgstr "" @@ -188,22 +188,22 @@ msgstr "" msgid "Accept call" msgstr "" -#. Option for the 'Status' (Select) field in DocType 'CRM Invitation' -#: crm/fcrm/doctype/crm_invitation/crm_invitation.json +#. Option for the 'Status' (Select) field in PageType 'CRM Invitation' +#: crm/fcrm/pagetype/crm_invitation/crm_invitation.json msgid "Accepted" msgstr "Accepté.e" -#. Label of the accepted_at (Datetime) field in DocType 'CRM Invitation' -#: crm/fcrm/doctype/crm_invitation/crm_invitation.json +#. Label of the accepted_at (Datetime) field in PageType 'CRM Invitation' +#: crm/fcrm/pagetype/crm_invitation/crm_invitation.json msgid "Accepted At" msgstr "" -#. Label of the access_key (Data) field in DocType 'FCRM Settings' -#: crm/fcrm/doctype/fcrm_settings/fcrm_settings.json +#. Label of the access_key (Data) field in PageType 'FCRM Settings' +#: crm/fcrm/pagetype/fcrm_settings/fcrm_settings.json msgid "Access Key" msgstr "Clé d'accès" -#: crm/fcrm/doctype/fcrm_settings/fcrm_settings.py:156 +#: crm/fcrm/pagetype/fcrm_settings/fcrm_settings.py:156 msgid "Access Key is required for Service Provider: {0}" msgstr "La clé d'accès est requise pour le fournisseur de service : {0}" @@ -219,10 +219,10 @@ msgstr "" msgid "Account Name" msgstr "Nom du Compte" -#. Label of the account_sid (Data) field in DocType 'CRM Exotel Settings' -#. Label of the account_sid (Data) field in DocType 'CRM Twilio Settings' -#: crm/fcrm/doctype/crm_exotel_settings/crm_exotel_settings.json -#: crm/fcrm/doctype/crm_twilio_settings/crm_twilio_settings.json +#. Label of the account_sid (Data) field in PageType 'CRM Exotel Settings' +#. Label of the account_sid (Data) field in PageType 'CRM Twilio Settings' +#: crm/fcrm/pagetype/crm_exotel_settings/crm_exotel_settings.json +#: crm/fcrm/pagetype/crm_twilio_settings/crm_twilio_settings.json msgid "Account SID" msgstr "" @@ -296,9 +296,9 @@ msgstr "" msgid "Add Tab" msgstr "" -#. Label of the add_weekly_holidays_section (Section Break) field in DocType +#. Label of the add_weekly_holidays_section (Section Break) field in PageType #. 'CRM Holiday List' -#: crm/fcrm/doctype/crm_holiday_list/crm_holiday_list.json +#: crm/fcrm/pagetype/crm_holiday_list/crm_holiday_list.json msgid "Add Weekly Holidays" msgstr "Ajouter des vacances hebdomadaires" @@ -363,8 +363,8 @@ msgstr "" msgid "Add sample data" msgstr "" -#. Description of the 'Icon' (Code) field in DocType 'CRM Dropdown Item' -#: crm/fcrm/doctype/crm_dropdown_item/crm_dropdown_item.json +#. Description of the 'Icon' (Code) field in PageType 'CRM Dropdown Item' +#: crm/fcrm/pagetype/crm_dropdown_item/crm_dropdown_item.json msgid "Add svg code or use feather icons e.g 'settings'" msgstr "" @@ -372,8 +372,8 @@ msgstr "" msgid "Add task" msgstr "" -#. Label of the add_to_holidays (Button) field in DocType 'CRM Holiday List' -#: crm/fcrm/doctype/crm_holiday_list/crm_holiday_list.json +#. Label of the add_to_holidays (Button) field in PageType 'CRM Holiday List' +#: crm/fcrm/pagetype/crm_holiday_list/crm_holiday_list.json msgid "Add to Holidays" msgstr "Ajouter aux vacances" @@ -385,8 +385,8 @@ msgstr "" msgid "Add, edit, and manage email templates for various CRM communications" msgstr "" -#. Label of the address (Link) field in DocType 'CRM Organization' -#: crm/fcrm/doctype/crm_organization/crm_organization.json +#. Label of the address (Link) field in PageType 'CRM Organization' +#: crm/fcrm/pagetype/crm_organization/crm_organization.json msgid "Address" msgstr "Adresse" @@ -406,14 +406,14 @@ msgid "Agent is unavailable to take the call, please call after some time." msgstr "" #. Name of a role -#: crm/fcrm/doctype/crm_exotel_settings/crm_exotel_settings.json -#: crm/fcrm/doctype/crm_fields_layout/crm_fields_layout.json -#: crm/fcrm/doctype/crm_form_script/crm_form_script.json -#: crm/fcrm/doctype/crm_industry/crm_industry.json -#: crm/fcrm/doctype/crm_lead/crm_lead.json -#: crm/fcrm/doctype/crm_lead_source/crm_lead_source.json -#: crm/fcrm/doctype/crm_lead_status/crm_lead_status.json -#: crm/fcrm/doctype/fcrm_settings/fcrm_settings.json +#: crm/fcrm/pagetype/crm_exotel_settings/crm_exotel_settings.json +#: crm/fcrm/pagetype/crm_fields_layout/crm_fields_layout.json +#: crm/fcrm/pagetype/crm_form_script/crm_form_script.json +#: crm/fcrm/pagetype/crm_industry/crm_industry.json +#: crm/fcrm/pagetype/crm_lead/crm_lead.json +#: crm/fcrm/pagetype/crm_lead_source/crm_lead_source.json +#: crm/fcrm/pagetype/crm_lead_status/crm_lead_status.json +#: crm/fcrm/pagetype/fcrm_settings/fcrm_settings.json #: frontend/src/components/Settings/EmailTemplate/EmailTemplates.vue:76 #: frontend/src/components/Settings/Users.vue:85 msgid "All" @@ -426,16 +426,16 @@ msgstr "Tout" msgid "All day" msgstr "" -#. Label of the amount (Currency) field in DocType 'CRM Products' -#: crm/fcrm/doctype/crm_products/crm_products.json +#. Label of the amount (Currency) field in PageType 'CRM Products' +#: crm/fcrm/pagetype/crm_products/crm_products.json #: frontend/src/pages/Contact.vue:499 frontend/src/pages/MobileContact.vue:507 #: frontend/src/pages/MobileOrganization.vue:451 #: frontend/src/pages/Organization.vue:472 msgid "Amount" msgstr "Montant" -#. Description of the 'Net Amount' (Currency) field in DocType 'CRM Products' -#: crm/fcrm/doctype/crm_products/crm_products.json +#. Description of the 'Net Amount' (Currency) field in PageType 'CRM Products' +#: crm/fcrm/pagetype/crm_products/crm_products.json msgid "Amount after discount" msgstr "" @@ -447,13 +447,13 @@ msgstr "" msgid "An error occurred while updating the document" msgstr "" -#. Description of the 'Favicon' (Attach) field in DocType 'FCRM Settings' -#: crm/fcrm/doctype/fcrm_settings/fcrm_settings.json +#. Description of the 'Favicon' (Attach) field in PageType 'FCRM Settings' +#: crm/fcrm/pagetype/fcrm_settings/fcrm_settings.json msgid "An icon file with .ico extension. Should be 16 x 16 px. Generated using a favicon generator. [favicon-generator.org]" msgstr "Un fichier d'icône avec l’extension .ico. Devrait être 16 x 16 px. Générer en utilisant un générateur de favicon. [favicon-generator.org]" -#. Description of the 'Logo' (Attach) field in DocType 'FCRM Settings' -#: crm/fcrm/doctype/fcrm_settings/fcrm_settings.json +#. Description of the 'Logo' (Attach) field in PageType 'FCRM Settings' +#: crm/fcrm/pagetype/fcrm_settings/fcrm_settings.json msgid "An image with 1:1 & 2:1 ratio is preferred" msgstr "" @@ -461,12 +461,12 @@ msgstr "" msgid "And" msgstr "" -#. Label of the annual_revenue (Currency) field in DocType 'CRM Deal' -#. Label of the annual_revenue (Currency) field in DocType 'CRM Lead' -#. Label of the annual_revenue (Currency) field in DocType 'CRM Organization' -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_lead/crm_lead.json -#: crm/fcrm/doctype/crm_organization/crm_organization.json +#. Label of the annual_revenue (Currency) field in PageType 'CRM Deal' +#. Label of the annual_revenue (Currency) field in PageType 'CRM Lead' +#. Label of the annual_revenue (Currency) field in PageType 'CRM Organization' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_lead/crm_lead.json +#: crm/fcrm/pagetype/crm_organization/crm_organization.json msgid "Annual Revenue" msgstr "CA annuel" @@ -488,13 +488,13 @@ msgstr "" msgid "Apply" msgstr "" -#. Label of the apply_on (Link) field in DocType 'CRM Service Level Agreement' -#: crm/fcrm/doctype/crm_service_level_agreement/crm_service_level_agreement.json +#. Label of the apply_on (Link) field in PageType 'CRM Service Level Agreement' +#: crm/fcrm/pagetype/crm_service_level_agreement/crm_service_level_agreement.json msgid "Apply On" msgstr "Appliquer Sur" -#. Label of the view (Select) field in DocType 'CRM Form Script' -#: crm/fcrm/doctype/crm_form_script/crm_form_script.json +#. Label of the view (Select) field in PageType 'CRM Form Script' +#: crm/fcrm/pagetype/crm_form_script/crm_form_script.json msgid "Apply To" msgstr "Appliquer à" @@ -540,10 +540,10 @@ msgid "Are you sure you want to go back? Unsaved changes will be lost." msgstr "" #: frontend/src/composables/frappecloud.js:24 -msgid "Are you sure you want to login to your Frappe Cloud dashboard?" -msgstr "Êtes-vous sûr de vouloir vous connecter à votre tableau de bord Frappe Cloud ?" +msgid "Are you sure you want to login to your Jingrow Cloud dashboard?" +msgstr "Êtes-vous sûr de vouloir vous connecter à votre tableau de bord Jingrow Cloud ?" -#: crm/fcrm/doctype/erpnext_crm_settings/erpnext_crm_settings.js:9 +#: crm/fcrm/pagetype/erpnext_crm_settings/erpnext_crm_settings.js:9 msgid "Are you sure you want to reset 'Create Quotation from CRM Deal' Form Script?" msgstr "" @@ -555,7 +555,7 @@ msgstr "" msgid "Are you sure you want to unlink {0} linked item(s)?" msgstr "" -#: crm/fcrm/doctype/fcrm_settings/fcrm_settings.py:193 +#: crm/fcrm/pagetype/fcrm_settings/fcrm_settings.py:193 msgid "Ask your manager to set up the Exchange Rate Provider, as default provider does not support currency conversion for {0} to {1}." msgstr "" @@ -581,8 +581,8 @@ msgstr "" msgid "Assign to me" msgstr "Attribuer à moi" -#. Label of the assigned_to (Link) field in DocType 'CRM Task' -#: crm/fcrm/doctype/crm_task/crm_task.json +#. Label of the assigned_to (Link) field in PageType 'CRM Task' +#: crm/fcrm/pagetype/crm_task/crm_task.json msgid "Assigned To" msgstr "Assigné À" @@ -594,13 +594,13 @@ msgstr "" msgid "Assignees" msgstr "" -#. Option for the 'Type' (Select) field in DocType 'CRM Notification' -#: crm/fcrm/doctype/crm_notification/crm_notification.json +#. Option for the 'Type' (Select) field in PageType 'CRM Notification' +#: crm/fcrm/pagetype/crm_notification/crm_notification.json msgid "Assignment" msgstr "Affectation" -#. Label of a shortcut in the Frappe CRM Workspace -#: crm/fcrm/workspace/frappe_crm/frappe_crm.json +#. Label of a shortcut in the Jingrow CRM Workspace +#: crm/fcrm/workspace/jingrow_crm/jingrow_crm.json msgid "Assignment Rule" msgstr "Règle d'assignation" @@ -678,14 +678,14 @@ msgstr "Pièces jointes" msgid "Attendees" msgstr "Participants" -#. Label of the auth_token (Password) field in DocType 'CRM Twilio Settings' -#: crm/fcrm/doctype/crm_twilio_settings/crm_twilio_settings.json +#. Label of the auth_token (Password) field in PageType 'CRM Twilio Settings' +#: crm/fcrm/pagetype/crm_twilio_settings/crm_twilio_settings.json msgid "Auth Token" msgstr "" -#. Label of the auto_update_expected_deal_value (Check) field in DocType 'FCRM +#. Label of the auto_update_expected_deal_value (Check) field in PageType 'FCRM #. Settings' -#: crm/fcrm/doctype/fcrm_settings/fcrm_settings.json +#: crm/fcrm/pagetype/fcrm_settings/fcrm_settings.json msgid "Auto Update Expected Deal Value" msgstr "" @@ -702,8 +702,8 @@ msgid "Auto update of expected deal value enabled" msgstr "" #. Description of the 'Auto Update Expected Deal Value' (Check) field in -#. DocType 'FCRM Settings' -#: crm/fcrm/doctype/fcrm_settings/fcrm_settings.json +#. PageType 'FCRM Settings' +#: crm/fcrm/pagetype/fcrm_settings/fcrm_settings.json #: frontend/src/components/Settings/ForecastingSettings.vue:46 msgid "Automatically update \"Expected Deal Value\" based on the total value of associated products in a deal" msgstr "" @@ -793,8 +793,8 @@ msgstr "" msgid "Back to file upload" msgstr "" -#. Option for the 'Status' (Select) field in DocType 'CRM Task' -#: crm/fcrm/doctype/crm_task/crm_task.json +#. Option for the 'Status' (Select) field in PageType 'CRM Task' +#: crm/fcrm/pagetype/crm_task/crm_task.json msgid "Backlog" msgstr "" @@ -818,8 +818,8 @@ msgstr "" msgid "Brand settings" msgstr "" -#. Label of the branding_tab (Tab Break) field in DocType 'FCRM Settings' -#: crm/fcrm/doctype/fcrm_settings/fcrm_settings.json +#. Label of the branding_tab (Tab Break) field in PageType 'FCRM Settings' +#: crm/fcrm/pagetype/fcrm_settings/fcrm_settings.json msgid "Branding" msgstr "" @@ -827,8 +827,8 @@ msgstr "" msgid "Bulk Edit" msgstr "" -#. Option for the 'Status' (Select) field in DocType 'CRM Call Log' -#: crm/fcrm/doctype/crm_call_log/crm_call_log.json +#. Option for the 'Status' (Select) field in PageType 'CRM Call Log' +#: crm/fcrm/pagetype/crm_call_log/crm_call_log.json msgid "Busy" msgstr "Occupé" @@ -838,174 +838,174 @@ msgstr "Occupé" msgid "CC" msgstr "" -#. Name of a DocType -#: crm/fcrm/doctype/crm_call_log/crm_call_log.json +#. Name of a PageType +#: crm/fcrm/pagetype/crm_call_log/crm_call_log.json msgid "CRM Call Log" msgstr "" -#. Name of a DocType -#: crm/fcrm/doctype/crm_communication_status/crm_communication_status.json +#. Name of a PageType +#: crm/fcrm/pagetype/crm_communication_status/crm_communication_status.json msgid "CRM Communication Status" msgstr "" -#. Name of a DocType -#: crm/fcrm/doctype/crm_contacts/crm_contacts.json +#. Name of a PageType +#: crm/fcrm/pagetype/crm_contacts/crm_contacts.json msgid "CRM Contacts" msgstr "" -#. Name of a DocType -#: crm/fcrm/doctype/crm_dashboard/crm_dashboard.json +#. Name of a PageType +#: crm/fcrm/pagetype/crm_dashboard/crm_dashboard.json #: frontend/src/pages/Dashboard.vue:304 msgid "CRM Dashboard" msgstr "" -#. Name of a DocType -#: crm/fcrm/doctype/crm_deal/crm_deal.json +#. Name of a PageType +#: crm/fcrm/pagetype/crm_deal/crm_deal.json msgid "CRM Deal" msgstr "" -#. Name of a DocType -#: crm/fcrm/doctype/crm_deal_status/crm_deal_status.json +#. Name of a PageType +#: crm/fcrm/pagetype/crm_deal_status/crm_deal_status.json msgid "CRM Deal Status" msgstr "" -#. Name of a DocType -#: crm/fcrm/doctype/crm_dropdown_item/crm_dropdown_item.json +#. Name of a PageType +#: crm/fcrm/pagetype/crm_dropdown_item/crm_dropdown_item.json msgid "CRM Dropdown Item" msgstr "" -#. Name of a DocType -#: crm/fcrm/doctype/crm_exotel_settings/crm_exotel_settings.json +#. Name of a PageType +#: crm/fcrm/pagetype/crm_exotel_settings/crm_exotel_settings.json msgid "CRM Exotel Settings" msgstr "" -#. Name of a DocType -#: crm/fcrm/doctype/crm_fields_layout/crm_fields_layout.json +#. Name of a PageType +#: crm/fcrm/pagetype/crm_fields_layout/crm_fields_layout.json msgid "CRM Fields Layout" msgstr "" -#. Name of a DocType -#: crm/fcrm/doctype/crm_form_script/crm_form_script.json +#. Name of a PageType +#: crm/fcrm/pagetype/crm_form_script/crm_form_script.json msgid "CRM Form Script" msgstr "" -#. Name of a DocType -#: crm/fcrm/doctype/crm_global_settings/crm_global_settings.json +#. Name of a PageType +#: crm/fcrm/pagetype/crm_global_settings/crm_global_settings.json msgid "CRM Global Settings" msgstr "" -#. Name of a DocType -#: crm/fcrm/doctype/crm_holiday/crm_holiday.json +#. Name of a PageType +#: crm/fcrm/pagetype/crm_holiday/crm_holiday.json msgid "CRM Holiday" msgstr "" -#. Name of a DocType -#: crm/fcrm/doctype/crm_holiday_list/crm_holiday_list.json +#. Name of a PageType +#: crm/fcrm/pagetype/crm_holiday_list/crm_holiday_list.json msgid "CRM Holiday List" msgstr "" -#. Name of a DocType -#: crm/fcrm/doctype/crm_industry/crm_industry.json +#. Name of a PageType +#: crm/fcrm/pagetype/crm_industry/crm_industry.json msgid "CRM Industry" msgstr "" -#. Name of a DocType -#: crm/fcrm/doctype/crm_invitation/crm_invitation.json +#. Name of a PageType +#: crm/fcrm/pagetype/crm_invitation/crm_invitation.json msgid "CRM Invitation" msgstr "" -#. Name of a DocType -#: crm/fcrm/doctype/crm_lead/crm_lead.json +#. Name of a PageType +#: crm/fcrm/pagetype/crm_lead/crm_lead.json msgid "CRM Lead" msgstr "" -#. Name of a DocType -#: crm/fcrm/doctype/crm_lead_source/crm_lead_source.json +#. Name of a PageType +#: crm/fcrm/pagetype/crm_lead_source/crm_lead_source.json msgid "CRM Lead Source" msgstr "" -#. Name of a DocType -#: crm/fcrm/doctype/crm_lead_status/crm_lead_status.json +#. Name of a PageType +#: crm/fcrm/pagetype/crm_lead_status/crm_lead_status.json msgid "CRM Lead Status" msgstr "" -#. Name of a DocType -#: crm/fcrm/doctype/crm_lost_reason/crm_lost_reason.json +#. Name of a PageType +#: crm/fcrm/pagetype/crm_lost_reason/crm_lost_reason.json msgid "CRM Lost Reason" msgstr "" -#. Name of a DocType -#: crm/fcrm/doctype/crm_notification/crm_notification.json +#. Name of a PageType +#: crm/fcrm/pagetype/crm_notification/crm_notification.json msgid "CRM Notification" msgstr "" -#. Name of a DocType -#: crm/fcrm/doctype/crm_organization/crm_organization.json +#. Name of a PageType +#: crm/fcrm/pagetype/crm_organization/crm_organization.json msgid "CRM Organization" msgstr "" -#. Label of a shortcut in the Frappe CRM Workspace -#: crm/fcrm/workspace/frappe_crm/frappe_crm.json +#. Label of a shortcut in the Jingrow CRM Workspace +#: crm/fcrm/workspace/jingrow_crm/jingrow_crm.json msgid "CRM Portal Page" msgstr "" -#. Name of a DocType -#: crm/fcrm/doctype/crm_product/crm_product.json +#. Name of a PageType +#: crm/fcrm/pagetype/crm_product/crm_product.json msgid "CRM Product" msgstr "" -#. Name of a DocType -#: crm/fcrm/doctype/crm_products/crm_products.json +#. Name of a PageType +#: crm/fcrm/pagetype/crm_products/crm_products.json msgid "CRM Products" msgstr "" -#. Name of a DocType -#: crm/fcrm/doctype/crm_service_day/crm_service_day.json +#. Name of a PageType +#: crm/fcrm/pagetype/crm_service_day/crm_service_day.json msgid "CRM Service Day" msgstr "" -#. Name of a DocType -#: crm/fcrm/doctype/crm_service_level_agreement/crm_service_level_agreement.json +#. Name of a PageType +#: crm/fcrm/pagetype/crm_service_level_agreement/crm_service_level_agreement.json msgid "CRM Service Level Agreement" msgstr "" -#. Name of a DocType -#: crm/fcrm/doctype/crm_service_level_priority/crm_service_level_priority.json +#. Name of a PageType +#: crm/fcrm/pagetype/crm_service_level_priority/crm_service_level_priority.json msgid "CRM Service Level Priority" msgstr "" -#. Name of a DocType -#: crm/fcrm/doctype/crm_status_change_log/crm_status_change_log.json +#. Name of a PageType +#: crm/fcrm/pagetype/crm_status_change_log/crm_status_change_log.json msgid "CRM Status Change Log" msgstr "" -#. Name of a DocType -#: crm/fcrm/doctype/crm_task/crm_task.json +#. Name of a PageType +#: crm/fcrm/pagetype/crm_task/crm_task.json msgid "CRM Task" msgstr "" -#. Name of a DocType -#: crm/fcrm/doctype/crm_telephony_agent/crm_telephony_agent.json +#. Name of a PageType +#: crm/fcrm/pagetype/crm_telephony_agent/crm_telephony_agent.json msgid "CRM Telephony Agent" msgstr "" -#. Name of a DocType -#: crm/fcrm/doctype/crm_telephony_phone/crm_telephony_phone.json +#. Name of a PageType +#: crm/fcrm/pagetype/crm_telephony_phone/crm_telephony_phone.json msgid "CRM Telephony Phone" msgstr "" -#. Name of a DocType -#: crm/fcrm/doctype/crm_territory/crm_territory.json +#. Name of a PageType +#: crm/fcrm/pagetype/crm_territory/crm_territory.json msgid "CRM Territory" msgstr "" -#. Name of a DocType -#: crm/fcrm/doctype/crm_twilio_settings/crm_twilio_settings.json +#. Name of a PageType +#: crm/fcrm/pagetype/crm_twilio_settings/crm_twilio_settings.json msgid "CRM Twilio Settings" msgstr "" -#. Name of a DocType -#: crm/fcrm/doctype/crm_view_settings/crm_view_settings.json +#. Name of a PageType +#: crm/fcrm/pagetype/crm_view_settings/crm_view_settings.json msgid "CRM View Settings" msgstr "" @@ -1021,13 +1021,13 @@ msgstr "" msgid "Call Details" msgstr "Détails de l'appel" -#. Label of the receiver (Link) field in DocType 'CRM Call Log' -#: crm/fcrm/doctype/crm_call_log/crm_call_log.json +#. Label of the receiver (Link) field in PageType 'CRM Call Log' +#: crm/fcrm/pagetype/crm_call_log/crm_call_log.json msgid "Call Received By" msgstr "Appel reçu par" -#. Description of the 'Duration' (Duration) field in DocType 'CRM Call Log' -#: crm/fcrm/doctype/crm_call_log/crm_call_log.json +#. Description of the 'Duration' (Duration) field in PageType 'CRM Call Log' +#: crm/fcrm/pagetype/crm_call_log/crm_call_log.json msgid "Call duration in seconds" msgstr "" @@ -1045,8 +1045,8 @@ msgstr "" msgid "Call with John Doe" msgstr "" -#. Label of the caller (Link) field in DocType 'CRM Call Log' -#: crm/fcrm/doctype/crm_call_log/crm_call_log.json +#. Label of the caller (Link) field in PageType 'CRM Call Log' +#: crm/fcrm/pagetype/crm_call_log/crm_call_log.json msgid "Caller" msgstr "" @@ -1083,10 +1083,10 @@ msgstr "Caméra" msgid "Cancel" msgstr "Annuler" -#. Option for the 'Status' (Select) field in DocType 'CRM Call Log' -#. Option for the 'Status' (Select) field in DocType 'CRM Task' -#: crm/fcrm/doctype/crm_call_log/crm_call_log.json -#: crm/fcrm/doctype/crm_task/crm_task.json +#. Option for the 'Status' (Select) field in PageType 'CRM Call Log' +#. Option for the 'Status' (Select) field in PageType 'CRM Task' +#: crm/fcrm/pagetype/crm_call_log/crm_call_log.json +#: crm/fcrm/pagetype/crm_task/crm_task.json msgid "Canceled" msgstr "Annulé" @@ -1094,7 +1094,7 @@ msgstr "Annulé" msgid "Cannot change role of user with Admin access" msgstr "" -#: crm/fcrm/doctype/fcrm_settings/fcrm_settings.py:34 +#: crm/fcrm/pagetype/fcrm_settings/fcrm_settings.py:34 msgid "Cannot delete standard items {0}" msgstr "" @@ -1189,8 +1189,8 @@ msgstr "" msgid "Clear Sort" msgstr "" -#. Label of the clear_table (Button) field in DocType 'CRM Holiday List' -#: crm/fcrm/doctype/crm_holiday_list/crm_holiday_list.json +#. Label of the clear_table (Button) field in PageType 'CRM Holiday List' +#: crm/fcrm/pagetype/crm_holiday_list/crm_holiday_list.json msgid "Clear Table" msgstr "Effacer le tableau" @@ -1211,8 +1211,8 @@ msgstr "Fermer" msgid "Close panel" msgstr "" -#. Label of the closed_date (Date) field in DocType 'CRM Deal' -#: crm/fcrm/doctype/crm_deal/crm_deal.json +#. Label of the closed_date (Date) field in PageType 'CRM Deal' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json msgid "Closed Date" msgstr "" @@ -1224,10 +1224,10 @@ msgstr "Réduire" msgid "Collapsible" msgstr "Réductible" -#. Label of the color (Select) field in DocType 'CRM Deal Status' -#. Label of the color (Select) field in DocType 'CRM Lead Status' -#: crm/fcrm/doctype/crm_deal_status/crm_deal_status.json -#: crm/fcrm/doctype/crm_lead_status/crm_lead_status.json +#. Label of the color (Select) field in PageType 'CRM Deal Status' +#. Label of the color (Select) field in PageType 'CRM Lead Status' +#: crm/fcrm/pagetype/crm_deal_status/crm_deal_status.json +#: crm/fcrm/pagetype/crm_lead_status/crm_lead_status.json msgid "Color" msgstr "Couleur" @@ -1235,20 +1235,20 @@ msgstr "Couleur" msgid "Column" msgstr "" -#. Label of the column_field (Data) field in DocType 'CRM View Settings' -#: crm/fcrm/doctype/crm_view_settings/crm_view_settings.json +#. Label of the column_field (Data) field in PageType 'CRM View Settings' +#: crm/fcrm/pagetype/crm_view_settings/crm_view_settings.json #: frontend/src/components/Kanban/KanbanSettings.vue:12 msgid "Column Field" msgstr "" -#. Label of the columns (Code) field in DocType 'CRM View Settings' -#: crm/fcrm/doctype/crm_view_settings/crm_view_settings.json +#. Label of the columns (Code) field in PageType 'CRM View Settings' +#: crm/fcrm/pagetype/crm_view_settings/crm_view_settings.json #: frontend/src/components/ColumnSettings.vue:4 msgid "Columns" msgstr "Colonnes" -#. Label of the comment (Link) field in DocType 'CRM Notification' -#: crm/fcrm/doctype/crm_notification/crm_notification.json +#. Label of the comment (Link) field in PageType 'CRM Notification' +#: crm/fcrm/pagetype/crm_notification/crm_notification.json #: frontend/src/components/CommentBox.vue:78 #: frontend/src/components/CommunicationArea.vue:16 #: frontend/src/components/Layouts/AppSidebar.vue:579 @@ -1264,20 +1264,20 @@ msgstr "Commentaires" msgid "Common reasons for losing deals" msgstr "" -#. Label of the communication_status (Link) field in DocType 'CRM Deal' -#. Label of the communication_status (Link) field in DocType 'CRM Lead' -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_lead/crm_lead.json +#. Label of the communication_status (Link) field in PageType 'CRM Deal' +#. Label of the communication_status (Link) field in PageType 'CRM Lead' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_lead/crm_lead.json msgid "Communication Status" msgstr "" -#. Label of a shortcut in the Frappe CRM Workspace -#: crm/fcrm/workspace/frappe_crm/frappe_crm.json +#. Label of a shortcut in the Jingrow CRM Workspace +#: crm/fcrm/workspace/jingrow_crm/jingrow_crm.json msgid "Communication Statuses" msgstr "" -#. Label of the erpnext_company (Data) field in DocType 'ERPNext CRM Settings' -#: crm/fcrm/doctype/erpnext_crm_settings/erpnext_crm_settings.json +#. Label of the erpnext_company (Data) field in PageType 'ERPNext CRM Settings' +#: crm/fcrm/pagetype/erpnext_crm_settings/erpnext_crm_settings.json msgid "Company in ERPNext Site" msgstr "" @@ -1285,18 +1285,18 @@ msgstr "" msgid "Complete Registration" msgstr "Terminer l'Inscription" -#. Option for the 'Status' (Select) field in DocType 'CRM Call Log' -#: crm/fcrm/doctype/crm_call_log/crm_call_log.json +#. Option for the 'Status' (Select) field in PageType 'CRM Call Log' +#: crm/fcrm/pagetype/crm_call_log/crm_call_log.json msgid "Completed" msgstr "Terminé" -#. Option for the 'Device' (Select) field in DocType 'CRM Telephony Agent' -#: crm/fcrm/doctype/crm_telephony_agent/crm_telephony_agent.json +#. Option for the 'Device' (Select) field in PageType 'CRM Telephony Agent' +#: crm/fcrm/pagetype/crm_telephony_agent/crm_telephony_agent.json msgid "Computer" msgstr "Ordinateur" -#. Label of the condition (Code) field in DocType 'CRM Service Level Agreement' -#: crm/fcrm/doctype/crm_service_level_agreement/crm_service_level_agreement.json +#. Label of the condition (Code) field in PageType 'CRM Service Level Agreement' +#: crm/fcrm/pagetype/crm_service_level_agreement/crm_service_level_agreement.json msgid "Condition" msgstr "Conditions" @@ -1354,17 +1354,17 @@ msgstr "" msgid "Connect your email" msgstr "" -#. Label of the contact (Link) field in DocType 'CRM Contacts' -#. Label of the contact (Link) field in DocType 'CRM Deal' -#: crm/fcrm/doctype/crm_contacts/crm_contacts.json -#: crm/fcrm/doctype/crm_deal/crm_deal.json +#. Label of the contact (Link) field in PageType 'CRM Contacts' +#. Label of the contact (Link) field in PageType 'CRM Deal' +#: crm/fcrm/pagetype/crm_contacts/crm_contacts.json +#: crm/fcrm/pagetype/crm_deal/crm_deal.json #: frontend/src/components/Layouts/AppSidebar.vue:552 #: frontend/src/components/Modals/ConvertToDealModal.vue:51 #: frontend/src/pages/MobileLead.vue:145 msgid "Contact" msgstr "Contact" -#: crm/fcrm/doctype/crm_lead/crm_lead.py:212 +#: crm/fcrm/pagetype/crm_lead/crm_lead.py:212 msgid "Contact Already Exists" msgstr "" @@ -1384,7 +1384,7 @@ msgstr "" msgid "Contact already added" msgstr "" -#: crm/fcrm/doctype/crm_lead/crm_lead.py:211 +#: crm/fcrm/pagetype/crm_lead/crm_lead.py:211 msgid "Contact already exists with {0}" msgstr "" @@ -1405,18 +1405,18 @@ msgstr "" msgid "Contact updated" msgstr "" -#. Label of the contacts_tab (Tab Break) field in DocType 'CRM Deal' -#. Label of the contacts (Table) field in DocType 'CRM Deal' -#. Label of a shortcut in the Frappe CRM Workspace -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/workspace/frappe_crm/frappe_crm.json +#. Label of the contacts_tab (Tab Break) field in PageType 'CRM Deal' +#. Label of the contacts (Table) field in PageType 'CRM Deal' +#. Label of a shortcut in the Jingrow CRM Workspace +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/workspace/jingrow_crm/jingrow_crm.json #: frontend/src/pages/Contact.vue:234 frontend/src/pages/MobileContact.vue:212 #: frontend/src/pages/MobileOrganization.vue:331 msgid "Contacts" msgstr "Contacts" -#. Label of the content (Text Editor) field in DocType 'FCRM Note' -#: crm/fcrm/doctype/fcrm_note/fcrm_note.json +#. Label of the content (Text Editor) field in PageType 'FCRM Note' +#: crm/fcrm/pagetype/fcrm_note/fcrm_note.json #: frontend/src/components/Modals/NoteModal.vue:33 #: frontend/src/components/Settings/EmailTemplate/EditEmailTemplate.vue:89 #: frontend/src/components/Settings/EmailTemplate/EditEmailTemplate.vue:102 @@ -1456,8 +1456,8 @@ msgstr "" msgid "Convert to Deal" msgstr "" -#. Label of the converted (Check) field in DocType 'CRM Lead' -#: crm/fcrm/doctype/crm_lead/crm_lead.json +#. Label of the converted (Check) field in PageType 'CRM Lead' +#: crm/fcrm/pagetype/crm_lead/crm_lead.json msgid "Converted" msgstr "Converti" @@ -1533,9 +1533,9 @@ msgstr "" msgid "Create an event" msgstr "" -#. Label of the create_customer_on_status_change (Check) field in DocType +#. Label of the create_customer_on_status_change (Check) field in PageType #. 'ERPNext CRM Settings' -#: crm/fcrm/doctype/erpnext_crm_settings/erpnext_crm_settings.json +#: crm/fcrm/pagetype/erpnext_crm_settings/erpnext_crm_settings.json msgid "Create customer on status change" msgstr "" @@ -1560,13 +1560,13 @@ msgstr "" msgid "Create your first task" msgstr "" -#. Label of the currency (Link) field in DocType 'CRM Deal' -#. Label of the currency (Link) field in DocType 'CRM Organization' -#. Label of the currency (Link) field in DocType 'FCRM Settings' -#. Label of the currency_tab (Tab Break) field in DocType 'FCRM Settings' -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_organization/crm_organization.json -#: crm/fcrm/doctype/fcrm_settings/fcrm_settings.json +#. Label of the currency (Link) field in PageType 'CRM Deal' +#. Label of the currency (Link) field in PageType 'CRM Organization' +#. Label of the currency (Link) field in PageType 'FCRM Settings' +#. Label of the currency_tab (Tab Break) field in PageType 'FCRM Settings' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_organization/crm_organization.json +#: crm/fcrm/pagetype/fcrm_settings/fcrm_settings.json #: frontend/src/components/Settings/CurrencySettings.vue:31 msgid "Currency" msgstr "Devise" @@ -1631,13 +1631,13 @@ msgstr "" msgid "Data" msgstr "Données" -#. Option for the 'Type' (Select) field in DocType 'CRM Fields Layout' -#: crm/fcrm/doctype/crm_fields_layout/crm_fields_layout.json +#. Option for the 'Type' (Select) field in PageType 'CRM Fields Layout' +#: crm/fcrm/pagetype/crm_fields_layout/crm_fields_layout.json msgid "Data Fields" msgstr "" -#. Label of the date (Date) field in DocType 'CRM Holiday' -#: crm/api/dashboard.py:601 crm/fcrm/doctype/crm_holiday/crm_holiday.json +#. Label of the date (Date) field in PageType 'CRM Holiday' +#: crm/api/dashboard.py:601 crm/fcrm/pagetype/crm_holiday/crm_holiday.json #: frontend/src/components/Calendar/CalendarEventPanel.vue:202 msgid "Date" msgstr "" @@ -1660,23 +1660,23 @@ msgstr "" msgid "Deal" msgstr "" -#. Label of the deal_owner (Link) field in DocType 'CRM Deal' -#: crm/fcrm/doctype/crm_deal/crm_deal.json +#. Label of the deal_owner (Link) field in PageType 'CRM Deal' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json msgid "Deal Owner" msgstr "Resp. de l'opportunité" -#. Label of the deal_status (Link) field in DocType 'ERPNext CRM Settings' -#: crm/fcrm/doctype/erpnext_crm_settings/erpnext_crm_settings.json +#. Label of the deal_status (Link) field in PageType 'ERPNext CRM Settings' +#: crm/fcrm/pagetype/erpnext_crm_settings/erpnext_crm_settings.json msgid "Deal Status" msgstr "" -#. Label of a shortcut in the Frappe CRM Workspace -#: crm/fcrm/workspace/frappe_crm/frappe_crm.json +#. Label of a shortcut in the Jingrow CRM Workspace +#: crm/fcrm/workspace/jingrow_crm/jingrow_crm.json msgid "Deal Statuses" msgstr "" -#. Label of the deal_value (Currency) field in DocType 'CRM Deal' -#: crm/fcrm/doctype/crm_deal/crm_deal.json +#. Label of the deal_value (Currency) field in PageType 'CRM Deal' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json msgid "Deal Value" msgstr "" @@ -1694,8 +1694,8 @@ msgstr "" msgid "Deal value" msgstr "" -#. Label of a shortcut in the Frappe CRM Workspace -#: crm/fcrm/workspace/frappe_crm/frappe_crm.json +#. Label of a shortcut in the Jingrow CRM Workspace +#: crm/fcrm/workspace/jingrow_crm/jingrow_crm.json #: frontend/src/pages/Deal.vue:480 frontend/src/pages/MobileContact.vue:288 #: frontend/src/pages/MobileDeal.vue:384 #: frontend/src/pages/MobileOrganization.vue:325 @@ -1732,8 +1732,8 @@ msgstr "" msgid "Dear {{ lead_name }}, \\n\\nThis is a reminder for the payment of {{ grand_total }}. \\n\\nThanks, \\nFrappé" msgstr "" -#. Label of the default (Check) field in DocType 'CRM Service Level Agreement' -#: crm/fcrm/doctype/crm_service_level_agreement/crm_service_level_agreement.json +#. Label of the default (Check) field in PageType 'CRM Service Level Agreement' +#: crm/fcrm/pagetype/crm_service_level_agreement/crm_service_level_agreement.json msgid "Default" msgstr "Par Défaut" @@ -1745,8 +1745,8 @@ msgstr "Boîte de Réception par Défaut" msgid "Default Incoming" msgstr "Entrant par Défaut" -#. Label of the default_medium (Select) field in DocType 'CRM Telephony Agent' -#: crm/fcrm/doctype/crm_telephony_agent/crm_telephony_agent.json +#. Label of the default_medium (Select) field in PageType 'CRM Telephony Agent' +#: crm/fcrm/pagetype/crm_telephony_agent/crm_telephony_agent.json msgid "Default Medium" msgstr "" @@ -1754,9 +1754,9 @@ msgstr "" msgid "Default Outgoing" msgstr "Sortant par Défaut" -#. Label of the default_priority (Check) field in DocType 'CRM Service Level +#. Label of the default_priority (Check) field in PageType 'CRM Service Level #. Priority' -#: crm/fcrm/doctype/crm_service_level_priority/crm_service_level_priority.json +#: crm/fcrm/pagetype/crm_service_level_priority/crm_service_level_priority.json msgid "Default Priority" msgstr "Priorité par défaut" @@ -1768,7 +1768,7 @@ msgstr "Envoi par Défaut" msgid "Default Sending and Inbox" msgstr "Boîte d’Envois et de Réception par Défaut" -#: crm/fcrm/doctype/crm_service_level_agreement/crm_service_level_agreement.py:33 +#: crm/fcrm/pagetype/crm_service_level_agreement/crm_service_level_agreement.py:33 msgid "Default Service Level Agreement already exists for {0}" msgstr "" @@ -1788,8 +1788,8 @@ msgstr "" msgid "Default medium" msgstr "" -#: crm/fcrm/doctype/fcrm_settings/fcrm_settings.js:18 -#: crm/fcrm/doctype/fcrm_settings/fcrm_settings.js:30 +#: crm/fcrm/pagetype/fcrm_settings/fcrm_settings.js:18 +#: crm/fcrm/pagetype/fcrm_settings/fcrm_settings.js:30 msgid "Default statuses, custom fields and layouts restored successfully." msgstr "" @@ -1825,7 +1825,7 @@ msgstr "" msgid "Delete" msgstr "Supprimer" -#: crm/fcrm/doctype/fcrm_settings/fcrm_settings.js:26 +#: crm/fcrm/pagetype/fcrm_settings/fcrm_settings.js:26 msgid "Delete & Restore" msgstr "" @@ -1883,14 +1883,14 @@ msgstr "" msgid "Delete {0} items" msgstr "" -#. Label of the description (Text Editor) field in DocType 'CRM Holiday' -#. Label of the description (Text Editor) field in DocType 'CRM Lost Reason' -#. Label of the description (Text Editor) field in DocType 'CRM Product' -#. Label of the description (Text Editor) field in DocType 'CRM Task' -#: crm/fcrm/doctype/crm_holiday/crm_holiday.json -#: crm/fcrm/doctype/crm_lost_reason/crm_lost_reason.json -#: crm/fcrm/doctype/crm_product/crm_product.json -#: crm/fcrm/doctype/crm_task/crm_task.json +#. Label of the description (Text Editor) field in PageType 'CRM Holiday' +#. Label of the description (Text Editor) field in PageType 'CRM Lost Reason' +#. Label of the description (Text Editor) field in PageType 'CRM Product' +#. Label of the description (Text Editor) field in PageType 'CRM Task' +#: crm/fcrm/pagetype/crm_holiday/crm_holiday.json +#: crm/fcrm/pagetype/crm_lost_reason/crm_lost_reason.json +#: crm/fcrm/pagetype/crm_product/crm_product.json +#: crm/fcrm/pagetype/crm_task/crm_task.json #: frontend/src/components/Calendar/CalendarEventPanel.vue:152 #: frontend/src/components/Modals/EventModal.vue:134 #: frontend/src/components/Modals/TaskModal.vue:36 @@ -1907,29 +1907,29 @@ msgstr "" msgid "Desk" msgstr "Bureau" -#. Label of the details (Tab Break) field in DocType 'CRM Lead' -#. Label of the details (Text Editor) field in DocType 'CRM Lead Source' -#: crm/fcrm/doctype/crm_lead/crm_lead.json -#: crm/fcrm/doctype/crm_lead_source/crm_lead_source.json +#. Label of the details (Tab Break) field in PageType 'CRM Lead' +#. Label of the details (Text Editor) field in PageType 'CRM Lead Source' +#: crm/fcrm/pagetype/crm_lead/crm_lead.json +#: crm/fcrm/pagetype/crm_lead_source/crm_lead_source.json #: frontend/src/pages/MobileContact.vue:283 #: frontend/src/pages/MobileDeal.vue:424 frontend/src/pages/MobileLead.vue:331 #: frontend/src/pages/MobileOrganization.vue:320 msgid "Details" msgstr "Détails" -#. Label of the call_receiving_device (Select) field in DocType 'CRM Telephony +#. Label of the call_receiving_device (Select) field in PageType 'CRM Telephony #. Agent' -#: crm/fcrm/doctype/crm_telephony_agent/crm_telephony_agent.json +#: crm/fcrm/pagetype/crm_telephony_agent/crm_telephony_agent.json #: frontend/src/components/FilesUploader/FilesUploaderArea.vue:39 msgid "Device" msgstr "" -#: crm/fcrm/doctype/crm_form_script/crm_form_script.js:30 +#: crm/fcrm/pagetype/crm_form_script/crm_form_script.js:30 msgid "Disable" msgstr "Désactiver" -#. Label of the disabled (Check) field in DocType 'CRM Product' -#: crm/fcrm/doctype/crm_product/crm_product.json +#. Label of the disabled (Check) field in PageType 'CRM Product' +#: crm/fcrm/pagetype/crm_product/crm_product.json msgid "Disabled" msgstr "Desactivé" @@ -1943,27 +1943,27 @@ msgstr "Ignorer" msgid "Discard unsaved changes?" msgstr "" -#. Label of the discount_percentage (Percent) field in DocType 'CRM Products' -#: crm/fcrm/doctype/crm_products/crm_products.json +#. Label of the discount_percentage (Percent) field in PageType 'CRM Products' +#: crm/fcrm/pagetype/crm_products/crm_products.json msgid "Discount %" msgstr "Remise %" -#. Label of the discount_amount (Currency) field in DocType 'CRM Products' -#: crm/fcrm/doctype/crm_products/crm_products.json +#. Label of the discount_amount (Currency) field in PageType 'CRM Products' +#: crm/fcrm/pagetype/crm_products/crm_products.json msgid "Discount Amount" msgstr "Remise" -#. Label of the dt (Link) field in DocType 'CRM Form Script' -#. Label of the dt (Link) field in DocType 'CRM Global Settings' -#. Label of the dt (Link) field in DocType 'CRM View Settings' -#: crm/fcrm/doctype/crm_form_script/crm_form_script.json -#: crm/fcrm/doctype/crm_global_settings/crm_global_settings.json -#: crm/fcrm/doctype/crm_view_settings/crm_view_settings.json -msgid "DocType" +#. Label of the dt (Link) field in PageType 'CRM Form Script' +#. Label of the dt (Link) field in PageType 'CRM Global Settings' +#. Label of the dt (Link) field in PageType 'CRM View Settings' +#: crm/fcrm/pagetype/crm_form_script/crm_form_script.json +#: crm/fcrm/pagetype/crm_global_settings/crm_global_settings.json +#: crm/fcrm/pagetype/crm_view_settings/crm_view_settings.json +msgid "PageType" msgstr "" -#. Label of the dt (Link) field in DocType 'CRM Fields Layout' -#: crm/fcrm/doctype/crm_fields_layout/crm_fields_layout.json +#. Label of the dt (Link) field in PageType 'CRM Fields Layout' +#: crm/fcrm/pagetype/crm_fields_layout/crm_fields_layout.json msgid "Document Type" msgstr "Type de Document" @@ -1983,8 +1983,8 @@ msgstr "" msgid "Documentation" msgstr "" -#. Option for the 'Status' (Select) field in DocType 'CRM Task' -#: crm/fcrm/doctype/crm_task/crm_task.json +#. Option for the 'Status' (Select) field in PageType 'CRM Task' +#: crm/fcrm/pagetype/crm_task/crm_task.json msgid "Done" msgstr "Terminé" @@ -2006,13 +2006,13 @@ msgstr "" msgid "Drop files here" msgstr "" -#. Label of the dropdown_items_tab (Tab Break) field in DocType 'FCRM Settings' -#: crm/fcrm/doctype/fcrm_settings/fcrm_settings.json +#. Label of the dropdown_items_tab (Tab Break) field in PageType 'FCRM Settings' +#: crm/fcrm/pagetype/fcrm_settings/fcrm_settings.json msgid "Dropdown Items" msgstr "" -#. Label of the due_date (Datetime) field in DocType 'CRM Task' -#: crm/fcrm/doctype/crm_task/crm_task.json +#. Label of the due_date (Datetime) field in PageType 'CRM Task' +#: crm/fcrm/pagetype/crm_task/crm_task.json msgid "Due Date" msgstr "Date d'Échéance" @@ -2048,10 +2048,10 @@ msgstr "" msgid "Duplicate template" msgstr "" -#. Label of the duration (Duration) field in DocType 'CRM Call Log' -#. Label of the duration (Duration) field in DocType 'CRM Status Change Log' -#: crm/fcrm/doctype/crm_call_log/crm_call_log.json -#: crm/fcrm/doctype/crm_status_change_log/crm_status_change_log.json +#. Label of the duration (Duration) field in PageType 'CRM Call Log' +#. Label of the duration (Duration) field in PageType 'CRM Status Change Log' +#: crm/fcrm/pagetype/crm_call_log/crm_call_log.json +#: crm/fcrm/pagetype/crm_status_change_log/crm_status_change_log.json msgid "Duration" msgstr "Durée" @@ -2060,28 +2060,28 @@ msgstr "Durée" msgid "ERPNext" msgstr "" -#. Name of a DocType -#: crm/fcrm/doctype/erpnext_crm_settings/erpnext_crm_settings.json +#. Name of a PageType +#: crm/fcrm/pagetype/erpnext_crm_settings/erpnext_crm_settings.json msgid "ERPNext CRM Settings" msgstr "" -#. Label of the section_break_oubd (Section Break) field in DocType 'ERPNext +#. Label of the section_break_oubd (Section Break) field in PageType 'ERPNext #. CRM Settings' -#: crm/fcrm/doctype/erpnext_crm_settings/erpnext_crm_settings.json +#: crm/fcrm/pagetype/erpnext_crm_settings/erpnext_crm_settings.json msgid "ERPNext Site API's" msgstr "" -#. Label of the erpnext_site_url (Data) field in DocType 'ERPNext CRM Settings' -#: crm/fcrm/doctype/erpnext_crm_settings/erpnext_crm_settings.json +#. Label of the erpnext_site_url (Data) field in PageType 'ERPNext CRM Settings' +#: crm/fcrm/pagetype/erpnext_crm_settings/erpnext_crm_settings.json msgid "ERPNext Site URL" msgstr "" -#: crm/fcrm/doctype/erpnext_crm_settings/erpnext_crm_settings.py:25 +#: crm/fcrm/pagetype/erpnext_crm_settings/erpnext_crm_settings.py:25 msgid "ERPNext is not installed in the current site" msgstr "" -#: crm/fcrm/doctype/erpnext_crm_settings/erpnext_crm_settings.py:98 -#: crm/fcrm/doctype/erpnext_crm_settings/erpnext_crm_settings.py:124 +#: crm/fcrm/pagetype/erpnext_crm_settings/erpnext_crm_settings.py:98 +#: crm/fcrm/pagetype/erpnext_crm_settings/erpnext_crm_settings.py:124 msgid "ERPNext is not integrated with the CRM" msgstr "" @@ -2191,12 +2191,12 @@ msgstr "" msgid "Editing event" msgstr "" -#. Label of the email (Data) field in DocType 'CRM Contacts' -#. Label of the email (Data) field in DocType 'CRM Invitation' -#. Label of the email (Data) field in DocType 'CRM Lead' -#: crm/fcrm/doctype/crm_contacts/crm_contacts.json -#: crm/fcrm/doctype/crm_invitation/crm_invitation.json -#: crm/fcrm/doctype/crm_lead/crm_lead.json frontend/src/pages/Contact.vue:510 +#. Label of the email (Data) field in PageType 'CRM Contacts' +#. Label of the email (Data) field in PageType 'CRM Invitation' +#. Label of the email (Data) field in PageType 'CRM Lead' +#: crm/fcrm/pagetype/crm_contacts/crm_contacts.json +#: crm/fcrm/pagetype/crm_invitation/crm_invitation.json +#: crm/fcrm/pagetype/crm_lead/crm_lead.json frontend/src/pages/Contact.vue:510 #: frontend/src/pages/MobileContact.vue:518 #: frontend/src/pages/MobileOrganization.vue:462 #: frontend/src/pages/MobileOrganization.vue:490 @@ -2213,8 +2213,8 @@ msgstr "" msgid "Email ID is required" msgstr "" -#. Label of the email_sent_at (Datetime) field in DocType 'CRM Invitation' -#: crm/fcrm/doctype/crm_invitation/crm_invitation.json +#. Label of the email_sent_at (Datetime) field in PageType 'CRM Invitation' +#: crm/fcrm/pagetype/crm_invitation/crm_invitation.json msgid "Email Sent At" msgstr "" @@ -2272,12 +2272,12 @@ msgstr "" msgid "Empty - Choose a field to sort by" msgstr "" -#: crm/fcrm/doctype/crm_form_script/crm_form_script.js:30 +#: crm/fcrm/pagetype/crm_form_script/crm_form_script.js:30 msgid "Enable" msgstr "Activer" -#. Label of the enable_forecasting (Check) field in DocType 'FCRM Settings' -#: crm/fcrm/doctype/fcrm_settings/fcrm_settings.json +#. Label of the enable_forecasting (Check) field in PageType 'FCRM Settings' +#: crm/fcrm/pagetype/fcrm_settings/fcrm_settings.json msgid "Enable Forecasting" msgstr "" @@ -2293,18 +2293,18 @@ msgstr "Activer Sortant" msgid "Enable forecasting" msgstr "" -#. Label of the enabled (Check) field in DocType 'CRM Exotel Settings' -#. Label of the enabled (Check) field in DocType 'CRM Form Script' -#. Label of the enabled (Check) field in DocType 'CRM Service Level Agreement' -#. Label of the enabled (Check) field in DocType 'CRM Twilio Settings' -#. Label of the enabled (Check) field in DocType 'ERPNext CRM Settings' -#. Label of the enabled (Check) field in DocType 'Helpdesk CRM Settings' -#: crm/fcrm/doctype/crm_exotel_settings/crm_exotel_settings.json -#: crm/fcrm/doctype/crm_form_script/crm_form_script.json -#: crm/fcrm/doctype/crm_service_level_agreement/crm_service_level_agreement.json -#: crm/fcrm/doctype/crm_twilio_settings/crm_twilio_settings.json -#: crm/fcrm/doctype/erpnext_crm_settings/erpnext_crm_settings.json -#: crm/fcrm/doctype/helpdesk_crm_settings/helpdesk_crm_settings.json +#. Label of the enabled (Check) field in PageType 'CRM Exotel Settings' +#. Label of the enabled (Check) field in PageType 'CRM Form Script' +#. Label of the enabled (Check) field in PageType 'CRM Service Level Agreement' +#. Label of the enabled (Check) field in PageType 'CRM Twilio Settings' +#. Label of the enabled (Check) field in PageType 'ERPNext CRM Settings' +#. Label of the enabled (Check) field in PageType 'Helpdesk CRM Settings' +#: crm/fcrm/pagetype/crm_exotel_settings/crm_exotel_settings.json +#: crm/fcrm/pagetype/crm_form_script/crm_form_script.json +#: crm/fcrm/pagetype/crm_service_level_agreement/crm_service_level_agreement.json +#: crm/fcrm/pagetype/crm_twilio_settings/crm_twilio_settings.json +#: crm/fcrm/pagetype/erpnext_crm_settings/erpnext_crm_settings.json +#: crm/fcrm/pagetype/helpdesk_crm_settings/helpdesk_crm_settings.json #: frontend/src/components/Settings/AssignmentRules/AssignmentRuleView.vue:32 #: frontend/src/components/Settings/AssignmentRules/AssignmentRulesList.vue:21 #: frontend/src/components/Settings/EmailTemplate/EditEmailTemplate.vue:18 @@ -2313,15 +2313,15 @@ msgstr "" msgid "Enabled" msgstr "Activé" -#. Label of the end_date (Date) field in DocType 'CRM Service Level Agreement' -#: crm/fcrm/doctype/crm_service_level_agreement/crm_service_level_agreement.json +#. Label of the end_date (Date) field in PageType 'CRM Service Level Agreement' +#: crm/fcrm/pagetype/crm_service_level_agreement/crm_service_level_agreement.json msgid "End Date" msgstr "Date de Fin" -#. Label of the end_time (Datetime) field in DocType 'CRM Call Log' -#. Label of the end_time (Time) field in DocType 'CRM Service Day' -#: crm/fcrm/doctype/crm_call_log/crm_call_log.json -#: crm/fcrm/doctype/crm_service_day/crm_service_day.json +#. Label of the end_time (Datetime) field in PageType 'CRM Call Log' +#. Label of the end_time (Time) field in PageType 'CRM Service Day' +#: crm/fcrm/pagetype/crm_call_log/crm_call_log.json +#: crm/fcrm/pagetype/crm_service_day/crm_service_day.json #: frontend/src/components/Calendar/CalendarEventPanel.vue:242 #: frontend/src/components/Modals/EventModal.vue:112 msgid "End Time" @@ -2362,15 +2362,15 @@ msgstr "" msgid "Error updating field" msgstr "" -#: crm/fcrm/doctype/erpnext_crm_settings/erpnext_crm_settings.py:279 +#: crm/fcrm/pagetype/erpnext_crm_settings/erpnext_crm_settings.py:279 msgid "Error while creating customer in ERPNext, check error log for more details" msgstr "" -#: crm/fcrm/doctype/erpnext_crm_settings/erpnext_crm_settings.py:191 +#: crm/fcrm/pagetype/erpnext_crm_settings/erpnext_crm_settings.py:191 msgid "Error while creating prospect in ERPNext, check error log for more details" msgstr "" -#: crm/fcrm/doctype/erpnext_crm_settings/erpnext_crm_settings.py:117 +#: crm/fcrm/pagetype/erpnext_crm_settings/erpnext_crm_settings.py:117 msgid "Error while fetching customer in ERPNext, check error log for more details" msgstr "" @@ -2395,16 +2395,16 @@ msgstr "" msgid "Excel" msgstr "" -#. Label of the exchange_rate (Float) field in DocType 'CRM Deal' -#. Label of the exchange_rate (Float) field in DocType 'CRM Organization' -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_organization/crm_organization.json +#. Label of the exchange_rate (Float) field in PageType 'CRM Deal' +#. Label of the exchange_rate (Float) field in PageType 'CRM Organization' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_organization/crm_organization.json msgid "Exchange Rate" msgstr "Taux de Change" -#. Label of the exchange_rate_provider_section (Section Break) field in DocType +#. Label of the exchange_rate_provider_section (Section Break) field in PageType #. 'FCRM Settings' -#: crm/fcrm/doctype/fcrm_settings/fcrm_settings.json +#: crm/fcrm/pagetype/fcrm_settings/fcrm_settings.json msgid "Exchange Rate Provider" msgstr "" @@ -2412,12 +2412,12 @@ msgstr "" msgid "Exchange rate provider" msgstr "" -#. Option for the 'Telephony Medium' (Select) field in DocType 'CRM Call Log' -#. Label of the exotel (Check) field in DocType 'CRM Telephony Agent' -#. Option for the 'Default Medium' (Select) field in DocType 'CRM Telephony +#. Option for the 'Telephony Medium' (Select) field in PageType 'CRM Call Log' +#. Label of the exotel (Check) field in PageType 'CRM Telephony Agent' +#. Option for the 'Default Medium' (Select) field in PageType 'CRM Telephony #. Agent' -#: crm/fcrm/doctype/crm_call_log/crm_call_log.json -#: crm/fcrm/doctype/crm_telephony_agent/crm_telephony_agent.json +#: crm/fcrm/pagetype/crm_call_log/crm_call_log.json +#: crm/fcrm/pagetype/crm_telephony_agent/crm_telephony_agent.json #: frontend/src/components/Layouts/AppSidebar.vue:602 #: frontend/src/components/Settings/TelephonySettings.vue:41 #: frontend/src/components/Settings/TelephonySettings.vue:63 @@ -2428,8 +2428,8 @@ msgstr "" msgid "Exotel Exception" msgstr "" -#. Label of the exotel_number (Data) field in DocType 'CRM Telephony Agent' -#: crm/fcrm/doctype/crm_telephony_agent/crm_telephony_agent.json +#. Label of the exotel_number (Data) field in PageType 'CRM Telephony Agent' +#: crm/fcrm/pagetype/crm_telephony_agent/crm_telephony_agent.json msgid "Exotel Number" msgstr "" @@ -2453,26 +2453,26 @@ msgstr "" msgid "Expand" msgstr "Développer" -#. Label of the expected_closure_date (Date) field in DocType 'CRM Deal' -#: crm/fcrm/doctype/crm_deal/crm_deal.json +#. Label of the expected_closure_date (Date) field in PageType 'CRM Deal' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json msgid "Expected Closure Date" msgstr "" -#: crm/fcrm/doctype/crm_deal/crm_deal.py:173 +#: crm/fcrm/pagetype/crm_deal/crm_deal.py:173 msgid "Expected Closure Date is required." msgstr "" -#. Label of the expected_deal_value (Currency) field in DocType 'CRM Deal' -#: crm/fcrm/doctype/crm_deal/crm_deal.json +#. Label of the expected_deal_value (Currency) field in PageType 'CRM Deal' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json msgid "Expected Deal Value" msgstr "" -#: crm/fcrm/doctype/crm_deal/crm_deal.py:171 +#: crm/fcrm/pagetype/crm_deal/crm_deal.py:171 msgid "Expected Deal Value is required." msgstr "" -#. Option for the 'Status' (Select) field in DocType 'CRM Invitation' -#: crm/fcrm/doctype/crm_invitation/crm_invitation.json +#. Option for the 'Status' (Select) field in PageType 'CRM Invitation' +#: crm/fcrm/pagetype/crm_invitation/crm_invitation.json msgid "Expired" msgstr "Expiré" @@ -2489,22 +2489,22 @@ msgstr "" msgid "Export Type" msgstr "Type d'Exportation" -#. Name of a DocType -#: crm/fcrm/doctype/fcrm_note/fcrm_note.json +#. Name of a PageType +#: crm/fcrm/pagetype/fcrm_note/fcrm_note.json msgid "FCRM Note" msgstr "" -#. Name of a DocType -#: crm/fcrm/doctype/fcrm_settings/fcrm_settings.json +#. Name of a PageType +#: crm/fcrm/pagetype/fcrm_settings/fcrm_settings.json msgid "FCRM Settings" msgstr "" -#. Option for the 'Status' (Select) field in DocType 'CRM Call Log' -#. Option for the 'SLA Status' (Select) field in DocType 'CRM Deal' -#. Option for the 'SLA Status' (Select) field in DocType 'CRM Lead' -#: crm/fcrm/doctype/crm_call_log/crm_call_log.json -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_lead/crm_lead.json +#. Option for the 'Status' (Select) field in PageType 'CRM Call Log' +#. Option for the 'SLA Status' (Select) field in PageType 'CRM Deal' +#. Option for the 'SLA Status' (Select) field in PageType 'CRM Lead' +#: crm/fcrm/pagetype/crm_call_log/crm_call_log.json +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_lead/crm_lead.json msgid "Failed" msgstr "Échoué" @@ -2528,7 +2528,7 @@ msgstr "" msgid "Failed to delete template" msgstr "" -#: crm/fcrm/doctype/fcrm_settings/fcrm_settings.py:205 +#: crm/fcrm/pagetype/fcrm_settings/fcrm_settings.py:205 msgid "Failed to fetch exchange rate from {0} to {1} on {2}. Please check your internet connection or try again later." msgstr "" @@ -2561,8 +2561,8 @@ msgstr "" msgid "Failed to update template" msgstr "" -#. Label of the favicon (Attach) field in DocType 'FCRM Settings' -#: crm/fcrm/doctype/fcrm_settings/fcrm_settings.json +#. Label of the favicon (Attach) field in PageType 'FCRM Settings' +#: crm/fcrm/pagetype/fcrm_settings/fcrm_settings.json #: frontend/src/components/Settings/BrandSettings.vue:87 msgid "Favicon" msgstr "" @@ -2586,23 +2586,23 @@ msgid "File \"{0}\" was skipped because only {1} uploads are allowed" msgstr "" #: frontend/src/components/FilesUploader/FilesUploaderArea.vue:359 -msgid "File \"{0}\" was skipped because only {1} uploads are allowed for DocType \"{2}\"" +msgid "File \"{0}\" was skipped because only {1} uploads are allowed for PageType \"{2}\"" msgstr "" #: frontend/src/components/Filter.vue:6 msgid "Filter" msgstr "Filtre" -#. Label of the filters (Code) field in DocType 'CRM View Settings' -#. Label of the filters_tab (Tab Break) field in DocType 'CRM View Settings' -#: crm/fcrm/doctype/crm_view_settings/crm_view_settings.json +#. Label of the filters (Code) field in PageType 'CRM View Settings' +#. Label of the filters_tab (Tab Break) field in PageType 'CRM View Settings' +#: crm/fcrm/pagetype/crm_view_settings/crm_view_settings.json msgid "Filters" msgstr "Filtres" -#. Label of the first_name (Data) field in DocType 'CRM Deal' -#. Label of the first_name (Data) field in DocType 'CRM Lead' -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_lead/crm_lead.json +#. Label of the first_name (Data) field in PageType 'CRM Deal' +#. Label of the first_name (Data) field in PageType 'CRM Lead' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_lead/crm_lead.json #: frontend/src/components/ColumnSettings.vue:103 #: frontend/src/components/Filter.vue:57 frontend/src/components/Filter.vue:88 #: frontend/src/components/SortBy.vue:6 frontend/src/components/SortBy.vue:103 @@ -2614,30 +2614,30 @@ msgstr "Prénom" msgid "First Name is mandatory" msgstr "" -#. Label of the first_responded_on (Datetime) field in DocType 'CRM Deal' -#. Label of the first_responded_on (Datetime) field in DocType 'CRM Lead' -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_lead/crm_lead.json +#. Label of the first_responded_on (Datetime) field in PageType 'CRM Deal' +#. Label of the first_responded_on (Datetime) field in PageType 'CRM Lead' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_lead/crm_lead.json msgid "First Responded On" msgstr "Première Réponse Le" -#. Option for the 'SLA Status' (Select) field in DocType 'CRM Deal' -#. Option for the 'SLA Status' (Select) field in DocType 'CRM Lead' -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_lead/crm_lead.json +#. Option for the 'SLA Status' (Select) field in PageType 'CRM Deal' +#. Option for the 'SLA Status' (Select) field in PageType 'CRM Lead' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_lead/crm_lead.json msgid "First Response Due" msgstr "" -#. Label of the first_response_time (Duration) field in DocType 'CRM Service +#. Label of the first_response_time (Duration) field in PageType 'CRM Service #. Level Priority' -#: crm/fcrm/doctype/crm_service_level_priority/crm_service_level_priority.json +#: crm/fcrm/pagetype/crm_service_level_priority/crm_service_level_priority.json msgid "First Response TIme" msgstr "" -#. Label of the first_response_time (Duration) field in DocType 'CRM Deal' -#. Label of the first_response_time (Duration) field in DocType 'CRM Lead' -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_lead/crm_lead.json +#. Label of the first_response_time (Duration) field in PageType 'CRM Deal' +#. Label of the first_response_time (Duration) field in PageType 'CRM Lead' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_lead/crm_lead.json msgid "First Response Time" msgstr "Temps de première réponse" @@ -2670,66 +2670,66 @@ msgstr "" msgid "Forecasting enabled successfully" msgstr "" -#. Option for the 'Apply To' (Select) field in DocType 'CRM Form Script' -#: crm/fcrm/doctype/crm_form_script/crm_form_script.json +#. Option for the 'Apply To' (Select) field in PageType 'CRM Form Script' +#: crm/fcrm/pagetype/crm_form_script/crm_form_script.json msgid "Form" msgstr "" -#: crm/fcrm/doctype/erpnext_crm_settings/erpnext_crm_settings.js:19 +#: crm/fcrm/pagetype/erpnext_crm_settings/erpnext_crm_settings.js:19 msgid "Form Script updated successfully" msgstr "" #. Name of a Workspace -#: crm/fcrm/workspace/frappe_crm/frappe_crm.json -msgid "Frappe CRM" +#: crm/fcrm/workspace/jingrow_crm/jingrow_crm.json +msgid "Jingrow CRM" msgstr "" #: frontend/src/components/Layouts/AppSidebar.vue:608 -msgid "Frappe CRM mobile" +msgid "Jingrow CRM mobile" msgstr "" -#. Option for the 'Weekly Off' (Select) field in DocType 'CRM Holiday List' -#. Option for the 'Workday' (Select) field in DocType 'CRM Service Day' -#: crm/fcrm/doctype/crm_holiday_list/crm_holiday_list.json -#: crm/fcrm/doctype/crm_service_day/crm_service_day.json +#. Option for the 'Weekly Off' (Select) field in PageType 'CRM Holiday List' +#. Option for the 'Workday' (Select) field in PageType 'CRM Service Day' +#: crm/fcrm/pagetype/crm_holiday_list/crm_holiday_list.json +#: crm/fcrm/pagetype/crm_service_day/crm_service_day.json msgid "Friday" msgstr "Vendredi" -#. Label of the from (Data) field in DocType 'CRM Call Log' -#. Label of the from (Data) field in DocType 'CRM Status Change Log' -#: crm/fcrm/doctype/crm_call_log/crm_call_log.json -#: crm/fcrm/doctype/crm_status_change_log/crm_status_change_log.json +#. Label of the from (Data) field in PageType 'CRM Call Log' +#. Label of the from (Data) field in PageType 'CRM Status Change Log' +#: crm/fcrm/pagetype/crm_call_log/crm_call_log.json +#: crm/fcrm/pagetype/crm_status_change_log/crm_status_change_log.json msgid "From" msgstr "À partir de" -#. Label of the from_date (Date) field in DocType 'CRM Holiday List' -#. Label of the from_date (Datetime) field in DocType 'CRM Status Change Log' -#: crm/fcrm/doctype/crm_holiday_list/crm_holiday_list.json -#: crm/fcrm/doctype/crm_status_change_log/crm_status_change_log.json +#. Label of the from_date (Date) field in PageType 'CRM Holiday List' +#. Label of the from_date (Datetime) field in PageType 'CRM Status Change Log' +#: crm/fcrm/pagetype/crm_holiday_list/crm_holiday_list.json +#: crm/fcrm/pagetype/crm_status_change_log/crm_status_change_log.json msgid "From Date" msgstr "A partir du" -#. Label of the from_type (Data) field in DocType 'CRM Status Change Log' -#: crm/fcrm/doctype/crm_status_change_log/crm_status_change_log.json +#. Label of the from_type (Data) field in PageType 'CRM Status Change Log' +#: crm/fcrm/pagetype/crm_status_change_log/crm_status_change_log.json msgid "From Type" msgstr "" -#. Label of the from_user (Link) field in DocType 'CRM Notification' -#: crm/fcrm/doctype/crm_notification/crm_notification.json +#. Label of the from_user (Link) field in PageType 'CRM Notification' +#: crm/fcrm/pagetype/crm_notification/crm_notification.json msgid "From User" msgstr "De l'utilisateur" -#. Option for the 'SLA Status' (Select) field in DocType 'CRM Deal' -#. Option for the 'SLA Status' (Select) field in DocType 'CRM Lead' -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_lead/crm_lead.json +#. Option for the 'SLA Status' (Select) field in PageType 'CRM Deal' +#. Option for the 'SLA Status' (Select) field in PageType 'CRM Lead' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_lead/crm_lead.json msgid "Fulfilled" msgstr "Complété" -#. Label of the full_name (Data) field in DocType 'CRM Contacts' -#. Label of the lead_name (Data) field in DocType 'CRM Lead' -#: crm/fcrm/doctype/crm_contacts/crm_contacts.json -#: crm/fcrm/doctype/crm_lead/crm_lead.json +#. Label of the full_name (Data) field in PageType 'CRM Contacts' +#. Label of the lead_name (Data) field in PageType 'CRM Lead' +#: crm/fcrm/pagetype/crm_contacts/crm_contacts.json +#: crm/fcrm/pagetype/crm_lead/crm_lead.json msgid "Full Name" msgstr "Nom Complet" @@ -2742,12 +2742,12 @@ msgstr "" msgid "GMT+5:30" msgstr "" -#. Label of the gender (Link) field in DocType 'CRM Contacts' -#. Label of the gender (Link) field in DocType 'CRM Deal' -#. Label of the gender (Link) field in DocType 'CRM Lead' -#: crm/fcrm/doctype/crm_contacts/crm_contacts.json -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_lead/crm_lead.json +#. Label of the gender (Link) field in PageType 'CRM Contacts' +#. Label of the gender (Link) field in PageType 'CRM Deal' +#. Label of the gender (Link) field in PageType 'CRM Lead' +#: crm/fcrm/pagetype/crm_contacts/crm_contacts.json +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_lead/crm_lead.json msgid "Gender" msgstr "Sexe" @@ -2771,20 +2771,20 @@ msgstr "" msgid "Go to website" msgstr "" -#. Option for the 'Type' (Select) field in DocType 'CRM Fields Layout' -#: crm/fcrm/doctype/crm_fields_layout/crm_fields_layout.json +#. Option for the 'Type' (Select) field in PageType 'CRM Fields Layout' +#: crm/fcrm/pagetype/crm_fields_layout/crm_fields_layout.json msgid "Grid Row" msgstr "" -#. Label of the group_by_tab (Tab Break) field in DocType 'CRM View Settings' -#: crm/fcrm/doctype/crm_view_settings/crm_view_settings.json +#. Label of the group_by_tab (Tab Break) field in PageType 'CRM View Settings' +#: crm/fcrm/pagetype/crm_view_settings/crm_view_settings.json #: frontend/src/components/ViewControls.vue:379 #: frontend/src/components/ViewControls.vue:611 frontend/src/utils/view.js:16 msgid "Group By" msgstr "Grouper par" -#. Label of the group_by_field (Data) field in DocType 'CRM View Settings' -#: crm/fcrm/doctype/crm_view_settings/crm_view_settings.json +#. Label of the group_by_field (Data) field in PageType 'CRM View Settings' +#: crm/fcrm/pagetype/crm_view_settings/crm_view_settings.json msgid "Group By Field" msgstr "" @@ -2808,28 +2808,28 @@ msgstr "Aidez-moi" msgid "Helpdesk" msgstr "" -#. Name of a DocType -#: crm/fcrm/doctype/helpdesk_crm_settings/helpdesk_crm_settings.json +#. Name of a PageType +#: crm/fcrm/pagetype/helpdesk_crm_settings/helpdesk_crm_settings.json msgid "Helpdesk CRM Settings" msgstr "" -#. Label of the helpdesk_site_apis_section (Section Break) field in DocType +#. Label of the helpdesk_site_apis_section (Section Break) field in PageType #. 'Helpdesk CRM Settings' -#: crm/fcrm/doctype/helpdesk_crm_settings/helpdesk_crm_settings.json +#: crm/fcrm/pagetype/helpdesk_crm_settings/helpdesk_crm_settings.json msgid "Helpdesk Site API's" msgstr "" -#. Label of the helpdesk_site_url (Data) field in DocType 'Helpdesk CRM +#. Label of the helpdesk_site_url (Data) field in PageType 'Helpdesk CRM #. Settings' -#: crm/fcrm/doctype/helpdesk_crm_settings/helpdesk_crm_settings.json +#: crm/fcrm/pagetype/helpdesk_crm_settings/helpdesk_crm_settings.json msgid "Helpdesk Site URL" msgstr "" -#: crm/fcrm/doctype/helpdesk_crm_settings/helpdesk_crm_settings.py:18 +#: crm/fcrm/pagetype/helpdesk_crm_settings/helpdesk_crm_settings.py:18 msgid "Helpdesk is not installed in the current site" msgstr "" -#: crm/fcrm/doctype/helpdesk_crm_settings/helpdesk_crm_settings.py:40 +#: crm/fcrm/pagetype/helpdesk_crm_settings/helpdesk_crm_settings.py:40 msgid "Helpdesk is not integrated with the CRM" msgstr "" @@ -2845,8 +2845,8 @@ msgstr "" msgid "Hi John, \\n\\nCan you please provide more details on this..." msgstr "" -#. Label of the hidden (Check) field in DocType 'CRM Dropdown Item' -#: crm/fcrm/doctype/crm_dropdown_item/crm_dropdown_item.json +#. Label of the hidden (Check) field in PageType 'CRM Dropdown Item' +#: crm/fcrm/pagetype/crm_dropdown_item/crm_dropdown_item.json msgid "Hidden" msgstr "Caché" @@ -2877,26 +2877,26 @@ msgstr "" msgid "Hide preview" msgstr "" -#. Option for the 'Priority' (Select) field in DocType 'CRM Task' -#: crm/fcrm/doctype/crm_task/crm_task.json +#. Option for the 'Priority' (Select) field in PageType 'CRM Task' +#: crm/fcrm/pagetype/crm_task/crm_task.json msgid "High" msgstr "Haut" -#. Label of the holiday_list (Link) field in DocType 'CRM Service Level +#. Label of the holiday_list (Link) field in PageType 'CRM Service Level #. Agreement' -#: crm/fcrm/doctype/crm_service_level_agreement/crm_service_level_agreement.json +#: crm/fcrm/pagetype/crm_service_level_agreement/crm_service_level_agreement.json msgid "Holiday List" msgstr "Liste de vacances" -#. Label of the holiday_list_name (Data) field in DocType 'CRM Holiday List' -#: crm/fcrm/doctype/crm_holiday_list/crm_holiday_list.json +#. Label of the holiday_list_name (Data) field in PageType 'CRM Holiday List' +#: crm/fcrm/pagetype/crm_holiday_list/crm_holiday_list.json msgid "Holiday List Name" msgstr "Nom de la Liste de Vacances" -#. Label of the holidays_section (Section Break) field in DocType 'CRM Holiday +#. Label of the holidays_section (Section Break) field in PageType 'CRM Holiday #. List' -#. Label of the holidays (Table) field in DocType 'CRM Holiday List' -#: crm/fcrm/doctype/crm_holiday_list/crm_holiday_list.json +#. Label of the holidays (Table) field in PageType 'CRM Holiday List' +#: crm/fcrm/pagetype/crm_holiday_list/crm_holiday_list.json msgid "Holidays" msgstr "Jours Fériés" @@ -2914,15 +2914,15 @@ msgstr "" msgid "I understand, add conditions" msgstr "" -#. Label of the id (Data) field in DocType 'CRM Call Log' -#: crm/fcrm/doctype/crm_call_log/crm_call_log.json +#. Label of the id (Data) field in PageType 'CRM Call Log' +#: crm/fcrm/pagetype/crm_call_log/crm_call_log.json msgid "ID" msgstr "" -#. Label of the icon (Code) field in DocType 'CRM Dropdown Item' -#. Label of the icon (Data) field in DocType 'CRM View Settings' -#: crm/fcrm/doctype/crm_dropdown_item/crm_dropdown_item.json -#: crm/fcrm/doctype/crm_view_settings/crm_view_settings.json +#. Label of the icon (Code) field in PageType 'CRM Dropdown Item' +#. Label of the icon (Data) field in PageType 'CRM View Settings' +#: crm/fcrm/pagetype/crm_dropdown_item/crm_dropdown_item.json +#: crm/fcrm/pagetype/crm_view_settings/crm_view_settings.json msgid "Icon" msgstr "Icône" @@ -2942,10 +2942,10 @@ msgstr "" msgid "If enabled, records can be created from the incoming emails on this account." msgstr "" -#. Label of the image (Attach Image) field in DocType 'CRM Lead' -#. Label of the image (Attach Image) field in DocType 'CRM Product' -#: crm/fcrm/doctype/crm_lead/crm_lead.json -#: crm/fcrm/doctype/crm_product/crm_product.json +#. Label of the image (Attach Image) field in PageType 'CRM Lead' +#. Label of the image (Attach Image) field in PageType 'CRM Product' +#: crm/fcrm/pagetype/crm_lead/crm_lead.json +#: crm/fcrm/pagetype/crm_product/crm_product.json msgid "Image" msgstr "Image" @@ -2957,10 +2957,10 @@ msgstr "Image" msgid "In" msgstr "Dans" -#. Option for the 'Status' (Select) field in DocType 'CRM Call Log' -#. Option for the 'Status' (Select) field in DocType 'CRM Task' -#: crm/fcrm/doctype/crm_call_log/crm_call_log.json -#: crm/fcrm/doctype/crm_task/crm_task.json +#. Option for the 'Status' (Select) field in PageType 'CRM Call Log' +#. Option for the 'Status' (Select) field in PageType 'CRM Task' +#: crm/fcrm/pagetype/crm_call_log/crm_call_log.json +#: crm/fcrm/pagetype/crm_task/crm_task.json msgid "In Progress" msgstr "En cours" @@ -2976,8 +2976,8 @@ msgstr "" msgid "Inbox" msgstr "Boîte de réception" -#. Option for the 'Type' (Select) field in DocType 'CRM Call Log' -#: crm/fcrm/doctype/crm_call_log/crm_call_log.json +#. Option for the 'Type' (Select) field in PageType 'CRM Call Log' +#: crm/fcrm/pagetype/crm_call_log/crm_call_log.json msgid "Incoming" msgstr "Entrant" @@ -2985,24 +2985,24 @@ msgstr "Entrant" msgid "Incoming call..." msgstr "" -#. Label of a shortcut in the Frappe CRM Workspace -#: crm/fcrm/workspace/frappe_crm/frappe_crm.json +#. Label of a shortcut in the Jingrow CRM Workspace +#: crm/fcrm/workspace/jingrow_crm/jingrow_crm.json msgid "Industries" msgstr "" -#. Label of the industry (Link) field in DocType 'CRM Deal' -#. Label of the industry (Data) field in DocType 'CRM Industry' -#. Label of the industry (Link) field in DocType 'CRM Lead' -#. Label of the industry (Link) field in DocType 'CRM Organization' -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_industry/crm_industry.json -#: crm/fcrm/doctype/crm_lead/crm_lead.json -#: crm/fcrm/doctype/crm_organization/crm_organization.json +#. Label of the industry (Link) field in PageType 'CRM Deal' +#. Label of the industry (Data) field in PageType 'CRM Industry' +#. Label of the industry (Link) field in PageType 'CRM Lead' +#. Label of the industry (Link) field in PageType 'CRM Organization' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_industry/crm_industry.json +#: crm/fcrm/pagetype/crm_lead/crm_lead.json +#: crm/fcrm/pagetype/crm_organization/crm_organization.json msgid "Industry" msgstr "Industrie" -#. Option for the 'Status' (Select) field in DocType 'CRM Call Log' -#: crm/fcrm/doctype/crm_call_log/crm_call_log.json +#. Option for the 'Status' (Select) field in PageType 'CRM Call Log' +#: crm/fcrm/pagetype/crm_call_log/crm_call_log.json msgid "Initiated" msgstr "Initié" @@ -3037,7 +3037,7 @@ msgstr "Intégrations" msgid "Introduction" msgstr "" -#: crm/fcrm/doctype/crm_twilio_settings/crm_twilio_settings.py:33 +#: crm/fcrm/pagetype/crm_twilio_settings/crm_twilio_settings.py:33 msgid "Invalid Account SID or Auth Token." msgstr "" @@ -3054,7 +3054,7 @@ msgstr "" msgid "Invalid chart name" msgstr "" -#: crm/fcrm/doctype/crm_exotel_settings/crm_exotel_settings.py:25 +#: crm/fcrm/pagetype/crm_exotel_settings/crm_exotel_settings.py:25 msgid "Invalid credentials" msgstr "" @@ -3103,8 +3103,8 @@ msgstr "" msgid "Invite your team" msgstr "" -#. Label of the invited_by (Link) field in DocType 'CRM Invitation' -#: crm/fcrm/doctype/crm_invitation/crm_invitation.json +#. Label of the invited_by (Link) field in PageType 'CRM Invitation' +#: crm/fcrm/pagetype/crm_invitation/crm_invitation.json msgid "Invited By" msgstr "" @@ -3118,59 +3118,59 @@ msgstr "" msgid "Is" msgstr "Est" -#. Label of the is_default (Check) field in DocType 'CRM View Settings' -#: crm/fcrm/doctype/crm_view_settings/crm_view_settings.json +#. Label of the is_default (Check) field in PageType 'CRM View Settings' +#: crm/fcrm/pagetype/crm_view_settings/crm_view_settings.json msgid "Is Default" msgstr "Est Défaut" -#. Label of the is_erpnext_in_different_site (Check) field in DocType 'ERPNext +#. Label of the is_erpnext_in_different_site (Check) field in PageType 'ERPNext #. CRM Settings' -#: crm/fcrm/doctype/erpnext_crm_settings/erpnext_crm_settings.json +#: crm/fcrm/pagetype/erpnext_crm_settings/erpnext_crm_settings.json msgid "Is ERPNext installed on a different site?" msgstr "" -#. Label of the is_group (Check) field in DocType 'CRM Territory' -#: crm/fcrm/doctype/crm_territory/crm_territory.json +#. Label of the is_group (Check) field in PageType 'CRM Territory' +#: crm/fcrm/pagetype/crm_territory/crm_territory.json msgid "Is Group" msgstr "Est un Groupe" -#. Label of the is_helpdesk_in_different_site (Check) field in DocType +#. Label of the is_helpdesk_in_different_site (Check) field in PageType #. 'Helpdesk CRM Settings' -#: crm/fcrm/doctype/helpdesk_crm_settings/helpdesk_crm_settings.json +#: crm/fcrm/pagetype/helpdesk_crm_settings/helpdesk_crm_settings.json msgid "Is Helpdesk installed on a different site?" msgstr "" -#. Label of the is_primary (Check) field in DocType 'CRM Contacts' -#. Label of the is_primary (Check) field in DocType 'CRM Telephony Phone' -#: crm/fcrm/doctype/crm_contacts/crm_contacts.json -#: crm/fcrm/doctype/crm_telephony_phone/crm_telephony_phone.json +#. Label of the is_primary (Check) field in PageType 'CRM Contacts' +#. Label of the is_primary (Check) field in PageType 'CRM Telephony Phone' +#: crm/fcrm/pagetype/crm_contacts/crm_contacts.json +#: crm/fcrm/pagetype/crm_telephony_phone/crm_telephony_phone.json msgid "Is Primary" msgstr "Est primaire" -#. Label of the is_standard (Check) field in DocType 'CRM Dropdown Item' -#. Label of the is_standard (Check) field in DocType 'CRM Form Script' -#. Label of the is_standard (Check) field in DocType 'CRM View Settings' -#: crm/fcrm/doctype/crm_dropdown_item/crm_dropdown_item.json -#: crm/fcrm/doctype/crm_form_script/crm_form_script.json -#: crm/fcrm/doctype/crm_view_settings/crm_view_settings.json +#. Label of the is_standard (Check) field in PageType 'CRM Dropdown Item' +#. Label of the is_standard (Check) field in PageType 'CRM Form Script' +#. Label of the is_standard (Check) field in PageType 'CRM View Settings' +#: crm/fcrm/pagetype/crm_dropdown_item/crm_dropdown_item.json +#: crm/fcrm/pagetype/crm_form_script/crm_form_script.json +#: crm/fcrm/pagetype/crm_view_settings/crm_view_settings.json msgid "Is Standard" msgstr "Est Standard" -#. Description of the 'Enable Forecasting' (Check) field in DocType 'FCRM +#. Description of the 'Enable Forecasting' (Check) field in PageType 'FCRM #. Settings' -#: crm/fcrm/doctype/fcrm_settings/fcrm_settings.json +#: crm/fcrm/pagetype/fcrm_settings/fcrm_settings.json msgid "It will make deal's \"Expected Closure Date\" & \"Expected Deal Value\" mandatory to get accurate forecasting insights" msgstr "" -#. Label of the json (JSON) field in DocType 'CRM Global Settings' -#: crm/fcrm/doctype/crm_global_settings/crm_global_settings.json +#. Label of the json (JSON) field in PageType 'CRM Global Settings' +#: crm/fcrm/pagetype/crm_global_settings/crm_global_settings.json msgid "JSON" msgstr "" -#. Label of the job_title (Data) field in DocType 'CRM Deal' -#. Label of the job_title (Data) field in DocType 'CRM Lead' -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_lead/crm_lead.json +#. Label of the job_title (Data) field in PageType 'CRM Deal' +#. Label of the job_title (Data) field in PageType 'CRM Lead' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_lead/crm_lead.json msgid "Job Title" msgstr "Titre de l'Emploi" @@ -3182,20 +3182,20 @@ msgstr "Titre de l'Emploi" msgid "John Doe" msgstr "" -#. Label of the kanban_tab (Tab Break) field in DocType 'CRM View Settings' -#: crm/fcrm/doctype/crm_view_settings/crm_view_settings.json +#. Label of the kanban_tab (Tab Break) field in PageType 'CRM View Settings' +#: crm/fcrm/pagetype/crm_view_settings/crm_view_settings.json #: frontend/src/components/ViewControls.vue:384 #: frontend/src/components/ViewControls.vue:600 frontend/src/utils/view.js:20 msgid "Kanban" msgstr "Kanban" -#. Label of the kanban_columns (Code) field in DocType 'CRM View Settings' -#: crm/fcrm/doctype/crm_view_settings/crm_view_settings.json +#. Label of the kanban_columns (Code) field in PageType 'CRM View Settings' +#: crm/fcrm/pagetype/crm_view_settings/crm_view_settings.json msgid "Kanban Columns" msgstr "" -#. Label of the kanban_fields (Code) field in DocType 'CRM View Settings' -#: crm/fcrm/doctype/crm_view_settings/crm_view_settings.json +#. Label of the kanban_fields (Code) field in PageType 'CRM View Settings' +#: crm/fcrm/pagetype/crm_view_settings/crm_view_settings.json msgid "Kanban Fields" msgstr "" @@ -3204,15 +3204,15 @@ msgstr "" msgid "Kanban Settings" msgstr "" -#. Label of the key (Data) field in DocType 'CRM Invitation' -#: crm/fcrm/doctype/crm_invitation/crm_invitation.json +#. Label of the key (Data) field in PageType 'CRM Invitation' +#: crm/fcrm/pagetype/crm_invitation/crm_invitation.json msgid "Key" msgstr "Clé" -#. Label of the label (Data) field in DocType 'CRM Dropdown Item' -#. Label of the label (Data) field in DocType 'CRM View Settings' -#: crm/fcrm/doctype/crm_dropdown_item/crm_dropdown_item.json -#: crm/fcrm/doctype/crm_view_settings/crm_view_settings.json +#. Label of the label (Data) field in PageType 'CRM Dropdown Item' +#. Label of the label (Data) field in PageType 'CRM View Settings' +#: crm/fcrm/pagetype/crm_dropdown_item/crm_dropdown_item.json +#: crm/fcrm/pagetype/crm_view_settings/crm_view_settings.json #: frontend/src/components/ColumnSettings.vue:100 msgid "Label" msgstr "Étiquette" @@ -3229,10 +3229,10 @@ msgstr "" msgid "Last Month" msgstr "Le mois dernier" -#. Label of the last_name (Data) field in DocType 'CRM Deal' -#. Label of the last_name (Data) field in DocType 'CRM Lead' -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_lead/crm_lead.json +#. Label of the last_name (Data) field in PageType 'CRM Deal' +#. Label of the last_name (Data) field in PageType 'CRM Lead' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_lead/crm_lead.json msgid "Last Name" msgstr "Nom de Famille" @@ -3240,9 +3240,9 @@ msgstr "Nom de Famille" msgid "Last Quarter" msgstr "Le dernier quart" -#. Label of the last_status_change_log (Link) field in DocType 'CRM Status +#. Label of the last_status_change_log (Link) field in PageType 'CRM Status #. Change Log' -#: crm/fcrm/doctype/crm_status_change_log/crm_status_change_log.json +#: crm/fcrm/pagetype/crm_status_change_log/crm_status_change_log.json msgid "Last Status Change Log" msgstr "" @@ -3270,15 +3270,15 @@ msgstr "" msgid "Last user assigned by this rule" msgstr "" -#. Label of the layout (Code) field in DocType 'CRM Dashboard' -#. Label of the layout (Code) field in DocType 'CRM Fields Layout' -#: crm/fcrm/doctype/crm_dashboard/crm_dashboard.json -#: crm/fcrm/doctype/crm_fields_layout/crm_fields_layout.json +#. Label of the layout (Code) field in PageType 'CRM Dashboard' +#. Label of the layout (Code) field in PageType 'CRM Fields Layout' +#: crm/fcrm/pagetype/crm_dashboard/crm_dashboard.json +#: crm/fcrm/pagetype/crm_fields_layout/crm_fields_layout.json msgid "Layout" msgstr "" -#. Label of the lead (Link) field in DocType 'CRM Deal' -#: crm/fcrm/doctype/crm_deal/crm_deal.json +#. Label of the lead (Link) field in PageType 'CRM Deal' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json #: frontend/src/components/Calendar/CalendarEventPanel.vue:263 #: frontend/src/components/Calendar/CalendarEventPanel.vue:288 #: frontend/src/components/Layouts/AppSidebar.vue:550 @@ -3291,32 +3291,32 @@ msgstr "" msgid "Lead" msgstr "Lead" -#. Label of the lead_details_tab (Tab Break) field in DocType 'CRM Deal' -#: crm/fcrm/doctype/crm_deal/crm_deal.json +#. Label of the lead_details_tab (Tab Break) field in PageType 'CRM Deal' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json msgid "Lead Details" msgstr "Détails du Lead" -#. Label of the lead_name (Data) field in DocType 'CRM Deal' -#: crm/fcrm/doctype/crm_deal/crm_deal.json +#. Label of the lead_name (Data) field in PageType 'CRM Deal' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json msgid "Lead Name" msgstr "Nom du Lead" -#. Label of the lead_owner (Link) field in DocType 'CRM Lead' -#: crm/fcrm/doctype/crm_lead/crm_lead.json +#. Label of the lead_owner (Link) field in PageType 'CRM Lead' +#: crm/fcrm/pagetype/crm_lead/crm_lead.json msgid "Lead Owner" msgstr "Responsable du Prospect" -#: crm/fcrm/doctype/crm_lead/crm_lead.py:73 +#: crm/fcrm/pagetype/crm_lead/crm_lead.py:73 msgid "Lead Owner cannot be same as the Lead Email Address" msgstr "" -#. Label of a shortcut in the Frappe CRM Workspace -#: crm/fcrm/workspace/frappe_crm/frappe_crm.json +#. Label of a shortcut in the Jingrow CRM Workspace +#: crm/fcrm/workspace/jingrow_crm/jingrow_crm.json msgid "Lead Sources" msgstr "" -#. Label of a shortcut in the Frappe CRM Workspace -#: crm/fcrm/workspace/frappe_crm/frappe_crm.json +#. Label of a shortcut in the Jingrow CRM Workspace +#: crm/fcrm/workspace/jingrow_crm/jingrow_crm.json msgid "Lead Statuses" msgstr "" @@ -3328,8 +3328,8 @@ msgstr "" msgid "Lead to deal conversion pipeline" msgstr "" -#. Label of a shortcut in the Frappe CRM Workspace -#: crm/fcrm/workspace/frappe_crm/frappe_crm.json +#. Label of a shortcut in the Jingrow CRM Workspace +#: crm/fcrm/workspace/jingrow_crm/jingrow_crm.json #: frontend/src/pages/InvalidPage.vue:9 frontend/src/pages/Lead.vue:340 #: frontend/src/pages/MobileLead.vue:291 msgid "Leads" @@ -3345,8 +3345,8 @@ msgstr "" msgid "Learn about conditions" msgstr "" -#. Label of the lft (Int) field in DocType 'CRM Territory' -#: crm/fcrm/doctype/crm_territory/crm_territory.json +#. Label of the lft (Int) field in PageType 'CRM Territory' +#: crm/fcrm/pagetype/crm_territory/crm_territory.json msgid "Left" msgstr "Parti" @@ -3367,15 +3367,15 @@ msgstr "Comme" msgid "Link" msgstr "Lien" -#. Label of the links (Table) field in DocType 'CRM Call Log' -#: crm/fcrm/doctype/crm_call_log/crm_call_log.json +#. Label of the links (Table) field in PageType 'CRM Call Log' +#: crm/fcrm/pagetype/crm_call_log/crm_call_log.json msgid "Links" msgstr "Liens" -#. Option for the 'Apply To' (Select) field in DocType 'CRM Form Script' -#. Label of the list_tab (Tab Break) field in DocType 'CRM View Settings' -#: crm/fcrm/doctype/crm_form_script/crm_form_script.json -#: crm/fcrm/doctype/crm_view_settings/crm_view_settings.json +#. Option for the 'Apply To' (Select) field in PageType 'CRM Form Script' +#. Label of the list_tab (Tab Break) field in PageType 'CRM View Settings' +#: crm/fcrm/pagetype/crm_form_script/crm_form_script.json +#: crm/fcrm/pagetype/crm_view_settings/crm_view_settings.json #: frontend/src/components/ViewControls.vue:374 #: frontend/src/components/ViewControls.vue:589 frontend/src/utils/view.js:12 msgid "List" @@ -3385,9 +3385,9 @@ msgstr "Liste" msgid "Listen" msgstr "" -#. Label of the load_default_columns (Check) field in DocType 'CRM View +#. Label of the load_default_columns (Check) field in PageType 'CRM View #. Settings' -#: crm/fcrm/doctype/crm_view_settings/crm_view_settings.json +#: crm/fcrm/pagetype/crm_view_settings/crm_view_settings.json msgid "Load Default Columns" msgstr "" @@ -3403,10 +3403,10 @@ msgstr "Charger plus" msgid "Loading..." msgstr "Chargement en Cours ..." -#. Label of the log_tab (Tab Break) field in DocType 'CRM Deal' -#. Label of the log_tab (Tab Break) field in DocType 'CRM Lead' -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_lead/crm_lead.json +#. Label of the log_tab (Tab Break) field in PageType 'CRM Deal' +#. Label of the log_tab (Tab Break) field in PageType 'CRM Lead' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_lead/crm_lead.json msgid "Log" msgstr "Journal" @@ -3417,28 +3417,28 @@ msgid "Log a Call" msgstr "" #: frontend/src/composables/frappecloud.js:23 -msgid "Login to Frappe Cloud?" -msgstr "Se connecter à Frappe Cloud ?" +msgid "Login to Jingrow Cloud?" +msgstr "Se connecter à Jingrow Cloud ?" -#. Label of the brand_logo (Attach) field in DocType 'FCRM Settings' -#: crm/fcrm/doctype/fcrm_settings/fcrm_settings.json +#. Label of the brand_logo (Attach) field in PageType 'FCRM Settings' +#: crm/fcrm/pagetype/fcrm_settings/fcrm_settings.json msgid "Logo" msgstr "" -#. Option for the 'Type' (Select) field in DocType 'CRM Deal Status' -#: crm/fcrm/doctype/crm_deal_status/crm_deal_status.json +#. Option for the 'Type' (Select) field in PageType 'CRM Deal Status' +#: crm/fcrm/pagetype/crm_deal_status/crm_deal_status.json msgid "Lost" msgstr "Perdu" -#. Label of the lost_notes (Text) field in DocType 'CRM Deal' -#: crm/fcrm/doctype/crm_deal/crm_deal.json +#. Label of the lost_notes (Text) field in PageType 'CRM Deal' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json msgid "Lost Notes" msgstr "" -#. Label of the lost_reason (Link) field in DocType 'CRM Deal' -#. Label of the lost_reason (Data) field in DocType 'CRM Lost Reason' -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_lost_reason/crm_lost_reason.json +#. Label of the lost_reason (Link) field in PageType 'CRM Deal' +#. Label of the lost_reason (Data) field in PageType 'CRM Lost Reason' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_lost_reason/crm_lost_reason.json msgid "Lost Reason" msgstr "Raison de la Perte" @@ -3464,8 +3464,8 @@ msgstr "" msgid "Lost reason is required" msgstr "" -#. Option for the 'Priority' (Select) field in DocType 'CRM Task' -#: crm/fcrm/doctype/crm_task/crm_task.json +#. Option for the 'Priority' (Select) field in PageType 'CRM Task' +#: crm/fcrm/pagetype/crm_task/crm_task.json msgid "Low" msgstr "Bas" @@ -3542,8 +3542,8 @@ msgstr "" msgid "Mandatory field error: {0}" msgstr "" -#. Option for the 'Telephony Medium' (Select) field in DocType 'CRM Call Log' -#: crm/fcrm/doctype/crm_call_log/crm_call_log.json +#. Option for the 'Telephony Medium' (Select) field in PageType 'CRM Call Log' +#: crm/fcrm/pagetype/crm_call_log/crm_call_log.json msgid "Manual" msgstr "Manuel" @@ -3562,25 +3562,25 @@ msgstr "Données de Base" msgid "May 1, 2025" msgstr "" -#. Label of the medium (Data) field in DocType 'CRM Call Log' -#. Option for the 'Priority' (Select) field in DocType 'CRM Task' -#: crm/fcrm/doctype/crm_call_log/crm_call_log.json -#: crm/fcrm/doctype/crm_task/crm_task.json +#. Label of the medium (Data) field in PageType 'CRM Call Log' +#. Option for the 'Priority' (Select) field in PageType 'CRM Task' +#: crm/fcrm/pagetype/crm_call_log/crm_call_log.json +#: crm/fcrm/pagetype/crm_task/crm_task.json msgid "Medium" msgstr "Moyen" -#. Option for the 'Type' (Select) field in DocType 'CRM Notification' -#: crm/fcrm/doctype/crm_notification/crm_notification.json +#. Option for the 'Type' (Select) field in PageType 'CRM Notification' +#: crm/fcrm/pagetype/crm_notification/crm_notification.json msgid "Mention" msgstr "" -#. Label of the message (HTML Editor) field in DocType 'CRM Notification' -#: crm/fcrm/doctype/crm_notification/crm_notification.json +#. Label of the message (HTML Editor) field in PageType 'CRM Notification' +#: crm/fcrm/pagetype/crm_notification/crm_notification.json msgid "Message" msgstr "Message" -#. Label of the middle_name (Data) field in DocType 'CRM Lead' -#: crm/fcrm/doctype/crm_lead/crm_lead.json +#. Label of the middle_name (Data) field in PageType 'CRM Lead' +#: crm/fcrm/pagetype/crm_lead/crm_lead.json msgid "Middle Name" msgstr "Deuxième Nom" @@ -3588,10 +3588,10 @@ msgstr "Deuxième Nom" msgid "Minimize" msgstr "" -#. Label of the mobile_no (Data) field in DocType 'CRM Contacts' -#. Label of the mobile_no (Data) field in DocType 'CRM Lead' -#: crm/fcrm/doctype/crm_contacts/crm_contacts.json -#: crm/fcrm/doctype/crm_lead/crm_lead.json +#. Label of the mobile_no (Data) field in PageType 'CRM Contacts' +#. Label of the mobile_no (Data) field in PageType 'CRM Lead' +#: crm/fcrm/pagetype/crm_contacts/crm_contacts.json +#: crm/fcrm/pagetype/crm_lead/crm_lead.json msgid "Mobile No" msgstr "N° Mobile" @@ -3600,8 +3600,8 @@ msgstr "N° Mobile" msgid "Mobile No should be a number" msgstr "" -#. Label of the mobile_no (Data) field in DocType 'CRM Telephony Agent' -#: crm/fcrm/doctype/crm_telephony_agent/crm_telephony_agent.json +#. Label of the mobile_no (Data) field in PageType 'CRM Telephony Agent' +#: crm/fcrm/pagetype/crm_telephony_agent/crm_telephony_agent.json msgid "Mobile No." msgstr "N° Mobile." @@ -3623,10 +3623,10 @@ msgstr "" msgid "Mobile no" msgstr "" -#. Option for the 'Weekly Off' (Select) field in DocType 'CRM Holiday List' -#. Option for the 'Workday' (Select) field in DocType 'CRM Service Day' -#: crm/fcrm/doctype/crm_holiday_list/crm_holiday_list.json -#: crm/fcrm/doctype/crm_service_day/crm_service_day.json +#. Option for the 'Weekly Off' (Select) field in PageType 'CRM Holiday List' +#. Option for the 'Workday' (Select) field in PageType 'CRM Service Day' +#: crm/fcrm/pagetype/crm_holiday_list/crm_holiday_list.json +#: crm/fcrm/pagetype/crm_service_day/crm_service_day.json msgid "Monday" msgstr "Lundi" @@ -3658,12 +3658,12 @@ msgstr "" msgid "My Open Deals" msgstr "" -#. Label of the title (Data) field in DocType 'CRM Dashboard' -#. Label of the name1 (Data) field in DocType 'CRM Dropdown Item' -#. Label of the brand_name (Data) field in DocType 'FCRM Settings' -#: crm/fcrm/doctype/crm_dashboard/crm_dashboard.json -#: crm/fcrm/doctype/crm_dropdown_item/crm_dropdown_item.json -#: crm/fcrm/doctype/fcrm_settings/fcrm_settings.json +#. Label of the title (Data) field in PageType 'CRM Dashboard' +#. Label of the name1 (Data) field in PageType 'CRM Dropdown Item' +#. Label of the brand_name (Data) field in PageType 'FCRM Settings' +#: crm/fcrm/pagetype/crm_dashboard/crm_dashboard.json +#: crm/fcrm/pagetype/crm_dropdown_item/crm_dropdown_item.json +#: crm/fcrm/pagetype/fcrm_settings/fcrm_settings.json #: frontend/src/components/Settings/AssignmentRules/AssignmentRuleView.vue:51 #: frontend/src/components/Settings/AssignmentRules/AssignmentRuleView.vue:52 #: frontend/src/components/Settings/EmailTemplate/EditEmailTemplate.vue:39 @@ -3680,10 +3680,10 @@ msgstr "Nom" msgid "Name is required" msgstr "" -#. Label of the naming_series (Select) field in DocType 'CRM Deal' -#. Label of the naming_series (Select) field in DocType 'CRM Product' -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_product/crm_product.json +#. Label of the naming_series (Select) field in PageType 'CRM Deal' +#. Label of the naming_series (Select) field in PageType 'CRM Product' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_product/crm_product.json msgid "Naming Series" msgstr "Masque de numérotation" @@ -3691,15 +3691,15 @@ msgstr "Masque de numérotation" msgid "Nested conditions" msgstr "" -#. Label of the net_amount (Currency) field in DocType 'CRM Products' -#: crm/fcrm/doctype/crm_products/crm_products.json +#. Label of the net_amount (Currency) field in PageType 'CRM Products' +#: crm/fcrm/pagetype/crm_products/crm_products.json msgid "Net Amount" msgstr "Montant Net" -#. Label of the net_total (Currency) field in DocType 'CRM Deal' -#. Label of the net_total (Currency) field in DocType 'CRM Lead' -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_lead/crm_lead.json +#. Label of the net_total (Currency) field in PageType 'CRM Deal' +#. Label of the net_total (Currency) field in PageType 'CRM Lead' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_lead/crm_lead.json msgid "Net Total" msgstr "Total net" @@ -3814,8 +3814,8 @@ msgstr "" msgid "Next Quarter" msgstr "" -#. Label of the next_step (Data) field in DocType 'CRM Deal' -#: crm/fcrm/doctype/crm_deal/crm_deal.json +#. Label of the next_step (Data) field in PageType 'CRM Deal' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json msgid "Next Step" msgstr "" @@ -3831,8 +3831,8 @@ msgstr "" msgid "No" msgstr "Non" -#. Option for the 'Status' (Select) field in DocType 'CRM Call Log' -#: crm/fcrm/doctype/crm_call_log/crm_call_log.json +#. Option for the 'Status' (Select) field in PageType 'CRM Call Log' +#: crm/fcrm/pagetype/crm_call_log/crm_call_log.json msgid "No Answer" msgstr "" @@ -3930,12 +3930,12 @@ msgstr "" msgid "No {0} Found" msgstr "" -#. Label of the no_of_employees (Select) field in DocType 'CRM Deal' -#. Label of the no_of_employees (Select) field in DocType 'CRM Lead' -#. Label of the no_of_employees (Select) field in DocType 'CRM Organization' -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_lead/crm_lead.json -#: crm/fcrm/doctype/crm_organization/crm_organization.json +#. Label of the no_of_employees (Select) field in PageType 'CRM Deal' +#. Label of the no_of_employees (Select) field in PageType 'CRM Lead' +#. Label of the no_of_employees (Select) field in PageType 'CRM Organization' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_lead/crm_lead.json +#: crm/fcrm/pagetype/crm_organization/crm_organization.json msgid "No. of Employees" msgstr "Nb de salarié(e)s" @@ -3981,24 +3981,24 @@ msgstr "Pas Comme" msgid "Not Saved" msgstr "Non Sauvegardé" -#: crm/fcrm/doctype/crm_deal/crm_deal.py:272 +#: crm/fcrm/pagetype/crm_deal/crm_deal.py:272 msgid "Not allowed to add contact to Deal" msgstr "" -#: crm/fcrm/doctype/crm_lead/crm_lead.py:408 +#: crm/fcrm/pagetype/crm_lead/crm_lead.py:408 msgid "Not allowed to convert Lead to Deal" msgstr "" -#: crm/fcrm/doctype/crm_deal/crm_deal.py:283 +#: crm/fcrm/pagetype/crm_deal/crm_deal.py:283 msgid "Not allowed to remove contact from Deal" msgstr "" -#: crm/fcrm/doctype/crm_deal/crm_deal.py:294 +#: crm/fcrm/pagetype/crm_deal/crm_deal.py:294 msgid "Not allowed to set primary contact for Deal" msgstr "" -#. Label of the note (Link) field in DocType 'CRM Call Log' -#: crm/fcrm/doctype/crm_call_log/crm_call_log.json +#. Label of the note (Link) field in PageType 'CRM Call Log' +#: crm/fcrm/pagetype/crm_call_log/crm_call_log.json #: frontend/src/components/Layouts/AppSidebar.vue:554 msgid "Note" msgstr "Note" @@ -4017,21 +4017,21 @@ msgstr "" msgid "Notification" msgstr "" -#. Label of the notification_text (Text) field in DocType 'CRM Notification' -#: crm/fcrm/doctype/crm_notification/crm_notification.json +#. Label of the notification_text (Text) field in PageType 'CRM Notification' +#: crm/fcrm/pagetype/crm_notification/crm_notification.json msgid "Notification Text" msgstr "" -#. Label of the notification_type_doc (Dynamic Link) field in DocType 'CRM +#. Label of the notification_type_pg (Dynamic Link) field in PageType 'CRM #. Notification' -#: crm/fcrm/doctype/crm_notification/crm_notification.json -msgid "Notification Type Doc" +#: crm/fcrm/pagetype/crm_notification/crm_notification.json +msgid "Notification Type Pg" msgstr "" -#. Label of the notification_type_doctype (Link) field in DocType 'CRM +#. Label of the notification_type_pagetype (Link) field in PageType 'CRM #. Notification' -#: crm/fcrm/doctype/crm_notification/crm_notification.json -msgid "Notification Type Doctype" +#: crm/fcrm/pagetype/crm_notification/crm_notification.json +msgid "Notification Type Pagetype" msgstr "" #: frontend/src/components/Layouts/AppSidebar.vue:13 @@ -4041,8 +4041,8 @@ msgstr "" msgid "Notifications" msgstr "" -#. Label of the number (Data) field in DocType 'CRM Telephony Phone' -#: crm/fcrm/doctype/crm_telephony_phone/crm_telephony_phone.json +#. Label of the number (Data) field in PageType 'CRM Telephony Phone' +#: crm/fcrm/pagetype/crm_telephony_phone/crm_telephony_phone.json msgid "Number" msgstr "Nombre" @@ -4064,18 +4064,18 @@ msgstr "" msgid "Old Condition" msgstr "" -#. Label of the old_parent (Link) field in DocType 'CRM Territory' -#: crm/fcrm/doctype/crm_territory/crm_territory.json +#. Label of the old_parent (Link) field in PageType 'CRM Territory' +#: crm/fcrm/pagetype/crm_territory/crm_territory.json msgid "Old Parent" msgstr "Grand Parent" -#. Option for the 'Type' (Select) field in DocType 'CRM Deal Status' -#: crm/fcrm/doctype/crm_deal_status/crm_deal_status.json +#. Option for the 'Type' (Select) field in PageType 'CRM Deal Status' +#: crm/fcrm/pagetype/crm_deal_status/crm_deal_status.json msgid "On Hold" msgstr "En attente" -#. Option for the 'Type' (Select) field in DocType 'CRM Deal Status' -#: crm/fcrm/doctype/crm_deal_status/crm_deal_status.json +#. Option for the 'Type' (Select) field in PageType 'CRM Deal Status' +#: crm/fcrm/pagetype/crm_deal_status/crm_deal_status.json msgid "Ongoing" msgstr "" @@ -4088,13 +4088,13 @@ msgstr "" msgid "Only image files are allowed" msgstr "" -#: crm/fcrm/doctype/crm_deal/crm_deal.py:60 -#: crm/fcrm/doctype/crm_telephony_agent/crm_telephony_agent.py:23 +#: crm/fcrm/pagetype/crm_deal/crm_deal.py:60 +#: crm/fcrm/pagetype/crm_telephony_agent/crm_telephony_agent.py:23 msgid "Only one {0} can be set as primary." msgstr "Un seul {0} peut être défini comme primaire." -#. Option for the 'Type' (Select) field in DocType 'CRM Deal Status' -#: crm/fcrm/doctype/crm_deal_status/crm_deal_status.json +#. Option for the 'Type' (Select) field in PageType 'CRM Deal Status' +#: crm/fcrm/pagetype/crm_deal_status/crm_deal_status.json msgid "Open" msgstr "Ouvert" @@ -4108,13 +4108,13 @@ msgstr "" msgid "Open Lead" msgstr "" -#: crm/fcrm/doctype/crm_deal/crm_deal.js:6 -#: crm/fcrm/doctype/crm_lead/crm_lead.js:6 +#: crm/fcrm/pagetype/crm_deal/crm_deal.js:6 +#: crm/fcrm/pagetype/crm_lead/crm_lead.js:6 msgid "Open in Portal" msgstr "" -#. Label of the open_in_new_window (Check) field in DocType 'CRM Dropdown Item' -#: crm/fcrm/doctype/crm_dropdown_item/crm_dropdown_item.json +#. Label of the open_in_new_window (Check) field in PageType 'CRM Dropdown Item' +#: crm/fcrm/pagetype/crm_dropdown_item/crm_dropdown_item.json msgid "Open in new window" msgstr "" @@ -4136,17 +4136,17 @@ msgstr "" msgid "Or create leads manually" msgstr "" -#. Label of the order_by_tab (Tab Break) field in DocType 'CRM View Settings' -#. Label of the order_by (Code) field in DocType 'CRM View Settings' -#: crm/fcrm/doctype/crm_view_settings/crm_view_settings.json +#. Label of the order_by_tab (Tab Break) field in PageType 'CRM View Settings' +#. Label of the order_by (Code) field in PageType 'CRM View Settings' +#: crm/fcrm/pagetype/crm_view_settings/crm_view_settings.json msgid "Order By" msgstr "Commandé par" -#. Label of the organization (Link) field in DocType 'CRM Deal' -#. Label of the organization_tab (Tab Break) field in DocType 'CRM Deal' -#. Label of the organization (Data) field in DocType 'CRM Lead' -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_lead/crm_lead.json +#. Label of the organization (Link) field in PageType 'CRM Deal' +#. Label of the organization_tab (Tab Break) field in PageType 'CRM Deal' +#. Label of the organization (Data) field in PageType 'CRM Lead' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_lead/crm_lead.json #: frontend/src/components/Layouts/AppSidebar.vue:553 #: frontend/src/components/Modals/ConvertToDealModal.vue:25 #: frontend/src/pages/Contact.vue:494 frontend/src/pages/MobileContact.vue:502 @@ -4158,22 +4158,22 @@ msgstr "Commandé par" msgid "Organization" msgstr "Organisation" -#. Label of the organization_details_section (Section Break) field in DocType +#. Label of the organization_details_section (Section Break) field in PageType #. 'CRM Deal' -#: crm/fcrm/doctype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_deal/crm_deal.json msgid "Organization Details" msgstr "" -#. Label of the organization_logo (Attach Image) field in DocType 'CRM +#. Label of the organization_logo (Attach Image) field in PageType 'CRM #. Organization' -#: crm/fcrm/doctype/crm_organization/crm_organization.json +#: crm/fcrm/pagetype/crm_organization/crm_organization.json msgid "Organization Logo" msgstr "" -#. Label of the organization_name (Data) field in DocType 'CRM Deal' -#. Label of the organization_name (Data) field in DocType 'CRM Organization' -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_organization/crm_organization.json +#. Label of the organization_name (Data) field in PageType 'CRM Deal' +#. Label of the organization_name (Data) field in PageType 'CRM Organization' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_organization/crm_organization.json msgid "Organization Name" msgstr "Nom de l'Organisation" @@ -4181,8 +4181,8 @@ msgstr "Nom de l'Organisation" msgid "Organization logo" msgstr "" -#. Label of a shortcut in the Frappe CRM Workspace -#: crm/fcrm/workspace/frappe_crm/frappe_crm.json +#. Label of a shortcut in the Jingrow CRM Workspace +#: crm/fcrm/workspace/jingrow_crm/jingrow_crm.json #: frontend/src/pages/MobileOrganization.vue:205 #: frontend/src/pages/Organization.vue:234 msgid "Organizations" @@ -4196,8 +4196,8 @@ msgstr "" msgid "Other features" msgstr "" -#. Label of the organization_tab (Tab Break) field in DocType 'CRM Lead' -#: crm/fcrm/doctype/crm_lead/crm_lead.json +#. Label of the organization_tab (Tab Break) field in PageType 'CRM Lead' +#: crm/fcrm/pagetype/crm_lead/crm_lead.json msgid "Others" msgstr "Autres" @@ -4205,13 +4205,13 @@ msgstr "Autres" msgid "Outbound Call" msgstr "" -#. Option for the 'Type' (Select) field in DocType 'CRM Call Log' -#: crm/fcrm/doctype/crm_call_log/crm_call_log.json +#. Option for the 'Type' (Select) field in PageType 'CRM Call Log' +#: crm/fcrm/pagetype/crm_call_log/crm_call_log.json msgid "Outgoing" msgstr "Sortant" -#. Label of the log_owner (Link) field in DocType 'CRM Status Change Log' -#: crm/fcrm/doctype/crm_status_change_log/crm_status_change_log.json +#. Label of the log_owner (Link) field in PageType 'CRM Status Change Log' +#: crm/fcrm/pagetype/crm_status_change_log/crm_status_change_log.json msgid "Owner" msgstr "Responsable" @@ -4219,8 +4219,8 @@ msgstr "Responsable" msgid "Owner: {0}" msgstr "" -#. Label of the parent_crm_territory (Link) field in DocType 'CRM Territory' -#: crm/fcrm/doctype/crm_territory/crm_territory.json +#. Label of the parent_crm_territory (Link) field in PageType 'CRM Territory' +#: crm/fcrm/pagetype/crm_territory/crm_territory.json msgid "Parent CRM Territory" msgstr "" @@ -4251,8 +4251,8 @@ msgstr "" msgid "Payment Reminder from Frappé - (#{{ name }})" msgstr "" -#. Option for the 'Status' (Select) field in DocType 'CRM Invitation' -#: crm/fcrm/doctype/crm_invitation/crm_invitation.json +#. Option for the 'Status' (Select) field in PageType 'CRM Invitation' +#: crm/fcrm/pagetype/crm_invitation/crm_invitation.json msgid "Pending" msgstr "En Attente" @@ -4264,10 +4264,10 @@ msgstr "" msgid "Period" msgstr "Période" -#. Label of the person_section (Section Break) field in DocType 'CRM Deal' -#. Label of the person_tab (Tab Break) field in DocType 'CRM Lead' -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_lead/crm_lead.json +#. Label of the person_section (Section Break) field in PageType 'CRM Deal' +#. Label of the person_tab (Tab Break) field in PageType 'CRM Lead' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_lead/crm_lead.json msgid "Person" msgstr "" @@ -4275,19 +4275,19 @@ msgstr "" msgid "Personal Settings" msgstr "" -#. Label of the phone (Data) field in DocType 'CRM Contacts' -#. Label of the phone (Data) field in DocType 'CRM Lead' -#. Option for the 'Device' (Select) field in DocType 'CRM Telephony Agent' -#: crm/fcrm/doctype/crm_contacts/crm_contacts.json -#: crm/fcrm/doctype/crm_lead/crm_lead.json -#: crm/fcrm/doctype/crm_telephony_agent/crm_telephony_agent.json +#. Label of the phone (Data) field in PageType 'CRM Contacts' +#. Label of the phone (Data) field in PageType 'CRM Lead' +#. Option for the 'Device' (Select) field in PageType 'CRM Telephony Agent' +#: crm/fcrm/pagetype/crm_contacts/crm_contacts.json +#: crm/fcrm/pagetype/crm_lead/crm_lead.json +#: crm/fcrm/pagetype/crm_telephony_agent/crm_telephony_agent.json #: frontend/src/pages/MobileOrganization.vue:495 #: frontend/src/pages/Organization.vue:516 msgid "Phone" msgstr "Téléphone" -#. Label of the phone_nos (Table) field in DocType 'CRM Telephony Agent' -#: crm/fcrm/doctype/crm_telephony_agent/crm_telephony_agent.json +#. Label of the phone_nos (Table) field in PageType 'CRM Telephony Agent' +#: crm/fcrm/pagetype/crm_telephony_agent/crm_telephony_agent.json msgid "Phone Numbers" msgstr "" @@ -4295,8 +4295,8 @@ msgstr "" msgid "Pin View" msgstr "" -#. Label of the pinned (Check) field in DocType 'CRM View Settings' -#: crm/fcrm/doctype/crm_view_settings/crm_view_settings.json +#. Label of the pinned (Check) field in PageType 'CRM View Settings' +#: crm/fcrm/pagetype/crm_view_settings/crm_view_settings.json msgid "Pinned" msgstr "" @@ -4346,7 +4346,7 @@ msgstr "" msgid "Please select an existing organization" msgstr "" -#: crm/fcrm/doctype/helpdesk_crm_settings/helpdesk_crm_settings.py:126 +#: crm/fcrm/pagetype/helpdesk_crm_settings/helpdesk_crm_settings.py:126 msgid "Please set Email Address" msgstr "Veuillez définir une Adresse Email" @@ -4354,18 +4354,18 @@ msgstr "Veuillez définir une Adresse Email" msgid "Please setup Exotel intergration" msgstr "" -#: crm/fcrm/doctype/crm_deal/crm_deal.py:181 +#: crm/fcrm/pagetype/crm_deal/crm_deal.py:181 msgid "Please specify a reason for losing the deal." msgstr "" -#: crm/fcrm/doctype/crm_deal/crm_deal.py:183 +#: crm/fcrm/pagetype/crm_deal/crm_deal.py:183 msgid "Please specify the reason for losing the deal." msgstr "" -#. Label of the position (Int) field in DocType 'CRM Deal Status' -#. Label of the position (Int) field in DocType 'CRM Lead Status' -#: crm/fcrm/doctype/crm_deal_status/crm_deal_status.json -#: crm/fcrm/doctype/crm_lead_status/crm_lead_status.json +#. Label of the position (Int) field in PageType 'CRM Deal Status' +#. Label of the position (Int) field in PageType 'CRM Lead Status' +#: crm/fcrm/pagetype/crm_deal_status/crm_deal_status.json +#: crm/fcrm/pagetype/crm_lead_status/crm_lead_status.json msgid "Position" msgstr "" @@ -4373,18 +4373,18 @@ msgstr "" msgid "Primary" msgstr "Primaire" -#. Label of the email (Data) field in DocType 'CRM Deal' -#: crm/fcrm/doctype/crm_deal/crm_deal.json +#. Label of the email (Data) field in PageType 'CRM Deal' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json msgid "Primary Email" msgstr "" -#. Label of the mobile_no (Data) field in DocType 'CRM Deal' -#: crm/fcrm/doctype/crm_deal/crm_deal.json +#. Label of the mobile_no (Data) field in PageType 'CRM Deal' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json msgid "Primary Mobile No" msgstr "" -#. Label of the phone (Data) field in DocType 'CRM Deal' -#: crm/fcrm/doctype/crm_deal/crm_deal.json +#. Label of the phone (Data) field in PageType 'CRM Deal' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json msgid "Primary Phone" msgstr "" @@ -4392,57 +4392,57 @@ msgstr "" msgid "Primary contact set" msgstr "" -#. Label of the priorities (Table) field in DocType 'CRM Service Level +#. Label of the priorities (Table) field in PageType 'CRM Service Level #. Agreement' -#: crm/fcrm/doctype/crm_service_level_agreement/crm_service_level_agreement.json +#: crm/fcrm/pagetype/crm_service_level_agreement/crm_service_level_agreement.json msgid "Priorities" msgstr "Les priorités" -#. Label of the priority (Link) field in DocType 'CRM Service Level Priority' -#. Label of the priority (Select) field in DocType 'CRM Task' -#: crm/fcrm/doctype/crm_service_level_priority/crm_service_level_priority.json -#: crm/fcrm/doctype/crm_task/crm_task.json +#. Label of the priority (Link) field in PageType 'CRM Service Level Priority' +#. Label of the priority (Select) field in PageType 'CRM Task' +#: crm/fcrm/pagetype/crm_service_level_priority/crm_service_level_priority.json +#: crm/fcrm/pagetype/crm_task/crm_task.json #: frontend/src/components/Settings/AssignmentRules/AssignmentRuleView.vue:64 #: frontend/src/components/Settings/AssignmentRules/AssignmentRulesList.vue:20 msgid "Priority" msgstr "Priorité" -#. Label of the private (Check) field in DocType 'CRM Dashboard' -#: crm/fcrm/doctype/crm_dashboard/crm_dashboard.json +#. Label of the private (Check) field in PageType 'CRM Dashboard' +#: crm/fcrm/pagetype/crm_dashboard/crm_dashboard.json #: frontend/src/components/FilesUploader/FilesUploaderArea.vue:89 msgid "Private" msgstr "Privé" -#. Label of the probability (Percent) field in DocType 'CRM Deal' -#. Label of the probability (Percent) field in DocType 'CRM Deal Status' -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_deal_status/crm_deal_status.json +#. Label of the probability (Percent) field in PageType 'CRM Deal' +#. Label of the probability (Percent) field in PageType 'CRM Deal Status' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_deal_status/crm_deal_status.json msgid "Probability" msgstr "Probabilité" -#. Label of the product_code (Link) field in DocType 'CRM Products' -#: crm/fcrm/doctype/crm_products/crm_products.json +#. Label of the product_code (Link) field in PageType 'CRM Products' +#: crm/fcrm/pagetype/crm_products/crm_products.json msgid "Product" msgstr "Produit" -#. Label of the product_code (Data) field in DocType 'CRM Product' -#: crm/fcrm/doctype/crm_product/crm_product.json +#. Label of the product_code (Data) field in PageType 'CRM Product' +#: crm/fcrm/pagetype/crm_product/crm_product.json msgid "Product Code" msgstr "" -#. Label of the product_name (Data) field in DocType 'CRM Product' -#. Label of the product_name (Data) field in DocType 'CRM Products' -#: crm/fcrm/doctype/crm_product/crm_product.json -#: crm/fcrm/doctype/crm_products/crm_products.json +#. Label of the product_name (Data) field in PageType 'CRM Product' +#. Label of the product_name (Data) field in PageType 'CRM Products' +#: crm/fcrm/pagetype/crm_product/crm_product.json +#: crm/fcrm/pagetype/crm_products/crm_products.json msgid "Product Name" msgstr "" -#. Label of the products_tab (Tab Break) field in DocType 'CRM Deal' -#. Label of the products (Table) field in DocType 'CRM Deal' -#. Label of the products_tab (Tab Break) field in DocType 'CRM Lead' -#. Label of the products (Table) field in DocType 'CRM Lead' -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_lead/crm_lead.json +#. Label of the products_tab (Tab Break) field in PageType 'CRM Deal' +#. Label of the products (Table) field in PageType 'CRM Deal' +#. Label of the products_tab (Tab Break) field in PageType 'CRM Lead' +#. Label of the products (Table) field in PageType 'CRM Lead' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_lead/crm_lead.json msgid "Products" msgstr "Produits" @@ -4459,8 +4459,8 @@ msgstr "" msgid "Projected vs actual revenue based on deal probability" msgstr "" -#. Label of the public (Check) field in DocType 'CRM View Settings' -#: crm/fcrm/doctype/crm_view_settings/crm_view_settings.json +#. Label of the public (Check) field in PageType 'CRM View Settings' +#: crm/fcrm/pagetype/crm_view_settings/crm_view_settings.json msgid "Public" msgstr "" @@ -4472,23 +4472,23 @@ msgstr "" msgid "Public view" msgstr "" -#. Label of the qty (Float) field in DocType 'CRM Products' -#: crm/fcrm/doctype/crm_products/crm_products.json +#. Label of the qty (Float) field in PageType 'CRM Products' +#: crm/fcrm/pagetype/crm_products/crm_products.json msgid "Quantity" msgstr "Quantité" -#. Option for the 'Status' (Select) field in DocType 'CRM Call Log' -#: crm/fcrm/doctype/crm_call_log/crm_call_log.json +#. Option for the 'Status' (Select) field in PageType 'CRM Call Log' +#: crm/fcrm/pagetype/crm_call_log/crm_call_log.json msgid "Queued" msgstr "Dans la file d'attente" -#. Option for the 'Type' (Select) field in DocType 'CRM Fields Layout' -#: crm/fcrm/doctype/crm_fields_layout/crm_fields_layout.json +#. Option for the 'Type' (Select) field in PageType 'CRM Fields Layout' +#: crm/fcrm/pagetype/crm_fields_layout/crm_fields_layout.json msgid "Quick Entry" msgstr "Écriture rapide" -#. Option for the 'Type' (Select) field in DocType 'CRM Global Settings' -#: crm/fcrm/doctype/crm_global_settings/crm_global_settings.json +#. Option for the 'Type' (Select) field in PageType 'CRM Global Settings' +#: crm/fcrm/pagetype/crm_global_settings/crm_global_settings.json msgid "Quick Filters" msgstr "Filtres rapides" @@ -4500,13 +4500,13 @@ msgstr "" msgid "Quick entry layout" msgstr "" -#. Label of the rate (Currency) field in DocType 'CRM Products' -#: crm/fcrm/doctype/crm_products/crm_products.json +#. Label of the rate (Currency) field in PageType 'CRM Products' +#: crm/fcrm/pagetype/crm_products/crm_products.json msgid "Rate" msgstr "Prix" -#. Label of the read (Check) field in DocType 'CRM Notification' -#: crm/fcrm/doctype/crm_notification/crm_notification.json +#. Label of the read (Check) field in PageType 'CRM Notification' +#: crm/fcrm/pagetype/crm_notification/crm_notification.json msgid "Read" msgstr "Lire" @@ -4514,48 +4514,48 @@ msgstr "Lire" msgid "Reason" msgstr "Raison" -#. Label of the record_calls (Check) field in DocType 'CRM Twilio Settings' -#: crm/fcrm/doctype/crm_twilio_settings/crm_twilio_settings.json +#. Label of the record_calls (Check) field in PageType 'CRM Twilio Settings' +#: crm/fcrm/pagetype/crm_twilio_settings/crm_twilio_settings.json msgid "Record Calls" msgstr "" -#. Label of the record_call (Check) field in DocType 'CRM Exotel Settings' -#: crm/fcrm/doctype/crm_exotel_settings/crm_exotel_settings.json +#. Label of the record_call (Check) field in PageType 'CRM Exotel Settings' +#: crm/fcrm/pagetype/crm_exotel_settings/crm_exotel_settings.json msgid "Record Outgoing Calls" msgstr "" -#. Label of the recording_url (Data) field in DocType 'CRM Call Log' -#: crm/fcrm/doctype/crm_call_log/crm_call_log.json +#. Label of the recording_url (Data) field in PageType 'CRM Call Log' +#: crm/fcrm/pagetype/crm_call_log/crm_call_log.json msgid "Recording URL" msgstr "URL d'enregistrement" -#. Label of the reference_name (Dynamic Link) field in DocType 'CRM +#. Label of the reference_name (Dynamic Link) field in PageType 'CRM #. Notification' -#. Label of the reference_docname (Dynamic Link) field in DocType 'CRM Task' -#. Label of the reference_docname (Dynamic Link) field in DocType 'FCRM Note' -#: crm/fcrm/doctype/crm_notification/crm_notification.json -#: crm/fcrm/doctype/crm_task/crm_task.json -#: crm/fcrm/doctype/fcrm_note/fcrm_note.json -msgid "Reference Doc" +#. Label of the reference_docname (Dynamic Link) field in PageType 'CRM Task' +#. Label of the reference_docname (Dynamic Link) field in PageType 'FCRM Note' +#: crm/fcrm/pagetype/crm_notification/crm_notification.json +#: crm/fcrm/pagetype/crm_task/crm_task.json +#: crm/fcrm/pagetype/fcrm_note/fcrm_note.json +msgid "Reference Pg" msgstr "" -#. Label of the reference_doctype (Link) field in DocType 'CRM Notification' -#: crm/fcrm/doctype/crm_notification/crm_notification.json -msgid "Reference Doctype" -msgstr "DocType de la Référence" +#. Label of the reference_pagetype (Link) field in PageType 'CRM Notification' +#: crm/fcrm/pagetype/crm_notification/crm_notification.json +msgid "Reference Pagetype" +msgstr "PageType de la Référence" -#. Label of the reference_doctype (Link) field in DocType 'CRM Call Log' -#. Label of the reference_doctype (Link) field in DocType 'CRM Task' -#. Label of the reference_doctype (Link) field in DocType 'FCRM Note' -#: crm/fcrm/doctype/crm_call_log/crm_call_log.json -#: crm/fcrm/doctype/crm_task/crm_task.json -#: crm/fcrm/doctype/fcrm_note/fcrm_note.json +#. Label of the reference_pagetype (Link) field in PageType 'CRM Call Log' +#. Label of the reference_pagetype (Link) field in PageType 'CRM Task' +#. Label of the reference_pagetype (Link) field in PageType 'FCRM Note' +#: crm/fcrm/pagetype/crm_call_log/crm_call_log.json +#: crm/fcrm/pagetype/crm_task/crm_task.json +#: crm/fcrm/pagetype/fcrm_note/fcrm_note.json msgid "Reference Document Type" msgstr "Type du document de référence" -#. Label of the reference_docname (Dynamic Link) field in DocType 'CRM Call +#. Label of the reference_docname (Dynamic Link) field in PageType 'CRM Call #. Log' -#: crm/fcrm/doctype/crm_call_log/crm_call_log.json +#: crm/fcrm/pagetype/crm_call_log/crm_call_log.json msgid "Reference Name" msgstr "Nom de référence" @@ -4625,8 +4625,8 @@ msgstr "Répondre à Tous" msgid "Report an Issue" msgstr "Signaler un problème" -#. Option for the 'Type' (Select) field in DocType 'CRM Fields Layout' -#: crm/fcrm/doctype/crm_fields_layout/crm_fields_layout.json +#. Option for the 'Type' (Select) field in PageType 'CRM Fields Layout' +#: crm/fcrm/pagetype/crm_fields_layout/crm_fields_layout.json msgid "Required Fields" msgstr "" @@ -4642,7 +4642,7 @@ msgstr "Réinitialiser" msgid "Reset Changes" msgstr "" -#: crm/fcrm/doctype/erpnext_crm_settings/erpnext_crm_settings.js:7 +#: crm/fcrm/pagetype/erpnext_crm_settings/erpnext_crm_settings.js:7 msgid "Reset ERPNext Form Script" msgstr "" @@ -4654,35 +4654,35 @@ msgstr "" msgid "Reset to default" msgstr "" -#. Label of the response_by (Datetime) field in DocType 'CRM Deal' -#. Label of the response_by (Datetime) field in DocType 'CRM Lead' -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_lead/crm_lead.json +#. Label of the response_by (Datetime) field in PageType 'CRM Deal' +#. Label of the response_by (Datetime) field in PageType 'CRM Lead' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_lead/crm_lead.json msgid "Response By" msgstr "Réponse de" -#. Label of the response_details_section (Section Break) field in DocType 'CRM +#. Label of the response_details_section (Section Break) field in PageType 'CRM #. Deal' -#. Label of the response_details_section (Section Break) field in DocType 'CRM +#. Label of the response_details_section (Section Break) field in PageType 'CRM #. Lead' -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_lead/crm_lead.json +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_lead/crm_lead.json msgid "Response Details" msgstr "Détails de la réponse" -#. Label of the section_break_ufaf (Section Break) field in DocType 'CRM +#. Label of the section_break_ufaf (Section Break) field in PageType 'CRM #. Service Level Agreement' -#: crm/fcrm/doctype/crm_service_level_agreement/crm_service_level_agreement.json +#: crm/fcrm/pagetype/crm_service_level_agreement/crm_service_level_agreement.json msgid "Response and Follow Up" msgstr "" -#: crm/fcrm/doctype/fcrm_settings/fcrm_settings.js:14 +#: crm/fcrm/pagetype/fcrm_settings/fcrm_settings.js:14 msgid "Restore" msgstr "Restaurer" -#. Label of the restore_defaults (Button) field in DocType 'FCRM Settings' -#: crm/fcrm/doctype/fcrm_settings/fcrm_settings.js:13 -#: crm/fcrm/doctype/fcrm_settings/fcrm_settings.json +#. Label of the restore_defaults (Button) field in PageType 'FCRM Settings' +#: crm/fcrm/pagetype/fcrm_settings/fcrm_settings.js:13 +#: crm/fcrm/pagetype/fcrm_settings/fcrm_settings.json msgid "Restore Defaults" msgstr "" @@ -4699,13 +4699,13 @@ msgstr "" msgid "Rich Text" msgstr "" -#. Label of the rgt (Int) field in DocType 'CRM Territory' -#: crm/fcrm/doctype/crm_territory/crm_territory.json +#. Label of the rgt (Int) field in PageType 'CRM Territory' +#: crm/fcrm/pagetype/crm_territory/crm_territory.json msgid "Right" msgstr "Droit" -#. Option for the 'Status' (Select) field in DocType 'CRM Call Log' -#: crm/fcrm/doctype/crm_call_log/crm_call_log.json +#. Option for the 'Status' (Select) field in PageType 'CRM Call Log' +#: crm/fcrm/pagetype/crm_call_log/crm_call_log.json msgid "Ringing" msgstr "Sonnerie" @@ -4714,55 +4714,55 @@ msgstr "Sonnerie" msgid "Ringing..." msgstr "" -#. Label of the role (Select) field in DocType 'CRM Invitation' -#: crm/fcrm/doctype/crm_invitation/crm_invitation.json +#. Label of the role (Select) field in PageType 'CRM Invitation' +#: crm/fcrm/pagetype/crm_invitation/crm_invitation.json #: frontend/src/components/Modals/AddExistingUserModal.vue:46 msgid "Role" msgstr "Rôle" -#. Option for the 'Type' (Select) field in DocType 'CRM Dropdown Item' -#. Label of the route (Data) field in DocType 'CRM Dropdown Item' -#: crm/fcrm/doctype/crm_dropdown_item/crm_dropdown_item.json +#. Option for the 'Type' (Select) field in PageType 'CRM Dropdown Item' +#. Label of the route (Data) field in PageType 'CRM Dropdown Item' +#: crm/fcrm/pagetype/crm_dropdown_item/crm_dropdown_item.json msgid "Route" msgstr "" -#. Label of the route_name (Data) field in DocType 'CRM View Settings' -#: crm/fcrm/doctype/crm_view_settings/crm_view_settings.json +#. Label of the route_name (Data) field in PageType 'CRM View Settings' +#: crm/fcrm/pagetype/crm_view_settings/crm_view_settings.json msgid "Route Name" msgstr "" -#. Label of the rows (Code) field in DocType 'CRM View Settings' -#: crm/fcrm/doctype/crm_view_settings/crm_view_settings.json +#. Label of the rows (Code) field in PageType 'CRM View Settings' +#: crm/fcrm/pagetype/crm_view_settings/crm_view_settings.json msgid "Rows" msgstr "" -#. Label of the sla_tab (Tab Break) field in DocType 'CRM Deal' -#. Label of the sla (Link) field in DocType 'CRM Deal' -#. Label of the sla_tab (Tab Break) field in DocType 'CRM Lead' -#. Label of the sla (Link) field in DocType 'CRM Lead' -#. Label of a shortcut in the Frappe CRM Workspace -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_lead/crm_lead.json -#: crm/fcrm/workspace/frappe_crm/frappe_crm.json +#. Label of the sla_tab (Tab Break) field in PageType 'CRM Deal' +#. Label of the sla (Link) field in PageType 'CRM Deal' +#. Label of the sla_tab (Tab Break) field in PageType 'CRM Lead' +#. Label of the sla (Link) field in PageType 'CRM Lead' +#. Label of a shortcut in the Jingrow CRM Workspace +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_lead/crm_lead.json +#: crm/fcrm/workspace/jingrow_crm/jingrow_crm.json msgid "SLA" msgstr "" -#. Label of the sla_creation (Datetime) field in DocType 'CRM Deal' -#. Label of the sla_creation (Datetime) field in DocType 'CRM Lead' -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_lead/crm_lead.json +#. Label of the sla_creation (Datetime) field in PageType 'CRM Deal' +#. Label of the sla_creation (Datetime) field in PageType 'CRM Lead' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_lead/crm_lead.json msgid "SLA Creation" msgstr "" -#. Label of the sla_name (Data) field in DocType 'CRM Service Level Agreement' -#: crm/fcrm/doctype/crm_service_level_agreement/crm_service_level_agreement.json +#. Label of the sla_name (Data) field in PageType 'CRM Service Level Agreement' +#: crm/fcrm/pagetype/crm_service_level_agreement/crm_service_level_agreement.json msgid "SLA Name" msgstr "" -#. Label of the sla_status (Select) field in DocType 'CRM Deal' -#. Label of the sla_status (Select) field in DocType 'CRM Lead' -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_lead/crm_lead.json +#. Label of the sla_status (Select) field in PageType 'CRM Deal' +#. Label of the sla_status (Select) field in PageType 'CRM Lead' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_lead/crm_lead.json msgid "SLA Status" msgstr "" @@ -4771,57 +4771,57 @@ msgid "SUBJECT" msgstr "" #. Name of a role -#. Option for the 'Role' (Select) field in DocType 'CRM Invitation' -#: crm/fcrm/doctype/crm_call_log/crm_call_log.json -#: crm/fcrm/doctype/crm_communication_status/crm_communication_status.json -#: crm/fcrm/doctype/crm_dashboard/crm_dashboard.json -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_deal_status/crm_deal_status.json -#: crm/fcrm/doctype/crm_exotel_settings/crm_exotel_settings.json -#: crm/fcrm/doctype/crm_form_script/crm_form_script.json -#: crm/fcrm/doctype/crm_global_settings/crm_global_settings.json -#: crm/fcrm/doctype/crm_holiday_list/crm_holiday_list.json -#: crm/fcrm/doctype/crm_industry/crm_industry.json -#: crm/fcrm/doctype/crm_invitation/crm_invitation.json -#: crm/fcrm/doctype/crm_lead/crm_lead.json -#: crm/fcrm/doctype/crm_lead_source/crm_lead_source.json -#: crm/fcrm/doctype/crm_lead_status/crm_lead_status.json -#: crm/fcrm/doctype/crm_lost_reason/crm_lost_reason.json -#: crm/fcrm/doctype/crm_notification/crm_notification.json -#: crm/fcrm/doctype/crm_organization/crm_organization.json -#: crm/fcrm/doctype/crm_service_level_agreement/crm_service_level_agreement.json -#: crm/fcrm/doctype/crm_task/crm_task.json -#: crm/fcrm/doctype/crm_territory/crm_territory.json -#: crm/fcrm/doctype/crm_twilio_settings/crm_twilio_settings.json -#: crm/fcrm/doctype/crm_view_settings/crm_view_settings.json -#: crm/fcrm/doctype/erpnext_crm_settings/erpnext_crm_settings.json -#: crm/fcrm/doctype/fcrm_note/fcrm_note.json -#: crm/fcrm/doctype/fcrm_settings/fcrm_settings.json -#: crm/fcrm/doctype/helpdesk_crm_settings/helpdesk_crm_settings.json +#. Option for the 'Role' (Select) field in PageType 'CRM Invitation' +#: crm/fcrm/pagetype/crm_call_log/crm_call_log.json +#: crm/fcrm/pagetype/crm_communication_status/crm_communication_status.json +#: crm/fcrm/pagetype/crm_dashboard/crm_dashboard.json +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_deal_status/crm_deal_status.json +#: crm/fcrm/pagetype/crm_exotel_settings/crm_exotel_settings.json +#: crm/fcrm/pagetype/crm_form_script/crm_form_script.json +#: crm/fcrm/pagetype/crm_global_settings/crm_global_settings.json +#: crm/fcrm/pagetype/crm_holiday_list/crm_holiday_list.json +#: crm/fcrm/pagetype/crm_industry/crm_industry.json +#: crm/fcrm/pagetype/crm_invitation/crm_invitation.json +#: crm/fcrm/pagetype/crm_lead/crm_lead.json +#: crm/fcrm/pagetype/crm_lead_source/crm_lead_source.json +#: crm/fcrm/pagetype/crm_lead_status/crm_lead_status.json +#: crm/fcrm/pagetype/crm_lost_reason/crm_lost_reason.json +#: crm/fcrm/pagetype/crm_notification/crm_notification.json +#: crm/fcrm/pagetype/crm_organization/crm_organization.json +#: crm/fcrm/pagetype/crm_service_level_agreement/crm_service_level_agreement.json +#: crm/fcrm/pagetype/crm_task/crm_task.json +#: crm/fcrm/pagetype/crm_territory/crm_territory.json +#: crm/fcrm/pagetype/crm_twilio_settings/crm_twilio_settings.json +#: crm/fcrm/pagetype/crm_view_settings/crm_view_settings.json +#: crm/fcrm/pagetype/erpnext_crm_settings/erpnext_crm_settings.json +#: crm/fcrm/pagetype/fcrm_note/fcrm_note.json +#: crm/fcrm/pagetype/fcrm_settings/fcrm_settings.json +#: crm/fcrm/pagetype/helpdesk_crm_settings/helpdesk_crm_settings.json msgid "Sales Manager" msgstr "Responsable des Ventes" #. Name of a role -#. Option for the 'Role' (Select) field in DocType 'CRM Invitation' -#: crm/fcrm/doctype/crm_call_log/crm_call_log.json -#: crm/fcrm/doctype/crm_communication_status/crm_communication_status.json -#: crm/fcrm/doctype/crm_dashboard/crm_dashboard.json -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_deal_status/crm_deal_status.json -#: crm/fcrm/doctype/crm_global_settings/crm_global_settings.json -#: crm/fcrm/doctype/crm_holiday_list/crm_holiday_list.json -#: crm/fcrm/doctype/crm_industry/crm_industry.json -#: crm/fcrm/doctype/crm_invitation/crm_invitation.json -#: crm/fcrm/doctype/crm_lead/crm_lead.json -#: crm/fcrm/doctype/crm_lead_source/crm_lead_source.json -#: crm/fcrm/doctype/crm_lead_status/crm_lead_status.json -#: crm/fcrm/doctype/crm_lost_reason/crm_lost_reason.json -#: crm/fcrm/doctype/crm_notification/crm_notification.json -#: crm/fcrm/doctype/crm_organization/crm_organization.json -#: crm/fcrm/doctype/crm_task/crm_task.json -#: crm/fcrm/doctype/crm_territory/crm_territory.json -#: crm/fcrm/doctype/crm_view_settings/crm_view_settings.json -#: crm/fcrm/doctype/fcrm_note/fcrm_note.json +#. Option for the 'Role' (Select) field in PageType 'CRM Invitation' +#: crm/fcrm/pagetype/crm_call_log/crm_call_log.json +#: crm/fcrm/pagetype/crm_communication_status/crm_communication_status.json +#: crm/fcrm/pagetype/crm_dashboard/crm_dashboard.json +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_deal_status/crm_deal_status.json +#: crm/fcrm/pagetype/crm_global_settings/crm_global_settings.json +#: crm/fcrm/pagetype/crm_holiday_list/crm_holiday_list.json +#: crm/fcrm/pagetype/crm_industry/crm_industry.json +#: crm/fcrm/pagetype/crm_invitation/crm_invitation.json +#: crm/fcrm/pagetype/crm_lead/crm_lead.json +#: crm/fcrm/pagetype/crm_lead_source/crm_lead_source.json +#: crm/fcrm/pagetype/crm_lead_status/crm_lead_status.json +#: crm/fcrm/pagetype/crm_lost_reason/crm_lost_reason.json +#: crm/fcrm/pagetype/crm_notification/crm_notification.json +#: crm/fcrm/pagetype/crm_organization/crm_organization.json +#: crm/fcrm/pagetype/crm_task/crm_task.json +#: crm/fcrm/pagetype/crm_territory/crm_territory.json +#: crm/fcrm/pagetype/crm_view_settings/crm_view_settings.json +#: crm/fcrm/pagetype/fcrm_note/fcrm_note.json #: frontend/src/components/Modals/AddExistingUserModal.vue:92 #: frontend/src/components/Settings/InviteUserPage.vue:156 #: frontend/src/components/Settings/InviteUserPage.vue:163 @@ -4845,17 +4845,17 @@ msgstr "" msgid "Salesperson" msgstr "" -#. Label of the salutation (Link) field in DocType 'CRM Deal' -#. Label of the salutation (Link) field in DocType 'CRM Lead' -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_lead/crm_lead.json +#. Label of the salutation (Link) field in PageType 'CRM Deal' +#. Label of the salutation (Link) field in PageType 'CRM Lead' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_lead/crm_lead.json msgid "Salutation" msgstr "Civilité" -#. Option for the 'Weekly Off' (Select) field in DocType 'CRM Holiday List' -#. Option for the 'Workday' (Select) field in DocType 'CRM Service Day' -#: crm/fcrm/doctype/crm_holiday_list/crm_holiday_list.json -#: crm/fcrm/doctype/crm_service_day/crm_service_day.json +#. Option for the 'Weekly Off' (Select) field in PageType 'CRM Holiday List' +#. Option for the 'Workday' (Select) field in PageType 'CRM Service Day' +#: crm/fcrm/pagetype/crm_holiday_list/crm_holiday_list.json +#: crm/fcrm/pagetype/crm_service_day/crm_service_day.json msgid "Saturday" msgstr "Samedi" @@ -4904,8 +4904,8 @@ msgstr "" msgid "Schedule an event" msgstr "" -#. Label of the script (Code) field in DocType 'CRM Form Script' -#: crm/fcrm/doctype/crm_form_script/crm_form_script.json +#. Label of the script (Code) field in PageType 'CRM Form Script' +#: crm/fcrm/pagetype/crm_form_script/crm_form_script.json msgid "Script" msgstr "" @@ -4973,18 +4973,18 @@ msgstr "" msgid "Send invites to" msgstr "" -#. Option for the 'Type' (Select) field in DocType 'CRM Dropdown Item' -#: crm/fcrm/doctype/crm_dropdown_item/crm_dropdown_item.json +#. Option for the 'Type' (Select) field in PageType 'CRM Dropdown Item' +#: crm/fcrm/pagetype/crm_dropdown_item/crm_dropdown_item.json msgid "Separator" msgstr "Séparateur" -#. Label of the naming_series (Select) field in DocType 'CRM Lead' -#: crm/fcrm/doctype/crm_lead/crm_lead.json +#. Label of the naming_series (Select) field in PageType 'CRM Lead' +#: crm/fcrm/pagetype/crm_lead/crm_lead.json msgid "Series" msgstr "Séries" -#. Label of the service_provider (Select) field in DocType 'FCRM Settings' -#: crm/fcrm/doctype/fcrm_settings/fcrm_settings.json +#. Label of the service_provider (Select) field in PageType 'FCRM Settings' +#: crm/fcrm/pagetype/fcrm_settings/fcrm_settings.json msgid "Service Provider" msgstr "" @@ -5029,7 +5029,7 @@ msgid "Setting up" msgstr "" #: frontend/src/components/Settings/emailConfig.js:145 -msgid "Setting up Frappe Mail requires you to have an API key and API Secret of your email account. Read more " +msgid "Setting up Jingrow Mail requires you to have an API key and API Secret of your email account. Read more " msgstr "" #: frontend/src/components/Settings/emailConfig.js:97 @@ -5062,8 +5062,8 @@ msgid "Setting up Yandex requires you to enable two factor authentication\n" "\t\t and app specific passwords. Read more " msgstr "" -#. Label of the defaults_tab (Tab Break) field in DocType 'FCRM Settings' -#: crm/fcrm/doctype/fcrm_settings/fcrm_settings.json +#. Label of the defaults_tab (Tab Break) field in PageType 'FCRM Settings' +#: crm/fcrm/pagetype/fcrm_settings/fcrm_settings.json #: frontend/src/components/Layouts/AppSidebar.vue:537 #: frontend/src/components/Settings/Settings.vue:12 msgid "Settings" @@ -5073,7 +5073,7 @@ msgstr "Paramètres" msgid "Setup Email" msgstr "" -#: crm/fcrm/doctype/fcrm_settings/fcrm_settings.py:199 +#: crm/fcrm/pagetype/fcrm_settings/fcrm_settings.py:199 msgid "Setup the Exchange Rate Provider as 'Exchangerate Host' in settings, as default provider does not support currency conversion for {0} to {1}." msgstr "" @@ -5108,20 +5108,20 @@ msgstr "" msgid "Show preview" msgstr "" -#. Option for the 'Type' (Select) field in DocType 'CRM Fields Layout' -#: crm/fcrm/doctype/crm_fields_layout/crm_fields_layout.json +#. Option for the 'Type' (Select) field in PageType 'CRM Fields Layout' +#: crm/fcrm/pagetype/crm_fields_layout/crm_fields_layout.json msgid "Side Panel" msgstr "" -#. Option for the 'Type' (Select) field in DocType 'CRM Global Settings' -#: crm/fcrm/doctype/crm_global_settings/crm_global_settings.json +#. Option for the 'Type' (Select) field in PageType 'CRM Global Settings' +#: crm/fcrm/pagetype/crm_global_settings/crm_global_settings.json msgid "Sidebar Items" msgstr "Articles de la Barre Latérale" -#. Description of the 'Condition' (Code) field in DocType 'CRM Service Level +#. Description of the 'Condition' (Code) field in PageType 'CRM Service Level #. Agreement' -#: crm/fcrm/doctype/crm_service_level_agreement/crm_service_level_agreement.json -msgid "Simple Python Expression, Example: doc.status == 'Open' and doc.lead_source == 'Ads'" +#: crm/fcrm/pagetype/crm_service_level_agreement/crm_service_level_agreement.json +msgid "Simple Python Expression, Example: pg.status == 'Open' and pg.lead_source == 'Ads'" msgstr "" #: frontend/src/components/AssignTo.vue:83 @@ -5145,16 +5145,16 @@ msgstr "" msgid "Sort" msgstr "" -#. Label of the source (Link) field in DocType 'CRM Deal' -#. Label of the source (Link) field in DocType 'CRM Lead' -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_lead/crm_lead.json +#. Label of the source (Link) field in PageType 'CRM Deal' +#. Label of the source (Link) field in PageType 'CRM Lead' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_lead/crm_lead.json #: frontend/src/components/Modals/EditValueModal.vue:10 msgid "Source" msgstr "" -#. Label of the source_name (Data) field in DocType 'CRM Lead Source' -#: crm/fcrm/doctype/crm_lead_source/crm_lead_source.json +#. Label of the source_name (Data) field in PageType 'CRM Lead Source' +#: crm/fcrm/pagetype/crm_lead_source/crm_lead_source.json msgid "Source Name" msgstr "Nom de la Source" @@ -5167,12 +5167,12 @@ msgstr "" msgid "Stage" msgstr "Etape" -#: crm/fcrm/doctype/crm_form_script/crm_form_script.js:15 +#: crm/fcrm/pagetype/crm_form_script/crm_form_script.js:15 msgid "Standard Form Scripts can not be modified, duplicate the Form Script instead." msgstr "" -#. Label of the standard_rate (Currency) field in DocType 'CRM Product' -#: crm/fcrm/doctype/crm_product/crm_product.json +#. Label of the standard_rate (Currency) field in PageType 'CRM Product' +#: crm/fcrm/pagetype/crm_product/crm_product.json msgid "Standard Selling Rate" msgstr "Prix de Vente Standard" @@ -5180,18 +5180,18 @@ msgstr "Prix de Vente Standard" msgid "Standard Views" msgstr "" -#. Label of the start_date (Date) field in DocType 'CRM Service Level +#. Label of the start_date (Date) field in PageType 'CRM Service Level #. Agreement' -#. Label of the start_date (Date) field in DocType 'CRM Task' -#: crm/fcrm/doctype/crm_service_level_agreement/crm_service_level_agreement.json -#: crm/fcrm/doctype/crm_task/crm_task.json +#. Label of the start_date (Date) field in PageType 'CRM Task' +#: crm/fcrm/pagetype/crm_service_level_agreement/crm_service_level_agreement.json +#: crm/fcrm/pagetype/crm_task/crm_task.json msgid "Start Date" msgstr "Date de Début" -#. Label of the start_time (Datetime) field in DocType 'CRM Call Log' -#. Label of the start_time (Time) field in DocType 'CRM Service Day' -#: crm/fcrm/doctype/crm_call_log/crm_call_log.json -#: crm/fcrm/doctype/crm_service_day/crm_service_day.json +#. Label of the start_time (Datetime) field in PageType 'CRM Call Log' +#. Label of the start_time (Time) field in PageType 'CRM Service Day' +#: crm/fcrm/pagetype/crm_call_log/crm_call_log.json +#: crm/fcrm/pagetype/crm_service_day/crm_service_day.json #: frontend/src/components/Calendar/CalendarEventPanel.vue:234 #: frontend/src/components/Modals/EventModal.vue:103 msgid "Start Time" @@ -5205,32 +5205,32 @@ msgstr "" msgid "Start with sample 10 leads" msgstr "" -#. Label of the status (Select) field in DocType 'CRM Call Log' -#. Label of the status (Data) field in DocType 'CRM Communication Status' -#. Label of the status (Link) field in DocType 'CRM Deal' -#. Label of the deal_status (Data) field in DocType 'CRM Deal Status' -#. Label of the status (Select) field in DocType 'CRM Invitation' -#. Label of the status (Link) field in DocType 'CRM Lead' -#. Label of the lead_status (Data) field in DocType 'CRM Lead Status' -#. Label of the status (Select) field in DocType 'CRM Task' -#: crm/fcrm/doctype/crm_call_log/crm_call_log.json -#: crm/fcrm/doctype/crm_communication_status/crm_communication_status.json -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_deal_status/crm_deal_status.json -#: crm/fcrm/doctype/crm_invitation/crm_invitation.json -#: crm/fcrm/doctype/crm_lead/crm_lead.json -#: crm/fcrm/doctype/crm_lead_status/crm_lead_status.json -#: crm/fcrm/doctype/crm_task/crm_task.json frontend/src/pages/Contact.vue:505 +#. Label of the status (Select) field in PageType 'CRM Call Log' +#. Label of the status (Data) field in PageType 'CRM Communication Status' +#. Label of the status (Link) field in PageType 'CRM Deal' +#. Label of the deal_status (Data) field in PageType 'CRM Deal Status' +#. Label of the status (Select) field in PageType 'CRM Invitation' +#. Label of the status (Link) field in PageType 'CRM Lead' +#. Label of the lead_status (Data) field in PageType 'CRM Lead Status' +#. Label of the status (Select) field in PageType 'CRM Task' +#: crm/fcrm/pagetype/crm_call_log/crm_call_log.json +#: crm/fcrm/pagetype/crm_communication_status/crm_communication_status.json +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_deal_status/crm_deal_status.json +#: crm/fcrm/pagetype/crm_invitation/crm_invitation.json +#: crm/fcrm/pagetype/crm_lead/crm_lead.json +#: crm/fcrm/pagetype/crm_lead_status/crm_lead_status.json +#: crm/fcrm/pagetype/crm_task/crm_task.json frontend/src/pages/Contact.vue:505 #: frontend/src/pages/MobileContact.vue:513 #: frontend/src/pages/MobileOrganization.vue:457 #: frontend/src/pages/Organization.vue:478 msgid "Status" msgstr "Statut" -#. Label of the status_change_log (Table) field in DocType 'CRM Deal' -#. Label of the status_change_log (Table) field in DocType 'CRM Lead' -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_lead/crm_lead.json +#. Label of the status_change_log (Table) field in PageType 'CRM Deal' +#. Label of the status_change_log (Table) field in PageType 'CRM Lead' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_lead/crm_lead.json msgid "Status Change Log" msgstr "" @@ -5239,8 +5239,8 @@ msgstr "" msgid "Status is required" msgstr "" -#. Label of the subdomain (Data) field in DocType 'CRM Exotel Settings' -#: crm/fcrm/doctype/crm_exotel_settings/crm_exotel_settings.json +#. Label of the subdomain (Data) field in PageType 'CRM Exotel Settings' +#: crm/fcrm/pagetype/crm_exotel_settings/crm_exotel_settings.json msgid "Subdomain" msgstr "Sous-domaine" @@ -5258,10 +5258,10 @@ msgstr "" msgid "Subject: {0}" msgstr "" -#. Option for the 'Weekly Off' (Select) field in DocType 'CRM Holiday List' -#. Option for the 'Workday' (Select) field in DocType 'CRM Service Day' -#: crm/fcrm/doctype/crm_holiday_list/crm_holiday_list.json -#: crm/fcrm/doctype/crm_service_day/crm_service_day.json +#. Option for the 'Weekly Off' (Select) field in PageType 'CRM Holiday List' +#. Option for the 'Workday' (Select) field in PageType 'CRM Service Day' +#: crm/fcrm/pagetype/crm_holiday_list/crm_holiday_list.json +#: crm/fcrm/pagetype/crm_service_day/crm_service_day.json msgid "Sunday" msgstr "Dimanche" @@ -5282,21 +5282,21 @@ msgid "System Configuration" msgstr "" #. Name of a role -#. Option for the 'Role' (Select) field in DocType 'CRM Invitation' -#: crm/fcrm/doctype/crm_dashboard/crm_dashboard.json -#: crm/fcrm/doctype/crm_exotel_settings/crm_exotel_settings.json -#: crm/fcrm/doctype/crm_fields_layout/crm_fields_layout.json -#: crm/fcrm/doctype/crm_global_settings/crm_global_settings.json -#: crm/fcrm/doctype/crm_invitation/crm_invitation.json -#: crm/fcrm/doctype/crm_lead_source/crm_lead_source.json -#: crm/fcrm/doctype/crm_lost_reason/crm_lost_reason.json -#: crm/fcrm/doctype/crm_notification/crm_notification.json -#: crm/fcrm/doctype/crm_product/crm_product.json -#: crm/fcrm/doctype/crm_telephony_agent/crm_telephony_agent.json -#: crm/fcrm/doctype/crm_twilio_settings/crm_twilio_settings.json -#: crm/fcrm/doctype/erpnext_crm_settings/erpnext_crm_settings.json -#: crm/fcrm/doctype/fcrm_settings/fcrm_settings.json -#: crm/fcrm/doctype/helpdesk_crm_settings/helpdesk_crm_settings.json +#. Option for the 'Role' (Select) field in PageType 'CRM Invitation' +#: crm/fcrm/pagetype/crm_dashboard/crm_dashboard.json +#: crm/fcrm/pagetype/crm_exotel_settings/crm_exotel_settings.json +#: crm/fcrm/pagetype/crm_fields_layout/crm_fields_layout.json +#: crm/fcrm/pagetype/crm_global_settings/crm_global_settings.json +#: crm/fcrm/pagetype/crm_invitation/crm_invitation.json +#: crm/fcrm/pagetype/crm_lead_source/crm_lead_source.json +#: crm/fcrm/pagetype/crm_lost_reason/crm_lost_reason.json +#: crm/fcrm/pagetype/crm_notification/crm_notification.json +#: crm/fcrm/pagetype/crm_product/crm_product.json +#: crm/fcrm/pagetype/crm_telephony_agent/crm_telephony_agent.json +#: crm/fcrm/pagetype/crm_twilio_settings/crm_twilio_settings.json +#: crm/fcrm/pagetype/erpnext_crm_settings/erpnext_crm_settings.json +#: crm/fcrm/pagetype/fcrm_settings/fcrm_settings.json +#: crm/fcrm/pagetype/helpdesk_crm_settings/helpdesk_crm_settings.json msgid "System Manager" msgstr "Responsable Système" @@ -5308,8 +5308,8 @@ msgstr "" msgid "Take a note..." msgstr "" -#. Option for the 'Type' (Select) field in DocType 'CRM Notification' -#: crm/fcrm/doctype/crm_notification/crm_notification.json +#. Option for the 'Type' (Select) field in PageType 'CRM Notification' +#: crm/fcrm/pagetype/crm_notification/crm_notification.json #: frontend/src/components/Layouts/AppSidebar.vue:555 msgid "Task" msgstr "Tâche" @@ -5327,8 +5327,8 @@ msgstr "" msgid "Telephony" msgstr "" -#. Label of the telephony_medium (Select) field in DocType 'CRM Call Log' -#: crm/fcrm/doctype/crm_call_log/crm_call_log.json +#. Label of the telephony_medium (Select) field in PageType 'CRM Call Log' +#: crm/fcrm/pagetype/crm_call_log/crm_call_log.json msgid "Telephony Medium" msgstr "" @@ -5364,27 +5364,27 @@ msgstr "" msgid "Template updated successfully" msgstr "" -#. Label of a shortcut in the Frappe CRM Workspace -#: crm/fcrm/workspace/frappe_crm/frappe_crm.json +#. Label of a shortcut in the Jingrow CRM Workspace +#: crm/fcrm/workspace/jingrow_crm/jingrow_crm.json msgid "Territories" msgstr "" -#. Label of the territory (Link) field in DocType 'CRM Deal' -#. Label of the territory (Link) field in DocType 'CRM Lead' -#. Label of the territory (Link) field in DocType 'CRM Organization' -#: crm/api/dashboard.py:1022 crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_lead/crm_lead.json -#: crm/fcrm/doctype/crm_organization/crm_organization.json +#. Label of the territory (Link) field in PageType 'CRM Deal' +#. Label of the territory (Link) field in PageType 'CRM Lead' +#. Label of the territory (Link) field in PageType 'CRM Organization' +#: crm/api/dashboard.py:1022 crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_lead/crm_lead.json +#: crm/fcrm/pagetype/crm_organization/crm_organization.json msgid "Territory" msgstr "Région" -#. Label of the territory_manager (Link) field in DocType 'CRM Territory' -#: crm/fcrm/doctype/crm_territory/crm_territory.json +#. Label of the territory_manager (Link) field in PageType 'CRM Territory' +#: crm/fcrm/pagetype/crm_territory/crm_territory.json msgid "Territory Manager" msgstr "Responsable Régional" -#. Label of the territory_name (Data) field in DocType 'CRM Territory' -#: crm/fcrm/doctype/crm_territory/crm_territory.json +#. Label of the territory_name (Data) field in PageType 'CRM Territory' +#: crm/fcrm/pagetype/crm_territory/crm_territory.json msgid "Territory Name" msgstr "Nom de la Région" @@ -5392,22 +5392,22 @@ msgstr "Nom de la Région" msgid "Thanks" msgstr "" -#: crm/fcrm/doctype/crm_service_level_agreement/crm_service_level_agreement.py:46 +#: crm/fcrm/pagetype/crm_service_level_agreement/crm_service_level_agreement.py:46 msgid "The Condition '{0}' is invalid: {1}" msgstr "" -#. Description of the 'Exchange Rate' (Float) field in DocType 'CRM Deal' -#: crm/fcrm/doctype/crm_deal/crm_deal.json +#. Description of the 'Exchange Rate' (Float) field in PageType 'CRM Deal' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json msgid "The rate used to convert the deal’s currency to your crm's base currency (set in CRM Settings). It is set once when the currency is first added and doesn't change automatically." msgstr "" -#. Description of the 'Exchange Rate' (Float) field in DocType 'CRM +#. Description of the 'Exchange Rate' (Float) field in PageType 'CRM #. Organization' -#: crm/fcrm/doctype/crm_organization/crm_organization.json +#: crm/fcrm/pagetype/crm_organization/crm_organization.json msgid "The rate used to convert the organization’s currency to your crm's base currency (set in CRM Settings). It is set once when the currency is first added and doesn't change automatically." msgstr "" -#: crm/fcrm/doctype/crm_service_level_agreement/crm_service_level_agreement.js:14 +#: crm/fcrm/pagetype/crm_service_level_agreement/crm_service_level_agreement.js:14 msgid "There can only be one default priority in Priorities table" msgstr "" @@ -5444,14 +5444,14 @@ msgstr "" msgid "This will delete selected items and unlink linked items to it, are you sure?" msgstr "" -#: crm/fcrm/doctype/fcrm_settings/fcrm_settings.js:9 +#: crm/fcrm/pagetype/fcrm_settings/fcrm_settings.js:9 msgid "This will restore (if not exist) all the default statuses, custom fields and layouts. Delete & Restore will delete default layouts and then restore them." msgstr "" -#. Option for the 'Weekly Off' (Select) field in DocType 'CRM Holiday List' -#. Option for the 'Workday' (Select) field in DocType 'CRM Service Day' -#: crm/fcrm/doctype/crm_holiday_list/crm_holiday_list.json -#: crm/fcrm/doctype/crm_service_day/crm_service_day.json +#. Option for the 'Weekly Off' (Select) field in PageType 'CRM Holiday List' +#. Option for the 'Workday' (Select) field in PageType 'CRM Service Day' +#: crm/fcrm/pagetype/crm_holiday_list/crm_holiday_list.json +#: crm/fcrm/pagetype/crm_service_day/crm_service_day.json msgid "Thursday" msgstr "Jeudi" @@ -5463,18 +5463,18 @@ msgstr "Temps" msgid "Timespan" msgstr "Période" -#. Label of the title (Data) field in DocType 'CRM Task' -#. Label of the title (Data) field in DocType 'FCRM Note' -#: crm/fcrm/doctype/crm_task/crm_task.json -#: crm/fcrm/doctype/fcrm_note/fcrm_note.json +#. Label of the title (Data) field in PageType 'CRM Task' +#. Label of the title (Data) field in PageType 'FCRM Note' +#: crm/fcrm/pagetype/crm_task/crm_task.json +#: crm/fcrm/pagetype/fcrm_note/fcrm_note.json #: frontend/src/components/Modals/EventModal.vue:43 #: frontend/src/components/Modals/NoteModal.vue:26 #: frontend/src/components/Modals/TaskModal.vue:25 msgid "Title" msgstr "Titre" -#. Label of the title_field (Data) field in DocType 'CRM View Settings' -#: crm/fcrm/doctype/crm_view_settings/crm_view_settings.json +#. Label of the title_field (Data) field in PageType 'CRM View Settings' +#: crm/fcrm/pagetype/crm_view_settings/crm_view_settings.json #: frontend/src/components/Kanban/KanbanSettings.vue:29 msgid "Title Field" msgstr "Champ Titre" @@ -5484,28 +5484,28 @@ msgstr "Champ Titre" msgid "Title is required" msgstr "" -#. Label of the to (Data) field in DocType 'CRM Call Log' -#. Label of the to (Data) field in DocType 'CRM Status Change Log' -#: crm/fcrm/doctype/crm_call_log/crm_call_log.json -#: crm/fcrm/doctype/crm_status_change_log/crm_status_change_log.json +#. Label of the to (Data) field in PageType 'CRM Call Log' +#. Label of the to (Data) field in PageType 'CRM Status Change Log' +#: crm/fcrm/pagetype/crm_call_log/crm_call_log.json +#: crm/fcrm/pagetype/crm_status_change_log/crm_status_change_log.json #: frontend/src/components/Activities/EmailArea.vue:53 msgid "To" msgstr "À" -#. Label of the to_date (Date) field in DocType 'CRM Holiday List' -#. Label of the to_date (Datetime) field in DocType 'CRM Status Change Log' -#: crm/fcrm/doctype/crm_holiday_list/crm_holiday_list.json -#: crm/fcrm/doctype/crm_status_change_log/crm_status_change_log.json +#. Label of the to_date (Date) field in PageType 'CRM Holiday List' +#. Label of the to_date (Datetime) field in PageType 'CRM Status Change Log' +#: crm/fcrm/pagetype/crm_holiday_list/crm_holiday_list.json +#: crm/fcrm/pagetype/crm_status_change_log/crm_status_change_log.json msgid "To Date" msgstr "Jusqu'au" -#. Label of the to_type (Data) field in DocType 'CRM Status Change Log' -#: crm/fcrm/doctype/crm_status_change_log/crm_status_change_log.json +#. Label of the to_type (Data) field in PageType 'CRM Status Change Log' +#: crm/fcrm/pagetype/crm_status_change_log/crm_status_change_log.json msgid "To Type" msgstr "" -#. Label of the to_user (Link) field in DocType 'CRM Notification' -#: crm/fcrm/doctype/crm_notification/crm_notification.json +#. Label of the to_user (Link) field in PageType 'CRM Notification' +#: crm/fcrm/pagetype/crm_notification/crm_notification.json msgid "To User" msgstr "À l'utilisateur" @@ -5517,8 +5517,8 @@ msgstr "" msgid "Today" msgstr "Aujourd'hui" -#. Option for the 'Status' (Select) field in DocType 'CRM Task' -#: crm/fcrm/doctype/crm_task/crm_task.json +#. Option for the 'Status' (Select) field in PageType 'CRM Task' +#: crm/fcrm/pagetype/crm_task/crm_task.json msgid "Todo" msgstr "" @@ -5535,22 +5535,22 @@ msgstr "" msgid "Took a call with John Doe and discussed the new project." msgstr "" -#. Label of the total (Currency) field in DocType 'CRM Deal' -#. Label of the total (Currency) field in DocType 'CRM Lead' -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_lead/crm_lead.json +#. Label of the total (Currency) field in PageType 'CRM Deal' +#. Label of the total (Currency) field in PageType 'CRM Lead' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_lead/crm_lead.json msgid "Total" msgstr "" -#. Label of the total_holidays (Int) field in DocType 'CRM Holiday List' -#: crm/fcrm/doctype/crm_holiday_list/crm_holiday_list.json +#. Label of the total_holidays (Int) field in PageType 'CRM Holiday List' +#: crm/fcrm/pagetype/crm_holiday_list/crm_holiday_list.json msgid "Total Holidays" msgstr "Total des vacances" -#. Description of the 'Net Total' (Currency) field in DocType 'CRM Deal' -#. Description of the 'Net Total' (Currency) field in DocType 'CRM Lead' -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_lead/crm_lead.json +#. Description of the 'Net Total' (Currency) field in PageType 'CRM Deal' +#. Description of the 'Net Total' (Currency) field in PageType 'CRM Lead' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_lead/crm_lead.json msgid "Total after discount" msgstr "" @@ -5571,10 +5571,10 @@ msgstr "" msgid "Total number of won deals based on its closure date" msgstr "" -#. Option for the 'Weekly Off' (Select) field in DocType 'CRM Holiday List' -#. Option for the 'Workday' (Select) field in DocType 'CRM Service Day' -#: crm/fcrm/doctype/crm_holiday_list/crm_holiday_list.json -#: crm/fcrm/doctype/crm_service_day/crm_service_day.json +#. Option for the 'Weekly Off' (Select) field in PageType 'CRM Holiday List' +#. Option for the 'Workday' (Select) field in PageType 'CRM Service Day' +#: crm/fcrm/pagetype/crm_holiday_list/crm_holiday_list.json +#: crm/fcrm/pagetype/crm_service_day/crm_service_day.json msgid "Tuesday" msgstr "Mardi" @@ -5582,30 +5582,30 @@ msgstr "Mardi" msgid "Turn into a group" msgstr "" -#. Label of the twiml_sid (Data) field in DocType 'CRM Twilio Settings' -#: crm/fcrm/doctype/crm_twilio_settings/crm_twilio_settings.json +#. Label of the twiml_sid (Data) field in PageType 'CRM Twilio Settings' +#: crm/fcrm/pagetype/crm_twilio_settings/crm_twilio_settings.json msgid "TwiML SID" msgstr "" -#. Option for the 'Telephony Medium' (Select) field in DocType 'CRM Call Log' -#. Label of the twilio (Check) field in DocType 'CRM Telephony Agent' -#. Option for the 'Default Medium' (Select) field in DocType 'CRM Telephony +#. Option for the 'Telephony Medium' (Select) field in PageType 'CRM Call Log' +#. Label of the twilio (Check) field in PageType 'CRM Telephony Agent' +#. Option for the 'Default Medium' (Select) field in PageType 'CRM Telephony #. Agent' -#: crm/fcrm/doctype/crm_call_log/crm_call_log.json -#: crm/fcrm/doctype/crm_telephony_agent/crm_telephony_agent.json +#: crm/fcrm/pagetype/crm_call_log/crm_call_log.json +#: crm/fcrm/pagetype/crm_telephony_agent/crm_telephony_agent.json #: frontend/src/components/Layouts/AppSidebar.vue:601 #: frontend/src/components/Settings/TelephonySettings.vue:40 #: frontend/src/components/Settings/TelephonySettings.vue:50 msgid "Twilio" msgstr "" -#: crm/fcrm/doctype/crm_twilio_settings/crm_twilio_settings.py:59 -#: crm/fcrm/doctype/crm_twilio_settings/crm_twilio_settings.py:60 +#: crm/fcrm/pagetype/crm_twilio_settings/crm_twilio_settings.py:59 +#: crm/fcrm/pagetype/crm_twilio_settings/crm_twilio_settings.py:60 msgid "Twilio API credential creation error." msgstr "" -#. Label of the twilio_number (Data) field in DocType 'CRM Telephony Agent' -#: crm/fcrm/doctype/crm_telephony_agent/crm_telephony_agent.json +#. Label of the twilio_number (Data) field in PageType 'CRM Telephony Agent' +#: crm/fcrm/pagetype/crm_telephony_agent/crm_telephony_agent.json msgid "Twilio Number" msgstr "" @@ -5617,20 +5617,20 @@ msgstr "" msgid "Twilio settings updated successfully" msgstr "" -#. Label of the type (Select) field in DocType 'CRM Call Log' -#. Label of the type (Select) field in DocType 'CRM Deal Status' -#. Label of the type (Select) field in DocType 'CRM Dropdown Item' -#. Label of the type (Select) field in DocType 'CRM Fields Layout' -#. Label of the type (Select) field in DocType 'CRM Global Settings' -#. Label of the type (Select) field in DocType 'CRM Notification' -#. Label of the type (Select) field in DocType 'CRM View Settings' -#: crm/fcrm/doctype/crm_call_log/crm_call_log.json -#: crm/fcrm/doctype/crm_deal_status/crm_deal_status.json -#: crm/fcrm/doctype/crm_dropdown_item/crm_dropdown_item.json -#: crm/fcrm/doctype/crm_fields_layout/crm_fields_layout.json -#: crm/fcrm/doctype/crm_global_settings/crm_global_settings.json -#: crm/fcrm/doctype/crm_notification/crm_notification.json -#: crm/fcrm/doctype/crm_view_settings/crm_view_settings.json +#. Label of the type (Select) field in PageType 'CRM Call Log' +#. Label of the type (Select) field in PageType 'CRM Deal Status' +#. Label of the type (Select) field in PageType 'CRM Dropdown Item' +#. Label of the type (Select) field in PageType 'CRM Fields Layout' +#. Label of the type (Select) field in PageType 'CRM Global Settings' +#. Label of the type (Select) field in PageType 'CRM Notification' +#. Label of the type (Select) field in PageType 'CRM View Settings' +#: crm/fcrm/pagetype/crm_call_log/crm_call_log.json +#: crm/fcrm/pagetype/crm_deal_status/crm_deal_status.json +#: crm/fcrm/pagetype/crm_dropdown_item/crm_dropdown_item.json +#: crm/fcrm/pagetype/crm_fields_layout/crm_fields_layout.json +#: crm/fcrm/pagetype/crm_global_settings/crm_global_settings.json +#: crm/fcrm/pagetype/crm_notification/crm_notification.json +#: crm/fcrm/pagetype/crm_view_settings/crm_view_settings.json msgid "Type" msgstr "" @@ -5772,12 +5772,12 @@ msgstr "" msgid "Uploading {0}%" msgstr "Envoi de {0}%" -#. Label of the user (Link) field in DocType 'CRM Dashboard' -#. Label of the user (Link) field in DocType 'CRM Telephony Agent' -#. Label of the user (Link) field in DocType 'CRM View Settings' -#: crm/fcrm/doctype/crm_dashboard/crm_dashboard.json -#: crm/fcrm/doctype/crm_telephony_agent/crm_telephony_agent.json -#: crm/fcrm/doctype/crm_view_settings/crm_view_settings.json +#. Label of the user (Link) field in PageType 'CRM Dashboard' +#. Label of the user (Link) field in PageType 'CRM Telephony Agent' +#. Label of the user (Link) field in PageType 'CRM View Settings' +#: crm/fcrm/pagetype/crm_dashboard/crm_dashboard.json +#: crm/fcrm/pagetype/crm_telephony_agent/crm_telephony_agent.json +#: crm/fcrm/pagetype/crm_view_settings/crm_view_settings.json msgid "User" msgstr "Utilisateur" @@ -5785,8 +5785,8 @@ msgstr "Utilisateur" msgid "User Management" msgstr "" -#. Label of the user_name (Data) field in DocType 'CRM Telephony Agent' -#: crm/fcrm/doctype/crm_telephony_agent/crm_telephony_agent.json +#. Label of the user_name (Data) field in PageType 'CRM Telephony Agent' +#: crm/fcrm/pagetype/crm_telephony_agent/crm_telephony_agent.json msgid "User Name" msgstr "Nom d'utilisateur" @@ -5808,9 +5808,9 @@ msgstr "" msgid "Users are required" msgstr "" -#. Label of the section_break_nevd (Section Break) field in DocType 'CRM +#. Label of the section_break_nevd (Section Break) field in PageType 'CRM #. Service Level Agreement' -#: crm/fcrm/doctype/crm_service_level_agreement/crm_service_level_agreement.json +#: crm/fcrm/pagetype/crm_service_level_agreement/crm_service_level_agreement.json msgid "Validity" msgstr "Validité" @@ -5834,33 +5834,33 @@ msgstr "" msgid "Web form" msgstr "" -#. Label of the webhook_verify_token (Data) field in DocType 'CRM Exotel +#. Label of the webhook_verify_token (Data) field in PageType 'CRM Exotel #. Settings' -#: crm/fcrm/doctype/crm_exotel_settings/crm_exotel_settings.json +#: crm/fcrm/pagetype/crm_exotel_settings/crm_exotel_settings.json msgid "Webhook Verify Token" msgstr "" -#. Label of the website (Data) field in DocType 'CRM Deal' -#. Label of the website (Data) field in DocType 'CRM Lead' -#. Label of the website (Data) field in DocType 'CRM Organization' -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_lead/crm_lead.json -#: crm/fcrm/doctype/crm_organization/crm_organization.json +#. Label of the website (Data) field in PageType 'CRM Deal' +#. Label of the website (Data) field in PageType 'CRM Lead' +#. Label of the website (Data) field in PageType 'CRM Organization' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_lead/crm_lead.json +#: crm/fcrm/pagetype/crm_organization/crm_organization.json #: frontend/src/components/Modals/AboutModal.vue:52 msgid "Website" msgstr "Site Web" -#. Option for the 'Weekly Off' (Select) field in DocType 'CRM Holiday List' -#. Option for the 'Workday' (Select) field in DocType 'CRM Service Day' -#: crm/fcrm/doctype/crm_holiday_list/crm_holiday_list.json -#: crm/fcrm/doctype/crm_service_day/crm_service_day.json +#. Option for the 'Weekly Off' (Select) field in PageType 'CRM Holiday List' +#. Option for the 'Workday' (Select) field in PageType 'CRM Service Day' +#: crm/fcrm/pagetype/crm_holiday_list/crm_holiday_list.json +#: crm/fcrm/pagetype/crm_service_day/crm_service_day.json msgid "Wednesday" msgstr "Mercredi" -#. Label of the weekly_off (Check) field in DocType 'CRM Holiday' -#. Label of the weekly_off (Select) field in DocType 'CRM Holiday List' -#: crm/fcrm/doctype/crm_holiday/crm_holiday.json -#: crm/fcrm/doctype/crm_holiday_list/crm_holiday_list.json +#. Label of the weekly_off (Check) field in PageType 'CRM Holiday' +#. Label of the weekly_off (Select) field in PageType 'CRM Holiday List' +#: crm/fcrm/pagetype/crm_holiday/crm_holiday.json +#: crm/fcrm/pagetype/crm_holiday_list/crm_holiday_list.json msgid "Weekly Off" msgstr "Jours de Congé Hebdomadaire" @@ -5868,7 +5868,7 @@ msgstr "Jours de Congé Hebdomadaire" msgid "Welcome Message" msgstr "" -#: crm/fcrm/doctype/helpdesk_crm_settings/helpdesk_crm_settings.py:155 +#: crm/fcrm/pagetype/helpdesk_crm_settings/helpdesk_crm_settings.py:155 msgid "Welcome to Helpdesk" msgstr "" @@ -5876,8 +5876,8 @@ msgstr "" msgid "Welcome {0}, lets add your first lead" msgstr "" -#. Option for the 'Type' (Select) field in DocType 'CRM Notification' -#: crm/fcrm/doctype/crm_notification/crm_notification.json +#. Option for the 'Type' (Select) field in PageType 'CRM Notification' +#: crm/fcrm/pagetype/crm_notification/crm_notification.json #: frontend/src/components/Layouts/AppSidebar.vue:603 #: frontend/src/components/Settings/Settings.vue:190 #: frontend/src/pages/Deal.vue:572 frontend/src/pages/Lead.vue:429 @@ -5902,8 +5902,8 @@ msgstr "Largeur" msgid "Width can be in number, pixel or rem (eg. 3, 30px, 10rem)" msgstr "" -#. Option for the 'Type' (Select) field in DocType 'CRM Deal Status' -#: crm/fcrm/doctype/crm_deal_status/crm_deal_status.json +#. Option for the 'Type' (Select) field in PageType 'CRM Deal Status' +#: crm/fcrm/pagetype/crm_deal_status/crm_deal_status.json msgid "Won" msgstr "" @@ -5912,16 +5912,16 @@ msgstr "" msgid "Won deals" msgstr "" -#. Label of the workday (Select) field in DocType 'CRM Service Day' -#: crm/fcrm/doctype/crm_service_day/crm_service_day.json +#. Label of the workday (Select) field in PageType 'CRM Service Day' +#: crm/fcrm/pagetype/crm_service_day/crm_service_day.json msgid "Workday" msgstr "Journée de travail" -#. Label of the section_break_rmgo (Section Break) field in DocType 'CRM +#. Label of the section_break_rmgo (Section Break) field in PageType 'CRM #. Service Level Agreement' -#. Label of the working_hours (Table) field in DocType 'CRM Service Level +#. Label of the working_hours (Table) field in PageType 'CRM Service Level #. Agreement' -#: crm/fcrm/doctype/crm_service_level_agreement/crm_service_level_agreement.json +#: crm/fcrm/pagetype/crm_service_level_agreement/crm_service_level_agreement.json msgid "Working Hours" msgstr "Heures de travail" @@ -5967,7 +5967,7 @@ msgstr "" msgid "You do not have permission to access this document" msgstr "" -#: crm/fcrm/doctype/crm_form_script/crm_form_script.py:24 +#: crm/fcrm/pagetype/crm_form_script/crm_form_script.py:24 msgid "You need to be in developer mode to edit a Standard Form Script" msgstr "" @@ -5995,10 +5995,10 @@ msgstr "" msgid "added a" msgstr "" -#. Option for the 'Color' (Select) field in DocType 'CRM Deal Status' -#. Option for the 'Color' (Select) field in DocType 'CRM Lead Status' -#: crm/fcrm/doctype/crm_deal_status/crm_deal_status.json -#: crm/fcrm/doctype/crm_lead_status/crm_lead_status.json +#. Option for the 'Color' (Select) field in PageType 'CRM Deal Status' +#. Option for the 'Color' (Select) field in PageType 'CRM Lead Status' +#: crm/fcrm/pagetype/crm_deal_status/crm_deal_status.json +#: crm/fcrm/pagetype/crm_lead_status/crm_lead_status.json msgid "amber" msgstr "" @@ -6010,17 +6010,17 @@ msgstr "" msgid "assigned a {0} {1} to you" msgstr "" -#. Option for the 'Color' (Select) field in DocType 'CRM Deal Status' -#. Option for the 'Color' (Select) field in DocType 'CRM Lead Status' -#: crm/fcrm/doctype/crm_deal_status/crm_deal_status.json -#: crm/fcrm/doctype/crm_lead_status/crm_lead_status.json +#. Option for the 'Color' (Select) field in PageType 'CRM Deal Status' +#. Option for the 'Color' (Select) field in PageType 'CRM Lead Status' +#: crm/fcrm/pagetype/crm_deal_status/crm_deal_status.json +#: crm/fcrm/pagetype/crm_lead_status/crm_lead_status.json msgid "black" msgstr "noir" -#. Option for the 'Color' (Select) field in DocType 'CRM Deal Status' -#. Option for the 'Color' (Select) field in DocType 'CRM Lead Status' -#: crm/fcrm/doctype/crm_deal_status/crm_deal_status.json -#: crm/fcrm/doctype/crm_lead_status/crm_lead_status.json +#. Option for the 'Color' (Select) field in PageType 'CRM Deal Status' +#. Option for the 'Color' (Select) field in PageType 'CRM Lead Status' +#: crm/fcrm/pagetype/crm_deal_status/crm_deal_status.json +#: crm/fcrm/pagetype/crm_lead_status/crm_lead_status.json msgid "blue" msgstr "bleu" @@ -6037,10 +6037,10 @@ msgstr "Commenter" msgid "condition" msgstr "condition" -#. Option for the 'Color' (Select) field in DocType 'CRM Deal Status' -#. Option for the 'Color' (Select) field in DocType 'CRM Lead Status' -#: crm/fcrm/doctype/crm_deal_status/crm_deal_status.json -#: crm/fcrm/doctype/crm_lead_status/crm_lead_status.json +#. Option for the 'Color' (Select) field in PageType 'CRM Deal Status' +#. Option for the 'Color' (Select) field in PageType 'CRM Lead Status' +#: crm/fcrm/pagetype/crm_deal_status/crm_deal_status.json +#: crm/fcrm/pagetype/crm_lead_status/crm_lead_status.json msgid "cyan" msgstr "cyan" @@ -6059,33 +6059,33 @@ msgstr "bureau" msgid "email already exists" msgstr "" -#. Option for the 'Service Provider' (Select) field in DocType 'FCRM Settings' -#: crm/fcrm/doctype/fcrm_settings/fcrm_settings.json +#. Option for the 'Service Provider' (Select) field in PageType 'FCRM Settings' +#: crm/fcrm/pagetype/fcrm_settings/fcrm_settings.json #: frontend/src/components/Settings/CurrencySettings.vue:106 msgid "exchangerate.host" msgstr "" -#. Option for the 'Service Provider' (Select) field in DocType 'FCRM Settings' -#: crm/fcrm/doctype/fcrm_settings/fcrm_settings.json +#. Option for the 'Service Provider' (Select) field in PageType 'FCRM Settings' +#: crm/fcrm/pagetype/fcrm_settings/fcrm_settings.json msgid "frankfurter.app" msgstr "" -#. Option for the 'Color' (Select) field in DocType 'CRM Deal Status' -#. Option for the 'Color' (Select) field in DocType 'CRM Lead Status' -#: crm/fcrm/doctype/crm_deal_status/crm_deal_status.json -#: crm/fcrm/doctype/crm_lead_status/crm_lead_status.json +#. Option for the 'Color' (Select) field in PageType 'CRM Deal Status' +#. Option for the 'Color' (Select) field in PageType 'CRM Lead Status' +#: crm/fcrm/pagetype/crm_deal_status/crm_deal_status.json +#: crm/fcrm/pagetype/crm_lead_status/crm_lead_status.json msgid "gray" msgstr "" -#. Option for the 'Color' (Select) field in DocType 'CRM Deal Status' -#. Option for the 'Color' (Select) field in DocType 'CRM Lead Status' -#: crm/fcrm/doctype/crm_deal_status/crm_deal_status.json -#: crm/fcrm/doctype/crm_lead_status/crm_lead_status.json +#. Option for the 'Color' (Select) field in PageType 'CRM Deal Status' +#. Option for the 'Color' (Select) field in PageType 'CRM Lead Status' +#: crm/fcrm/pagetype/crm_deal_status/crm_deal_status.json +#: crm/fcrm/pagetype/crm_lead_status/crm_lead_status.json msgid "green" msgstr "vert" -#. Option for the 'Type' (Select) field in DocType 'CRM View Settings' -#: crm/fcrm/doctype/crm_view_settings/crm_view_settings.json +#. Option for the 'Type' (Select) field in PageType 'CRM View Settings' +#: crm/fcrm/pagetype/crm_view_settings/crm_view_settings.json msgid "group_by" msgstr "" @@ -6170,12 +6170,12 @@ msgstr "" msgid "just now" msgstr "juste maintenant" -#. Option for the 'Type' (Select) field in DocType 'CRM View Settings' -#: crm/fcrm/doctype/crm_view_settings/crm_view_settings.json +#. Option for the 'Type' (Select) field in PageType 'CRM View Settings' +#: crm/fcrm/pagetype/crm_view_settings/crm_view_settings.json msgid "kanban" msgstr "kanban" -#: crm/api/doc.py:40 crm/api/doc.py:158 crm/api/doc.py:503 +#: crm/api/pg.py:40 crm/api/pg.py:158 crm/api/pg.py:503 msgid "label" msgstr "" @@ -6184,8 +6184,8 @@ msgstr "" msgid "leads" msgstr "pistes de recherche" -#. Option for the 'Type' (Select) field in DocType 'CRM View Settings' -#: crm/fcrm/doctype/crm_view_settings/crm_view_settings.json +#. Option for the 'Type' (Select) field in PageType 'CRM View Settings' +#: crm/fcrm/pagetype/crm_view_settings/crm_view_settings.json msgid "list" msgstr "liste" @@ -6206,17 +6206,17 @@ msgstr "maintenant" msgid "operator" msgstr "opérateur" -#. Option for the 'Color' (Select) field in DocType 'CRM Deal Status' -#. Option for the 'Color' (Select) field in DocType 'CRM Lead Status' -#: crm/fcrm/doctype/crm_deal_status/crm_deal_status.json -#: crm/fcrm/doctype/crm_lead_status/crm_lead_status.json +#. Option for the 'Color' (Select) field in PageType 'CRM Deal Status' +#. Option for the 'Color' (Select) field in PageType 'CRM Lead Status' +#: crm/fcrm/pagetype/crm_deal_status/crm_deal_status.json +#: crm/fcrm/pagetype/crm_lead_status/crm_lead_status.json msgid "orange" msgstr "Orange" -#. Option for the 'Color' (Select) field in DocType 'CRM Deal Status' -#. Option for the 'Color' (Select) field in DocType 'CRM Lead Status' -#: crm/fcrm/doctype/crm_deal_status/crm_deal_status.json -#: crm/fcrm/doctype/crm_lead_status/crm_lead_status.json +#. Option for the 'Color' (Select) field in PageType 'CRM Deal Status' +#. Option for the 'Color' (Select) field in PageType 'CRM Lead Status' +#: crm/fcrm/pagetype/crm_deal_status/crm_deal_status.json +#: crm/fcrm/pagetype/crm_lead_status/crm_lead_status.json msgid "pink" msgstr "rose" @@ -6232,10 +6232,10 @@ msgstr "privé" msgid "public" msgstr "" -#. Option for the 'Color' (Select) field in DocType 'CRM Deal Status' -#. Option for the 'Color' (Select) field in DocType 'CRM Lead Status' -#: crm/fcrm/doctype/crm_deal_status/crm_deal_status.json -#: crm/fcrm/doctype/crm_lead_status/crm_lead_status.json +#. Option for the 'Color' (Select) field in PageType 'CRM Deal Status' +#. Option for the 'Color' (Select) field in PageType 'CRM Lead Status' +#: crm/fcrm/pagetype/crm_deal_status/crm_deal_status.json +#: crm/fcrm/pagetype/crm_lead_status/crm_lead_status.json msgid "purple" msgstr "violet" @@ -6243,17 +6243,17 @@ msgstr "violet" msgid "received a whatsapp message in {0}" msgstr "" -#. Option for the 'Color' (Select) field in DocType 'CRM Deal Status' -#. Option for the 'Color' (Select) field in DocType 'CRM Lead Status' -#: crm/fcrm/doctype/crm_deal_status/crm_deal_status.json -#: crm/fcrm/doctype/crm_lead_status/crm_lead_status.json +#. Option for the 'Color' (Select) field in PageType 'CRM Deal Status' +#. Option for the 'Color' (Select) field in PageType 'CRM Lead Status' +#: crm/fcrm/pagetype/crm_deal_status/crm_deal_status.json +#: crm/fcrm/pagetype/crm_lead_status/crm_lead_status.json msgid "red" msgstr "rouge" -#. Option for the 'Color' (Select) field in DocType 'CRM Deal Status' -#. Option for the 'Color' (Select) field in DocType 'CRM Lead Status' -#: crm/fcrm/doctype/crm_deal_status/crm_deal_status.json -#: crm/fcrm/doctype/crm_lead_status/crm_lead_status.json +#. Option for the 'Color' (Select) field in PageType 'CRM Deal Status' +#. Option for the 'Color' (Select) field in PageType 'CRM Lead Status' +#: crm/fcrm/pagetype/crm_deal_status/crm_deal_status.json +#: crm/fcrm/pagetype/crm_lead_status/crm_lead_status.json msgid "teal" msgstr "" @@ -6266,10 +6266,10 @@ msgstr "à" msgid "tomorrow" msgstr "demain" -#. Option for the 'Color' (Select) field in DocType 'CRM Deal Status' -#. Option for the 'Color' (Select) field in DocType 'CRM Lead Status' -#: crm/fcrm/doctype/crm_deal_status/crm_deal_status.json -#: crm/fcrm/doctype/crm_lead_status/crm_lead_status.json +#. Option for the 'Color' (Select) field in PageType 'CRM Deal Status' +#. Option for the 'Color' (Select) field in PageType 'CRM Lead Status' +#: crm/fcrm/pagetype/crm_deal_status/crm_deal_status.json +#: crm/fcrm/pagetype/crm_lead_status/crm_lead_status.json msgid "violet" msgstr "" @@ -6278,10 +6278,10 @@ msgstr "" msgid "which are not compatible with this UI, you will need to recreate the conditions here if you want to manage and add new conditions from this UI." msgstr "" -#. Option for the 'Color' (Select) field in DocType 'CRM Deal Status' -#. Option for the 'Color' (Select) field in DocType 'CRM Lead Status' -#: crm/fcrm/doctype/crm_deal_status/crm_deal_status.json -#: crm/fcrm/doctype/crm_lead_status/crm_lead_status.json +#. Option for the 'Color' (Select) field in PageType 'CRM Deal Status' +#. Option for the 'Color' (Select) field in PageType 'CRM Lead Status' +#: crm/fcrm/pagetype/crm_deal_status/crm_deal_status.json +#: crm/fcrm/pagetype/crm_lead_status/crm_lead_status.json msgid "yellow" msgstr "Jaune" @@ -6379,7 +6379,7 @@ msgid "⚠️ Method \"{0}\" not found in class." msgstr "" #: frontend/src/data/script.js:83 -msgid "⚠️ No class found for doctype: {0}, it is mandatory to have a class for the parent doctype. it can be empty, but it should be present." +msgid "⚠️ No class found for pagetype: {0}, it is mandatory to have a class for the parent pagetype. it can be empty, but it should be present." msgstr "" #: frontend/src/data/script.js:180 diff --git a/crm/locale/hr.po b/crm/locale/hr.po index 71de1088..9ff90aa9 100644 --- a/crm/locale/hr.po +++ b/crm/locale/hr.po @@ -1,6 +1,6 @@ msgid "" msgstr "" -"Project-Id-Version: frappe\n" +"Project-Id-Version: jingrow\n" "Report-Msgid-Bugs-To: shariq@jingrow.com\n" "POT-Creation-Date: 2025-09-21 09:35+0000\n" "PO-Revision-Date: 2025-09-22 20:42\n" @@ -11,10 +11,10 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Generated-By: Babel 2.16.0\n" "Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" -"X-Crowdin-Project: frappe\n" +"X-Crowdin-Project: jingrow\n" "X-Crowdin-Project-ID: 639578\n" "X-Crowdin-Language: hr\n" -"X-Crowdin-File: /[frappe.crm] develop/crm/locale/main.pot\n" +"X-Crowdin-File: /[jingrow.crm] develop/crm/locale/main.pot\n" "X-Crowdin-File-ID: 97\n" "Language: hr_HR\n" @@ -55,73 +55,73 @@ msgstr "prije 1 tjedan" msgid "1 year ago" msgstr "prije 1 godinu" -#. Option for the 'No. of Employees' (Select) field in DocType 'CRM Deal' -#. Option for the 'No. of Employees' (Select) field in DocType 'CRM Lead' -#. Option for the 'No. of Employees' (Select) field in DocType 'CRM +#. Option for the 'No. of Employees' (Select) field in PageType 'CRM Deal' +#. Option for the 'No. of Employees' (Select) field in PageType 'CRM Lead' +#. Option for the 'No. of Employees' (Select) field in PageType 'CRM #. Organization' -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_lead/crm_lead.json -#: crm/fcrm/doctype/crm_organization/crm_organization.json +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_lead/crm_lead.json +#: crm/fcrm/pagetype/crm_organization/crm_organization.json msgid "1-10" msgstr "1-10" -#. Option for the 'No. of Employees' (Select) field in DocType 'CRM Deal' -#. Option for the 'No. of Employees' (Select) field in DocType 'CRM Lead' -#. Option for the 'No. of Employees' (Select) field in DocType 'CRM +#. Option for the 'No. of Employees' (Select) field in PageType 'CRM Deal' +#. Option for the 'No. of Employees' (Select) field in PageType 'CRM Lead' +#. Option for the 'No. of Employees' (Select) field in PageType 'CRM #. Organization' -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_lead/crm_lead.json -#: crm/fcrm/doctype/crm_organization/crm_organization.json +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_lead/crm_lead.json +#: crm/fcrm/pagetype/crm_organization/crm_organization.json msgid "1000+" msgstr "1000+" -#. Option for the 'No. of Employees' (Select) field in DocType 'CRM Deal' -#. Option for the 'No. of Employees' (Select) field in DocType 'CRM Lead' -#. Option for the 'No. of Employees' (Select) field in DocType 'CRM +#. Option for the 'No. of Employees' (Select) field in PageType 'CRM Deal' +#. Option for the 'No. of Employees' (Select) field in PageType 'CRM Lead' +#. Option for the 'No. of Employees' (Select) field in PageType 'CRM #. Organization' -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_lead/crm_lead.json -#: crm/fcrm/doctype/crm_organization/crm_organization.json +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_lead/crm_lead.json +#: crm/fcrm/pagetype/crm_organization/crm_organization.json msgid "11-50" msgstr "11-50" -#. Option for the 'No. of Employees' (Select) field in DocType 'CRM Deal' -#. Option for the 'No. of Employees' (Select) field in DocType 'CRM Lead' -#. Option for the 'No. of Employees' (Select) field in DocType 'CRM +#. Option for the 'No. of Employees' (Select) field in PageType 'CRM Deal' +#. Option for the 'No. of Employees' (Select) field in PageType 'CRM Lead' +#. Option for the 'No. of Employees' (Select) field in PageType 'CRM #. Organization' -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_lead/crm_lead.json -#: crm/fcrm/doctype/crm_organization/crm_organization.json +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_lead/crm_lead.json +#: crm/fcrm/pagetype/crm_organization/crm_organization.json msgid "201-500" msgstr "201-500" -#. Option for the 'No. of Employees' (Select) field in DocType 'CRM Deal' -#. Option for the 'No. of Employees' (Select) field in DocType 'CRM Lead' -#. Option for the 'No. of Employees' (Select) field in DocType 'CRM +#. Option for the 'No. of Employees' (Select) field in PageType 'CRM Deal' +#. Option for the 'No. of Employees' (Select) field in PageType 'CRM Lead' +#. Option for the 'No. of Employees' (Select) field in PageType 'CRM #. Organization' -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_lead/crm_lead.json -#: crm/fcrm/doctype/crm_organization/crm_organization.json +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_lead/crm_lead.json +#: crm/fcrm/pagetype/crm_organization/crm_organization.json msgid "501-1000" msgstr "501-1000" -#. Option for the 'No. of Employees' (Select) field in DocType 'CRM Deal' -#. Option for the 'No. of Employees' (Select) field in DocType 'CRM Lead' -#. Option for the 'No. of Employees' (Select) field in DocType 'CRM +#. Option for the 'No. of Employees' (Select) field in PageType 'CRM Deal' +#. Option for the 'No. of Employees' (Select) field in PageType 'CRM Lead' +#. Option for the 'No. of Employees' (Select) field in PageType 'CRM #. Organization' -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_lead/crm_lead.json -#: crm/fcrm/doctype/crm_organization/crm_organization.json +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_lead/crm_lead.json +#: crm/fcrm/pagetype/crm_organization/crm_organization.json msgid "51-200" msgstr "51-200" -#. Paragraph text in the Frappe CRM Workspace -#: crm/fcrm/workspace/frappe_crm/frappe_crm.json +#. Paragraph text in the Jingrow CRM Workspace +#: crm/fcrm/workspace/jingrow_crm/jingrow_crm.json msgid "META" msgstr "META" -#. Paragraph text in the Frappe CRM Workspace -#: crm/fcrm/workspace/frappe_crm/frappe_crm.json +#. Paragraph text in the Jingrow CRM Workspace +#: crm/fcrm/workspace/jingrow_crm/jingrow_crm.json msgid "SHORTCUTS" msgstr "PREČACI" @@ -130,8 +130,8 @@ msgstr "PREČACI" msgid "

Dear {{ lead_name }},

\\n\\n

This is a reminder for the payment of {{ grand_total }}.

\\n\\n

Thanks,

\\n

Frappé

" msgstr "

Poštovani {{ lead_name }},

\\n\\n

Ovo je podsjetnik za plaćanje {{ grand_total }}.

\\n\\n

Hvala,

\\n

Frappé

" -#. Header text in the Frappe CRM Workspace -#: crm/fcrm/workspace/frappe_crm/frappe_crm.json +#. Header text in the Jingrow CRM Workspace +#: crm/fcrm/workspace/jingrow_crm/jingrow_crm.json msgid "PORTAL" msgstr "PORTAL" @@ -139,7 +139,7 @@ msgstr "PORTAL" msgid "@John, can you please check this?" msgstr "@John, možeš li molim te provjeriti ovo?" -#: crm/fcrm/doctype/crm_lead/crm_lead.py:56 +#: crm/fcrm/pagetype/crm_lead/crm_lead.py:56 msgid "A Lead requires either a person's name or an organization's name" msgstr "Potencijalni Klijent zahtijeva ili ime osobe ili ime organizacije" @@ -147,14 +147,14 @@ msgstr "Potencijalni Klijent zahtijeva ili ime osobe ili ime organizacije" msgid "A new account has been created for you at {0}" msgstr "Za vas je stvoren novi račun na {0}" -#. Label of the api_key (Data) field in DocType 'CRM Exotel Settings' -#. Label of the api_key (Data) field in DocType 'CRM Twilio Settings' -#. Label of the api_key (Data) field in DocType 'ERPNext CRM Settings' -#. Label of the api_key (Data) field in DocType 'Helpdesk CRM Settings' -#: crm/fcrm/doctype/crm_exotel_settings/crm_exotel_settings.json -#: crm/fcrm/doctype/crm_twilio_settings/crm_twilio_settings.json -#: crm/fcrm/doctype/erpnext_crm_settings/erpnext_crm_settings.json -#: crm/fcrm/doctype/helpdesk_crm_settings/helpdesk_crm_settings.json +#. Label of the api_key (Data) field in PageType 'CRM Exotel Settings' +#. Label of the api_key (Data) field in PageType 'CRM Twilio Settings' +#. Label of the api_key (Data) field in PageType 'ERPNext CRM Settings' +#. Label of the api_key (Data) field in PageType 'Helpdesk CRM Settings' +#: crm/fcrm/pagetype/crm_exotel_settings/crm_exotel_settings.json +#: crm/fcrm/pagetype/crm_twilio_settings/crm_twilio_settings.json +#: crm/fcrm/pagetype/erpnext_crm_settings/erpnext_crm_settings.json +#: crm/fcrm/pagetype/helpdesk_crm_settings/helpdesk_crm_settings.json msgid "API Key" msgstr "API Ključ" @@ -162,17 +162,17 @@ msgstr "API Ključ" msgid "API Key is required" msgstr "API Ključ je obavezan" -#. Label of the api_secret (Password) field in DocType 'CRM Twilio Settings' -#. Label of the api_secret (Password) field in DocType 'ERPNext CRM Settings' -#. Label of the api_secret (Password) field in DocType 'Helpdesk CRM Settings' -#: crm/fcrm/doctype/crm_twilio_settings/crm_twilio_settings.json -#: crm/fcrm/doctype/erpnext_crm_settings/erpnext_crm_settings.json -#: crm/fcrm/doctype/helpdesk_crm_settings/helpdesk_crm_settings.json +#. Label of the api_secret (Password) field in PageType 'CRM Twilio Settings' +#. Label of the api_secret (Password) field in PageType 'ERPNext CRM Settings' +#. Label of the api_secret (Password) field in PageType 'Helpdesk CRM Settings' +#: crm/fcrm/pagetype/crm_twilio_settings/crm_twilio_settings.json +#: crm/fcrm/pagetype/erpnext_crm_settings/erpnext_crm_settings.json +#: crm/fcrm/pagetype/helpdesk_crm_settings/helpdesk_crm_settings.json msgid "API Secret" msgstr "API Tajna" -#. Label of the api_token (Password) field in DocType 'CRM Exotel Settings' -#: crm/fcrm/doctype/crm_exotel_settings/crm_exotel_settings.json +#. Label of the api_token (Password) field in PageType 'CRM Exotel Settings' +#: crm/fcrm/pagetype/crm_exotel_settings/crm_exotel_settings.json msgid "API Token" msgstr "API Token" @@ -180,7 +180,7 @@ msgstr "API Token" msgid "Accept" msgstr "Prihvati" -#: crm/fcrm/doctype/crm_invitation/crm_invitation.js:7 +#: crm/fcrm/pagetype/crm_invitation/crm_invitation.js:7 msgid "Accept Invitation" msgstr "Prihvati Pozivnicu" @@ -188,22 +188,22 @@ msgstr "Prihvati Pozivnicu" msgid "Accept call" msgstr "Prihvati poziv" -#. Option for the 'Status' (Select) field in DocType 'CRM Invitation' -#: crm/fcrm/doctype/crm_invitation/crm_invitation.json +#. Option for the 'Status' (Select) field in PageType 'CRM Invitation' +#: crm/fcrm/pagetype/crm_invitation/crm_invitation.json msgid "Accepted" msgstr "Prihvaćeno" -#. Label of the accepted_at (Datetime) field in DocType 'CRM Invitation' -#: crm/fcrm/doctype/crm_invitation/crm_invitation.json +#. Label of the accepted_at (Datetime) field in PageType 'CRM Invitation' +#: crm/fcrm/pagetype/crm_invitation/crm_invitation.json msgid "Accepted At" msgstr "Prihvaćeno" -#. Label of the access_key (Data) field in DocType 'FCRM Settings' -#: crm/fcrm/doctype/fcrm_settings/fcrm_settings.json +#. Label of the access_key (Data) field in PageType 'FCRM Settings' +#: crm/fcrm/pagetype/fcrm_settings/fcrm_settings.json msgid "Access Key" msgstr "Pristupni Ključ" -#: crm/fcrm/doctype/fcrm_settings/fcrm_settings.py:156 +#: crm/fcrm/pagetype/fcrm_settings/fcrm_settings.py:156 msgid "Access Key is required for Service Provider: {0}" msgstr "Pristupni ključ je potreban za davaoca usluga: {0}" @@ -219,10 +219,10 @@ msgstr "Pristupni ključ za Pružatelja Usluge Tečaja. Potreban za preuzimnje t msgid "Account Name" msgstr "Naziv Računa" -#. Label of the account_sid (Data) field in DocType 'CRM Exotel Settings' -#. Label of the account_sid (Data) field in DocType 'CRM Twilio Settings' -#: crm/fcrm/doctype/crm_exotel_settings/crm_exotel_settings.json -#: crm/fcrm/doctype/crm_twilio_settings/crm_twilio_settings.json +#. Label of the account_sid (Data) field in PageType 'CRM Exotel Settings' +#. Label of the account_sid (Data) field in PageType 'CRM Twilio Settings' +#: crm/fcrm/pagetype/crm_exotel_settings/crm_exotel_settings.json +#: crm/fcrm/pagetype/crm_twilio_settings/crm_twilio_settings.json msgid "Account SID" msgstr "SID Računa" @@ -296,9 +296,9 @@ msgstr "Dodaj Sortiranje" msgid "Add Tab" msgstr "Dodaj Karticu" -#. Label of the add_weekly_holidays_section (Section Break) field in DocType +#. Label of the add_weekly_holidays_section (Section Break) field in PageType #. 'CRM Holiday List' -#: crm/fcrm/doctype/crm_holiday_list/crm_holiday_list.json +#: crm/fcrm/pagetype/crm_holiday_list/crm_holiday_list.json msgid "Add Weekly Holidays" msgstr "Dodaj Tjedne Praznike" @@ -363,8 +363,8 @@ msgstr "Dodaj bilješku" msgid "Add sample data" msgstr "Dodaj primjere podataka" -#. Description of the 'Icon' (Code) field in DocType 'CRM Dropdown Item' -#: crm/fcrm/doctype/crm_dropdown_item/crm_dropdown_item.json +#. Description of the 'Icon' (Code) field in PageType 'CRM Dropdown Item' +#: crm/fcrm/pagetype/crm_dropdown_item/crm_dropdown_item.json msgid "Add svg code or use feather icons e.g 'settings'" msgstr "Dodajte svg kod ili koristite pernate ikone, npr. 'postavke'" @@ -372,8 +372,8 @@ msgstr "Dodajte svg kod ili koristite pernate ikone, npr. 'postavke'" msgid "Add task" msgstr "Dodaj zadatak" -#. Label of the add_to_holidays (Button) field in DocType 'CRM Holiday List' -#: crm/fcrm/doctype/crm_holiday_list/crm_holiday_list.json +#. Label of the add_to_holidays (Button) field in PageType 'CRM Holiday List' +#: crm/fcrm/pagetype/crm_holiday_list/crm_holiday_list.json msgid "Add to Holidays" msgstr "Dodaj Praznicima" @@ -385,8 +385,8 @@ msgstr "Dodaj komentar" msgid "Add, edit, and manage email templates for various CRM communications" msgstr "Dodaj, uredi i upravljaj predlošcima e-pošte za različite CRM komunikacije" -#. Label of the address (Link) field in DocType 'CRM Organization' -#: crm/fcrm/doctype/crm_organization/crm_organization.json +#. Label of the address (Link) field in PageType 'CRM Organization' +#: crm/fcrm/pagetype/crm_organization/crm_organization.json msgid "Address" msgstr "Adresa" @@ -406,14 +406,14 @@ msgid "Agent is unavailable to take the call, please call after some time." msgstr "Agent nije dostupan da odgovori na poziv, nazovite nakon nekog vremena." #. Name of a role -#: crm/fcrm/doctype/crm_exotel_settings/crm_exotel_settings.json -#: crm/fcrm/doctype/crm_fields_layout/crm_fields_layout.json -#: crm/fcrm/doctype/crm_form_script/crm_form_script.json -#: crm/fcrm/doctype/crm_industry/crm_industry.json -#: crm/fcrm/doctype/crm_lead/crm_lead.json -#: crm/fcrm/doctype/crm_lead_source/crm_lead_source.json -#: crm/fcrm/doctype/crm_lead_status/crm_lead_status.json -#: crm/fcrm/doctype/fcrm_settings/fcrm_settings.json +#: crm/fcrm/pagetype/crm_exotel_settings/crm_exotel_settings.json +#: crm/fcrm/pagetype/crm_fields_layout/crm_fields_layout.json +#: crm/fcrm/pagetype/crm_form_script/crm_form_script.json +#: crm/fcrm/pagetype/crm_industry/crm_industry.json +#: crm/fcrm/pagetype/crm_lead/crm_lead.json +#: crm/fcrm/pagetype/crm_lead_source/crm_lead_source.json +#: crm/fcrm/pagetype/crm_lead_status/crm_lead_status.json +#: crm/fcrm/pagetype/fcrm_settings/fcrm_settings.json #: frontend/src/components/Settings/EmailTemplate/EmailTemplates.vue:76 #: frontend/src/components/Settings/Users.vue:85 msgid "All" @@ -426,16 +426,16 @@ msgstr "Sve" msgid "All day" msgstr "Cijeli dan" -#. Label of the amount (Currency) field in DocType 'CRM Products' -#: crm/fcrm/doctype/crm_products/crm_products.json +#. Label of the amount (Currency) field in PageType 'CRM Products' +#: crm/fcrm/pagetype/crm_products/crm_products.json #: frontend/src/pages/Contact.vue:499 frontend/src/pages/MobileContact.vue:507 #: frontend/src/pages/MobileOrganization.vue:451 #: frontend/src/pages/Organization.vue:472 msgid "Amount" msgstr "Iznos" -#. Description of the 'Net Amount' (Currency) field in DocType 'CRM Products' -#: crm/fcrm/doctype/crm_products/crm_products.json +#. Description of the 'Net Amount' (Currency) field in PageType 'CRM Products' +#: crm/fcrm/pagetype/crm_products/crm_products.json msgid "Amount after discount" msgstr "Iznos nakon popusta" @@ -447,13 +447,13 @@ msgstr "Došlo je do pogreške" msgid "An error occurred while updating the document" msgstr "Došlo je do pogreške prilikom ažuriranja dokumenta" -#. Description of the 'Favicon' (Attach) field in DocType 'FCRM Settings' -#: crm/fcrm/doctype/fcrm_settings/fcrm_settings.json +#. Description of the 'Favicon' (Attach) field in PageType 'FCRM Settings' +#: crm/fcrm/pagetype/fcrm_settings/fcrm_settings.json msgid "An icon file with .ico extension. Should be 16 x 16 px. Generated using a favicon generator. [favicon-generator.org]" msgstr "Datoteka ikone s nastavkom .ico. Trebala bi biti 16 x 16 px. Generirano pomoću generatora favicona. [favicon-generator.org]" -#. Description of the 'Logo' (Attach) field in DocType 'FCRM Settings' -#: crm/fcrm/doctype/fcrm_settings/fcrm_settings.json +#. Description of the 'Logo' (Attach) field in PageType 'FCRM Settings' +#: crm/fcrm/pagetype/fcrm_settings/fcrm_settings.json msgid "An image with 1:1 & 2:1 ratio is preferred" msgstr "Poželjna je slika omjera 1:1 i 2:1" @@ -461,12 +461,12 @@ msgstr "Poželjna je slika omjera 1:1 i 2:1" msgid "And" msgstr "I" -#. Label of the annual_revenue (Currency) field in DocType 'CRM Deal' -#. Label of the annual_revenue (Currency) field in DocType 'CRM Lead' -#. Label of the annual_revenue (Currency) field in DocType 'CRM Organization' -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_lead/crm_lead.json -#: crm/fcrm/doctype/crm_organization/crm_organization.json +#. Label of the annual_revenue (Currency) field in PageType 'CRM Deal' +#. Label of the annual_revenue (Currency) field in PageType 'CRM Lead' +#. Label of the annual_revenue (Currency) field in PageType 'CRM Organization' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_lead/crm_lead.json +#: crm/fcrm/pagetype/crm_organization/crm_organization.json msgid "Annual Revenue" msgstr "Godišnji Prihod" @@ -488,13 +488,13 @@ msgstr "Pojavljuje se pored naslova u kartici vašeg preglednika. Preporučena v msgid "Apply" msgstr "Primjeni" -#. Label of the apply_on (Link) field in DocType 'CRM Service Level Agreement' -#: crm/fcrm/doctype/crm_service_level_agreement/crm_service_level_agreement.json +#. Label of the apply_on (Link) field in PageType 'CRM Service Level Agreement' +#: crm/fcrm/pagetype/crm_service_level_agreement/crm_service_level_agreement.json msgid "Apply On" msgstr "Primijeni na" -#. Label of the view (Select) field in DocType 'CRM Form Script' -#: crm/fcrm/doctype/crm_form_script/crm_form_script.json +#. Label of the view (Select) field in PageType 'CRM Form Script' +#: crm/fcrm/pagetype/crm_form_script/crm_form_script.json msgid "Apply To" msgstr "Primijeni na" @@ -540,10 +540,10 @@ msgid "Are you sure you want to go back? Unsaved changes will be lost." msgstr "Jeste li sigurni da se želite vratiti? Nespremljene promjene bit će izgubljene." #: frontend/src/composables/frappecloud.js:24 -msgid "Are you sure you want to login to your Frappe Cloud dashboard?" -msgstr "Jeste li sigurni da se želite prijaviti na svoju Frappe Cloud Nadzornu Tablu?" +msgid "Are you sure you want to login to your Jingrow Cloud dashboard?" +msgstr "Jeste li sigurni da se želite prijaviti na svoju Jingrow Cloud Nadzornu Tablu?" -#: crm/fcrm/doctype/erpnext_crm_settings/erpnext_crm_settings.js:9 +#: crm/fcrm/pagetype/erpnext_crm_settings/erpnext_crm_settings.js:9 msgid "Are you sure you want to reset 'Create Quotation from CRM Deal' Form Script?" msgstr "Jeste li sigurni da želite poništiti Skriptu Obrasca \"Stvori ponudu iz Posla\"?" @@ -555,7 +555,7 @@ msgstr "Jeste li sigurni da želite postaviti valutu kao {0}? To se kasnije ne m msgid "Are you sure you want to unlink {0} linked item(s)?" msgstr "Jeste li sigurni da želite prekinuti vezu {0} povezanih stavki?" -#: crm/fcrm/doctype/fcrm_settings/fcrm_settings.py:193 +#: crm/fcrm/pagetype/fcrm_settings/fcrm_settings.py:193 msgid "Ask your manager to set up the Exchange Rate Provider, as default provider does not support currency conversion for {0} to {1}." msgstr "Zamolite odgovornog da postavi pružatelja tečaja, jer zadani pružatelj ne podržava pretvorbu valuta iz {0} u {1}." @@ -581,8 +581,8 @@ msgstr "Dodijeli" msgid "Assign to me" msgstr "Dodijeli meni" -#. Label of the assigned_to (Link) field in DocType 'CRM Task' -#: crm/fcrm/doctype/crm_task/crm_task.json +#. Label of the assigned_to (Link) field in PageType 'CRM Task' +#: crm/fcrm/pagetype/crm_task/crm_task.json msgid "Assigned To" msgstr "Dodijeljeno" @@ -594,13 +594,13 @@ msgstr "Pravila Dodjele" msgid "Assignees" msgstr "Dodijeljeni" -#. Option for the 'Type' (Select) field in DocType 'CRM Notification' -#: crm/fcrm/doctype/crm_notification/crm_notification.json +#. Option for the 'Type' (Select) field in PageType 'CRM Notification' +#: crm/fcrm/pagetype/crm_notification/crm_notification.json msgid "Assignment" msgstr "Dodjela" -#. Label of a shortcut in the Frappe CRM Workspace -#: crm/fcrm/workspace/frappe_crm/frappe_crm.json +#. Label of a shortcut in the Jingrow CRM Workspace +#: crm/fcrm/workspace/jingrow_crm/jingrow_crm.json msgid "Assignment Rule" msgstr "Pravilo Dodjele" @@ -678,14 +678,14 @@ msgstr "Prilozi" msgid "Attendees" msgstr "Učesnici" -#. Label of the auth_token (Password) field in DocType 'CRM Twilio Settings' -#: crm/fcrm/doctype/crm_twilio_settings/crm_twilio_settings.json +#. Label of the auth_token (Password) field in PageType 'CRM Twilio Settings' +#: crm/fcrm/pagetype/crm_twilio_settings/crm_twilio_settings.json msgid "Auth Token" msgstr "Auth Token" -#. Label of the auto_update_expected_deal_value (Check) field in DocType 'FCRM +#. Label of the auto_update_expected_deal_value (Check) field in PageType 'FCRM #. Settings' -#: crm/fcrm/doctype/fcrm_settings/fcrm_settings.json +#: crm/fcrm/pagetype/fcrm_settings/fcrm_settings.json msgid "Auto Update Expected Deal Value" msgstr "Automatsko ažuriranje očekivane vrijednosti ponude" @@ -702,8 +702,8 @@ msgid "Auto update of expected deal value enabled" msgstr "Automatsko ažuriranje očekivane vrijednosti posla omogućeno" #. Description of the 'Auto Update Expected Deal Value' (Check) field in -#. DocType 'FCRM Settings' -#: crm/fcrm/doctype/fcrm_settings/fcrm_settings.json +#. PageType 'FCRM Settings' +#: crm/fcrm/pagetype/fcrm_settings/fcrm_settings.json #: frontend/src/components/Settings/ForecastingSettings.vue:46 msgid "Automatically update \"Expected Deal Value\" based on the total value of associated products in a deal" msgstr "Automatski ažuriraj \"Očekivanu vrijednost ponude\" na temelju ukupne vrijednosti povezanih proizvoda u ponudi" @@ -793,8 +793,8 @@ msgstr "Nazad" msgid "Back to file upload" msgstr "Natrag na učitavanje datoteke" -#. Option for the 'Status' (Select) field in DocType 'CRM Task' -#: crm/fcrm/doctype/crm_task/crm_task.json +#. Option for the 'Status' (Select) field in PageType 'CRM Task' +#: crm/fcrm/pagetype/crm_task/crm_task.json msgid "Backlog" msgstr "Zaostatak" @@ -818,8 +818,8 @@ msgstr "Naziv robne marke" msgid "Brand settings" msgstr "Postavke robne marke" -#. Label of the branding_tab (Tab Break) field in DocType 'FCRM Settings' -#: crm/fcrm/doctype/fcrm_settings/fcrm_settings.json +#. Label of the branding_tab (Tab Break) field in PageType 'FCRM Settings' +#: crm/fcrm/pagetype/fcrm_settings/fcrm_settings.json msgid "Branding" msgstr "Brendiranje" @@ -827,8 +827,8 @@ msgstr "Brendiranje" msgid "Bulk Edit" msgstr "Grupno Uređivanje" -#. Option for the 'Status' (Select) field in DocType 'CRM Call Log' -#: crm/fcrm/doctype/crm_call_log/crm_call_log.json +#. Option for the 'Status' (Select) field in PageType 'CRM Call Log' +#: crm/fcrm/pagetype/crm_call_log/crm_call_log.json msgid "Busy" msgstr "Zauzeto" @@ -838,174 +838,174 @@ msgstr "Zauzeto" msgid "CC" msgstr "CC" -#. Name of a DocType -#: crm/fcrm/doctype/crm_call_log/crm_call_log.json +#. Name of a PageType +#: crm/fcrm/pagetype/crm_call_log/crm_call_log.json msgid "CRM Call Log" msgstr "Zapisnik Poziva" -#. Name of a DocType -#: crm/fcrm/doctype/crm_communication_status/crm_communication_status.json +#. Name of a PageType +#: crm/fcrm/pagetype/crm_communication_status/crm_communication_status.json msgid "CRM Communication Status" msgstr "Status Konverzacije" -#. Name of a DocType -#: crm/fcrm/doctype/crm_contacts/crm_contacts.json +#. Name of a PageType +#: crm/fcrm/pagetype/crm_contacts/crm_contacts.json msgid "CRM Contacts" msgstr "Kontakti" -#. Name of a DocType -#: crm/fcrm/doctype/crm_dashboard/crm_dashboard.json +#. Name of a PageType +#: crm/fcrm/pagetype/crm_dashboard/crm_dashboard.json #: frontend/src/pages/Dashboard.vue:304 msgid "CRM Dashboard" msgstr "Nadzorna Ploča" -#. Name of a DocType -#: crm/fcrm/doctype/crm_deal/crm_deal.json +#. Name of a PageType +#: crm/fcrm/pagetype/crm_deal/crm_deal.json msgid "CRM Deal" msgstr "Posao" -#. Name of a DocType -#: crm/fcrm/doctype/crm_deal_status/crm_deal_status.json +#. Name of a PageType +#: crm/fcrm/pagetype/crm_deal_status/crm_deal_status.json msgid "CRM Deal Status" msgstr "Status Posla" -#. Name of a DocType -#: crm/fcrm/doctype/crm_dropdown_item/crm_dropdown_item.json +#. Name of a PageType +#: crm/fcrm/pagetype/crm_dropdown_item/crm_dropdown_item.json msgid "CRM Dropdown Item" msgstr "Padajuća Stavka" -#. Name of a DocType -#: crm/fcrm/doctype/crm_exotel_settings/crm_exotel_settings.json +#. Name of a PageType +#: crm/fcrm/pagetype/crm_exotel_settings/crm_exotel_settings.json msgid "CRM Exotel Settings" msgstr "Exotel Postavke" -#. Name of a DocType -#: crm/fcrm/doctype/crm_fields_layout/crm_fields_layout.json +#. Name of a PageType +#: crm/fcrm/pagetype/crm_fields_layout/crm_fields_layout.json msgid "CRM Fields Layout" msgstr "Izgled Polja" -#. Name of a DocType -#: crm/fcrm/doctype/crm_form_script/crm_form_script.json +#. Name of a PageType +#: crm/fcrm/pagetype/crm_form_script/crm_form_script.json msgid "CRM Form Script" msgstr "Skripta Obrasca" -#. Name of a DocType -#: crm/fcrm/doctype/crm_global_settings/crm_global_settings.json +#. Name of a PageType +#: crm/fcrm/pagetype/crm_global_settings/crm_global_settings.json msgid "CRM Global Settings" msgstr "Globalne Postavke" -#. Name of a DocType -#: crm/fcrm/doctype/crm_holiday/crm_holiday.json +#. Name of a PageType +#: crm/fcrm/pagetype/crm_holiday/crm_holiday.json msgid "CRM Holiday" msgstr "Praznik" -#. Name of a DocType -#: crm/fcrm/doctype/crm_holiday_list/crm_holiday_list.json +#. Name of a PageType +#: crm/fcrm/pagetype/crm_holiday_list/crm_holiday_list.json msgid "CRM Holiday List" msgstr "Lista Praznika" -#. Name of a DocType -#: crm/fcrm/doctype/crm_industry/crm_industry.json +#. Name of a PageType +#: crm/fcrm/pagetype/crm_industry/crm_industry.json msgid "CRM Industry" msgstr "Industrija" -#. Name of a DocType -#: crm/fcrm/doctype/crm_invitation/crm_invitation.json +#. Name of a PageType +#: crm/fcrm/pagetype/crm_invitation/crm_invitation.json msgid "CRM Invitation" msgstr "Pozivnica" -#. Name of a DocType -#: crm/fcrm/doctype/crm_lead/crm_lead.json +#. Name of a PageType +#: crm/fcrm/pagetype/crm_lead/crm_lead.json msgid "CRM Lead" msgstr "Potencijalni Klijent" -#. Name of a DocType -#: crm/fcrm/doctype/crm_lead_source/crm_lead_source.json +#. Name of a PageType +#: crm/fcrm/pagetype/crm_lead_source/crm_lead_source.json msgid "CRM Lead Source" msgstr "Izvor Potencijalnog Klijenta" -#. Name of a DocType -#: crm/fcrm/doctype/crm_lead_status/crm_lead_status.json +#. Name of a PageType +#: crm/fcrm/pagetype/crm_lead_status/crm_lead_status.json msgid "CRM Lead Status" msgstr "Status Potencijalnog Klijenta" -#. Name of a DocType -#: crm/fcrm/doctype/crm_lost_reason/crm_lost_reason.json +#. Name of a PageType +#: crm/fcrm/pagetype/crm_lost_reason/crm_lost_reason.json msgid "CRM Lost Reason" msgstr "Razlog Gubitka" -#. Name of a DocType -#: crm/fcrm/doctype/crm_notification/crm_notification.json +#. Name of a PageType +#: crm/fcrm/pagetype/crm_notification/crm_notification.json msgid "CRM Notification" msgstr "Obavjest" -#. Name of a DocType -#: crm/fcrm/doctype/crm_organization/crm_organization.json +#. Name of a PageType +#: crm/fcrm/pagetype/crm_organization/crm_organization.json msgid "CRM Organization" msgstr "Organizacija" -#. Label of a shortcut in the Frappe CRM Workspace -#: crm/fcrm/workspace/frappe_crm/frappe_crm.json +#. Label of a shortcut in the Jingrow CRM Workspace +#: crm/fcrm/workspace/jingrow_crm/jingrow_crm.json msgid "CRM Portal Page" msgstr "Stranica Portala" -#. Name of a DocType -#: crm/fcrm/doctype/crm_product/crm_product.json +#. Name of a PageType +#: crm/fcrm/pagetype/crm_product/crm_product.json msgid "CRM Product" msgstr "Stavka" -#. Name of a DocType -#: crm/fcrm/doctype/crm_products/crm_products.json +#. Name of a PageType +#: crm/fcrm/pagetype/crm_products/crm_products.json msgid "CRM Products" msgstr "Stavke" -#. Name of a DocType -#: crm/fcrm/doctype/crm_service_day/crm_service_day.json +#. Name of a PageType +#: crm/fcrm/pagetype/crm_service_day/crm_service_day.json msgid "CRM Service Day" msgstr "Dan Usluge" -#. Name of a DocType -#: crm/fcrm/doctype/crm_service_level_agreement/crm_service_level_agreement.json +#. Name of a PageType +#: crm/fcrm/pagetype/crm_service_level_agreement/crm_service_level_agreement.json msgid "CRM Service Level Agreement" msgstr "Ugovor Razine Usluge" -#. Name of a DocType -#: crm/fcrm/doctype/crm_service_level_priority/crm_service_level_priority.json +#. Name of a PageType +#: crm/fcrm/pagetype/crm_service_level_priority/crm_service_level_priority.json msgid "CRM Service Level Priority" msgstr "Prioritet Nivoa Usluge" -#. Name of a DocType -#: crm/fcrm/doctype/crm_status_change_log/crm_status_change_log.json +#. Name of a PageType +#: crm/fcrm/pagetype/crm_status_change_log/crm_status_change_log.json msgid "CRM Status Change Log" msgstr "Zapisnik Promjena Statusa" -#. Name of a DocType -#: crm/fcrm/doctype/crm_task/crm_task.json +#. Name of a PageType +#: crm/fcrm/pagetype/crm_task/crm_task.json msgid "CRM Task" msgstr "Zadatak" -#. Name of a DocType -#: crm/fcrm/doctype/crm_telephony_agent/crm_telephony_agent.json +#. Name of a PageType +#: crm/fcrm/pagetype/crm_telephony_agent/crm_telephony_agent.json msgid "CRM Telephony Agent" msgstr "Telefonski Agent" -#. Name of a DocType -#: crm/fcrm/doctype/crm_telephony_phone/crm_telephony_phone.json +#. Name of a PageType +#: crm/fcrm/pagetype/crm_telephony_phone/crm_telephony_phone.json msgid "CRM Telephony Phone" msgstr "Telefonija Telefon" -#. Name of a DocType -#: crm/fcrm/doctype/crm_territory/crm_territory.json +#. Name of a PageType +#: crm/fcrm/pagetype/crm_territory/crm_territory.json msgid "CRM Territory" msgstr "Distrikt" -#. Name of a DocType -#: crm/fcrm/doctype/crm_twilio_settings/crm_twilio_settings.json +#. Name of a PageType +#: crm/fcrm/pagetype/crm_twilio_settings/crm_twilio_settings.json msgid "CRM Twilio Settings" msgstr "Twilio Postavke" -#. Name of a DocType -#: crm/fcrm/doctype/crm_view_settings/crm_view_settings.json +#. Name of a PageType +#: crm/fcrm/pagetype/crm_view_settings/crm_view_settings.json msgid "CRM View Settings" msgstr "Postavke Prikaza" @@ -1021,13 +1021,13 @@ msgstr "CSV" msgid "Call Details" msgstr "Detalji Poziva" -#. Label of the receiver (Link) field in DocType 'CRM Call Log' -#: crm/fcrm/doctype/crm_call_log/crm_call_log.json +#. Label of the receiver (Link) field in PageType 'CRM Call Log' +#: crm/fcrm/pagetype/crm_call_log/crm_call_log.json msgid "Call Received By" msgstr "Poziv Primljen Od" -#. Description of the 'Duration' (Duration) field in DocType 'CRM Call Log' -#: crm/fcrm/doctype/crm_call_log/crm_call_log.json +#. Description of the 'Duration' (Duration) field in PageType 'CRM Call Log' +#: crm/fcrm/pagetype/crm_call_log/crm_call_log.json msgid "Call duration in seconds" msgstr "Trajanje poziva u sekundama" @@ -1045,8 +1045,8 @@ msgstr "Nazovi koristeći {0}" msgid "Call with John Doe" msgstr "Poziv sa John Doeom" -#. Label of the caller (Link) field in DocType 'CRM Call Log' -#: crm/fcrm/doctype/crm_call_log/crm_call_log.json +#. Label of the caller (Link) field in PageType 'CRM Call Log' +#: crm/fcrm/pagetype/crm_call_log/crm_call_log.json msgid "Caller" msgstr "Pozivatelj" @@ -1083,10 +1083,10 @@ msgstr "Kamera" msgid "Cancel" msgstr "Otkaži" -#. Option for the 'Status' (Select) field in DocType 'CRM Call Log' -#. Option for the 'Status' (Select) field in DocType 'CRM Task' -#: crm/fcrm/doctype/crm_call_log/crm_call_log.json -#: crm/fcrm/doctype/crm_task/crm_task.json +#. Option for the 'Status' (Select) field in PageType 'CRM Call Log' +#. Option for the 'Status' (Select) field in PageType 'CRM Task' +#: crm/fcrm/pagetype/crm_call_log/crm_call_log.json +#: crm/fcrm/pagetype/crm_task/crm_task.json msgid "Canceled" msgstr "Otkazano" @@ -1094,7 +1094,7 @@ msgstr "Otkazano" msgid "Cannot change role of user with Admin access" msgstr "Nije moguće promijeniti ulogu korisnika s administratorskim pristupom" -#: crm/fcrm/doctype/fcrm_settings/fcrm_settings.py:34 +#: crm/fcrm/pagetype/fcrm_settings/fcrm_settings.py:34 msgid "Cannot delete standard items {0}" msgstr "Nije moguće izbrisati standardne stavke {0}" @@ -1189,8 +1189,8 @@ msgstr "Očisti Dodjelu" msgid "Clear Sort" msgstr "Očisti Sortiranje" -#. Label of the clear_table (Button) field in DocType 'CRM Holiday List' -#: crm/fcrm/doctype/crm_holiday_list/crm_holiday_list.json +#. Label of the clear_table (Button) field in PageType 'CRM Holiday List' +#: crm/fcrm/pagetype/crm_holiday_list/crm_holiday_list.json msgid "Clear Table" msgstr "Očisti Tabelu" @@ -1211,8 +1211,8 @@ msgstr "Zatvori" msgid "Close panel" msgstr "Zatvori ploču" -#. Label of the closed_date (Date) field in DocType 'CRM Deal' -#: crm/fcrm/doctype/crm_deal/crm_deal.json +#. Label of the closed_date (Date) field in PageType 'CRM Deal' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json msgid "Closed Date" msgstr "Datum zaključenja" @@ -1224,10 +1224,10 @@ msgstr "Sklopi" msgid "Collapsible" msgstr "Sklopivo" -#. Label of the color (Select) field in DocType 'CRM Deal Status' -#. Label of the color (Select) field in DocType 'CRM Lead Status' -#: crm/fcrm/doctype/crm_deal_status/crm_deal_status.json -#: crm/fcrm/doctype/crm_lead_status/crm_lead_status.json +#. Label of the color (Select) field in PageType 'CRM Deal Status' +#. Label of the color (Select) field in PageType 'CRM Lead Status' +#: crm/fcrm/pagetype/crm_deal_status/crm_deal_status.json +#: crm/fcrm/pagetype/crm_lead_status/crm_lead_status.json msgid "Color" msgstr "Boja" @@ -1235,20 +1235,20 @@ msgstr "Boja" msgid "Column" msgstr "Kolona" -#. Label of the column_field (Data) field in DocType 'CRM View Settings' -#: crm/fcrm/doctype/crm_view_settings/crm_view_settings.json +#. Label of the column_field (Data) field in PageType 'CRM View Settings' +#: crm/fcrm/pagetype/crm_view_settings/crm_view_settings.json #: frontend/src/components/Kanban/KanbanSettings.vue:12 msgid "Column Field" msgstr "Polje Stupca" -#. Label of the columns (Code) field in DocType 'CRM View Settings' -#: crm/fcrm/doctype/crm_view_settings/crm_view_settings.json +#. Label of the columns (Code) field in PageType 'CRM View Settings' +#: crm/fcrm/pagetype/crm_view_settings/crm_view_settings.json #: frontend/src/components/ColumnSettings.vue:4 msgid "Columns" msgstr "Kolone" -#. Label of the comment (Link) field in DocType 'CRM Notification' -#: crm/fcrm/doctype/crm_notification/crm_notification.json +#. Label of the comment (Link) field in PageType 'CRM Notification' +#: crm/fcrm/pagetype/crm_notification/crm_notification.json #: frontend/src/components/CommentBox.vue:78 #: frontend/src/components/CommunicationArea.vue:16 #: frontend/src/components/Layouts/AppSidebar.vue:579 @@ -1264,20 +1264,20 @@ msgstr "Komentari" msgid "Common reasons for losing deals" msgstr "Uobičajeni razlozi za gubitak poslova" -#. Label of the communication_status (Link) field in DocType 'CRM Deal' -#. Label of the communication_status (Link) field in DocType 'CRM Lead' -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_lead/crm_lead.json +#. Label of the communication_status (Link) field in PageType 'CRM Deal' +#. Label of the communication_status (Link) field in PageType 'CRM Lead' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_lead/crm_lead.json msgid "Communication Status" msgstr "Status Konverzacije" -#. Label of a shortcut in the Frappe CRM Workspace -#: crm/fcrm/workspace/frappe_crm/frappe_crm.json +#. Label of a shortcut in the Jingrow CRM Workspace +#: crm/fcrm/workspace/jingrow_crm/jingrow_crm.json msgid "Communication Statuses" msgstr "Statusi Konverzacije" -#. Label of the erpnext_company (Data) field in DocType 'ERPNext CRM Settings' -#: crm/fcrm/doctype/erpnext_crm_settings/erpnext_crm_settings.json +#. Label of the erpnext_company (Data) field in PageType 'ERPNext CRM Settings' +#: crm/fcrm/pagetype/erpnext_crm_settings/erpnext_crm_settings.json msgid "Company in ERPNext Site" msgstr "Tvrtka u Sistemu" @@ -1285,18 +1285,18 @@ msgstr "Tvrtka u Sistemu" msgid "Complete Registration" msgstr "Završi Registraciju" -#. Option for the 'Status' (Select) field in DocType 'CRM Call Log' -#: crm/fcrm/doctype/crm_call_log/crm_call_log.json +#. Option for the 'Status' (Select) field in PageType 'CRM Call Log' +#: crm/fcrm/pagetype/crm_call_log/crm_call_log.json msgid "Completed" msgstr "Završeno" -#. Option for the 'Device' (Select) field in DocType 'CRM Telephony Agent' -#: crm/fcrm/doctype/crm_telephony_agent/crm_telephony_agent.json +#. Option for the 'Device' (Select) field in PageType 'CRM Telephony Agent' +#: crm/fcrm/pagetype/crm_telephony_agent/crm_telephony_agent.json msgid "Computer" msgstr "Računar" -#. Label of the condition (Code) field in DocType 'CRM Service Level Agreement' -#: crm/fcrm/doctype/crm_service_level_agreement/crm_service_level_agreement.json +#. Label of the condition (Code) field in PageType 'CRM Service Level Agreement' +#: crm/fcrm/pagetype/crm_service_level_agreement/crm_service_level_agreement.json msgid "Condition" msgstr "Uslov" @@ -1354,17 +1354,17 @@ msgstr "Potvrdi prepisivanje" msgid "Connect your email" msgstr "Poveži e-poštu" -#. Label of the contact (Link) field in DocType 'CRM Contacts' -#. Label of the contact (Link) field in DocType 'CRM Deal' -#: crm/fcrm/doctype/crm_contacts/crm_contacts.json -#: crm/fcrm/doctype/crm_deal/crm_deal.json +#. Label of the contact (Link) field in PageType 'CRM Contacts' +#. Label of the contact (Link) field in PageType 'CRM Deal' +#: crm/fcrm/pagetype/crm_contacts/crm_contacts.json +#: crm/fcrm/pagetype/crm_deal/crm_deal.json #: frontend/src/components/Layouts/AppSidebar.vue:552 #: frontend/src/components/Modals/ConvertToDealModal.vue:51 #: frontend/src/pages/MobileLead.vue:145 msgid "Contact" msgstr "Kontakt" -#: crm/fcrm/doctype/crm_lead/crm_lead.py:212 +#: crm/fcrm/pagetype/crm_lead/crm_lead.py:212 msgid "Contact Already Exists" msgstr "Kontakt već postoji" @@ -1384,7 +1384,7 @@ msgstr "Kontakt je dodan" msgid "Contact already added" msgstr "Kontakt je već dodan" -#: crm/fcrm/doctype/crm_lead/crm_lead.py:211 +#: crm/fcrm/pagetype/crm_lead/crm_lead.py:211 msgid "Contact already exists with {0}" msgstr "Kontakt već postoji s {0}" @@ -1405,18 +1405,18 @@ msgstr "Kontakt uklonjen" msgid "Contact updated" msgstr "Kontakt ažuriran" -#. Label of the contacts_tab (Tab Break) field in DocType 'CRM Deal' -#. Label of the contacts (Table) field in DocType 'CRM Deal' -#. Label of a shortcut in the Frappe CRM Workspace -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/workspace/frappe_crm/frappe_crm.json +#. Label of the contacts_tab (Tab Break) field in PageType 'CRM Deal' +#. Label of the contacts (Table) field in PageType 'CRM Deal' +#. Label of a shortcut in the Jingrow CRM Workspace +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/workspace/jingrow_crm/jingrow_crm.json #: frontend/src/pages/Contact.vue:234 frontend/src/pages/MobileContact.vue:212 #: frontend/src/pages/MobileOrganization.vue:331 msgid "Contacts" msgstr "Kontakti" -#. Label of the content (Text Editor) field in DocType 'FCRM Note' -#: crm/fcrm/doctype/fcrm_note/fcrm_note.json +#. Label of the content (Text Editor) field in PageType 'FCRM Note' +#: crm/fcrm/pagetype/fcrm_note/fcrm_note.json #: frontend/src/components/Modals/NoteModal.vue:33 #: frontend/src/components/Settings/EmailTemplate/EditEmailTemplate.vue:89 #: frontend/src/components/Settings/EmailTemplate/EditEmailTemplate.vue:102 @@ -1456,8 +1456,8 @@ msgstr "Pretvori potencijalnog klijenta u posao" msgid "Convert to Deal" msgstr "Pretvori u Posao" -#. Label of the converted (Check) field in DocType 'CRM Lead' -#: crm/fcrm/doctype/crm_lead/crm_lead.json +#. Label of the converted (Check) field in PageType 'CRM Lead' +#: crm/fcrm/pagetype/crm_lead/crm_lead.json msgid "Converted" msgstr "Pretvoreno" @@ -1533,9 +1533,9 @@ msgstr "Stvori Pogled" msgid "Create an event" msgstr "Stvori događaj" -#. Label of the create_customer_on_status_change (Check) field in DocType +#. Label of the create_customer_on_status_change (Check) field in PageType #. 'ERPNext CRM Settings' -#: crm/fcrm/doctype/erpnext_crm_settings/erpnext_crm_settings.json +#: crm/fcrm/pagetype/erpnext_crm_settings/erpnext_crm_settings.json msgid "Create customer on status change" msgstr "Stvori klijenta pri promjeni statusa" @@ -1560,13 +1560,13 @@ msgstr "Napravi bilješku" msgid "Create your first task" msgstr "Napravi zadatak" -#. Label of the currency (Link) field in DocType 'CRM Deal' -#. Label of the currency (Link) field in DocType 'CRM Organization' -#. Label of the currency (Link) field in DocType 'FCRM Settings' -#. Label of the currency_tab (Tab Break) field in DocType 'FCRM Settings' -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_organization/crm_organization.json -#: crm/fcrm/doctype/fcrm_settings/fcrm_settings.json +#. Label of the currency (Link) field in PageType 'CRM Deal' +#. Label of the currency (Link) field in PageType 'CRM Organization' +#. Label of the currency (Link) field in PageType 'FCRM Settings' +#. Label of the currency_tab (Tab Break) field in PageType 'FCRM Settings' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_organization/crm_organization.json +#: crm/fcrm/pagetype/fcrm_settings/fcrm_settings.json #: frontend/src/components/Settings/CurrencySettings.vue:31 msgid "Currency" msgstr "Valuta" @@ -1631,13 +1631,13 @@ msgstr "Dnevna učinkovitost potencijalnih klijenata, poslova i dobivenih poslov msgid "Data" msgstr "Podaci" -#. Option for the 'Type' (Select) field in DocType 'CRM Fields Layout' -#: crm/fcrm/doctype/crm_fields_layout/crm_fields_layout.json +#. Option for the 'Type' (Select) field in PageType 'CRM Fields Layout' +#: crm/fcrm/pagetype/crm_fields_layout/crm_fields_layout.json msgid "Data Fields" msgstr "Polja Podataka" -#. Label of the date (Date) field in DocType 'CRM Holiday' -#: crm/api/dashboard.py:601 crm/fcrm/doctype/crm_holiday/crm_holiday.json +#. Label of the date (Date) field in PageType 'CRM Holiday' +#: crm/api/dashboard.py:601 crm/fcrm/pagetype/crm_holiday/crm_holiday.json #: frontend/src/components/Calendar/CalendarEventPanel.vue:202 msgid "Date" msgstr "Datum" @@ -1660,23 +1660,23 @@ msgstr "Datum & Vrijeme" msgid "Deal" msgstr "Posao" -#. Label of the deal_owner (Link) field in DocType 'CRM Deal' -#: crm/fcrm/doctype/crm_deal/crm_deal.json +#. Label of the deal_owner (Link) field in PageType 'CRM Deal' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json msgid "Deal Owner" msgstr "Odgovorni" -#. Label of the deal_status (Link) field in DocType 'ERPNext CRM Settings' -#: crm/fcrm/doctype/erpnext_crm_settings/erpnext_crm_settings.json +#. Label of the deal_status (Link) field in PageType 'ERPNext CRM Settings' +#: crm/fcrm/pagetype/erpnext_crm_settings/erpnext_crm_settings.json msgid "Deal Status" msgstr "Status Posla" -#. Label of a shortcut in the Frappe CRM Workspace -#: crm/fcrm/workspace/frappe_crm/frappe_crm.json +#. Label of a shortcut in the Jingrow CRM Workspace +#: crm/fcrm/workspace/jingrow_crm/jingrow_crm.json msgid "Deal Statuses" msgstr "Statusi Posla" -#. Label of the deal_value (Currency) field in DocType 'CRM Deal' -#: crm/fcrm/doctype/crm_deal/crm_deal.json +#. Label of the deal_value (Currency) field in PageType 'CRM Deal' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json msgid "Deal Value" msgstr "Vrijednost posla" @@ -1694,8 +1694,8 @@ msgstr "Odgovorni Posla" msgid "Deal value" msgstr "Vrijednost posla" -#. Label of a shortcut in the Frappe CRM Workspace -#: crm/fcrm/workspace/frappe_crm/frappe_crm.json +#. Label of a shortcut in the Jingrow CRM Workspace +#: crm/fcrm/workspace/jingrow_crm/jingrow_crm.json #: frontend/src/pages/Deal.vue:480 frontend/src/pages/MobileContact.vue:288 #: frontend/src/pages/MobileDeal.vue:384 #: frontend/src/pages/MobileOrganization.vue:325 @@ -1732,8 +1732,8 @@ msgstr "Poslovi po distriktu" msgid "Dear {{ lead_name }}, \\n\\nThis is a reminder for the payment of {{ grand_total }}. \\n\\nThanks, \\nFrappé" msgstr "Poštovani {{ lead_name }}, \\n\\nOvo je podsjetnik za plaćanje {{ grand_total }}. \\n\\nHvala, \\nFrappé" -#. Label of the default (Check) field in DocType 'CRM Service Level Agreement' -#: crm/fcrm/doctype/crm_service_level_agreement/crm_service_level_agreement.json +#. Label of the default (Check) field in PageType 'CRM Service Level Agreement' +#: crm/fcrm/pagetype/crm_service_level_agreement/crm_service_level_agreement.json msgid "Default" msgstr "Standard" @@ -1745,8 +1745,8 @@ msgstr "Standard Sanduče Pristigle e-pošte" msgid "Default Incoming" msgstr "Standard Dolazna" -#. Label of the default_medium (Select) field in DocType 'CRM Telephony Agent' -#: crm/fcrm/doctype/crm_telephony_agent/crm_telephony_agent.json +#. Label of the default_medium (Select) field in PageType 'CRM Telephony Agent' +#: crm/fcrm/pagetype/crm_telephony_agent/crm_telephony_agent.json msgid "Default Medium" msgstr "Zadani Medij" @@ -1754,9 +1754,9 @@ msgstr "Zadani Medij" msgid "Default Outgoing" msgstr "Standard Odlazna" -#. Label of the default_priority (Check) field in DocType 'CRM Service Level +#. Label of the default_priority (Check) field in PageType 'CRM Service Level #. Priority' -#: crm/fcrm/doctype/crm_service_level_priority/crm_service_level_priority.json +#: crm/fcrm/pagetype/crm_service_level_priority/crm_service_level_priority.json msgid "Default Priority" msgstr "Standard Prioritet" @@ -1768,7 +1768,7 @@ msgstr "Standard Slanja" msgid "Default Sending and Inbox" msgstr "Standard Slanja i Prijema" -#: crm/fcrm/doctype/crm_service_level_agreement/crm_service_level_agreement.py:33 +#: crm/fcrm/pagetype/crm_service_level_agreement/crm_service_level_agreement.py:33 msgid "Default Service Level Agreement already exists for {0}" msgstr "Zadani Ugovor Razine Usluge već postoji za {0}" @@ -1788,8 +1788,8 @@ msgstr "Zadani medij za pozivanje uspješno je ažuriran" msgid "Default medium" msgstr "Standard Medij" -#: crm/fcrm/doctype/fcrm_settings/fcrm_settings.js:18 -#: crm/fcrm/doctype/fcrm_settings/fcrm_settings.js:30 +#: crm/fcrm/pagetype/fcrm_settings/fcrm_settings.js:18 +#: crm/fcrm/pagetype/fcrm_settings/fcrm_settings.js:30 msgid "Default statuses, custom fields and layouts restored successfully." msgstr "Standard statusi, prilagođena polja i izgledi uspješno su vraćeni." @@ -1825,7 +1825,7 @@ msgstr "Standard statusi, prilagođena polja i izgledi uspješno su vraćeni." msgid "Delete" msgstr "Izbriši" -#: crm/fcrm/doctype/fcrm_settings/fcrm_settings.js:26 +#: crm/fcrm/pagetype/fcrm_settings/fcrm_settings.js:26 msgid "Delete & Restore" msgstr "Izbriši & Vrati" @@ -1883,14 +1883,14 @@ msgstr "Izbriši {0} stavku(e)" msgid "Delete {0} items" msgstr "Izbriši {0} stavke" -#. Label of the description (Text Editor) field in DocType 'CRM Holiday' -#. Label of the description (Text Editor) field in DocType 'CRM Lost Reason' -#. Label of the description (Text Editor) field in DocType 'CRM Product' -#. Label of the description (Text Editor) field in DocType 'CRM Task' -#: crm/fcrm/doctype/crm_holiday/crm_holiday.json -#: crm/fcrm/doctype/crm_lost_reason/crm_lost_reason.json -#: crm/fcrm/doctype/crm_product/crm_product.json -#: crm/fcrm/doctype/crm_task/crm_task.json +#. Label of the description (Text Editor) field in PageType 'CRM Holiday' +#. Label of the description (Text Editor) field in PageType 'CRM Lost Reason' +#. Label of the description (Text Editor) field in PageType 'CRM Product' +#. Label of the description (Text Editor) field in PageType 'CRM Task' +#: crm/fcrm/pagetype/crm_holiday/crm_holiday.json +#: crm/fcrm/pagetype/crm_lost_reason/crm_lost_reason.json +#: crm/fcrm/pagetype/crm_product/crm_product.json +#: crm/fcrm/pagetype/crm_task/crm_task.json #: frontend/src/components/Calendar/CalendarEventPanel.vue:152 #: frontend/src/components/Modals/EventModal.vue:134 #: frontend/src/components/Modals/TaskModal.vue:36 @@ -1907,29 +1907,29 @@ msgstr "Opis je obavezan" msgid "Desk" msgstr "Radni Prostor" -#. Label of the details (Tab Break) field in DocType 'CRM Lead' -#. Label of the details (Text Editor) field in DocType 'CRM Lead Source' -#: crm/fcrm/doctype/crm_lead/crm_lead.json -#: crm/fcrm/doctype/crm_lead_source/crm_lead_source.json +#. Label of the details (Tab Break) field in PageType 'CRM Lead' +#. Label of the details (Text Editor) field in PageType 'CRM Lead Source' +#: crm/fcrm/pagetype/crm_lead/crm_lead.json +#: crm/fcrm/pagetype/crm_lead_source/crm_lead_source.json #: frontend/src/pages/MobileContact.vue:283 #: frontend/src/pages/MobileDeal.vue:424 frontend/src/pages/MobileLead.vue:331 #: frontend/src/pages/MobileOrganization.vue:320 msgid "Details" msgstr "Detalji" -#. Label of the call_receiving_device (Select) field in DocType 'CRM Telephony +#. Label of the call_receiving_device (Select) field in PageType 'CRM Telephony #. Agent' -#: crm/fcrm/doctype/crm_telephony_agent/crm_telephony_agent.json +#: crm/fcrm/pagetype/crm_telephony_agent/crm_telephony_agent.json #: frontend/src/components/FilesUploader/FilesUploaderArea.vue:39 msgid "Device" msgstr "Uređaj" -#: crm/fcrm/doctype/crm_form_script/crm_form_script.js:30 +#: crm/fcrm/pagetype/crm_form_script/crm_form_script.js:30 msgid "Disable" msgstr "Onemogući" -#. Label of the disabled (Check) field in DocType 'CRM Product' -#: crm/fcrm/doctype/crm_product/crm_product.json +#. Label of the disabled (Check) field in PageType 'CRM Product' +#: crm/fcrm/pagetype/crm_product/crm_product.json msgid "Disabled" msgstr "Onemogućeno" @@ -1943,27 +1943,27 @@ msgstr "Odbaci" msgid "Discard unsaved changes?" msgstr "Odbaciti nespremljene promjene?" -#. Label of the discount_percentage (Percent) field in DocType 'CRM Products' -#: crm/fcrm/doctype/crm_products/crm_products.json +#. Label of the discount_percentage (Percent) field in PageType 'CRM Products' +#: crm/fcrm/pagetype/crm_products/crm_products.json msgid "Discount %" msgstr "Popust %" -#. Label of the discount_amount (Currency) field in DocType 'CRM Products' -#: crm/fcrm/doctype/crm_products/crm_products.json +#. Label of the discount_amount (Currency) field in PageType 'CRM Products' +#: crm/fcrm/pagetype/crm_products/crm_products.json msgid "Discount Amount" msgstr "Iznos Popusta" -#. Label of the dt (Link) field in DocType 'CRM Form Script' -#. Label of the dt (Link) field in DocType 'CRM Global Settings' -#. Label of the dt (Link) field in DocType 'CRM View Settings' -#: crm/fcrm/doctype/crm_form_script/crm_form_script.json -#: crm/fcrm/doctype/crm_global_settings/crm_global_settings.json -#: crm/fcrm/doctype/crm_view_settings/crm_view_settings.json -msgid "DocType" -msgstr "DocType" +#. Label of the dt (Link) field in PageType 'CRM Form Script' +#. Label of the dt (Link) field in PageType 'CRM Global Settings' +#. Label of the dt (Link) field in PageType 'CRM View Settings' +#: crm/fcrm/pagetype/crm_form_script/crm_form_script.json +#: crm/fcrm/pagetype/crm_global_settings/crm_global_settings.json +#: crm/fcrm/pagetype/crm_view_settings/crm_view_settings.json +msgid "PageType" +msgstr "PageType" -#. Label of the dt (Link) field in DocType 'CRM Fields Layout' -#: crm/fcrm/doctype/crm_fields_layout/crm_fields_layout.json +#. Label of the dt (Link) field in PageType 'CRM Fields Layout' +#: crm/fcrm/pagetype/crm_fields_layout/crm_fields_layout.json msgid "Document Type" msgstr "Tip Dokumenta" @@ -1983,8 +1983,8 @@ msgstr "Dokument je uspješno ažuriran" msgid "Documentation" msgstr "Dokumentacija" -#. Option for the 'Status' (Select) field in DocType 'CRM Task' -#: crm/fcrm/doctype/crm_task/crm_task.json +#. Option for the 'Status' (Select) field in PageType 'CRM Task' +#: crm/fcrm/pagetype/crm_task/crm_task.json msgid "Done" msgstr "Gotovo" @@ -2006,13 +2006,13 @@ msgstr "Povuci i Ispusti datoteke ovdje ili ih učitaj iz" msgid "Drop files here" msgstr "Ispusti datoteke ovdje" -#. Label of the dropdown_items_tab (Tab Break) field in DocType 'FCRM Settings' -#: crm/fcrm/doctype/fcrm_settings/fcrm_settings.json +#. Label of the dropdown_items_tab (Tab Break) field in PageType 'FCRM Settings' +#: crm/fcrm/pagetype/fcrm_settings/fcrm_settings.json msgid "Dropdown Items" msgstr "Padajuće Stavke" -#. Label of the due_date (Datetime) field in DocType 'CRM Task' -#: crm/fcrm/doctype/crm_task/crm_task.json +#. Label of the due_date (Datetime) field in PageType 'CRM Task' +#: crm/fcrm/pagetype/crm_task/crm_task.json msgid "Due Date" msgstr "Krajnji Rok" @@ -2048,10 +2048,10 @@ msgstr "Dupliciraj događaj" msgid "Duplicate template" msgstr "Dupliciraj predložak" -#. Label of the duration (Duration) field in DocType 'CRM Call Log' -#. Label of the duration (Duration) field in DocType 'CRM Status Change Log' -#: crm/fcrm/doctype/crm_call_log/crm_call_log.json -#: crm/fcrm/doctype/crm_status_change_log/crm_status_change_log.json +#. Label of the duration (Duration) field in PageType 'CRM Call Log' +#. Label of the duration (Duration) field in PageType 'CRM Status Change Log' +#: crm/fcrm/pagetype/crm_call_log/crm_call_log.json +#: crm/fcrm/pagetype/crm_status_change_log/crm_status_change_log.json msgid "Duration" msgstr "Trajanje" @@ -2060,28 +2060,28 @@ msgstr "Trajanje" msgid "ERPNext" msgstr "Sistem" -#. Name of a DocType -#: crm/fcrm/doctype/erpnext_crm_settings/erpnext_crm_settings.json +#. Name of a PageType +#: crm/fcrm/pagetype/erpnext_crm_settings/erpnext_crm_settings.json msgid "ERPNext CRM Settings" msgstr "Postavke Sistema za Prodajnu Podršku" -#. Label of the section_break_oubd (Section Break) field in DocType 'ERPNext +#. Label of the section_break_oubd (Section Break) field in PageType 'ERPNext #. CRM Settings' -#: crm/fcrm/doctype/erpnext_crm_settings/erpnext_crm_settings.json +#: crm/fcrm/pagetype/erpnext_crm_settings/erpnext_crm_settings.json msgid "ERPNext Site API's" msgstr "API-ji Web Stranice Sistema" -#. Label of the erpnext_site_url (Data) field in DocType 'ERPNext CRM Settings' -#: crm/fcrm/doctype/erpnext_crm_settings/erpnext_crm_settings.json +#. Label of the erpnext_site_url (Data) field in PageType 'ERPNext CRM Settings' +#: crm/fcrm/pagetype/erpnext_crm_settings/erpnext_crm_settings.json msgid "ERPNext Site URL" msgstr "URL Web Stranice Sistema" -#: crm/fcrm/doctype/erpnext_crm_settings/erpnext_crm_settings.py:25 +#: crm/fcrm/pagetype/erpnext_crm_settings/erpnext_crm_settings.py:25 msgid "ERPNext is not installed in the current site" msgstr "Sistem nije instaliran na trenutnoj Web Stranici" -#: crm/fcrm/doctype/erpnext_crm_settings/erpnext_crm_settings.py:98 -#: crm/fcrm/doctype/erpnext_crm_settings/erpnext_crm_settings.py:124 +#: crm/fcrm/pagetype/erpnext_crm_settings/erpnext_crm_settings.py:98 +#: crm/fcrm/pagetype/erpnext_crm_settings/erpnext_crm_settings.py:124 msgid "ERPNext is not integrated with the CRM" msgstr "Sistem nije integrisan sa Prodajnom Podrškom" @@ -2191,12 +2191,12 @@ msgstr "Uređivanje Reda {0}" msgid "Editing event" msgstr "Uređivanje događaja" -#. Label of the email (Data) field in DocType 'CRM Contacts' -#. Label of the email (Data) field in DocType 'CRM Invitation' -#. Label of the email (Data) field in DocType 'CRM Lead' -#: crm/fcrm/doctype/crm_contacts/crm_contacts.json -#: crm/fcrm/doctype/crm_invitation/crm_invitation.json -#: crm/fcrm/doctype/crm_lead/crm_lead.json frontend/src/pages/Contact.vue:510 +#. Label of the email (Data) field in PageType 'CRM Contacts' +#. Label of the email (Data) field in PageType 'CRM Invitation' +#. Label of the email (Data) field in PageType 'CRM Lead' +#: crm/fcrm/pagetype/crm_contacts/crm_contacts.json +#: crm/fcrm/pagetype/crm_invitation/crm_invitation.json +#: crm/fcrm/pagetype/crm_lead/crm_lead.json frontend/src/pages/Contact.vue:510 #: frontend/src/pages/MobileContact.vue:518 #: frontend/src/pages/MobileOrganization.vue:462 #: frontend/src/pages/MobileOrganization.vue:490 @@ -2213,8 +2213,8 @@ msgstr "Računi e-pošte" msgid "Email ID is required" msgstr "Adresa e-pošte je obavezna" -#. Label of the email_sent_at (Datetime) field in DocType 'CRM Invitation' -#: crm/fcrm/doctype/crm_invitation/crm_invitation.json +#. Label of the email_sent_at (Datetime) field in PageType 'CRM Invitation' +#: crm/fcrm/pagetype/crm_invitation/crm_invitation.json msgid "Email Sent At" msgstr "E-pošta poslana u" @@ -2272,12 +2272,12 @@ msgstr "Prazno - Odaberi polje po kojem ćete filtrirati" msgid "Empty - Choose a field to sort by" msgstr "Prazno - Odaberi polje po kojem ćete sortirati" -#: crm/fcrm/doctype/crm_form_script/crm_form_script.js:30 +#: crm/fcrm/pagetype/crm_form_script/crm_form_script.js:30 msgid "Enable" msgstr "Omogući" -#. Label of the enable_forecasting (Check) field in DocType 'FCRM Settings' -#: crm/fcrm/doctype/fcrm_settings/fcrm_settings.json +#. Label of the enable_forecasting (Check) field in PageType 'FCRM Settings' +#: crm/fcrm/pagetype/fcrm_settings/fcrm_settings.json msgid "Enable Forecasting" msgstr "Omogući Predviđanje" @@ -2293,18 +2293,18 @@ msgstr "Omogući odlazne" msgid "Enable forecasting" msgstr "Omogući Predviđanje" -#. Label of the enabled (Check) field in DocType 'CRM Exotel Settings' -#. Label of the enabled (Check) field in DocType 'CRM Form Script' -#. Label of the enabled (Check) field in DocType 'CRM Service Level Agreement' -#. Label of the enabled (Check) field in DocType 'CRM Twilio Settings' -#. Label of the enabled (Check) field in DocType 'ERPNext CRM Settings' -#. Label of the enabled (Check) field in DocType 'Helpdesk CRM Settings' -#: crm/fcrm/doctype/crm_exotel_settings/crm_exotel_settings.json -#: crm/fcrm/doctype/crm_form_script/crm_form_script.json -#: crm/fcrm/doctype/crm_service_level_agreement/crm_service_level_agreement.json -#: crm/fcrm/doctype/crm_twilio_settings/crm_twilio_settings.json -#: crm/fcrm/doctype/erpnext_crm_settings/erpnext_crm_settings.json -#: crm/fcrm/doctype/helpdesk_crm_settings/helpdesk_crm_settings.json +#. Label of the enabled (Check) field in PageType 'CRM Exotel Settings' +#. Label of the enabled (Check) field in PageType 'CRM Form Script' +#. Label of the enabled (Check) field in PageType 'CRM Service Level Agreement' +#. Label of the enabled (Check) field in PageType 'CRM Twilio Settings' +#. Label of the enabled (Check) field in PageType 'ERPNext CRM Settings' +#. Label of the enabled (Check) field in PageType 'Helpdesk CRM Settings' +#: crm/fcrm/pagetype/crm_exotel_settings/crm_exotel_settings.json +#: crm/fcrm/pagetype/crm_form_script/crm_form_script.json +#: crm/fcrm/pagetype/crm_service_level_agreement/crm_service_level_agreement.json +#: crm/fcrm/pagetype/crm_twilio_settings/crm_twilio_settings.json +#: crm/fcrm/pagetype/erpnext_crm_settings/erpnext_crm_settings.json +#: crm/fcrm/pagetype/helpdesk_crm_settings/helpdesk_crm_settings.json #: frontend/src/components/Settings/AssignmentRules/AssignmentRuleView.vue:32 #: frontend/src/components/Settings/AssignmentRules/AssignmentRulesList.vue:21 #: frontend/src/components/Settings/EmailTemplate/EditEmailTemplate.vue:18 @@ -2313,15 +2313,15 @@ msgstr "Omogući Predviđanje" msgid "Enabled" msgstr "Omogućeno" -#. Label of the end_date (Date) field in DocType 'CRM Service Level Agreement' -#: crm/fcrm/doctype/crm_service_level_agreement/crm_service_level_agreement.json +#. Label of the end_date (Date) field in PageType 'CRM Service Level Agreement' +#: crm/fcrm/pagetype/crm_service_level_agreement/crm_service_level_agreement.json msgid "End Date" msgstr "Datum završetka" -#. Label of the end_time (Datetime) field in DocType 'CRM Call Log' -#. Label of the end_time (Time) field in DocType 'CRM Service Day' -#: crm/fcrm/doctype/crm_call_log/crm_call_log.json -#: crm/fcrm/doctype/crm_service_day/crm_service_day.json +#. Label of the end_time (Datetime) field in PageType 'CRM Call Log' +#. Label of the end_time (Time) field in PageType 'CRM Service Day' +#: crm/fcrm/pagetype/crm_call_log/crm_call_log.json +#: crm/fcrm/pagetype/crm_service_day/crm_service_day.json #: frontend/src/components/Calendar/CalendarEventPanel.vue:242 #: frontend/src/components/Modals/EventModal.vue:112 msgid "End Time" @@ -2362,15 +2362,15 @@ msgstr "Greška pri pretvaranju u posao: {0}" msgid "Error updating field" msgstr "Pogreška pri ažuriranju polja" -#: crm/fcrm/doctype/erpnext_crm_settings/erpnext_crm_settings.py:279 +#: crm/fcrm/pagetype/erpnext_crm_settings/erpnext_crm_settings.py:279 msgid "Error while creating customer in ERPNext, check error log for more details" msgstr "Pogreška prilikom kreiranja klijenta u Sistemu, provjerite zapisnik grešaka za više detalja" -#: crm/fcrm/doctype/erpnext_crm_settings/erpnext_crm_settings.py:191 +#: crm/fcrm/pagetype/erpnext_crm_settings/erpnext_crm_settings.py:191 msgid "Error while creating prospect in ERPNext, check error log for more details" msgstr "Pogreška prilikom kreiranja potencijalnog klijenta u Sistemu, provjeri zapisnik grešaka za više detalja" -#: crm/fcrm/doctype/erpnext_crm_settings/erpnext_crm_settings.py:117 +#: crm/fcrm/pagetype/erpnext_crm_settings/erpnext_crm_settings.py:117 msgid "Error while fetching customer in ERPNext, check error log for more details" msgstr "Pogreška prilikom preuzimanja klijenta u Sistem, provjeri zapisnik grešaka za više detalja" @@ -2395,16 +2395,16 @@ msgstr "Događaji" msgid "Excel" msgstr "Excel" -#. Label of the exchange_rate (Float) field in DocType 'CRM Deal' -#. Label of the exchange_rate (Float) field in DocType 'CRM Organization' -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_organization/crm_organization.json +#. Label of the exchange_rate (Float) field in PageType 'CRM Deal' +#. Label of the exchange_rate (Float) field in PageType 'CRM Organization' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_organization/crm_organization.json msgid "Exchange Rate" msgstr "Devizni Kurs" -#. Label of the exchange_rate_provider_section (Section Break) field in DocType +#. Label of the exchange_rate_provider_section (Section Break) field in PageType #. 'FCRM Settings' -#: crm/fcrm/doctype/fcrm_settings/fcrm_settings.json +#: crm/fcrm/pagetype/fcrm_settings/fcrm_settings.json msgid "Exchange Rate Provider" msgstr "Pružatelj Usluga Tečaja" @@ -2412,12 +2412,12 @@ msgstr "Pružatelj Usluga Tečaja" msgid "Exchange rate provider" msgstr "Pružatelj Usluga Tečaja" -#. Option for the 'Telephony Medium' (Select) field in DocType 'CRM Call Log' -#. Label of the exotel (Check) field in DocType 'CRM Telephony Agent' -#. Option for the 'Default Medium' (Select) field in DocType 'CRM Telephony +#. Option for the 'Telephony Medium' (Select) field in PageType 'CRM Call Log' +#. Label of the exotel (Check) field in PageType 'CRM Telephony Agent' +#. Option for the 'Default Medium' (Select) field in PageType 'CRM Telephony #. Agent' -#: crm/fcrm/doctype/crm_call_log/crm_call_log.json -#: crm/fcrm/doctype/crm_telephony_agent/crm_telephony_agent.json +#: crm/fcrm/pagetype/crm_call_log/crm_call_log.json +#: crm/fcrm/pagetype/crm_telephony_agent/crm_telephony_agent.json #: frontend/src/components/Layouts/AppSidebar.vue:602 #: frontend/src/components/Settings/TelephonySettings.vue:41 #: frontend/src/components/Settings/TelephonySettings.vue:63 @@ -2428,8 +2428,8 @@ msgstr "Exotel" msgid "Exotel Exception" msgstr "Exotel Iznimka" -#. Label of the exotel_number (Data) field in DocType 'CRM Telephony Agent' -#: crm/fcrm/doctype/crm_telephony_agent/crm_telephony_agent.json +#. Label of the exotel_number (Data) field in PageType 'CRM Telephony Agent' +#: crm/fcrm/pagetype/crm_telephony_agent/crm_telephony_agent.json msgid "Exotel Number" msgstr "Exotel Broj" @@ -2453,26 +2453,26 @@ msgstr "Exotel postavke su uspješno ažurirane" msgid "Expand" msgstr "Proširi" -#. Label of the expected_closure_date (Date) field in DocType 'CRM Deal' -#: crm/fcrm/doctype/crm_deal/crm_deal.json +#. Label of the expected_closure_date (Date) field in PageType 'CRM Deal' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json msgid "Expected Closure Date" msgstr "Očekivani datum zaključivanja" -#: crm/fcrm/doctype/crm_deal/crm_deal.py:173 +#: crm/fcrm/pagetype/crm_deal/crm_deal.py:173 msgid "Expected Closure Date is required." msgstr "Očekivani datum zatvaranja je obavezan." -#. Label of the expected_deal_value (Currency) field in DocType 'CRM Deal' -#: crm/fcrm/doctype/crm_deal/crm_deal.json +#. Label of the expected_deal_value (Currency) field in PageType 'CRM Deal' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json msgid "Expected Deal Value" msgstr "Očekivana vrijednost posla" -#: crm/fcrm/doctype/crm_deal/crm_deal.py:171 +#: crm/fcrm/pagetype/crm_deal/crm_deal.py:171 msgid "Expected Deal Value is required." msgstr "Očekivana vrijednost posla je obavezna." -#. Option for the 'Status' (Select) field in DocType 'CRM Invitation' -#: crm/fcrm/doctype/crm_invitation/crm_invitation.json +#. Option for the 'Status' (Select) field in PageType 'CRM Invitation' +#: crm/fcrm/pagetype/crm_invitation/crm_invitation.json msgid "Expired" msgstr "Isteklo" @@ -2489,22 +2489,22 @@ msgstr "Izvezi Sve {0} Zapis(e)" msgid "Export Type" msgstr "Tip Izvoza" -#. Name of a DocType -#: crm/fcrm/doctype/fcrm_note/fcrm_note.json +#. Name of a PageType +#: crm/fcrm/pagetype/fcrm_note/fcrm_note.json msgid "FCRM Note" msgstr "Napomena" -#. Name of a DocType -#: crm/fcrm/doctype/fcrm_settings/fcrm_settings.json +#. Name of a PageType +#: crm/fcrm/pagetype/fcrm_settings/fcrm_settings.json msgid "FCRM Settings" msgstr "Postavke" -#. Option for the 'Status' (Select) field in DocType 'CRM Call Log' -#. Option for the 'SLA Status' (Select) field in DocType 'CRM Deal' -#. Option for the 'SLA Status' (Select) field in DocType 'CRM Lead' -#: crm/fcrm/doctype/crm_call_log/crm_call_log.json -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_lead/crm_lead.json +#. Option for the 'Status' (Select) field in PageType 'CRM Call Log' +#. Option for the 'SLA Status' (Select) field in PageType 'CRM Deal' +#. Option for the 'SLA Status' (Select) field in PageType 'CRM Lead' +#: crm/fcrm/pagetype/crm_call_log/crm_call_log.json +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_lead/crm_lead.json msgid "Failed" msgstr "Neuspješno" @@ -2528,7 +2528,7 @@ msgstr "Nije uspjelo stvaranje predloška" msgid "Failed to delete template" msgstr "Brisanje predloška nije uspjelo" -#: crm/fcrm/doctype/fcrm_settings/fcrm_settings.py:205 +#: crm/fcrm/pagetype/fcrm_settings/fcrm_settings.py:205 msgid "Failed to fetch exchange rate from {0} to {1} on {2}. Please check your internet connection or try again later." msgstr "Nije uspjelo preuzimanje tečaja iz {0} u {1} {2}. Provjerite internetsku vezu ili pokušajte ponovno kasnije." @@ -2561,8 +2561,8 @@ msgstr "Nije uspjelo ažuriranje profila" msgid "Failed to update template" msgstr "Nije uspjelo ažuriranje predloška" -#. Label of the favicon (Attach) field in DocType 'FCRM Settings' -#: crm/fcrm/doctype/fcrm_settings/fcrm_settings.json +#. Label of the favicon (Attach) field in PageType 'FCRM Settings' +#: crm/fcrm/pagetype/fcrm_settings/fcrm_settings.json #: frontend/src/components/Settings/BrandSettings.vue:87 msgid "Favicon" msgstr "Favicon" @@ -2586,23 +2586,23 @@ msgid "File \"{0}\" was skipped because only {1} uploads are allowed" msgstr "Datoteka \"{0}\" je preskočena jer su dopušteni prijenosi samo {1}" #: frontend/src/components/FilesUploader/FilesUploaderArea.vue:359 -msgid "File \"{0}\" was skipped because only {1} uploads are allowed for DocType \"{2}\"" -msgstr "Datoteka \"{0}\" je preskočena jer su samo {1} prijenosi dopušteni za DocType \"{2}\"" +msgid "File \"{0}\" was skipped because only {1} uploads are allowed for PageType \"{2}\"" +msgstr "Datoteka \"{0}\" je preskočena jer su samo {1} prijenosi dopušteni za PageType \"{2}\"" #: frontend/src/components/Filter.vue:6 msgid "Filter" msgstr "Filtriraj" -#. Label of the filters (Code) field in DocType 'CRM View Settings' -#. Label of the filters_tab (Tab Break) field in DocType 'CRM View Settings' -#: crm/fcrm/doctype/crm_view_settings/crm_view_settings.json +#. Label of the filters (Code) field in PageType 'CRM View Settings' +#. Label of the filters_tab (Tab Break) field in PageType 'CRM View Settings' +#: crm/fcrm/pagetype/crm_view_settings/crm_view_settings.json msgid "Filters" msgstr "Filteri" -#. Label of the first_name (Data) field in DocType 'CRM Deal' -#. Label of the first_name (Data) field in DocType 'CRM Lead' -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_lead/crm_lead.json +#. Label of the first_name (Data) field in PageType 'CRM Deal' +#. Label of the first_name (Data) field in PageType 'CRM Lead' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_lead/crm_lead.json #: frontend/src/components/ColumnSettings.vue:103 #: frontend/src/components/Filter.vue:57 frontend/src/components/Filter.vue:88 #: frontend/src/components/SortBy.vue:6 frontend/src/components/SortBy.vue:103 @@ -2614,30 +2614,30 @@ msgstr "Ime" msgid "First Name is mandatory" msgstr "Ime je obavezno" -#. Label of the first_responded_on (Datetime) field in DocType 'CRM Deal' -#. Label of the first_responded_on (Datetime) field in DocType 'CRM Lead' -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_lead/crm_lead.json +#. Label of the first_responded_on (Datetime) field in PageType 'CRM Deal' +#. Label of the first_responded_on (Datetime) field in PageType 'CRM Lead' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_lead/crm_lead.json msgid "First Responded On" msgstr "Prvi Odgovor" -#. Option for the 'SLA Status' (Select) field in DocType 'CRM Deal' -#. Option for the 'SLA Status' (Select) field in DocType 'CRM Lead' -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_lead/crm_lead.json +#. Option for the 'SLA Status' (Select) field in PageType 'CRM Deal' +#. Option for the 'SLA Status' (Select) field in PageType 'CRM Lead' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_lead/crm_lead.json msgid "First Response Due" msgstr "Rok za Prvi Odgovor" -#. Label of the first_response_time (Duration) field in DocType 'CRM Service +#. Label of the first_response_time (Duration) field in PageType 'CRM Service #. Level Priority' -#: crm/fcrm/doctype/crm_service_level_priority/crm_service_level_priority.json +#: crm/fcrm/pagetype/crm_service_level_priority/crm_service_level_priority.json msgid "First Response TIme" msgstr "Vrijeme Prvog Odgovora" -#. Label of the first_response_time (Duration) field in DocType 'CRM Deal' -#. Label of the first_response_time (Duration) field in DocType 'CRM Lead' -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_lead/crm_lead.json +#. Label of the first_response_time (Duration) field in PageType 'CRM Deal' +#. Label of the first_response_time (Duration) field in PageType 'CRM Lead' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_lead/crm_lead.json msgid "First Response Time" msgstr "Vrijeme Prvog Odgovora" @@ -2670,66 +2670,66 @@ msgstr "Predviđanje je uspješno onemogućeno" msgid "Forecasting enabled successfully" msgstr "Predviđanje je uspješno omogućeno" -#. Option for the 'Apply To' (Select) field in DocType 'CRM Form Script' -#: crm/fcrm/doctype/crm_form_script/crm_form_script.json +#. Option for the 'Apply To' (Select) field in PageType 'CRM Form Script' +#: crm/fcrm/pagetype/crm_form_script/crm_form_script.json msgid "Form" msgstr "Forma" -#: crm/fcrm/doctype/erpnext_crm_settings/erpnext_crm_settings.js:19 +#: crm/fcrm/pagetype/erpnext_crm_settings/erpnext_crm_settings.js:19 msgid "Form Script updated successfully" msgstr "Skripta Obrasca je uspješno ažurirana" #. Name of a Workspace -#: crm/fcrm/workspace/frappe_crm/frappe_crm.json -msgid "Frappe CRM" -msgstr "Frappe CRM" +#: crm/fcrm/workspace/jingrow_crm/jingrow_crm.json +msgid "Jingrow CRM" +msgstr "Jingrow CRM" #: frontend/src/components/Layouts/AppSidebar.vue:608 -msgid "Frappe CRM mobile" +msgid "Jingrow CRM mobile" msgstr "Mobilna Aplikacija" -#. Option for the 'Weekly Off' (Select) field in DocType 'CRM Holiday List' -#. Option for the 'Workday' (Select) field in DocType 'CRM Service Day' -#: crm/fcrm/doctype/crm_holiday_list/crm_holiday_list.json -#: crm/fcrm/doctype/crm_service_day/crm_service_day.json +#. Option for the 'Weekly Off' (Select) field in PageType 'CRM Holiday List' +#. Option for the 'Workday' (Select) field in PageType 'CRM Service Day' +#: crm/fcrm/pagetype/crm_holiday_list/crm_holiday_list.json +#: crm/fcrm/pagetype/crm_service_day/crm_service_day.json msgid "Friday" msgstr "Petak" -#. Label of the from (Data) field in DocType 'CRM Call Log' -#. Label of the from (Data) field in DocType 'CRM Status Change Log' -#: crm/fcrm/doctype/crm_call_log/crm_call_log.json -#: crm/fcrm/doctype/crm_status_change_log/crm_status_change_log.json +#. Label of the from (Data) field in PageType 'CRM Call Log' +#. Label of the from (Data) field in PageType 'CRM Status Change Log' +#: crm/fcrm/pagetype/crm_call_log/crm_call_log.json +#: crm/fcrm/pagetype/crm_status_change_log/crm_status_change_log.json msgid "From" msgstr "Od" -#. Label of the from_date (Date) field in DocType 'CRM Holiday List' -#. Label of the from_date (Datetime) field in DocType 'CRM Status Change Log' -#: crm/fcrm/doctype/crm_holiday_list/crm_holiday_list.json -#: crm/fcrm/doctype/crm_status_change_log/crm_status_change_log.json +#. Label of the from_date (Date) field in PageType 'CRM Holiday List' +#. Label of the from_date (Datetime) field in PageType 'CRM Status Change Log' +#: crm/fcrm/pagetype/crm_holiday_list/crm_holiday_list.json +#: crm/fcrm/pagetype/crm_status_change_log/crm_status_change_log.json msgid "From Date" msgstr "Od Datuma" -#. Label of the from_type (Data) field in DocType 'CRM Status Change Log' -#: crm/fcrm/doctype/crm_status_change_log/crm_status_change_log.json +#. Label of the from_type (Data) field in PageType 'CRM Status Change Log' +#: crm/fcrm/pagetype/crm_status_change_log/crm_status_change_log.json msgid "From Type" msgstr "Od Tipa" -#. Label of the from_user (Link) field in DocType 'CRM Notification' -#: crm/fcrm/doctype/crm_notification/crm_notification.json +#. Label of the from_user (Link) field in PageType 'CRM Notification' +#: crm/fcrm/pagetype/crm_notification/crm_notification.json msgid "From User" msgstr "Od korisnika" -#. Option for the 'SLA Status' (Select) field in DocType 'CRM Deal' -#. Option for the 'SLA Status' (Select) field in DocType 'CRM Lead' -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_lead/crm_lead.json +#. Option for the 'SLA Status' (Select) field in PageType 'CRM Deal' +#. Option for the 'SLA Status' (Select) field in PageType 'CRM Lead' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_lead/crm_lead.json msgid "Fulfilled" msgstr "Ispunjeno" -#. Label of the full_name (Data) field in DocType 'CRM Contacts' -#. Label of the lead_name (Data) field in DocType 'CRM Lead' -#: crm/fcrm/doctype/crm_contacts/crm_contacts.json -#: crm/fcrm/doctype/crm_lead/crm_lead.json +#. Label of the full_name (Data) field in PageType 'CRM Contacts' +#. Label of the lead_name (Data) field in PageType 'CRM Lead' +#: crm/fcrm/pagetype/crm_contacts/crm_contacts.json +#: crm/fcrm/pagetype/crm_lead/crm_lead.json msgid "Full Name" msgstr "Puno Ime" @@ -2742,12 +2742,12 @@ msgstr "Konverzija lijevka" msgid "GMT+5:30" msgstr "GMT+5:30" -#. Label of the gender (Link) field in DocType 'CRM Contacts' -#. Label of the gender (Link) field in DocType 'CRM Deal' -#. Label of the gender (Link) field in DocType 'CRM Lead' -#: crm/fcrm/doctype/crm_contacts/crm_contacts.json -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_lead/crm_lead.json +#. Label of the gender (Link) field in PageType 'CRM Contacts' +#. Label of the gender (Link) field in PageType 'CRM Deal' +#. Label of the gender (Link) field in PageType 'CRM Lead' +#: crm/fcrm/pagetype/crm_contacts/crm_contacts.json +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_lead/crm_lead.json msgid "Gender" msgstr "Rod" @@ -2771,20 +2771,20 @@ msgstr "Idi na stranicu pozivnica" msgid "Go to website" msgstr "Idi na web stranicu" -#. Option for the 'Type' (Select) field in DocType 'CRM Fields Layout' -#: crm/fcrm/doctype/crm_fields_layout/crm_fields_layout.json +#. Option for the 'Type' (Select) field in PageType 'CRM Fields Layout' +#: crm/fcrm/pagetype/crm_fields_layout/crm_fields_layout.json msgid "Grid Row" msgstr "Red Mreže" -#. Label of the group_by_tab (Tab Break) field in DocType 'CRM View Settings' -#: crm/fcrm/doctype/crm_view_settings/crm_view_settings.json +#. Label of the group_by_tab (Tab Break) field in PageType 'CRM View Settings' +#: crm/fcrm/pagetype/crm_view_settings/crm_view_settings.json #: frontend/src/components/ViewControls.vue:379 #: frontend/src/components/ViewControls.vue:611 frontend/src/utils/view.js:16 msgid "Group By" msgstr "Grupiši po" -#. Label of the group_by_field (Data) field in DocType 'CRM View Settings' -#: crm/fcrm/doctype/crm_view_settings/crm_view_settings.json +#. Label of the group_by_field (Data) field in PageType 'CRM View Settings' +#: crm/fcrm/pagetype/crm_view_settings/crm_view_settings.json msgid "Group By Field" msgstr "Grupiraj po Polju" @@ -2808,28 +2808,28 @@ msgstr "Pomoć" msgid "Helpdesk" msgstr "Podrška" -#. Name of a DocType -#: crm/fcrm/doctype/helpdesk_crm_settings/helpdesk_crm_settings.json +#. Name of a PageType +#: crm/fcrm/pagetype/helpdesk_crm_settings/helpdesk_crm_settings.json msgid "Helpdesk CRM Settings" msgstr "Postavke Prodajne Podršku" -#. Label of the helpdesk_site_apis_section (Section Break) field in DocType +#. Label of the helpdesk_site_apis_section (Section Break) field in PageType #. 'Helpdesk CRM Settings' -#: crm/fcrm/doctype/helpdesk_crm_settings/helpdesk_crm_settings.json +#: crm/fcrm/pagetype/helpdesk_crm_settings/helpdesk_crm_settings.json msgid "Helpdesk Site API's" msgstr "API Helpdesk sajta" -#. Label of the helpdesk_site_url (Data) field in DocType 'Helpdesk CRM +#. Label of the helpdesk_site_url (Data) field in PageType 'Helpdesk CRM #. Settings' -#: crm/fcrm/doctype/helpdesk_crm_settings/helpdesk_crm_settings.json +#: crm/fcrm/pagetype/helpdesk_crm_settings/helpdesk_crm_settings.json msgid "Helpdesk Site URL" msgstr "URL Helpdesk sajta" -#: crm/fcrm/doctype/helpdesk_crm_settings/helpdesk_crm_settings.py:18 +#: crm/fcrm/pagetype/helpdesk_crm_settings/helpdesk_crm_settings.py:18 msgid "Helpdesk is not installed in the current site" msgstr "Helpdesk nije instaliran na trenutnom sajtu" -#: crm/fcrm/doctype/helpdesk_crm_settings/helpdesk_crm_settings.py:40 +#: crm/fcrm/pagetype/helpdesk_crm_settings/helpdesk_crm_settings.py:40 msgid "Helpdesk is not integrated with the CRM" msgstr "Helpdesk nije integrisan sa Prodajnom Podrškom" @@ -2845,8 +2845,8 @@ msgstr "Helpdeks Postavke ažurirane" msgid "Hi John, \\n\\nCan you please provide more details on this..." msgstr "Bok John, \\n\\nMožete li dati više pojedinosti o ovome..." -#. Label of the hidden (Check) field in DocType 'CRM Dropdown Item' -#: crm/fcrm/doctype/crm_dropdown_item/crm_dropdown_item.json +#. Label of the hidden (Check) field in PageType 'CRM Dropdown Item' +#: crm/fcrm/pagetype/crm_dropdown_item/crm_dropdown_item.json msgid "Hidden" msgstr "Sakriveno" @@ -2877,26 +2877,26 @@ msgstr "Sakrij oznaku" msgid "Hide preview" msgstr "Sakrij pregled" -#. Option for the 'Priority' (Select) field in DocType 'CRM Task' -#: crm/fcrm/doctype/crm_task/crm_task.json +#. Option for the 'Priority' (Select) field in PageType 'CRM Task' +#: crm/fcrm/pagetype/crm_task/crm_task.json msgid "High" msgstr "Visoki" -#. Label of the holiday_list (Link) field in DocType 'CRM Service Level +#. Label of the holiday_list (Link) field in PageType 'CRM Service Level #. Agreement' -#: crm/fcrm/doctype/crm_service_level_agreement/crm_service_level_agreement.json +#: crm/fcrm/pagetype/crm_service_level_agreement/crm_service_level_agreement.json msgid "Holiday List" msgstr "Lista Praznika" -#. Label of the holiday_list_name (Data) field in DocType 'CRM Holiday List' -#: crm/fcrm/doctype/crm_holiday_list/crm_holiday_list.json +#. Label of the holiday_list_name (Data) field in PageType 'CRM Holiday List' +#: crm/fcrm/pagetype/crm_holiday_list/crm_holiday_list.json msgid "Holiday List Name" msgstr "Naziv Liste Praznika" -#. Label of the holidays_section (Section Break) field in DocType 'CRM Holiday +#. Label of the holidays_section (Section Break) field in PageType 'CRM Holiday #. List' -#. Label of the holidays (Table) field in DocType 'CRM Holiday List' -#: crm/fcrm/doctype/crm_holiday_list/crm_holiday_list.json +#. Label of the holidays (Table) field in PageType 'CRM Holiday List' +#: crm/fcrm/pagetype/crm_holiday_list/crm_holiday_list.json msgid "Holidays" msgstr "Praznici" @@ -2914,15 +2914,15 @@ msgstr "Početnje radnje" msgid "I understand, add conditions" msgstr "Razumijem, dodaj uvjete" -#. Label of the id (Data) field in DocType 'CRM Call Log' -#: crm/fcrm/doctype/crm_call_log/crm_call_log.json +#. Label of the id (Data) field in PageType 'CRM Call Log' +#: crm/fcrm/pagetype/crm_call_log/crm_call_log.json msgid "ID" msgstr "ID" -#. Label of the icon (Code) field in DocType 'CRM Dropdown Item' -#. Label of the icon (Data) field in DocType 'CRM View Settings' -#: crm/fcrm/doctype/crm_dropdown_item/crm_dropdown_item.json -#: crm/fcrm/doctype/crm_view_settings/crm_view_settings.json +#. Label of the icon (Code) field in PageType 'CRM Dropdown Item' +#. Label of the icon (Data) field in PageType 'CRM View Settings' +#: crm/fcrm/pagetype/crm_dropdown_item/crm_dropdown_item.json +#: crm/fcrm/pagetype/crm_view_settings/crm_view_settings.json msgid "Icon" msgstr "Ikona" @@ -2942,10 +2942,10 @@ msgstr "Ako je omogućeno, odlazna e-pošta može se slati s ovog računa." msgid "If enabled, records can be created from the incoming emails on this account." msgstr "Ako je omogućeno, zapisi se mogu kreirati iz dolazne e-pošte na ovom računu." -#. Label of the image (Attach Image) field in DocType 'CRM Lead' -#. Label of the image (Attach Image) field in DocType 'CRM Product' -#: crm/fcrm/doctype/crm_lead/crm_lead.json -#: crm/fcrm/doctype/crm_product/crm_product.json +#. Label of the image (Attach Image) field in PageType 'CRM Lead' +#. Label of the image (Attach Image) field in PageType 'CRM Product' +#: crm/fcrm/pagetype/crm_lead/crm_lead.json +#: crm/fcrm/pagetype/crm_product/crm_product.json msgid "Image" msgstr "Slika" @@ -2957,10 +2957,10 @@ msgstr "Slika" msgid "In" msgstr "U" -#. Option for the 'Status' (Select) field in DocType 'CRM Call Log' -#. Option for the 'Status' (Select) field in DocType 'CRM Task' -#: crm/fcrm/doctype/crm_call_log/crm_call_log.json -#: crm/fcrm/doctype/crm_task/crm_task.json +#. Option for the 'Status' (Select) field in PageType 'CRM Call Log' +#. Option for the 'Status' (Select) field in PageType 'CRM Task' +#: crm/fcrm/pagetype/crm_call_log/crm_call_log.json +#: crm/fcrm/pagetype/crm_task/crm_task.json msgid "In Progress" msgstr "U Toku" @@ -2976,8 +2976,8 @@ msgstr "Dolazni Poziv" msgid "Inbox" msgstr "Pristigla Pošta" -#. Option for the 'Type' (Select) field in DocType 'CRM Call Log' -#: crm/fcrm/doctype/crm_call_log/crm_call_log.json +#. Option for the 'Type' (Select) field in PageType 'CRM Call Log' +#: crm/fcrm/pagetype/crm_call_log/crm_call_log.json msgid "Incoming" msgstr "Dolazeći" @@ -2985,24 +2985,24 @@ msgstr "Dolazeći" msgid "Incoming call..." msgstr "Dolazni poziv..." -#. Label of a shortcut in the Frappe CRM Workspace -#: crm/fcrm/workspace/frappe_crm/frappe_crm.json +#. Label of a shortcut in the Jingrow CRM Workspace +#: crm/fcrm/workspace/jingrow_crm/jingrow_crm.json msgid "Industries" msgstr "Industrije" -#. Label of the industry (Link) field in DocType 'CRM Deal' -#. Label of the industry (Data) field in DocType 'CRM Industry' -#. Label of the industry (Link) field in DocType 'CRM Lead' -#. Label of the industry (Link) field in DocType 'CRM Organization' -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_industry/crm_industry.json -#: crm/fcrm/doctype/crm_lead/crm_lead.json -#: crm/fcrm/doctype/crm_organization/crm_organization.json +#. Label of the industry (Link) field in PageType 'CRM Deal' +#. Label of the industry (Data) field in PageType 'CRM Industry' +#. Label of the industry (Link) field in PageType 'CRM Lead' +#. Label of the industry (Link) field in PageType 'CRM Organization' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_industry/crm_industry.json +#: crm/fcrm/pagetype/crm_lead/crm_lead.json +#: crm/fcrm/pagetype/crm_organization/crm_organization.json msgid "Industry" msgstr "Industrija" -#. Option for the 'Status' (Select) field in DocType 'CRM Call Log' -#: crm/fcrm/doctype/crm_call_log/crm_call_log.json +#. Option for the 'Status' (Select) field in PageType 'CRM Call Log' +#: crm/fcrm/pagetype/crm_call_log/crm_call_log.json msgid "Initiated" msgstr "Pokrenut" @@ -3037,7 +3037,7 @@ msgstr "Integracije" msgid "Introduction" msgstr "Uvod" -#: crm/fcrm/doctype/crm_twilio_settings/crm_twilio_settings.py:33 +#: crm/fcrm/pagetype/crm_twilio_settings/crm_twilio_settings.py:33 msgid "Invalid Account SID or Auth Token." msgstr "Nevažeći SID računa ili Auth Token." @@ -3054,7 +3054,7 @@ msgstr "Nevažeći Exotel Broj" msgid "Invalid chart name" msgstr "Nevažeći naziv grafikona" -#: crm/fcrm/doctype/crm_exotel_settings/crm_exotel_settings.py:25 +#: crm/fcrm/pagetype/crm_exotel_settings/crm_exotel_settings.py:25 msgid "Invalid credentials" msgstr "Nevažeće vjerodajnice" @@ -3103,8 +3103,8 @@ msgstr "Pozovite korisnike da pristupe CRM-u. Navedi njihove uloge kako biste ko msgid "Invite your team" msgstr "Pozovi tim" -#. Label of the invited_by (Link) field in DocType 'CRM Invitation' -#: crm/fcrm/doctype/crm_invitation/crm_invitation.json +#. Label of the invited_by (Link) field in PageType 'CRM Invitation' +#: crm/fcrm/pagetype/crm_invitation/crm_invitation.json msgid "Invited By" msgstr "Pozvao/la" @@ -3118,59 +3118,59 @@ msgstr "Pozvao/la" msgid "Is" msgstr "Je" -#. Label of the is_default (Check) field in DocType 'CRM View Settings' -#: crm/fcrm/doctype/crm_view_settings/crm_view_settings.json +#. Label of the is_default (Check) field in PageType 'CRM View Settings' +#: crm/fcrm/pagetype/crm_view_settings/crm_view_settings.json msgid "Is Default" msgstr "Je Standard" -#. Label of the is_erpnext_in_different_site (Check) field in DocType 'ERPNext +#. Label of the is_erpnext_in_different_site (Check) field in PageType 'ERPNext #. CRM Settings' -#: crm/fcrm/doctype/erpnext_crm_settings/erpnext_crm_settings.json +#: crm/fcrm/pagetype/erpnext_crm_settings/erpnext_crm_settings.json msgid "Is ERPNext installed on a different site?" msgstr "Je li ERPNext instaliran na drugom mjestu?" -#. Label of the is_group (Check) field in DocType 'CRM Territory' -#: crm/fcrm/doctype/crm_territory/crm_territory.json +#. Label of the is_group (Check) field in PageType 'CRM Territory' +#: crm/fcrm/pagetype/crm_territory/crm_territory.json msgid "Is Group" msgstr "Grupa" -#. Label of the is_helpdesk_in_different_site (Check) field in DocType +#. Label of the is_helpdesk_in_different_site (Check) field in PageType #. 'Helpdesk CRM Settings' -#: crm/fcrm/doctype/helpdesk_crm_settings/helpdesk_crm_settings.json +#: crm/fcrm/pagetype/helpdesk_crm_settings/helpdesk_crm_settings.json msgid "Is Helpdesk installed on a different site?" msgstr "Da li je Helpdesk instaliran na drugom sajtu?" -#. Label of the is_primary (Check) field in DocType 'CRM Contacts' -#. Label of the is_primary (Check) field in DocType 'CRM Telephony Phone' -#: crm/fcrm/doctype/crm_contacts/crm_contacts.json -#: crm/fcrm/doctype/crm_telephony_phone/crm_telephony_phone.json +#. Label of the is_primary (Check) field in PageType 'CRM Contacts' +#. Label of the is_primary (Check) field in PageType 'CRM Telephony Phone' +#: crm/fcrm/pagetype/crm_contacts/crm_contacts.json +#: crm/fcrm/pagetype/crm_telephony_phone/crm_telephony_phone.json msgid "Is Primary" msgstr "Primarno je" -#. Label of the is_standard (Check) field in DocType 'CRM Dropdown Item' -#. Label of the is_standard (Check) field in DocType 'CRM Form Script' -#. Label of the is_standard (Check) field in DocType 'CRM View Settings' -#: crm/fcrm/doctype/crm_dropdown_item/crm_dropdown_item.json -#: crm/fcrm/doctype/crm_form_script/crm_form_script.json -#: crm/fcrm/doctype/crm_view_settings/crm_view_settings.json +#. Label of the is_standard (Check) field in PageType 'CRM Dropdown Item' +#. Label of the is_standard (Check) field in PageType 'CRM Form Script' +#. Label of the is_standard (Check) field in PageType 'CRM View Settings' +#: crm/fcrm/pagetype/crm_dropdown_item/crm_dropdown_item.json +#: crm/fcrm/pagetype/crm_form_script/crm_form_script.json +#: crm/fcrm/pagetype/crm_view_settings/crm_view_settings.json msgid "Is Standard" msgstr "Je standardno" -#. Description of the 'Enable Forecasting' (Check) field in DocType 'FCRM +#. Description of the 'Enable Forecasting' (Check) field in PageType 'FCRM #. Settings' -#: crm/fcrm/doctype/fcrm_settings/fcrm_settings.json +#: crm/fcrm/pagetype/fcrm_settings/fcrm_settings.json msgid "It will make deal's \"Expected Closure Date\" & \"Expected Deal Value\" mandatory to get accurate forecasting insights" msgstr "\"Očekivani datum zaključenja\" i \"Očekivana vrijednost posla\" bit će obvezni za dobivanje točnih uvida u predviđanja" -#. Label of the json (JSON) field in DocType 'CRM Global Settings' -#: crm/fcrm/doctype/crm_global_settings/crm_global_settings.json +#. Label of the json (JSON) field in PageType 'CRM Global Settings' +#: crm/fcrm/pagetype/crm_global_settings/crm_global_settings.json msgid "JSON" msgstr "JSON" -#. Label of the job_title (Data) field in DocType 'CRM Deal' -#. Label of the job_title (Data) field in DocType 'CRM Lead' -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_lead/crm_lead.json +#. Label of the job_title (Data) field in PageType 'CRM Deal' +#. Label of the job_title (Data) field in PageType 'CRM Lead' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_lead/crm_lead.json msgid "Job Title" msgstr "Naziv Posla" @@ -3182,20 +3182,20 @@ msgstr "Naziv Posla" msgid "John Doe" msgstr "John Doe" -#. Label of the kanban_tab (Tab Break) field in DocType 'CRM View Settings' -#: crm/fcrm/doctype/crm_view_settings/crm_view_settings.json +#. Label of the kanban_tab (Tab Break) field in PageType 'CRM View Settings' +#: crm/fcrm/pagetype/crm_view_settings/crm_view_settings.json #: frontend/src/components/ViewControls.vue:384 #: frontend/src/components/ViewControls.vue:600 frontend/src/utils/view.js:20 msgid "Kanban" msgstr "Oglasna Tabla" -#. Label of the kanban_columns (Code) field in DocType 'CRM View Settings' -#: crm/fcrm/doctype/crm_view_settings/crm_view_settings.json +#. Label of the kanban_columns (Code) field in PageType 'CRM View Settings' +#: crm/fcrm/pagetype/crm_view_settings/crm_view_settings.json msgid "Kanban Columns" msgstr "Stupci Oglasne Ploče" -#. Label of the kanban_fields (Code) field in DocType 'CRM View Settings' -#: crm/fcrm/doctype/crm_view_settings/crm_view_settings.json +#. Label of the kanban_fields (Code) field in PageType 'CRM View Settings' +#: crm/fcrm/pagetype/crm_view_settings/crm_view_settings.json msgid "Kanban Fields" msgstr "Polja Oglasne Ploče" @@ -3204,15 +3204,15 @@ msgstr "Polja Oglasne Ploče" msgid "Kanban Settings" msgstr "Postavke Oglasne Table" -#. Label of the key (Data) field in DocType 'CRM Invitation' -#: crm/fcrm/doctype/crm_invitation/crm_invitation.json +#. Label of the key (Data) field in PageType 'CRM Invitation' +#: crm/fcrm/pagetype/crm_invitation/crm_invitation.json msgid "Key" msgstr "Ključ" -#. Label of the label (Data) field in DocType 'CRM Dropdown Item' -#. Label of the label (Data) field in DocType 'CRM View Settings' -#: crm/fcrm/doctype/crm_dropdown_item/crm_dropdown_item.json -#: crm/fcrm/doctype/crm_view_settings/crm_view_settings.json +#. Label of the label (Data) field in PageType 'CRM Dropdown Item' +#. Label of the label (Data) field in PageType 'CRM View Settings' +#: crm/fcrm/pagetype/crm_dropdown_item/crm_dropdown_item.json +#: crm/fcrm/pagetype/crm_view_settings/crm_view_settings.json #: frontend/src/components/ColumnSettings.vue:100 msgid "Label" msgstr "Oznaka" @@ -3229,10 +3229,10 @@ msgstr "Poslednjih 6 Mjeseci" msgid "Last Month" msgstr "Zadnji mjesec" -#. Label of the last_name (Data) field in DocType 'CRM Deal' -#. Label of the last_name (Data) field in DocType 'CRM Lead' -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_lead/crm_lead.json +#. Label of the last_name (Data) field in PageType 'CRM Deal' +#. Label of the last_name (Data) field in PageType 'CRM Lead' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_lead/crm_lead.json msgid "Last Name" msgstr "Prezime" @@ -3240,9 +3240,9 @@ msgstr "Prezime" msgid "Last Quarter" msgstr "Zadnji kvartal" -#. Label of the last_status_change_log (Link) field in DocType 'CRM Status +#. Label of the last_status_change_log (Link) field in PageType 'CRM Status #. Change Log' -#: crm/fcrm/doctype/crm_status_change_log/crm_status_change_log.json +#: crm/fcrm/pagetype/crm_status_change_log/crm_status_change_log.json msgid "Last Status Change Log" msgstr "Zadnji Zapisnik Promjene Statusa" @@ -3270,15 +3270,15 @@ msgstr "Prezime" msgid "Last user assigned by this rule" msgstr "Posljednji korisnik dodijeljen ovim pravilom" -#. Label of the layout (Code) field in DocType 'CRM Dashboard' -#. Label of the layout (Code) field in DocType 'CRM Fields Layout' -#: crm/fcrm/doctype/crm_dashboard/crm_dashboard.json -#: crm/fcrm/doctype/crm_fields_layout/crm_fields_layout.json +#. Label of the layout (Code) field in PageType 'CRM Dashboard' +#. Label of the layout (Code) field in PageType 'CRM Fields Layout' +#: crm/fcrm/pagetype/crm_dashboard/crm_dashboard.json +#: crm/fcrm/pagetype/crm_fields_layout/crm_fields_layout.json msgid "Layout" msgstr "Izgled" -#. Label of the lead (Link) field in DocType 'CRM Deal' -#: crm/fcrm/doctype/crm_deal/crm_deal.json +#. Label of the lead (Link) field in PageType 'CRM Deal' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json #: frontend/src/components/Calendar/CalendarEventPanel.vue:263 #: frontend/src/components/Calendar/CalendarEventPanel.vue:288 #: frontend/src/components/Layouts/AppSidebar.vue:550 @@ -3291,32 +3291,32 @@ msgstr "Izgled" msgid "Lead" msgstr "Potencijalni Klijent" -#. Label of the lead_details_tab (Tab Break) field in DocType 'CRM Deal' -#: crm/fcrm/doctype/crm_deal/crm_deal.json +#. Label of the lead_details_tab (Tab Break) field in PageType 'CRM Deal' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json msgid "Lead Details" msgstr "Detalji Potencijalnog Klijenta" -#. Label of the lead_name (Data) field in DocType 'CRM Deal' -#: crm/fcrm/doctype/crm_deal/crm_deal.json +#. Label of the lead_name (Data) field in PageType 'CRM Deal' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json msgid "Lead Name" msgstr "Naziv Potencijalnog Klijenta" -#. Label of the lead_owner (Link) field in DocType 'CRM Lead' -#: crm/fcrm/doctype/crm_lead/crm_lead.json +#. Label of the lead_owner (Link) field in PageType 'CRM Lead' +#: crm/fcrm/pagetype/crm_lead/crm_lead.json msgid "Lead Owner" msgstr "Odgovorni" -#: crm/fcrm/doctype/crm_lead/crm_lead.py:73 +#: crm/fcrm/pagetype/crm_lead/crm_lead.py:73 msgid "Lead Owner cannot be same as the Lead Email Address" msgstr "Odgovorni za Potencijalnog Klijenta ne može biti isti kao i adresa e-pošte potencijalnog klijenta" -#. Label of a shortcut in the Frappe CRM Workspace -#: crm/fcrm/workspace/frappe_crm/frappe_crm.json +#. Label of a shortcut in the Jingrow CRM Workspace +#: crm/fcrm/workspace/jingrow_crm/jingrow_crm.json msgid "Lead Sources" msgstr "Izvori Potencijalnog Klijenta" -#. Label of a shortcut in the Frappe CRM Workspace -#: crm/fcrm/workspace/frappe_crm/frappe_crm.json +#. Label of a shortcut in the Jingrow CRM Workspace +#: crm/fcrm/workspace/jingrow_crm/jingrow_crm.json msgid "Lead Statuses" msgstr "Statusi Potencijalnog Klijenta" @@ -3328,8 +3328,8 @@ msgstr "Analiza kanala generisanja potencijalnih klijenata" msgid "Lead to deal conversion pipeline" msgstr "Konverzija potencijalnih klijenata u poslove" -#. Label of a shortcut in the Frappe CRM Workspace -#: crm/fcrm/workspace/frappe_crm/frappe_crm.json +#. Label of a shortcut in the Jingrow CRM Workspace +#: crm/fcrm/workspace/jingrow_crm/jingrow_crm.json #: frontend/src/pages/InvalidPage.vue:9 frontend/src/pages/Lead.vue:340 #: frontend/src/pages/MobileLead.vue:291 msgid "Leads" @@ -3345,8 +3345,8 @@ msgstr "Potencijalni klijenti prema izvoru" msgid "Learn about conditions" msgstr "Saznajte više o uvjetima" -#. Label of the lft (Int) field in DocType 'CRM Territory' -#: crm/fcrm/doctype/crm_territory/crm_territory.json +#. Label of the lft (Int) field in PageType 'CRM Territory' +#: crm/fcrm/pagetype/crm_territory/crm_territory.json msgid "Left" msgstr "Lijevo" @@ -3367,15 +3367,15 @@ msgstr "Lajk" msgid "Link" msgstr "Veza" -#. Label of the links (Table) field in DocType 'CRM Call Log' -#: crm/fcrm/doctype/crm_call_log/crm_call_log.json +#. Label of the links (Table) field in PageType 'CRM Call Log' +#: crm/fcrm/pagetype/crm_call_log/crm_call_log.json msgid "Links" msgstr "Veze" -#. Option for the 'Apply To' (Select) field in DocType 'CRM Form Script' -#. Label of the list_tab (Tab Break) field in DocType 'CRM View Settings' -#: crm/fcrm/doctype/crm_form_script/crm_form_script.json -#: crm/fcrm/doctype/crm_view_settings/crm_view_settings.json +#. Option for the 'Apply To' (Select) field in PageType 'CRM Form Script' +#. Label of the list_tab (Tab Break) field in PageType 'CRM View Settings' +#: crm/fcrm/pagetype/crm_form_script/crm_form_script.json +#: crm/fcrm/pagetype/crm_view_settings/crm_view_settings.json #: frontend/src/components/ViewControls.vue:374 #: frontend/src/components/ViewControls.vue:589 frontend/src/utils/view.js:12 msgid "List" @@ -3385,9 +3385,9 @@ msgstr "Lista" msgid "Listen" msgstr "Slušaj" -#. Label of the load_default_columns (Check) field in DocType 'CRM View +#. Label of the load_default_columns (Check) field in PageType 'CRM View #. Settings' -#: crm/fcrm/doctype/crm_view_settings/crm_view_settings.json +#: crm/fcrm/pagetype/crm_view_settings/crm_view_settings.json msgid "Load Default Columns" msgstr "Učitaj Zadane Stupce" @@ -3403,10 +3403,10 @@ msgstr "Učitaj Još" msgid "Loading..." msgstr "Učitavanje u toku..." -#. Label of the log_tab (Tab Break) field in DocType 'CRM Deal' -#. Label of the log_tab (Tab Break) field in DocType 'CRM Lead' -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_lead/crm_lead.json +#. Label of the log_tab (Tab Break) field in PageType 'CRM Deal' +#. Label of the log_tab (Tab Break) field in PageType 'CRM Lead' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_lead/crm_lead.json msgid "Log" msgstr "Dnevnik" @@ -3417,28 +3417,28 @@ msgid "Log a Call" msgstr "Zabilježi poziv" #: frontend/src/composables/frappecloud.js:23 -msgid "Login to Frappe Cloud?" -msgstr "Prijavi se na Frappe Cloud?" +msgid "Login to Jingrow Cloud?" +msgstr "Prijavi se na Jingrow Cloud?" -#. Label of the brand_logo (Attach) field in DocType 'FCRM Settings' -#: crm/fcrm/doctype/fcrm_settings/fcrm_settings.json +#. Label of the brand_logo (Attach) field in PageType 'FCRM Settings' +#: crm/fcrm/pagetype/fcrm_settings/fcrm_settings.json msgid "Logo" msgstr "Logo" -#. Option for the 'Type' (Select) field in DocType 'CRM Deal Status' -#: crm/fcrm/doctype/crm_deal_status/crm_deal_status.json +#. Option for the 'Type' (Select) field in PageType 'CRM Deal Status' +#: crm/fcrm/pagetype/crm_deal_status/crm_deal_status.json msgid "Lost" msgstr "Izgubljen(a)" -#. Label of the lost_notes (Text) field in DocType 'CRM Deal' -#: crm/fcrm/doctype/crm_deal/crm_deal.json +#. Label of the lost_notes (Text) field in PageType 'CRM Deal' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json msgid "Lost Notes" msgstr "Bilješke Izgubljenog Posla" -#. Label of the lost_reason (Link) field in DocType 'CRM Deal' -#. Label of the lost_reason (Data) field in DocType 'CRM Lost Reason' -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_lost_reason/crm_lost_reason.json +#. Label of the lost_reason (Link) field in PageType 'CRM Deal' +#. Label of the lost_reason (Data) field in PageType 'CRM Lost Reason' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_lost_reason/crm_lost_reason.json msgid "Lost Reason" msgstr "Izgubljen(a) Razlog" @@ -3464,8 +3464,8 @@ msgstr "Razlog gubitka" msgid "Lost reason is required" msgstr "Razlog gubitka je obavezan" -#. Option for the 'Priority' (Select) field in DocType 'CRM Task' -#: crm/fcrm/doctype/crm_task/crm_task.json +#. Option for the 'Priority' (Select) field in PageType 'CRM Task' +#: crm/fcrm/pagetype/crm_task/crm_task.json msgid "Low" msgstr "Nisko" @@ -3542,8 +3542,8 @@ msgstr "Upravitelj" msgid "Mandatory field error: {0}" msgstr "Pogreška obaveznog polja: {0}" -#. Option for the 'Telephony Medium' (Select) field in DocType 'CRM Call Log' -#: crm/fcrm/doctype/crm_call_log/crm_call_log.json +#. Option for the 'Telephony Medium' (Select) field in PageType 'CRM Call Log' +#: crm/fcrm/pagetype/crm_call_log/crm_call_log.json msgid "Manual" msgstr "Ručno" @@ -3562,25 +3562,25 @@ msgstr "Postavke" msgid "May 1, 2025" msgstr "1. Svibnja 2025." -#. Label of the medium (Data) field in DocType 'CRM Call Log' -#. Option for the 'Priority' (Select) field in DocType 'CRM Task' -#: crm/fcrm/doctype/crm_call_log/crm_call_log.json -#: crm/fcrm/doctype/crm_task/crm_task.json +#. Label of the medium (Data) field in PageType 'CRM Call Log' +#. Option for the 'Priority' (Select) field in PageType 'CRM Task' +#: crm/fcrm/pagetype/crm_call_log/crm_call_log.json +#: crm/fcrm/pagetype/crm_task/crm_task.json msgid "Medium" msgstr "Srednje" -#. Option for the 'Type' (Select) field in DocType 'CRM Notification' -#: crm/fcrm/doctype/crm_notification/crm_notification.json +#. Option for the 'Type' (Select) field in PageType 'CRM Notification' +#: crm/fcrm/pagetype/crm_notification/crm_notification.json msgid "Mention" msgstr "Spominjanje" -#. Label of the message (HTML Editor) field in DocType 'CRM Notification' -#: crm/fcrm/doctype/crm_notification/crm_notification.json +#. Label of the message (HTML Editor) field in PageType 'CRM Notification' +#: crm/fcrm/pagetype/crm_notification/crm_notification.json msgid "Message" msgstr "Poruka" -#. Label of the middle_name (Data) field in DocType 'CRM Lead' -#: crm/fcrm/doctype/crm_lead/crm_lead.json +#. Label of the middle_name (Data) field in PageType 'CRM Lead' +#: crm/fcrm/pagetype/crm_lead/crm_lead.json msgid "Middle Name" msgstr "Srednje ime" @@ -3588,10 +3588,10 @@ msgstr "Srednje ime" msgid "Minimize" msgstr "Minimiziraj" -#. Label of the mobile_no (Data) field in DocType 'CRM Contacts' -#. Label of the mobile_no (Data) field in DocType 'CRM Lead' -#: crm/fcrm/doctype/crm_contacts/crm_contacts.json -#: crm/fcrm/doctype/crm_lead/crm_lead.json +#. Label of the mobile_no (Data) field in PageType 'CRM Contacts' +#. Label of the mobile_no (Data) field in PageType 'CRM Lead' +#: crm/fcrm/pagetype/crm_contacts/crm_contacts.json +#: crm/fcrm/pagetype/crm_lead/crm_lead.json msgid "Mobile No" msgstr "Mobilni Broj" @@ -3600,8 +3600,8 @@ msgstr "Mobilni Broj" msgid "Mobile No should be a number" msgstr "Broj mobitela trebao bi biti broj" -#. Label of the mobile_no (Data) field in DocType 'CRM Telephony Agent' -#: crm/fcrm/doctype/crm_telephony_agent/crm_telephony_agent.json +#. Label of the mobile_no (Data) field in PageType 'CRM Telephony Agent' +#: crm/fcrm/pagetype/crm_telephony_agent/crm_telephony_agent.json msgid "Mobile No." msgstr "Broj mobilnog." @@ -3623,10 +3623,10 @@ msgstr "Instalacija mobilne aplikacije" msgid "Mobile no" msgstr "Mobilni Broj" -#. Option for the 'Weekly Off' (Select) field in DocType 'CRM Holiday List' -#. Option for the 'Workday' (Select) field in DocType 'CRM Service Day' -#: crm/fcrm/doctype/crm_holiday_list/crm_holiday_list.json -#: crm/fcrm/doctype/crm_service_day/crm_service_day.json +#. Option for the 'Weekly Off' (Select) field in PageType 'CRM Holiday List' +#. Option for the 'Workday' (Select) field in PageType 'CRM Service Day' +#: crm/fcrm/pagetype/crm_holiday_list/crm_holiday_list.json +#: crm/fcrm/pagetype/crm_service_day/crm_service_day.json msgid "Monday" msgstr "Ponedjeljak" @@ -3658,12 +3658,12 @@ msgstr "Prijeđi na prethodnu karticu" msgid "My Open Deals" msgstr "Moji Otvoreni Poslovi" -#. Label of the title (Data) field in DocType 'CRM Dashboard' -#. Label of the name1 (Data) field in DocType 'CRM Dropdown Item' -#. Label of the brand_name (Data) field in DocType 'FCRM Settings' -#: crm/fcrm/doctype/crm_dashboard/crm_dashboard.json -#: crm/fcrm/doctype/crm_dropdown_item/crm_dropdown_item.json -#: crm/fcrm/doctype/fcrm_settings/fcrm_settings.json +#. Label of the title (Data) field in PageType 'CRM Dashboard' +#. Label of the name1 (Data) field in PageType 'CRM Dropdown Item' +#. Label of the brand_name (Data) field in PageType 'FCRM Settings' +#: crm/fcrm/pagetype/crm_dashboard/crm_dashboard.json +#: crm/fcrm/pagetype/crm_dropdown_item/crm_dropdown_item.json +#: crm/fcrm/pagetype/fcrm_settings/fcrm_settings.json #: frontend/src/components/Settings/AssignmentRules/AssignmentRuleView.vue:51 #: frontend/src/components/Settings/AssignmentRules/AssignmentRuleView.vue:52 #: frontend/src/components/Settings/EmailTemplate/EditEmailTemplate.vue:39 @@ -3680,10 +3680,10 @@ msgstr "Naziv" msgid "Name is required" msgstr "Ime je obavezno" -#. Label of the naming_series (Select) field in DocType 'CRM Deal' -#. Label of the naming_series (Select) field in DocType 'CRM Product' -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_product/crm_product.json +#. Label of the naming_series (Select) field in PageType 'CRM Deal' +#. Label of the naming_series (Select) field in PageType 'CRM Product' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_product/crm_product.json msgid "Naming Series" msgstr "Imenovanje serije" @@ -3691,15 +3691,15 @@ msgstr "Imenovanje serije" msgid "Nested conditions" msgstr "Ugniježđeni uvjeti" -#. Label of the net_amount (Currency) field in DocType 'CRM Products' -#: crm/fcrm/doctype/crm_products/crm_products.json +#. Label of the net_amount (Currency) field in PageType 'CRM Products' +#: crm/fcrm/pagetype/crm_products/crm_products.json msgid "Net Amount" msgstr "Neto Iznos" -#. Label of the net_total (Currency) field in DocType 'CRM Deal' -#. Label of the net_total (Currency) field in DocType 'CRM Lead' -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_lead/crm_lead.json +#. Label of the net_total (Currency) field in PageType 'CRM Deal' +#. Label of the net_total (Currency) field in PageType 'CRM Lead' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_lead/crm_lead.json msgid "Net Total" msgstr "Neto Ukupno" @@ -3814,8 +3814,8 @@ msgstr "Sljedeći Mjesec" msgid "Next Quarter" msgstr "Sljedeći Kvartal" -#. Label of the next_step (Data) field in DocType 'CRM Deal' -#: crm/fcrm/doctype/crm_deal/crm_deal.json +#. Label of the next_step (Data) field in PageType 'CRM Deal' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json msgid "Next Step" msgstr "Sljedeći Korak" @@ -3831,8 +3831,8 @@ msgstr "Sljedeće Godine" msgid "No" msgstr "Ne" -#. Option for the 'Status' (Select) field in DocType 'CRM Call Log' -#: crm/fcrm/doctype/crm_call_log/crm_call_log.json +#. Option for the 'Status' (Select) field in PageType 'CRM Call Log' +#: crm/fcrm/pagetype/crm_call_log/crm_call_log.json msgid "No Answer" msgstr "Bez Odgovora" @@ -3930,12 +3930,12 @@ msgstr "Nema {0} Dostupno" msgid "No {0} Found" msgstr "Nije pronađeno {0}" -#. Label of the no_of_employees (Select) field in DocType 'CRM Deal' -#. Label of the no_of_employees (Select) field in DocType 'CRM Lead' -#. Label of the no_of_employees (Select) field in DocType 'CRM Organization' -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_lead/crm_lead.json -#: crm/fcrm/doctype/crm_organization/crm_organization.json +#. Label of the no_of_employees (Select) field in PageType 'CRM Deal' +#. Label of the no_of_employees (Select) field in PageType 'CRM Lead' +#. Label of the no_of_employees (Select) field in PageType 'CRM Organization' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_lead/crm_lead.json +#: crm/fcrm/pagetype/crm_organization/crm_organization.json msgid "No. of Employees" msgstr "Personalni Broj" @@ -3981,24 +3981,24 @@ msgstr "Nije Kao" msgid "Not Saved" msgstr "Nespremljeno" -#: crm/fcrm/doctype/crm_deal/crm_deal.py:272 +#: crm/fcrm/pagetype/crm_deal/crm_deal.py:272 msgid "Not allowed to add contact to Deal" msgstr "Nije dopušteno dodati kontakt u Posao" -#: crm/fcrm/doctype/crm_lead/crm_lead.py:408 +#: crm/fcrm/pagetype/crm_lead/crm_lead.py:408 msgid "Not allowed to convert Lead to Deal" msgstr "Nije dopušteno pretvoriti Potencijalnog Klijenta u Posao" -#: crm/fcrm/doctype/crm_deal/crm_deal.py:283 +#: crm/fcrm/pagetype/crm_deal/crm_deal.py:283 msgid "Not allowed to remove contact from Deal" msgstr "Nije dopušteno ukloniti kontakt iz Posla" -#: crm/fcrm/doctype/crm_deal/crm_deal.py:294 +#: crm/fcrm/pagetype/crm_deal/crm_deal.py:294 msgid "Not allowed to set primary contact for Deal" msgstr "Nije dopušteno postaviti primarni kontakt za Posao" -#. Label of the note (Link) field in DocType 'CRM Call Log' -#: crm/fcrm/doctype/crm_call_log/crm_call_log.json +#. Label of the note (Link) field in PageType 'CRM Call Log' +#: crm/fcrm/pagetype/crm_call_log/crm_call_log.json #: frontend/src/components/Layouts/AppSidebar.vue:554 msgid "Note" msgstr "Napomena" @@ -4017,21 +4017,21 @@ msgstr "Prikaz Napomena" msgid "Notification" msgstr "Obavijest" -#. Label of the notification_text (Text) field in DocType 'CRM Notification' -#: crm/fcrm/doctype/crm_notification/crm_notification.json +#. Label of the notification_text (Text) field in PageType 'CRM Notification' +#: crm/fcrm/pagetype/crm_notification/crm_notification.json msgid "Notification Text" msgstr "Tekst Obavijesti" -#. Label of the notification_type_doc (Dynamic Link) field in DocType 'CRM +#. Label of the notification_type_pg (Dynamic Link) field in PageType 'CRM #. Notification' -#: crm/fcrm/doctype/crm_notification/crm_notification.json -msgid "Notification Type Doc" +#: crm/fcrm/pagetype/crm_notification/crm_notification.json +msgid "Notification Type Pg" msgstr "Tip Obavijesti Dokument" -#. Label of the notification_type_doctype (Link) field in DocType 'CRM +#. Label of the notification_type_pagetype (Link) field in PageType 'CRM #. Notification' -#: crm/fcrm/doctype/crm_notification/crm_notification.json -msgid "Notification Type Doctype" +#: crm/fcrm/pagetype/crm_notification/crm_notification.json +msgid "Notification Type Pagetype" msgstr "Tip Obavijesti Dokument" #: frontend/src/components/Layouts/AppSidebar.vue:13 @@ -4041,8 +4041,8 @@ msgstr "Tip Obavijesti Dokument" msgid "Notifications" msgstr "Obavještenja" -#. Label of the number (Data) field in DocType 'CRM Telephony Phone' -#: crm/fcrm/doctype/crm_telephony_phone/crm_telephony_phone.json +#. Label of the number (Data) field in PageType 'CRM Telephony Phone' +#: crm/fcrm/pagetype/crm_telephony_phone/crm_telephony_phone.json msgid "Number" msgstr "Broj" @@ -4064,18 +4064,18 @@ msgstr "Broj poslova i ukupna vrijednost po prodavaču" msgid "Old Condition" msgstr "Stari uvjet" -#. Label of the old_parent (Link) field in DocType 'CRM Territory' -#: crm/fcrm/doctype/crm_territory/crm_territory.json +#. Label of the old_parent (Link) field in PageType 'CRM Territory' +#: crm/fcrm/pagetype/crm_territory/crm_territory.json msgid "Old Parent" msgstr "Stari Nadređeni" -#. Option for the 'Type' (Select) field in DocType 'CRM Deal Status' -#: crm/fcrm/doctype/crm_deal_status/crm_deal_status.json +#. Option for the 'Type' (Select) field in PageType 'CRM Deal Status' +#: crm/fcrm/pagetype/crm_deal_status/crm_deal_status.json msgid "On Hold" msgstr "Na čekanju" -#. Option for the 'Type' (Select) field in DocType 'CRM Deal Status' -#: crm/fcrm/doctype/crm_deal_status/crm_deal_status.json +#. Option for the 'Type' (Select) field in PageType 'CRM Deal Status' +#: crm/fcrm/pagetype/crm_deal_status/crm_deal_status.json msgid "Ongoing" msgstr "U tijeku" @@ -4088,13 +4088,13 @@ msgstr "Tekući poslovi" msgid "Only image files are allowed" msgstr "Dopuštene su samo slikovne datoteke" -#: crm/fcrm/doctype/crm_deal/crm_deal.py:60 -#: crm/fcrm/doctype/crm_telephony_agent/crm_telephony_agent.py:23 +#: crm/fcrm/pagetype/crm_deal/crm_deal.py:60 +#: crm/fcrm/pagetype/crm_telephony_agent/crm_telephony_agent.py:23 msgid "Only one {0} can be set as primary." msgstr "Samo jedan {0} može biti postavljen kao primarni." -#. Option for the 'Type' (Select) field in DocType 'CRM Deal Status' -#: crm/fcrm/doctype/crm_deal_status/crm_deal_status.json +#. Option for the 'Type' (Select) field in PageType 'CRM Deal Status' +#: crm/fcrm/pagetype/crm_deal_status/crm_deal_status.json msgid "Open" msgstr "Otvori" @@ -4108,13 +4108,13 @@ msgstr "Otvori Posao" msgid "Open Lead" msgstr "Otvori Potencijalni Klijent" -#: crm/fcrm/doctype/crm_deal/crm_deal.js:6 -#: crm/fcrm/doctype/crm_lead/crm_lead.js:6 +#: crm/fcrm/pagetype/crm_deal/crm_deal.js:6 +#: crm/fcrm/pagetype/crm_lead/crm_lead.js:6 msgid "Open in Portal" msgstr "Otvori u Portalu" -#. Label of the open_in_new_window (Check) field in DocType 'CRM Dropdown Item' -#: crm/fcrm/doctype/crm_dropdown_item/crm_dropdown_item.json +#. Label of the open_in_new_window (Check) field in PageType 'CRM Dropdown Item' +#: crm/fcrm/pagetype/crm_dropdown_item/crm_dropdown_item.json msgid "Open in new window" msgstr "Otvori u novom prozoru" @@ -4136,17 +4136,17 @@ msgstr "Opcije" msgid "Or create leads manually" msgstr "Ili ručno napravi potencijalne klijente" -#. Label of the order_by_tab (Tab Break) field in DocType 'CRM View Settings' -#. Label of the order_by (Code) field in DocType 'CRM View Settings' -#: crm/fcrm/doctype/crm_view_settings/crm_view_settings.json +#. Label of the order_by_tab (Tab Break) field in PageType 'CRM View Settings' +#. Label of the order_by (Code) field in PageType 'CRM View Settings' +#: crm/fcrm/pagetype/crm_view_settings/crm_view_settings.json msgid "Order By" msgstr "Sortiraj prema" -#. Label of the organization (Link) field in DocType 'CRM Deal' -#. Label of the organization_tab (Tab Break) field in DocType 'CRM Deal' -#. Label of the organization (Data) field in DocType 'CRM Lead' -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_lead/crm_lead.json +#. Label of the organization (Link) field in PageType 'CRM Deal' +#. Label of the organization_tab (Tab Break) field in PageType 'CRM Deal' +#. Label of the organization (Data) field in PageType 'CRM Lead' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_lead/crm_lead.json #: frontend/src/components/Layouts/AppSidebar.vue:553 #: frontend/src/components/Modals/ConvertToDealModal.vue:25 #: frontend/src/pages/Contact.vue:494 frontend/src/pages/MobileContact.vue:502 @@ -4158,22 +4158,22 @@ msgstr "Sortiraj prema" msgid "Organization" msgstr "Organizacija" -#. Label of the organization_details_section (Section Break) field in DocType +#. Label of the organization_details_section (Section Break) field in PageType #. 'CRM Deal' -#: crm/fcrm/doctype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_deal/crm_deal.json msgid "Organization Details" msgstr "Detalji Organizacije" -#. Label of the organization_logo (Attach Image) field in DocType 'CRM +#. Label of the organization_logo (Attach Image) field in PageType 'CRM #. Organization' -#: crm/fcrm/doctype/crm_organization/crm_organization.json +#: crm/fcrm/pagetype/crm_organization/crm_organization.json msgid "Organization Logo" msgstr "Logo Organizacije" -#. Label of the organization_name (Data) field in DocType 'CRM Deal' -#. Label of the organization_name (Data) field in DocType 'CRM Organization' -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_organization/crm_organization.json +#. Label of the organization_name (Data) field in PageType 'CRM Deal' +#. Label of the organization_name (Data) field in PageType 'CRM Organization' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_organization/crm_organization.json msgid "Organization Name" msgstr "Naziv Organizacije" @@ -4181,8 +4181,8 @@ msgstr "Naziv Organizacije" msgid "Organization logo" msgstr "Logo Organizacije" -#. Label of a shortcut in the Frappe CRM Workspace -#: crm/fcrm/workspace/frappe_crm/frappe_crm.json +#. Label of a shortcut in the Jingrow CRM Workspace +#: crm/fcrm/workspace/jingrow_crm/jingrow_crm.json #: frontend/src/pages/MobileOrganization.vue:205 #: frontend/src/pages/Organization.vue:234 msgid "Organizations" @@ -4196,8 +4196,8 @@ msgstr "Organizator" msgid "Other features" msgstr "Ostale značajke" -#. Label of the organization_tab (Tab Break) field in DocType 'CRM Lead' -#: crm/fcrm/doctype/crm_lead/crm_lead.json +#. Label of the organization_tab (Tab Break) field in PageType 'CRM Lead' +#: crm/fcrm/pagetype/crm_lead/crm_lead.json msgid "Others" msgstr "Ostalo" @@ -4205,13 +4205,13 @@ msgstr "Ostalo" msgid "Outbound Call" msgstr "Odlazni Poziv" -#. Option for the 'Type' (Select) field in DocType 'CRM Call Log' -#: crm/fcrm/doctype/crm_call_log/crm_call_log.json +#. Option for the 'Type' (Select) field in PageType 'CRM Call Log' +#: crm/fcrm/pagetype/crm_call_log/crm_call_log.json msgid "Outgoing" msgstr "Odlazno" -#. Label of the log_owner (Link) field in DocType 'CRM Status Change Log' -#: crm/fcrm/doctype/crm_status_change_log/crm_status_change_log.json +#. Label of the log_owner (Link) field in PageType 'CRM Status Change Log' +#: crm/fcrm/pagetype/crm_status_change_log/crm_status_change_log.json msgid "Owner" msgstr "Odgovorni" @@ -4219,8 +4219,8 @@ msgstr "Odgovorni" msgid "Owner: {0}" msgstr "Vlasnik: {0}" -#. Label of the parent_crm_territory (Link) field in DocType 'CRM Territory' -#: crm/fcrm/doctype/crm_territory/crm_territory.json +#. Label of the parent_crm_territory (Link) field in PageType 'CRM Territory' +#: crm/fcrm/pagetype/crm_territory/crm_territory.json msgid "Parent CRM Territory" msgstr "Nadređeni Distrikt" @@ -4251,8 +4251,8 @@ msgstr "Podsjetnik Plaćanja" msgid "Payment Reminder from Frappé - (#{{ name }})" msgstr "Podsjetnik za plaćanje od Frappéa - (#{{ name }})" -#. Option for the 'Status' (Select) field in DocType 'CRM Invitation' -#: crm/fcrm/doctype/crm_invitation/crm_invitation.json +#. Option for the 'Status' (Select) field in PageType 'CRM Invitation' +#: crm/fcrm/pagetype/crm_invitation/crm_invitation.json msgid "Pending" msgstr "Na čekanju" @@ -4264,10 +4264,10 @@ msgstr "Pozivnice na Čekanju" msgid "Period" msgstr "Razdoblje" -#. Label of the person_section (Section Break) field in DocType 'CRM Deal' -#. Label of the person_tab (Tab Break) field in DocType 'CRM Lead' -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_lead/crm_lead.json +#. Label of the person_section (Section Break) field in PageType 'CRM Deal' +#. Label of the person_tab (Tab Break) field in PageType 'CRM Lead' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_lead/crm_lead.json msgid "Person" msgstr "Osoba" @@ -4275,19 +4275,19 @@ msgstr "Osoba" msgid "Personal Settings" msgstr "Osobne Postavke" -#. Label of the phone (Data) field in DocType 'CRM Contacts' -#. Label of the phone (Data) field in DocType 'CRM Lead' -#. Option for the 'Device' (Select) field in DocType 'CRM Telephony Agent' -#: crm/fcrm/doctype/crm_contacts/crm_contacts.json -#: crm/fcrm/doctype/crm_lead/crm_lead.json -#: crm/fcrm/doctype/crm_telephony_agent/crm_telephony_agent.json +#. Label of the phone (Data) field in PageType 'CRM Contacts' +#. Label of the phone (Data) field in PageType 'CRM Lead' +#. Option for the 'Device' (Select) field in PageType 'CRM Telephony Agent' +#: crm/fcrm/pagetype/crm_contacts/crm_contacts.json +#: crm/fcrm/pagetype/crm_lead/crm_lead.json +#: crm/fcrm/pagetype/crm_telephony_agent/crm_telephony_agent.json #: frontend/src/pages/MobileOrganization.vue:495 #: frontend/src/pages/Organization.vue:516 msgid "Phone" msgstr "Telefon" -#. Label of the phone_nos (Table) field in DocType 'CRM Telephony Agent' -#: crm/fcrm/doctype/crm_telephony_agent/crm_telephony_agent.json +#. Label of the phone_nos (Table) field in PageType 'CRM Telephony Agent' +#: crm/fcrm/pagetype/crm_telephony_agent/crm_telephony_agent.json msgid "Phone Numbers" msgstr "Telefonski Brojevi" @@ -4295,8 +4295,8 @@ msgstr "Telefonski Brojevi" msgid "Pin View" msgstr "Prikači Prikaz" -#. Label of the pinned (Check) field in DocType 'CRM View Settings' -#: crm/fcrm/doctype/crm_view_settings/crm_view_settings.json +#. Label of the pinned (Check) field in PageType 'CRM View Settings' +#: crm/fcrm/pagetype/crm_view_settings/crm_view_settings.json msgid "Pinned" msgstr "Prikačeno" @@ -4346,7 +4346,7 @@ msgstr "Odaberi postojeći kontakt" msgid "Please select an existing organization" msgstr "Odaberi postojeću organizaciju" -#: crm/fcrm/doctype/helpdesk_crm_settings/helpdesk_crm_settings.py:126 +#: crm/fcrm/pagetype/helpdesk_crm_settings/helpdesk_crm_settings.py:126 msgid "Please set Email Address" msgstr "Postavi adresu e-pošte" @@ -4354,18 +4354,18 @@ msgstr "Postavi adresu e-pošte" msgid "Please setup Exotel intergration" msgstr "Postavi Exotel Integraciju" -#: crm/fcrm/doctype/crm_deal/crm_deal.py:181 +#: crm/fcrm/pagetype/crm_deal/crm_deal.py:181 msgid "Please specify a reason for losing the deal." msgstr "Navedi razlog gubitka posla." -#: crm/fcrm/doctype/crm_deal/crm_deal.py:183 +#: crm/fcrm/pagetype/crm_deal/crm_deal.py:183 msgid "Please specify the reason for losing the deal." msgstr "Navedi razlog gubitka posla." -#. Label of the position (Int) field in DocType 'CRM Deal Status' -#. Label of the position (Int) field in DocType 'CRM Lead Status' -#: crm/fcrm/doctype/crm_deal_status/crm_deal_status.json -#: crm/fcrm/doctype/crm_lead_status/crm_lead_status.json +#. Label of the position (Int) field in PageType 'CRM Deal Status' +#. Label of the position (Int) field in PageType 'CRM Lead Status' +#: crm/fcrm/pagetype/crm_deal_status/crm_deal_status.json +#: crm/fcrm/pagetype/crm_lead_status/crm_lead_status.json msgid "Position" msgstr "Pozicija" @@ -4373,18 +4373,18 @@ msgstr "Pozicija" msgid "Primary" msgstr "Primarni" -#. Label of the email (Data) field in DocType 'CRM Deal' -#: crm/fcrm/doctype/crm_deal/crm_deal.json +#. Label of the email (Data) field in PageType 'CRM Deal' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json msgid "Primary Email" msgstr "Primarna e-pošta" -#. Label of the mobile_no (Data) field in DocType 'CRM Deal' -#: crm/fcrm/doctype/crm_deal/crm_deal.json +#. Label of the mobile_no (Data) field in PageType 'CRM Deal' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json msgid "Primary Mobile No" msgstr "Primarni broj mobitela" -#. Label of the phone (Data) field in DocType 'CRM Deal' -#: crm/fcrm/doctype/crm_deal/crm_deal.json +#. Label of the phone (Data) field in PageType 'CRM Deal' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json msgid "Primary Phone" msgstr "Primarni Telefon" @@ -4392,57 +4392,57 @@ msgstr "Primarni Telefon" msgid "Primary contact set" msgstr "Primarni kontakt postavljen" -#. Label of the priorities (Table) field in DocType 'CRM Service Level +#. Label of the priorities (Table) field in PageType 'CRM Service Level #. Agreement' -#: crm/fcrm/doctype/crm_service_level_agreement/crm_service_level_agreement.json +#: crm/fcrm/pagetype/crm_service_level_agreement/crm_service_level_agreement.json msgid "Priorities" msgstr "Prioriteti" -#. Label of the priority (Link) field in DocType 'CRM Service Level Priority' -#. Label of the priority (Select) field in DocType 'CRM Task' -#: crm/fcrm/doctype/crm_service_level_priority/crm_service_level_priority.json -#: crm/fcrm/doctype/crm_task/crm_task.json +#. Label of the priority (Link) field in PageType 'CRM Service Level Priority' +#. Label of the priority (Select) field in PageType 'CRM Task' +#: crm/fcrm/pagetype/crm_service_level_priority/crm_service_level_priority.json +#: crm/fcrm/pagetype/crm_task/crm_task.json #: frontend/src/components/Settings/AssignmentRules/AssignmentRuleView.vue:64 #: frontend/src/components/Settings/AssignmentRules/AssignmentRulesList.vue:20 msgid "Priority" msgstr "Prioritet" -#. Label of the private (Check) field in DocType 'CRM Dashboard' -#: crm/fcrm/doctype/crm_dashboard/crm_dashboard.json +#. Label of the private (Check) field in PageType 'CRM Dashboard' +#: crm/fcrm/pagetype/crm_dashboard/crm_dashboard.json #: frontend/src/components/FilesUploader/FilesUploaderArea.vue:89 msgid "Private" msgstr "Privatno" -#. Label of the probability (Percent) field in DocType 'CRM Deal' -#. Label of the probability (Percent) field in DocType 'CRM Deal Status' -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_deal_status/crm_deal_status.json +#. Label of the probability (Percent) field in PageType 'CRM Deal' +#. Label of the probability (Percent) field in PageType 'CRM Deal Status' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_deal_status/crm_deal_status.json msgid "Probability" msgstr "Vjerovatnoća" -#. Label of the product_code (Link) field in DocType 'CRM Products' -#: crm/fcrm/doctype/crm_products/crm_products.json +#. Label of the product_code (Link) field in PageType 'CRM Products' +#: crm/fcrm/pagetype/crm_products/crm_products.json msgid "Product" msgstr "Proizvod" -#. Label of the product_code (Data) field in DocType 'CRM Product' -#: crm/fcrm/doctype/crm_product/crm_product.json +#. Label of the product_code (Data) field in PageType 'CRM Product' +#: crm/fcrm/pagetype/crm_product/crm_product.json msgid "Product Code" msgstr "Šifra Stavke" -#. Label of the product_name (Data) field in DocType 'CRM Product' -#. Label of the product_name (Data) field in DocType 'CRM Products' -#: crm/fcrm/doctype/crm_product/crm_product.json -#: crm/fcrm/doctype/crm_products/crm_products.json +#. Label of the product_name (Data) field in PageType 'CRM Product' +#. Label of the product_name (Data) field in PageType 'CRM Products' +#: crm/fcrm/pagetype/crm_product/crm_product.json +#: crm/fcrm/pagetype/crm_products/crm_products.json msgid "Product Name" msgstr "Naziv Stavke" -#. Label of the products_tab (Tab Break) field in DocType 'CRM Deal' -#. Label of the products (Table) field in DocType 'CRM Deal' -#. Label of the products_tab (Tab Break) field in DocType 'CRM Lead' -#. Label of the products (Table) field in DocType 'CRM Lead' -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_lead/crm_lead.json +#. Label of the products_tab (Tab Break) field in PageType 'CRM Deal' +#. Label of the products (Table) field in PageType 'CRM Deal' +#. Label of the products_tab (Tab Break) field in PageType 'CRM Lead' +#. Label of the products (Table) field in PageType 'CRM Lead' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_lead/crm_lead.json msgid "Products" msgstr "Proizvodi" @@ -4459,8 +4459,8 @@ msgstr "Profil je uspješno ažuriran" msgid "Projected vs actual revenue based on deal probability" msgstr "Predviđeni u odnosu na stvarni prihod na temelju vjerojatnosti posla" -#. Label of the public (Check) field in DocType 'CRM View Settings' -#: crm/fcrm/doctype/crm_view_settings/crm_view_settings.json +#. Label of the public (Check) field in PageType 'CRM View Settings' +#: crm/fcrm/pagetype/crm_view_settings/crm_view_settings.json msgid "Public" msgstr "Javno" @@ -4472,23 +4472,23 @@ msgstr "Javni Prikazi" msgid "Public view" msgstr "Javni Prikaz" -#. Label of the qty (Float) field in DocType 'CRM Products' -#: crm/fcrm/doctype/crm_products/crm_products.json +#. Label of the qty (Float) field in PageType 'CRM Products' +#: crm/fcrm/pagetype/crm_products/crm_products.json msgid "Quantity" msgstr "Količina" -#. Option for the 'Status' (Select) field in DocType 'CRM Call Log' -#: crm/fcrm/doctype/crm_call_log/crm_call_log.json +#. Option for the 'Status' (Select) field in PageType 'CRM Call Log' +#: crm/fcrm/pagetype/crm_call_log/crm_call_log.json msgid "Queued" msgstr "U Redu" -#. Option for the 'Type' (Select) field in DocType 'CRM Fields Layout' -#: crm/fcrm/doctype/crm_fields_layout/crm_fields_layout.json +#. Option for the 'Type' (Select) field in PageType 'CRM Fields Layout' +#: crm/fcrm/pagetype/crm_fields_layout/crm_fields_layout.json msgid "Quick Entry" msgstr "Brzi Unos" -#. Option for the 'Type' (Select) field in DocType 'CRM Global Settings' -#: crm/fcrm/doctype/crm_global_settings/crm_global_settings.json +#. Option for the 'Type' (Select) field in PageType 'CRM Global Settings' +#: crm/fcrm/pagetype/crm_global_settings/crm_global_settings.json msgid "Quick Filters" msgstr "Brzi Filteri" @@ -4500,13 +4500,13 @@ msgstr "Brzi Filtri uspješno ažurirani" msgid "Quick entry layout" msgstr "Raspored za brzi unos" -#. Label of the rate (Currency) field in DocType 'CRM Products' -#: crm/fcrm/doctype/crm_products/crm_products.json +#. Label of the rate (Currency) field in PageType 'CRM Products' +#: crm/fcrm/pagetype/crm_products/crm_products.json msgid "Rate" msgstr "Cijena" -#. Label of the read (Check) field in DocType 'CRM Notification' -#: crm/fcrm/doctype/crm_notification/crm_notification.json +#. Label of the read (Check) field in PageType 'CRM Notification' +#: crm/fcrm/pagetype/crm_notification/crm_notification.json msgid "Read" msgstr "Čitaj" @@ -4514,48 +4514,48 @@ msgstr "Čitaj" msgid "Reason" msgstr "Razlog" -#. Label of the record_calls (Check) field in DocType 'CRM Twilio Settings' -#: crm/fcrm/doctype/crm_twilio_settings/crm_twilio_settings.json +#. Label of the record_calls (Check) field in PageType 'CRM Twilio Settings' +#: crm/fcrm/pagetype/crm_twilio_settings/crm_twilio_settings.json msgid "Record Calls" msgstr "Snimaj Poziv" -#. Label of the record_call (Check) field in DocType 'CRM Exotel Settings' -#: crm/fcrm/doctype/crm_exotel_settings/crm_exotel_settings.json +#. Label of the record_call (Check) field in PageType 'CRM Exotel Settings' +#: crm/fcrm/pagetype/crm_exotel_settings/crm_exotel_settings.json msgid "Record Outgoing Calls" msgstr "Snimaj Odlazne Pozive" -#. Label of the recording_url (Data) field in DocType 'CRM Call Log' -#: crm/fcrm/doctype/crm_call_log/crm_call_log.json +#. Label of the recording_url (Data) field in PageType 'CRM Call Log' +#: crm/fcrm/pagetype/crm_call_log/crm_call_log.json msgid "Recording URL" msgstr "URL Snimanja" -#. Label of the reference_name (Dynamic Link) field in DocType 'CRM +#. Label of the reference_name (Dynamic Link) field in PageType 'CRM #. Notification' -#. Label of the reference_docname (Dynamic Link) field in DocType 'CRM Task' -#. Label of the reference_docname (Dynamic Link) field in DocType 'FCRM Note' -#: crm/fcrm/doctype/crm_notification/crm_notification.json -#: crm/fcrm/doctype/crm_task/crm_task.json -#: crm/fcrm/doctype/fcrm_note/fcrm_note.json -msgid "Reference Doc" +#. Label of the reference_docname (Dynamic Link) field in PageType 'CRM Task' +#. Label of the reference_docname (Dynamic Link) field in PageType 'FCRM Note' +#: crm/fcrm/pagetype/crm_notification/crm_notification.json +#: crm/fcrm/pagetype/crm_task/crm_task.json +#: crm/fcrm/pagetype/fcrm_note/fcrm_note.json +msgid "Reference Pg" msgstr "Referentni Dokument" -#. Label of the reference_doctype (Link) field in DocType 'CRM Notification' -#: crm/fcrm/doctype/crm_notification/crm_notification.json -msgid "Reference Doctype" -msgstr "Referentni Doctype" +#. Label of the reference_pagetype (Link) field in PageType 'CRM Notification' +#: crm/fcrm/pagetype/crm_notification/crm_notification.json +msgid "Reference Pagetype" +msgstr "Referentni Pagetype" -#. Label of the reference_doctype (Link) field in DocType 'CRM Call Log' -#. Label of the reference_doctype (Link) field in DocType 'CRM Task' -#. Label of the reference_doctype (Link) field in DocType 'FCRM Note' -#: crm/fcrm/doctype/crm_call_log/crm_call_log.json -#: crm/fcrm/doctype/crm_task/crm_task.json -#: crm/fcrm/doctype/fcrm_note/fcrm_note.json +#. Label of the reference_pagetype (Link) field in PageType 'CRM Call Log' +#. Label of the reference_pagetype (Link) field in PageType 'CRM Task' +#. Label of the reference_pagetype (Link) field in PageType 'FCRM Note' +#: crm/fcrm/pagetype/crm_call_log/crm_call_log.json +#: crm/fcrm/pagetype/crm_task/crm_task.json +#: crm/fcrm/pagetype/fcrm_note/fcrm_note.json msgid "Reference Document Type" msgstr "Referentna vrsta dokumenta" -#. Label of the reference_docname (Dynamic Link) field in DocType 'CRM Call +#. Label of the reference_docname (Dynamic Link) field in PageType 'CRM Call #. Log' -#: crm/fcrm/doctype/crm_call_log/crm_call_log.json +#: crm/fcrm/pagetype/crm_call_log/crm_call_log.json msgid "Reference Name" msgstr "Referentni Naziv" @@ -4625,8 +4625,8 @@ msgstr "Odgovori Svima" msgid "Report an Issue" msgstr "Prijavi Slučaj" -#. Option for the 'Type' (Select) field in DocType 'CRM Fields Layout' -#: crm/fcrm/doctype/crm_fields_layout/crm_fields_layout.json +#. Option for the 'Type' (Select) field in PageType 'CRM Fields Layout' +#: crm/fcrm/pagetype/crm_fields_layout/crm_fields_layout.json msgid "Required Fields" msgstr "Obavezna Polja" @@ -4642,7 +4642,7 @@ msgstr "Poništi" msgid "Reset Changes" msgstr "Poništi Promjene" -#: crm/fcrm/doctype/erpnext_crm_settings/erpnext_crm_settings.js:7 +#: crm/fcrm/pagetype/erpnext_crm_settings/erpnext_crm_settings.js:7 msgid "Reset ERPNext Form Script" msgstr "Poništi Skriptu Obrasca Sistema" @@ -4654,35 +4654,35 @@ msgstr "Vrati na Zadano" msgid "Reset to default" msgstr "Vrati na Standard" -#. Label of the response_by (Datetime) field in DocType 'CRM Deal' -#. Label of the response_by (Datetime) field in DocType 'CRM Lead' -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_lead/crm_lead.json +#. Label of the response_by (Datetime) field in PageType 'CRM Deal' +#. Label of the response_by (Datetime) field in PageType 'CRM Lead' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_lead/crm_lead.json msgid "Response By" msgstr "Odgovor od" -#. Label of the response_details_section (Section Break) field in DocType 'CRM +#. Label of the response_details_section (Section Break) field in PageType 'CRM #. Deal' -#. Label of the response_details_section (Section Break) field in DocType 'CRM +#. Label of the response_details_section (Section Break) field in PageType 'CRM #. Lead' -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_lead/crm_lead.json +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_lead/crm_lead.json msgid "Response Details" msgstr "Detalji Odgovora" -#. Label of the section_break_ufaf (Section Break) field in DocType 'CRM +#. Label of the section_break_ufaf (Section Break) field in PageType 'CRM #. Service Level Agreement' -#: crm/fcrm/doctype/crm_service_level_agreement/crm_service_level_agreement.json +#: crm/fcrm/pagetype/crm_service_level_agreement/crm_service_level_agreement.json msgid "Response and Follow Up" msgstr "Odgovor i Praćenje" -#: crm/fcrm/doctype/fcrm_settings/fcrm_settings.js:14 +#: crm/fcrm/pagetype/fcrm_settings/fcrm_settings.js:14 msgid "Restore" msgstr "Vrati" -#. Label of the restore_defaults (Button) field in DocType 'FCRM Settings' -#: crm/fcrm/doctype/fcrm_settings/fcrm_settings.js:13 -#: crm/fcrm/doctype/fcrm_settings/fcrm_settings.json +#. Label of the restore_defaults (Button) field in PageType 'FCRM Settings' +#: crm/fcrm/pagetype/fcrm_settings/fcrm_settings.js:13 +#: crm/fcrm/pagetype/fcrm_settings/fcrm_settings.json msgid "Restore Defaults" msgstr "Vrati Zadane Postavke" @@ -4699,13 +4699,13 @@ msgstr "Prihod" msgid "Rich Text" msgstr "Rich Text" -#. Label of the rgt (Int) field in DocType 'CRM Territory' -#: crm/fcrm/doctype/crm_territory/crm_territory.json +#. Label of the rgt (Int) field in PageType 'CRM Territory' +#: crm/fcrm/pagetype/crm_territory/crm_territory.json msgid "Right" msgstr "Desno" -#. Option for the 'Status' (Select) field in DocType 'CRM Call Log' -#: crm/fcrm/doctype/crm_call_log/crm_call_log.json +#. Option for the 'Status' (Select) field in PageType 'CRM Call Log' +#: crm/fcrm/pagetype/crm_call_log/crm_call_log.json msgid "Ringing" msgstr "Zvoni" @@ -4714,55 +4714,55 @@ msgstr "Zvoni" msgid "Ringing..." msgstr "Zvoni..." -#. Label of the role (Select) field in DocType 'CRM Invitation' -#: crm/fcrm/doctype/crm_invitation/crm_invitation.json +#. Label of the role (Select) field in PageType 'CRM Invitation' +#: crm/fcrm/pagetype/crm_invitation/crm_invitation.json #: frontend/src/components/Modals/AddExistingUserModal.vue:46 msgid "Role" msgstr "Uloga" -#. Option for the 'Type' (Select) field in DocType 'CRM Dropdown Item' -#. Label of the route (Data) field in DocType 'CRM Dropdown Item' -#: crm/fcrm/doctype/crm_dropdown_item/crm_dropdown_item.json +#. Option for the 'Type' (Select) field in PageType 'CRM Dropdown Item' +#. Label of the route (Data) field in PageType 'CRM Dropdown Item' +#: crm/fcrm/pagetype/crm_dropdown_item/crm_dropdown_item.json msgid "Route" msgstr "Ruta" -#. Label of the route_name (Data) field in DocType 'CRM View Settings' -#: crm/fcrm/doctype/crm_view_settings/crm_view_settings.json +#. Label of the route_name (Data) field in PageType 'CRM View Settings' +#: crm/fcrm/pagetype/crm_view_settings/crm_view_settings.json msgid "Route Name" msgstr "Naziv Rute" -#. Label of the rows (Code) field in DocType 'CRM View Settings' -#: crm/fcrm/doctype/crm_view_settings/crm_view_settings.json +#. Label of the rows (Code) field in PageType 'CRM View Settings' +#: crm/fcrm/pagetype/crm_view_settings/crm_view_settings.json msgid "Rows" msgstr "Redovi" -#. Label of the sla_tab (Tab Break) field in DocType 'CRM Deal' -#. Label of the sla (Link) field in DocType 'CRM Deal' -#. Label of the sla_tab (Tab Break) field in DocType 'CRM Lead' -#. Label of the sla (Link) field in DocType 'CRM Lead' -#. Label of a shortcut in the Frappe CRM Workspace -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_lead/crm_lead.json -#: crm/fcrm/workspace/frappe_crm/frappe_crm.json +#. Label of the sla_tab (Tab Break) field in PageType 'CRM Deal' +#. Label of the sla (Link) field in PageType 'CRM Deal' +#. Label of the sla_tab (Tab Break) field in PageType 'CRM Lead' +#. Label of the sla (Link) field in PageType 'CRM Lead' +#. Label of a shortcut in the Jingrow CRM Workspace +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_lead/crm_lead.json +#: crm/fcrm/workspace/jingrow_crm/jingrow_crm.json msgid "SLA" msgstr "Standard Nivo Ugovor" -#. Label of the sla_creation (Datetime) field in DocType 'CRM Deal' -#. Label of the sla_creation (Datetime) field in DocType 'CRM Lead' -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_lead/crm_lead.json +#. Label of the sla_creation (Datetime) field in PageType 'CRM Deal' +#. Label of the sla_creation (Datetime) field in PageType 'CRM Lead' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_lead/crm_lead.json msgid "SLA Creation" msgstr "Standard Nivo Ugovora Stvaranje" -#. Label of the sla_name (Data) field in DocType 'CRM Service Level Agreement' -#: crm/fcrm/doctype/crm_service_level_agreement/crm_service_level_agreement.json +#. Label of the sla_name (Data) field in PageType 'CRM Service Level Agreement' +#: crm/fcrm/pagetype/crm_service_level_agreement/crm_service_level_agreement.json msgid "SLA Name" msgstr "Naziv Standard Nivo Ugovora" -#. Label of the sla_status (Select) field in DocType 'CRM Deal' -#. Label of the sla_status (Select) field in DocType 'CRM Lead' -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_lead/crm_lead.json +#. Label of the sla_status (Select) field in PageType 'CRM Deal' +#. Label of the sla_status (Select) field in PageType 'CRM Lead' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_lead/crm_lead.json msgid "SLA Status" msgstr "Status Standard Nivo Ugovora" @@ -4771,57 +4771,57 @@ msgid "SUBJECT" msgstr "PREDMET" #. Name of a role -#. Option for the 'Role' (Select) field in DocType 'CRM Invitation' -#: crm/fcrm/doctype/crm_call_log/crm_call_log.json -#: crm/fcrm/doctype/crm_communication_status/crm_communication_status.json -#: crm/fcrm/doctype/crm_dashboard/crm_dashboard.json -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_deal_status/crm_deal_status.json -#: crm/fcrm/doctype/crm_exotel_settings/crm_exotel_settings.json -#: crm/fcrm/doctype/crm_form_script/crm_form_script.json -#: crm/fcrm/doctype/crm_global_settings/crm_global_settings.json -#: crm/fcrm/doctype/crm_holiday_list/crm_holiday_list.json -#: crm/fcrm/doctype/crm_industry/crm_industry.json -#: crm/fcrm/doctype/crm_invitation/crm_invitation.json -#: crm/fcrm/doctype/crm_lead/crm_lead.json -#: crm/fcrm/doctype/crm_lead_source/crm_lead_source.json -#: crm/fcrm/doctype/crm_lead_status/crm_lead_status.json -#: crm/fcrm/doctype/crm_lost_reason/crm_lost_reason.json -#: crm/fcrm/doctype/crm_notification/crm_notification.json -#: crm/fcrm/doctype/crm_organization/crm_organization.json -#: crm/fcrm/doctype/crm_service_level_agreement/crm_service_level_agreement.json -#: crm/fcrm/doctype/crm_task/crm_task.json -#: crm/fcrm/doctype/crm_territory/crm_territory.json -#: crm/fcrm/doctype/crm_twilio_settings/crm_twilio_settings.json -#: crm/fcrm/doctype/crm_view_settings/crm_view_settings.json -#: crm/fcrm/doctype/erpnext_crm_settings/erpnext_crm_settings.json -#: crm/fcrm/doctype/fcrm_note/fcrm_note.json -#: crm/fcrm/doctype/fcrm_settings/fcrm_settings.json -#: crm/fcrm/doctype/helpdesk_crm_settings/helpdesk_crm_settings.json +#. Option for the 'Role' (Select) field in PageType 'CRM Invitation' +#: crm/fcrm/pagetype/crm_call_log/crm_call_log.json +#: crm/fcrm/pagetype/crm_communication_status/crm_communication_status.json +#: crm/fcrm/pagetype/crm_dashboard/crm_dashboard.json +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_deal_status/crm_deal_status.json +#: crm/fcrm/pagetype/crm_exotel_settings/crm_exotel_settings.json +#: crm/fcrm/pagetype/crm_form_script/crm_form_script.json +#: crm/fcrm/pagetype/crm_global_settings/crm_global_settings.json +#: crm/fcrm/pagetype/crm_holiday_list/crm_holiday_list.json +#: crm/fcrm/pagetype/crm_industry/crm_industry.json +#: crm/fcrm/pagetype/crm_invitation/crm_invitation.json +#: crm/fcrm/pagetype/crm_lead/crm_lead.json +#: crm/fcrm/pagetype/crm_lead_source/crm_lead_source.json +#: crm/fcrm/pagetype/crm_lead_status/crm_lead_status.json +#: crm/fcrm/pagetype/crm_lost_reason/crm_lost_reason.json +#: crm/fcrm/pagetype/crm_notification/crm_notification.json +#: crm/fcrm/pagetype/crm_organization/crm_organization.json +#: crm/fcrm/pagetype/crm_service_level_agreement/crm_service_level_agreement.json +#: crm/fcrm/pagetype/crm_task/crm_task.json +#: crm/fcrm/pagetype/crm_territory/crm_territory.json +#: crm/fcrm/pagetype/crm_twilio_settings/crm_twilio_settings.json +#: crm/fcrm/pagetype/crm_view_settings/crm_view_settings.json +#: crm/fcrm/pagetype/erpnext_crm_settings/erpnext_crm_settings.json +#: crm/fcrm/pagetype/fcrm_note/fcrm_note.json +#: crm/fcrm/pagetype/fcrm_settings/fcrm_settings.json +#: crm/fcrm/pagetype/helpdesk_crm_settings/helpdesk_crm_settings.json msgid "Sales Manager" msgstr "Upravitelj Prodaje" #. Name of a role -#. Option for the 'Role' (Select) field in DocType 'CRM Invitation' -#: crm/fcrm/doctype/crm_call_log/crm_call_log.json -#: crm/fcrm/doctype/crm_communication_status/crm_communication_status.json -#: crm/fcrm/doctype/crm_dashboard/crm_dashboard.json -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_deal_status/crm_deal_status.json -#: crm/fcrm/doctype/crm_global_settings/crm_global_settings.json -#: crm/fcrm/doctype/crm_holiday_list/crm_holiday_list.json -#: crm/fcrm/doctype/crm_industry/crm_industry.json -#: crm/fcrm/doctype/crm_invitation/crm_invitation.json -#: crm/fcrm/doctype/crm_lead/crm_lead.json -#: crm/fcrm/doctype/crm_lead_source/crm_lead_source.json -#: crm/fcrm/doctype/crm_lead_status/crm_lead_status.json -#: crm/fcrm/doctype/crm_lost_reason/crm_lost_reason.json -#: crm/fcrm/doctype/crm_notification/crm_notification.json -#: crm/fcrm/doctype/crm_organization/crm_organization.json -#: crm/fcrm/doctype/crm_task/crm_task.json -#: crm/fcrm/doctype/crm_territory/crm_territory.json -#: crm/fcrm/doctype/crm_view_settings/crm_view_settings.json -#: crm/fcrm/doctype/fcrm_note/fcrm_note.json +#. Option for the 'Role' (Select) field in PageType 'CRM Invitation' +#: crm/fcrm/pagetype/crm_call_log/crm_call_log.json +#: crm/fcrm/pagetype/crm_communication_status/crm_communication_status.json +#: crm/fcrm/pagetype/crm_dashboard/crm_dashboard.json +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_deal_status/crm_deal_status.json +#: crm/fcrm/pagetype/crm_global_settings/crm_global_settings.json +#: crm/fcrm/pagetype/crm_holiday_list/crm_holiday_list.json +#: crm/fcrm/pagetype/crm_industry/crm_industry.json +#: crm/fcrm/pagetype/crm_invitation/crm_invitation.json +#: crm/fcrm/pagetype/crm_lead/crm_lead.json +#: crm/fcrm/pagetype/crm_lead_source/crm_lead_source.json +#: crm/fcrm/pagetype/crm_lead_status/crm_lead_status.json +#: crm/fcrm/pagetype/crm_lost_reason/crm_lost_reason.json +#: crm/fcrm/pagetype/crm_notification/crm_notification.json +#: crm/fcrm/pagetype/crm_organization/crm_organization.json +#: crm/fcrm/pagetype/crm_task/crm_task.json +#: crm/fcrm/pagetype/crm_territory/crm_territory.json +#: crm/fcrm/pagetype/crm_view_settings/crm_view_settings.json +#: crm/fcrm/pagetype/fcrm_note/fcrm_note.json #: frontend/src/components/Modals/AddExistingUserModal.vue:92 #: frontend/src/components/Settings/InviteUserPage.vue:156 #: frontend/src/components/Settings/InviteUserPage.vue:163 @@ -4845,17 +4845,17 @@ msgstr "Korisnik Prodaje" msgid "Salesperson" msgstr "Prodavač" -#. Label of the salutation (Link) field in DocType 'CRM Deal' -#. Label of the salutation (Link) field in DocType 'CRM Lead' -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_lead/crm_lead.json +#. Label of the salutation (Link) field in PageType 'CRM Deal' +#. Label of the salutation (Link) field in PageType 'CRM Lead' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_lead/crm_lead.json msgid "Salutation" msgstr "Titula" -#. Option for the 'Weekly Off' (Select) field in DocType 'CRM Holiday List' -#. Option for the 'Workday' (Select) field in DocType 'CRM Service Day' -#: crm/fcrm/doctype/crm_holiday_list/crm_holiday_list.json -#: crm/fcrm/doctype/crm_service_day/crm_service_day.json +#. Option for the 'Weekly Off' (Select) field in PageType 'CRM Holiday List' +#. Option for the 'Workday' (Select) field in PageType 'CRM Service Day' +#: crm/fcrm/pagetype/crm_holiday_list/crm_holiday_list.json +#: crm/fcrm/pagetype/crm_service_day/crm_service_day.json msgid "Saturday" msgstr "Subota" @@ -4904,8 +4904,8 @@ msgstr "Zakaži Događaj" msgid "Schedule an event" msgstr "Zakaži Događaj" -#. Label of the script (Code) field in DocType 'CRM Form Script' -#: crm/fcrm/doctype/crm_form_script/crm_form_script.json +#. Label of the script (Code) field in PageType 'CRM Form Script' +#: crm/fcrm/pagetype/crm_form_script/crm_form_script.json msgid "Script" msgstr "Skripta" @@ -4973,18 +4973,18 @@ msgstr "Pošalji e-poštu" msgid "Send invites to" msgstr "Pošalji pozivnice" -#. Option for the 'Type' (Select) field in DocType 'CRM Dropdown Item' -#: crm/fcrm/doctype/crm_dropdown_item/crm_dropdown_item.json +#. Option for the 'Type' (Select) field in PageType 'CRM Dropdown Item' +#: crm/fcrm/pagetype/crm_dropdown_item/crm_dropdown_item.json msgid "Separator" msgstr "Razdjelnik" -#. Label of the naming_series (Select) field in DocType 'CRM Lead' -#: crm/fcrm/doctype/crm_lead/crm_lead.json +#. Label of the naming_series (Select) field in PageType 'CRM Lead' +#: crm/fcrm/pagetype/crm_lead/crm_lead.json msgid "Series" msgstr "Numeričke Serije" -#. Label of the service_provider (Select) field in DocType 'FCRM Settings' -#: crm/fcrm/doctype/fcrm_settings/fcrm_settings.json +#. Label of the service_provider (Select) field in PageType 'FCRM Settings' +#: crm/fcrm/pagetype/fcrm_settings/fcrm_settings.json msgid "Service Provider" msgstr "Dobavljač Servisa" @@ -5029,8 +5029,8 @@ msgid "Setting up" msgstr "Postavljanje" #: frontend/src/components/Settings/emailConfig.js:145 -msgid "Setting up Frappe Mail requires you to have an API key and API Secret of your email account. Read more " -msgstr "Za postavljanje Frappe Mail-a potrebno je da imate API Ključ i API Tajnu za račun e-pošte. Pročitaj više. " +msgid "Setting up Jingrow Mail requires you to have an API key and API Secret of your email account. Read more " +msgstr "Za postavljanje Jingrow Mail-a potrebno je da imate API Ključ i API Tajnu za račun e-pošte. Pročitaj više. " #: frontend/src/components/Settings/emailConfig.js:97 msgid "Setting up GMail requires you to enable two factor authentication\n" @@ -5068,8 +5068,8 @@ msgid "Setting up Yandex requires you to enable two factor authentication\n" msgstr "Za postavljanje Yandexa potrebno je omogućiti dvofaktorsku autentifikaciju\n" "\t\t i lozinke specifične za aplikaciju. Pročitaj više " -#. Label of the defaults_tab (Tab Break) field in DocType 'FCRM Settings' -#: crm/fcrm/doctype/fcrm_settings/fcrm_settings.json +#. Label of the defaults_tab (Tab Break) field in PageType 'FCRM Settings' +#: crm/fcrm/pagetype/fcrm_settings/fcrm_settings.json #: frontend/src/components/Layouts/AppSidebar.vue:537 #: frontend/src/components/Settings/Settings.vue:12 msgid "Settings" @@ -5079,7 +5079,7 @@ msgstr "Postavke" msgid "Setup Email" msgstr "Postavljanje e-pošte" -#: crm/fcrm/doctype/fcrm_settings/fcrm_settings.py:199 +#: crm/fcrm/pagetype/fcrm_settings/fcrm_settings.py:199 msgid "Setup the Exchange Rate Provider as 'Exchangerate Host' in settings, as default provider does not support currency conversion for {0} to {1}." msgstr "Postavite Pružatelja Usluge Tečaja kao 'Pružitelja Usluge Tečaja' u postavkama, jer zadani pružatelj ne podržava pretvorbu valuta iz {0} u {1}." @@ -5114,21 +5114,21 @@ msgstr "Prikaži manje" msgid "Show preview" msgstr "Prikaži pregled" -#. Option for the 'Type' (Select) field in DocType 'CRM Fields Layout' -#: crm/fcrm/doctype/crm_fields_layout/crm_fields_layout.json +#. Option for the 'Type' (Select) field in PageType 'CRM Fields Layout' +#: crm/fcrm/pagetype/crm_fields_layout/crm_fields_layout.json msgid "Side Panel" msgstr "Bočna ploča" -#. Option for the 'Type' (Select) field in DocType 'CRM Global Settings' -#: crm/fcrm/doctype/crm_global_settings/crm_global_settings.json +#. Option for the 'Type' (Select) field in PageType 'CRM Global Settings' +#: crm/fcrm/pagetype/crm_global_settings/crm_global_settings.json msgid "Sidebar Items" msgstr "Stavke bočne trake" -#. Description of the 'Condition' (Code) field in DocType 'CRM Service Level +#. Description of the 'Condition' (Code) field in PageType 'CRM Service Level #. Agreement' -#: crm/fcrm/doctype/crm_service_level_agreement/crm_service_level_agreement.json -msgid "Simple Python Expression, Example: doc.status == 'Open' and doc.lead_source == 'Ads'" -msgstr "Jednostavan Python Izraz, Primjer: doc.status == 'Open' i doc.lead_source == 'Ads'" +#: crm/fcrm/pagetype/crm_service_level_agreement/crm_service_level_agreement.json +msgid "Simple Python Expression, Example: pg.status == 'Open' and pg.lead_source == 'Ads'" +msgstr "Jednostavan Python Izraz, Primjer: pg.status == 'Open' i pg.lead_source == 'Ads'" #: frontend/src/components/AssignTo.vue:83 msgid "Since you removed {0} from the assignee, the {0} has also been removed." @@ -5151,16 +5151,16 @@ msgstr "Došlo je do pogreške prilikom ažuriranja pravila dodjele" msgid "Sort" msgstr "Sortiraj" -#. Label of the source (Link) field in DocType 'CRM Deal' -#. Label of the source (Link) field in DocType 'CRM Lead' -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_lead/crm_lead.json +#. Label of the source (Link) field in PageType 'CRM Deal' +#. Label of the source (Link) field in PageType 'CRM Lead' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_lead/crm_lead.json #: frontend/src/components/Modals/EditValueModal.vue:10 msgid "Source" msgstr "Izvor" -#. Label of the source_name (Data) field in DocType 'CRM Lead Source' -#: crm/fcrm/doctype/crm_lead_source/crm_lead_source.json +#. Label of the source_name (Data) field in PageType 'CRM Lead Source' +#: crm/fcrm/pagetype/crm_lead_source/crm_lead_source.json msgid "Source Name" msgstr "Naziv Izvora" @@ -5173,12 +5173,12 @@ msgstr "Razmak" msgid "Stage" msgstr "Faza" -#: crm/fcrm/doctype/crm_form_script/crm_form_script.js:15 +#: crm/fcrm/pagetype/crm_form_script/crm_form_script.js:15 msgid "Standard Form Scripts can not be modified, duplicate the Form Script instead." msgstr "Standardne Skripte Obrasca ne mogu se mijenjati, umjesto toga duplicirajte Skriptu Obrasca." -#. Label of the standard_rate (Currency) field in DocType 'CRM Product' -#: crm/fcrm/doctype/crm_product/crm_product.json +#. Label of the standard_rate (Currency) field in PageType 'CRM Product' +#: crm/fcrm/pagetype/crm_product/crm_product.json msgid "Standard Selling Rate" msgstr "Standardna Prodajna Cijena" @@ -5186,18 +5186,18 @@ msgstr "Standardna Prodajna Cijena" msgid "Standard Views" msgstr "Standard Prikazi" -#. Label of the start_date (Date) field in DocType 'CRM Service Level +#. Label of the start_date (Date) field in PageType 'CRM Service Level #. Agreement' -#. Label of the start_date (Date) field in DocType 'CRM Task' -#: crm/fcrm/doctype/crm_service_level_agreement/crm_service_level_agreement.json -#: crm/fcrm/doctype/crm_task/crm_task.json +#. Label of the start_date (Date) field in PageType 'CRM Task' +#: crm/fcrm/pagetype/crm_service_level_agreement/crm_service_level_agreement.json +#: crm/fcrm/pagetype/crm_task/crm_task.json msgid "Start Date" msgstr "Start Datum" -#. Label of the start_time (Datetime) field in DocType 'CRM Call Log' -#. Label of the start_time (Time) field in DocType 'CRM Service Day' -#: crm/fcrm/doctype/crm_call_log/crm_call_log.json -#: crm/fcrm/doctype/crm_service_day/crm_service_day.json +#. Label of the start_time (Datetime) field in PageType 'CRM Call Log' +#. Label of the start_time (Time) field in PageType 'CRM Service Day' +#: crm/fcrm/pagetype/crm_call_log/crm_call_log.json +#: crm/fcrm/pagetype/crm_service_day/crm_service_day.json #: frontend/src/components/Calendar/CalendarEventPanel.vue:234 #: frontend/src/components/Modals/EventModal.vue:103 msgid "Start Time" @@ -5211,32 +5211,32 @@ msgstr "Vrijeme početka i završetka je obavezno" msgid "Start with sample 10 leads" msgstr "Započni s uzorkom od 10 potencijalnih klijenata" -#. Label of the status (Select) field in DocType 'CRM Call Log' -#. Label of the status (Data) field in DocType 'CRM Communication Status' -#. Label of the status (Link) field in DocType 'CRM Deal' -#. Label of the deal_status (Data) field in DocType 'CRM Deal Status' -#. Label of the status (Select) field in DocType 'CRM Invitation' -#. Label of the status (Link) field in DocType 'CRM Lead' -#. Label of the lead_status (Data) field in DocType 'CRM Lead Status' -#. Label of the status (Select) field in DocType 'CRM Task' -#: crm/fcrm/doctype/crm_call_log/crm_call_log.json -#: crm/fcrm/doctype/crm_communication_status/crm_communication_status.json -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_deal_status/crm_deal_status.json -#: crm/fcrm/doctype/crm_invitation/crm_invitation.json -#: crm/fcrm/doctype/crm_lead/crm_lead.json -#: crm/fcrm/doctype/crm_lead_status/crm_lead_status.json -#: crm/fcrm/doctype/crm_task/crm_task.json frontend/src/pages/Contact.vue:505 +#. Label of the status (Select) field in PageType 'CRM Call Log' +#. Label of the status (Data) field in PageType 'CRM Communication Status' +#. Label of the status (Link) field in PageType 'CRM Deal' +#. Label of the deal_status (Data) field in PageType 'CRM Deal Status' +#. Label of the status (Select) field in PageType 'CRM Invitation' +#. Label of the status (Link) field in PageType 'CRM Lead' +#. Label of the lead_status (Data) field in PageType 'CRM Lead Status' +#. Label of the status (Select) field in PageType 'CRM Task' +#: crm/fcrm/pagetype/crm_call_log/crm_call_log.json +#: crm/fcrm/pagetype/crm_communication_status/crm_communication_status.json +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_deal_status/crm_deal_status.json +#: crm/fcrm/pagetype/crm_invitation/crm_invitation.json +#: crm/fcrm/pagetype/crm_lead/crm_lead.json +#: crm/fcrm/pagetype/crm_lead_status/crm_lead_status.json +#: crm/fcrm/pagetype/crm_task/crm_task.json frontend/src/pages/Contact.vue:505 #: frontend/src/pages/MobileContact.vue:513 #: frontend/src/pages/MobileOrganization.vue:457 #: frontend/src/pages/Organization.vue:478 msgid "Status" msgstr "Status" -#. Label of the status_change_log (Table) field in DocType 'CRM Deal' -#. Label of the status_change_log (Table) field in DocType 'CRM Lead' -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_lead/crm_lead.json +#. Label of the status_change_log (Table) field in PageType 'CRM Deal' +#. Label of the status_change_log (Table) field in PageType 'CRM Lead' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_lead/crm_lead.json msgid "Status Change Log" msgstr "Zapisnik Promjena Statusa" @@ -5245,8 +5245,8 @@ msgstr "Zapisnik Promjena Statusa" msgid "Status is required" msgstr "Status je obavezan" -#. Label of the subdomain (Data) field in DocType 'CRM Exotel Settings' -#: crm/fcrm/doctype/crm_exotel_settings/crm_exotel_settings.json +#. Label of the subdomain (Data) field in PageType 'CRM Exotel Settings' +#: crm/fcrm/pagetype/crm_exotel_settings/crm_exotel_settings.json msgid "Subdomain" msgstr "Poddomena" @@ -5264,10 +5264,10 @@ msgstr "Predmet je obavezan" msgid "Subject: {0}" msgstr "Predmet: {0}" -#. Option for the 'Weekly Off' (Select) field in DocType 'CRM Holiday List' -#. Option for the 'Workday' (Select) field in DocType 'CRM Service Day' -#: crm/fcrm/doctype/crm_holiday_list/crm_holiday_list.json -#: crm/fcrm/doctype/crm_service_day/crm_service_day.json +#. Option for the 'Weekly Off' (Select) field in PageType 'CRM Holiday List' +#. Option for the 'Workday' (Select) field in PageType 'CRM Service Day' +#: crm/fcrm/pagetype/crm_holiday_list/crm_holiday_list.json +#: crm/fcrm/pagetype/crm_service_day/crm_service_day.json msgid "Sunday" msgstr "Nedjelja" @@ -5288,21 +5288,21 @@ msgid "System Configuration" msgstr "Konfiguracija Sustava" #. Name of a role -#. Option for the 'Role' (Select) field in DocType 'CRM Invitation' -#: crm/fcrm/doctype/crm_dashboard/crm_dashboard.json -#: crm/fcrm/doctype/crm_exotel_settings/crm_exotel_settings.json -#: crm/fcrm/doctype/crm_fields_layout/crm_fields_layout.json -#: crm/fcrm/doctype/crm_global_settings/crm_global_settings.json -#: crm/fcrm/doctype/crm_invitation/crm_invitation.json -#: crm/fcrm/doctype/crm_lead_source/crm_lead_source.json -#: crm/fcrm/doctype/crm_lost_reason/crm_lost_reason.json -#: crm/fcrm/doctype/crm_notification/crm_notification.json -#: crm/fcrm/doctype/crm_product/crm_product.json -#: crm/fcrm/doctype/crm_telephony_agent/crm_telephony_agent.json -#: crm/fcrm/doctype/crm_twilio_settings/crm_twilio_settings.json -#: crm/fcrm/doctype/erpnext_crm_settings/erpnext_crm_settings.json -#: crm/fcrm/doctype/fcrm_settings/fcrm_settings.json -#: crm/fcrm/doctype/helpdesk_crm_settings/helpdesk_crm_settings.json +#. Option for the 'Role' (Select) field in PageType 'CRM Invitation' +#: crm/fcrm/pagetype/crm_dashboard/crm_dashboard.json +#: crm/fcrm/pagetype/crm_exotel_settings/crm_exotel_settings.json +#: crm/fcrm/pagetype/crm_fields_layout/crm_fields_layout.json +#: crm/fcrm/pagetype/crm_global_settings/crm_global_settings.json +#: crm/fcrm/pagetype/crm_invitation/crm_invitation.json +#: crm/fcrm/pagetype/crm_lead_source/crm_lead_source.json +#: crm/fcrm/pagetype/crm_lost_reason/crm_lost_reason.json +#: crm/fcrm/pagetype/crm_notification/crm_notification.json +#: crm/fcrm/pagetype/crm_product/crm_product.json +#: crm/fcrm/pagetype/crm_telephony_agent/crm_telephony_agent.json +#: crm/fcrm/pagetype/crm_twilio_settings/crm_twilio_settings.json +#: crm/fcrm/pagetype/erpnext_crm_settings/erpnext_crm_settings.json +#: crm/fcrm/pagetype/fcrm_settings/fcrm_settings.json +#: crm/fcrm/pagetype/helpdesk_crm_settings/helpdesk_crm_settings.json msgid "System Manager" msgstr "Upravitelj Sustava" @@ -5314,8 +5314,8 @@ msgstr "ZA" msgid "Take a note..." msgstr "Zabilježi..." -#. Option for the 'Type' (Select) field in DocType 'CRM Notification' -#: crm/fcrm/doctype/crm_notification/crm_notification.json +#. Option for the 'Type' (Select) field in PageType 'CRM Notification' +#: crm/fcrm/pagetype/crm_notification/crm_notification.json #: frontend/src/components/Layouts/AppSidebar.vue:555 msgid "Task" msgstr "Zadatak" @@ -5333,8 +5333,8 @@ msgstr "Telegram Kanal" msgid "Telephony" msgstr "Telefonija" -#. Label of the telephony_medium (Select) field in DocType 'CRM Call Log' -#: crm/fcrm/doctype/crm_call_log/crm_call_log.json +#. Label of the telephony_medium (Select) field in PageType 'CRM Call Log' +#: crm/fcrm/pagetype/crm_call_log/crm_call_log.json msgid "Telephony Medium" msgstr "Medij Telefonije" @@ -5370,27 +5370,27 @@ msgstr "Predložak je uspješno preimenovan" msgid "Template updated successfully" msgstr "Predložak je uspješno ažuriran" -#. Label of a shortcut in the Frappe CRM Workspace -#: crm/fcrm/workspace/frappe_crm/frappe_crm.json +#. Label of a shortcut in the Jingrow CRM Workspace +#: crm/fcrm/workspace/jingrow_crm/jingrow_crm.json msgid "Territories" msgstr "Distrikti" -#. Label of the territory (Link) field in DocType 'CRM Deal' -#. Label of the territory (Link) field in DocType 'CRM Lead' -#. Label of the territory (Link) field in DocType 'CRM Organization' -#: crm/api/dashboard.py:1022 crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_lead/crm_lead.json -#: crm/fcrm/doctype/crm_organization/crm_organization.json +#. Label of the territory (Link) field in PageType 'CRM Deal' +#. Label of the territory (Link) field in PageType 'CRM Lead' +#. Label of the territory (Link) field in PageType 'CRM Organization' +#: crm/api/dashboard.py:1022 crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_lead/crm_lead.json +#: crm/fcrm/pagetype/crm_organization/crm_organization.json msgid "Territory" msgstr "Distrikt" -#. Label of the territory_manager (Link) field in DocType 'CRM Territory' -#: crm/fcrm/doctype/crm_territory/crm_territory.json +#. Label of the territory_manager (Link) field in PageType 'CRM Territory' +#: crm/fcrm/pagetype/crm_territory/crm_territory.json msgid "Territory Manager" msgstr "Upravitelj Distrikta" -#. Label of the territory_name (Data) field in DocType 'CRM Territory' -#: crm/fcrm/doctype/crm_territory/crm_territory.json +#. Label of the territory_name (Data) field in PageType 'CRM Territory' +#: crm/fcrm/pagetype/crm_territory/crm_territory.json msgid "Territory Name" msgstr "Naziv Distrikta" @@ -5398,22 +5398,22 @@ msgstr "Naziv Distrikta" msgid "Thanks" msgstr "Hvala" -#: crm/fcrm/doctype/crm_service_level_agreement/crm_service_level_agreement.py:46 +#: crm/fcrm/pagetype/crm_service_level_agreement/crm_service_level_agreement.py:46 msgid "The Condition '{0}' is invalid: {1}" msgstr "Uvjet '{0}' je nevažeći: {1}" -#. Description of the 'Exchange Rate' (Float) field in DocType 'CRM Deal' -#: crm/fcrm/doctype/crm_deal/crm_deal.json +#. Description of the 'Exchange Rate' (Float) field in PageType 'CRM Deal' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json msgid "The rate used to convert the deal’s currency to your crm's base currency (set in CRM Settings). It is set once when the currency is first added and doesn't change automatically." msgstr "Tečaj koji se koristi za pretvaranje valute posla u osnovnu valutu vašeg CRM-a (postavljeno u postavkama CRM-a). Postavlja se jednom prilikom prvog dodavanja valute i ne mijenja se automatski." -#. Description of the 'Exchange Rate' (Float) field in DocType 'CRM +#. Description of the 'Exchange Rate' (Float) field in PageType 'CRM #. Organization' -#: crm/fcrm/doctype/crm_organization/crm_organization.json +#: crm/fcrm/pagetype/crm_organization/crm_organization.json msgid "The rate used to convert the organization’s currency to your crm's base currency (set in CRM Settings). It is set once when the currency is first added and doesn't change automatically." msgstr "Tečaj koji se koristi za pretvaranje valute organizacije u osnovnu valutu vašeg CRM-a (postavljeno u postavkama CRM-a). Postavlja se jednom prilikom prvog dodavanja valute i ne mijenja se automatski." -#: crm/fcrm/doctype/crm_service_level_agreement/crm_service_level_agreement.js:14 +#: crm/fcrm/pagetype/crm_service_level_agreement/crm_service_level_agreement.js:14 msgid "There can only be one default priority in Priorities table" msgstr "U tablici prioriteta može postojati samo jedan zadani prioritet" @@ -5450,14 +5450,14 @@ msgstr "Ovim ćete izbrisati odabrane stavke i stavke povezane s njima. Jeste li msgid "This will delete selected items and unlink linked items to it, are you sure?" msgstr "Ovim ćete izbrisati odabrane stavke i prekinuti vezu s njima. Jeste li sigurni?" -#: crm/fcrm/doctype/fcrm_settings/fcrm_settings.js:9 +#: crm/fcrm/pagetype/fcrm_settings/fcrm_settings.js:9 msgid "This will restore (if not exist) all the default statuses, custom fields and layouts. Delete & Restore will delete default layouts and then restore them." msgstr "Ovo će vratiti (ako ne postoje) sve zadane statuse, prilagođena polja i izglede. Izbriši & Vrati će izbrisati zadane izglede i zatim ih vratiti." -#. Option for the 'Weekly Off' (Select) field in DocType 'CRM Holiday List' -#. Option for the 'Workday' (Select) field in DocType 'CRM Service Day' -#: crm/fcrm/doctype/crm_holiday_list/crm_holiday_list.json -#: crm/fcrm/doctype/crm_service_day/crm_service_day.json +#. Option for the 'Weekly Off' (Select) field in PageType 'CRM Holiday List' +#. Option for the 'Workday' (Select) field in PageType 'CRM Service Day' +#: crm/fcrm/pagetype/crm_holiday_list/crm_holiday_list.json +#: crm/fcrm/pagetype/crm_service_day/crm_service_day.json msgid "Thursday" msgstr "Četvrtak" @@ -5469,18 +5469,18 @@ msgstr "Vrijeme" msgid "Timespan" msgstr "Vremenski Razmak" -#. Label of the title (Data) field in DocType 'CRM Task' -#. Label of the title (Data) field in DocType 'FCRM Note' -#: crm/fcrm/doctype/crm_task/crm_task.json -#: crm/fcrm/doctype/fcrm_note/fcrm_note.json +#. Label of the title (Data) field in PageType 'CRM Task' +#. Label of the title (Data) field in PageType 'FCRM Note' +#: crm/fcrm/pagetype/crm_task/crm_task.json +#: crm/fcrm/pagetype/fcrm_note/fcrm_note.json #: frontend/src/components/Modals/EventModal.vue:43 #: frontend/src/components/Modals/NoteModal.vue:26 #: frontend/src/components/Modals/TaskModal.vue:25 msgid "Title" msgstr "Naziv" -#. Label of the title_field (Data) field in DocType 'CRM View Settings' -#: crm/fcrm/doctype/crm_view_settings/crm_view_settings.json +#. Label of the title_field (Data) field in PageType 'CRM View Settings' +#: crm/fcrm/pagetype/crm_view_settings/crm_view_settings.json #: frontend/src/components/Kanban/KanbanSettings.vue:29 msgid "Title Field" msgstr "Polje naslova" @@ -5490,28 +5490,28 @@ msgstr "Polje naslova" msgid "Title is required" msgstr "Naziv je obavezan" -#. Label of the to (Data) field in DocType 'CRM Call Log' -#. Label of the to (Data) field in DocType 'CRM Status Change Log' -#: crm/fcrm/doctype/crm_call_log/crm_call_log.json -#: crm/fcrm/doctype/crm_status_change_log/crm_status_change_log.json +#. Label of the to (Data) field in PageType 'CRM Call Log' +#. Label of the to (Data) field in PageType 'CRM Status Change Log' +#: crm/fcrm/pagetype/crm_call_log/crm_call_log.json +#: crm/fcrm/pagetype/crm_status_change_log/crm_status_change_log.json #: frontend/src/components/Activities/EmailArea.vue:53 msgid "To" msgstr "Do" -#. Label of the to_date (Date) field in DocType 'CRM Holiday List' -#. Label of the to_date (Datetime) field in DocType 'CRM Status Change Log' -#: crm/fcrm/doctype/crm_holiday_list/crm_holiday_list.json -#: crm/fcrm/doctype/crm_status_change_log/crm_status_change_log.json +#. Label of the to_date (Date) field in PageType 'CRM Holiday List' +#. Label of the to_date (Datetime) field in PageType 'CRM Status Change Log' +#: crm/fcrm/pagetype/crm_holiday_list/crm_holiday_list.json +#: crm/fcrm/pagetype/crm_status_change_log/crm_status_change_log.json msgid "To Date" msgstr "Do Datuma" -#. Label of the to_type (Data) field in DocType 'CRM Status Change Log' -#: crm/fcrm/doctype/crm_status_change_log/crm_status_change_log.json +#. Label of the to_type (Data) field in PageType 'CRM Status Change Log' +#: crm/fcrm/pagetype/crm_status_change_log/crm_status_change_log.json msgid "To Type" msgstr "Do Tipa" -#. Label of the to_user (Link) field in DocType 'CRM Notification' -#: crm/fcrm/doctype/crm_notification/crm_notification.json +#. Label of the to_user (Link) field in PageType 'CRM Notification' +#: crm/fcrm/pagetype/crm_notification/crm_notification.json msgid "To User" msgstr "Za korisnika" @@ -5523,8 +5523,8 @@ msgstr "Za više informacija o postavljanju računa e-pošte kliknite" msgid "Today" msgstr "Danas" -#. Option for the 'Status' (Select) field in DocType 'CRM Task' -#: crm/fcrm/doctype/crm_task/crm_task.json +#. Option for the 'Status' (Select) field in PageType 'CRM Task' +#: crm/fcrm/pagetype/crm_task/crm_task.json msgid "Todo" msgstr "Za Uraditi" @@ -5541,22 +5541,22 @@ msgstr "Sutra" msgid "Took a call with John Doe and discussed the new project." msgstr "Poziv sa John Doeom i razgovor o novom projektu." -#. Label of the total (Currency) field in DocType 'CRM Deal' -#. Label of the total (Currency) field in DocType 'CRM Lead' -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_lead/crm_lead.json +#. Label of the total (Currency) field in PageType 'CRM Deal' +#. Label of the total (Currency) field in PageType 'CRM Lead' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_lead/crm_lead.json msgid "Total" msgstr "Ukupno" -#. Label of the total_holidays (Int) field in DocType 'CRM Holiday List' -#: crm/fcrm/doctype/crm_holiday_list/crm_holiday_list.json +#. Label of the total_holidays (Int) field in PageType 'CRM Holiday List' +#: crm/fcrm/pagetype/crm_holiday_list/crm_holiday_list.json msgid "Total Holidays" msgstr "Ukupno Praznika" -#. Description of the 'Net Total' (Currency) field in DocType 'CRM Deal' -#. Description of the 'Net Total' (Currency) field in DocType 'CRM Lead' -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_lead/crm_lead.json +#. Description of the 'Net Total' (Currency) field in PageType 'CRM Deal' +#. Description of the 'Net Total' (Currency) field in PageType 'CRM Lead' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_lead/crm_lead.json msgid "Total after discount" msgstr "Ukupno nakon popusta" @@ -5577,10 +5577,10 @@ msgstr "Ukupan broj izgubljenih poslova" msgid "Total number of won deals based on its closure date" msgstr "Ukupan broj dobivenih poslova na temelju datuma zaključenja" -#. Option for the 'Weekly Off' (Select) field in DocType 'CRM Holiday List' -#. Option for the 'Workday' (Select) field in DocType 'CRM Service Day' -#: crm/fcrm/doctype/crm_holiday_list/crm_holiday_list.json -#: crm/fcrm/doctype/crm_service_day/crm_service_day.json +#. Option for the 'Weekly Off' (Select) field in PageType 'CRM Holiday List' +#. Option for the 'Workday' (Select) field in PageType 'CRM Service Day' +#: crm/fcrm/pagetype/crm_holiday_list/crm_holiday_list.json +#: crm/fcrm/pagetype/crm_service_day/crm_service_day.json msgid "Tuesday" msgstr "Utorak" @@ -5588,30 +5588,30 @@ msgstr "Utorak" msgid "Turn into a group" msgstr "Pretvori u grupu" -#. Label of the twiml_sid (Data) field in DocType 'CRM Twilio Settings' -#: crm/fcrm/doctype/crm_twilio_settings/crm_twilio_settings.json +#. Label of the twiml_sid (Data) field in PageType 'CRM Twilio Settings' +#: crm/fcrm/pagetype/crm_twilio_settings/crm_twilio_settings.json msgid "TwiML SID" msgstr "TwiML SID" -#. Option for the 'Telephony Medium' (Select) field in DocType 'CRM Call Log' -#. Label of the twilio (Check) field in DocType 'CRM Telephony Agent' -#. Option for the 'Default Medium' (Select) field in DocType 'CRM Telephony +#. Option for the 'Telephony Medium' (Select) field in PageType 'CRM Call Log' +#. Label of the twilio (Check) field in PageType 'CRM Telephony Agent' +#. Option for the 'Default Medium' (Select) field in PageType 'CRM Telephony #. Agent' -#: crm/fcrm/doctype/crm_call_log/crm_call_log.json -#: crm/fcrm/doctype/crm_telephony_agent/crm_telephony_agent.json +#: crm/fcrm/pagetype/crm_call_log/crm_call_log.json +#: crm/fcrm/pagetype/crm_telephony_agent/crm_telephony_agent.json #: frontend/src/components/Layouts/AppSidebar.vue:601 #: frontend/src/components/Settings/TelephonySettings.vue:40 #: frontend/src/components/Settings/TelephonySettings.vue:50 msgid "Twilio" msgstr "Twilio" -#: crm/fcrm/doctype/crm_twilio_settings/crm_twilio_settings.py:59 -#: crm/fcrm/doctype/crm_twilio_settings/crm_twilio_settings.py:60 +#: crm/fcrm/pagetype/crm_twilio_settings/crm_twilio_settings.py:59 +#: crm/fcrm/pagetype/crm_twilio_settings/crm_twilio_settings.py:60 msgid "Twilio API credential creation error." msgstr "Pogreška pri stvaranju vjerodajnice za Twilio API." -#. Label of the twilio_number (Data) field in DocType 'CRM Telephony Agent' -#: crm/fcrm/doctype/crm_telephony_agent/crm_telephony_agent.json +#. Label of the twilio_number (Data) field in PageType 'CRM Telephony Agent' +#: crm/fcrm/pagetype/crm_telephony_agent/crm_telephony_agent.json msgid "Twilio Number" msgstr "Twilio Broj" @@ -5623,20 +5623,20 @@ msgstr "Twilio nije omogućen" msgid "Twilio settings updated successfully" msgstr "Twilio postavke uspješno ažurirane" -#. Label of the type (Select) field in DocType 'CRM Call Log' -#. Label of the type (Select) field in DocType 'CRM Deal Status' -#. Label of the type (Select) field in DocType 'CRM Dropdown Item' -#. Label of the type (Select) field in DocType 'CRM Fields Layout' -#. Label of the type (Select) field in DocType 'CRM Global Settings' -#. Label of the type (Select) field in DocType 'CRM Notification' -#. Label of the type (Select) field in DocType 'CRM View Settings' -#: crm/fcrm/doctype/crm_call_log/crm_call_log.json -#: crm/fcrm/doctype/crm_deal_status/crm_deal_status.json -#: crm/fcrm/doctype/crm_dropdown_item/crm_dropdown_item.json -#: crm/fcrm/doctype/crm_fields_layout/crm_fields_layout.json -#: crm/fcrm/doctype/crm_global_settings/crm_global_settings.json -#: crm/fcrm/doctype/crm_notification/crm_notification.json -#: crm/fcrm/doctype/crm_view_settings/crm_view_settings.json +#. Label of the type (Select) field in PageType 'CRM Call Log' +#. Label of the type (Select) field in PageType 'CRM Deal Status' +#. Label of the type (Select) field in PageType 'CRM Dropdown Item' +#. Label of the type (Select) field in PageType 'CRM Fields Layout' +#. Label of the type (Select) field in PageType 'CRM Global Settings' +#. Label of the type (Select) field in PageType 'CRM Notification' +#. Label of the type (Select) field in PageType 'CRM View Settings' +#: crm/fcrm/pagetype/crm_call_log/crm_call_log.json +#: crm/fcrm/pagetype/crm_deal_status/crm_deal_status.json +#: crm/fcrm/pagetype/crm_dropdown_item/crm_dropdown_item.json +#: crm/fcrm/pagetype/crm_fields_layout/crm_fields_layout.json +#: crm/fcrm/pagetype/crm_global_settings/crm_global_settings.json +#: crm/fcrm/pagetype/crm_notification/crm_notification.json +#: crm/fcrm/pagetype/crm_view_settings/crm_view_settings.json msgid "Type" msgstr "Tip" @@ -5778,12 +5778,12 @@ msgstr "Učitaj Sliku" msgid "Uploading {0}%" msgstr "Prijenos {0}%" -#. Label of the user (Link) field in DocType 'CRM Dashboard' -#. Label of the user (Link) field in DocType 'CRM Telephony Agent' -#. Label of the user (Link) field in DocType 'CRM View Settings' -#: crm/fcrm/doctype/crm_dashboard/crm_dashboard.json -#: crm/fcrm/doctype/crm_telephony_agent/crm_telephony_agent.json -#: crm/fcrm/doctype/crm_view_settings/crm_view_settings.json +#. Label of the user (Link) field in PageType 'CRM Dashboard' +#. Label of the user (Link) field in PageType 'CRM Telephony Agent' +#. Label of the user (Link) field in PageType 'CRM View Settings' +#: crm/fcrm/pagetype/crm_dashboard/crm_dashboard.json +#: crm/fcrm/pagetype/crm_telephony_agent/crm_telephony_agent.json +#: crm/fcrm/pagetype/crm_view_settings/crm_view_settings.json msgid "User" msgstr "Korisnik" @@ -5791,8 +5791,8 @@ msgstr "Korisnik" msgid "User Management" msgstr "Upravljanje Korisnicima" -#. Label of the user_name (Data) field in DocType 'CRM Telephony Agent' -#: crm/fcrm/doctype/crm_telephony_agent/crm_telephony_agent.json +#. Label of the user_name (Data) field in PageType 'CRM Telephony Agent' +#: crm/fcrm/pagetype/crm_telephony_agent/crm_telephony_agent.json msgid "User Name" msgstr "Korisničko ime" @@ -5814,9 +5814,9 @@ msgstr "Korisnici su uspješno dodani" msgid "Users are required" msgstr "Korisnici su obavezni" -#. Label of the section_break_nevd (Section Break) field in DocType 'CRM +#. Label of the section_break_nevd (Section Break) field in PageType 'CRM #. Service Level Agreement' -#: crm/fcrm/doctype/crm_service_level_agreement/crm_service_level_agreement.json +#: crm/fcrm/pagetype/crm_service_level_agreement/crm_service_level_agreement.json msgid "Validity" msgstr "Validnost" @@ -5840,33 +5840,33 @@ msgstr "Pogledi" msgid "Web form" msgstr "Web obrazac" -#. Label of the webhook_verify_token (Data) field in DocType 'CRM Exotel +#. Label of the webhook_verify_token (Data) field in PageType 'CRM Exotel #. Settings' -#: crm/fcrm/doctype/crm_exotel_settings/crm_exotel_settings.json +#: crm/fcrm/pagetype/crm_exotel_settings/crm_exotel_settings.json msgid "Webhook Verify Token" msgstr "Webhook Verify Token" -#. Label of the website (Data) field in DocType 'CRM Deal' -#. Label of the website (Data) field in DocType 'CRM Lead' -#. Label of the website (Data) field in DocType 'CRM Organization' -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_lead/crm_lead.json -#: crm/fcrm/doctype/crm_organization/crm_organization.json +#. Label of the website (Data) field in PageType 'CRM Deal' +#. Label of the website (Data) field in PageType 'CRM Lead' +#. Label of the website (Data) field in PageType 'CRM Organization' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_lead/crm_lead.json +#: crm/fcrm/pagetype/crm_organization/crm_organization.json #: frontend/src/components/Modals/AboutModal.vue:52 msgid "Website" msgstr "Web Stranica" -#. Option for the 'Weekly Off' (Select) field in DocType 'CRM Holiday List' -#. Option for the 'Workday' (Select) field in DocType 'CRM Service Day' -#: crm/fcrm/doctype/crm_holiday_list/crm_holiday_list.json -#: crm/fcrm/doctype/crm_service_day/crm_service_day.json +#. Option for the 'Weekly Off' (Select) field in PageType 'CRM Holiday List' +#. Option for the 'Workday' (Select) field in PageType 'CRM Service Day' +#: crm/fcrm/pagetype/crm_holiday_list/crm_holiday_list.json +#: crm/fcrm/pagetype/crm_service_day/crm_service_day.json msgid "Wednesday" msgstr "Srijeda" -#. Label of the weekly_off (Check) field in DocType 'CRM Holiday' -#. Label of the weekly_off (Select) field in DocType 'CRM Holiday List' -#: crm/fcrm/doctype/crm_holiday/crm_holiday.json -#: crm/fcrm/doctype/crm_holiday_list/crm_holiday_list.json +#. Label of the weekly_off (Check) field in PageType 'CRM Holiday' +#. Label of the weekly_off (Select) field in PageType 'CRM Holiday List' +#: crm/fcrm/pagetype/crm_holiday/crm_holiday.json +#: crm/fcrm/pagetype/crm_holiday_list/crm_holiday_list.json msgid "Weekly Off" msgstr "Neradni Dan" @@ -5874,7 +5874,7 @@ msgstr "Neradni Dan" msgid "Welcome Message" msgstr "Poruka Dobrodošlice" -#: crm/fcrm/doctype/helpdesk_crm_settings/helpdesk_crm_settings.py:155 +#: crm/fcrm/pagetype/helpdesk_crm_settings/helpdesk_crm_settings.py:155 msgid "Welcome to Helpdesk" msgstr "Dobro došli u Helpdesk" @@ -5882,8 +5882,8 @@ msgstr "Dobro došli u Helpdesk" msgid "Welcome {0}, lets add your first lead" msgstr "Dobrodošli {0}, dodajmo vašeg prvog potencijalnog klijenta" -#. Option for the 'Type' (Select) field in DocType 'CRM Notification' -#: crm/fcrm/doctype/crm_notification/crm_notification.json +#. Option for the 'Type' (Select) field in PageType 'CRM Notification' +#: crm/fcrm/pagetype/crm_notification/crm_notification.json #: frontend/src/components/Layouts/AppSidebar.vue:603 #: frontend/src/components/Settings/Settings.vue:190 #: frontend/src/pages/Deal.vue:572 frontend/src/pages/Lead.vue:429 @@ -5908,8 +5908,8 @@ msgstr "Širina" msgid "Width can be in number, pixel or rem (eg. 3, 30px, 10rem)" msgstr "Širina može biti u broju, pikselu ili remu (npr. 3, 30 piksela, 10 rema)" -#. Option for the 'Type' (Select) field in DocType 'CRM Deal Status' -#: crm/fcrm/doctype/crm_deal_status/crm_deal_status.json +#. Option for the 'Type' (Select) field in PageType 'CRM Deal Status' +#: crm/fcrm/pagetype/crm_deal_status/crm_deal_status.json msgid "Won" msgstr "Dobiven" @@ -5918,16 +5918,16 @@ msgstr "Dobiven" msgid "Won deals" msgstr "Dobiveni poslovi" -#. Label of the workday (Select) field in DocType 'CRM Service Day' -#: crm/fcrm/doctype/crm_service_day/crm_service_day.json +#. Label of the workday (Select) field in PageType 'CRM Service Day' +#: crm/fcrm/pagetype/crm_service_day/crm_service_day.json msgid "Workday" msgstr "Radni Dan" -#. Label of the section_break_rmgo (Section Break) field in DocType 'CRM +#. Label of the section_break_rmgo (Section Break) field in PageType 'CRM #. Service Level Agreement' -#. Label of the working_hours (Table) field in DocType 'CRM Service Level +#. Label of the working_hours (Table) field in PageType 'CRM Service Level #. Agreement' -#: crm/fcrm/doctype/crm_service_level_agreement/crm_service_level_agreement.json +#: crm/fcrm/pagetype/crm_service_level_agreement/crm_service_level_agreement.json msgid "Working Hours" msgstr "Radno Vrijeme" @@ -5973,7 +5973,7 @@ msgstr "Nemate postavljen broj mobilnog telefona u svom Telefonskom Agentu" msgid "You do not have permission to access this document" msgstr "Nemate dopuštenje za pristup ovom dokumentu" -#: crm/fcrm/doctype/crm_form_script/crm_form_script.py:24 +#: crm/fcrm/pagetype/crm_form_script/crm_form_script.py:24 msgid "You need to be in developer mode to edit a Standard Form Script" msgstr "Morate biti u načinu rada razvojnog programera da biste uredili skriptu standardnog obrasca" @@ -6001,10 +6001,10 @@ msgstr "Vaši stari uslovi će biti prepisani. Jeste li sigurni da želite sprem msgid "added a" msgstr "dodao" -#. Option for the 'Color' (Select) field in DocType 'CRM Deal Status' -#. Option for the 'Color' (Select) field in DocType 'CRM Lead Status' -#: crm/fcrm/doctype/crm_deal_status/crm_deal_status.json -#: crm/fcrm/doctype/crm_lead_status/crm_lead_status.json +#. Option for the 'Color' (Select) field in PageType 'CRM Deal Status' +#. Option for the 'Color' (Select) field in PageType 'CRM Lead Status' +#: crm/fcrm/pagetype/crm_deal_status/crm_deal_status.json +#: crm/fcrm/pagetype/crm_lead_status/crm_lead_status.json msgid "amber" msgstr "jantar" @@ -6016,17 +6016,17 @@ msgstr "dodijelio ti je novi zadatak {0}" msgid "assigned a {0} {1} to you" msgstr "dodijelio ti je {0} {1}" -#. Option for the 'Color' (Select) field in DocType 'CRM Deal Status' -#. Option for the 'Color' (Select) field in DocType 'CRM Lead Status' -#: crm/fcrm/doctype/crm_deal_status/crm_deal_status.json -#: crm/fcrm/doctype/crm_lead_status/crm_lead_status.json +#. Option for the 'Color' (Select) field in PageType 'CRM Deal Status' +#. Option for the 'Color' (Select) field in PageType 'CRM Lead Status' +#: crm/fcrm/pagetype/crm_deal_status/crm_deal_status.json +#: crm/fcrm/pagetype/crm_lead_status/crm_lead_status.json msgid "black" msgstr "crna" -#. Option for the 'Color' (Select) field in DocType 'CRM Deal Status' -#. Option for the 'Color' (Select) field in DocType 'CRM Lead Status' -#: crm/fcrm/doctype/crm_deal_status/crm_deal_status.json -#: crm/fcrm/doctype/crm_lead_status/crm_lead_status.json +#. Option for the 'Color' (Select) field in PageType 'CRM Deal Status' +#. Option for the 'Color' (Select) field in PageType 'CRM Lead Status' +#: crm/fcrm/pagetype/crm_deal_status/crm_deal_status.json +#: crm/fcrm/pagetype/crm_lead_status/crm_lead_status.json msgid "blue" msgstr "plava" @@ -6043,10 +6043,10 @@ msgstr "komentar" msgid "condition" msgstr "uvjet" -#. Option for the 'Color' (Select) field in DocType 'CRM Deal Status' -#. Option for the 'Color' (Select) field in DocType 'CRM Lead Status' -#: crm/fcrm/doctype/crm_deal_status/crm_deal_status.json -#: crm/fcrm/doctype/crm_lead_status/crm_lead_status.json +#. Option for the 'Color' (Select) field in PageType 'CRM Deal Status' +#. Option for the 'Color' (Select) field in PageType 'CRM Lead Status' +#: crm/fcrm/pagetype/crm_deal_status/crm_deal_status.json +#: crm/fcrm/pagetype/crm_lead_status/crm_lead_status.json msgid "cyan" msgstr "cijan" @@ -6065,33 +6065,33 @@ msgstr "radni Prostor" msgid "email already exists" msgstr "e-pošta već postoji" -#. Option for the 'Service Provider' (Select) field in DocType 'FCRM Settings' -#: crm/fcrm/doctype/fcrm_settings/fcrm_settings.json +#. Option for the 'Service Provider' (Select) field in PageType 'FCRM Settings' +#: crm/fcrm/pagetype/fcrm_settings/fcrm_settings.json #: frontend/src/components/Settings/CurrencySettings.vue:106 msgid "exchangerate.host" msgstr "exchangerate.host" -#. Option for the 'Service Provider' (Select) field in DocType 'FCRM Settings' -#: crm/fcrm/doctype/fcrm_settings/fcrm_settings.json +#. Option for the 'Service Provider' (Select) field in PageType 'FCRM Settings' +#: crm/fcrm/pagetype/fcrm_settings/fcrm_settings.json msgid "frankfurter.app" msgstr "frankfurter.app" -#. Option for the 'Color' (Select) field in DocType 'CRM Deal Status' -#. Option for the 'Color' (Select) field in DocType 'CRM Lead Status' -#: crm/fcrm/doctype/crm_deal_status/crm_deal_status.json -#: crm/fcrm/doctype/crm_lead_status/crm_lead_status.json +#. Option for the 'Color' (Select) field in PageType 'CRM Deal Status' +#. Option for the 'Color' (Select) field in PageType 'CRM Lead Status' +#: crm/fcrm/pagetype/crm_deal_status/crm_deal_status.json +#: crm/fcrm/pagetype/crm_lead_status/crm_lead_status.json msgid "gray" msgstr "sivo" -#. Option for the 'Color' (Select) field in DocType 'CRM Deal Status' -#. Option for the 'Color' (Select) field in DocType 'CRM Lead Status' -#: crm/fcrm/doctype/crm_deal_status/crm_deal_status.json -#: crm/fcrm/doctype/crm_lead_status/crm_lead_status.json +#. Option for the 'Color' (Select) field in PageType 'CRM Deal Status' +#. Option for the 'Color' (Select) field in PageType 'CRM Lead Status' +#: crm/fcrm/pagetype/crm_deal_status/crm_deal_status.json +#: crm/fcrm/pagetype/crm_lead_status/crm_lead_status.json msgid "green" msgstr "zeleno" -#. Option for the 'Type' (Select) field in DocType 'CRM View Settings' -#: crm/fcrm/doctype/crm_view_settings/crm_view_settings.json +#. Option for the 'Type' (Select) field in PageType 'CRM View Settings' +#: crm/fcrm/pagetype/crm_view_settings/crm_view_settings.json msgid "group_by" msgstr "grupiraj_po" @@ -6176,12 +6176,12 @@ msgstr "john@doe.com" msgid "just now" msgstr "upravo sada" -#. Option for the 'Type' (Select) field in DocType 'CRM View Settings' -#: crm/fcrm/doctype/crm_view_settings/crm_view_settings.json +#. Option for the 'Type' (Select) field in PageType 'CRM View Settings' +#: crm/fcrm/pagetype/crm_view_settings/crm_view_settings.json msgid "kanban" msgstr "oglasna Tabla" -#: crm/api/doc.py:40 crm/api/doc.py:158 crm/api/doc.py:503 +#: crm/api/pg.py:40 crm/api/pg.py:158 crm/api/pg.py:503 msgid "label" msgstr "oznaka" @@ -6190,8 +6190,8 @@ msgstr "oznaka" msgid "leads" msgstr "potencijalni Klijenti" -#. Option for the 'Type' (Select) field in DocType 'CRM View Settings' -#: crm/fcrm/doctype/crm_view_settings/crm_view_settings.json +#. Option for the 'Type' (Select) field in PageType 'CRM View Settings' +#: crm/fcrm/pagetype/crm_view_settings/crm_view_settings.json msgid "list" msgstr "lista" @@ -6212,17 +6212,17 @@ msgstr "sad" msgid "operator" msgstr "operater" -#. Option for the 'Color' (Select) field in DocType 'CRM Deal Status' -#. Option for the 'Color' (Select) field in DocType 'CRM Lead Status' -#: crm/fcrm/doctype/crm_deal_status/crm_deal_status.json -#: crm/fcrm/doctype/crm_lead_status/crm_lead_status.json +#. Option for the 'Color' (Select) field in PageType 'CRM Deal Status' +#. Option for the 'Color' (Select) field in PageType 'CRM Lead Status' +#: crm/fcrm/pagetype/crm_deal_status/crm_deal_status.json +#: crm/fcrm/pagetype/crm_lead_status/crm_lead_status.json msgid "orange" msgstr "narandžasta" -#. Option for the 'Color' (Select) field in DocType 'CRM Deal Status' -#. Option for the 'Color' (Select) field in DocType 'CRM Lead Status' -#: crm/fcrm/doctype/crm_deal_status/crm_deal_status.json -#: crm/fcrm/doctype/crm_lead_status/crm_lead_status.json +#. Option for the 'Color' (Select) field in PageType 'CRM Deal Status' +#. Option for the 'Color' (Select) field in PageType 'CRM Lead Status' +#: crm/fcrm/pagetype/crm_deal_status/crm_deal_status.json +#: crm/fcrm/pagetype/crm_lead_status/crm_lead_status.json msgid "pink" msgstr "roze" @@ -6238,10 +6238,10 @@ msgstr "privatno" msgid "public" msgstr "javno" -#. Option for the 'Color' (Select) field in DocType 'CRM Deal Status' -#. Option for the 'Color' (Select) field in DocType 'CRM Lead Status' -#: crm/fcrm/doctype/crm_deal_status/crm_deal_status.json -#: crm/fcrm/doctype/crm_lead_status/crm_lead_status.json +#. Option for the 'Color' (Select) field in PageType 'CRM Deal Status' +#. Option for the 'Color' (Select) field in PageType 'CRM Lead Status' +#: crm/fcrm/pagetype/crm_deal_status/crm_deal_status.json +#: crm/fcrm/pagetype/crm_lead_status/crm_lead_status.json msgid "purple" msgstr "ljubičasta" @@ -6249,17 +6249,17 @@ msgstr "ljubičasta" msgid "received a whatsapp message in {0}" msgstr "primio je WhatsApp poruku u {0}" -#. Option for the 'Color' (Select) field in DocType 'CRM Deal Status' -#. Option for the 'Color' (Select) field in DocType 'CRM Lead Status' -#: crm/fcrm/doctype/crm_deal_status/crm_deal_status.json -#: crm/fcrm/doctype/crm_lead_status/crm_lead_status.json +#. Option for the 'Color' (Select) field in PageType 'CRM Deal Status' +#. Option for the 'Color' (Select) field in PageType 'CRM Lead Status' +#: crm/fcrm/pagetype/crm_deal_status/crm_deal_status.json +#: crm/fcrm/pagetype/crm_lead_status/crm_lead_status.json msgid "red" msgstr "crveno" -#. Option for the 'Color' (Select) field in DocType 'CRM Deal Status' -#. Option for the 'Color' (Select) field in DocType 'CRM Lead Status' -#: crm/fcrm/doctype/crm_deal_status/crm_deal_status.json -#: crm/fcrm/doctype/crm_lead_status/crm_lead_status.json +#. Option for the 'Color' (Select) field in PageType 'CRM Deal Status' +#. Option for the 'Color' (Select) field in PageType 'CRM Lead Status' +#: crm/fcrm/pagetype/crm_deal_status/crm_deal_status.json +#: crm/fcrm/pagetype/crm_lead_status/crm_lead_status.json msgid "teal" msgstr "plavozelena" @@ -6272,10 +6272,10 @@ msgstr "do" msgid "tomorrow" msgstr "sutra" -#. Option for the 'Color' (Select) field in DocType 'CRM Deal Status' -#. Option for the 'Color' (Select) field in DocType 'CRM Lead Status' -#: crm/fcrm/doctype/crm_deal_status/crm_deal_status.json -#: crm/fcrm/doctype/crm_lead_status/crm_lead_status.json +#. Option for the 'Color' (Select) field in PageType 'CRM Deal Status' +#. Option for the 'Color' (Select) field in PageType 'CRM Lead Status' +#: crm/fcrm/pagetype/crm_deal_status/crm_deal_status.json +#: crm/fcrm/pagetype/crm_lead_status/crm_lead_status.json msgid "violet" msgstr "ljubičasta" @@ -6284,10 +6284,10 @@ msgstr "ljubičasta" msgid "which are not compatible with this UI, you will need to recreate the conditions here if you want to manage and add new conditions from this UI." msgstr "koji nisu kompatibilni s ovim korisničkim sučeljem, morat ćete ponovno stvoriti uvjete ovdje ako želite upravljati i dodavati nove uvjete iz ovog korisničkog sučelja." -#. Option for the 'Color' (Select) field in DocType 'CRM Deal Status' -#. Option for the 'Color' (Select) field in DocType 'CRM Lead Status' -#: crm/fcrm/doctype/crm_deal_status/crm_deal_status.json -#: crm/fcrm/doctype/crm_lead_status/crm_lead_status.json +#. Option for the 'Color' (Select) field in PageType 'CRM Deal Status' +#. Option for the 'Color' (Select) field in PageType 'CRM Lead Status' +#: crm/fcrm/pagetype/crm_deal_status/crm_deal_status.json +#: crm/fcrm/pagetype/crm_lead_status/crm_lead_status.json msgid "yellow" msgstr "žuta" @@ -6385,8 +6385,8 @@ msgid "⚠️ Method \"{0}\" not found in class." msgstr "⚠️ Metoda \"{0}\" nije pronađena u klasi." #: frontend/src/data/script.js:83 -msgid "⚠️ No class found for doctype: {0}, it is mandatory to have a class for the parent doctype. it can be empty, but it should be present." -msgstr "⚠️ Nije pronađena klasa za doctype: {0}, obavezno je imati klasu za nadređeni doctype. Može biti prazna, ali treba biti prisutna." +msgid "⚠️ No class found for pagetype: {0}, it is mandatory to have a class for the parent pagetype. it can be empty, but it should be present." +msgstr "⚠️ Nije pronađena klasa za pagetype: {0}, obavezno je imati klasu za nadređeni pagetype. Može biti prazna, ali treba biti prisutna." #: frontend/src/data/script.js:180 msgid "⚠️ No data found for parent field: {0}" diff --git a/crm/locale/hu.po b/crm/locale/hu.po index 4efb0781..f659d778 100644 --- a/crm/locale/hu.po +++ b/crm/locale/hu.po @@ -1,6 +1,6 @@ msgid "" msgstr "" -"Project-Id-Version: frappe\n" +"Project-Id-Version: jingrow\n" "Report-Msgid-Bugs-To: shariq@jingrow.com\n" "POT-Creation-Date: 2025-09-21 09:35+0000\n" "PO-Revision-Date: 2025-09-22 20:42\n" @@ -11,10 +11,10 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Generated-By: Babel 2.16.0\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -"X-Crowdin-Project: frappe\n" +"X-Crowdin-Project: jingrow\n" "X-Crowdin-Project-ID: 639578\n" "X-Crowdin-Language: hu\n" -"X-Crowdin-File: /[frappe.crm] develop/crm/locale/main.pot\n" +"X-Crowdin-File: /[jingrow.crm] develop/crm/locale/main.pot\n" "X-Crowdin-File-ID: 97\n" "Language: hu_HU\n" @@ -55,73 +55,73 @@ msgstr "" msgid "1 year ago" msgstr "" -#. Option for the 'No. of Employees' (Select) field in DocType 'CRM Deal' -#. Option for the 'No. of Employees' (Select) field in DocType 'CRM Lead' -#. Option for the 'No. of Employees' (Select) field in DocType 'CRM +#. Option for the 'No. of Employees' (Select) field in PageType 'CRM Deal' +#. Option for the 'No. of Employees' (Select) field in PageType 'CRM Lead' +#. Option for the 'No. of Employees' (Select) field in PageType 'CRM #. Organization' -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_lead/crm_lead.json -#: crm/fcrm/doctype/crm_organization/crm_organization.json +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_lead/crm_lead.json +#: crm/fcrm/pagetype/crm_organization/crm_organization.json msgid "1-10" msgstr "" -#. Option for the 'No. of Employees' (Select) field in DocType 'CRM Deal' -#. Option for the 'No. of Employees' (Select) field in DocType 'CRM Lead' -#. Option for the 'No. of Employees' (Select) field in DocType 'CRM +#. Option for the 'No. of Employees' (Select) field in PageType 'CRM Deal' +#. Option for the 'No. of Employees' (Select) field in PageType 'CRM Lead' +#. Option for the 'No. of Employees' (Select) field in PageType 'CRM #. Organization' -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_lead/crm_lead.json -#: crm/fcrm/doctype/crm_organization/crm_organization.json +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_lead/crm_lead.json +#: crm/fcrm/pagetype/crm_organization/crm_organization.json msgid "1000+" msgstr "" -#. Option for the 'No. of Employees' (Select) field in DocType 'CRM Deal' -#. Option for the 'No. of Employees' (Select) field in DocType 'CRM Lead' -#. Option for the 'No. of Employees' (Select) field in DocType 'CRM +#. Option for the 'No. of Employees' (Select) field in PageType 'CRM Deal' +#. Option for the 'No. of Employees' (Select) field in PageType 'CRM Lead' +#. Option for the 'No. of Employees' (Select) field in PageType 'CRM #. Organization' -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_lead/crm_lead.json -#: crm/fcrm/doctype/crm_organization/crm_organization.json +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_lead/crm_lead.json +#: crm/fcrm/pagetype/crm_organization/crm_organization.json msgid "11-50" msgstr "" -#. Option for the 'No. of Employees' (Select) field in DocType 'CRM Deal' -#. Option for the 'No. of Employees' (Select) field in DocType 'CRM Lead' -#. Option for the 'No. of Employees' (Select) field in DocType 'CRM +#. Option for the 'No. of Employees' (Select) field in PageType 'CRM Deal' +#. Option for the 'No. of Employees' (Select) field in PageType 'CRM Lead' +#. Option for the 'No. of Employees' (Select) field in PageType 'CRM #. Organization' -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_lead/crm_lead.json -#: crm/fcrm/doctype/crm_organization/crm_organization.json +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_lead/crm_lead.json +#: crm/fcrm/pagetype/crm_organization/crm_organization.json msgid "201-500" msgstr "" -#. Option for the 'No. of Employees' (Select) field in DocType 'CRM Deal' -#. Option for the 'No. of Employees' (Select) field in DocType 'CRM Lead' -#. Option for the 'No. of Employees' (Select) field in DocType 'CRM +#. Option for the 'No. of Employees' (Select) field in PageType 'CRM Deal' +#. Option for the 'No. of Employees' (Select) field in PageType 'CRM Lead' +#. Option for the 'No. of Employees' (Select) field in PageType 'CRM #. Organization' -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_lead/crm_lead.json -#: crm/fcrm/doctype/crm_organization/crm_organization.json +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_lead/crm_lead.json +#: crm/fcrm/pagetype/crm_organization/crm_organization.json msgid "501-1000" msgstr "" -#. Option for the 'No. of Employees' (Select) field in DocType 'CRM Deal' -#. Option for the 'No. of Employees' (Select) field in DocType 'CRM Lead' -#. Option for the 'No. of Employees' (Select) field in DocType 'CRM +#. Option for the 'No. of Employees' (Select) field in PageType 'CRM Deal' +#. Option for the 'No. of Employees' (Select) field in PageType 'CRM Lead' +#. Option for the 'No. of Employees' (Select) field in PageType 'CRM #. Organization' -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_lead/crm_lead.json -#: crm/fcrm/doctype/crm_organization/crm_organization.json +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_lead/crm_lead.json +#: crm/fcrm/pagetype/crm_organization/crm_organization.json msgid "51-200" msgstr "" -#. Paragraph text in the Frappe CRM Workspace -#: crm/fcrm/workspace/frappe_crm/frappe_crm.json +#. Paragraph text in the Jingrow CRM Workspace +#: crm/fcrm/workspace/jingrow_crm/jingrow_crm.json msgid "META" msgstr "" -#. Paragraph text in the Frappe CRM Workspace -#: crm/fcrm/workspace/frappe_crm/frappe_crm.json +#. Paragraph text in the Jingrow CRM Workspace +#: crm/fcrm/workspace/jingrow_crm/jingrow_crm.json msgid "SHORTCUTS" msgstr "" @@ -130,8 +130,8 @@ msgstr "" msgid "

Dear {{ lead_name }},

\\n\\n

This is a reminder for the payment of {{ grand_total }}.

\\n\\n

Thanks,

\\n

Frappé

" msgstr "" -#. Header text in the Frappe CRM Workspace -#: crm/fcrm/workspace/frappe_crm/frappe_crm.json +#. Header text in the Jingrow CRM Workspace +#: crm/fcrm/workspace/jingrow_crm/jingrow_crm.json msgid "PORTAL" msgstr "" @@ -139,7 +139,7 @@ msgstr "" msgid "@John, can you please check this?" msgstr "" -#: crm/fcrm/doctype/crm_lead/crm_lead.py:56 +#: crm/fcrm/pagetype/crm_lead/crm_lead.py:56 msgid "A Lead requires either a person's name or an organization's name" msgstr "" @@ -147,14 +147,14 @@ msgstr "" msgid "A new account has been created for you at {0}" msgstr "" -#. Label of the api_key (Data) field in DocType 'CRM Exotel Settings' -#. Label of the api_key (Data) field in DocType 'CRM Twilio Settings' -#. Label of the api_key (Data) field in DocType 'ERPNext CRM Settings' -#. Label of the api_key (Data) field in DocType 'Helpdesk CRM Settings' -#: crm/fcrm/doctype/crm_exotel_settings/crm_exotel_settings.json -#: crm/fcrm/doctype/crm_twilio_settings/crm_twilio_settings.json -#: crm/fcrm/doctype/erpnext_crm_settings/erpnext_crm_settings.json -#: crm/fcrm/doctype/helpdesk_crm_settings/helpdesk_crm_settings.json +#. Label of the api_key (Data) field in PageType 'CRM Exotel Settings' +#. Label of the api_key (Data) field in PageType 'CRM Twilio Settings' +#. Label of the api_key (Data) field in PageType 'ERPNext CRM Settings' +#. Label of the api_key (Data) field in PageType 'Helpdesk CRM Settings' +#: crm/fcrm/pagetype/crm_exotel_settings/crm_exotel_settings.json +#: crm/fcrm/pagetype/crm_twilio_settings/crm_twilio_settings.json +#: crm/fcrm/pagetype/erpnext_crm_settings/erpnext_crm_settings.json +#: crm/fcrm/pagetype/helpdesk_crm_settings/helpdesk_crm_settings.json msgid "API Key" msgstr "API kulcs" @@ -162,17 +162,17 @@ msgstr "API kulcs" msgid "API Key is required" msgstr "" -#. Label of the api_secret (Password) field in DocType 'CRM Twilio Settings' -#. Label of the api_secret (Password) field in DocType 'ERPNext CRM Settings' -#. Label of the api_secret (Password) field in DocType 'Helpdesk CRM Settings' -#: crm/fcrm/doctype/crm_twilio_settings/crm_twilio_settings.json -#: crm/fcrm/doctype/erpnext_crm_settings/erpnext_crm_settings.json -#: crm/fcrm/doctype/helpdesk_crm_settings/helpdesk_crm_settings.json +#. Label of the api_secret (Password) field in PageType 'CRM Twilio Settings' +#. Label of the api_secret (Password) field in PageType 'ERPNext CRM Settings' +#. Label of the api_secret (Password) field in PageType 'Helpdesk CRM Settings' +#: crm/fcrm/pagetype/crm_twilio_settings/crm_twilio_settings.json +#: crm/fcrm/pagetype/erpnext_crm_settings/erpnext_crm_settings.json +#: crm/fcrm/pagetype/helpdesk_crm_settings/helpdesk_crm_settings.json msgid "API Secret" msgstr "API Secret" -#. Label of the api_token (Password) field in DocType 'CRM Exotel Settings' -#: crm/fcrm/doctype/crm_exotel_settings/crm_exotel_settings.json +#. Label of the api_token (Password) field in PageType 'CRM Exotel Settings' +#: crm/fcrm/pagetype/crm_exotel_settings/crm_exotel_settings.json msgid "API Token" msgstr "" @@ -180,7 +180,7 @@ msgstr "" msgid "Accept" msgstr "" -#: crm/fcrm/doctype/crm_invitation/crm_invitation.js:7 +#: crm/fcrm/pagetype/crm_invitation/crm_invitation.js:7 msgid "Accept Invitation" msgstr "" @@ -188,22 +188,22 @@ msgstr "" msgid "Accept call" msgstr "" -#. Option for the 'Status' (Select) field in DocType 'CRM Invitation' -#: crm/fcrm/doctype/crm_invitation/crm_invitation.json +#. Option for the 'Status' (Select) field in PageType 'CRM Invitation' +#: crm/fcrm/pagetype/crm_invitation/crm_invitation.json msgid "Accepted" msgstr "Elfogadva" -#. Label of the accepted_at (Datetime) field in DocType 'CRM Invitation' -#: crm/fcrm/doctype/crm_invitation/crm_invitation.json +#. Label of the accepted_at (Datetime) field in PageType 'CRM Invitation' +#: crm/fcrm/pagetype/crm_invitation/crm_invitation.json msgid "Accepted At" msgstr "" -#. Label of the access_key (Data) field in DocType 'FCRM Settings' -#: crm/fcrm/doctype/fcrm_settings/fcrm_settings.json +#. Label of the access_key (Data) field in PageType 'FCRM Settings' +#: crm/fcrm/pagetype/fcrm_settings/fcrm_settings.json msgid "Access Key" msgstr "" -#: crm/fcrm/doctype/fcrm_settings/fcrm_settings.py:156 +#: crm/fcrm/pagetype/fcrm_settings/fcrm_settings.py:156 msgid "Access Key is required for Service Provider: {0}" msgstr "" @@ -219,10 +219,10 @@ msgstr "" msgid "Account Name" msgstr "" -#. Label of the account_sid (Data) field in DocType 'CRM Exotel Settings' -#. Label of the account_sid (Data) field in DocType 'CRM Twilio Settings' -#: crm/fcrm/doctype/crm_exotel_settings/crm_exotel_settings.json -#: crm/fcrm/doctype/crm_twilio_settings/crm_twilio_settings.json +#. Label of the account_sid (Data) field in PageType 'CRM Exotel Settings' +#. Label of the account_sid (Data) field in PageType 'CRM Twilio Settings' +#: crm/fcrm/pagetype/crm_exotel_settings/crm_exotel_settings.json +#: crm/fcrm/pagetype/crm_twilio_settings/crm_twilio_settings.json msgid "Account SID" msgstr "" @@ -296,9 +296,9 @@ msgstr "" msgid "Add Tab" msgstr "" -#. Label of the add_weekly_holidays_section (Section Break) field in DocType +#. Label of the add_weekly_holidays_section (Section Break) field in PageType #. 'CRM Holiday List' -#: crm/fcrm/doctype/crm_holiday_list/crm_holiday_list.json +#: crm/fcrm/pagetype/crm_holiday_list/crm_holiday_list.json msgid "Add Weekly Holidays" msgstr "" @@ -363,8 +363,8 @@ msgstr "" msgid "Add sample data" msgstr "" -#. Description of the 'Icon' (Code) field in DocType 'CRM Dropdown Item' -#: crm/fcrm/doctype/crm_dropdown_item/crm_dropdown_item.json +#. Description of the 'Icon' (Code) field in PageType 'CRM Dropdown Item' +#: crm/fcrm/pagetype/crm_dropdown_item/crm_dropdown_item.json msgid "Add svg code or use feather icons e.g 'settings'" msgstr "" @@ -372,8 +372,8 @@ msgstr "" msgid "Add task" msgstr "" -#. Label of the add_to_holidays (Button) field in DocType 'CRM Holiday List' -#: crm/fcrm/doctype/crm_holiday_list/crm_holiday_list.json +#. Label of the add_to_holidays (Button) field in PageType 'CRM Holiday List' +#: crm/fcrm/pagetype/crm_holiday_list/crm_holiday_list.json msgid "Add to Holidays" msgstr "" @@ -385,8 +385,8 @@ msgstr "" msgid "Add, edit, and manage email templates for various CRM communications" msgstr "" -#. Label of the address (Link) field in DocType 'CRM Organization' -#: crm/fcrm/doctype/crm_organization/crm_organization.json +#. Label of the address (Link) field in PageType 'CRM Organization' +#: crm/fcrm/pagetype/crm_organization/crm_organization.json msgid "Address" msgstr "" @@ -406,14 +406,14 @@ msgid "Agent is unavailable to take the call, please call after some time." msgstr "" #. Name of a role -#: crm/fcrm/doctype/crm_exotel_settings/crm_exotel_settings.json -#: crm/fcrm/doctype/crm_fields_layout/crm_fields_layout.json -#: crm/fcrm/doctype/crm_form_script/crm_form_script.json -#: crm/fcrm/doctype/crm_industry/crm_industry.json -#: crm/fcrm/doctype/crm_lead/crm_lead.json -#: crm/fcrm/doctype/crm_lead_source/crm_lead_source.json -#: crm/fcrm/doctype/crm_lead_status/crm_lead_status.json -#: crm/fcrm/doctype/fcrm_settings/fcrm_settings.json +#: crm/fcrm/pagetype/crm_exotel_settings/crm_exotel_settings.json +#: crm/fcrm/pagetype/crm_fields_layout/crm_fields_layout.json +#: crm/fcrm/pagetype/crm_form_script/crm_form_script.json +#: crm/fcrm/pagetype/crm_industry/crm_industry.json +#: crm/fcrm/pagetype/crm_lead/crm_lead.json +#: crm/fcrm/pagetype/crm_lead_source/crm_lead_source.json +#: crm/fcrm/pagetype/crm_lead_status/crm_lead_status.json +#: crm/fcrm/pagetype/fcrm_settings/fcrm_settings.json #: frontend/src/components/Settings/EmailTemplate/EmailTemplates.vue:76 #: frontend/src/components/Settings/Users.vue:85 msgid "All" @@ -426,16 +426,16 @@ msgstr "" msgid "All day" msgstr "" -#. Label of the amount (Currency) field in DocType 'CRM Products' -#: crm/fcrm/doctype/crm_products/crm_products.json +#. Label of the amount (Currency) field in PageType 'CRM Products' +#: crm/fcrm/pagetype/crm_products/crm_products.json #: frontend/src/pages/Contact.vue:499 frontend/src/pages/MobileContact.vue:507 #: frontend/src/pages/MobileOrganization.vue:451 #: frontend/src/pages/Organization.vue:472 msgid "Amount" msgstr "" -#. Description of the 'Net Amount' (Currency) field in DocType 'CRM Products' -#: crm/fcrm/doctype/crm_products/crm_products.json +#. Description of the 'Net Amount' (Currency) field in PageType 'CRM Products' +#: crm/fcrm/pagetype/crm_products/crm_products.json msgid "Amount after discount" msgstr "" @@ -447,13 +447,13 @@ msgstr "" msgid "An error occurred while updating the document" msgstr "" -#. Description of the 'Favicon' (Attach) field in DocType 'FCRM Settings' -#: crm/fcrm/doctype/fcrm_settings/fcrm_settings.json +#. Description of the 'Favicon' (Attach) field in PageType 'FCRM Settings' +#: crm/fcrm/pagetype/fcrm_settings/fcrm_settings.json msgid "An icon file with .ico extension. Should be 16 x 16 px. Generated using a favicon generator. [favicon-generator.org]" msgstr "" -#. Description of the 'Logo' (Attach) field in DocType 'FCRM Settings' -#: crm/fcrm/doctype/fcrm_settings/fcrm_settings.json +#. Description of the 'Logo' (Attach) field in PageType 'FCRM Settings' +#: crm/fcrm/pagetype/fcrm_settings/fcrm_settings.json msgid "An image with 1:1 & 2:1 ratio is preferred" msgstr "" @@ -461,12 +461,12 @@ msgstr "" msgid "And" msgstr "" -#. Label of the annual_revenue (Currency) field in DocType 'CRM Deal' -#. Label of the annual_revenue (Currency) field in DocType 'CRM Lead' -#. Label of the annual_revenue (Currency) field in DocType 'CRM Organization' -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_lead/crm_lead.json -#: crm/fcrm/doctype/crm_organization/crm_organization.json +#. Label of the annual_revenue (Currency) field in PageType 'CRM Deal' +#. Label of the annual_revenue (Currency) field in PageType 'CRM Lead' +#. Label of the annual_revenue (Currency) field in PageType 'CRM Organization' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_lead/crm_lead.json +#: crm/fcrm/pagetype/crm_organization/crm_organization.json msgid "Annual Revenue" msgstr "" @@ -488,13 +488,13 @@ msgstr "" msgid "Apply" msgstr "Alkalmaz" -#. Label of the apply_on (Link) field in DocType 'CRM Service Level Agreement' -#: crm/fcrm/doctype/crm_service_level_agreement/crm_service_level_agreement.json +#. Label of the apply_on (Link) field in PageType 'CRM Service Level Agreement' +#: crm/fcrm/pagetype/crm_service_level_agreement/crm_service_level_agreement.json msgid "Apply On" msgstr "" -#. Label of the view (Select) field in DocType 'CRM Form Script' -#: crm/fcrm/doctype/crm_form_script/crm_form_script.json +#. Label of the view (Select) field in PageType 'CRM Form Script' +#: crm/fcrm/pagetype/crm_form_script/crm_form_script.json msgid "Apply To" msgstr "Alkalmazás erre" @@ -540,10 +540,10 @@ msgid "Are you sure you want to go back? Unsaved changes will be lost." msgstr "" #: frontend/src/composables/frappecloud.js:24 -msgid "Are you sure you want to login to your Frappe Cloud dashboard?" +msgid "Are you sure you want to login to your Jingrow Cloud dashboard?" msgstr "" -#: crm/fcrm/doctype/erpnext_crm_settings/erpnext_crm_settings.js:9 +#: crm/fcrm/pagetype/erpnext_crm_settings/erpnext_crm_settings.js:9 msgid "Are you sure you want to reset 'Create Quotation from CRM Deal' Form Script?" msgstr "" @@ -555,7 +555,7 @@ msgstr "" msgid "Are you sure you want to unlink {0} linked item(s)?" msgstr "" -#: crm/fcrm/doctype/fcrm_settings/fcrm_settings.py:193 +#: crm/fcrm/pagetype/fcrm_settings/fcrm_settings.py:193 msgid "Ask your manager to set up the Exchange Rate Provider, as default provider does not support currency conversion for {0} to {1}." msgstr "" @@ -581,8 +581,8 @@ msgstr "" msgid "Assign to me" msgstr "Hozzám rendelt" -#. Label of the assigned_to (Link) field in DocType 'CRM Task' -#: crm/fcrm/doctype/crm_task/crm_task.json +#. Label of the assigned_to (Link) field in PageType 'CRM Task' +#: crm/fcrm/pagetype/crm_task/crm_task.json msgid "Assigned To" msgstr "" @@ -594,13 +594,13 @@ msgstr "" msgid "Assignees" msgstr "" -#. Option for the 'Type' (Select) field in DocType 'CRM Notification' -#: crm/fcrm/doctype/crm_notification/crm_notification.json +#. Option for the 'Type' (Select) field in PageType 'CRM Notification' +#: crm/fcrm/pagetype/crm_notification/crm_notification.json msgid "Assignment" msgstr "" -#. Label of a shortcut in the Frappe CRM Workspace -#: crm/fcrm/workspace/frappe_crm/frappe_crm.json +#. Label of a shortcut in the Jingrow CRM Workspace +#: crm/fcrm/workspace/jingrow_crm/jingrow_crm.json msgid "Assignment Rule" msgstr "Hozzárendelési szabály" @@ -678,14 +678,14 @@ msgstr "" msgid "Attendees" msgstr "" -#. Label of the auth_token (Password) field in DocType 'CRM Twilio Settings' -#: crm/fcrm/doctype/crm_twilio_settings/crm_twilio_settings.json +#. Label of the auth_token (Password) field in PageType 'CRM Twilio Settings' +#: crm/fcrm/pagetype/crm_twilio_settings/crm_twilio_settings.json msgid "Auth Token" msgstr "" -#. Label of the auto_update_expected_deal_value (Check) field in DocType 'FCRM +#. Label of the auto_update_expected_deal_value (Check) field in PageType 'FCRM #. Settings' -#: crm/fcrm/doctype/fcrm_settings/fcrm_settings.json +#: crm/fcrm/pagetype/fcrm_settings/fcrm_settings.json msgid "Auto Update Expected Deal Value" msgstr "" @@ -702,8 +702,8 @@ msgid "Auto update of expected deal value enabled" msgstr "" #. Description of the 'Auto Update Expected Deal Value' (Check) field in -#. DocType 'FCRM Settings' -#: crm/fcrm/doctype/fcrm_settings/fcrm_settings.json +#. PageType 'FCRM Settings' +#: crm/fcrm/pagetype/fcrm_settings/fcrm_settings.json #: frontend/src/components/Settings/ForecastingSettings.vue:46 msgid "Automatically update \"Expected Deal Value\" based on the total value of associated products in a deal" msgstr "" @@ -793,8 +793,8 @@ msgstr "" msgid "Back to file upload" msgstr "" -#. Option for the 'Status' (Select) field in DocType 'CRM Task' -#: crm/fcrm/doctype/crm_task/crm_task.json +#. Option for the 'Status' (Select) field in PageType 'CRM Task' +#: crm/fcrm/pagetype/crm_task/crm_task.json msgid "Backlog" msgstr "" @@ -818,8 +818,8 @@ msgstr "" msgid "Brand settings" msgstr "" -#. Label of the branding_tab (Tab Break) field in DocType 'FCRM Settings' -#: crm/fcrm/doctype/fcrm_settings/fcrm_settings.json +#. Label of the branding_tab (Tab Break) field in PageType 'FCRM Settings' +#: crm/fcrm/pagetype/fcrm_settings/fcrm_settings.json msgid "Branding" msgstr "" @@ -827,8 +827,8 @@ msgstr "" msgid "Bulk Edit" msgstr "Tömeges szerkesztés" -#. Option for the 'Status' (Select) field in DocType 'CRM Call Log' -#: crm/fcrm/doctype/crm_call_log/crm_call_log.json +#. Option for the 'Status' (Select) field in PageType 'CRM Call Log' +#: crm/fcrm/pagetype/crm_call_log/crm_call_log.json msgid "Busy" msgstr "" @@ -838,174 +838,174 @@ msgstr "" msgid "CC" msgstr "CC" -#. Name of a DocType -#: crm/fcrm/doctype/crm_call_log/crm_call_log.json +#. Name of a PageType +#: crm/fcrm/pagetype/crm_call_log/crm_call_log.json msgid "CRM Call Log" msgstr "" -#. Name of a DocType -#: crm/fcrm/doctype/crm_communication_status/crm_communication_status.json +#. Name of a PageType +#: crm/fcrm/pagetype/crm_communication_status/crm_communication_status.json msgid "CRM Communication Status" msgstr "" -#. Name of a DocType -#: crm/fcrm/doctype/crm_contacts/crm_contacts.json +#. Name of a PageType +#: crm/fcrm/pagetype/crm_contacts/crm_contacts.json msgid "CRM Contacts" msgstr "" -#. Name of a DocType -#: crm/fcrm/doctype/crm_dashboard/crm_dashboard.json +#. Name of a PageType +#: crm/fcrm/pagetype/crm_dashboard/crm_dashboard.json #: frontend/src/pages/Dashboard.vue:304 msgid "CRM Dashboard" msgstr "" -#. Name of a DocType -#: crm/fcrm/doctype/crm_deal/crm_deal.json +#. Name of a PageType +#: crm/fcrm/pagetype/crm_deal/crm_deal.json msgid "CRM Deal" msgstr "" -#. Name of a DocType -#: crm/fcrm/doctype/crm_deal_status/crm_deal_status.json +#. Name of a PageType +#: crm/fcrm/pagetype/crm_deal_status/crm_deal_status.json msgid "CRM Deal Status" msgstr "" -#. Name of a DocType -#: crm/fcrm/doctype/crm_dropdown_item/crm_dropdown_item.json +#. Name of a PageType +#: crm/fcrm/pagetype/crm_dropdown_item/crm_dropdown_item.json msgid "CRM Dropdown Item" msgstr "" -#. Name of a DocType -#: crm/fcrm/doctype/crm_exotel_settings/crm_exotel_settings.json +#. Name of a PageType +#: crm/fcrm/pagetype/crm_exotel_settings/crm_exotel_settings.json msgid "CRM Exotel Settings" msgstr "" -#. Name of a DocType -#: crm/fcrm/doctype/crm_fields_layout/crm_fields_layout.json +#. Name of a PageType +#: crm/fcrm/pagetype/crm_fields_layout/crm_fields_layout.json msgid "CRM Fields Layout" msgstr "" -#. Name of a DocType -#: crm/fcrm/doctype/crm_form_script/crm_form_script.json +#. Name of a PageType +#: crm/fcrm/pagetype/crm_form_script/crm_form_script.json msgid "CRM Form Script" msgstr "" -#. Name of a DocType -#: crm/fcrm/doctype/crm_global_settings/crm_global_settings.json +#. Name of a PageType +#: crm/fcrm/pagetype/crm_global_settings/crm_global_settings.json msgid "CRM Global Settings" msgstr "" -#. Name of a DocType -#: crm/fcrm/doctype/crm_holiday/crm_holiday.json +#. Name of a PageType +#: crm/fcrm/pagetype/crm_holiday/crm_holiday.json msgid "CRM Holiday" msgstr "" -#. Name of a DocType -#: crm/fcrm/doctype/crm_holiday_list/crm_holiday_list.json +#. Name of a PageType +#: crm/fcrm/pagetype/crm_holiday_list/crm_holiday_list.json msgid "CRM Holiday List" msgstr "" -#. Name of a DocType -#: crm/fcrm/doctype/crm_industry/crm_industry.json +#. Name of a PageType +#: crm/fcrm/pagetype/crm_industry/crm_industry.json msgid "CRM Industry" msgstr "" -#. Name of a DocType -#: crm/fcrm/doctype/crm_invitation/crm_invitation.json +#. Name of a PageType +#: crm/fcrm/pagetype/crm_invitation/crm_invitation.json msgid "CRM Invitation" msgstr "" -#. Name of a DocType -#: crm/fcrm/doctype/crm_lead/crm_lead.json +#. Name of a PageType +#: crm/fcrm/pagetype/crm_lead/crm_lead.json msgid "CRM Lead" msgstr "" -#. Name of a DocType -#: crm/fcrm/doctype/crm_lead_source/crm_lead_source.json +#. Name of a PageType +#: crm/fcrm/pagetype/crm_lead_source/crm_lead_source.json msgid "CRM Lead Source" msgstr "" -#. Name of a DocType -#: crm/fcrm/doctype/crm_lead_status/crm_lead_status.json +#. Name of a PageType +#: crm/fcrm/pagetype/crm_lead_status/crm_lead_status.json msgid "CRM Lead Status" msgstr "" -#. Name of a DocType -#: crm/fcrm/doctype/crm_lost_reason/crm_lost_reason.json +#. Name of a PageType +#: crm/fcrm/pagetype/crm_lost_reason/crm_lost_reason.json msgid "CRM Lost Reason" msgstr "" -#. Name of a DocType -#: crm/fcrm/doctype/crm_notification/crm_notification.json +#. Name of a PageType +#: crm/fcrm/pagetype/crm_notification/crm_notification.json msgid "CRM Notification" msgstr "" -#. Name of a DocType -#: crm/fcrm/doctype/crm_organization/crm_organization.json +#. Name of a PageType +#: crm/fcrm/pagetype/crm_organization/crm_organization.json msgid "CRM Organization" msgstr "" -#. Label of a shortcut in the Frappe CRM Workspace -#: crm/fcrm/workspace/frappe_crm/frappe_crm.json +#. Label of a shortcut in the Jingrow CRM Workspace +#: crm/fcrm/workspace/jingrow_crm/jingrow_crm.json msgid "CRM Portal Page" msgstr "" -#. Name of a DocType -#: crm/fcrm/doctype/crm_product/crm_product.json +#. Name of a PageType +#: crm/fcrm/pagetype/crm_product/crm_product.json msgid "CRM Product" msgstr "" -#. Name of a DocType -#: crm/fcrm/doctype/crm_products/crm_products.json +#. Name of a PageType +#: crm/fcrm/pagetype/crm_products/crm_products.json msgid "CRM Products" msgstr "" -#. Name of a DocType -#: crm/fcrm/doctype/crm_service_day/crm_service_day.json +#. Name of a PageType +#: crm/fcrm/pagetype/crm_service_day/crm_service_day.json msgid "CRM Service Day" msgstr "" -#. Name of a DocType -#: crm/fcrm/doctype/crm_service_level_agreement/crm_service_level_agreement.json +#. Name of a PageType +#: crm/fcrm/pagetype/crm_service_level_agreement/crm_service_level_agreement.json msgid "CRM Service Level Agreement" msgstr "" -#. Name of a DocType -#: crm/fcrm/doctype/crm_service_level_priority/crm_service_level_priority.json +#. Name of a PageType +#: crm/fcrm/pagetype/crm_service_level_priority/crm_service_level_priority.json msgid "CRM Service Level Priority" msgstr "" -#. Name of a DocType -#: crm/fcrm/doctype/crm_status_change_log/crm_status_change_log.json +#. Name of a PageType +#: crm/fcrm/pagetype/crm_status_change_log/crm_status_change_log.json msgid "CRM Status Change Log" msgstr "" -#. Name of a DocType -#: crm/fcrm/doctype/crm_task/crm_task.json +#. Name of a PageType +#: crm/fcrm/pagetype/crm_task/crm_task.json msgid "CRM Task" msgstr "" -#. Name of a DocType -#: crm/fcrm/doctype/crm_telephony_agent/crm_telephony_agent.json +#. Name of a PageType +#: crm/fcrm/pagetype/crm_telephony_agent/crm_telephony_agent.json msgid "CRM Telephony Agent" msgstr "" -#. Name of a DocType -#: crm/fcrm/doctype/crm_telephony_phone/crm_telephony_phone.json +#. Name of a PageType +#: crm/fcrm/pagetype/crm_telephony_phone/crm_telephony_phone.json msgid "CRM Telephony Phone" msgstr "" -#. Name of a DocType -#: crm/fcrm/doctype/crm_territory/crm_territory.json +#. Name of a PageType +#: crm/fcrm/pagetype/crm_territory/crm_territory.json msgid "CRM Territory" msgstr "" -#. Name of a DocType -#: crm/fcrm/doctype/crm_twilio_settings/crm_twilio_settings.json +#. Name of a PageType +#: crm/fcrm/pagetype/crm_twilio_settings/crm_twilio_settings.json msgid "CRM Twilio Settings" msgstr "" -#. Name of a DocType -#: crm/fcrm/doctype/crm_view_settings/crm_view_settings.json +#. Name of a PageType +#: crm/fcrm/pagetype/crm_view_settings/crm_view_settings.json msgid "CRM View Settings" msgstr "" @@ -1021,13 +1021,13 @@ msgstr "" msgid "Call Details" msgstr "" -#. Label of the receiver (Link) field in DocType 'CRM Call Log' -#: crm/fcrm/doctype/crm_call_log/crm_call_log.json +#. Label of the receiver (Link) field in PageType 'CRM Call Log' +#: crm/fcrm/pagetype/crm_call_log/crm_call_log.json msgid "Call Received By" msgstr "" -#. Description of the 'Duration' (Duration) field in DocType 'CRM Call Log' -#: crm/fcrm/doctype/crm_call_log/crm_call_log.json +#. Description of the 'Duration' (Duration) field in PageType 'CRM Call Log' +#: crm/fcrm/pagetype/crm_call_log/crm_call_log.json msgid "Call duration in seconds" msgstr "" @@ -1045,8 +1045,8 @@ msgstr "" msgid "Call with John Doe" msgstr "" -#. Label of the caller (Link) field in DocType 'CRM Call Log' -#: crm/fcrm/doctype/crm_call_log/crm_call_log.json +#. Label of the caller (Link) field in PageType 'CRM Call Log' +#: crm/fcrm/pagetype/crm_call_log/crm_call_log.json msgid "Caller" msgstr "" @@ -1083,10 +1083,10 @@ msgstr "Kamera" msgid "Cancel" msgstr "Mégsem" -#. Option for the 'Status' (Select) field in DocType 'CRM Call Log' -#. Option for the 'Status' (Select) field in DocType 'CRM Task' -#: crm/fcrm/doctype/crm_call_log/crm_call_log.json -#: crm/fcrm/doctype/crm_task/crm_task.json +#. Option for the 'Status' (Select) field in PageType 'CRM Call Log' +#. Option for the 'Status' (Select) field in PageType 'CRM Task' +#: crm/fcrm/pagetype/crm_call_log/crm_call_log.json +#: crm/fcrm/pagetype/crm_task/crm_task.json msgid "Canceled" msgstr "" @@ -1094,7 +1094,7 @@ msgstr "" msgid "Cannot change role of user with Admin access" msgstr "" -#: crm/fcrm/doctype/fcrm_settings/fcrm_settings.py:34 +#: crm/fcrm/pagetype/fcrm_settings/fcrm_settings.py:34 msgid "Cannot delete standard items {0}" msgstr "" @@ -1189,8 +1189,8 @@ msgstr "" msgid "Clear Sort" msgstr "" -#. Label of the clear_table (Button) field in DocType 'CRM Holiday List' -#: crm/fcrm/doctype/crm_holiday_list/crm_holiday_list.json +#. Label of the clear_table (Button) field in PageType 'CRM Holiday List' +#: crm/fcrm/pagetype/crm_holiday_list/crm_holiday_list.json msgid "Clear Table" msgstr "" @@ -1211,8 +1211,8 @@ msgstr "" msgid "Close panel" msgstr "" -#. Label of the closed_date (Date) field in DocType 'CRM Deal' -#: crm/fcrm/doctype/crm_deal/crm_deal.json +#. Label of the closed_date (Date) field in PageType 'CRM Deal' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json msgid "Closed Date" msgstr "" @@ -1224,10 +1224,10 @@ msgstr "Összeomlás" msgid "Collapsible" msgstr "" -#. Label of the color (Select) field in DocType 'CRM Deal Status' -#. Label of the color (Select) field in DocType 'CRM Lead Status' -#: crm/fcrm/doctype/crm_deal_status/crm_deal_status.json -#: crm/fcrm/doctype/crm_lead_status/crm_lead_status.json +#. Label of the color (Select) field in PageType 'CRM Deal Status' +#. Label of the color (Select) field in PageType 'CRM Lead Status' +#: crm/fcrm/pagetype/crm_deal_status/crm_deal_status.json +#: crm/fcrm/pagetype/crm_lead_status/crm_lead_status.json msgid "Color" msgstr "Szín" @@ -1235,20 +1235,20 @@ msgstr "Szín" msgid "Column" msgstr "Oszlop" -#. Label of the column_field (Data) field in DocType 'CRM View Settings' -#: crm/fcrm/doctype/crm_view_settings/crm_view_settings.json +#. Label of the column_field (Data) field in PageType 'CRM View Settings' +#: crm/fcrm/pagetype/crm_view_settings/crm_view_settings.json #: frontend/src/components/Kanban/KanbanSettings.vue:12 msgid "Column Field" msgstr "" -#. Label of the columns (Code) field in DocType 'CRM View Settings' -#: crm/fcrm/doctype/crm_view_settings/crm_view_settings.json +#. Label of the columns (Code) field in PageType 'CRM View Settings' +#: crm/fcrm/pagetype/crm_view_settings/crm_view_settings.json #: frontend/src/components/ColumnSettings.vue:4 msgid "Columns" msgstr "" -#. Label of the comment (Link) field in DocType 'CRM Notification' -#: crm/fcrm/doctype/crm_notification/crm_notification.json +#. Label of the comment (Link) field in PageType 'CRM Notification' +#: crm/fcrm/pagetype/crm_notification/crm_notification.json #: frontend/src/components/CommentBox.vue:78 #: frontend/src/components/CommunicationArea.vue:16 #: frontend/src/components/Layouts/AppSidebar.vue:579 @@ -1264,20 +1264,20 @@ msgstr "" msgid "Common reasons for losing deals" msgstr "" -#. Label of the communication_status (Link) field in DocType 'CRM Deal' -#. Label of the communication_status (Link) field in DocType 'CRM Lead' -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_lead/crm_lead.json +#. Label of the communication_status (Link) field in PageType 'CRM Deal' +#. Label of the communication_status (Link) field in PageType 'CRM Lead' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_lead/crm_lead.json msgid "Communication Status" msgstr "" -#. Label of a shortcut in the Frappe CRM Workspace -#: crm/fcrm/workspace/frappe_crm/frappe_crm.json +#. Label of a shortcut in the Jingrow CRM Workspace +#: crm/fcrm/workspace/jingrow_crm/jingrow_crm.json msgid "Communication Statuses" msgstr "" -#. Label of the erpnext_company (Data) field in DocType 'ERPNext CRM Settings' -#: crm/fcrm/doctype/erpnext_crm_settings/erpnext_crm_settings.json +#. Label of the erpnext_company (Data) field in PageType 'ERPNext CRM Settings' +#: crm/fcrm/pagetype/erpnext_crm_settings/erpnext_crm_settings.json msgid "Company in ERPNext Site" msgstr "" @@ -1285,18 +1285,18 @@ msgstr "" msgid "Complete Registration" msgstr "Regisztráció befejezéséhez" -#. Option for the 'Status' (Select) field in DocType 'CRM Call Log' -#: crm/fcrm/doctype/crm_call_log/crm_call_log.json +#. Option for the 'Status' (Select) field in PageType 'CRM Call Log' +#: crm/fcrm/pagetype/crm_call_log/crm_call_log.json msgid "Completed" msgstr "" -#. Option for the 'Device' (Select) field in DocType 'CRM Telephony Agent' -#: crm/fcrm/doctype/crm_telephony_agent/crm_telephony_agent.json +#. Option for the 'Device' (Select) field in PageType 'CRM Telephony Agent' +#: crm/fcrm/pagetype/crm_telephony_agent/crm_telephony_agent.json msgid "Computer" msgstr "" -#. Label of the condition (Code) field in DocType 'CRM Service Level Agreement' -#: crm/fcrm/doctype/crm_service_level_agreement/crm_service_level_agreement.json +#. Label of the condition (Code) field in PageType 'CRM Service Level Agreement' +#: crm/fcrm/pagetype/crm_service_level_agreement/crm_service_level_agreement.json msgid "Condition" msgstr "Feltétel" @@ -1354,17 +1354,17 @@ msgstr "" msgid "Connect your email" msgstr "" -#. Label of the contact (Link) field in DocType 'CRM Contacts' -#. Label of the contact (Link) field in DocType 'CRM Deal' -#: crm/fcrm/doctype/crm_contacts/crm_contacts.json -#: crm/fcrm/doctype/crm_deal/crm_deal.json +#. Label of the contact (Link) field in PageType 'CRM Contacts' +#. Label of the contact (Link) field in PageType 'CRM Deal' +#: crm/fcrm/pagetype/crm_contacts/crm_contacts.json +#: crm/fcrm/pagetype/crm_deal/crm_deal.json #: frontend/src/components/Layouts/AppSidebar.vue:552 #: frontend/src/components/Modals/ConvertToDealModal.vue:51 #: frontend/src/pages/MobileLead.vue:145 msgid "Contact" msgstr "Kapcsolat" -#: crm/fcrm/doctype/crm_lead/crm_lead.py:212 +#: crm/fcrm/pagetype/crm_lead/crm_lead.py:212 msgid "Contact Already Exists" msgstr "" @@ -1384,7 +1384,7 @@ msgstr "" msgid "Contact already added" msgstr "" -#: crm/fcrm/doctype/crm_lead/crm_lead.py:211 +#: crm/fcrm/pagetype/crm_lead/crm_lead.py:211 msgid "Contact already exists with {0}" msgstr "" @@ -1405,18 +1405,18 @@ msgstr "" msgid "Contact updated" msgstr "" -#. Label of the contacts_tab (Tab Break) field in DocType 'CRM Deal' -#. Label of the contacts (Table) field in DocType 'CRM Deal' -#. Label of a shortcut in the Frappe CRM Workspace -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/workspace/frappe_crm/frappe_crm.json +#. Label of the contacts_tab (Tab Break) field in PageType 'CRM Deal' +#. Label of the contacts (Table) field in PageType 'CRM Deal' +#. Label of a shortcut in the Jingrow CRM Workspace +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/workspace/jingrow_crm/jingrow_crm.json #: frontend/src/pages/Contact.vue:234 frontend/src/pages/MobileContact.vue:212 #: frontend/src/pages/MobileOrganization.vue:331 msgid "Contacts" msgstr "" -#. Label of the content (Text Editor) field in DocType 'FCRM Note' -#: crm/fcrm/doctype/fcrm_note/fcrm_note.json +#. Label of the content (Text Editor) field in PageType 'FCRM Note' +#: crm/fcrm/pagetype/fcrm_note/fcrm_note.json #: frontend/src/components/Modals/NoteModal.vue:33 #: frontend/src/components/Settings/EmailTemplate/EditEmailTemplate.vue:89 #: frontend/src/components/Settings/EmailTemplate/EditEmailTemplate.vue:102 @@ -1456,8 +1456,8 @@ msgstr "" msgid "Convert to Deal" msgstr "" -#. Label of the converted (Check) field in DocType 'CRM Lead' -#: crm/fcrm/doctype/crm_lead/crm_lead.json +#. Label of the converted (Check) field in PageType 'CRM Lead' +#: crm/fcrm/pagetype/crm_lead/crm_lead.json msgid "Converted" msgstr "" @@ -1533,9 +1533,9 @@ msgstr "" msgid "Create an event" msgstr "" -#. Label of the create_customer_on_status_change (Check) field in DocType +#. Label of the create_customer_on_status_change (Check) field in PageType #. 'ERPNext CRM Settings' -#: crm/fcrm/doctype/erpnext_crm_settings/erpnext_crm_settings.json +#: crm/fcrm/pagetype/erpnext_crm_settings/erpnext_crm_settings.json msgid "Create customer on status change" msgstr "" @@ -1560,13 +1560,13 @@ msgstr "" msgid "Create your first task" msgstr "" -#. Label of the currency (Link) field in DocType 'CRM Deal' -#. Label of the currency (Link) field in DocType 'CRM Organization' -#. Label of the currency (Link) field in DocType 'FCRM Settings' -#. Label of the currency_tab (Tab Break) field in DocType 'FCRM Settings' -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_organization/crm_organization.json -#: crm/fcrm/doctype/fcrm_settings/fcrm_settings.json +#. Label of the currency (Link) field in PageType 'CRM Deal' +#. Label of the currency (Link) field in PageType 'CRM Organization' +#. Label of the currency (Link) field in PageType 'FCRM Settings' +#. Label of the currency_tab (Tab Break) field in PageType 'FCRM Settings' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_organization/crm_organization.json +#: crm/fcrm/pagetype/fcrm_settings/fcrm_settings.json #: frontend/src/components/Settings/CurrencySettings.vue:31 msgid "Currency" msgstr "" @@ -1631,13 +1631,13 @@ msgstr "" msgid "Data" msgstr "Adat" -#. Option for the 'Type' (Select) field in DocType 'CRM Fields Layout' -#: crm/fcrm/doctype/crm_fields_layout/crm_fields_layout.json +#. Option for the 'Type' (Select) field in PageType 'CRM Fields Layout' +#: crm/fcrm/pagetype/crm_fields_layout/crm_fields_layout.json msgid "Data Fields" msgstr "" -#. Label of the date (Date) field in DocType 'CRM Holiday' -#: crm/api/dashboard.py:601 crm/fcrm/doctype/crm_holiday/crm_holiday.json +#. Label of the date (Date) field in PageType 'CRM Holiday' +#: crm/api/dashboard.py:601 crm/fcrm/pagetype/crm_holiday/crm_holiday.json #: frontend/src/components/Calendar/CalendarEventPanel.vue:202 msgid "Date" msgstr "" @@ -1660,23 +1660,23 @@ msgstr "" msgid "Deal" msgstr "" -#. Label of the deal_owner (Link) field in DocType 'CRM Deal' -#: crm/fcrm/doctype/crm_deal/crm_deal.json +#. Label of the deal_owner (Link) field in PageType 'CRM Deal' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json msgid "Deal Owner" msgstr "" -#. Label of the deal_status (Link) field in DocType 'ERPNext CRM Settings' -#: crm/fcrm/doctype/erpnext_crm_settings/erpnext_crm_settings.json +#. Label of the deal_status (Link) field in PageType 'ERPNext CRM Settings' +#: crm/fcrm/pagetype/erpnext_crm_settings/erpnext_crm_settings.json msgid "Deal Status" msgstr "" -#. Label of a shortcut in the Frappe CRM Workspace -#: crm/fcrm/workspace/frappe_crm/frappe_crm.json +#. Label of a shortcut in the Jingrow CRM Workspace +#: crm/fcrm/workspace/jingrow_crm/jingrow_crm.json msgid "Deal Statuses" msgstr "" -#. Label of the deal_value (Currency) field in DocType 'CRM Deal' -#: crm/fcrm/doctype/crm_deal/crm_deal.json +#. Label of the deal_value (Currency) field in PageType 'CRM Deal' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json msgid "Deal Value" msgstr "" @@ -1694,8 +1694,8 @@ msgstr "" msgid "Deal value" msgstr "" -#. Label of a shortcut in the Frappe CRM Workspace -#: crm/fcrm/workspace/frappe_crm/frappe_crm.json +#. Label of a shortcut in the Jingrow CRM Workspace +#: crm/fcrm/workspace/jingrow_crm/jingrow_crm.json #: frontend/src/pages/Deal.vue:480 frontend/src/pages/MobileContact.vue:288 #: frontend/src/pages/MobileDeal.vue:384 #: frontend/src/pages/MobileOrganization.vue:325 @@ -1732,8 +1732,8 @@ msgstr "" msgid "Dear {{ lead_name }}, \\n\\nThis is a reminder for the payment of {{ grand_total }}. \\n\\nThanks, \\nFrappé" msgstr "" -#. Label of the default (Check) field in DocType 'CRM Service Level Agreement' -#: crm/fcrm/doctype/crm_service_level_agreement/crm_service_level_agreement.json +#. Label of the default (Check) field in PageType 'CRM Service Level Agreement' +#: crm/fcrm/pagetype/crm_service_level_agreement/crm_service_level_agreement.json msgid "Default" msgstr "" @@ -1745,8 +1745,8 @@ msgstr "Alapértelmezett Beérkezett üzenetek" msgid "Default Incoming" msgstr "Alapértelmezett bejövő" -#. Label of the default_medium (Select) field in DocType 'CRM Telephony Agent' -#: crm/fcrm/doctype/crm_telephony_agent/crm_telephony_agent.json +#. Label of the default_medium (Select) field in PageType 'CRM Telephony Agent' +#: crm/fcrm/pagetype/crm_telephony_agent/crm_telephony_agent.json msgid "Default Medium" msgstr "" @@ -1754,9 +1754,9 @@ msgstr "" msgid "Default Outgoing" msgstr "Alapértelmezett kimenő" -#. Label of the default_priority (Check) field in DocType 'CRM Service Level +#. Label of the default_priority (Check) field in PageType 'CRM Service Level #. Priority' -#: crm/fcrm/doctype/crm_service_level_priority/crm_service_level_priority.json +#: crm/fcrm/pagetype/crm_service_level_priority/crm_service_level_priority.json msgid "Default Priority" msgstr "" @@ -1768,7 +1768,7 @@ msgstr "Alapértelmezett küldés" msgid "Default Sending and Inbox" msgstr "Alapértelmezett Küldés és Beérkezett" -#: crm/fcrm/doctype/crm_service_level_agreement/crm_service_level_agreement.py:33 +#: crm/fcrm/pagetype/crm_service_level_agreement/crm_service_level_agreement.py:33 msgid "Default Service Level Agreement already exists for {0}" msgstr "" @@ -1788,8 +1788,8 @@ msgstr "" msgid "Default medium" msgstr "" -#: crm/fcrm/doctype/fcrm_settings/fcrm_settings.js:18 -#: crm/fcrm/doctype/fcrm_settings/fcrm_settings.js:30 +#: crm/fcrm/pagetype/fcrm_settings/fcrm_settings.js:18 +#: crm/fcrm/pagetype/fcrm_settings/fcrm_settings.js:30 msgid "Default statuses, custom fields and layouts restored successfully." msgstr "" @@ -1825,7 +1825,7 @@ msgstr "" msgid "Delete" msgstr "" -#: crm/fcrm/doctype/fcrm_settings/fcrm_settings.js:26 +#: crm/fcrm/pagetype/fcrm_settings/fcrm_settings.js:26 msgid "Delete & Restore" msgstr "" @@ -1883,14 +1883,14 @@ msgstr "" msgid "Delete {0} items" msgstr "" -#. Label of the description (Text Editor) field in DocType 'CRM Holiday' -#. Label of the description (Text Editor) field in DocType 'CRM Lost Reason' -#. Label of the description (Text Editor) field in DocType 'CRM Product' -#. Label of the description (Text Editor) field in DocType 'CRM Task' -#: crm/fcrm/doctype/crm_holiday/crm_holiday.json -#: crm/fcrm/doctype/crm_lost_reason/crm_lost_reason.json -#: crm/fcrm/doctype/crm_product/crm_product.json -#: crm/fcrm/doctype/crm_task/crm_task.json +#. Label of the description (Text Editor) field in PageType 'CRM Holiday' +#. Label of the description (Text Editor) field in PageType 'CRM Lost Reason' +#. Label of the description (Text Editor) field in PageType 'CRM Product' +#. Label of the description (Text Editor) field in PageType 'CRM Task' +#: crm/fcrm/pagetype/crm_holiday/crm_holiday.json +#: crm/fcrm/pagetype/crm_lost_reason/crm_lost_reason.json +#: crm/fcrm/pagetype/crm_product/crm_product.json +#: crm/fcrm/pagetype/crm_task/crm_task.json #: frontend/src/components/Calendar/CalendarEventPanel.vue:152 #: frontend/src/components/Modals/EventModal.vue:134 #: frontend/src/components/Modals/TaskModal.vue:36 @@ -1907,29 +1907,29 @@ msgstr "" msgid "Desk" msgstr "" -#. Label of the details (Tab Break) field in DocType 'CRM Lead' -#. Label of the details (Text Editor) field in DocType 'CRM Lead Source' -#: crm/fcrm/doctype/crm_lead/crm_lead.json -#: crm/fcrm/doctype/crm_lead_source/crm_lead_source.json +#. Label of the details (Tab Break) field in PageType 'CRM Lead' +#. Label of the details (Text Editor) field in PageType 'CRM Lead Source' +#: crm/fcrm/pagetype/crm_lead/crm_lead.json +#: crm/fcrm/pagetype/crm_lead_source/crm_lead_source.json #: frontend/src/pages/MobileContact.vue:283 #: frontend/src/pages/MobileDeal.vue:424 frontend/src/pages/MobileLead.vue:331 #: frontend/src/pages/MobileOrganization.vue:320 msgid "Details" msgstr "Részletek" -#. Label of the call_receiving_device (Select) field in DocType 'CRM Telephony +#. Label of the call_receiving_device (Select) field in PageType 'CRM Telephony #. Agent' -#: crm/fcrm/doctype/crm_telephony_agent/crm_telephony_agent.json +#: crm/fcrm/pagetype/crm_telephony_agent/crm_telephony_agent.json #: frontend/src/components/FilesUploader/FilesUploaderArea.vue:39 msgid "Device" msgstr "" -#: crm/fcrm/doctype/crm_form_script/crm_form_script.js:30 +#: crm/fcrm/pagetype/crm_form_script/crm_form_script.js:30 msgid "Disable" msgstr "Tiltva" -#. Label of the disabled (Check) field in DocType 'CRM Product' -#: crm/fcrm/doctype/crm_product/crm_product.json +#. Label of the disabled (Check) field in PageType 'CRM Product' +#: crm/fcrm/pagetype/crm_product/crm_product.json msgid "Disabled" msgstr "" @@ -1943,27 +1943,27 @@ msgstr "Elvet" msgid "Discard unsaved changes?" msgstr "" -#. Label of the discount_percentage (Percent) field in DocType 'CRM Products' -#: crm/fcrm/doctype/crm_products/crm_products.json +#. Label of the discount_percentage (Percent) field in PageType 'CRM Products' +#: crm/fcrm/pagetype/crm_products/crm_products.json msgid "Discount %" msgstr "Kedvezmény %" -#. Label of the discount_amount (Currency) field in DocType 'CRM Products' -#: crm/fcrm/doctype/crm_products/crm_products.json +#. Label of the discount_amount (Currency) field in PageType 'CRM Products' +#: crm/fcrm/pagetype/crm_products/crm_products.json msgid "Discount Amount" msgstr "" -#. Label of the dt (Link) field in DocType 'CRM Form Script' -#. Label of the dt (Link) field in DocType 'CRM Global Settings' -#. Label of the dt (Link) field in DocType 'CRM View Settings' -#: crm/fcrm/doctype/crm_form_script/crm_form_script.json -#: crm/fcrm/doctype/crm_global_settings/crm_global_settings.json -#: crm/fcrm/doctype/crm_view_settings/crm_view_settings.json -msgid "DocType" -msgstr "DocType" +#. Label of the dt (Link) field in PageType 'CRM Form Script' +#. Label of the dt (Link) field in PageType 'CRM Global Settings' +#. Label of the dt (Link) field in PageType 'CRM View Settings' +#: crm/fcrm/pagetype/crm_form_script/crm_form_script.json +#: crm/fcrm/pagetype/crm_global_settings/crm_global_settings.json +#: crm/fcrm/pagetype/crm_view_settings/crm_view_settings.json +msgid "PageType" +msgstr "PageType" -#. Label of the dt (Link) field in DocType 'CRM Fields Layout' -#: crm/fcrm/doctype/crm_fields_layout/crm_fields_layout.json +#. Label of the dt (Link) field in PageType 'CRM Fields Layout' +#: crm/fcrm/pagetype/crm_fields_layout/crm_fields_layout.json msgid "Document Type" msgstr "" @@ -1983,8 +1983,8 @@ msgstr "" msgid "Documentation" msgstr "" -#. Option for the 'Status' (Select) field in DocType 'CRM Task' -#: crm/fcrm/doctype/crm_task/crm_task.json +#. Option for the 'Status' (Select) field in PageType 'CRM Task' +#: crm/fcrm/pagetype/crm_task/crm_task.json msgid "Done" msgstr "" @@ -2006,13 +2006,13 @@ msgstr "Húzza ide a fájlokat, vagy töltse fel a" msgid "Drop files here" msgstr "Dobja ide a fájlokat" -#. Label of the dropdown_items_tab (Tab Break) field in DocType 'FCRM Settings' -#: crm/fcrm/doctype/fcrm_settings/fcrm_settings.json +#. Label of the dropdown_items_tab (Tab Break) field in PageType 'FCRM Settings' +#: crm/fcrm/pagetype/fcrm_settings/fcrm_settings.json msgid "Dropdown Items" msgstr "" -#. Label of the due_date (Datetime) field in DocType 'CRM Task' -#: crm/fcrm/doctype/crm_task/crm_task.json +#. Label of the due_date (Datetime) field in PageType 'CRM Task' +#: crm/fcrm/pagetype/crm_task/crm_task.json msgid "Due Date" msgstr "" @@ -2048,10 +2048,10 @@ msgstr "" msgid "Duplicate template" msgstr "" -#. Label of the duration (Duration) field in DocType 'CRM Call Log' -#. Label of the duration (Duration) field in DocType 'CRM Status Change Log' -#: crm/fcrm/doctype/crm_call_log/crm_call_log.json -#: crm/fcrm/doctype/crm_status_change_log/crm_status_change_log.json +#. Label of the duration (Duration) field in PageType 'CRM Call Log' +#. Label of the duration (Duration) field in PageType 'CRM Status Change Log' +#: crm/fcrm/pagetype/crm_call_log/crm_call_log.json +#: crm/fcrm/pagetype/crm_status_change_log/crm_status_change_log.json msgid "Duration" msgstr "" @@ -2060,28 +2060,28 @@ msgstr "" msgid "ERPNext" msgstr "" -#. Name of a DocType -#: crm/fcrm/doctype/erpnext_crm_settings/erpnext_crm_settings.json +#. Name of a PageType +#: crm/fcrm/pagetype/erpnext_crm_settings/erpnext_crm_settings.json msgid "ERPNext CRM Settings" msgstr "" -#. Label of the section_break_oubd (Section Break) field in DocType 'ERPNext +#. Label of the section_break_oubd (Section Break) field in PageType 'ERPNext #. CRM Settings' -#: crm/fcrm/doctype/erpnext_crm_settings/erpnext_crm_settings.json +#: crm/fcrm/pagetype/erpnext_crm_settings/erpnext_crm_settings.json msgid "ERPNext Site API's" msgstr "" -#. Label of the erpnext_site_url (Data) field in DocType 'ERPNext CRM Settings' -#: crm/fcrm/doctype/erpnext_crm_settings/erpnext_crm_settings.json +#. Label of the erpnext_site_url (Data) field in PageType 'ERPNext CRM Settings' +#: crm/fcrm/pagetype/erpnext_crm_settings/erpnext_crm_settings.json msgid "ERPNext Site URL" msgstr "" -#: crm/fcrm/doctype/erpnext_crm_settings/erpnext_crm_settings.py:25 +#: crm/fcrm/pagetype/erpnext_crm_settings/erpnext_crm_settings.py:25 msgid "ERPNext is not installed in the current site" msgstr "" -#: crm/fcrm/doctype/erpnext_crm_settings/erpnext_crm_settings.py:98 -#: crm/fcrm/doctype/erpnext_crm_settings/erpnext_crm_settings.py:124 +#: crm/fcrm/pagetype/erpnext_crm_settings/erpnext_crm_settings.py:98 +#: crm/fcrm/pagetype/erpnext_crm_settings/erpnext_crm_settings.py:124 msgid "ERPNext is not integrated with the CRM" msgstr "" @@ -2191,12 +2191,12 @@ msgstr "" msgid "Editing event" msgstr "" -#. Label of the email (Data) field in DocType 'CRM Contacts' -#. Label of the email (Data) field in DocType 'CRM Invitation' -#. Label of the email (Data) field in DocType 'CRM Lead' -#: crm/fcrm/doctype/crm_contacts/crm_contacts.json -#: crm/fcrm/doctype/crm_invitation/crm_invitation.json -#: crm/fcrm/doctype/crm_lead/crm_lead.json frontend/src/pages/Contact.vue:510 +#. Label of the email (Data) field in PageType 'CRM Contacts' +#. Label of the email (Data) field in PageType 'CRM Invitation' +#. Label of the email (Data) field in PageType 'CRM Lead' +#: crm/fcrm/pagetype/crm_contacts/crm_contacts.json +#: crm/fcrm/pagetype/crm_invitation/crm_invitation.json +#: crm/fcrm/pagetype/crm_lead/crm_lead.json frontend/src/pages/Contact.vue:510 #: frontend/src/pages/MobileContact.vue:518 #: frontend/src/pages/MobileOrganization.vue:462 #: frontend/src/pages/MobileOrganization.vue:490 @@ -2213,8 +2213,8 @@ msgstr "" msgid "Email ID is required" msgstr "" -#. Label of the email_sent_at (Datetime) field in DocType 'CRM Invitation' -#: crm/fcrm/doctype/crm_invitation/crm_invitation.json +#. Label of the email_sent_at (Datetime) field in PageType 'CRM Invitation' +#: crm/fcrm/pagetype/crm_invitation/crm_invitation.json msgid "Email Sent At" msgstr "" @@ -2272,12 +2272,12 @@ msgstr "" msgid "Empty - Choose a field to sort by" msgstr "" -#: crm/fcrm/doctype/crm_form_script/crm_form_script.js:30 +#: crm/fcrm/pagetype/crm_form_script/crm_form_script.js:30 msgid "Enable" msgstr "" -#. Label of the enable_forecasting (Check) field in DocType 'FCRM Settings' -#: crm/fcrm/doctype/fcrm_settings/fcrm_settings.json +#. Label of the enable_forecasting (Check) field in PageType 'FCRM Settings' +#: crm/fcrm/pagetype/fcrm_settings/fcrm_settings.json msgid "Enable Forecasting" msgstr "" @@ -2293,18 +2293,18 @@ msgstr "Engedélyezze a kimenőt" msgid "Enable forecasting" msgstr "" -#. Label of the enabled (Check) field in DocType 'CRM Exotel Settings' -#. Label of the enabled (Check) field in DocType 'CRM Form Script' -#. Label of the enabled (Check) field in DocType 'CRM Service Level Agreement' -#. Label of the enabled (Check) field in DocType 'CRM Twilio Settings' -#. Label of the enabled (Check) field in DocType 'ERPNext CRM Settings' -#. Label of the enabled (Check) field in DocType 'Helpdesk CRM Settings' -#: crm/fcrm/doctype/crm_exotel_settings/crm_exotel_settings.json -#: crm/fcrm/doctype/crm_form_script/crm_form_script.json -#: crm/fcrm/doctype/crm_service_level_agreement/crm_service_level_agreement.json -#: crm/fcrm/doctype/crm_twilio_settings/crm_twilio_settings.json -#: crm/fcrm/doctype/erpnext_crm_settings/erpnext_crm_settings.json -#: crm/fcrm/doctype/helpdesk_crm_settings/helpdesk_crm_settings.json +#. Label of the enabled (Check) field in PageType 'CRM Exotel Settings' +#. Label of the enabled (Check) field in PageType 'CRM Form Script' +#. Label of the enabled (Check) field in PageType 'CRM Service Level Agreement' +#. Label of the enabled (Check) field in PageType 'CRM Twilio Settings' +#. Label of the enabled (Check) field in PageType 'ERPNext CRM Settings' +#. Label of the enabled (Check) field in PageType 'Helpdesk CRM Settings' +#: crm/fcrm/pagetype/crm_exotel_settings/crm_exotel_settings.json +#: crm/fcrm/pagetype/crm_form_script/crm_form_script.json +#: crm/fcrm/pagetype/crm_service_level_agreement/crm_service_level_agreement.json +#: crm/fcrm/pagetype/crm_twilio_settings/crm_twilio_settings.json +#: crm/fcrm/pagetype/erpnext_crm_settings/erpnext_crm_settings.json +#: crm/fcrm/pagetype/helpdesk_crm_settings/helpdesk_crm_settings.json #: frontend/src/components/Settings/AssignmentRules/AssignmentRuleView.vue:32 #: frontend/src/components/Settings/AssignmentRules/AssignmentRulesList.vue:21 #: frontend/src/components/Settings/EmailTemplate/EditEmailTemplate.vue:18 @@ -2313,15 +2313,15 @@ msgstr "" msgid "Enabled" msgstr "Engedélyezve" -#. Label of the end_date (Date) field in DocType 'CRM Service Level Agreement' -#: crm/fcrm/doctype/crm_service_level_agreement/crm_service_level_agreement.json +#. Label of the end_date (Date) field in PageType 'CRM Service Level Agreement' +#: crm/fcrm/pagetype/crm_service_level_agreement/crm_service_level_agreement.json msgid "End Date" msgstr "" -#. Label of the end_time (Datetime) field in DocType 'CRM Call Log' -#. Label of the end_time (Time) field in DocType 'CRM Service Day' -#: crm/fcrm/doctype/crm_call_log/crm_call_log.json -#: crm/fcrm/doctype/crm_service_day/crm_service_day.json +#. Label of the end_time (Datetime) field in PageType 'CRM Call Log' +#. Label of the end_time (Time) field in PageType 'CRM Service Day' +#: crm/fcrm/pagetype/crm_call_log/crm_call_log.json +#: crm/fcrm/pagetype/crm_service_day/crm_service_day.json #: frontend/src/components/Calendar/CalendarEventPanel.vue:242 #: frontend/src/components/Modals/EventModal.vue:112 msgid "End Time" @@ -2362,15 +2362,15 @@ msgstr "" msgid "Error updating field" msgstr "" -#: crm/fcrm/doctype/erpnext_crm_settings/erpnext_crm_settings.py:279 +#: crm/fcrm/pagetype/erpnext_crm_settings/erpnext_crm_settings.py:279 msgid "Error while creating customer in ERPNext, check error log for more details" msgstr "" -#: crm/fcrm/doctype/erpnext_crm_settings/erpnext_crm_settings.py:191 +#: crm/fcrm/pagetype/erpnext_crm_settings/erpnext_crm_settings.py:191 msgid "Error while creating prospect in ERPNext, check error log for more details" msgstr "" -#: crm/fcrm/doctype/erpnext_crm_settings/erpnext_crm_settings.py:117 +#: crm/fcrm/pagetype/erpnext_crm_settings/erpnext_crm_settings.py:117 msgid "Error while fetching customer in ERPNext, check error log for more details" msgstr "" @@ -2395,16 +2395,16 @@ msgstr "Események" msgid "Excel" msgstr "" -#. Label of the exchange_rate (Float) field in DocType 'CRM Deal' -#. Label of the exchange_rate (Float) field in DocType 'CRM Organization' -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_organization/crm_organization.json +#. Label of the exchange_rate (Float) field in PageType 'CRM Deal' +#. Label of the exchange_rate (Float) field in PageType 'CRM Organization' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_organization/crm_organization.json msgid "Exchange Rate" msgstr "Átváltási arány" -#. Label of the exchange_rate_provider_section (Section Break) field in DocType +#. Label of the exchange_rate_provider_section (Section Break) field in PageType #. 'FCRM Settings' -#: crm/fcrm/doctype/fcrm_settings/fcrm_settings.json +#: crm/fcrm/pagetype/fcrm_settings/fcrm_settings.json msgid "Exchange Rate Provider" msgstr "" @@ -2412,12 +2412,12 @@ msgstr "" msgid "Exchange rate provider" msgstr "" -#. Option for the 'Telephony Medium' (Select) field in DocType 'CRM Call Log' -#. Label of the exotel (Check) field in DocType 'CRM Telephony Agent' -#. Option for the 'Default Medium' (Select) field in DocType 'CRM Telephony +#. Option for the 'Telephony Medium' (Select) field in PageType 'CRM Call Log' +#. Label of the exotel (Check) field in PageType 'CRM Telephony Agent' +#. Option for the 'Default Medium' (Select) field in PageType 'CRM Telephony #. Agent' -#: crm/fcrm/doctype/crm_call_log/crm_call_log.json -#: crm/fcrm/doctype/crm_telephony_agent/crm_telephony_agent.json +#: crm/fcrm/pagetype/crm_call_log/crm_call_log.json +#: crm/fcrm/pagetype/crm_telephony_agent/crm_telephony_agent.json #: frontend/src/components/Layouts/AppSidebar.vue:602 #: frontend/src/components/Settings/TelephonySettings.vue:41 #: frontend/src/components/Settings/TelephonySettings.vue:63 @@ -2428,8 +2428,8 @@ msgstr "" msgid "Exotel Exception" msgstr "" -#. Label of the exotel_number (Data) field in DocType 'CRM Telephony Agent' -#: crm/fcrm/doctype/crm_telephony_agent/crm_telephony_agent.json +#. Label of the exotel_number (Data) field in PageType 'CRM Telephony Agent' +#: crm/fcrm/pagetype/crm_telephony_agent/crm_telephony_agent.json msgid "Exotel Number" msgstr "" @@ -2453,26 +2453,26 @@ msgstr "" msgid "Expand" msgstr "Kiterjed" -#. Label of the expected_closure_date (Date) field in DocType 'CRM Deal' -#: crm/fcrm/doctype/crm_deal/crm_deal.json +#. Label of the expected_closure_date (Date) field in PageType 'CRM Deal' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json msgid "Expected Closure Date" msgstr "" -#: crm/fcrm/doctype/crm_deal/crm_deal.py:173 +#: crm/fcrm/pagetype/crm_deal/crm_deal.py:173 msgid "Expected Closure Date is required." msgstr "" -#. Label of the expected_deal_value (Currency) field in DocType 'CRM Deal' -#: crm/fcrm/doctype/crm_deal/crm_deal.json +#. Label of the expected_deal_value (Currency) field in PageType 'CRM Deal' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json msgid "Expected Deal Value" msgstr "" -#: crm/fcrm/doctype/crm_deal/crm_deal.py:171 +#: crm/fcrm/pagetype/crm_deal/crm_deal.py:171 msgid "Expected Deal Value is required." msgstr "" -#. Option for the 'Status' (Select) field in DocType 'CRM Invitation' -#: crm/fcrm/doctype/crm_invitation/crm_invitation.json +#. Option for the 'Status' (Select) field in PageType 'CRM Invitation' +#: crm/fcrm/pagetype/crm_invitation/crm_invitation.json msgid "Expired" msgstr "" @@ -2489,22 +2489,22 @@ msgstr "" msgid "Export Type" msgstr "Export típusa" -#. Name of a DocType -#: crm/fcrm/doctype/fcrm_note/fcrm_note.json +#. Name of a PageType +#: crm/fcrm/pagetype/fcrm_note/fcrm_note.json msgid "FCRM Note" msgstr "" -#. Name of a DocType -#: crm/fcrm/doctype/fcrm_settings/fcrm_settings.json +#. Name of a PageType +#: crm/fcrm/pagetype/fcrm_settings/fcrm_settings.json msgid "FCRM Settings" msgstr "" -#. Option for the 'Status' (Select) field in DocType 'CRM Call Log' -#. Option for the 'SLA Status' (Select) field in DocType 'CRM Deal' -#. Option for the 'SLA Status' (Select) field in DocType 'CRM Lead' -#: crm/fcrm/doctype/crm_call_log/crm_call_log.json -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_lead/crm_lead.json +#. Option for the 'Status' (Select) field in PageType 'CRM Call Log' +#. Option for the 'SLA Status' (Select) field in PageType 'CRM Deal' +#. Option for the 'SLA Status' (Select) field in PageType 'CRM Lead' +#: crm/fcrm/pagetype/crm_call_log/crm_call_log.json +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_lead/crm_lead.json msgid "Failed" msgstr "" @@ -2528,7 +2528,7 @@ msgstr "" msgid "Failed to delete template" msgstr "" -#: crm/fcrm/doctype/fcrm_settings/fcrm_settings.py:205 +#: crm/fcrm/pagetype/fcrm_settings/fcrm_settings.py:205 msgid "Failed to fetch exchange rate from {0} to {1} on {2}. Please check your internet connection or try again later." msgstr "" @@ -2561,8 +2561,8 @@ msgstr "" msgid "Failed to update template" msgstr "" -#. Label of the favicon (Attach) field in DocType 'FCRM Settings' -#: crm/fcrm/doctype/fcrm_settings/fcrm_settings.json +#. Label of the favicon (Attach) field in PageType 'FCRM Settings' +#: crm/fcrm/pagetype/fcrm_settings/fcrm_settings.json #: frontend/src/components/Settings/BrandSettings.vue:87 msgid "Favicon" msgstr "" @@ -2586,23 +2586,23 @@ msgid "File \"{0}\" was skipped because only {1} uploads are allowed" msgstr "" #: frontend/src/components/FilesUploader/FilesUploaderArea.vue:359 -msgid "File \"{0}\" was skipped because only {1} uploads are allowed for DocType \"{2}\"" +msgid "File \"{0}\" was skipped because only {1} uploads are allowed for PageType \"{2}\"" msgstr "" #: frontend/src/components/Filter.vue:6 msgid "Filter" msgstr "Szűrő" -#. Label of the filters (Code) field in DocType 'CRM View Settings' -#. Label of the filters_tab (Tab Break) field in DocType 'CRM View Settings' -#: crm/fcrm/doctype/crm_view_settings/crm_view_settings.json +#. Label of the filters (Code) field in PageType 'CRM View Settings' +#. Label of the filters_tab (Tab Break) field in PageType 'CRM View Settings' +#: crm/fcrm/pagetype/crm_view_settings/crm_view_settings.json msgid "Filters" msgstr "" -#. Label of the first_name (Data) field in DocType 'CRM Deal' -#. Label of the first_name (Data) field in DocType 'CRM Lead' -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_lead/crm_lead.json +#. Label of the first_name (Data) field in PageType 'CRM Deal' +#. Label of the first_name (Data) field in PageType 'CRM Lead' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_lead/crm_lead.json #: frontend/src/components/ColumnSettings.vue:103 #: frontend/src/components/Filter.vue:57 frontend/src/components/Filter.vue:88 #: frontend/src/components/SortBy.vue:6 frontend/src/components/SortBy.vue:103 @@ -2614,30 +2614,30 @@ msgstr "Vezetéknév" msgid "First Name is mandatory" msgstr "" -#. Label of the first_responded_on (Datetime) field in DocType 'CRM Deal' -#. Label of the first_responded_on (Datetime) field in DocType 'CRM Lead' -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_lead/crm_lead.json +#. Label of the first_responded_on (Datetime) field in PageType 'CRM Deal' +#. Label of the first_responded_on (Datetime) field in PageType 'CRM Lead' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_lead/crm_lead.json msgid "First Responded On" msgstr "" -#. Option for the 'SLA Status' (Select) field in DocType 'CRM Deal' -#. Option for the 'SLA Status' (Select) field in DocType 'CRM Lead' -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_lead/crm_lead.json +#. Option for the 'SLA Status' (Select) field in PageType 'CRM Deal' +#. Option for the 'SLA Status' (Select) field in PageType 'CRM Lead' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_lead/crm_lead.json msgid "First Response Due" msgstr "" -#. Label of the first_response_time (Duration) field in DocType 'CRM Service +#. Label of the first_response_time (Duration) field in PageType 'CRM Service #. Level Priority' -#: crm/fcrm/doctype/crm_service_level_priority/crm_service_level_priority.json +#: crm/fcrm/pagetype/crm_service_level_priority/crm_service_level_priority.json msgid "First Response TIme" msgstr "" -#. Label of the first_response_time (Duration) field in DocType 'CRM Deal' -#. Label of the first_response_time (Duration) field in DocType 'CRM Lead' -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_lead/crm_lead.json +#. Label of the first_response_time (Duration) field in PageType 'CRM Deal' +#. Label of the first_response_time (Duration) field in PageType 'CRM Lead' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_lead/crm_lead.json msgid "First Response Time" msgstr "" @@ -2670,66 +2670,66 @@ msgstr "" msgid "Forecasting enabled successfully" msgstr "" -#. Option for the 'Apply To' (Select) field in DocType 'CRM Form Script' -#: crm/fcrm/doctype/crm_form_script/crm_form_script.json +#. Option for the 'Apply To' (Select) field in PageType 'CRM Form Script' +#: crm/fcrm/pagetype/crm_form_script/crm_form_script.json msgid "Form" msgstr "" -#: crm/fcrm/doctype/erpnext_crm_settings/erpnext_crm_settings.js:19 +#: crm/fcrm/pagetype/erpnext_crm_settings/erpnext_crm_settings.js:19 msgid "Form Script updated successfully" msgstr "" #. Name of a Workspace -#: crm/fcrm/workspace/frappe_crm/frappe_crm.json -msgid "Frappe CRM" +#: crm/fcrm/workspace/jingrow_crm/jingrow_crm.json +msgid "Jingrow CRM" msgstr "" #: frontend/src/components/Layouts/AppSidebar.vue:608 -msgid "Frappe CRM mobile" +msgid "Jingrow CRM mobile" msgstr "" -#. Option for the 'Weekly Off' (Select) field in DocType 'CRM Holiday List' -#. Option for the 'Workday' (Select) field in DocType 'CRM Service Day' -#: crm/fcrm/doctype/crm_holiday_list/crm_holiday_list.json -#: crm/fcrm/doctype/crm_service_day/crm_service_day.json +#. Option for the 'Weekly Off' (Select) field in PageType 'CRM Holiday List' +#. Option for the 'Workday' (Select) field in PageType 'CRM Service Day' +#: crm/fcrm/pagetype/crm_holiday_list/crm_holiday_list.json +#: crm/fcrm/pagetype/crm_service_day/crm_service_day.json msgid "Friday" msgstr "Péntek" -#. Label of the from (Data) field in DocType 'CRM Call Log' -#. Label of the from (Data) field in DocType 'CRM Status Change Log' -#: crm/fcrm/doctype/crm_call_log/crm_call_log.json -#: crm/fcrm/doctype/crm_status_change_log/crm_status_change_log.json +#. Label of the from (Data) field in PageType 'CRM Call Log' +#. Label of the from (Data) field in PageType 'CRM Status Change Log' +#: crm/fcrm/pagetype/crm_call_log/crm_call_log.json +#: crm/fcrm/pagetype/crm_status_change_log/crm_status_change_log.json msgid "From" msgstr "" -#. Label of the from_date (Date) field in DocType 'CRM Holiday List' -#. Label of the from_date (Datetime) field in DocType 'CRM Status Change Log' -#: crm/fcrm/doctype/crm_holiday_list/crm_holiday_list.json -#: crm/fcrm/doctype/crm_status_change_log/crm_status_change_log.json +#. Label of the from_date (Date) field in PageType 'CRM Holiday List' +#. Label of the from_date (Datetime) field in PageType 'CRM Status Change Log' +#: crm/fcrm/pagetype/crm_holiday_list/crm_holiday_list.json +#: crm/fcrm/pagetype/crm_status_change_log/crm_status_change_log.json msgid "From Date" msgstr "" -#. Label of the from_type (Data) field in DocType 'CRM Status Change Log' -#: crm/fcrm/doctype/crm_status_change_log/crm_status_change_log.json +#. Label of the from_type (Data) field in PageType 'CRM Status Change Log' +#: crm/fcrm/pagetype/crm_status_change_log/crm_status_change_log.json msgid "From Type" msgstr "" -#. Label of the from_user (Link) field in DocType 'CRM Notification' -#: crm/fcrm/doctype/crm_notification/crm_notification.json +#. Label of the from_user (Link) field in PageType 'CRM Notification' +#: crm/fcrm/pagetype/crm_notification/crm_notification.json msgid "From User" msgstr "Felhasználótól" -#. Option for the 'SLA Status' (Select) field in DocType 'CRM Deal' -#. Option for the 'SLA Status' (Select) field in DocType 'CRM Lead' -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_lead/crm_lead.json +#. Option for the 'SLA Status' (Select) field in PageType 'CRM Deal' +#. Option for the 'SLA Status' (Select) field in PageType 'CRM Lead' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_lead/crm_lead.json msgid "Fulfilled" msgstr "" -#. Label of the full_name (Data) field in DocType 'CRM Contacts' -#. Label of the lead_name (Data) field in DocType 'CRM Lead' -#: crm/fcrm/doctype/crm_contacts/crm_contacts.json -#: crm/fcrm/doctype/crm_lead/crm_lead.json +#. Label of the full_name (Data) field in PageType 'CRM Contacts' +#. Label of the lead_name (Data) field in PageType 'CRM Lead' +#: crm/fcrm/pagetype/crm_contacts/crm_contacts.json +#: crm/fcrm/pagetype/crm_lead/crm_lead.json msgid "Full Name" msgstr "Teljes név" @@ -2742,12 +2742,12 @@ msgstr "" msgid "GMT+5:30" msgstr "" -#. Label of the gender (Link) field in DocType 'CRM Contacts' -#. Label of the gender (Link) field in DocType 'CRM Deal' -#. Label of the gender (Link) field in DocType 'CRM Lead' -#: crm/fcrm/doctype/crm_contacts/crm_contacts.json -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_lead/crm_lead.json +#. Label of the gender (Link) field in PageType 'CRM Contacts' +#. Label of the gender (Link) field in PageType 'CRM Deal' +#. Label of the gender (Link) field in PageType 'CRM Lead' +#: crm/fcrm/pagetype/crm_contacts/crm_contacts.json +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_lead/crm_lead.json msgid "Gender" msgstr "Neme" @@ -2771,20 +2771,20 @@ msgstr "" msgid "Go to website" msgstr "" -#. Option for the 'Type' (Select) field in DocType 'CRM Fields Layout' -#: crm/fcrm/doctype/crm_fields_layout/crm_fields_layout.json +#. Option for the 'Type' (Select) field in PageType 'CRM Fields Layout' +#: crm/fcrm/pagetype/crm_fields_layout/crm_fields_layout.json msgid "Grid Row" msgstr "" -#. Label of the group_by_tab (Tab Break) field in DocType 'CRM View Settings' -#: crm/fcrm/doctype/crm_view_settings/crm_view_settings.json +#. Label of the group_by_tab (Tab Break) field in PageType 'CRM View Settings' +#: crm/fcrm/pagetype/crm_view_settings/crm_view_settings.json #: frontend/src/components/ViewControls.vue:379 #: frontend/src/components/ViewControls.vue:611 frontend/src/utils/view.js:16 msgid "Group By" msgstr "" -#. Label of the group_by_field (Data) field in DocType 'CRM View Settings' -#: crm/fcrm/doctype/crm_view_settings/crm_view_settings.json +#. Label of the group_by_field (Data) field in PageType 'CRM View Settings' +#: crm/fcrm/pagetype/crm_view_settings/crm_view_settings.json msgid "Group By Field" msgstr "" @@ -2808,28 +2808,28 @@ msgstr "" msgid "Helpdesk" msgstr "" -#. Name of a DocType -#: crm/fcrm/doctype/helpdesk_crm_settings/helpdesk_crm_settings.json +#. Name of a PageType +#: crm/fcrm/pagetype/helpdesk_crm_settings/helpdesk_crm_settings.json msgid "Helpdesk CRM Settings" msgstr "" -#. Label of the helpdesk_site_apis_section (Section Break) field in DocType +#. Label of the helpdesk_site_apis_section (Section Break) field in PageType #. 'Helpdesk CRM Settings' -#: crm/fcrm/doctype/helpdesk_crm_settings/helpdesk_crm_settings.json +#: crm/fcrm/pagetype/helpdesk_crm_settings/helpdesk_crm_settings.json msgid "Helpdesk Site API's" msgstr "" -#. Label of the helpdesk_site_url (Data) field in DocType 'Helpdesk CRM +#. Label of the helpdesk_site_url (Data) field in PageType 'Helpdesk CRM #. Settings' -#: crm/fcrm/doctype/helpdesk_crm_settings/helpdesk_crm_settings.json +#: crm/fcrm/pagetype/helpdesk_crm_settings/helpdesk_crm_settings.json msgid "Helpdesk Site URL" msgstr "" -#: crm/fcrm/doctype/helpdesk_crm_settings/helpdesk_crm_settings.py:18 +#: crm/fcrm/pagetype/helpdesk_crm_settings/helpdesk_crm_settings.py:18 msgid "Helpdesk is not installed in the current site" msgstr "" -#: crm/fcrm/doctype/helpdesk_crm_settings/helpdesk_crm_settings.py:40 +#: crm/fcrm/pagetype/helpdesk_crm_settings/helpdesk_crm_settings.py:40 msgid "Helpdesk is not integrated with the CRM" msgstr "" @@ -2845,8 +2845,8 @@ msgstr "" msgid "Hi John, \\n\\nCan you please provide more details on this..." msgstr "" -#. Label of the hidden (Check) field in DocType 'CRM Dropdown Item' -#: crm/fcrm/doctype/crm_dropdown_item/crm_dropdown_item.json +#. Label of the hidden (Check) field in PageType 'CRM Dropdown Item' +#: crm/fcrm/pagetype/crm_dropdown_item/crm_dropdown_item.json msgid "Hidden" msgstr "Rejtett" @@ -2877,26 +2877,26 @@ msgstr "" msgid "Hide preview" msgstr "" -#. Option for the 'Priority' (Select) field in DocType 'CRM Task' -#: crm/fcrm/doctype/crm_task/crm_task.json +#. Option for the 'Priority' (Select) field in PageType 'CRM Task' +#: crm/fcrm/pagetype/crm_task/crm_task.json msgid "High" msgstr "" -#. Label of the holiday_list (Link) field in DocType 'CRM Service Level +#. Label of the holiday_list (Link) field in PageType 'CRM Service Level #. Agreement' -#: crm/fcrm/doctype/crm_service_level_agreement/crm_service_level_agreement.json +#: crm/fcrm/pagetype/crm_service_level_agreement/crm_service_level_agreement.json msgid "Holiday List" msgstr "" -#. Label of the holiday_list_name (Data) field in DocType 'CRM Holiday List' -#: crm/fcrm/doctype/crm_holiday_list/crm_holiday_list.json +#. Label of the holiday_list_name (Data) field in PageType 'CRM Holiday List' +#: crm/fcrm/pagetype/crm_holiday_list/crm_holiday_list.json msgid "Holiday List Name" msgstr "" -#. Label of the holidays_section (Section Break) field in DocType 'CRM Holiday +#. Label of the holidays_section (Section Break) field in PageType 'CRM Holiday #. List' -#. Label of the holidays (Table) field in DocType 'CRM Holiday List' -#: crm/fcrm/doctype/crm_holiday_list/crm_holiday_list.json +#. Label of the holidays (Table) field in PageType 'CRM Holiday List' +#: crm/fcrm/pagetype/crm_holiday_list/crm_holiday_list.json msgid "Holidays" msgstr "Szabadnapok" @@ -2914,15 +2914,15 @@ msgstr "" msgid "I understand, add conditions" msgstr "" -#. Label of the id (Data) field in DocType 'CRM Call Log' -#: crm/fcrm/doctype/crm_call_log/crm_call_log.json +#. Label of the id (Data) field in PageType 'CRM Call Log' +#: crm/fcrm/pagetype/crm_call_log/crm_call_log.json msgid "ID" msgstr "ID" -#. Label of the icon (Code) field in DocType 'CRM Dropdown Item' -#. Label of the icon (Data) field in DocType 'CRM View Settings' -#: crm/fcrm/doctype/crm_dropdown_item/crm_dropdown_item.json -#: crm/fcrm/doctype/crm_view_settings/crm_view_settings.json +#. Label of the icon (Code) field in PageType 'CRM Dropdown Item' +#. Label of the icon (Data) field in PageType 'CRM View Settings' +#: crm/fcrm/pagetype/crm_dropdown_item/crm_dropdown_item.json +#: crm/fcrm/pagetype/crm_view_settings/crm_view_settings.json msgid "Icon" msgstr "Ikon" @@ -2942,10 +2942,10 @@ msgstr "" msgid "If enabled, records can be created from the incoming emails on this account." msgstr "" -#. Label of the image (Attach Image) field in DocType 'CRM Lead' -#. Label of the image (Attach Image) field in DocType 'CRM Product' -#: crm/fcrm/doctype/crm_lead/crm_lead.json -#: crm/fcrm/doctype/crm_product/crm_product.json +#. Label of the image (Attach Image) field in PageType 'CRM Lead' +#. Label of the image (Attach Image) field in PageType 'CRM Product' +#: crm/fcrm/pagetype/crm_lead/crm_lead.json +#: crm/fcrm/pagetype/crm_product/crm_product.json msgid "Image" msgstr "" @@ -2957,10 +2957,10 @@ msgstr "" msgid "In" msgstr "Tartalmazza" -#. Option for the 'Status' (Select) field in DocType 'CRM Call Log' -#. Option for the 'Status' (Select) field in DocType 'CRM Task' -#: crm/fcrm/doctype/crm_call_log/crm_call_log.json -#: crm/fcrm/doctype/crm_task/crm_task.json +#. Option for the 'Status' (Select) field in PageType 'CRM Call Log' +#. Option for the 'Status' (Select) field in PageType 'CRM Task' +#: crm/fcrm/pagetype/crm_call_log/crm_call_log.json +#: crm/fcrm/pagetype/crm_task/crm_task.json msgid "In Progress" msgstr "" @@ -2976,8 +2976,8 @@ msgstr "" msgid "Inbox" msgstr "Bejövő" -#. Option for the 'Type' (Select) field in DocType 'CRM Call Log' -#: crm/fcrm/doctype/crm_call_log/crm_call_log.json +#. Option for the 'Type' (Select) field in PageType 'CRM Call Log' +#: crm/fcrm/pagetype/crm_call_log/crm_call_log.json msgid "Incoming" msgstr "" @@ -2985,24 +2985,24 @@ msgstr "" msgid "Incoming call..." msgstr "" -#. Label of a shortcut in the Frappe CRM Workspace -#: crm/fcrm/workspace/frappe_crm/frappe_crm.json +#. Label of a shortcut in the Jingrow CRM Workspace +#: crm/fcrm/workspace/jingrow_crm/jingrow_crm.json msgid "Industries" msgstr "" -#. Label of the industry (Link) field in DocType 'CRM Deal' -#. Label of the industry (Data) field in DocType 'CRM Industry' -#. Label of the industry (Link) field in DocType 'CRM Lead' -#. Label of the industry (Link) field in DocType 'CRM Organization' -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_industry/crm_industry.json -#: crm/fcrm/doctype/crm_lead/crm_lead.json -#: crm/fcrm/doctype/crm_organization/crm_organization.json +#. Label of the industry (Link) field in PageType 'CRM Deal' +#. Label of the industry (Data) field in PageType 'CRM Industry' +#. Label of the industry (Link) field in PageType 'CRM Lead' +#. Label of the industry (Link) field in PageType 'CRM Organization' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_industry/crm_industry.json +#: crm/fcrm/pagetype/crm_lead/crm_lead.json +#: crm/fcrm/pagetype/crm_organization/crm_organization.json msgid "Industry" msgstr "" -#. Option for the 'Status' (Select) field in DocType 'CRM Call Log' -#: crm/fcrm/doctype/crm_call_log/crm_call_log.json +#. Option for the 'Status' (Select) field in PageType 'CRM Call Log' +#: crm/fcrm/pagetype/crm_call_log/crm_call_log.json msgid "Initiated" msgstr "" @@ -3037,7 +3037,7 @@ msgstr "Integrációk" msgid "Introduction" msgstr "Bevezetés" -#: crm/fcrm/doctype/crm_twilio_settings/crm_twilio_settings.py:33 +#: crm/fcrm/pagetype/crm_twilio_settings/crm_twilio_settings.py:33 msgid "Invalid Account SID or Auth Token." msgstr "" @@ -3054,7 +3054,7 @@ msgstr "" msgid "Invalid chart name" msgstr "" -#: crm/fcrm/doctype/crm_exotel_settings/crm_exotel_settings.py:25 +#: crm/fcrm/pagetype/crm_exotel_settings/crm_exotel_settings.py:25 msgid "Invalid credentials" msgstr "" @@ -3103,8 +3103,8 @@ msgstr "" msgid "Invite your team" msgstr "" -#. Label of the invited_by (Link) field in DocType 'CRM Invitation' -#: crm/fcrm/doctype/crm_invitation/crm_invitation.json +#. Label of the invited_by (Link) field in PageType 'CRM Invitation' +#: crm/fcrm/pagetype/crm_invitation/crm_invitation.json msgid "Invited By" msgstr "" @@ -3118,59 +3118,59 @@ msgstr "" msgid "Is" msgstr "Van" -#. Label of the is_default (Check) field in DocType 'CRM View Settings' -#: crm/fcrm/doctype/crm_view_settings/crm_view_settings.json +#. Label of the is_default (Check) field in PageType 'CRM View Settings' +#: crm/fcrm/pagetype/crm_view_settings/crm_view_settings.json msgid "Is Default" msgstr "Ez alapértelmezett" -#. Label of the is_erpnext_in_different_site (Check) field in DocType 'ERPNext +#. Label of the is_erpnext_in_different_site (Check) field in PageType 'ERPNext #. CRM Settings' -#: crm/fcrm/doctype/erpnext_crm_settings/erpnext_crm_settings.json +#: crm/fcrm/pagetype/erpnext_crm_settings/erpnext_crm_settings.json msgid "Is ERPNext installed on a different site?" msgstr "" -#. Label of the is_group (Check) field in DocType 'CRM Territory' -#: crm/fcrm/doctype/crm_territory/crm_territory.json +#. Label of the is_group (Check) field in PageType 'CRM Territory' +#: crm/fcrm/pagetype/crm_territory/crm_territory.json msgid "Is Group" msgstr "" -#. Label of the is_helpdesk_in_different_site (Check) field in DocType +#. Label of the is_helpdesk_in_different_site (Check) field in PageType #. 'Helpdesk CRM Settings' -#: crm/fcrm/doctype/helpdesk_crm_settings/helpdesk_crm_settings.json +#: crm/fcrm/pagetype/helpdesk_crm_settings/helpdesk_crm_settings.json msgid "Is Helpdesk installed on a different site?" msgstr "" -#. Label of the is_primary (Check) field in DocType 'CRM Contacts' -#. Label of the is_primary (Check) field in DocType 'CRM Telephony Phone' -#: crm/fcrm/doctype/crm_contacts/crm_contacts.json -#: crm/fcrm/doctype/crm_telephony_phone/crm_telephony_phone.json +#. Label of the is_primary (Check) field in PageType 'CRM Contacts' +#. Label of the is_primary (Check) field in PageType 'CRM Telephony Phone' +#: crm/fcrm/pagetype/crm_contacts/crm_contacts.json +#: crm/fcrm/pagetype/crm_telephony_phone/crm_telephony_phone.json msgid "Is Primary" msgstr "" -#. Label of the is_standard (Check) field in DocType 'CRM Dropdown Item' -#. Label of the is_standard (Check) field in DocType 'CRM Form Script' -#. Label of the is_standard (Check) field in DocType 'CRM View Settings' -#: crm/fcrm/doctype/crm_dropdown_item/crm_dropdown_item.json -#: crm/fcrm/doctype/crm_form_script/crm_form_script.json -#: crm/fcrm/doctype/crm_view_settings/crm_view_settings.json +#. Label of the is_standard (Check) field in PageType 'CRM Dropdown Item' +#. Label of the is_standard (Check) field in PageType 'CRM Form Script' +#. Label of the is_standard (Check) field in PageType 'CRM View Settings' +#: crm/fcrm/pagetype/crm_dropdown_item/crm_dropdown_item.json +#: crm/fcrm/pagetype/crm_form_script/crm_form_script.json +#: crm/fcrm/pagetype/crm_view_settings/crm_view_settings.json msgid "Is Standard" msgstr "" -#. Description of the 'Enable Forecasting' (Check) field in DocType 'FCRM +#. Description of the 'Enable Forecasting' (Check) field in PageType 'FCRM #. Settings' -#: crm/fcrm/doctype/fcrm_settings/fcrm_settings.json +#: crm/fcrm/pagetype/fcrm_settings/fcrm_settings.json msgid "It will make deal's \"Expected Closure Date\" & \"Expected Deal Value\" mandatory to get accurate forecasting insights" msgstr "" -#. Label of the json (JSON) field in DocType 'CRM Global Settings' -#: crm/fcrm/doctype/crm_global_settings/crm_global_settings.json +#. Label of the json (JSON) field in PageType 'CRM Global Settings' +#: crm/fcrm/pagetype/crm_global_settings/crm_global_settings.json msgid "JSON" msgstr "" -#. Label of the job_title (Data) field in DocType 'CRM Deal' -#. Label of the job_title (Data) field in DocType 'CRM Lead' -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_lead/crm_lead.json +#. Label of the job_title (Data) field in PageType 'CRM Deal' +#. Label of the job_title (Data) field in PageType 'CRM Lead' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_lead/crm_lead.json msgid "Job Title" msgstr "Beosztás" @@ -3182,20 +3182,20 @@ msgstr "Beosztás" msgid "John Doe" msgstr "" -#. Label of the kanban_tab (Tab Break) field in DocType 'CRM View Settings' -#: crm/fcrm/doctype/crm_view_settings/crm_view_settings.json +#. Label of the kanban_tab (Tab Break) field in PageType 'CRM View Settings' +#: crm/fcrm/pagetype/crm_view_settings/crm_view_settings.json #: frontend/src/components/ViewControls.vue:384 #: frontend/src/components/ViewControls.vue:600 frontend/src/utils/view.js:20 msgid "Kanban" msgstr "Kanban" -#. Label of the kanban_columns (Code) field in DocType 'CRM View Settings' -#: crm/fcrm/doctype/crm_view_settings/crm_view_settings.json +#. Label of the kanban_columns (Code) field in PageType 'CRM View Settings' +#: crm/fcrm/pagetype/crm_view_settings/crm_view_settings.json msgid "Kanban Columns" msgstr "" -#. Label of the kanban_fields (Code) field in DocType 'CRM View Settings' -#: crm/fcrm/doctype/crm_view_settings/crm_view_settings.json +#. Label of the kanban_fields (Code) field in PageType 'CRM View Settings' +#: crm/fcrm/pagetype/crm_view_settings/crm_view_settings.json msgid "Kanban Fields" msgstr "" @@ -3204,15 +3204,15 @@ msgstr "" msgid "Kanban Settings" msgstr "" -#. Label of the key (Data) field in DocType 'CRM Invitation' -#: crm/fcrm/doctype/crm_invitation/crm_invitation.json +#. Label of the key (Data) field in PageType 'CRM Invitation' +#: crm/fcrm/pagetype/crm_invitation/crm_invitation.json msgid "Key" msgstr "" -#. Label of the label (Data) field in DocType 'CRM Dropdown Item' -#. Label of the label (Data) field in DocType 'CRM View Settings' -#: crm/fcrm/doctype/crm_dropdown_item/crm_dropdown_item.json -#: crm/fcrm/doctype/crm_view_settings/crm_view_settings.json +#. Label of the label (Data) field in PageType 'CRM Dropdown Item' +#. Label of the label (Data) field in PageType 'CRM View Settings' +#: crm/fcrm/pagetype/crm_dropdown_item/crm_dropdown_item.json +#: crm/fcrm/pagetype/crm_view_settings/crm_view_settings.json #: frontend/src/components/ColumnSettings.vue:100 msgid "Label" msgstr "Felirat" @@ -3229,10 +3229,10 @@ msgstr "" msgid "Last Month" msgstr "" -#. Label of the last_name (Data) field in DocType 'CRM Deal' -#. Label of the last_name (Data) field in DocType 'CRM Lead' -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_lead/crm_lead.json +#. Label of the last_name (Data) field in PageType 'CRM Deal' +#. Label of the last_name (Data) field in PageType 'CRM Lead' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_lead/crm_lead.json msgid "Last Name" msgstr "Keresztnév" @@ -3240,9 +3240,9 @@ msgstr "Keresztnév" msgid "Last Quarter" msgstr "" -#. Label of the last_status_change_log (Link) field in DocType 'CRM Status +#. Label of the last_status_change_log (Link) field in PageType 'CRM Status #. Change Log' -#: crm/fcrm/doctype/crm_status_change_log/crm_status_change_log.json +#: crm/fcrm/pagetype/crm_status_change_log/crm_status_change_log.json msgid "Last Status Change Log" msgstr "" @@ -3270,15 +3270,15 @@ msgstr "" msgid "Last user assigned by this rule" msgstr "" -#. Label of the layout (Code) field in DocType 'CRM Dashboard' -#. Label of the layout (Code) field in DocType 'CRM Fields Layout' -#: crm/fcrm/doctype/crm_dashboard/crm_dashboard.json -#: crm/fcrm/doctype/crm_fields_layout/crm_fields_layout.json +#. Label of the layout (Code) field in PageType 'CRM Dashboard' +#. Label of the layout (Code) field in PageType 'CRM Fields Layout' +#: crm/fcrm/pagetype/crm_dashboard/crm_dashboard.json +#: crm/fcrm/pagetype/crm_fields_layout/crm_fields_layout.json msgid "Layout" msgstr "" -#. Label of the lead (Link) field in DocType 'CRM Deal' -#: crm/fcrm/doctype/crm_deal/crm_deal.json +#. Label of the lead (Link) field in PageType 'CRM Deal' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json #: frontend/src/components/Calendar/CalendarEventPanel.vue:263 #: frontend/src/components/Calendar/CalendarEventPanel.vue:288 #: frontend/src/components/Layouts/AppSidebar.vue:550 @@ -3291,32 +3291,32 @@ msgstr "" msgid "Lead" msgstr "" -#. Label of the lead_details_tab (Tab Break) field in DocType 'CRM Deal' -#: crm/fcrm/doctype/crm_deal/crm_deal.json +#. Label of the lead_details_tab (Tab Break) field in PageType 'CRM Deal' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json msgid "Lead Details" msgstr "" -#. Label of the lead_name (Data) field in DocType 'CRM Deal' -#: crm/fcrm/doctype/crm_deal/crm_deal.json +#. Label of the lead_name (Data) field in PageType 'CRM Deal' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json msgid "Lead Name" msgstr "" -#. Label of the lead_owner (Link) field in DocType 'CRM Lead' -#: crm/fcrm/doctype/crm_lead/crm_lead.json +#. Label of the lead_owner (Link) field in PageType 'CRM Lead' +#: crm/fcrm/pagetype/crm_lead/crm_lead.json msgid "Lead Owner" msgstr "" -#: crm/fcrm/doctype/crm_lead/crm_lead.py:73 +#: crm/fcrm/pagetype/crm_lead/crm_lead.py:73 msgid "Lead Owner cannot be same as the Lead Email Address" msgstr "" -#. Label of a shortcut in the Frappe CRM Workspace -#: crm/fcrm/workspace/frappe_crm/frappe_crm.json +#. Label of a shortcut in the Jingrow CRM Workspace +#: crm/fcrm/workspace/jingrow_crm/jingrow_crm.json msgid "Lead Sources" msgstr "" -#. Label of a shortcut in the Frappe CRM Workspace -#: crm/fcrm/workspace/frappe_crm/frappe_crm.json +#. Label of a shortcut in the Jingrow CRM Workspace +#: crm/fcrm/workspace/jingrow_crm/jingrow_crm.json msgid "Lead Statuses" msgstr "" @@ -3328,8 +3328,8 @@ msgstr "" msgid "Lead to deal conversion pipeline" msgstr "" -#. Label of a shortcut in the Frappe CRM Workspace -#: crm/fcrm/workspace/frappe_crm/frappe_crm.json +#. Label of a shortcut in the Jingrow CRM Workspace +#: crm/fcrm/workspace/jingrow_crm/jingrow_crm.json #: frontend/src/pages/InvalidPage.vue:9 frontend/src/pages/Lead.vue:340 #: frontend/src/pages/MobileLead.vue:291 msgid "Leads" @@ -3345,8 +3345,8 @@ msgstr "" msgid "Learn about conditions" msgstr "" -#. Label of the lft (Int) field in DocType 'CRM Territory' -#: crm/fcrm/doctype/crm_territory/crm_territory.json +#. Label of the lft (Int) field in PageType 'CRM Territory' +#: crm/fcrm/pagetype/crm_territory/crm_territory.json msgid "Left" msgstr "Elhagyja" @@ -3367,15 +3367,15 @@ msgstr "Tetszik" msgid "Link" msgstr "" -#. Label of the links (Table) field in DocType 'CRM Call Log' -#: crm/fcrm/doctype/crm_call_log/crm_call_log.json +#. Label of the links (Table) field in PageType 'CRM Call Log' +#: crm/fcrm/pagetype/crm_call_log/crm_call_log.json msgid "Links" msgstr "Összekapcsolások" -#. Option for the 'Apply To' (Select) field in DocType 'CRM Form Script' -#. Label of the list_tab (Tab Break) field in DocType 'CRM View Settings' -#: crm/fcrm/doctype/crm_form_script/crm_form_script.json -#: crm/fcrm/doctype/crm_view_settings/crm_view_settings.json +#. Option for the 'Apply To' (Select) field in PageType 'CRM Form Script' +#. Label of the list_tab (Tab Break) field in PageType 'CRM View Settings' +#: crm/fcrm/pagetype/crm_form_script/crm_form_script.json +#: crm/fcrm/pagetype/crm_view_settings/crm_view_settings.json #: frontend/src/components/ViewControls.vue:374 #: frontend/src/components/ViewControls.vue:589 frontend/src/utils/view.js:12 msgid "List" @@ -3385,9 +3385,9 @@ msgstr "" msgid "Listen" msgstr "" -#. Label of the load_default_columns (Check) field in DocType 'CRM View +#. Label of the load_default_columns (Check) field in PageType 'CRM View #. Settings' -#: crm/fcrm/doctype/crm_view_settings/crm_view_settings.json +#: crm/fcrm/pagetype/crm_view_settings/crm_view_settings.json msgid "Load Default Columns" msgstr "" @@ -3403,10 +3403,10 @@ msgstr "Töltsön be többet" msgid "Loading..." msgstr "Betöltés..." -#. Label of the log_tab (Tab Break) field in DocType 'CRM Deal' -#. Label of the log_tab (Tab Break) field in DocType 'CRM Lead' -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_lead/crm_lead.json +#. Label of the log_tab (Tab Break) field in PageType 'CRM Deal' +#. Label of the log_tab (Tab Break) field in PageType 'CRM Lead' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_lead/crm_lead.json msgid "Log" msgstr "" @@ -3417,28 +3417,28 @@ msgid "Log a Call" msgstr "" #: frontend/src/composables/frappecloud.js:23 -msgid "Login to Frappe Cloud?" -msgstr "Bejelentkezés a Frappe Cloudba?" +msgid "Login to Jingrow Cloud?" +msgstr "Bejelentkezés a Jingrow Cloudba?" -#. Label of the brand_logo (Attach) field in DocType 'FCRM Settings' -#: crm/fcrm/doctype/fcrm_settings/fcrm_settings.json +#. Label of the brand_logo (Attach) field in PageType 'FCRM Settings' +#: crm/fcrm/pagetype/fcrm_settings/fcrm_settings.json msgid "Logo" msgstr "" -#. Option for the 'Type' (Select) field in DocType 'CRM Deal Status' -#: crm/fcrm/doctype/crm_deal_status/crm_deal_status.json +#. Option for the 'Type' (Select) field in PageType 'CRM Deal Status' +#: crm/fcrm/pagetype/crm_deal_status/crm_deal_status.json msgid "Lost" msgstr "" -#. Label of the lost_notes (Text) field in DocType 'CRM Deal' -#: crm/fcrm/doctype/crm_deal/crm_deal.json +#. Label of the lost_notes (Text) field in PageType 'CRM Deal' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json msgid "Lost Notes" msgstr "" -#. Label of the lost_reason (Link) field in DocType 'CRM Deal' -#. Label of the lost_reason (Data) field in DocType 'CRM Lost Reason' -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_lost_reason/crm_lost_reason.json +#. Label of the lost_reason (Link) field in PageType 'CRM Deal' +#. Label of the lost_reason (Data) field in PageType 'CRM Lost Reason' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_lost_reason/crm_lost_reason.json msgid "Lost Reason" msgstr "" @@ -3464,8 +3464,8 @@ msgstr "" msgid "Lost reason is required" msgstr "" -#. Option for the 'Priority' (Select) field in DocType 'CRM Task' -#: crm/fcrm/doctype/crm_task/crm_task.json +#. Option for the 'Priority' (Select) field in PageType 'CRM Task' +#: crm/fcrm/pagetype/crm_task/crm_task.json msgid "Low" msgstr "" @@ -3542,8 +3542,8 @@ msgstr "" msgid "Mandatory field error: {0}" msgstr "" -#. Option for the 'Telephony Medium' (Select) field in DocType 'CRM Call Log' -#: crm/fcrm/doctype/crm_call_log/crm_call_log.json +#. Option for the 'Telephony Medium' (Select) field in PageType 'CRM Call Log' +#: crm/fcrm/pagetype/crm_call_log/crm_call_log.json msgid "Manual" msgstr "" @@ -3562,25 +3562,25 @@ msgstr "" msgid "May 1, 2025" msgstr "" -#. Label of the medium (Data) field in DocType 'CRM Call Log' -#. Option for the 'Priority' (Select) field in DocType 'CRM Task' -#: crm/fcrm/doctype/crm_call_log/crm_call_log.json -#: crm/fcrm/doctype/crm_task/crm_task.json +#. Label of the medium (Data) field in PageType 'CRM Call Log' +#. Option for the 'Priority' (Select) field in PageType 'CRM Task' +#: crm/fcrm/pagetype/crm_call_log/crm_call_log.json +#: crm/fcrm/pagetype/crm_task/crm_task.json msgid "Medium" msgstr "" -#. Option for the 'Type' (Select) field in DocType 'CRM Notification' -#: crm/fcrm/doctype/crm_notification/crm_notification.json +#. Option for the 'Type' (Select) field in PageType 'CRM Notification' +#: crm/fcrm/pagetype/crm_notification/crm_notification.json msgid "Mention" msgstr "" -#. Label of the message (HTML Editor) field in DocType 'CRM Notification' -#: crm/fcrm/doctype/crm_notification/crm_notification.json +#. Label of the message (HTML Editor) field in PageType 'CRM Notification' +#: crm/fcrm/pagetype/crm_notification/crm_notification.json msgid "Message" msgstr "Üzenet" -#. Label of the middle_name (Data) field in DocType 'CRM Lead' -#: crm/fcrm/doctype/crm_lead/crm_lead.json +#. Label of the middle_name (Data) field in PageType 'CRM Lead' +#: crm/fcrm/pagetype/crm_lead/crm_lead.json msgid "Middle Name" msgstr "" @@ -3588,10 +3588,10 @@ msgstr "" msgid "Minimize" msgstr "" -#. Label of the mobile_no (Data) field in DocType 'CRM Contacts' -#. Label of the mobile_no (Data) field in DocType 'CRM Lead' -#: crm/fcrm/doctype/crm_contacts/crm_contacts.json -#: crm/fcrm/doctype/crm_lead/crm_lead.json +#. Label of the mobile_no (Data) field in PageType 'CRM Contacts' +#. Label of the mobile_no (Data) field in PageType 'CRM Lead' +#: crm/fcrm/pagetype/crm_contacts/crm_contacts.json +#: crm/fcrm/pagetype/crm_lead/crm_lead.json msgid "Mobile No" msgstr "Mobil:" @@ -3600,8 +3600,8 @@ msgstr "Mobil:" msgid "Mobile No should be a number" msgstr "" -#. Label of the mobile_no (Data) field in DocType 'CRM Telephony Agent' -#: crm/fcrm/doctype/crm_telephony_agent/crm_telephony_agent.json +#. Label of the mobile_no (Data) field in PageType 'CRM Telephony Agent' +#: crm/fcrm/pagetype/crm_telephony_agent/crm_telephony_agent.json msgid "Mobile No." msgstr "" @@ -3623,10 +3623,10 @@ msgstr "" msgid "Mobile no" msgstr "" -#. Option for the 'Weekly Off' (Select) field in DocType 'CRM Holiday List' -#. Option for the 'Workday' (Select) field in DocType 'CRM Service Day' -#: crm/fcrm/doctype/crm_holiday_list/crm_holiday_list.json -#: crm/fcrm/doctype/crm_service_day/crm_service_day.json +#. Option for the 'Weekly Off' (Select) field in PageType 'CRM Holiday List' +#. Option for the 'Workday' (Select) field in PageType 'CRM Service Day' +#: crm/fcrm/pagetype/crm_holiday_list/crm_holiday_list.json +#: crm/fcrm/pagetype/crm_service_day/crm_service_day.json msgid "Monday" msgstr "Hétfő" @@ -3658,12 +3658,12 @@ msgstr "" msgid "My Open Deals" msgstr "" -#. Label of the title (Data) field in DocType 'CRM Dashboard' -#. Label of the name1 (Data) field in DocType 'CRM Dropdown Item' -#. Label of the brand_name (Data) field in DocType 'FCRM Settings' -#: crm/fcrm/doctype/crm_dashboard/crm_dashboard.json -#: crm/fcrm/doctype/crm_dropdown_item/crm_dropdown_item.json -#: crm/fcrm/doctype/fcrm_settings/fcrm_settings.json +#. Label of the title (Data) field in PageType 'CRM Dashboard' +#. Label of the name1 (Data) field in PageType 'CRM Dropdown Item' +#. Label of the brand_name (Data) field in PageType 'FCRM Settings' +#: crm/fcrm/pagetype/crm_dashboard/crm_dashboard.json +#: crm/fcrm/pagetype/crm_dropdown_item/crm_dropdown_item.json +#: crm/fcrm/pagetype/fcrm_settings/fcrm_settings.json #: frontend/src/components/Settings/AssignmentRules/AssignmentRuleView.vue:51 #: frontend/src/components/Settings/AssignmentRules/AssignmentRuleView.vue:52 #: frontend/src/components/Settings/EmailTemplate/EditEmailTemplate.vue:39 @@ -3680,10 +3680,10 @@ msgstr "" msgid "Name is required" msgstr "" -#. Label of the naming_series (Select) field in DocType 'CRM Deal' -#. Label of the naming_series (Select) field in DocType 'CRM Product' -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_product/crm_product.json +#. Label of the naming_series (Select) field in PageType 'CRM Deal' +#. Label of the naming_series (Select) field in PageType 'CRM Product' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_product/crm_product.json msgid "Naming Series" msgstr "Elnevezési sorozatok" @@ -3691,15 +3691,15 @@ msgstr "Elnevezési sorozatok" msgid "Nested conditions" msgstr "" -#. Label of the net_amount (Currency) field in DocType 'CRM Products' -#: crm/fcrm/doctype/crm_products/crm_products.json +#. Label of the net_amount (Currency) field in PageType 'CRM Products' +#: crm/fcrm/pagetype/crm_products/crm_products.json msgid "Net Amount" msgstr "" -#. Label of the net_total (Currency) field in DocType 'CRM Deal' -#. Label of the net_total (Currency) field in DocType 'CRM Lead' -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_lead/crm_lead.json +#. Label of the net_total (Currency) field in PageType 'CRM Deal' +#. Label of the net_total (Currency) field in PageType 'CRM Lead' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_lead/crm_lead.json msgid "Net Total" msgstr "" @@ -3814,8 +3814,8 @@ msgstr "" msgid "Next Quarter" msgstr "" -#. Label of the next_step (Data) field in DocType 'CRM Deal' -#: crm/fcrm/doctype/crm_deal/crm_deal.json +#. Label of the next_step (Data) field in PageType 'CRM Deal' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json msgid "Next Step" msgstr "" @@ -3831,8 +3831,8 @@ msgstr "" msgid "No" msgstr "" -#. Option for the 'Status' (Select) field in DocType 'CRM Call Log' -#: crm/fcrm/doctype/crm_call_log/crm_call_log.json +#. Option for the 'Status' (Select) field in PageType 'CRM Call Log' +#: crm/fcrm/pagetype/crm_call_log/crm_call_log.json msgid "No Answer" msgstr "" @@ -3930,12 +3930,12 @@ msgstr "" msgid "No {0} Found" msgstr "" -#. Label of the no_of_employees (Select) field in DocType 'CRM Deal' -#. Label of the no_of_employees (Select) field in DocType 'CRM Lead' -#. Label of the no_of_employees (Select) field in DocType 'CRM Organization' -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_lead/crm_lead.json -#: crm/fcrm/doctype/crm_organization/crm_organization.json +#. Label of the no_of_employees (Select) field in PageType 'CRM Deal' +#. Label of the no_of_employees (Select) field in PageType 'CRM Lead' +#. Label of the no_of_employees (Select) field in PageType 'CRM Organization' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_lead/crm_lead.json +#: crm/fcrm/pagetype/crm_organization/crm_organization.json msgid "No. of Employees" msgstr "" @@ -3981,24 +3981,24 @@ msgstr "Nem mint" msgid "Not Saved" msgstr "Nincs mentve" -#: crm/fcrm/doctype/crm_deal/crm_deal.py:272 +#: crm/fcrm/pagetype/crm_deal/crm_deal.py:272 msgid "Not allowed to add contact to Deal" msgstr "" -#: crm/fcrm/doctype/crm_lead/crm_lead.py:408 +#: crm/fcrm/pagetype/crm_lead/crm_lead.py:408 msgid "Not allowed to convert Lead to Deal" msgstr "" -#: crm/fcrm/doctype/crm_deal/crm_deal.py:283 +#: crm/fcrm/pagetype/crm_deal/crm_deal.py:283 msgid "Not allowed to remove contact from Deal" msgstr "" -#: crm/fcrm/doctype/crm_deal/crm_deal.py:294 +#: crm/fcrm/pagetype/crm_deal/crm_deal.py:294 msgid "Not allowed to set primary contact for Deal" msgstr "" -#. Label of the note (Link) field in DocType 'CRM Call Log' -#: crm/fcrm/doctype/crm_call_log/crm_call_log.json +#. Label of the note (Link) field in PageType 'CRM Call Log' +#: crm/fcrm/pagetype/crm_call_log/crm_call_log.json #: frontend/src/components/Layouts/AppSidebar.vue:554 msgid "Note" msgstr "" @@ -4017,21 +4017,21 @@ msgstr "" msgid "Notification" msgstr "Értesítés" -#. Label of the notification_text (Text) field in DocType 'CRM Notification' -#: crm/fcrm/doctype/crm_notification/crm_notification.json +#. Label of the notification_text (Text) field in PageType 'CRM Notification' +#: crm/fcrm/pagetype/crm_notification/crm_notification.json msgid "Notification Text" msgstr "" -#. Label of the notification_type_doc (Dynamic Link) field in DocType 'CRM +#. Label of the notification_type_pg (Dynamic Link) field in PageType 'CRM #. Notification' -#: crm/fcrm/doctype/crm_notification/crm_notification.json -msgid "Notification Type Doc" +#: crm/fcrm/pagetype/crm_notification/crm_notification.json +msgid "Notification Type Pg" msgstr "" -#. Label of the notification_type_doctype (Link) field in DocType 'CRM +#. Label of the notification_type_pagetype (Link) field in PageType 'CRM #. Notification' -#: crm/fcrm/doctype/crm_notification/crm_notification.json -msgid "Notification Type Doctype" +#: crm/fcrm/pagetype/crm_notification/crm_notification.json +msgid "Notification Type Pagetype" msgstr "" #: frontend/src/components/Layouts/AppSidebar.vue:13 @@ -4041,8 +4041,8 @@ msgstr "" msgid "Notifications" msgstr "Értesítések" -#. Label of the number (Data) field in DocType 'CRM Telephony Phone' -#: crm/fcrm/doctype/crm_telephony_phone/crm_telephony_phone.json +#. Label of the number (Data) field in PageType 'CRM Telephony Phone' +#: crm/fcrm/pagetype/crm_telephony_phone/crm_telephony_phone.json msgid "Number" msgstr "" @@ -4064,18 +4064,18 @@ msgstr "" msgid "Old Condition" msgstr "" -#. Label of the old_parent (Link) field in DocType 'CRM Territory' -#: crm/fcrm/doctype/crm_territory/crm_territory.json +#. Label of the old_parent (Link) field in PageType 'CRM Territory' +#: crm/fcrm/pagetype/crm_territory/crm_territory.json msgid "Old Parent" msgstr "Régi szülő" -#. Option for the 'Type' (Select) field in DocType 'CRM Deal Status' -#: crm/fcrm/doctype/crm_deal_status/crm_deal_status.json +#. Option for the 'Type' (Select) field in PageType 'CRM Deal Status' +#: crm/fcrm/pagetype/crm_deal_status/crm_deal_status.json msgid "On Hold" msgstr "" -#. Option for the 'Type' (Select) field in DocType 'CRM Deal Status' -#: crm/fcrm/doctype/crm_deal_status/crm_deal_status.json +#. Option for the 'Type' (Select) field in PageType 'CRM Deal Status' +#: crm/fcrm/pagetype/crm_deal_status/crm_deal_status.json msgid "Ongoing" msgstr "" @@ -4088,13 +4088,13 @@ msgstr "" msgid "Only image files are allowed" msgstr "" -#: crm/fcrm/doctype/crm_deal/crm_deal.py:60 -#: crm/fcrm/doctype/crm_telephony_agent/crm_telephony_agent.py:23 +#: crm/fcrm/pagetype/crm_deal/crm_deal.py:60 +#: crm/fcrm/pagetype/crm_telephony_agent/crm_telephony_agent.py:23 msgid "Only one {0} can be set as primary." msgstr "Csak egy {0} állítható be elsődlegesként." -#. Option for the 'Type' (Select) field in DocType 'CRM Deal Status' -#: crm/fcrm/doctype/crm_deal_status/crm_deal_status.json +#. Option for the 'Type' (Select) field in PageType 'CRM Deal Status' +#: crm/fcrm/pagetype/crm_deal_status/crm_deal_status.json msgid "Open" msgstr "" @@ -4108,13 +4108,13 @@ msgstr "" msgid "Open Lead" msgstr "" -#: crm/fcrm/doctype/crm_deal/crm_deal.js:6 -#: crm/fcrm/doctype/crm_lead/crm_lead.js:6 +#: crm/fcrm/pagetype/crm_deal/crm_deal.js:6 +#: crm/fcrm/pagetype/crm_lead/crm_lead.js:6 msgid "Open in Portal" msgstr "" -#. Label of the open_in_new_window (Check) field in DocType 'CRM Dropdown Item' -#: crm/fcrm/doctype/crm_dropdown_item/crm_dropdown_item.json +#. Label of the open_in_new_window (Check) field in PageType 'CRM Dropdown Item' +#: crm/fcrm/pagetype/crm_dropdown_item/crm_dropdown_item.json msgid "Open in new window" msgstr "" @@ -4136,17 +4136,17 @@ msgstr "Választhatók" msgid "Or create leads manually" msgstr "" -#. Label of the order_by_tab (Tab Break) field in DocType 'CRM View Settings' -#. Label of the order_by (Code) field in DocType 'CRM View Settings' -#: crm/fcrm/doctype/crm_view_settings/crm_view_settings.json +#. Label of the order_by_tab (Tab Break) field in PageType 'CRM View Settings' +#. Label of the order_by (Code) field in PageType 'CRM View Settings' +#: crm/fcrm/pagetype/crm_view_settings/crm_view_settings.json msgid "Order By" msgstr "" -#. Label of the organization (Link) field in DocType 'CRM Deal' -#. Label of the organization_tab (Tab Break) field in DocType 'CRM Deal' -#. Label of the organization (Data) field in DocType 'CRM Lead' -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_lead/crm_lead.json +#. Label of the organization (Link) field in PageType 'CRM Deal' +#. Label of the organization_tab (Tab Break) field in PageType 'CRM Deal' +#. Label of the organization (Data) field in PageType 'CRM Lead' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_lead/crm_lead.json #: frontend/src/components/Layouts/AppSidebar.vue:553 #: frontend/src/components/Modals/ConvertToDealModal.vue:25 #: frontend/src/pages/Contact.vue:494 frontend/src/pages/MobileContact.vue:502 @@ -4158,22 +4158,22 @@ msgstr "" msgid "Organization" msgstr "" -#. Label of the organization_details_section (Section Break) field in DocType +#. Label of the organization_details_section (Section Break) field in PageType #. 'CRM Deal' -#: crm/fcrm/doctype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_deal/crm_deal.json msgid "Organization Details" msgstr "" -#. Label of the organization_logo (Attach Image) field in DocType 'CRM +#. Label of the organization_logo (Attach Image) field in PageType 'CRM #. Organization' -#: crm/fcrm/doctype/crm_organization/crm_organization.json +#: crm/fcrm/pagetype/crm_organization/crm_organization.json msgid "Organization Logo" msgstr "" -#. Label of the organization_name (Data) field in DocType 'CRM Deal' -#. Label of the organization_name (Data) field in DocType 'CRM Organization' -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_organization/crm_organization.json +#. Label of the organization_name (Data) field in PageType 'CRM Deal' +#. Label of the organization_name (Data) field in PageType 'CRM Organization' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_organization/crm_organization.json msgid "Organization Name" msgstr "" @@ -4181,8 +4181,8 @@ msgstr "" msgid "Organization logo" msgstr "" -#. Label of a shortcut in the Frappe CRM Workspace -#: crm/fcrm/workspace/frappe_crm/frappe_crm.json +#. Label of a shortcut in the Jingrow CRM Workspace +#: crm/fcrm/workspace/jingrow_crm/jingrow_crm.json #: frontend/src/pages/MobileOrganization.vue:205 #: frontend/src/pages/Organization.vue:234 msgid "Organizations" @@ -4196,8 +4196,8 @@ msgstr "" msgid "Other features" msgstr "" -#. Label of the organization_tab (Tab Break) field in DocType 'CRM Lead' -#: crm/fcrm/doctype/crm_lead/crm_lead.json +#. Label of the organization_tab (Tab Break) field in PageType 'CRM Lead' +#: crm/fcrm/pagetype/crm_lead/crm_lead.json msgid "Others" msgstr "" @@ -4205,13 +4205,13 @@ msgstr "" msgid "Outbound Call" msgstr "" -#. Option for the 'Type' (Select) field in DocType 'CRM Call Log' -#: crm/fcrm/doctype/crm_call_log/crm_call_log.json +#. Option for the 'Type' (Select) field in PageType 'CRM Call Log' +#: crm/fcrm/pagetype/crm_call_log/crm_call_log.json msgid "Outgoing" msgstr "" -#. Label of the log_owner (Link) field in DocType 'CRM Status Change Log' -#: crm/fcrm/doctype/crm_status_change_log/crm_status_change_log.json +#. Label of the log_owner (Link) field in PageType 'CRM Status Change Log' +#: crm/fcrm/pagetype/crm_status_change_log/crm_status_change_log.json msgid "Owner" msgstr "" @@ -4219,8 +4219,8 @@ msgstr "" msgid "Owner: {0}" msgstr "" -#. Label of the parent_crm_territory (Link) field in DocType 'CRM Territory' -#: crm/fcrm/doctype/crm_territory/crm_territory.json +#. Label of the parent_crm_territory (Link) field in PageType 'CRM Territory' +#: crm/fcrm/pagetype/crm_territory/crm_territory.json msgid "Parent CRM Territory" msgstr "" @@ -4251,8 +4251,8 @@ msgstr "" msgid "Payment Reminder from Frappé - (#{{ name }})" msgstr "" -#. Option for the 'Status' (Select) field in DocType 'CRM Invitation' -#: crm/fcrm/doctype/crm_invitation/crm_invitation.json +#. Option for the 'Status' (Select) field in PageType 'CRM Invitation' +#: crm/fcrm/pagetype/crm_invitation/crm_invitation.json msgid "Pending" msgstr "" @@ -4264,10 +4264,10 @@ msgstr "" msgid "Period" msgstr "" -#. Label of the person_section (Section Break) field in DocType 'CRM Deal' -#. Label of the person_tab (Tab Break) field in DocType 'CRM Lead' -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_lead/crm_lead.json +#. Label of the person_section (Section Break) field in PageType 'CRM Deal' +#. Label of the person_tab (Tab Break) field in PageType 'CRM Lead' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_lead/crm_lead.json msgid "Person" msgstr "" @@ -4275,19 +4275,19 @@ msgstr "" msgid "Personal Settings" msgstr "" -#. Label of the phone (Data) field in DocType 'CRM Contacts' -#. Label of the phone (Data) field in DocType 'CRM Lead' -#. Option for the 'Device' (Select) field in DocType 'CRM Telephony Agent' -#: crm/fcrm/doctype/crm_contacts/crm_contacts.json -#: crm/fcrm/doctype/crm_lead/crm_lead.json -#: crm/fcrm/doctype/crm_telephony_agent/crm_telephony_agent.json +#. Label of the phone (Data) field in PageType 'CRM Contacts' +#. Label of the phone (Data) field in PageType 'CRM Lead' +#. Option for the 'Device' (Select) field in PageType 'CRM Telephony Agent' +#: crm/fcrm/pagetype/crm_contacts/crm_contacts.json +#: crm/fcrm/pagetype/crm_lead/crm_lead.json +#: crm/fcrm/pagetype/crm_telephony_agent/crm_telephony_agent.json #: frontend/src/pages/MobileOrganization.vue:495 #: frontend/src/pages/Organization.vue:516 msgid "Phone" msgstr "" -#. Label of the phone_nos (Table) field in DocType 'CRM Telephony Agent' -#: crm/fcrm/doctype/crm_telephony_agent/crm_telephony_agent.json +#. Label of the phone_nos (Table) field in PageType 'CRM Telephony Agent' +#: crm/fcrm/pagetype/crm_telephony_agent/crm_telephony_agent.json msgid "Phone Numbers" msgstr "" @@ -4295,8 +4295,8 @@ msgstr "" msgid "Pin View" msgstr "" -#. Label of the pinned (Check) field in DocType 'CRM View Settings' -#: crm/fcrm/doctype/crm_view_settings/crm_view_settings.json +#. Label of the pinned (Check) field in PageType 'CRM View Settings' +#: crm/fcrm/pagetype/crm_view_settings/crm_view_settings.json msgid "Pinned" msgstr "" @@ -4346,7 +4346,7 @@ msgstr "" msgid "Please select an existing organization" msgstr "" -#: crm/fcrm/doctype/helpdesk_crm_settings/helpdesk_crm_settings.py:126 +#: crm/fcrm/pagetype/helpdesk_crm_settings/helpdesk_crm_settings.py:126 msgid "Please set Email Address" msgstr "Kérjük, állítsa be az e-mail címet" @@ -4354,18 +4354,18 @@ msgstr "Kérjük, állítsa be az e-mail címet" msgid "Please setup Exotel intergration" msgstr "" -#: crm/fcrm/doctype/crm_deal/crm_deal.py:181 +#: crm/fcrm/pagetype/crm_deal/crm_deal.py:181 msgid "Please specify a reason for losing the deal." msgstr "" -#: crm/fcrm/doctype/crm_deal/crm_deal.py:183 +#: crm/fcrm/pagetype/crm_deal/crm_deal.py:183 msgid "Please specify the reason for losing the deal." msgstr "" -#. Label of the position (Int) field in DocType 'CRM Deal Status' -#. Label of the position (Int) field in DocType 'CRM Lead Status' -#: crm/fcrm/doctype/crm_deal_status/crm_deal_status.json -#: crm/fcrm/doctype/crm_lead_status/crm_lead_status.json +#. Label of the position (Int) field in PageType 'CRM Deal Status' +#. Label of the position (Int) field in PageType 'CRM Lead Status' +#: crm/fcrm/pagetype/crm_deal_status/crm_deal_status.json +#: crm/fcrm/pagetype/crm_lead_status/crm_lead_status.json msgid "Position" msgstr "" @@ -4373,18 +4373,18 @@ msgstr "" msgid "Primary" msgstr "" -#. Label of the email (Data) field in DocType 'CRM Deal' -#: crm/fcrm/doctype/crm_deal/crm_deal.json +#. Label of the email (Data) field in PageType 'CRM Deal' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json msgid "Primary Email" msgstr "" -#. Label of the mobile_no (Data) field in DocType 'CRM Deal' -#: crm/fcrm/doctype/crm_deal/crm_deal.json +#. Label of the mobile_no (Data) field in PageType 'CRM Deal' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json msgid "Primary Mobile No" msgstr "" -#. Label of the phone (Data) field in DocType 'CRM Deal' -#: crm/fcrm/doctype/crm_deal/crm_deal.json +#. Label of the phone (Data) field in PageType 'CRM Deal' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json msgid "Primary Phone" msgstr "" @@ -4392,57 +4392,57 @@ msgstr "" msgid "Primary contact set" msgstr "" -#. Label of the priorities (Table) field in DocType 'CRM Service Level +#. Label of the priorities (Table) field in PageType 'CRM Service Level #. Agreement' -#: crm/fcrm/doctype/crm_service_level_agreement/crm_service_level_agreement.json +#: crm/fcrm/pagetype/crm_service_level_agreement/crm_service_level_agreement.json msgid "Priorities" msgstr "" -#. Label of the priority (Link) field in DocType 'CRM Service Level Priority' -#. Label of the priority (Select) field in DocType 'CRM Task' -#: crm/fcrm/doctype/crm_service_level_priority/crm_service_level_priority.json -#: crm/fcrm/doctype/crm_task/crm_task.json +#. Label of the priority (Link) field in PageType 'CRM Service Level Priority' +#. Label of the priority (Select) field in PageType 'CRM Task' +#: crm/fcrm/pagetype/crm_service_level_priority/crm_service_level_priority.json +#: crm/fcrm/pagetype/crm_task/crm_task.json #: frontend/src/components/Settings/AssignmentRules/AssignmentRuleView.vue:64 #: frontend/src/components/Settings/AssignmentRules/AssignmentRulesList.vue:20 msgid "Priority" msgstr "" -#. Label of the private (Check) field in DocType 'CRM Dashboard' -#: crm/fcrm/doctype/crm_dashboard/crm_dashboard.json +#. Label of the private (Check) field in PageType 'CRM Dashboard' +#: crm/fcrm/pagetype/crm_dashboard/crm_dashboard.json #: frontend/src/components/FilesUploader/FilesUploaderArea.vue:89 msgid "Private" msgstr "Magán" -#. Label of the probability (Percent) field in DocType 'CRM Deal' -#. Label of the probability (Percent) field in DocType 'CRM Deal Status' -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_deal_status/crm_deal_status.json +#. Label of the probability (Percent) field in PageType 'CRM Deal' +#. Label of the probability (Percent) field in PageType 'CRM Deal Status' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_deal_status/crm_deal_status.json msgid "Probability" msgstr "" -#. Label of the product_code (Link) field in DocType 'CRM Products' -#: crm/fcrm/doctype/crm_products/crm_products.json +#. Label of the product_code (Link) field in PageType 'CRM Products' +#: crm/fcrm/pagetype/crm_products/crm_products.json msgid "Product" msgstr "" -#. Label of the product_code (Data) field in DocType 'CRM Product' -#: crm/fcrm/doctype/crm_product/crm_product.json +#. Label of the product_code (Data) field in PageType 'CRM Product' +#: crm/fcrm/pagetype/crm_product/crm_product.json msgid "Product Code" msgstr "" -#. Label of the product_name (Data) field in DocType 'CRM Product' -#. Label of the product_name (Data) field in DocType 'CRM Products' -#: crm/fcrm/doctype/crm_product/crm_product.json -#: crm/fcrm/doctype/crm_products/crm_products.json +#. Label of the product_name (Data) field in PageType 'CRM Product' +#. Label of the product_name (Data) field in PageType 'CRM Products' +#: crm/fcrm/pagetype/crm_product/crm_product.json +#: crm/fcrm/pagetype/crm_products/crm_products.json msgid "Product Name" msgstr "" -#. Label of the products_tab (Tab Break) field in DocType 'CRM Deal' -#. Label of the products (Table) field in DocType 'CRM Deal' -#. Label of the products_tab (Tab Break) field in DocType 'CRM Lead' -#. Label of the products (Table) field in DocType 'CRM Lead' -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_lead/crm_lead.json +#. Label of the products_tab (Tab Break) field in PageType 'CRM Deal' +#. Label of the products (Table) field in PageType 'CRM Deal' +#. Label of the products_tab (Tab Break) field in PageType 'CRM Lead' +#. Label of the products (Table) field in PageType 'CRM Lead' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_lead/crm_lead.json msgid "Products" msgstr "" @@ -4459,8 +4459,8 @@ msgstr "" msgid "Projected vs actual revenue based on deal probability" msgstr "" -#. Label of the public (Check) field in DocType 'CRM View Settings' -#: crm/fcrm/doctype/crm_view_settings/crm_view_settings.json +#. Label of the public (Check) field in PageType 'CRM View Settings' +#: crm/fcrm/pagetype/crm_view_settings/crm_view_settings.json msgid "Public" msgstr "Nyilvános" @@ -4472,23 +4472,23 @@ msgstr "" msgid "Public view" msgstr "" -#. Label of the qty (Float) field in DocType 'CRM Products' -#: crm/fcrm/doctype/crm_products/crm_products.json +#. Label of the qty (Float) field in PageType 'CRM Products' +#: crm/fcrm/pagetype/crm_products/crm_products.json msgid "Quantity" msgstr "" -#. Option for the 'Status' (Select) field in DocType 'CRM Call Log' -#: crm/fcrm/doctype/crm_call_log/crm_call_log.json +#. Option for the 'Status' (Select) field in PageType 'CRM Call Log' +#: crm/fcrm/pagetype/crm_call_log/crm_call_log.json msgid "Queued" msgstr "Sorba állított" -#. Option for the 'Type' (Select) field in DocType 'CRM Fields Layout' -#: crm/fcrm/doctype/crm_fields_layout/crm_fields_layout.json +#. Option for the 'Type' (Select) field in PageType 'CRM Fields Layout' +#: crm/fcrm/pagetype/crm_fields_layout/crm_fields_layout.json msgid "Quick Entry" msgstr "" -#. Option for the 'Type' (Select) field in DocType 'CRM Global Settings' -#: crm/fcrm/doctype/crm_global_settings/crm_global_settings.json +#. Option for the 'Type' (Select) field in PageType 'CRM Global Settings' +#: crm/fcrm/pagetype/crm_global_settings/crm_global_settings.json msgid "Quick Filters" msgstr "" @@ -4500,13 +4500,13 @@ msgstr "" msgid "Quick entry layout" msgstr "" -#. Label of the rate (Currency) field in DocType 'CRM Products' -#: crm/fcrm/doctype/crm_products/crm_products.json +#. Label of the rate (Currency) field in PageType 'CRM Products' +#: crm/fcrm/pagetype/crm_products/crm_products.json msgid "Rate" msgstr "" -#. Label of the read (Check) field in DocType 'CRM Notification' -#: crm/fcrm/doctype/crm_notification/crm_notification.json +#. Label of the read (Check) field in PageType 'CRM Notification' +#: crm/fcrm/pagetype/crm_notification/crm_notification.json msgid "Read" msgstr "Olvas" @@ -4514,48 +4514,48 @@ msgstr "Olvas" msgid "Reason" msgstr "" -#. Label of the record_calls (Check) field in DocType 'CRM Twilio Settings' -#: crm/fcrm/doctype/crm_twilio_settings/crm_twilio_settings.json +#. Label of the record_calls (Check) field in PageType 'CRM Twilio Settings' +#: crm/fcrm/pagetype/crm_twilio_settings/crm_twilio_settings.json msgid "Record Calls" msgstr "" -#. Label of the record_call (Check) field in DocType 'CRM Exotel Settings' -#: crm/fcrm/doctype/crm_exotel_settings/crm_exotel_settings.json +#. Label of the record_call (Check) field in PageType 'CRM Exotel Settings' +#: crm/fcrm/pagetype/crm_exotel_settings/crm_exotel_settings.json msgid "Record Outgoing Calls" msgstr "" -#. Label of the recording_url (Data) field in DocType 'CRM Call Log' -#: crm/fcrm/doctype/crm_call_log/crm_call_log.json +#. Label of the recording_url (Data) field in PageType 'CRM Call Log' +#: crm/fcrm/pagetype/crm_call_log/crm_call_log.json msgid "Recording URL" msgstr "" -#. Label of the reference_name (Dynamic Link) field in DocType 'CRM +#. Label of the reference_name (Dynamic Link) field in PageType 'CRM #. Notification' -#. Label of the reference_docname (Dynamic Link) field in DocType 'CRM Task' -#. Label of the reference_docname (Dynamic Link) field in DocType 'FCRM Note' -#: crm/fcrm/doctype/crm_notification/crm_notification.json -#: crm/fcrm/doctype/crm_task/crm_task.json -#: crm/fcrm/doctype/fcrm_note/fcrm_note.json -msgid "Reference Doc" +#. Label of the reference_docname (Dynamic Link) field in PageType 'CRM Task' +#. Label of the reference_docname (Dynamic Link) field in PageType 'FCRM Note' +#: crm/fcrm/pagetype/crm_notification/crm_notification.json +#: crm/fcrm/pagetype/crm_task/crm_task.json +#: crm/fcrm/pagetype/fcrm_note/fcrm_note.json +msgid "Reference Pg" msgstr "" -#. Label of the reference_doctype (Link) field in DocType 'CRM Notification' -#: crm/fcrm/doctype/crm_notification/crm_notification.json -msgid "Reference Doctype" -msgstr "Referencia Doctype" +#. Label of the reference_pagetype (Link) field in PageType 'CRM Notification' +#: crm/fcrm/pagetype/crm_notification/crm_notification.json +msgid "Reference Pagetype" +msgstr "Referencia Pagetype" -#. Label of the reference_doctype (Link) field in DocType 'CRM Call Log' -#. Label of the reference_doctype (Link) field in DocType 'CRM Task' -#. Label of the reference_doctype (Link) field in DocType 'FCRM Note' -#: crm/fcrm/doctype/crm_call_log/crm_call_log.json -#: crm/fcrm/doctype/crm_task/crm_task.json -#: crm/fcrm/doctype/fcrm_note/fcrm_note.json +#. Label of the reference_pagetype (Link) field in PageType 'CRM Call Log' +#. Label of the reference_pagetype (Link) field in PageType 'CRM Task' +#. Label of the reference_pagetype (Link) field in PageType 'FCRM Note' +#: crm/fcrm/pagetype/crm_call_log/crm_call_log.json +#: crm/fcrm/pagetype/crm_task/crm_task.json +#: crm/fcrm/pagetype/fcrm_note/fcrm_note.json msgid "Reference Document Type" msgstr "" -#. Label of the reference_docname (Dynamic Link) field in DocType 'CRM Call +#. Label of the reference_docname (Dynamic Link) field in PageType 'CRM Call #. Log' -#: crm/fcrm/doctype/crm_call_log/crm_call_log.json +#: crm/fcrm/pagetype/crm_call_log/crm_call_log.json msgid "Reference Name" msgstr "" @@ -4625,8 +4625,8 @@ msgstr "Válasz mindenkinek" msgid "Report an Issue" msgstr "" -#. Option for the 'Type' (Select) field in DocType 'CRM Fields Layout' -#: crm/fcrm/doctype/crm_fields_layout/crm_fields_layout.json +#. Option for the 'Type' (Select) field in PageType 'CRM Fields Layout' +#: crm/fcrm/pagetype/crm_fields_layout/crm_fields_layout.json msgid "Required Fields" msgstr "" @@ -4642,7 +4642,7 @@ msgstr "" msgid "Reset Changes" msgstr "" -#: crm/fcrm/doctype/erpnext_crm_settings/erpnext_crm_settings.js:7 +#: crm/fcrm/pagetype/erpnext_crm_settings/erpnext_crm_settings.js:7 msgid "Reset ERPNext Form Script" msgstr "" @@ -4654,35 +4654,35 @@ msgstr "" msgid "Reset to default" msgstr "" -#. Label of the response_by (Datetime) field in DocType 'CRM Deal' -#. Label of the response_by (Datetime) field in DocType 'CRM Lead' -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_lead/crm_lead.json +#. Label of the response_by (Datetime) field in PageType 'CRM Deal' +#. Label of the response_by (Datetime) field in PageType 'CRM Lead' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_lead/crm_lead.json msgid "Response By" msgstr "" -#. Label of the response_details_section (Section Break) field in DocType 'CRM +#. Label of the response_details_section (Section Break) field in PageType 'CRM #. Deal' -#. Label of the response_details_section (Section Break) field in DocType 'CRM +#. Label of the response_details_section (Section Break) field in PageType 'CRM #. Lead' -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_lead/crm_lead.json +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_lead/crm_lead.json msgid "Response Details" msgstr "" -#. Label of the section_break_ufaf (Section Break) field in DocType 'CRM +#. Label of the section_break_ufaf (Section Break) field in PageType 'CRM #. Service Level Agreement' -#: crm/fcrm/doctype/crm_service_level_agreement/crm_service_level_agreement.json +#: crm/fcrm/pagetype/crm_service_level_agreement/crm_service_level_agreement.json msgid "Response and Follow Up" msgstr "" -#: crm/fcrm/doctype/fcrm_settings/fcrm_settings.js:14 +#: crm/fcrm/pagetype/fcrm_settings/fcrm_settings.js:14 msgid "Restore" msgstr "visszaállítás" -#. Label of the restore_defaults (Button) field in DocType 'FCRM Settings' -#: crm/fcrm/doctype/fcrm_settings/fcrm_settings.js:13 -#: crm/fcrm/doctype/fcrm_settings/fcrm_settings.json +#. Label of the restore_defaults (Button) field in PageType 'FCRM Settings' +#: crm/fcrm/pagetype/fcrm_settings/fcrm_settings.js:13 +#: crm/fcrm/pagetype/fcrm_settings/fcrm_settings.json msgid "Restore Defaults" msgstr "" @@ -4699,13 +4699,13 @@ msgstr "" msgid "Rich Text" msgstr "" -#. Label of the rgt (Int) field in DocType 'CRM Territory' -#: crm/fcrm/doctype/crm_territory/crm_territory.json +#. Label of the rgt (Int) field in PageType 'CRM Territory' +#: crm/fcrm/pagetype/crm_territory/crm_territory.json msgid "Right" msgstr "Jobb" -#. Option for the 'Status' (Select) field in DocType 'CRM Call Log' -#: crm/fcrm/doctype/crm_call_log/crm_call_log.json +#. Option for the 'Status' (Select) field in PageType 'CRM Call Log' +#: crm/fcrm/pagetype/crm_call_log/crm_call_log.json msgid "Ringing" msgstr "" @@ -4714,55 +4714,55 @@ msgstr "" msgid "Ringing..." msgstr "" -#. Label of the role (Select) field in DocType 'CRM Invitation' -#: crm/fcrm/doctype/crm_invitation/crm_invitation.json +#. Label of the role (Select) field in PageType 'CRM Invitation' +#: crm/fcrm/pagetype/crm_invitation/crm_invitation.json #: frontend/src/components/Modals/AddExistingUserModal.vue:46 msgid "Role" msgstr "Beosztás" -#. Option for the 'Type' (Select) field in DocType 'CRM Dropdown Item' -#. Label of the route (Data) field in DocType 'CRM Dropdown Item' -#: crm/fcrm/doctype/crm_dropdown_item/crm_dropdown_item.json +#. Option for the 'Type' (Select) field in PageType 'CRM Dropdown Item' +#. Label of the route (Data) field in PageType 'CRM Dropdown Item' +#: crm/fcrm/pagetype/crm_dropdown_item/crm_dropdown_item.json msgid "Route" msgstr "Útvonal" -#. Label of the route_name (Data) field in DocType 'CRM View Settings' -#: crm/fcrm/doctype/crm_view_settings/crm_view_settings.json +#. Label of the route_name (Data) field in PageType 'CRM View Settings' +#: crm/fcrm/pagetype/crm_view_settings/crm_view_settings.json msgid "Route Name" msgstr "" -#. Label of the rows (Code) field in DocType 'CRM View Settings' -#: crm/fcrm/doctype/crm_view_settings/crm_view_settings.json +#. Label of the rows (Code) field in PageType 'CRM View Settings' +#: crm/fcrm/pagetype/crm_view_settings/crm_view_settings.json msgid "Rows" msgstr "" -#. Label of the sla_tab (Tab Break) field in DocType 'CRM Deal' -#. Label of the sla (Link) field in DocType 'CRM Deal' -#. Label of the sla_tab (Tab Break) field in DocType 'CRM Lead' -#. Label of the sla (Link) field in DocType 'CRM Lead' -#. Label of a shortcut in the Frappe CRM Workspace -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_lead/crm_lead.json -#: crm/fcrm/workspace/frappe_crm/frappe_crm.json +#. Label of the sla_tab (Tab Break) field in PageType 'CRM Deal' +#. Label of the sla (Link) field in PageType 'CRM Deal' +#. Label of the sla_tab (Tab Break) field in PageType 'CRM Lead' +#. Label of the sla (Link) field in PageType 'CRM Lead' +#. Label of a shortcut in the Jingrow CRM Workspace +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_lead/crm_lead.json +#: crm/fcrm/workspace/jingrow_crm/jingrow_crm.json msgid "SLA" msgstr "" -#. Label of the sla_creation (Datetime) field in DocType 'CRM Deal' -#. Label of the sla_creation (Datetime) field in DocType 'CRM Lead' -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_lead/crm_lead.json +#. Label of the sla_creation (Datetime) field in PageType 'CRM Deal' +#. Label of the sla_creation (Datetime) field in PageType 'CRM Lead' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_lead/crm_lead.json msgid "SLA Creation" msgstr "" -#. Label of the sla_name (Data) field in DocType 'CRM Service Level Agreement' -#: crm/fcrm/doctype/crm_service_level_agreement/crm_service_level_agreement.json +#. Label of the sla_name (Data) field in PageType 'CRM Service Level Agreement' +#: crm/fcrm/pagetype/crm_service_level_agreement/crm_service_level_agreement.json msgid "SLA Name" msgstr "" -#. Label of the sla_status (Select) field in DocType 'CRM Deal' -#. Label of the sla_status (Select) field in DocType 'CRM Lead' -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_lead/crm_lead.json +#. Label of the sla_status (Select) field in PageType 'CRM Deal' +#. Label of the sla_status (Select) field in PageType 'CRM Lead' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_lead/crm_lead.json msgid "SLA Status" msgstr "" @@ -4771,57 +4771,57 @@ msgid "SUBJECT" msgstr "" #. Name of a role -#. Option for the 'Role' (Select) field in DocType 'CRM Invitation' -#: crm/fcrm/doctype/crm_call_log/crm_call_log.json -#: crm/fcrm/doctype/crm_communication_status/crm_communication_status.json -#: crm/fcrm/doctype/crm_dashboard/crm_dashboard.json -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_deal_status/crm_deal_status.json -#: crm/fcrm/doctype/crm_exotel_settings/crm_exotel_settings.json -#: crm/fcrm/doctype/crm_form_script/crm_form_script.json -#: crm/fcrm/doctype/crm_global_settings/crm_global_settings.json -#: crm/fcrm/doctype/crm_holiday_list/crm_holiday_list.json -#: crm/fcrm/doctype/crm_industry/crm_industry.json -#: crm/fcrm/doctype/crm_invitation/crm_invitation.json -#: crm/fcrm/doctype/crm_lead/crm_lead.json -#: crm/fcrm/doctype/crm_lead_source/crm_lead_source.json -#: crm/fcrm/doctype/crm_lead_status/crm_lead_status.json -#: crm/fcrm/doctype/crm_lost_reason/crm_lost_reason.json -#: crm/fcrm/doctype/crm_notification/crm_notification.json -#: crm/fcrm/doctype/crm_organization/crm_organization.json -#: crm/fcrm/doctype/crm_service_level_agreement/crm_service_level_agreement.json -#: crm/fcrm/doctype/crm_task/crm_task.json -#: crm/fcrm/doctype/crm_territory/crm_territory.json -#: crm/fcrm/doctype/crm_twilio_settings/crm_twilio_settings.json -#: crm/fcrm/doctype/crm_view_settings/crm_view_settings.json -#: crm/fcrm/doctype/erpnext_crm_settings/erpnext_crm_settings.json -#: crm/fcrm/doctype/fcrm_note/fcrm_note.json -#: crm/fcrm/doctype/fcrm_settings/fcrm_settings.json -#: crm/fcrm/doctype/helpdesk_crm_settings/helpdesk_crm_settings.json +#. Option for the 'Role' (Select) field in PageType 'CRM Invitation' +#: crm/fcrm/pagetype/crm_call_log/crm_call_log.json +#: crm/fcrm/pagetype/crm_communication_status/crm_communication_status.json +#: crm/fcrm/pagetype/crm_dashboard/crm_dashboard.json +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_deal_status/crm_deal_status.json +#: crm/fcrm/pagetype/crm_exotel_settings/crm_exotel_settings.json +#: crm/fcrm/pagetype/crm_form_script/crm_form_script.json +#: crm/fcrm/pagetype/crm_global_settings/crm_global_settings.json +#: crm/fcrm/pagetype/crm_holiday_list/crm_holiday_list.json +#: crm/fcrm/pagetype/crm_industry/crm_industry.json +#: crm/fcrm/pagetype/crm_invitation/crm_invitation.json +#: crm/fcrm/pagetype/crm_lead/crm_lead.json +#: crm/fcrm/pagetype/crm_lead_source/crm_lead_source.json +#: crm/fcrm/pagetype/crm_lead_status/crm_lead_status.json +#: crm/fcrm/pagetype/crm_lost_reason/crm_lost_reason.json +#: crm/fcrm/pagetype/crm_notification/crm_notification.json +#: crm/fcrm/pagetype/crm_organization/crm_organization.json +#: crm/fcrm/pagetype/crm_service_level_agreement/crm_service_level_agreement.json +#: crm/fcrm/pagetype/crm_task/crm_task.json +#: crm/fcrm/pagetype/crm_territory/crm_territory.json +#: crm/fcrm/pagetype/crm_twilio_settings/crm_twilio_settings.json +#: crm/fcrm/pagetype/crm_view_settings/crm_view_settings.json +#: crm/fcrm/pagetype/erpnext_crm_settings/erpnext_crm_settings.json +#: crm/fcrm/pagetype/fcrm_note/fcrm_note.json +#: crm/fcrm/pagetype/fcrm_settings/fcrm_settings.json +#: crm/fcrm/pagetype/helpdesk_crm_settings/helpdesk_crm_settings.json msgid "Sales Manager" msgstr "" #. Name of a role -#. Option for the 'Role' (Select) field in DocType 'CRM Invitation' -#: crm/fcrm/doctype/crm_call_log/crm_call_log.json -#: crm/fcrm/doctype/crm_communication_status/crm_communication_status.json -#: crm/fcrm/doctype/crm_dashboard/crm_dashboard.json -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_deal_status/crm_deal_status.json -#: crm/fcrm/doctype/crm_global_settings/crm_global_settings.json -#: crm/fcrm/doctype/crm_holiday_list/crm_holiday_list.json -#: crm/fcrm/doctype/crm_industry/crm_industry.json -#: crm/fcrm/doctype/crm_invitation/crm_invitation.json -#: crm/fcrm/doctype/crm_lead/crm_lead.json -#: crm/fcrm/doctype/crm_lead_source/crm_lead_source.json -#: crm/fcrm/doctype/crm_lead_status/crm_lead_status.json -#: crm/fcrm/doctype/crm_lost_reason/crm_lost_reason.json -#: crm/fcrm/doctype/crm_notification/crm_notification.json -#: crm/fcrm/doctype/crm_organization/crm_organization.json -#: crm/fcrm/doctype/crm_task/crm_task.json -#: crm/fcrm/doctype/crm_territory/crm_territory.json -#: crm/fcrm/doctype/crm_view_settings/crm_view_settings.json -#: crm/fcrm/doctype/fcrm_note/fcrm_note.json +#. Option for the 'Role' (Select) field in PageType 'CRM Invitation' +#: crm/fcrm/pagetype/crm_call_log/crm_call_log.json +#: crm/fcrm/pagetype/crm_communication_status/crm_communication_status.json +#: crm/fcrm/pagetype/crm_dashboard/crm_dashboard.json +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_deal_status/crm_deal_status.json +#: crm/fcrm/pagetype/crm_global_settings/crm_global_settings.json +#: crm/fcrm/pagetype/crm_holiday_list/crm_holiday_list.json +#: crm/fcrm/pagetype/crm_industry/crm_industry.json +#: crm/fcrm/pagetype/crm_invitation/crm_invitation.json +#: crm/fcrm/pagetype/crm_lead/crm_lead.json +#: crm/fcrm/pagetype/crm_lead_source/crm_lead_source.json +#: crm/fcrm/pagetype/crm_lead_status/crm_lead_status.json +#: crm/fcrm/pagetype/crm_lost_reason/crm_lost_reason.json +#: crm/fcrm/pagetype/crm_notification/crm_notification.json +#: crm/fcrm/pagetype/crm_organization/crm_organization.json +#: crm/fcrm/pagetype/crm_task/crm_task.json +#: crm/fcrm/pagetype/crm_territory/crm_territory.json +#: crm/fcrm/pagetype/crm_view_settings/crm_view_settings.json +#: crm/fcrm/pagetype/fcrm_note/fcrm_note.json #: frontend/src/components/Modals/AddExistingUserModal.vue:92 #: frontend/src/components/Settings/InviteUserPage.vue:156 #: frontend/src/components/Settings/InviteUserPage.vue:163 @@ -4845,17 +4845,17 @@ msgstr "" msgid "Salesperson" msgstr "" -#. Label of the salutation (Link) field in DocType 'CRM Deal' -#. Label of the salutation (Link) field in DocType 'CRM Lead' -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_lead/crm_lead.json +#. Label of the salutation (Link) field in PageType 'CRM Deal' +#. Label of the salutation (Link) field in PageType 'CRM Lead' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_lead/crm_lead.json msgid "Salutation" msgstr "Megszólítás" -#. Option for the 'Weekly Off' (Select) field in DocType 'CRM Holiday List' -#. Option for the 'Workday' (Select) field in DocType 'CRM Service Day' -#: crm/fcrm/doctype/crm_holiday_list/crm_holiday_list.json -#: crm/fcrm/doctype/crm_service_day/crm_service_day.json +#. Option for the 'Weekly Off' (Select) field in PageType 'CRM Holiday List' +#. Option for the 'Workday' (Select) field in PageType 'CRM Service Day' +#: crm/fcrm/pagetype/crm_holiday_list/crm_holiday_list.json +#: crm/fcrm/pagetype/crm_service_day/crm_service_day.json msgid "Saturday" msgstr "Szombat" @@ -4904,8 +4904,8 @@ msgstr "" msgid "Schedule an event" msgstr "" -#. Label of the script (Code) field in DocType 'CRM Form Script' -#: crm/fcrm/doctype/crm_form_script/crm_form_script.json +#. Label of the script (Code) field in PageType 'CRM Form Script' +#: crm/fcrm/pagetype/crm_form_script/crm_form_script.json msgid "Script" msgstr "" @@ -4973,18 +4973,18 @@ msgstr "" msgid "Send invites to" msgstr "" -#. Option for the 'Type' (Select) field in DocType 'CRM Dropdown Item' -#: crm/fcrm/doctype/crm_dropdown_item/crm_dropdown_item.json +#. Option for the 'Type' (Select) field in PageType 'CRM Dropdown Item' +#: crm/fcrm/pagetype/crm_dropdown_item/crm_dropdown_item.json msgid "Separator" msgstr "" -#. Label of the naming_series (Select) field in DocType 'CRM Lead' -#: crm/fcrm/doctype/crm_lead/crm_lead.json +#. Label of the naming_series (Select) field in PageType 'CRM Lead' +#: crm/fcrm/pagetype/crm_lead/crm_lead.json msgid "Series" msgstr "" -#. Label of the service_provider (Select) field in DocType 'FCRM Settings' -#: crm/fcrm/doctype/fcrm_settings/fcrm_settings.json +#. Label of the service_provider (Select) field in PageType 'FCRM Settings' +#: crm/fcrm/pagetype/fcrm_settings/fcrm_settings.json msgid "Service Provider" msgstr "" @@ -5029,7 +5029,7 @@ msgid "Setting up" msgstr "" #: frontend/src/components/Settings/emailConfig.js:145 -msgid "Setting up Frappe Mail requires you to have an API key and API Secret of your email account. Read more " +msgid "Setting up Jingrow Mail requires you to have an API key and API Secret of your email account. Read more " msgstr "" #: frontend/src/components/Settings/emailConfig.js:97 @@ -5062,8 +5062,8 @@ msgid "Setting up Yandex requires you to enable two factor authentication\n" "\t\t and app specific passwords. Read more " msgstr "" -#. Label of the defaults_tab (Tab Break) field in DocType 'FCRM Settings' -#: crm/fcrm/doctype/fcrm_settings/fcrm_settings.json +#. Label of the defaults_tab (Tab Break) field in PageType 'FCRM Settings' +#: crm/fcrm/pagetype/fcrm_settings/fcrm_settings.json #: frontend/src/components/Layouts/AppSidebar.vue:537 #: frontend/src/components/Settings/Settings.vue:12 msgid "Settings" @@ -5073,7 +5073,7 @@ msgstr "" msgid "Setup Email" msgstr "" -#: crm/fcrm/doctype/fcrm_settings/fcrm_settings.py:199 +#: crm/fcrm/pagetype/fcrm_settings/fcrm_settings.py:199 msgid "Setup the Exchange Rate Provider as 'Exchangerate Host' in settings, as default provider does not support currency conversion for {0} to {1}." msgstr "" @@ -5108,20 +5108,20 @@ msgstr "" msgid "Show preview" msgstr "" -#. Option for the 'Type' (Select) field in DocType 'CRM Fields Layout' -#: crm/fcrm/doctype/crm_fields_layout/crm_fields_layout.json +#. Option for the 'Type' (Select) field in PageType 'CRM Fields Layout' +#: crm/fcrm/pagetype/crm_fields_layout/crm_fields_layout.json msgid "Side Panel" msgstr "" -#. Option for the 'Type' (Select) field in DocType 'CRM Global Settings' -#: crm/fcrm/doctype/crm_global_settings/crm_global_settings.json +#. Option for the 'Type' (Select) field in PageType 'CRM Global Settings' +#: crm/fcrm/pagetype/crm_global_settings/crm_global_settings.json msgid "Sidebar Items" msgstr "" -#. Description of the 'Condition' (Code) field in DocType 'CRM Service Level +#. Description of the 'Condition' (Code) field in PageType 'CRM Service Level #. Agreement' -#: crm/fcrm/doctype/crm_service_level_agreement/crm_service_level_agreement.json -msgid "Simple Python Expression, Example: doc.status == 'Open' and doc.lead_source == 'Ads'" +#: crm/fcrm/pagetype/crm_service_level_agreement/crm_service_level_agreement.json +msgid "Simple Python Expression, Example: pg.status == 'Open' and pg.lead_source == 'Ads'" msgstr "" #: frontend/src/components/AssignTo.vue:83 @@ -5145,16 +5145,16 @@ msgstr "" msgid "Sort" msgstr "" -#. Label of the source (Link) field in DocType 'CRM Deal' -#. Label of the source (Link) field in DocType 'CRM Lead' -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_lead/crm_lead.json +#. Label of the source (Link) field in PageType 'CRM Deal' +#. Label of the source (Link) field in PageType 'CRM Lead' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_lead/crm_lead.json #: frontend/src/components/Modals/EditValueModal.vue:10 msgid "Source" msgstr "" -#. Label of the source_name (Data) field in DocType 'CRM Lead Source' -#: crm/fcrm/doctype/crm_lead_source/crm_lead_source.json +#. Label of the source_name (Data) field in PageType 'CRM Lead Source' +#: crm/fcrm/pagetype/crm_lead_source/crm_lead_source.json msgid "Source Name" msgstr "Forrá név" @@ -5167,12 +5167,12 @@ msgstr "" msgid "Stage" msgstr "" -#: crm/fcrm/doctype/crm_form_script/crm_form_script.js:15 +#: crm/fcrm/pagetype/crm_form_script/crm_form_script.js:15 msgid "Standard Form Scripts can not be modified, duplicate the Form Script instead." msgstr "" -#. Label of the standard_rate (Currency) field in DocType 'CRM Product' -#: crm/fcrm/doctype/crm_product/crm_product.json +#. Label of the standard_rate (Currency) field in PageType 'CRM Product' +#: crm/fcrm/pagetype/crm_product/crm_product.json msgid "Standard Selling Rate" msgstr "" @@ -5180,18 +5180,18 @@ msgstr "" msgid "Standard Views" msgstr "" -#. Label of the start_date (Date) field in DocType 'CRM Service Level +#. Label of the start_date (Date) field in PageType 'CRM Service Level #. Agreement' -#. Label of the start_date (Date) field in DocType 'CRM Task' -#: crm/fcrm/doctype/crm_service_level_agreement/crm_service_level_agreement.json -#: crm/fcrm/doctype/crm_task/crm_task.json +#. Label of the start_date (Date) field in PageType 'CRM Task' +#: crm/fcrm/pagetype/crm_service_level_agreement/crm_service_level_agreement.json +#: crm/fcrm/pagetype/crm_task/crm_task.json msgid "Start Date" msgstr "" -#. Label of the start_time (Datetime) field in DocType 'CRM Call Log' -#. Label of the start_time (Time) field in DocType 'CRM Service Day' -#: crm/fcrm/doctype/crm_call_log/crm_call_log.json -#: crm/fcrm/doctype/crm_service_day/crm_service_day.json +#. Label of the start_time (Datetime) field in PageType 'CRM Call Log' +#. Label of the start_time (Time) field in PageType 'CRM Service Day' +#: crm/fcrm/pagetype/crm_call_log/crm_call_log.json +#: crm/fcrm/pagetype/crm_service_day/crm_service_day.json #: frontend/src/components/Calendar/CalendarEventPanel.vue:234 #: frontend/src/components/Modals/EventModal.vue:103 msgid "Start Time" @@ -5205,32 +5205,32 @@ msgstr "" msgid "Start with sample 10 leads" msgstr "" -#. Label of the status (Select) field in DocType 'CRM Call Log' -#. Label of the status (Data) field in DocType 'CRM Communication Status' -#. Label of the status (Link) field in DocType 'CRM Deal' -#. Label of the deal_status (Data) field in DocType 'CRM Deal Status' -#. Label of the status (Select) field in DocType 'CRM Invitation' -#. Label of the status (Link) field in DocType 'CRM Lead' -#. Label of the lead_status (Data) field in DocType 'CRM Lead Status' -#. Label of the status (Select) field in DocType 'CRM Task' -#: crm/fcrm/doctype/crm_call_log/crm_call_log.json -#: crm/fcrm/doctype/crm_communication_status/crm_communication_status.json -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_deal_status/crm_deal_status.json -#: crm/fcrm/doctype/crm_invitation/crm_invitation.json -#: crm/fcrm/doctype/crm_lead/crm_lead.json -#: crm/fcrm/doctype/crm_lead_status/crm_lead_status.json -#: crm/fcrm/doctype/crm_task/crm_task.json frontend/src/pages/Contact.vue:505 +#. Label of the status (Select) field in PageType 'CRM Call Log' +#. Label of the status (Data) field in PageType 'CRM Communication Status' +#. Label of the status (Link) field in PageType 'CRM Deal' +#. Label of the deal_status (Data) field in PageType 'CRM Deal Status' +#. Label of the status (Select) field in PageType 'CRM Invitation' +#. Label of the status (Link) field in PageType 'CRM Lead' +#. Label of the lead_status (Data) field in PageType 'CRM Lead Status' +#. Label of the status (Select) field in PageType 'CRM Task' +#: crm/fcrm/pagetype/crm_call_log/crm_call_log.json +#: crm/fcrm/pagetype/crm_communication_status/crm_communication_status.json +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_deal_status/crm_deal_status.json +#: crm/fcrm/pagetype/crm_invitation/crm_invitation.json +#: crm/fcrm/pagetype/crm_lead/crm_lead.json +#: crm/fcrm/pagetype/crm_lead_status/crm_lead_status.json +#: crm/fcrm/pagetype/crm_task/crm_task.json frontend/src/pages/Contact.vue:505 #: frontend/src/pages/MobileContact.vue:513 #: frontend/src/pages/MobileOrganization.vue:457 #: frontend/src/pages/Organization.vue:478 msgid "Status" msgstr "" -#. Label of the status_change_log (Table) field in DocType 'CRM Deal' -#. Label of the status_change_log (Table) field in DocType 'CRM Lead' -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_lead/crm_lead.json +#. Label of the status_change_log (Table) field in PageType 'CRM Deal' +#. Label of the status_change_log (Table) field in PageType 'CRM Lead' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_lead/crm_lead.json msgid "Status Change Log" msgstr "" @@ -5239,8 +5239,8 @@ msgstr "" msgid "Status is required" msgstr "" -#. Label of the subdomain (Data) field in DocType 'CRM Exotel Settings' -#: crm/fcrm/doctype/crm_exotel_settings/crm_exotel_settings.json +#. Label of the subdomain (Data) field in PageType 'CRM Exotel Settings' +#: crm/fcrm/pagetype/crm_exotel_settings/crm_exotel_settings.json msgid "Subdomain" msgstr "" @@ -5258,10 +5258,10 @@ msgstr "" msgid "Subject: {0}" msgstr "" -#. Option for the 'Weekly Off' (Select) field in DocType 'CRM Holiday List' -#. Option for the 'Workday' (Select) field in DocType 'CRM Service Day' -#: crm/fcrm/doctype/crm_holiday_list/crm_holiday_list.json -#: crm/fcrm/doctype/crm_service_day/crm_service_day.json +#. Option for the 'Weekly Off' (Select) field in PageType 'CRM Holiday List' +#. Option for the 'Workday' (Select) field in PageType 'CRM Service Day' +#: crm/fcrm/pagetype/crm_holiday_list/crm_holiday_list.json +#: crm/fcrm/pagetype/crm_service_day/crm_service_day.json msgid "Sunday" msgstr "Vasárnap" @@ -5282,21 +5282,21 @@ msgid "System Configuration" msgstr "" #. Name of a role -#. Option for the 'Role' (Select) field in DocType 'CRM Invitation' -#: crm/fcrm/doctype/crm_dashboard/crm_dashboard.json -#: crm/fcrm/doctype/crm_exotel_settings/crm_exotel_settings.json -#: crm/fcrm/doctype/crm_fields_layout/crm_fields_layout.json -#: crm/fcrm/doctype/crm_global_settings/crm_global_settings.json -#: crm/fcrm/doctype/crm_invitation/crm_invitation.json -#: crm/fcrm/doctype/crm_lead_source/crm_lead_source.json -#: crm/fcrm/doctype/crm_lost_reason/crm_lost_reason.json -#: crm/fcrm/doctype/crm_notification/crm_notification.json -#: crm/fcrm/doctype/crm_product/crm_product.json -#: crm/fcrm/doctype/crm_telephony_agent/crm_telephony_agent.json -#: crm/fcrm/doctype/crm_twilio_settings/crm_twilio_settings.json -#: crm/fcrm/doctype/erpnext_crm_settings/erpnext_crm_settings.json -#: crm/fcrm/doctype/fcrm_settings/fcrm_settings.json -#: crm/fcrm/doctype/helpdesk_crm_settings/helpdesk_crm_settings.json +#. Option for the 'Role' (Select) field in PageType 'CRM Invitation' +#: crm/fcrm/pagetype/crm_dashboard/crm_dashboard.json +#: crm/fcrm/pagetype/crm_exotel_settings/crm_exotel_settings.json +#: crm/fcrm/pagetype/crm_fields_layout/crm_fields_layout.json +#: crm/fcrm/pagetype/crm_global_settings/crm_global_settings.json +#: crm/fcrm/pagetype/crm_invitation/crm_invitation.json +#: crm/fcrm/pagetype/crm_lead_source/crm_lead_source.json +#: crm/fcrm/pagetype/crm_lost_reason/crm_lost_reason.json +#: crm/fcrm/pagetype/crm_notification/crm_notification.json +#: crm/fcrm/pagetype/crm_product/crm_product.json +#: crm/fcrm/pagetype/crm_telephony_agent/crm_telephony_agent.json +#: crm/fcrm/pagetype/crm_twilio_settings/crm_twilio_settings.json +#: crm/fcrm/pagetype/erpnext_crm_settings/erpnext_crm_settings.json +#: crm/fcrm/pagetype/fcrm_settings/fcrm_settings.json +#: crm/fcrm/pagetype/helpdesk_crm_settings/helpdesk_crm_settings.json msgid "System Manager" msgstr "Rendszergazda" @@ -5308,8 +5308,8 @@ msgstr "" msgid "Take a note..." msgstr "" -#. Option for the 'Type' (Select) field in DocType 'CRM Notification' -#: crm/fcrm/doctype/crm_notification/crm_notification.json +#. Option for the 'Type' (Select) field in PageType 'CRM Notification' +#: crm/fcrm/pagetype/crm_notification/crm_notification.json #: frontend/src/components/Layouts/AppSidebar.vue:555 msgid "Task" msgstr "" @@ -5327,8 +5327,8 @@ msgstr "" msgid "Telephony" msgstr "" -#. Label of the telephony_medium (Select) field in DocType 'CRM Call Log' -#: crm/fcrm/doctype/crm_call_log/crm_call_log.json +#. Label of the telephony_medium (Select) field in PageType 'CRM Call Log' +#: crm/fcrm/pagetype/crm_call_log/crm_call_log.json msgid "Telephony Medium" msgstr "" @@ -5364,27 +5364,27 @@ msgstr "" msgid "Template updated successfully" msgstr "" -#. Label of a shortcut in the Frappe CRM Workspace -#: crm/fcrm/workspace/frappe_crm/frappe_crm.json +#. Label of a shortcut in the Jingrow CRM Workspace +#: crm/fcrm/workspace/jingrow_crm/jingrow_crm.json msgid "Territories" msgstr "" -#. Label of the territory (Link) field in DocType 'CRM Deal' -#. Label of the territory (Link) field in DocType 'CRM Lead' -#. Label of the territory (Link) field in DocType 'CRM Organization' -#: crm/api/dashboard.py:1022 crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_lead/crm_lead.json -#: crm/fcrm/doctype/crm_organization/crm_organization.json +#. Label of the territory (Link) field in PageType 'CRM Deal' +#. Label of the territory (Link) field in PageType 'CRM Lead' +#. Label of the territory (Link) field in PageType 'CRM Organization' +#: crm/api/dashboard.py:1022 crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_lead/crm_lead.json +#: crm/fcrm/pagetype/crm_organization/crm_organization.json msgid "Territory" msgstr "" -#. Label of the territory_manager (Link) field in DocType 'CRM Territory' -#: crm/fcrm/doctype/crm_territory/crm_territory.json +#. Label of the territory_manager (Link) field in PageType 'CRM Territory' +#: crm/fcrm/pagetype/crm_territory/crm_territory.json msgid "Territory Manager" msgstr "" -#. Label of the territory_name (Data) field in DocType 'CRM Territory' -#: crm/fcrm/doctype/crm_territory/crm_territory.json +#. Label of the territory_name (Data) field in PageType 'CRM Territory' +#: crm/fcrm/pagetype/crm_territory/crm_territory.json msgid "Territory Name" msgstr "" @@ -5392,22 +5392,22 @@ msgstr "" msgid "Thanks" msgstr "" -#: crm/fcrm/doctype/crm_service_level_agreement/crm_service_level_agreement.py:46 +#: crm/fcrm/pagetype/crm_service_level_agreement/crm_service_level_agreement.py:46 msgid "The Condition '{0}' is invalid: {1}" msgstr "" -#. Description of the 'Exchange Rate' (Float) field in DocType 'CRM Deal' -#: crm/fcrm/doctype/crm_deal/crm_deal.json +#. Description of the 'Exchange Rate' (Float) field in PageType 'CRM Deal' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json msgid "The rate used to convert the deal’s currency to your crm's base currency (set in CRM Settings). It is set once when the currency is first added and doesn't change automatically." msgstr "" -#. Description of the 'Exchange Rate' (Float) field in DocType 'CRM +#. Description of the 'Exchange Rate' (Float) field in PageType 'CRM #. Organization' -#: crm/fcrm/doctype/crm_organization/crm_organization.json +#: crm/fcrm/pagetype/crm_organization/crm_organization.json msgid "The rate used to convert the organization’s currency to your crm's base currency (set in CRM Settings). It is set once when the currency is first added and doesn't change automatically." msgstr "" -#: crm/fcrm/doctype/crm_service_level_agreement/crm_service_level_agreement.js:14 +#: crm/fcrm/pagetype/crm_service_level_agreement/crm_service_level_agreement.js:14 msgid "There can only be one default priority in Priorities table" msgstr "" @@ -5444,14 +5444,14 @@ msgstr "" msgid "This will delete selected items and unlink linked items to it, are you sure?" msgstr "" -#: crm/fcrm/doctype/fcrm_settings/fcrm_settings.js:9 +#: crm/fcrm/pagetype/fcrm_settings/fcrm_settings.js:9 msgid "This will restore (if not exist) all the default statuses, custom fields and layouts. Delete & Restore will delete default layouts and then restore them." msgstr "" -#. Option for the 'Weekly Off' (Select) field in DocType 'CRM Holiday List' -#. Option for the 'Workday' (Select) field in DocType 'CRM Service Day' -#: crm/fcrm/doctype/crm_holiday_list/crm_holiday_list.json -#: crm/fcrm/doctype/crm_service_day/crm_service_day.json +#. Option for the 'Weekly Off' (Select) field in PageType 'CRM Holiday List' +#. Option for the 'Workday' (Select) field in PageType 'CRM Service Day' +#: crm/fcrm/pagetype/crm_holiday_list/crm_holiday_list.json +#: crm/fcrm/pagetype/crm_service_day/crm_service_day.json msgid "Thursday" msgstr "Csütörtök" @@ -5463,18 +5463,18 @@ msgstr "Idő" msgid "Timespan" msgstr "Időtartam" -#. Label of the title (Data) field in DocType 'CRM Task' -#. Label of the title (Data) field in DocType 'FCRM Note' -#: crm/fcrm/doctype/crm_task/crm_task.json -#: crm/fcrm/doctype/fcrm_note/fcrm_note.json +#. Label of the title (Data) field in PageType 'CRM Task' +#. Label of the title (Data) field in PageType 'FCRM Note' +#: crm/fcrm/pagetype/crm_task/crm_task.json +#: crm/fcrm/pagetype/fcrm_note/fcrm_note.json #: frontend/src/components/Modals/EventModal.vue:43 #: frontend/src/components/Modals/NoteModal.vue:26 #: frontend/src/components/Modals/TaskModal.vue:25 msgid "Title" msgstr "" -#. Label of the title_field (Data) field in DocType 'CRM View Settings' -#: crm/fcrm/doctype/crm_view_settings/crm_view_settings.json +#. Label of the title_field (Data) field in PageType 'CRM View Settings' +#: crm/fcrm/pagetype/crm_view_settings/crm_view_settings.json #: frontend/src/components/Kanban/KanbanSettings.vue:29 msgid "Title Field" msgstr "" @@ -5484,28 +5484,28 @@ msgstr "" msgid "Title is required" msgstr "" -#. Label of the to (Data) field in DocType 'CRM Call Log' -#. Label of the to (Data) field in DocType 'CRM Status Change Log' -#: crm/fcrm/doctype/crm_call_log/crm_call_log.json -#: crm/fcrm/doctype/crm_status_change_log/crm_status_change_log.json +#. Label of the to (Data) field in PageType 'CRM Call Log' +#. Label of the to (Data) field in PageType 'CRM Status Change Log' +#: crm/fcrm/pagetype/crm_call_log/crm_call_log.json +#: crm/fcrm/pagetype/crm_status_change_log/crm_status_change_log.json #: frontend/src/components/Activities/EmailArea.vue:53 msgid "To" msgstr "" -#. Label of the to_date (Date) field in DocType 'CRM Holiday List' -#. Label of the to_date (Datetime) field in DocType 'CRM Status Change Log' -#: crm/fcrm/doctype/crm_holiday_list/crm_holiday_list.json -#: crm/fcrm/doctype/crm_status_change_log/crm_status_change_log.json +#. Label of the to_date (Date) field in PageType 'CRM Holiday List' +#. Label of the to_date (Datetime) field in PageType 'CRM Status Change Log' +#: crm/fcrm/pagetype/crm_holiday_list/crm_holiday_list.json +#: crm/fcrm/pagetype/crm_status_change_log/crm_status_change_log.json msgid "To Date" msgstr "" -#. Label of the to_type (Data) field in DocType 'CRM Status Change Log' -#: crm/fcrm/doctype/crm_status_change_log/crm_status_change_log.json +#. Label of the to_type (Data) field in PageType 'CRM Status Change Log' +#: crm/fcrm/pagetype/crm_status_change_log/crm_status_change_log.json msgid "To Type" msgstr "" -#. Label of the to_user (Link) field in DocType 'CRM Notification' -#: crm/fcrm/doctype/crm_notification/crm_notification.json +#. Label of the to_user (Link) field in PageType 'CRM Notification' +#: crm/fcrm/pagetype/crm_notification/crm_notification.json msgid "To User" msgstr "Felhasználónak" @@ -5517,8 +5517,8 @@ msgstr "" msgid "Today" msgstr "Ma" -#. Option for the 'Status' (Select) field in DocType 'CRM Task' -#: crm/fcrm/doctype/crm_task/crm_task.json +#. Option for the 'Status' (Select) field in PageType 'CRM Task' +#: crm/fcrm/pagetype/crm_task/crm_task.json msgid "Todo" msgstr "" @@ -5535,22 +5535,22 @@ msgstr "" msgid "Took a call with John Doe and discussed the new project." msgstr "" -#. Label of the total (Currency) field in DocType 'CRM Deal' -#. Label of the total (Currency) field in DocType 'CRM Lead' -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_lead/crm_lead.json +#. Label of the total (Currency) field in PageType 'CRM Deal' +#. Label of the total (Currency) field in PageType 'CRM Lead' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_lead/crm_lead.json msgid "Total" msgstr "" -#. Label of the total_holidays (Int) field in DocType 'CRM Holiday List' -#: crm/fcrm/doctype/crm_holiday_list/crm_holiday_list.json +#. Label of the total_holidays (Int) field in PageType 'CRM Holiday List' +#: crm/fcrm/pagetype/crm_holiday_list/crm_holiday_list.json msgid "Total Holidays" msgstr "Ünnepek összesen" -#. Description of the 'Net Total' (Currency) field in DocType 'CRM Deal' -#. Description of the 'Net Total' (Currency) field in DocType 'CRM Lead' -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_lead/crm_lead.json +#. Description of the 'Net Total' (Currency) field in PageType 'CRM Deal' +#. Description of the 'Net Total' (Currency) field in PageType 'CRM Lead' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_lead/crm_lead.json msgid "Total after discount" msgstr "" @@ -5571,10 +5571,10 @@ msgstr "" msgid "Total number of won deals based on its closure date" msgstr "" -#. Option for the 'Weekly Off' (Select) field in DocType 'CRM Holiday List' -#. Option for the 'Workday' (Select) field in DocType 'CRM Service Day' -#: crm/fcrm/doctype/crm_holiday_list/crm_holiday_list.json -#: crm/fcrm/doctype/crm_service_day/crm_service_day.json +#. Option for the 'Weekly Off' (Select) field in PageType 'CRM Holiday List' +#. Option for the 'Workday' (Select) field in PageType 'CRM Service Day' +#: crm/fcrm/pagetype/crm_holiday_list/crm_holiday_list.json +#: crm/fcrm/pagetype/crm_service_day/crm_service_day.json msgid "Tuesday" msgstr "Kedd" @@ -5582,30 +5582,30 @@ msgstr "Kedd" msgid "Turn into a group" msgstr "" -#. Label of the twiml_sid (Data) field in DocType 'CRM Twilio Settings' -#: crm/fcrm/doctype/crm_twilio_settings/crm_twilio_settings.json +#. Label of the twiml_sid (Data) field in PageType 'CRM Twilio Settings' +#: crm/fcrm/pagetype/crm_twilio_settings/crm_twilio_settings.json msgid "TwiML SID" msgstr "" -#. Option for the 'Telephony Medium' (Select) field in DocType 'CRM Call Log' -#. Label of the twilio (Check) field in DocType 'CRM Telephony Agent' -#. Option for the 'Default Medium' (Select) field in DocType 'CRM Telephony +#. Option for the 'Telephony Medium' (Select) field in PageType 'CRM Call Log' +#. Label of the twilio (Check) field in PageType 'CRM Telephony Agent' +#. Option for the 'Default Medium' (Select) field in PageType 'CRM Telephony #. Agent' -#: crm/fcrm/doctype/crm_call_log/crm_call_log.json -#: crm/fcrm/doctype/crm_telephony_agent/crm_telephony_agent.json +#: crm/fcrm/pagetype/crm_call_log/crm_call_log.json +#: crm/fcrm/pagetype/crm_telephony_agent/crm_telephony_agent.json #: frontend/src/components/Layouts/AppSidebar.vue:601 #: frontend/src/components/Settings/TelephonySettings.vue:40 #: frontend/src/components/Settings/TelephonySettings.vue:50 msgid "Twilio" msgstr "" -#: crm/fcrm/doctype/crm_twilio_settings/crm_twilio_settings.py:59 -#: crm/fcrm/doctype/crm_twilio_settings/crm_twilio_settings.py:60 +#: crm/fcrm/pagetype/crm_twilio_settings/crm_twilio_settings.py:59 +#: crm/fcrm/pagetype/crm_twilio_settings/crm_twilio_settings.py:60 msgid "Twilio API credential creation error." msgstr "" -#. Label of the twilio_number (Data) field in DocType 'CRM Telephony Agent' -#: crm/fcrm/doctype/crm_telephony_agent/crm_telephony_agent.json +#. Label of the twilio_number (Data) field in PageType 'CRM Telephony Agent' +#: crm/fcrm/pagetype/crm_telephony_agent/crm_telephony_agent.json msgid "Twilio Number" msgstr "" @@ -5617,20 +5617,20 @@ msgstr "" msgid "Twilio settings updated successfully" msgstr "" -#. Label of the type (Select) field in DocType 'CRM Call Log' -#. Label of the type (Select) field in DocType 'CRM Deal Status' -#. Label of the type (Select) field in DocType 'CRM Dropdown Item' -#. Label of the type (Select) field in DocType 'CRM Fields Layout' -#. Label of the type (Select) field in DocType 'CRM Global Settings' -#. Label of the type (Select) field in DocType 'CRM Notification' -#. Label of the type (Select) field in DocType 'CRM View Settings' -#: crm/fcrm/doctype/crm_call_log/crm_call_log.json -#: crm/fcrm/doctype/crm_deal_status/crm_deal_status.json -#: crm/fcrm/doctype/crm_dropdown_item/crm_dropdown_item.json -#: crm/fcrm/doctype/crm_fields_layout/crm_fields_layout.json -#: crm/fcrm/doctype/crm_global_settings/crm_global_settings.json -#: crm/fcrm/doctype/crm_notification/crm_notification.json -#: crm/fcrm/doctype/crm_view_settings/crm_view_settings.json +#. Label of the type (Select) field in PageType 'CRM Call Log' +#. Label of the type (Select) field in PageType 'CRM Deal Status' +#. Label of the type (Select) field in PageType 'CRM Dropdown Item' +#. Label of the type (Select) field in PageType 'CRM Fields Layout' +#. Label of the type (Select) field in PageType 'CRM Global Settings' +#. Label of the type (Select) field in PageType 'CRM Notification' +#. Label of the type (Select) field in PageType 'CRM View Settings' +#: crm/fcrm/pagetype/crm_call_log/crm_call_log.json +#: crm/fcrm/pagetype/crm_deal_status/crm_deal_status.json +#: crm/fcrm/pagetype/crm_dropdown_item/crm_dropdown_item.json +#: crm/fcrm/pagetype/crm_fields_layout/crm_fields_layout.json +#: crm/fcrm/pagetype/crm_global_settings/crm_global_settings.json +#: crm/fcrm/pagetype/crm_notification/crm_notification.json +#: crm/fcrm/pagetype/crm_view_settings/crm_view_settings.json msgid "Type" msgstr "" @@ -5772,12 +5772,12 @@ msgstr "" msgid "Uploading {0}%" msgstr "" -#. Label of the user (Link) field in DocType 'CRM Dashboard' -#. Label of the user (Link) field in DocType 'CRM Telephony Agent' -#. Label of the user (Link) field in DocType 'CRM View Settings' -#: crm/fcrm/doctype/crm_dashboard/crm_dashboard.json -#: crm/fcrm/doctype/crm_telephony_agent/crm_telephony_agent.json -#: crm/fcrm/doctype/crm_view_settings/crm_view_settings.json +#. Label of the user (Link) field in PageType 'CRM Dashboard' +#. Label of the user (Link) field in PageType 'CRM Telephony Agent' +#. Label of the user (Link) field in PageType 'CRM View Settings' +#: crm/fcrm/pagetype/crm_dashboard/crm_dashboard.json +#: crm/fcrm/pagetype/crm_telephony_agent/crm_telephony_agent.json +#: crm/fcrm/pagetype/crm_view_settings/crm_view_settings.json msgid "User" msgstr "" @@ -5785,8 +5785,8 @@ msgstr "" msgid "User Management" msgstr "" -#. Label of the user_name (Data) field in DocType 'CRM Telephony Agent' -#: crm/fcrm/doctype/crm_telephony_agent/crm_telephony_agent.json +#. Label of the user_name (Data) field in PageType 'CRM Telephony Agent' +#: crm/fcrm/pagetype/crm_telephony_agent/crm_telephony_agent.json msgid "User Name" msgstr "" @@ -5808,9 +5808,9 @@ msgstr "" msgid "Users are required" msgstr "" -#. Label of the section_break_nevd (Section Break) field in DocType 'CRM +#. Label of the section_break_nevd (Section Break) field in PageType 'CRM #. Service Level Agreement' -#: crm/fcrm/doctype/crm_service_level_agreement/crm_service_level_agreement.json +#: crm/fcrm/pagetype/crm_service_level_agreement/crm_service_level_agreement.json msgid "Validity" msgstr "" @@ -5834,33 +5834,33 @@ msgstr "" msgid "Web form" msgstr "" -#. Label of the webhook_verify_token (Data) field in DocType 'CRM Exotel +#. Label of the webhook_verify_token (Data) field in PageType 'CRM Exotel #. Settings' -#: crm/fcrm/doctype/crm_exotel_settings/crm_exotel_settings.json +#: crm/fcrm/pagetype/crm_exotel_settings/crm_exotel_settings.json msgid "Webhook Verify Token" msgstr "" -#. Label of the website (Data) field in DocType 'CRM Deal' -#. Label of the website (Data) field in DocType 'CRM Lead' -#. Label of the website (Data) field in DocType 'CRM Organization' -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_lead/crm_lead.json -#: crm/fcrm/doctype/crm_organization/crm_organization.json +#. Label of the website (Data) field in PageType 'CRM Deal' +#. Label of the website (Data) field in PageType 'CRM Lead' +#. Label of the website (Data) field in PageType 'CRM Organization' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_lead/crm_lead.json +#: crm/fcrm/pagetype/crm_organization/crm_organization.json #: frontend/src/components/Modals/AboutModal.vue:52 msgid "Website" msgstr "" -#. Option for the 'Weekly Off' (Select) field in DocType 'CRM Holiday List' -#. Option for the 'Workday' (Select) field in DocType 'CRM Service Day' -#: crm/fcrm/doctype/crm_holiday_list/crm_holiday_list.json -#: crm/fcrm/doctype/crm_service_day/crm_service_day.json +#. Option for the 'Weekly Off' (Select) field in PageType 'CRM Holiday List' +#. Option for the 'Workday' (Select) field in PageType 'CRM Service Day' +#: crm/fcrm/pagetype/crm_holiday_list/crm_holiday_list.json +#: crm/fcrm/pagetype/crm_service_day/crm_service_day.json msgid "Wednesday" msgstr "Szerda" -#. Label of the weekly_off (Check) field in DocType 'CRM Holiday' -#. Label of the weekly_off (Select) field in DocType 'CRM Holiday List' -#: crm/fcrm/doctype/crm_holiday/crm_holiday.json -#: crm/fcrm/doctype/crm_holiday_list/crm_holiday_list.json +#. Label of the weekly_off (Check) field in PageType 'CRM Holiday' +#. Label of the weekly_off (Select) field in PageType 'CRM Holiday List' +#: crm/fcrm/pagetype/crm_holiday/crm_holiday.json +#: crm/fcrm/pagetype/crm_holiday_list/crm_holiday_list.json msgid "Weekly Off" msgstr "" @@ -5868,7 +5868,7 @@ msgstr "" msgid "Welcome Message" msgstr "" -#: crm/fcrm/doctype/helpdesk_crm_settings/helpdesk_crm_settings.py:155 +#: crm/fcrm/pagetype/helpdesk_crm_settings/helpdesk_crm_settings.py:155 msgid "Welcome to Helpdesk" msgstr "" @@ -5876,8 +5876,8 @@ msgstr "" msgid "Welcome {0}, lets add your first lead" msgstr "" -#. Option for the 'Type' (Select) field in DocType 'CRM Notification' -#: crm/fcrm/doctype/crm_notification/crm_notification.json +#. Option for the 'Type' (Select) field in PageType 'CRM Notification' +#: crm/fcrm/pagetype/crm_notification/crm_notification.json #: frontend/src/components/Layouts/AppSidebar.vue:603 #: frontend/src/components/Settings/Settings.vue:190 #: frontend/src/pages/Deal.vue:572 frontend/src/pages/Lead.vue:429 @@ -5902,8 +5902,8 @@ msgstr "Szélesség" msgid "Width can be in number, pixel or rem (eg. 3, 30px, 10rem)" msgstr "" -#. Option for the 'Type' (Select) field in DocType 'CRM Deal Status' -#: crm/fcrm/doctype/crm_deal_status/crm_deal_status.json +#. Option for the 'Type' (Select) field in PageType 'CRM Deal Status' +#: crm/fcrm/pagetype/crm_deal_status/crm_deal_status.json msgid "Won" msgstr "" @@ -5912,16 +5912,16 @@ msgstr "" msgid "Won deals" msgstr "" -#. Label of the workday (Select) field in DocType 'CRM Service Day' -#: crm/fcrm/doctype/crm_service_day/crm_service_day.json +#. Label of the workday (Select) field in PageType 'CRM Service Day' +#: crm/fcrm/pagetype/crm_service_day/crm_service_day.json msgid "Workday" msgstr "" -#. Label of the section_break_rmgo (Section Break) field in DocType 'CRM +#. Label of the section_break_rmgo (Section Break) field in PageType 'CRM #. Service Level Agreement' -#. Label of the working_hours (Table) field in DocType 'CRM Service Level +#. Label of the working_hours (Table) field in PageType 'CRM Service Level #. Agreement' -#: crm/fcrm/doctype/crm_service_level_agreement/crm_service_level_agreement.json +#: crm/fcrm/pagetype/crm_service_level_agreement/crm_service_level_agreement.json msgid "Working Hours" msgstr "" @@ -5967,7 +5967,7 @@ msgstr "" msgid "You do not have permission to access this document" msgstr "" -#: crm/fcrm/doctype/crm_form_script/crm_form_script.py:24 +#: crm/fcrm/pagetype/crm_form_script/crm_form_script.py:24 msgid "You need to be in developer mode to edit a Standard Form Script" msgstr "" @@ -5995,10 +5995,10 @@ msgstr "" msgid "added a" msgstr "" -#. Option for the 'Color' (Select) field in DocType 'CRM Deal Status' -#. Option for the 'Color' (Select) field in DocType 'CRM Lead Status' -#: crm/fcrm/doctype/crm_deal_status/crm_deal_status.json -#: crm/fcrm/doctype/crm_lead_status/crm_lead_status.json +#. Option for the 'Color' (Select) field in PageType 'CRM Deal Status' +#. Option for the 'Color' (Select) field in PageType 'CRM Lead Status' +#: crm/fcrm/pagetype/crm_deal_status/crm_deal_status.json +#: crm/fcrm/pagetype/crm_lead_status/crm_lead_status.json msgid "amber" msgstr "" @@ -6010,17 +6010,17 @@ msgstr "" msgid "assigned a {0} {1} to you" msgstr "" -#. Option for the 'Color' (Select) field in DocType 'CRM Deal Status' -#. Option for the 'Color' (Select) field in DocType 'CRM Lead Status' -#: crm/fcrm/doctype/crm_deal_status/crm_deal_status.json -#: crm/fcrm/doctype/crm_lead_status/crm_lead_status.json +#. Option for the 'Color' (Select) field in PageType 'CRM Deal Status' +#. Option for the 'Color' (Select) field in PageType 'CRM Lead Status' +#: crm/fcrm/pagetype/crm_deal_status/crm_deal_status.json +#: crm/fcrm/pagetype/crm_lead_status/crm_lead_status.json msgid "black" msgstr "fekete" -#. Option for the 'Color' (Select) field in DocType 'CRM Deal Status' -#. Option for the 'Color' (Select) field in DocType 'CRM Lead Status' -#: crm/fcrm/doctype/crm_deal_status/crm_deal_status.json -#: crm/fcrm/doctype/crm_lead_status/crm_lead_status.json +#. Option for the 'Color' (Select) field in PageType 'CRM Deal Status' +#. Option for the 'Color' (Select) field in PageType 'CRM Lead Status' +#: crm/fcrm/pagetype/crm_deal_status/crm_deal_status.json +#: crm/fcrm/pagetype/crm_lead_status/crm_lead_status.json msgid "blue" msgstr "" @@ -6037,10 +6037,10 @@ msgstr "" msgid "condition" msgstr "feltétel" -#. Option for the 'Color' (Select) field in DocType 'CRM Deal Status' -#. Option for the 'Color' (Select) field in DocType 'CRM Lead Status' -#: crm/fcrm/doctype/crm_deal_status/crm_deal_status.json -#: crm/fcrm/doctype/crm_lead_status/crm_lead_status.json +#. Option for the 'Color' (Select) field in PageType 'CRM Deal Status' +#. Option for the 'Color' (Select) field in PageType 'CRM Lead Status' +#: crm/fcrm/pagetype/crm_deal_status/crm_deal_status.json +#: crm/fcrm/pagetype/crm_lead_status/crm_lead_status.json msgid "cyan" msgstr "cián" @@ -6059,33 +6059,33 @@ msgstr "" msgid "email already exists" msgstr "" -#. Option for the 'Service Provider' (Select) field in DocType 'FCRM Settings' -#: crm/fcrm/doctype/fcrm_settings/fcrm_settings.json +#. Option for the 'Service Provider' (Select) field in PageType 'FCRM Settings' +#: crm/fcrm/pagetype/fcrm_settings/fcrm_settings.json #: frontend/src/components/Settings/CurrencySettings.vue:106 msgid "exchangerate.host" msgstr "" -#. Option for the 'Service Provider' (Select) field in DocType 'FCRM Settings' -#: crm/fcrm/doctype/fcrm_settings/fcrm_settings.json +#. Option for the 'Service Provider' (Select) field in PageType 'FCRM Settings' +#: crm/fcrm/pagetype/fcrm_settings/fcrm_settings.json msgid "frankfurter.app" msgstr "" -#. Option for the 'Color' (Select) field in DocType 'CRM Deal Status' -#. Option for the 'Color' (Select) field in DocType 'CRM Lead Status' -#: crm/fcrm/doctype/crm_deal_status/crm_deal_status.json -#: crm/fcrm/doctype/crm_lead_status/crm_lead_status.json +#. Option for the 'Color' (Select) field in PageType 'CRM Deal Status' +#. Option for the 'Color' (Select) field in PageType 'CRM Lead Status' +#: crm/fcrm/pagetype/crm_deal_status/crm_deal_status.json +#: crm/fcrm/pagetype/crm_lead_status/crm_lead_status.json msgid "gray" msgstr "szürke" -#. Option for the 'Color' (Select) field in DocType 'CRM Deal Status' -#. Option for the 'Color' (Select) field in DocType 'CRM Lead Status' -#: crm/fcrm/doctype/crm_deal_status/crm_deal_status.json -#: crm/fcrm/doctype/crm_lead_status/crm_lead_status.json +#. Option for the 'Color' (Select) field in PageType 'CRM Deal Status' +#. Option for the 'Color' (Select) field in PageType 'CRM Lead Status' +#: crm/fcrm/pagetype/crm_deal_status/crm_deal_status.json +#: crm/fcrm/pagetype/crm_lead_status/crm_lead_status.json msgid "green" msgstr "" -#. Option for the 'Type' (Select) field in DocType 'CRM View Settings' -#: crm/fcrm/doctype/crm_view_settings/crm_view_settings.json +#. Option for the 'Type' (Select) field in PageType 'CRM View Settings' +#: crm/fcrm/pagetype/crm_view_settings/crm_view_settings.json msgid "group_by" msgstr "" @@ -6170,12 +6170,12 @@ msgstr "" msgid "just now" msgstr "pont most" -#. Option for the 'Type' (Select) field in DocType 'CRM View Settings' -#: crm/fcrm/doctype/crm_view_settings/crm_view_settings.json +#. Option for the 'Type' (Select) field in PageType 'CRM View Settings' +#: crm/fcrm/pagetype/crm_view_settings/crm_view_settings.json msgid "kanban" msgstr "" -#: crm/api/doc.py:40 crm/api/doc.py:158 crm/api/doc.py:503 +#: crm/api/pg.py:40 crm/api/pg.py:158 crm/api/pg.py:503 msgid "label" msgstr "felirat" @@ -6184,8 +6184,8 @@ msgstr "felirat" msgid "leads" msgstr "" -#. Option for the 'Type' (Select) field in DocType 'CRM View Settings' -#: crm/fcrm/doctype/crm_view_settings/crm_view_settings.json +#. Option for the 'Type' (Select) field in PageType 'CRM View Settings' +#: crm/fcrm/pagetype/crm_view_settings/crm_view_settings.json msgid "list" msgstr "" @@ -6206,17 +6206,17 @@ msgstr "Most" msgid "operator" msgstr "operátor" -#. Option for the 'Color' (Select) field in DocType 'CRM Deal Status' -#. Option for the 'Color' (Select) field in DocType 'CRM Lead Status' -#: crm/fcrm/doctype/crm_deal_status/crm_deal_status.json -#: crm/fcrm/doctype/crm_lead_status/crm_lead_status.json +#. Option for the 'Color' (Select) field in PageType 'CRM Deal Status' +#. Option for the 'Color' (Select) field in PageType 'CRM Lead Status' +#: crm/fcrm/pagetype/crm_deal_status/crm_deal_status.json +#: crm/fcrm/pagetype/crm_lead_status/crm_lead_status.json msgid "orange" msgstr "" -#. Option for the 'Color' (Select) field in DocType 'CRM Deal Status' -#. Option for the 'Color' (Select) field in DocType 'CRM Lead Status' -#: crm/fcrm/doctype/crm_deal_status/crm_deal_status.json -#: crm/fcrm/doctype/crm_lead_status/crm_lead_status.json +#. Option for the 'Color' (Select) field in PageType 'CRM Deal Status' +#. Option for the 'Color' (Select) field in PageType 'CRM Lead Status' +#: crm/fcrm/pagetype/crm_deal_status/crm_deal_status.json +#: crm/fcrm/pagetype/crm_lead_status/crm_lead_status.json msgid "pink" msgstr "rózsaszín" @@ -6232,10 +6232,10 @@ msgstr "magán" msgid "public" msgstr "nyilvános" -#. Option for the 'Color' (Select) field in DocType 'CRM Deal Status' -#. Option for the 'Color' (Select) field in DocType 'CRM Lead Status' -#: crm/fcrm/doctype/crm_deal_status/crm_deal_status.json -#: crm/fcrm/doctype/crm_lead_status/crm_lead_status.json +#. Option for the 'Color' (Select) field in PageType 'CRM Deal Status' +#. Option for the 'Color' (Select) field in PageType 'CRM Lead Status' +#: crm/fcrm/pagetype/crm_deal_status/crm_deal_status.json +#: crm/fcrm/pagetype/crm_lead_status/crm_lead_status.json msgid "purple" msgstr "" @@ -6243,17 +6243,17 @@ msgstr "" msgid "received a whatsapp message in {0}" msgstr "" -#. Option for the 'Color' (Select) field in DocType 'CRM Deal Status' -#. Option for the 'Color' (Select) field in DocType 'CRM Lead Status' -#: crm/fcrm/doctype/crm_deal_status/crm_deal_status.json -#: crm/fcrm/doctype/crm_lead_status/crm_lead_status.json +#. Option for the 'Color' (Select) field in PageType 'CRM Deal Status' +#. Option for the 'Color' (Select) field in PageType 'CRM Lead Status' +#: crm/fcrm/pagetype/crm_deal_status/crm_deal_status.json +#: crm/fcrm/pagetype/crm_lead_status/crm_lead_status.json msgid "red" msgstr "" -#. Option for the 'Color' (Select) field in DocType 'CRM Deal Status' -#. Option for the 'Color' (Select) field in DocType 'CRM Lead Status' -#: crm/fcrm/doctype/crm_deal_status/crm_deal_status.json -#: crm/fcrm/doctype/crm_lead_status/crm_lead_status.json +#. Option for the 'Color' (Select) field in PageType 'CRM Deal Status' +#. Option for the 'Color' (Select) field in PageType 'CRM Lead Status' +#: crm/fcrm/pagetype/crm_deal_status/crm_deal_status.json +#: crm/fcrm/pagetype/crm_lead_status/crm_lead_status.json msgid "teal" msgstr "" @@ -6266,10 +6266,10 @@ msgstr "" msgid "tomorrow" msgstr "" -#. Option for the 'Color' (Select) field in DocType 'CRM Deal Status' -#. Option for the 'Color' (Select) field in DocType 'CRM Lead Status' -#: crm/fcrm/doctype/crm_deal_status/crm_deal_status.json -#: crm/fcrm/doctype/crm_lead_status/crm_lead_status.json +#. Option for the 'Color' (Select) field in PageType 'CRM Deal Status' +#. Option for the 'Color' (Select) field in PageType 'CRM Lead Status' +#: crm/fcrm/pagetype/crm_deal_status/crm_deal_status.json +#: crm/fcrm/pagetype/crm_lead_status/crm_lead_status.json msgid "violet" msgstr "" @@ -6278,10 +6278,10 @@ msgstr "" msgid "which are not compatible with this UI, you will need to recreate the conditions here if you want to manage and add new conditions from this UI." msgstr "" -#. Option for the 'Color' (Select) field in DocType 'CRM Deal Status' -#. Option for the 'Color' (Select) field in DocType 'CRM Lead Status' -#: crm/fcrm/doctype/crm_deal_status/crm_deal_status.json -#: crm/fcrm/doctype/crm_lead_status/crm_lead_status.json +#. Option for the 'Color' (Select) field in PageType 'CRM Deal Status' +#. Option for the 'Color' (Select) field in PageType 'CRM Lead Status' +#: crm/fcrm/pagetype/crm_deal_status/crm_deal_status.json +#: crm/fcrm/pagetype/crm_lead_status/crm_lead_status.json msgid "yellow" msgstr "" @@ -6379,7 +6379,7 @@ msgid "⚠️ Method \"{0}\" not found in class." msgstr "" #: frontend/src/data/script.js:83 -msgid "⚠️ No class found for doctype: {0}, it is mandatory to have a class for the parent doctype. it can be empty, but it should be present." +msgid "⚠️ No class found for pagetype: {0}, it is mandatory to have a class for the parent pagetype. it can be empty, but it should be present." msgstr "" #: frontend/src/data/script.js:180 diff --git a/crm/locale/id.po b/crm/locale/id.po index dedb9e20..52658c5d 100644 --- a/crm/locale/id.po +++ b/crm/locale/id.po @@ -1,6 +1,6 @@ msgid "" msgstr "" -"Project-Id-Version: frappe\n" +"Project-Id-Version: jingrow\n" "Report-Msgid-Bugs-To: shariq@jingrow.com\n" "POT-Creation-Date: 2025-09-21 09:35+0000\n" "PO-Revision-Date: 2025-09-22 20:42\n" @@ -11,10 +11,10 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Generated-By: Babel 2.16.0\n" "Plural-Forms: nplurals=1; plural=0;\n" -"X-Crowdin-Project: frappe\n" +"X-Crowdin-Project: jingrow\n" "X-Crowdin-Project-ID: 639578\n" "X-Crowdin-Language: id\n" -"X-Crowdin-File: /[frappe.crm] develop/crm/locale/main.pot\n" +"X-Crowdin-File: /[jingrow.crm] develop/crm/locale/main.pot\n" "X-Crowdin-File-ID: 97\n" "Language: id_ID\n" @@ -55,73 +55,73 @@ msgstr "1 minggu yang lalu" msgid "1 year ago" msgstr "1 tahun yang lalu" -#. Option for the 'No. of Employees' (Select) field in DocType 'CRM Deal' -#. Option for the 'No. of Employees' (Select) field in DocType 'CRM Lead' -#. Option for the 'No. of Employees' (Select) field in DocType 'CRM +#. Option for the 'No. of Employees' (Select) field in PageType 'CRM Deal' +#. Option for the 'No. of Employees' (Select) field in PageType 'CRM Lead' +#. Option for the 'No. of Employees' (Select) field in PageType 'CRM #. Organization' -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_lead/crm_lead.json -#: crm/fcrm/doctype/crm_organization/crm_organization.json +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_lead/crm_lead.json +#: crm/fcrm/pagetype/crm_organization/crm_organization.json msgid "1-10" msgstr "1-10" -#. Option for the 'No. of Employees' (Select) field in DocType 'CRM Deal' -#. Option for the 'No. of Employees' (Select) field in DocType 'CRM Lead' -#. Option for the 'No. of Employees' (Select) field in DocType 'CRM +#. Option for the 'No. of Employees' (Select) field in PageType 'CRM Deal' +#. Option for the 'No. of Employees' (Select) field in PageType 'CRM Lead' +#. Option for the 'No. of Employees' (Select) field in PageType 'CRM #. Organization' -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_lead/crm_lead.json -#: crm/fcrm/doctype/crm_organization/crm_organization.json +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_lead/crm_lead.json +#: crm/fcrm/pagetype/crm_organization/crm_organization.json msgid "1000+" msgstr "1000+" -#. Option for the 'No. of Employees' (Select) field in DocType 'CRM Deal' -#. Option for the 'No. of Employees' (Select) field in DocType 'CRM Lead' -#. Option for the 'No. of Employees' (Select) field in DocType 'CRM +#. Option for the 'No. of Employees' (Select) field in PageType 'CRM Deal' +#. Option for the 'No. of Employees' (Select) field in PageType 'CRM Lead' +#. Option for the 'No. of Employees' (Select) field in PageType 'CRM #. Organization' -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_lead/crm_lead.json -#: crm/fcrm/doctype/crm_organization/crm_organization.json +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_lead/crm_lead.json +#: crm/fcrm/pagetype/crm_organization/crm_organization.json msgid "11-50" msgstr "11-50" -#. Option for the 'No. of Employees' (Select) field in DocType 'CRM Deal' -#. Option for the 'No. of Employees' (Select) field in DocType 'CRM Lead' -#. Option for the 'No. of Employees' (Select) field in DocType 'CRM +#. Option for the 'No. of Employees' (Select) field in PageType 'CRM Deal' +#. Option for the 'No. of Employees' (Select) field in PageType 'CRM Lead' +#. Option for the 'No. of Employees' (Select) field in PageType 'CRM #. Organization' -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_lead/crm_lead.json -#: crm/fcrm/doctype/crm_organization/crm_organization.json +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_lead/crm_lead.json +#: crm/fcrm/pagetype/crm_organization/crm_organization.json msgid "201-500" msgstr "201-500" -#. Option for the 'No. of Employees' (Select) field in DocType 'CRM Deal' -#. Option for the 'No. of Employees' (Select) field in DocType 'CRM Lead' -#. Option for the 'No. of Employees' (Select) field in DocType 'CRM +#. Option for the 'No. of Employees' (Select) field in PageType 'CRM Deal' +#. Option for the 'No. of Employees' (Select) field in PageType 'CRM Lead' +#. Option for the 'No. of Employees' (Select) field in PageType 'CRM #. Organization' -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_lead/crm_lead.json -#: crm/fcrm/doctype/crm_organization/crm_organization.json +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_lead/crm_lead.json +#: crm/fcrm/pagetype/crm_organization/crm_organization.json msgid "501-1000" msgstr "501-1000" -#. Option for the 'No. of Employees' (Select) field in DocType 'CRM Deal' -#. Option for the 'No. of Employees' (Select) field in DocType 'CRM Lead' -#. Option for the 'No. of Employees' (Select) field in DocType 'CRM +#. Option for the 'No. of Employees' (Select) field in PageType 'CRM Deal' +#. Option for the 'No. of Employees' (Select) field in PageType 'CRM Lead' +#. Option for the 'No. of Employees' (Select) field in PageType 'CRM #. Organization' -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_lead/crm_lead.json -#: crm/fcrm/doctype/crm_organization/crm_organization.json +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_lead/crm_lead.json +#: crm/fcrm/pagetype/crm_organization/crm_organization.json msgid "51-200" msgstr "51-200" -#. Paragraph text in the Frappe CRM Workspace -#: crm/fcrm/workspace/frappe_crm/frappe_crm.json +#. Paragraph text in the Jingrow CRM Workspace +#: crm/fcrm/workspace/jingrow_crm/jingrow_crm.json msgid "META" msgstr "META" -#. Paragraph text in the Frappe CRM Workspace -#: crm/fcrm/workspace/frappe_crm/frappe_crm.json +#. Paragraph text in the Jingrow CRM Workspace +#: crm/fcrm/workspace/jingrow_crm/jingrow_crm.json msgid "SHORTCUTS" msgstr "PINTASAN" @@ -130,8 +130,8 @@ msgstr "PINTASAN" msgid "

Dear {{ lead_name }},

\\n\\n

This is a reminder for the payment of {{ grand_total }}.

\\n\\n

Thanks,

\\n

Frappé

" msgstr "

Yang Terhormat {{ lead_name }},

\\n\\n

Dengan ini, kami ingin mengingatkan mengenai pembayaran sebesar {{ grand_total }}.

\\n\\n

Hormat kami,

\\n

Frappé

" -#. Header text in the Frappe CRM Workspace -#: crm/fcrm/workspace/frappe_crm/frappe_crm.json +#. Header text in the Jingrow CRM Workspace +#: crm/fcrm/workspace/jingrow_crm/jingrow_crm.json msgid "PORTAL" msgstr "PORTAL" @@ -139,7 +139,7 @@ msgstr "PORTAL" msgid "@John, can you please check this?" msgstr "@John, tolong periksa ini, ya?" -#: crm/fcrm/doctype/crm_lead/crm_lead.py:56 +#: crm/fcrm/pagetype/crm_lead/crm_lead.py:56 msgid "A Lead requires either a person's name or an organization's name" msgstr "Sebuah Prospek harus memiliki nama orang atau nama organisasi" @@ -147,14 +147,14 @@ msgstr "Sebuah Prospek harus memiliki nama orang atau nama organisasi" msgid "A new account has been created for you at {0}" msgstr "Sebuah akun baru telah dibuat untuk Anda di {0}" -#. Label of the api_key (Data) field in DocType 'CRM Exotel Settings' -#. Label of the api_key (Data) field in DocType 'CRM Twilio Settings' -#. Label of the api_key (Data) field in DocType 'ERPNext CRM Settings' -#. Label of the api_key (Data) field in DocType 'Helpdesk CRM Settings' -#: crm/fcrm/doctype/crm_exotel_settings/crm_exotel_settings.json -#: crm/fcrm/doctype/crm_twilio_settings/crm_twilio_settings.json -#: crm/fcrm/doctype/erpnext_crm_settings/erpnext_crm_settings.json -#: crm/fcrm/doctype/helpdesk_crm_settings/helpdesk_crm_settings.json +#. Label of the api_key (Data) field in PageType 'CRM Exotel Settings' +#. Label of the api_key (Data) field in PageType 'CRM Twilio Settings' +#. Label of the api_key (Data) field in PageType 'ERPNext CRM Settings' +#. Label of the api_key (Data) field in PageType 'Helpdesk CRM Settings' +#: crm/fcrm/pagetype/crm_exotel_settings/crm_exotel_settings.json +#: crm/fcrm/pagetype/crm_twilio_settings/crm_twilio_settings.json +#: crm/fcrm/pagetype/erpnext_crm_settings/erpnext_crm_settings.json +#: crm/fcrm/pagetype/helpdesk_crm_settings/helpdesk_crm_settings.json msgid "API Key" msgstr "API Key" @@ -162,17 +162,17 @@ msgstr "API Key" msgid "API Key is required" msgstr "API Key diperlukan" -#. Label of the api_secret (Password) field in DocType 'CRM Twilio Settings' -#. Label of the api_secret (Password) field in DocType 'ERPNext CRM Settings' -#. Label of the api_secret (Password) field in DocType 'Helpdesk CRM Settings' -#: crm/fcrm/doctype/crm_twilio_settings/crm_twilio_settings.json -#: crm/fcrm/doctype/erpnext_crm_settings/erpnext_crm_settings.json -#: crm/fcrm/doctype/helpdesk_crm_settings/helpdesk_crm_settings.json +#. Label of the api_secret (Password) field in PageType 'CRM Twilio Settings' +#. Label of the api_secret (Password) field in PageType 'ERPNext CRM Settings' +#. Label of the api_secret (Password) field in PageType 'Helpdesk CRM Settings' +#: crm/fcrm/pagetype/crm_twilio_settings/crm_twilio_settings.json +#: crm/fcrm/pagetype/erpnext_crm_settings/erpnext_crm_settings.json +#: crm/fcrm/pagetype/helpdesk_crm_settings/helpdesk_crm_settings.json msgid "API Secret" msgstr "API Secret" -#. Label of the api_token (Password) field in DocType 'CRM Exotel Settings' -#: crm/fcrm/doctype/crm_exotel_settings/crm_exotel_settings.json +#. Label of the api_token (Password) field in PageType 'CRM Exotel Settings' +#: crm/fcrm/pagetype/crm_exotel_settings/crm_exotel_settings.json msgid "API Token" msgstr "API Token" @@ -180,7 +180,7 @@ msgstr "API Token" msgid "Accept" msgstr "Terima" -#: crm/fcrm/doctype/crm_invitation/crm_invitation.js:7 +#: crm/fcrm/pagetype/crm_invitation/crm_invitation.js:7 msgid "Accept Invitation" msgstr "Terima Undangan" @@ -188,22 +188,22 @@ msgstr "Terima Undangan" msgid "Accept call" msgstr "" -#. Option for the 'Status' (Select) field in DocType 'CRM Invitation' -#: crm/fcrm/doctype/crm_invitation/crm_invitation.json +#. Option for the 'Status' (Select) field in PageType 'CRM Invitation' +#: crm/fcrm/pagetype/crm_invitation/crm_invitation.json msgid "Accepted" msgstr "Diterima" -#. Label of the accepted_at (Datetime) field in DocType 'CRM Invitation' -#: crm/fcrm/doctype/crm_invitation/crm_invitation.json +#. Label of the accepted_at (Datetime) field in PageType 'CRM Invitation' +#: crm/fcrm/pagetype/crm_invitation/crm_invitation.json msgid "Accepted At" msgstr "Diterima pada" -#. Label of the access_key (Data) field in DocType 'FCRM Settings' -#: crm/fcrm/doctype/fcrm_settings/fcrm_settings.json +#. Label of the access_key (Data) field in PageType 'FCRM Settings' +#: crm/fcrm/pagetype/fcrm_settings/fcrm_settings.json msgid "Access Key" msgstr "Kunci Akses" -#: crm/fcrm/doctype/fcrm_settings/fcrm_settings.py:156 +#: crm/fcrm/pagetype/fcrm_settings/fcrm_settings.py:156 msgid "Access Key is required for Service Provider: {0}" msgstr "Kunci Akses diperlukan untuk Penyedia Layanan: {0}" @@ -219,10 +219,10 @@ msgstr "Kunci akses untuk Exchangerate Host. Diperlukan untuk mengambil nilai tu msgid "Account Name" msgstr "Nama Akun" -#. Label of the account_sid (Data) field in DocType 'CRM Exotel Settings' -#. Label of the account_sid (Data) field in DocType 'CRM Twilio Settings' -#: crm/fcrm/doctype/crm_exotel_settings/crm_exotel_settings.json -#: crm/fcrm/doctype/crm_twilio_settings/crm_twilio_settings.json +#. Label of the account_sid (Data) field in PageType 'CRM Exotel Settings' +#. Label of the account_sid (Data) field in PageType 'CRM Twilio Settings' +#: crm/fcrm/pagetype/crm_exotel_settings/crm_exotel_settings.json +#: crm/fcrm/pagetype/crm_twilio_settings/crm_twilio_settings.json msgid "Account SID" msgstr "SID Akun" @@ -296,9 +296,9 @@ msgstr "Tambah Urutan" msgid "Add Tab" msgstr "Tambah Tab" -#. Label of the add_weekly_holidays_section (Section Break) field in DocType +#. Label of the add_weekly_holidays_section (Section Break) field in PageType #. 'CRM Holiday List' -#: crm/fcrm/doctype/crm_holiday_list/crm_holiday_list.json +#: crm/fcrm/pagetype/crm_holiday_list/crm_holiday_list.json msgid "Add Weekly Holidays" msgstr "Tambah Hari Libur Mingguan" @@ -363,8 +363,8 @@ msgstr "Tambah catatan" msgid "Add sample data" msgstr "Tambah data sampel" -#. Description of the 'Icon' (Code) field in DocType 'CRM Dropdown Item' -#: crm/fcrm/doctype/crm_dropdown_item/crm_dropdown_item.json +#. Description of the 'Icon' (Code) field in PageType 'CRM Dropdown Item' +#: crm/fcrm/pagetype/crm_dropdown_item/crm_dropdown_item.json msgid "Add svg code or use feather icons e.g 'settings'" msgstr "Tambahkan kode svg atau gunakan ikon feather, misalnya 'settings'" @@ -372,8 +372,8 @@ msgstr "Tambahkan kode svg atau gunakan ikon feather, misalnya 'settings'" msgid "Add task" msgstr "Tambah tugas" -#. Label of the add_to_holidays (Button) field in DocType 'CRM Holiday List' -#: crm/fcrm/doctype/crm_holiday_list/crm_holiday_list.json +#. Label of the add_to_holidays (Button) field in PageType 'CRM Holiday List' +#: crm/fcrm/pagetype/crm_holiday_list/crm_holiday_list.json msgid "Add to Holidays" msgstr "Tambahkan ke Hari Libur" @@ -385,8 +385,8 @@ msgstr "Tambahkan komentar pertama Anda" msgid "Add, edit, and manage email templates for various CRM communications" msgstr "Tambah, edit, dan kelola templat email untuk berbagai komunikasi CRM" -#. Label of the address (Link) field in DocType 'CRM Organization' -#: crm/fcrm/doctype/crm_organization/crm_organization.json +#. Label of the address (Link) field in PageType 'CRM Organization' +#: crm/fcrm/pagetype/crm_organization/crm_organization.json msgid "Address" msgstr "Alamat" @@ -406,14 +406,14 @@ msgid "Agent is unavailable to take the call, please call after some time." msgstr "Agen saat ini tidak dapat menerima panggilan, silakan hubungi kembali beberapa saat lagi." #. Name of a role -#: crm/fcrm/doctype/crm_exotel_settings/crm_exotel_settings.json -#: crm/fcrm/doctype/crm_fields_layout/crm_fields_layout.json -#: crm/fcrm/doctype/crm_form_script/crm_form_script.json -#: crm/fcrm/doctype/crm_industry/crm_industry.json -#: crm/fcrm/doctype/crm_lead/crm_lead.json -#: crm/fcrm/doctype/crm_lead_source/crm_lead_source.json -#: crm/fcrm/doctype/crm_lead_status/crm_lead_status.json -#: crm/fcrm/doctype/fcrm_settings/fcrm_settings.json +#: crm/fcrm/pagetype/crm_exotel_settings/crm_exotel_settings.json +#: crm/fcrm/pagetype/crm_fields_layout/crm_fields_layout.json +#: crm/fcrm/pagetype/crm_form_script/crm_form_script.json +#: crm/fcrm/pagetype/crm_industry/crm_industry.json +#: crm/fcrm/pagetype/crm_lead/crm_lead.json +#: crm/fcrm/pagetype/crm_lead_source/crm_lead_source.json +#: crm/fcrm/pagetype/crm_lead_status/crm_lead_status.json +#: crm/fcrm/pagetype/fcrm_settings/fcrm_settings.json #: frontend/src/components/Settings/EmailTemplate/EmailTemplates.vue:76 #: frontend/src/components/Settings/Users.vue:85 msgid "All" @@ -426,16 +426,16 @@ msgstr "Semua" msgid "All day" msgstr "" -#. Label of the amount (Currency) field in DocType 'CRM Products' -#: crm/fcrm/doctype/crm_products/crm_products.json +#. Label of the amount (Currency) field in PageType 'CRM Products' +#: crm/fcrm/pagetype/crm_products/crm_products.json #: frontend/src/pages/Contact.vue:499 frontend/src/pages/MobileContact.vue:507 #: frontend/src/pages/MobileOrganization.vue:451 #: frontend/src/pages/Organization.vue:472 msgid "Amount" msgstr "Jumlah" -#. Description of the 'Net Amount' (Currency) field in DocType 'CRM Products' -#: crm/fcrm/doctype/crm_products/crm_products.json +#. Description of the 'Net Amount' (Currency) field in PageType 'CRM Products' +#: crm/fcrm/pagetype/crm_products/crm_products.json msgid "Amount after discount" msgstr "Jumlah setelah diskon" @@ -447,13 +447,13 @@ msgstr "Terjadi kesalahan" msgid "An error occurred while updating the document" msgstr "Terjadi kesalahan saat memperbarui dokumen" -#. Description of the 'Favicon' (Attach) field in DocType 'FCRM Settings' -#: crm/fcrm/doctype/fcrm_settings/fcrm_settings.json +#. Description of the 'Favicon' (Attach) field in PageType 'FCRM Settings' +#: crm/fcrm/pagetype/fcrm_settings/fcrm_settings.json msgid "An icon file with .ico extension. Should be 16 x 16 px. Generated using a favicon generator. [favicon-generator.org]" msgstr "File ikon dengan ekstensi .ico. Harus berukuran 16 x 16 piksel. Dibuat menggunakan generator favicon. [favicon-generator.org]" -#. Description of the 'Logo' (Attach) field in DocType 'FCRM Settings' -#: crm/fcrm/doctype/fcrm_settings/fcrm_settings.json +#. Description of the 'Logo' (Attach) field in PageType 'FCRM Settings' +#: crm/fcrm/pagetype/fcrm_settings/fcrm_settings.json msgid "An image with 1:1 & 2:1 ratio is preferred" msgstr "Gambar dengan rasio 1:1 & 2:1 lebih diutamakan" @@ -461,12 +461,12 @@ msgstr "Gambar dengan rasio 1:1 & 2:1 lebih diutamakan" msgid "And" msgstr "Dan" -#. Label of the annual_revenue (Currency) field in DocType 'CRM Deal' -#. Label of the annual_revenue (Currency) field in DocType 'CRM Lead' -#. Label of the annual_revenue (Currency) field in DocType 'CRM Organization' -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_lead/crm_lead.json -#: crm/fcrm/doctype/crm_organization/crm_organization.json +#. Label of the annual_revenue (Currency) field in PageType 'CRM Deal' +#. Label of the annual_revenue (Currency) field in PageType 'CRM Lead' +#. Label of the annual_revenue (Currency) field in PageType 'CRM Organization' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_lead/crm_lead.json +#: crm/fcrm/pagetype/crm_organization/crm_organization.json msgid "Annual Revenue" msgstr "Pendapatan Tahunan" @@ -488,13 +488,13 @@ msgstr "Tampil di sebelah judul pada tab browser Anda. Ukuran yang disarankan 32 msgid "Apply" msgstr "Terapkan" -#. Label of the apply_on (Link) field in DocType 'CRM Service Level Agreement' -#: crm/fcrm/doctype/crm_service_level_agreement/crm_service_level_agreement.json +#. Label of the apply_on (Link) field in PageType 'CRM Service Level Agreement' +#: crm/fcrm/pagetype/crm_service_level_agreement/crm_service_level_agreement.json msgid "Apply On" msgstr "Terapkan Pada" -#. Label of the view (Select) field in DocType 'CRM Form Script' -#: crm/fcrm/doctype/crm_form_script/crm_form_script.json +#. Label of the view (Select) field in PageType 'CRM Form Script' +#: crm/fcrm/pagetype/crm_form_script/crm_form_script.json msgid "Apply To" msgstr "Terapkan Ke" @@ -540,10 +540,10 @@ msgid "Are you sure you want to go back? Unsaved changes will be lost." msgstr "" #: frontend/src/composables/frappecloud.js:24 -msgid "Are you sure you want to login to your Frappe Cloud dashboard?" -msgstr "Apakah Anda yakin ingin masuk ke dasbor Frappe Cloud Anda?" +msgid "Are you sure you want to login to your Jingrow Cloud dashboard?" +msgstr "Apakah Anda yakin ingin masuk ke dasbor Jingrow Cloud Anda?" -#: crm/fcrm/doctype/erpnext_crm_settings/erpnext_crm_settings.js:9 +#: crm/fcrm/pagetype/erpnext_crm_settings/erpnext_crm_settings.js:9 msgid "Are you sure you want to reset 'Create Quotation from CRM Deal' Form Script?" msgstr "Apakah Anda yakin ingin mereset Skrip Formulir 'Create Quotation from CRM Deal'?" @@ -555,7 +555,7 @@ msgstr "Apakah Anda yakin ingin mengatur mata uang sebagai {0}? Pengaturan Ini t msgid "Are you sure you want to unlink {0} linked item(s)?" msgstr "Apakah Anda yakin ingin melepas tautan {0} item tertaut?" -#: crm/fcrm/doctype/fcrm_settings/fcrm_settings.py:193 +#: crm/fcrm/pagetype/fcrm_settings/fcrm_settings.py:193 msgid "Ask your manager to set up the Exchange Rate Provider, as default provider does not support currency conversion for {0} to {1}." msgstr "Minta manajer Anda untuk mengatur Penyedia Nilai Tukar, karena penyedia default tidak mendukung konversi mata uang untuk {0} ke {1}." @@ -581,8 +581,8 @@ msgstr "Tugaskan ke" msgid "Assign to me" msgstr "Tetapkan ke saya" -#. Label of the assigned_to (Link) field in DocType 'CRM Task' -#: crm/fcrm/doctype/crm_task/crm_task.json +#. Label of the assigned_to (Link) field in PageType 'CRM Task' +#: crm/fcrm/pagetype/crm_task/crm_task.json msgid "Assigned To" msgstr "Ditugaskan Kepada" @@ -594,13 +594,13 @@ msgstr "" msgid "Assignees" msgstr "" -#. Option for the 'Type' (Select) field in DocType 'CRM Notification' -#: crm/fcrm/doctype/crm_notification/crm_notification.json +#. Option for the 'Type' (Select) field in PageType 'CRM Notification' +#: crm/fcrm/pagetype/crm_notification/crm_notification.json msgid "Assignment" msgstr "Penugasan" -#. Label of a shortcut in the Frappe CRM Workspace -#: crm/fcrm/workspace/frappe_crm/frappe_crm.json +#. Label of a shortcut in the Jingrow CRM Workspace +#: crm/fcrm/workspace/jingrow_crm/jingrow_crm.json msgid "Assignment Rule" msgstr "Aturan Penugasan" @@ -678,14 +678,14 @@ msgstr "Lampiran" msgid "Attendees" msgstr "" -#. Label of the auth_token (Password) field in DocType 'CRM Twilio Settings' -#: crm/fcrm/doctype/crm_twilio_settings/crm_twilio_settings.json +#. Label of the auth_token (Password) field in PageType 'CRM Twilio Settings' +#: crm/fcrm/pagetype/crm_twilio_settings/crm_twilio_settings.json msgid "Auth Token" msgstr "Auth Token" -#. Label of the auto_update_expected_deal_value (Check) field in DocType 'FCRM +#. Label of the auto_update_expected_deal_value (Check) field in PageType 'FCRM #. Settings' -#: crm/fcrm/doctype/fcrm_settings/fcrm_settings.json +#: crm/fcrm/pagetype/fcrm_settings/fcrm_settings.json msgid "Auto Update Expected Deal Value" msgstr "" @@ -702,8 +702,8 @@ msgid "Auto update of expected deal value enabled" msgstr "" #. Description of the 'Auto Update Expected Deal Value' (Check) field in -#. DocType 'FCRM Settings' -#: crm/fcrm/doctype/fcrm_settings/fcrm_settings.json +#. PageType 'FCRM Settings' +#: crm/fcrm/pagetype/fcrm_settings/fcrm_settings.json #: frontend/src/components/Settings/ForecastingSettings.vue:46 msgid "Automatically update \"Expected Deal Value\" based on the total value of associated products in a deal" msgstr "" @@ -793,8 +793,8 @@ msgstr "Kembali" msgid "Back to file upload" msgstr "Kembali ke unggahan file" -#. Option for the 'Status' (Select) field in DocType 'CRM Task' -#: crm/fcrm/doctype/crm_task/crm_task.json +#. Option for the 'Status' (Select) field in PageType 'CRM Task' +#: crm/fcrm/pagetype/crm_task/crm_task.json msgid "Backlog" msgstr "Backlog" @@ -818,8 +818,8 @@ msgstr "Nama brand" msgid "Brand settings" msgstr "Pengaturan brand" -#. Label of the branding_tab (Tab Break) field in DocType 'FCRM Settings' -#: crm/fcrm/doctype/fcrm_settings/fcrm_settings.json +#. Label of the branding_tab (Tab Break) field in PageType 'FCRM Settings' +#: crm/fcrm/pagetype/fcrm_settings/fcrm_settings.json msgid "Branding" msgstr "Branding" @@ -827,8 +827,8 @@ msgstr "Branding" msgid "Bulk Edit" msgstr "Edit Massal" -#. Option for the 'Status' (Select) field in DocType 'CRM Call Log' -#: crm/fcrm/doctype/crm_call_log/crm_call_log.json +#. Option for the 'Status' (Select) field in PageType 'CRM Call Log' +#: crm/fcrm/pagetype/crm_call_log/crm_call_log.json msgid "Busy" msgstr "Sibuk" @@ -838,174 +838,174 @@ msgstr "Sibuk" msgid "CC" msgstr "CC" -#. Name of a DocType -#: crm/fcrm/doctype/crm_call_log/crm_call_log.json +#. Name of a PageType +#: crm/fcrm/pagetype/crm_call_log/crm_call_log.json msgid "CRM Call Log" msgstr "CRM Log Panggilan" -#. Name of a DocType -#: crm/fcrm/doctype/crm_communication_status/crm_communication_status.json +#. Name of a PageType +#: crm/fcrm/pagetype/crm_communication_status/crm_communication_status.json msgid "CRM Communication Status" msgstr "CRM Status Komunikasi" -#. Name of a DocType -#: crm/fcrm/doctype/crm_contacts/crm_contacts.json +#. Name of a PageType +#: crm/fcrm/pagetype/crm_contacts/crm_contacts.json msgid "CRM Contacts" msgstr "CRM Kontak" -#. Name of a DocType -#: crm/fcrm/doctype/crm_dashboard/crm_dashboard.json +#. Name of a PageType +#: crm/fcrm/pagetype/crm_dashboard/crm_dashboard.json #: frontend/src/pages/Dashboard.vue:304 msgid "CRM Dashboard" msgstr "CRM Dasbor" -#. Name of a DocType -#: crm/fcrm/doctype/crm_deal/crm_deal.json +#. Name of a PageType +#: crm/fcrm/pagetype/crm_deal/crm_deal.json msgid "CRM Deal" msgstr "CRM Kesepakatan" -#. Name of a DocType -#: crm/fcrm/doctype/crm_deal_status/crm_deal_status.json +#. Name of a PageType +#: crm/fcrm/pagetype/crm_deal_status/crm_deal_status.json msgid "CRM Deal Status" msgstr "CRM Status Kesepakatan" -#. Name of a DocType -#: crm/fcrm/doctype/crm_dropdown_item/crm_dropdown_item.json +#. Name of a PageType +#: crm/fcrm/pagetype/crm_dropdown_item/crm_dropdown_item.json msgid "CRM Dropdown Item" msgstr "CRM Item Dropdown" -#. Name of a DocType -#: crm/fcrm/doctype/crm_exotel_settings/crm_exotel_settings.json +#. Name of a PageType +#: crm/fcrm/pagetype/crm_exotel_settings/crm_exotel_settings.json msgid "CRM Exotel Settings" msgstr "CRM Pengaturan Exotel" -#. Name of a DocType -#: crm/fcrm/doctype/crm_fields_layout/crm_fields_layout.json +#. Name of a PageType +#: crm/fcrm/pagetype/crm_fields_layout/crm_fields_layout.json msgid "CRM Fields Layout" msgstr "CRM Layout Bidang" -#. Name of a DocType -#: crm/fcrm/doctype/crm_form_script/crm_form_script.json +#. Name of a PageType +#: crm/fcrm/pagetype/crm_form_script/crm_form_script.json msgid "CRM Form Script" msgstr "CRM Skrip Formulir" -#. Name of a DocType -#: crm/fcrm/doctype/crm_global_settings/crm_global_settings.json +#. Name of a PageType +#: crm/fcrm/pagetype/crm_global_settings/crm_global_settings.json msgid "CRM Global Settings" msgstr "CRM Pengaturan Global" -#. Name of a DocType -#: crm/fcrm/doctype/crm_holiday/crm_holiday.json +#. Name of a PageType +#: crm/fcrm/pagetype/crm_holiday/crm_holiday.json msgid "CRM Holiday" msgstr "CRM Hari Libur" -#. Name of a DocType -#: crm/fcrm/doctype/crm_holiday_list/crm_holiday_list.json +#. Name of a PageType +#: crm/fcrm/pagetype/crm_holiday_list/crm_holiday_list.json msgid "CRM Holiday List" msgstr "CRM Daftar Hari Libur" -#. Name of a DocType -#: crm/fcrm/doctype/crm_industry/crm_industry.json +#. Name of a PageType +#: crm/fcrm/pagetype/crm_industry/crm_industry.json msgid "CRM Industry" msgstr "CRM Industri" -#. Name of a DocType -#: crm/fcrm/doctype/crm_invitation/crm_invitation.json +#. Name of a PageType +#: crm/fcrm/pagetype/crm_invitation/crm_invitation.json msgid "CRM Invitation" msgstr "CRM Undangan" -#. Name of a DocType -#: crm/fcrm/doctype/crm_lead/crm_lead.json +#. Name of a PageType +#: crm/fcrm/pagetype/crm_lead/crm_lead.json msgid "CRM Lead" msgstr "CRM Prospek" -#. Name of a DocType -#: crm/fcrm/doctype/crm_lead_source/crm_lead_source.json +#. Name of a PageType +#: crm/fcrm/pagetype/crm_lead_source/crm_lead_source.json msgid "CRM Lead Source" msgstr "CRM Sumber Prospek" -#. Name of a DocType -#: crm/fcrm/doctype/crm_lead_status/crm_lead_status.json +#. Name of a PageType +#: crm/fcrm/pagetype/crm_lead_status/crm_lead_status.json msgid "CRM Lead Status" msgstr "CRM Status Prospek" -#. Name of a DocType -#: crm/fcrm/doctype/crm_lost_reason/crm_lost_reason.json +#. Name of a PageType +#: crm/fcrm/pagetype/crm_lost_reason/crm_lost_reason.json msgid "CRM Lost Reason" msgstr "CRM Alasan Kegagalan" -#. Name of a DocType -#: crm/fcrm/doctype/crm_notification/crm_notification.json +#. Name of a PageType +#: crm/fcrm/pagetype/crm_notification/crm_notification.json msgid "CRM Notification" msgstr "CRM Notifikasi" -#. Name of a DocType -#: crm/fcrm/doctype/crm_organization/crm_organization.json +#. Name of a PageType +#: crm/fcrm/pagetype/crm_organization/crm_organization.json msgid "CRM Organization" msgstr "CRM Organisasi" -#. Label of a shortcut in the Frappe CRM Workspace -#: crm/fcrm/workspace/frappe_crm/frappe_crm.json +#. Label of a shortcut in the Jingrow CRM Workspace +#: crm/fcrm/workspace/jingrow_crm/jingrow_crm.json msgid "CRM Portal Page" msgstr "CRM Halaman Portal" -#. Name of a DocType -#: crm/fcrm/doctype/crm_product/crm_product.json +#. Name of a PageType +#: crm/fcrm/pagetype/crm_product/crm_product.json msgid "CRM Product" msgstr "CRM Produk" -#. Name of a DocType -#: crm/fcrm/doctype/crm_products/crm_products.json +#. Name of a PageType +#: crm/fcrm/pagetype/crm_products/crm_products.json msgid "CRM Products" msgstr "CRM Produk" -#. Name of a DocType -#: crm/fcrm/doctype/crm_service_day/crm_service_day.json +#. Name of a PageType +#: crm/fcrm/pagetype/crm_service_day/crm_service_day.json msgid "CRM Service Day" msgstr "CRM Hari Pelayanan" -#. Name of a DocType -#: crm/fcrm/doctype/crm_service_level_agreement/crm_service_level_agreement.json +#. Name of a PageType +#: crm/fcrm/pagetype/crm_service_level_agreement/crm_service_level_agreement.json msgid "CRM Service Level Agreement" msgstr "CRM Perjanjian Tingkat Layanan" -#. Name of a DocType -#: crm/fcrm/doctype/crm_service_level_priority/crm_service_level_priority.json +#. Name of a PageType +#: crm/fcrm/pagetype/crm_service_level_priority/crm_service_level_priority.json msgid "CRM Service Level Priority" msgstr "CRM Prioritas Tingkat Layanan" -#. Name of a DocType -#: crm/fcrm/doctype/crm_status_change_log/crm_status_change_log.json +#. Name of a PageType +#: crm/fcrm/pagetype/crm_status_change_log/crm_status_change_log.json msgid "CRM Status Change Log" msgstr "CRM Log Perubahan Status" -#. Name of a DocType -#: crm/fcrm/doctype/crm_task/crm_task.json +#. Name of a PageType +#: crm/fcrm/pagetype/crm_task/crm_task.json msgid "CRM Task" msgstr "CRM Tugas" -#. Name of a DocType -#: crm/fcrm/doctype/crm_telephony_agent/crm_telephony_agent.json +#. Name of a PageType +#: crm/fcrm/pagetype/crm_telephony_agent/crm_telephony_agent.json msgid "CRM Telephony Agent" msgstr "CRM Agen Telepon" -#. Name of a DocType -#: crm/fcrm/doctype/crm_telephony_phone/crm_telephony_phone.json +#. Name of a PageType +#: crm/fcrm/pagetype/crm_telephony_phone/crm_telephony_phone.json msgid "CRM Telephony Phone" msgstr "CRM Telepon" -#. Name of a DocType -#: crm/fcrm/doctype/crm_territory/crm_territory.json +#. Name of a PageType +#: crm/fcrm/pagetype/crm_territory/crm_territory.json msgid "CRM Territory" msgstr "CRM Wilayah" -#. Name of a DocType -#: crm/fcrm/doctype/crm_twilio_settings/crm_twilio_settings.json +#. Name of a PageType +#: crm/fcrm/pagetype/crm_twilio_settings/crm_twilio_settings.json msgid "CRM Twilio Settings" msgstr "CRM Pengaturan Twilio" -#. Name of a DocType -#: crm/fcrm/doctype/crm_view_settings/crm_view_settings.json +#. Name of a PageType +#: crm/fcrm/pagetype/crm_view_settings/crm_view_settings.json msgid "CRM View Settings" msgstr "CRM Pengaturan Tampilan" @@ -1021,13 +1021,13 @@ msgstr "CSV" msgid "Call Details" msgstr "Detail Panggilan" -#. Label of the receiver (Link) field in DocType 'CRM Call Log' -#: crm/fcrm/doctype/crm_call_log/crm_call_log.json +#. Label of the receiver (Link) field in PageType 'CRM Call Log' +#: crm/fcrm/pagetype/crm_call_log/crm_call_log.json msgid "Call Received By" msgstr "Panggilan Diterima Oleh" -#. Description of the 'Duration' (Duration) field in DocType 'CRM Call Log' -#: crm/fcrm/doctype/crm_call_log/crm_call_log.json +#. Description of the 'Duration' (Duration) field in PageType 'CRM Call Log' +#: crm/fcrm/pagetype/crm_call_log/crm_call_log.json msgid "Call duration in seconds" msgstr "Durasi panggilan dalam detik" @@ -1045,8 +1045,8 @@ msgstr "Panggil menggunakan {0}" msgid "Call with John Doe" msgstr "Panggilan dengan John Doe" -#. Label of the caller (Link) field in DocType 'CRM Call Log' -#: crm/fcrm/doctype/crm_call_log/crm_call_log.json +#. Label of the caller (Link) field in PageType 'CRM Call Log' +#: crm/fcrm/pagetype/crm_call_log/crm_call_log.json msgid "Caller" msgstr "Penelepon" @@ -1083,10 +1083,10 @@ msgstr "Kamera" msgid "Cancel" msgstr "Batalkan" -#. Option for the 'Status' (Select) field in DocType 'CRM Call Log' -#. Option for the 'Status' (Select) field in DocType 'CRM Task' -#: crm/fcrm/doctype/crm_call_log/crm_call_log.json -#: crm/fcrm/doctype/crm_task/crm_task.json +#. Option for the 'Status' (Select) field in PageType 'CRM Call Log' +#. Option for the 'Status' (Select) field in PageType 'CRM Task' +#: crm/fcrm/pagetype/crm_call_log/crm_call_log.json +#: crm/fcrm/pagetype/crm_task/crm_task.json msgid "Canceled" msgstr "Dibatalkan" @@ -1094,7 +1094,7 @@ msgstr "Dibatalkan" msgid "Cannot change role of user with Admin access" msgstr "Peran pengguna dengan akses Admin tidak dapat diubah" -#: crm/fcrm/doctype/fcrm_settings/fcrm_settings.py:34 +#: crm/fcrm/pagetype/fcrm_settings/fcrm_settings.py:34 msgid "Cannot delete standard items {0}" msgstr "Tidak dapat menghapus item standar {0}" @@ -1189,8 +1189,8 @@ msgstr "Hapus Penugasan" msgid "Clear Sort" msgstr "Hapus Urutan" -#. Label of the clear_table (Button) field in DocType 'CRM Holiday List' -#: crm/fcrm/doctype/crm_holiday_list/crm_holiday_list.json +#. Label of the clear_table (Button) field in PageType 'CRM Holiday List' +#: crm/fcrm/pagetype/crm_holiday_list/crm_holiday_list.json msgid "Clear Table" msgstr "Kosongkan Tabel" @@ -1211,8 +1211,8 @@ msgstr "Tutup" msgid "Close panel" msgstr "" -#. Label of the closed_date (Date) field in DocType 'CRM Deal' -#: crm/fcrm/doctype/crm_deal/crm_deal.json +#. Label of the closed_date (Date) field in PageType 'CRM Deal' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json msgid "Closed Date" msgstr "Tanggal Penutupan" @@ -1224,10 +1224,10 @@ msgstr "Ciutkan" msgid "Collapsible" msgstr "Dapat diciutkan" -#. Label of the color (Select) field in DocType 'CRM Deal Status' -#. Label of the color (Select) field in DocType 'CRM Lead Status' -#: crm/fcrm/doctype/crm_deal_status/crm_deal_status.json -#: crm/fcrm/doctype/crm_lead_status/crm_lead_status.json +#. Label of the color (Select) field in PageType 'CRM Deal Status' +#. Label of the color (Select) field in PageType 'CRM Lead Status' +#: crm/fcrm/pagetype/crm_deal_status/crm_deal_status.json +#: crm/fcrm/pagetype/crm_lead_status/crm_lead_status.json msgid "Color" msgstr "Warna" @@ -1235,20 +1235,20 @@ msgstr "Warna" msgid "Column" msgstr "Kolom" -#. Label of the column_field (Data) field in DocType 'CRM View Settings' -#: crm/fcrm/doctype/crm_view_settings/crm_view_settings.json +#. Label of the column_field (Data) field in PageType 'CRM View Settings' +#: crm/fcrm/pagetype/crm_view_settings/crm_view_settings.json #: frontend/src/components/Kanban/KanbanSettings.vue:12 msgid "Column Field" msgstr "Bidang Kolom" -#. Label of the columns (Code) field in DocType 'CRM View Settings' -#: crm/fcrm/doctype/crm_view_settings/crm_view_settings.json +#. Label of the columns (Code) field in PageType 'CRM View Settings' +#: crm/fcrm/pagetype/crm_view_settings/crm_view_settings.json #: frontend/src/components/ColumnSettings.vue:4 msgid "Columns" msgstr "Kolom" -#. Label of the comment (Link) field in DocType 'CRM Notification' -#: crm/fcrm/doctype/crm_notification/crm_notification.json +#. Label of the comment (Link) field in PageType 'CRM Notification' +#: crm/fcrm/pagetype/crm_notification/crm_notification.json #: frontend/src/components/CommentBox.vue:78 #: frontend/src/components/CommunicationArea.vue:16 #: frontend/src/components/Layouts/AppSidebar.vue:579 @@ -1264,20 +1264,20 @@ msgstr "Komentar" msgid "Common reasons for losing deals" msgstr "Alasan umum gagalnya kesepakatan" -#. Label of the communication_status (Link) field in DocType 'CRM Deal' -#. Label of the communication_status (Link) field in DocType 'CRM Lead' -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_lead/crm_lead.json +#. Label of the communication_status (Link) field in PageType 'CRM Deal' +#. Label of the communication_status (Link) field in PageType 'CRM Lead' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_lead/crm_lead.json msgid "Communication Status" msgstr "Status Komunikasi" -#. Label of a shortcut in the Frappe CRM Workspace -#: crm/fcrm/workspace/frappe_crm/frappe_crm.json +#. Label of a shortcut in the Jingrow CRM Workspace +#: crm/fcrm/workspace/jingrow_crm/jingrow_crm.json msgid "Communication Statuses" msgstr "Status Komunikasi" -#. Label of the erpnext_company (Data) field in DocType 'ERPNext CRM Settings' -#: crm/fcrm/doctype/erpnext_crm_settings/erpnext_crm_settings.json +#. Label of the erpnext_company (Data) field in PageType 'ERPNext CRM Settings' +#: crm/fcrm/pagetype/erpnext_crm_settings/erpnext_crm_settings.json msgid "Company in ERPNext Site" msgstr "Perusahaan di Situs ERPNext" @@ -1285,18 +1285,18 @@ msgstr "Perusahaan di Situs ERPNext" msgid "Complete Registration" msgstr "Pendaftaran Lengkap" -#. Option for the 'Status' (Select) field in DocType 'CRM Call Log' -#: crm/fcrm/doctype/crm_call_log/crm_call_log.json +#. Option for the 'Status' (Select) field in PageType 'CRM Call Log' +#: crm/fcrm/pagetype/crm_call_log/crm_call_log.json msgid "Completed" msgstr "Selesai" -#. Option for the 'Device' (Select) field in DocType 'CRM Telephony Agent' -#: crm/fcrm/doctype/crm_telephony_agent/crm_telephony_agent.json +#. Option for the 'Device' (Select) field in PageType 'CRM Telephony Agent' +#: crm/fcrm/pagetype/crm_telephony_agent/crm_telephony_agent.json msgid "Computer" msgstr "Komputer" -#. Label of the condition (Code) field in DocType 'CRM Service Level Agreement' -#: crm/fcrm/doctype/crm_service_level_agreement/crm_service_level_agreement.json +#. Label of the condition (Code) field in PageType 'CRM Service Level Agreement' +#: crm/fcrm/pagetype/crm_service_level_agreement/crm_service_level_agreement.json msgid "Condition" msgstr "Kondisi" @@ -1354,17 +1354,17 @@ msgstr "" msgid "Connect your email" msgstr "Hubungkan email anda" -#. Label of the contact (Link) field in DocType 'CRM Contacts' -#. Label of the contact (Link) field in DocType 'CRM Deal' -#: crm/fcrm/doctype/crm_contacts/crm_contacts.json -#: crm/fcrm/doctype/crm_deal/crm_deal.json +#. Label of the contact (Link) field in PageType 'CRM Contacts' +#. Label of the contact (Link) field in PageType 'CRM Deal' +#: crm/fcrm/pagetype/crm_contacts/crm_contacts.json +#: crm/fcrm/pagetype/crm_deal/crm_deal.json #: frontend/src/components/Layouts/AppSidebar.vue:552 #: frontend/src/components/Modals/ConvertToDealModal.vue:51 #: frontend/src/pages/MobileLead.vue:145 msgid "Contact" msgstr "Kontak" -#: crm/fcrm/doctype/crm_lead/crm_lead.py:212 +#: crm/fcrm/pagetype/crm_lead/crm_lead.py:212 msgid "Contact Already Exists" msgstr "Kontak Sudah Ada" @@ -1384,7 +1384,7 @@ msgstr "Kontak ditambahkan" msgid "Contact already added" msgstr "Kontak sudah ditambahkan" -#: crm/fcrm/doctype/crm_lead/crm_lead.py:211 +#: crm/fcrm/pagetype/crm_lead/crm_lead.py:211 msgid "Contact already exists with {0}" msgstr "Kontak dengan {0} sudah ada" @@ -1405,18 +1405,18 @@ msgstr "Kontak dihapus" msgid "Contact updated" msgstr "Kontak diperbarui" -#. Label of the contacts_tab (Tab Break) field in DocType 'CRM Deal' -#. Label of the contacts (Table) field in DocType 'CRM Deal' -#. Label of a shortcut in the Frappe CRM Workspace -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/workspace/frappe_crm/frappe_crm.json +#. Label of the contacts_tab (Tab Break) field in PageType 'CRM Deal' +#. Label of the contacts (Table) field in PageType 'CRM Deal' +#. Label of a shortcut in the Jingrow CRM Workspace +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/workspace/jingrow_crm/jingrow_crm.json #: frontend/src/pages/Contact.vue:234 frontend/src/pages/MobileContact.vue:212 #: frontend/src/pages/MobileOrganization.vue:331 msgid "Contacts" msgstr "Kontak" -#. Label of the content (Text Editor) field in DocType 'FCRM Note' -#: crm/fcrm/doctype/fcrm_note/fcrm_note.json +#. Label of the content (Text Editor) field in PageType 'FCRM Note' +#: crm/fcrm/pagetype/fcrm_note/fcrm_note.json #: frontend/src/components/Modals/NoteModal.vue:33 #: frontend/src/components/Settings/EmailTemplate/EditEmailTemplate.vue:89 #: frontend/src/components/Settings/EmailTemplate/EditEmailTemplate.vue:102 @@ -1456,8 +1456,8 @@ msgstr "Konversi prospek menjadi kesepakatan" msgid "Convert to Deal" msgstr "Konversi menjadi Kesepakatan" -#. Label of the converted (Check) field in DocType 'CRM Lead' -#: crm/fcrm/doctype/crm_lead/crm_lead.json +#. Label of the converted (Check) field in PageType 'CRM Lead' +#: crm/fcrm/pagetype/crm_lead/crm_lead.json msgid "Converted" msgstr "Terkonversi" @@ -1533,9 +1533,9 @@ msgstr "Buat Tampilan" msgid "Create an event" msgstr "" -#. Label of the create_customer_on_status_change (Check) field in DocType +#. Label of the create_customer_on_status_change (Check) field in PageType #. 'ERPNext CRM Settings' -#: crm/fcrm/doctype/erpnext_crm_settings/erpnext_crm_settings.json +#: crm/fcrm/pagetype/erpnext_crm_settings/erpnext_crm_settings.json msgid "Create customer on status change" msgstr "Buat pelanggan saat perubahan status" @@ -1560,13 +1560,13 @@ msgstr "Buat catatan pertama Anda" msgid "Create your first task" msgstr "Buat tugas pertama Anda" -#. Label of the currency (Link) field in DocType 'CRM Deal' -#. Label of the currency (Link) field in DocType 'CRM Organization' -#. Label of the currency (Link) field in DocType 'FCRM Settings' -#. Label of the currency_tab (Tab Break) field in DocType 'FCRM Settings' -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_organization/crm_organization.json -#: crm/fcrm/doctype/fcrm_settings/fcrm_settings.json +#. Label of the currency (Link) field in PageType 'CRM Deal' +#. Label of the currency (Link) field in PageType 'CRM Organization' +#. Label of the currency (Link) field in PageType 'FCRM Settings' +#. Label of the currency_tab (Tab Break) field in PageType 'FCRM Settings' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_organization/crm_organization.json +#: crm/fcrm/pagetype/fcrm_settings/fcrm_settings.json #: frontend/src/components/Settings/CurrencySettings.vue:31 msgid "Currency" msgstr "Mata Uang" @@ -1631,13 +1631,13 @@ msgstr "Kinerja harian prospek, kesepakatan, dan Ketercapaian Target" msgid "Data" msgstr "Data" -#. Option for the 'Type' (Select) field in DocType 'CRM Fields Layout' -#: crm/fcrm/doctype/crm_fields_layout/crm_fields_layout.json +#. Option for the 'Type' (Select) field in PageType 'CRM Fields Layout' +#: crm/fcrm/pagetype/crm_fields_layout/crm_fields_layout.json msgid "Data Fields" msgstr "Bidang Data" -#. Label of the date (Date) field in DocType 'CRM Holiday' -#: crm/api/dashboard.py:601 crm/fcrm/doctype/crm_holiday/crm_holiday.json +#. Label of the date (Date) field in PageType 'CRM Holiday' +#: crm/api/dashboard.py:601 crm/fcrm/pagetype/crm_holiday/crm_holiday.json #: frontend/src/components/Calendar/CalendarEventPanel.vue:202 msgid "Date" msgstr "Tanggal" @@ -1660,23 +1660,23 @@ msgstr "" msgid "Deal" msgstr "Kesepakatan" -#. Label of the deal_owner (Link) field in DocType 'CRM Deal' -#: crm/fcrm/doctype/crm_deal/crm_deal.json +#. Label of the deal_owner (Link) field in PageType 'CRM Deal' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json msgid "Deal Owner" msgstr "Pemilik Kesepakatan" -#. Label of the deal_status (Link) field in DocType 'ERPNext CRM Settings' -#: crm/fcrm/doctype/erpnext_crm_settings/erpnext_crm_settings.json +#. Label of the deal_status (Link) field in PageType 'ERPNext CRM Settings' +#: crm/fcrm/pagetype/erpnext_crm_settings/erpnext_crm_settings.json msgid "Deal Status" msgstr "Status Kesepakatan" -#. Label of a shortcut in the Frappe CRM Workspace -#: crm/fcrm/workspace/frappe_crm/frappe_crm.json +#. Label of a shortcut in the Jingrow CRM Workspace +#: crm/fcrm/workspace/jingrow_crm/jingrow_crm.json msgid "Deal Statuses" msgstr "Status Kesepakatan" -#. Label of the deal_value (Currency) field in DocType 'CRM Deal' -#: crm/fcrm/doctype/crm_deal/crm_deal.json +#. Label of the deal_value (Currency) field in PageType 'CRM Deal' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json msgid "Deal Value" msgstr "Nilai Kesepakatan" @@ -1694,8 +1694,8 @@ msgstr "Pemilik kesepakatan" msgid "Deal value" msgstr "Nilai kesepakatan" -#. Label of a shortcut in the Frappe CRM Workspace -#: crm/fcrm/workspace/frappe_crm/frappe_crm.json +#. Label of a shortcut in the Jingrow CRM Workspace +#: crm/fcrm/workspace/jingrow_crm/jingrow_crm.json #: frontend/src/pages/Deal.vue:480 frontend/src/pages/MobileContact.vue:288 #: frontend/src/pages/MobileDeal.vue:384 #: frontend/src/pages/MobileOrganization.vue:325 @@ -1732,8 +1732,8 @@ msgstr "Kesepakatan berdasarkan wilayah" msgid "Dear {{ lead_name }}, \\n\\nThis is a reminder for the payment of {{ grand_total }}. \\n\\nThanks, \\nFrappé" msgstr "Yang Terhormat {{ lead_name }},\\n\\nDengan ini, kami ingin mengingatkan mengenai pembayaran sebesar {{ grand_total }}.\\n\\nHormat kami,\\nFrappé" -#. Label of the default (Check) field in DocType 'CRM Service Level Agreement' -#: crm/fcrm/doctype/crm_service_level_agreement/crm_service_level_agreement.json +#. Label of the default (Check) field in PageType 'CRM Service Level Agreement' +#: crm/fcrm/pagetype/crm_service_level_agreement/crm_service_level_agreement.json msgid "Default" msgstr "Default" @@ -1745,8 +1745,8 @@ msgstr "Kotak Masuk Default" msgid "Default Incoming" msgstr "Email Masuk Default" -#. Label of the default_medium (Select) field in DocType 'CRM Telephony Agent' -#: crm/fcrm/doctype/crm_telephony_agent/crm_telephony_agent.json +#. Label of the default_medium (Select) field in PageType 'CRM Telephony Agent' +#: crm/fcrm/pagetype/crm_telephony_agent/crm_telephony_agent.json msgid "Default Medium" msgstr "Media Default" @@ -1754,9 +1754,9 @@ msgstr "Media Default" msgid "Default Outgoing" msgstr "Email Keluar Default" -#. Label of the default_priority (Check) field in DocType 'CRM Service Level +#. Label of the default_priority (Check) field in PageType 'CRM Service Level #. Priority' -#: crm/fcrm/doctype/crm_service_level_priority/crm_service_level_priority.json +#: crm/fcrm/pagetype/crm_service_level_priority/crm_service_level_priority.json msgid "Default Priority" msgstr "Prioritas Default" @@ -1768,7 +1768,7 @@ msgstr "Pengiriman Email Default" msgid "Default Sending and Inbox" msgstr "Pengiriman Email dan Kotak Masuk Default" -#: crm/fcrm/doctype/crm_service_level_agreement/crm_service_level_agreement.py:33 +#: crm/fcrm/pagetype/crm_service_level_agreement/crm_service_level_agreement.py:33 msgid "Default Service Level Agreement already exists for {0}" msgstr "Perjanjian Tingkat Layanan Default sudah ada untuk {0}" @@ -1788,8 +1788,8 @@ msgstr "Media panggilan default berhasil diperbarui" msgid "Default medium" msgstr "Media default" -#: crm/fcrm/doctype/fcrm_settings/fcrm_settings.js:18 -#: crm/fcrm/doctype/fcrm_settings/fcrm_settings.js:30 +#: crm/fcrm/pagetype/fcrm_settings/fcrm_settings.js:18 +#: crm/fcrm/pagetype/fcrm_settings/fcrm_settings.js:30 msgid "Default statuses, custom fields and layouts restored successfully." msgstr "Status default, bidang kustom, dan layout berhasil dipulihkan." @@ -1825,7 +1825,7 @@ msgstr "Status default, bidang kustom, dan layout berhasil dipulihkan." msgid "Delete" msgstr "Hapus" -#: crm/fcrm/doctype/fcrm_settings/fcrm_settings.js:26 +#: crm/fcrm/pagetype/fcrm_settings/fcrm_settings.js:26 msgid "Delete & Restore" msgstr "Hapus & Pulihkan" @@ -1883,14 +1883,14 @@ msgstr "Hapus {0} item" msgid "Delete {0} items" msgstr "Hapus {0} item" -#. Label of the description (Text Editor) field in DocType 'CRM Holiday' -#. Label of the description (Text Editor) field in DocType 'CRM Lost Reason' -#. Label of the description (Text Editor) field in DocType 'CRM Product' -#. Label of the description (Text Editor) field in DocType 'CRM Task' -#: crm/fcrm/doctype/crm_holiday/crm_holiday.json -#: crm/fcrm/doctype/crm_lost_reason/crm_lost_reason.json -#: crm/fcrm/doctype/crm_product/crm_product.json -#: crm/fcrm/doctype/crm_task/crm_task.json +#. Label of the description (Text Editor) field in PageType 'CRM Holiday' +#. Label of the description (Text Editor) field in PageType 'CRM Lost Reason' +#. Label of the description (Text Editor) field in PageType 'CRM Product' +#. Label of the description (Text Editor) field in PageType 'CRM Task' +#: crm/fcrm/pagetype/crm_holiday/crm_holiday.json +#: crm/fcrm/pagetype/crm_lost_reason/crm_lost_reason.json +#: crm/fcrm/pagetype/crm_product/crm_product.json +#: crm/fcrm/pagetype/crm_task/crm_task.json #: frontend/src/components/Calendar/CalendarEventPanel.vue:152 #: frontend/src/components/Modals/EventModal.vue:134 #: frontend/src/components/Modals/TaskModal.vue:36 @@ -1907,29 +1907,29 @@ msgstr "" msgid "Desk" msgstr "Area Kerja" -#. Label of the details (Tab Break) field in DocType 'CRM Lead' -#. Label of the details (Text Editor) field in DocType 'CRM Lead Source' -#: crm/fcrm/doctype/crm_lead/crm_lead.json -#: crm/fcrm/doctype/crm_lead_source/crm_lead_source.json +#. Label of the details (Tab Break) field in PageType 'CRM Lead' +#. Label of the details (Text Editor) field in PageType 'CRM Lead Source' +#: crm/fcrm/pagetype/crm_lead/crm_lead.json +#: crm/fcrm/pagetype/crm_lead_source/crm_lead_source.json #: frontend/src/pages/MobileContact.vue:283 #: frontend/src/pages/MobileDeal.vue:424 frontend/src/pages/MobileLead.vue:331 #: frontend/src/pages/MobileOrganization.vue:320 msgid "Details" msgstr "Detail" -#. Label of the call_receiving_device (Select) field in DocType 'CRM Telephony +#. Label of the call_receiving_device (Select) field in PageType 'CRM Telephony #. Agent' -#: crm/fcrm/doctype/crm_telephony_agent/crm_telephony_agent.json +#: crm/fcrm/pagetype/crm_telephony_agent/crm_telephony_agent.json #: frontend/src/components/FilesUploader/FilesUploaderArea.vue:39 msgid "Device" msgstr "Perangkat" -#: crm/fcrm/doctype/crm_form_script/crm_form_script.js:30 +#: crm/fcrm/pagetype/crm_form_script/crm_form_script.js:30 msgid "Disable" msgstr "Nonaktifkan" -#. Label of the disabled (Check) field in DocType 'CRM Product' -#: crm/fcrm/doctype/crm_product/crm_product.json +#. Label of the disabled (Check) field in PageType 'CRM Product' +#: crm/fcrm/pagetype/crm_product/crm_product.json msgid "Disabled" msgstr "Dinonaktifkan" @@ -1943,27 +1943,27 @@ msgstr "Batalkan" msgid "Discard unsaved changes?" msgstr "" -#. Label of the discount_percentage (Percent) field in DocType 'CRM Products' -#: crm/fcrm/doctype/crm_products/crm_products.json +#. Label of the discount_percentage (Percent) field in PageType 'CRM Products' +#: crm/fcrm/pagetype/crm_products/crm_products.json msgid "Discount %" msgstr "Diskon %" -#. Label of the discount_amount (Currency) field in DocType 'CRM Products' -#: crm/fcrm/doctype/crm_products/crm_products.json +#. Label of the discount_amount (Currency) field in PageType 'CRM Products' +#: crm/fcrm/pagetype/crm_products/crm_products.json msgid "Discount Amount" msgstr "Jumlah Diskon" -#. Label of the dt (Link) field in DocType 'CRM Form Script' -#. Label of the dt (Link) field in DocType 'CRM Global Settings' -#. Label of the dt (Link) field in DocType 'CRM View Settings' -#: crm/fcrm/doctype/crm_form_script/crm_form_script.json -#: crm/fcrm/doctype/crm_global_settings/crm_global_settings.json -#: crm/fcrm/doctype/crm_view_settings/crm_view_settings.json -msgid "DocType" -msgstr "DocType" +#. Label of the dt (Link) field in PageType 'CRM Form Script' +#. Label of the dt (Link) field in PageType 'CRM Global Settings' +#. Label of the dt (Link) field in PageType 'CRM View Settings' +#: crm/fcrm/pagetype/crm_form_script/crm_form_script.json +#: crm/fcrm/pagetype/crm_global_settings/crm_global_settings.json +#: crm/fcrm/pagetype/crm_view_settings/crm_view_settings.json +msgid "PageType" +msgstr "PageType" -#. Label of the dt (Link) field in DocType 'CRM Fields Layout' -#: crm/fcrm/doctype/crm_fields_layout/crm_fields_layout.json +#. Label of the dt (Link) field in PageType 'CRM Fields Layout' +#: crm/fcrm/pagetype/crm_fields_layout/crm_fields_layout.json msgid "Document Type" msgstr "Tipe Dokumen" @@ -1983,8 +1983,8 @@ msgstr "Dokumen berhasil diperbarui" msgid "Documentation" msgstr "Dokumentasi" -#. Option for the 'Status' (Select) field in DocType 'CRM Task' -#: crm/fcrm/doctype/crm_task/crm_task.json +#. Option for the 'Status' (Select) field in PageType 'CRM Task' +#: crm/fcrm/pagetype/crm_task/crm_task.json msgid "Done" msgstr "Selesai" @@ -2006,13 +2006,13 @@ msgstr "Seret dan lepas file di sini atau unggah dari" msgid "Drop files here" msgstr "Letakkan file di sini" -#. Label of the dropdown_items_tab (Tab Break) field in DocType 'FCRM Settings' -#: crm/fcrm/doctype/fcrm_settings/fcrm_settings.json +#. Label of the dropdown_items_tab (Tab Break) field in PageType 'FCRM Settings' +#: crm/fcrm/pagetype/fcrm_settings/fcrm_settings.json msgid "Dropdown Items" msgstr "Item Dropdown" -#. Label of the due_date (Datetime) field in DocType 'CRM Task' -#: crm/fcrm/doctype/crm_task/crm_task.json +#. Label of the due_date (Datetime) field in PageType 'CRM Task' +#: crm/fcrm/pagetype/crm_task/crm_task.json msgid "Due Date" msgstr "Tanggal Jatuh Tempo" @@ -2048,10 +2048,10 @@ msgstr "" msgid "Duplicate template" msgstr "Duplikasi templat" -#. Label of the duration (Duration) field in DocType 'CRM Call Log' -#. Label of the duration (Duration) field in DocType 'CRM Status Change Log' -#: crm/fcrm/doctype/crm_call_log/crm_call_log.json -#: crm/fcrm/doctype/crm_status_change_log/crm_status_change_log.json +#. Label of the duration (Duration) field in PageType 'CRM Call Log' +#. Label of the duration (Duration) field in PageType 'CRM Status Change Log' +#: crm/fcrm/pagetype/crm_call_log/crm_call_log.json +#: crm/fcrm/pagetype/crm_status_change_log/crm_status_change_log.json msgid "Duration" msgstr "Durasi" @@ -2060,28 +2060,28 @@ msgstr "Durasi" msgid "ERPNext" msgstr "ERPNext" -#. Name of a DocType -#: crm/fcrm/doctype/erpnext_crm_settings/erpnext_crm_settings.json +#. Name of a PageType +#: crm/fcrm/pagetype/erpnext_crm_settings/erpnext_crm_settings.json msgid "ERPNext CRM Settings" msgstr "Pengaturan CRM ERPNext" -#. Label of the section_break_oubd (Section Break) field in DocType 'ERPNext +#. Label of the section_break_oubd (Section Break) field in PageType 'ERPNext #. CRM Settings' -#: crm/fcrm/doctype/erpnext_crm_settings/erpnext_crm_settings.json +#: crm/fcrm/pagetype/erpnext_crm_settings/erpnext_crm_settings.json msgid "ERPNext Site API's" msgstr "API Situs ERPNext" -#. Label of the erpnext_site_url (Data) field in DocType 'ERPNext CRM Settings' -#: crm/fcrm/doctype/erpnext_crm_settings/erpnext_crm_settings.json +#. Label of the erpnext_site_url (Data) field in PageType 'ERPNext CRM Settings' +#: crm/fcrm/pagetype/erpnext_crm_settings/erpnext_crm_settings.json msgid "ERPNext Site URL" msgstr "URL Situs ERPNext" -#: crm/fcrm/doctype/erpnext_crm_settings/erpnext_crm_settings.py:25 +#: crm/fcrm/pagetype/erpnext_crm_settings/erpnext_crm_settings.py:25 msgid "ERPNext is not installed in the current site" msgstr "ERPNext tidak terpasang di situs ini" -#: crm/fcrm/doctype/erpnext_crm_settings/erpnext_crm_settings.py:98 -#: crm/fcrm/doctype/erpnext_crm_settings/erpnext_crm_settings.py:124 +#: crm/fcrm/pagetype/erpnext_crm_settings/erpnext_crm_settings.py:98 +#: crm/fcrm/pagetype/erpnext_crm_settings/erpnext_crm_settings.py:124 msgid "ERPNext is not integrated with the CRM" msgstr "ERPNext tidak terintegrasi dengan CRM" @@ -2191,12 +2191,12 @@ msgstr "Mengedit Baris {0}" msgid "Editing event" msgstr "" -#. Label of the email (Data) field in DocType 'CRM Contacts' -#. Label of the email (Data) field in DocType 'CRM Invitation' -#. Label of the email (Data) field in DocType 'CRM Lead' -#: crm/fcrm/doctype/crm_contacts/crm_contacts.json -#: crm/fcrm/doctype/crm_invitation/crm_invitation.json -#: crm/fcrm/doctype/crm_lead/crm_lead.json frontend/src/pages/Contact.vue:510 +#. Label of the email (Data) field in PageType 'CRM Contacts' +#. Label of the email (Data) field in PageType 'CRM Invitation' +#. Label of the email (Data) field in PageType 'CRM Lead' +#: crm/fcrm/pagetype/crm_contacts/crm_contacts.json +#: crm/fcrm/pagetype/crm_invitation/crm_invitation.json +#: crm/fcrm/pagetype/crm_lead/crm_lead.json frontend/src/pages/Contact.vue:510 #: frontend/src/pages/MobileContact.vue:518 #: frontend/src/pages/MobileOrganization.vue:462 #: frontend/src/pages/MobileOrganization.vue:490 @@ -2213,8 +2213,8 @@ msgstr "Akun Email" msgid "Email ID is required" msgstr "ID Email wajib diisi" -#. Label of the email_sent_at (Datetime) field in DocType 'CRM Invitation' -#: crm/fcrm/doctype/crm_invitation/crm_invitation.json +#. Label of the email_sent_at (Datetime) field in PageType 'CRM Invitation' +#: crm/fcrm/pagetype/crm_invitation/crm_invitation.json msgid "Email Sent At" msgstr "Email Terkirim Pada" @@ -2272,12 +2272,12 @@ msgstr "Kosong - Pilih sebuah bidang untuk memfilter" msgid "Empty - Choose a field to sort by" msgstr "Kosong - Pilih sebuah bidang untuk mengurutkan" -#: crm/fcrm/doctype/crm_form_script/crm_form_script.js:30 +#: crm/fcrm/pagetype/crm_form_script/crm_form_script.js:30 msgid "Enable" msgstr "Aktifkan" -#. Label of the enable_forecasting (Check) field in DocType 'FCRM Settings' -#: crm/fcrm/doctype/fcrm_settings/fcrm_settings.json +#. Label of the enable_forecasting (Check) field in PageType 'FCRM Settings' +#: crm/fcrm/pagetype/fcrm_settings/fcrm_settings.json msgid "Enable Forecasting" msgstr "Aktifkan Forecasting" @@ -2293,18 +2293,18 @@ msgstr "Aktifkan Email Keluar" msgid "Enable forecasting" msgstr "Aktifkan forecasting" -#. Label of the enabled (Check) field in DocType 'CRM Exotel Settings' -#. Label of the enabled (Check) field in DocType 'CRM Form Script' -#. Label of the enabled (Check) field in DocType 'CRM Service Level Agreement' -#. Label of the enabled (Check) field in DocType 'CRM Twilio Settings' -#. Label of the enabled (Check) field in DocType 'ERPNext CRM Settings' -#. Label of the enabled (Check) field in DocType 'Helpdesk CRM Settings' -#: crm/fcrm/doctype/crm_exotel_settings/crm_exotel_settings.json -#: crm/fcrm/doctype/crm_form_script/crm_form_script.json -#: crm/fcrm/doctype/crm_service_level_agreement/crm_service_level_agreement.json -#: crm/fcrm/doctype/crm_twilio_settings/crm_twilio_settings.json -#: crm/fcrm/doctype/erpnext_crm_settings/erpnext_crm_settings.json -#: crm/fcrm/doctype/helpdesk_crm_settings/helpdesk_crm_settings.json +#. Label of the enabled (Check) field in PageType 'CRM Exotel Settings' +#. Label of the enabled (Check) field in PageType 'CRM Form Script' +#. Label of the enabled (Check) field in PageType 'CRM Service Level Agreement' +#. Label of the enabled (Check) field in PageType 'CRM Twilio Settings' +#. Label of the enabled (Check) field in PageType 'ERPNext CRM Settings' +#. Label of the enabled (Check) field in PageType 'Helpdesk CRM Settings' +#: crm/fcrm/pagetype/crm_exotel_settings/crm_exotel_settings.json +#: crm/fcrm/pagetype/crm_form_script/crm_form_script.json +#: crm/fcrm/pagetype/crm_service_level_agreement/crm_service_level_agreement.json +#: crm/fcrm/pagetype/crm_twilio_settings/crm_twilio_settings.json +#: crm/fcrm/pagetype/erpnext_crm_settings/erpnext_crm_settings.json +#: crm/fcrm/pagetype/helpdesk_crm_settings/helpdesk_crm_settings.json #: frontend/src/components/Settings/AssignmentRules/AssignmentRuleView.vue:32 #: frontend/src/components/Settings/AssignmentRules/AssignmentRulesList.vue:21 #: frontend/src/components/Settings/EmailTemplate/EditEmailTemplate.vue:18 @@ -2313,15 +2313,15 @@ msgstr "Aktifkan forecasting" msgid "Enabled" msgstr "Diaktifkan" -#. Label of the end_date (Date) field in DocType 'CRM Service Level Agreement' -#: crm/fcrm/doctype/crm_service_level_agreement/crm_service_level_agreement.json +#. Label of the end_date (Date) field in PageType 'CRM Service Level Agreement' +#: crm/fcrm/pagetype/crm_service_level_agreement/crm_service_level_agreement.json msgid "End Date" msgstr "Tanggal Akhir" -#. Label of the end_time (Datetime) field in DocType 'CRM Call Log' -#. Label of the end_time (Time) field in DocType 'CRM Service Day' -#: crm/fcrm/doctype/crm_call_log/crm_call_log.json -#: crm/fcrm/doctype/crm_service_day/crm_service_day.json +#. Label of the end_time (Datetime) field in PageType 'CRM Call Log' +#. Label of the end_time (Time) field in PageType 'CRM Service Day' +#: crm/fcrm/pagetype/crm_call_log/crm_call_log.json +#: crm/fcrm/pagetype/crm_service_day/crm_service_day.json #: frontend/src/components/Calendar/CalendarEventPanel.vue:242 #: frontend/src/components/Modals/EventModal.vue:112 msgid "End Time" @@ -2362,15 +2362,15 @@ msgstr "Terjadi kesalahan saat mengonversi menjadi kesepakatan: {0}" msgid "Error updating field" msgstr "Kesalahan saat memperbarui bidang" -#: crm/fcrm/doctype/erpnext_crm_settings/erpnext_crm_settings.py:279 +#: crm/fcrm/pagetype/erpnext_crm_settings/erpnext_crm_settings.py:279 msgid "Error while creating customer in ERPNext, check error log for more details" msgstr "Terjadi kesalahan ketika membuat pelanggan di ERPNext, periksa log kesalahan untuk detail lebih lanjut" -#: crm/fcrm/doctype/erpnext_crm_settings/erpnext_crm_settings.py:191 +#: crm/fcrm/pagetype/erpnext_crm_settings/erpnext_crm_settings.py:191 msgid "Error while creating prospect in ERPNext, check error log for more details" msgstr "Terjadi kesalahan ketika membuat prospek di ERPNext, periksa log kesalahan untuk detail lebih lanjut" -#: crm/fcrm/doctype/erpnext_crm_settings/erpnext_crm_settings.py:117 +#: crm/fcrm/pagetype/erpnext_crm_settings/erpnext_crm_settings.py:117 msgid "Error while fetching customer in ERPNext, check error log for more details" msgstr "Terjadi kesalahan saat mengambil data pelanggan di ERPNext, periksa log kesalahan untuk detail lebih lanjut" @@ -2395,16 +2395,16 @@ msgstr "" msgid "Excel" msgstr "Excel" -#. Label of the exchange_rate (Float) field in DocType 'CRM Deal' -#. Label of the exchange_rate (Float) field in DocType 'CRM Organization' -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_organization/crm_organization.json +#. Label of the exchange_rate (Float) field in PageType 'CRM Deal' +#. Label of the exchange_rate (Float) field in PageType 'CRM Organization' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_organization/crm_organization.json msgid "Exchange Rate" msgstr "Kurs" -#. Label of the exchange_rate_provider_section (Section Break) field in DocType +#. Label of the exchange_rate_provider_section (Section Break) field in PageType #. 'FCRM Settings' -#: crm/fcrm/doctype/fcrm_settings/fcrm_settings.json +#: crm/fcrm/pagetype/fcrm_settings/fcrm_settings.json msgid "Exchange Rate Provider" msgstr "Penyedia Nilai Tukar" @@ -2412,12 +2412,12 @@ msgstr "Penyedia Nilai Tukar" msgid "Exchange rate provider" msgstr "Penyedia nilai tukar" -#. Option for the 'Telephony Medium' (Select) field in DocType 'CRM Call Log' -#. Label of the exotel (Check) field in DocType 'CRM Telephony Agent' -#. Option for the 'Default Medium' (Select) field in DocType 'CRM Telephony +#. Option for the 'Telephony Medium' (Select) field in PageType 'CRM Call Log' +#. Label of the exotel (Check) field in PageType 'CRM Telephony Agent' +#. Option for the 'Default Medium' (Select) field in PageType 'CRM Telephony #. Agent' -#: crm/fcrm/doctype/crm_call_log/crm_call_log.json -#: crm/fcrm/doctype/crm_telephony_agent/crm_telephony_agent.json +#: crm/fcrm/pagetype/crm_call_log/crm_call_log.json +#: crm/fcrm/pagetype/crm_telephony_agent/crm_telephony_agent.json #: frontend/src/components/Layouts/AppSidebar.vue:602 #: frontend/src/components/Settings/TelephonySettings.vue:41 #: frontend/src/components/Settings/TelephonySettings.vue:63 @@ -2428,8 +2428,8 @@ msgstr "Exotel" msgid "Exotel Exception" msgstr "Pengecualian Exotel" -#. Label of the exotel_number (Data) field in DocType 'CRM Telephony Agent' -#: crm/fcrm/doctype/crm_telephony_agent/crm_telephony_agent.json +#. Label of the exotel_number (Data) field in PageType 'CRM Telephony Agent' +#: crm/fcrm/pagetype/crm_telephony_agent/crm_telephony_agent.json msgid "Exotel Number" msgstr "Nomor Exotel" @@ -2453,26 +2453,26 @@ msgstr "Pengaturan Exotel berhasil diperbarui" msgid "Expand" msgstr "Perluas" -#. Label of the expected_closure_date (Date) field in DocType 'CRM Deal' -#: crm/fcrm/doctype/crm_deal/crm_deal.json +#. Label of the expected_closure_date (Date) field in PageType 'CRM Deal' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json msgid "Expected Closure Date" msgstr "Tanggal Perkiraan Penutupan" -#: crm/fcrm/doctype/crm_deal/crm_deal.py:173 +#: crm/fcrm/pagetype/crm_deal/crm_deal.py:173 msgid "Expected Closure Date is required." msgstr "Tanggal Perkiraan Penutupan wajib diisi." -#. Label of the expected_deal_value (Currency) field in DocType 'CRM Deal' -#: crm/fcrm/doctype/crm_deal/crm_deal.json +#. Label of the expected_deal_value (Currency) field in PageType 'CRM Deal' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json msgid "Expected Deal Value" msgstr "Nilai Perkiraan Kesepakatan" -#: crm/fcrm/doctype/crm_deal/crm_deal.py:171 +#: crm/fcrm/pagetype/crm_deal/crm_deal.py:171 msgid "Expected Deal Value is required." msgstr "Nilai Perkiraan Kesepakatan wajib diisi." -#. Option for the 'Status' (Select) field in DocType 'CRM Invitation' -#: crm/fcrm/doctype/crm_invitation/crm_invitation.json +#. Option for the 'Status' (Select) field in PageType 'CRM Invitation' +#: crm/fcrm/pagetype/crm_invitation/crm_invitation.json msgid "Expired" msgstr "Kedaluwarsa" @@ -2489,22 +2489,22 @@ msgstr "Ekspor Semua {0} Catatan" msgid "Export Type" msgstr "Tipe Ekspor" -#. Name of a DocType -#: crm/fcrm/doctype/fcrm_note/fcrm_note.json +#. Name of a PageType +#: crm/fcrm/pagetype/fcrm_note/fcrm_note.json msgid "FCRM Note" msgstr "Catatan FCRM" -#. Name of a DocType -#: crm/fcrm/doctype/fcrm_settings/fcrm_settings.json +#. Name of a PageType +#: crm/fcrm/pagetype/fcrm_settings/fcrm_settings.json msgid "FCRM Settings" msgstr "Pengaturan FCRM" -#. Option for the 'Status' (Select) field in DocType 'CRM Call Log' -#. Option for the 'SLA Status' (Select) field in DocType 'CRM Deal' -#. Option for the 'SLA Status' (Select) field in DocType 'CRM Lead' -#: crm/fcrm/doctype/crm_call_log/crm_call_log.json -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_lead/crm_lead.json +#. Option for the 'Status' (Select) field in PageType 'CRM Call Log' +#. Option for the 'SLA Status' (Select) field in PageType 'CRM Deal' +#. Option for the 'SLA Status' (Select) field in PageType 'CRM Lead' +#: crm/fcrm/pagetype/crm_call_log/crm_call_log.json +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_lead/crm_lead.json msgid "Failed" msgstr "Gagal" @@ -2528,7 +2528,7 @@ msgstr "Gagal membuat templat" msgid "Failed to delete template" msgstr "Gagal menghapus templat" -#: crm/fcrm/doctype/fcrm_settings/fcrm_settings.py:205 +#: crm/fcrm/pagetype/fcrm_settings/fcrm_settings.py:205 msgid "Failed to fetch exchange rate from {0} to {1} on {2}. Please check your internet connection or try again later." msgstr "Gagal mengambil nilai tukar dari {0} ke {1} pada {2}. Harap periksa koneksi internet Anda atau coba lagi nanti." @@ -2561,8 +2561,8 @@ msgstr "Gagal memperbarui profil" msgid "Failed to update template" msgstr "Gagal memperbarui templat" -#. Label of the favicon (Attach) field in DocType 'FCRM Settings' -#: crm/fcrm/doctype/fcrm_settings/fcrm_settings.json +#. Label of the favicon (Attach) field in PageType 'FCRM Settings' +#: crm/fcrm/pagetype/fcrm_settings/fcrm_settings.json #: frontend/src/components/Settings/BrandSettings.vue:87 msgid "Favicon" msgstr "Favicon" @@ -2586,23 +2586,23 @@ msgid "File \"{0}\" was skipped because only {1} uploads are allowed" msgstr "File \"{0}\" dilewati karena hanya {1} unggahan yang diizinkan" #: frontend/src/components/FilesUploader/FilesUploaderArea.vue:359 -msgid "File \"{0}\" was skipped because only {1} uploads are allowed for DocType \"{2}\"" -msgstr "File \"{0}\" dilewati karena hanya {1} unggahan yang diizinkan untuk DocType \"{2}\"" +msgid "File \"{0}\" was skipped because only {1} uploads are allowed for PageType \"{2}\"" +msgstr "File \"{0}\" dilewati karena hanya {1} unggahan yang diizinkan untuk PageType \"{2}\"" #: frontend/src/components/Filter.vue:6 msgid "Filter" msgstr "Filter" -#. Label of the filters (Code) field in DocType 'CRM View Settings' -#. Label of the filters_tab (Tab Break) field in DocType 'CRM View Settings' -#: crm/fcrm/doctype/crm_view_settings/crm_view_settings.json +#. Label of the filters (Code) field in PageType 'CRM View Settings' +#. Label of the filters_tab (Tab Break) field in PageType 'CRM View Settings' +#: crm/fcrm/pagetype/crm_view_settings/crm_view_settings.json msgid "Filters" msgstr "Filter" -#. Label of the first_name (Data) field in DocType 'CRM Deal' -#. Label of the first_name (Data) field in DocType 'CRM Lead' -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_lead/crm_lead.json +#. Label of the first_name (Data) field in PageType 'CRM Deal' +#. Label of the first_name (Data) field in PageType 'CRM Lead' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_lead/crm_lead.json #: frontend/src/components/ColumnSettings.vue:103 #: frontend/src/components/Filter.vue:57 frontend/src/components/Filter.vue:88 #: frontend/src/components/SortBy.vue:6 frontend/src/components/SortBy.vue:103 @@ -2614,30 +2614,30 @@ msgstr "Nama Depan" msgid "First Name is mandatory" msgstr "Nama Depan wajib diisi" -#. Label of the first_responded_on (Datetime) field in DocType 'CRM Deal' -#. Label of the first_responded_on (Datetime) field in DocType 'CRM Lead' -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_lead/crm_lead.json +#. Label of the first_responded_on (Datetime) field in PageType 'CRM Deal' +#. Label of the first_responded_on (Datetime) field in PageType 'CRM Lead' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_lead/crm_lead.json msgid "First Responded On" msgstr "Pertama Kali Direspon Pada" -#. Option for the 'SLA Status' (Select) field in DocType 'CRM Deal' -#. Option for the 'SLA Status' (Select) field in DocType 'CRM Lead' -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_lead/crm_lead.json +#. Option for the 'SLA Status' (Select) field in PageType 'CRM Deal' +#. Option for the 'SLA Status' (Select) field in PageType 'CRM Lead' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_lead/crm_lead.json msgid "First Response Due" msgstr "Respon Pertama Jatuh Tempo" -#. Label of the first_response_time (Duration) field in DocType 'CRM Service +#. Label of the first_response_time (Duration) field in PageType 'CRM Service #. Level Priority' -#: crm/fcrm/doctype/crm_service_level_priority/crm_service_level_priority.json +#: crm/fcrm/pagetype/crm_service_level_priority/crm_service_level_priority.json msgid "First Response TIme" msgstr "Waktu Respon Pertama" -#. Label of the first_response_time (Duration) field in DocType 'CRM Deal' -#. Label of the first_response_time (Duration) field in DocType 'CRM Lead' -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_lead/crm_lead.json +#. Label of the first_response_time (Duration) field in PageType 'CRM Deal' +#. Label of the first_response_time (Duration) field in PageType 'CRM Lead' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_lead/crm_lead.json msgid "First Response Time" msgstr "Waktu Respon Pertama" @@ -2670,66 +2670,66 @@ msgstr "Forecasting berhasil dinonaktifkan" msgid "Forecasting enabled successfully" msgstr "Forecasting berhasil diaktifkan" -#. Option for the 'Apply To' (Select) field in DocType 'CRM Form Script' -#: crm/fcrm/doctype/crm_form_script/crm_form_script.json +#. Option for the 'Apply To' (Select) field in PageType 'CRM Form Script' +#: crm/fcrm/pagetype/crm_form_script/crm_form_script.json msgid "Form" msgstr "Formulir" -#: crm/fcrm/doctype/erpnext_crm_settings/erpnext_crm_settings.js:19 +#: crm/fcrm/pagetype/erpnext_crm_settings/erpnext_crm_settings.js:19 msgid "Form Script updated successfully" msgstr "Skrip formulir berhasil diperbarui" #. Name of a Workspace -#: crm/fcrm/workspace/frappe_crm/frappe_crm.json -msgid "Frappe CRM" -msgstr "Frappe CRM" +#: crm/fcrm/workspace/jingrow_crm/jingrow_crm.json +msgid "Jingrow CRM" +msgstr "Jingrow CRM" #: frontend/src/components/Layouts/AppSidebar.vue:608 -msgid "Frappe CRM mobile" -msgstr "Frappe CRM mobile" +msgid "Jingrow CRM mobile" +msgstr "Jingrow CRM mobile" -#. Option for the 'Weekly Off' (Select) field in DocType 'CRM Holiday List' -#. Option for the 'Workday' (Select) field in DocType 'CRM Service Day' -#: crm/fcrm/doctype/crm_holiday_list/crm_holiday_list.json -#: crm/fcrm/doctype/crm_service_day/crm_service_day.json +#. Option for the 'Weekly Off' (Select) field in PageType 'CRM Holiday List' +#. Option for the 'Workday' (Select) field in PageType 'CRM Service Day' +#: crm/fcrm/pagetype/crm_holiday_list/crm_holiday_list.json +#: crm/fcrm/pagetype/crm_service_day/crm_service_day.json msgid "Friday" msgstr "Jumat" -#. Label of the from (Data) field in DocType 'CRM Call Log' -#. Label of the from (Data) field in DocType 'CRM Status Change Log' -#: crm/fcrm/doctype/crm_call_log/crm_call_log.json -#: crm/fcrm/doctype/crm_status_change_log/crm_status_change_log.json +#. Label of the from (Data) field in PageType 'CRM Call Log' +#. Label of the from (Data) field in PageType 'CRM Status Change Log' +#: crm/fcrm/pagetype/crm_call_log/crm_call_log.json +#: crm/fcrm/pagetype/crm_status_change_log/crm_status_change_log.json msgid "From" msgstr "Dari" -#. Label of the from_date (Date) field in DocType 'CRM Holiday List' -#. Label of the from_date (Datetime) field in DocType 'CRM Status Change Log' -#: crm/fcrm/doctype/crm_holiday_list/crm_holiday_list.json -#: crm/fcrm/doctype/crm_status_change_log/crm_status_change_log.json +#. Label of the from_date (Date) field in PageType 'CRM Holiday List' +#. Label of the from_date (Datetime) field in PageType 'CRM Status Change Log' +#: crm/fcrm/pagetype/crm_holiday_list/crm_holiday_list.json +#: crm/fcrm/pagetype/crm_status_change_log/crm_status_change_log.json msgid "From Date" msgstr "Tanggal Mulai" -#. Label of the from_type (Data) field in DocType 'CRM Status Change Log' -#: crm/fcrm/doctype/crm_status_change_log/crm_status_change_log.json +#. Label of the from_type (Data) field in PageType 'CRM Status Change Log' +#: crm/fcrm/pagetype/crm_status_change_log/crm_status_change_log.json msgid "From Type" msgstr "Tipe Asal" -#. Label of the from_user (Link) field in DocType 'CRM Notification' -#: crm/fcrm/doctype/crm_notification/crm_notification.json +#. Label of the from_user (Link) field in PageType 'CRM Notification' +#: crm/fcrm/pagetype/crm_notification/crm_notification.json msgid "From User" msgstr "Dari Pengguna" -#. Option for the 'SLA Status' (Select) field in DocType 'CRM Deal' -#. Option for the 'SLA Status' (Select) field in DocType 'CRM Lead' -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_lead/crm_lead.json +#. Option for the 'SLA Status' (Select) field in PageType 'CRM Deal' +#. Option for the 'SLA Status' (Select) field in PageType 'CRM Lead' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_lead/crm_lead.json msgid "Fulfilled" msgstr "Terpenuhi" -#. Label of the full_name (Data) field in DocType 'CRM Contacts' -#. Label of the lead_name (Data) field in DocType 'CRM Lead' -#: crm/fcrm/doctype/crm_contacts/crm_contacts.json -#: crm/fcrm/doctype/crm_lead/crm_lead.json +#. Label of the full_name (Data) field in PageType 'CRM Contacts' +#. Label of the lead_name (Data) field in PageType 'CRM Lead' +#: crm/fcrm/pagetype/crm_contacts/crm_contacts.json +#: crm/fcrm/pagetype/crm_lead/crm_lead.json msgid "Full Name" msgstr "Nama Lengkap" @@ -2742,12 +2742,12 @@ msgstr "Konversi Funnel" msgid "GMT+5:30" msgstr "" -#. Label of the gender (Link) field in DocType 'CRM Contacts' -#. Label of the gender (Link) field in DocType 'CRM Deal' -#. Label of the gender (Link) field in DocType 'CRM Lead' -#: crm/fcrm/doctype/crm_contacts/crm_contacts.json -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_lead/crm_lead.json +#. Label of the gender (Link) field in PageType 'CRM Contacts' +#. Label of the gender (Link) field in PageType 'CRM Deal' +#. Label of the gender (Link) field in PageType 'CRM Lead' +#: crm/fcrm/pagetype/crm_contacts/crm_contacts.json +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_lead/crm_lead.json msgid "Gender" msgstr "Jenis Kelamin" @@ -2771,20 +2771,20 @@ msgstr "" msgid "Go to website" msgstr "Buka situs web" -#. Option for the 'Type' (Select) field in DocType 'CRM Fields Layout' -#: crm/fcrm/doctype/crm_fields_layout/crm_fields_layout.json +#. Option for the 'Type' (Select) field in PageType 'CRM Fields Layout' +#: crm/fcrm/pagetype/crm_fields_layout/crm_fields_layout.json msgid "Grid Row" msgstr "Baris Grid" -#. Label of the group_by_tab (Tab Break) field in DocType 'CRM View Settings' -#: crm/fcrm/doctype/crm_view_settings/crm_view_settings.json +#. Label of the group_by_tab (Tab Break) field in PageType 'CRM View Settings' +#: crm/fcrm/pagetype/crm_view_settings/crm_view_settings.json #: frontend/src/components/ViewControls.vue:379 #: frontend/src/components/ViewControls.vue:611 frontend/src/utils/view.js:16 msgid "Group By" msgstr "Grup Berdasarkan" -#. Label of the group_by_field (Data) field in DocType 'CRM View Settings' -#: crm/fcrm/doctype/crm_view_settings/crm_view_settings.json +#. Label of the group_by_field (Data) field in PageType 'CRM View Settings' +#: crm/fcrm/pagetype/crm_view_settings/crm_view_settings.json msgid "Group By Field" msgstr "Grup Berdasarkan Bidang" @@ -2808,28 +2808,28 @@ msgstr "Bantuan" msgid "Helpdesk" msgstr "" -#. Name of a DocType -#: crm/fcrm/doctype/helpdesk_crm_settings/helpdesk_crm_settings.json +#. Name of a PageType +#: crm/fcrm/pagetype/helpdesk_crm_settings/helpdesk_crm_settings.json msgid "Helpdesk CRM Settings" msgstr "" -#. Label of the helpdesk_site_apis_section (Section Break) field in DocType +#. Label of the helpdesk_site_apis_section (Section Break) field in PageType #. 'Helpdesk CRM Settings' -#: crm/fcrm/doctype/helpdesk_crm_settings/helpdesk_crm_settings.json +#: crm/fcrm/pagetype/helpdesk_crm_settings/helpdesk_crm_settings.json msgid "Helpdesk Site API's" msgstr "" -#. Label of the helpdesk_site_url (Data) field in DocType 'Helpdesk CRM +#. Label of the helpdesk_site_url (Data) field in PageType 'Helpdesk CRM #. Settings' -#: crm/fcrm/doctype/helpdesk_crm_settings/helpdesk_crm_settings.json +#: crm/fcrm/pagetype/helpdesk_crm_settings/helpdesk_crm_settings.json msgid "Helpdesk Site URL" msgstr "" -#: crm/fcrm/doctype/helpdesk_crm_settings/helpdesk_crm_settings.py:18 +#: crm/fcrm/pagetype/helpdesk_crm_settings/helpdesk_crm_settings.py:18 msgid "Helpdesk is not installed in the current site" msgstr "" -#: crm/fcrm/doctype/helpdesk_crm_settings/helpdesk_crm_settings.py:40 +#: crm/fcrm/pagetype/helpdesk_crm_settings/helpdesk_crm_settings.py:40 msgid "Helpdesk is not integrated with the CRM" msgstr "" @@ -2845,8 +2845,8 @@ msgstr "" msgid "Hi John, \\n\\nCan you please provide more details on this..." msgstr "Halo John,\\n\\nBisakah Anda memberikan detail lebih lanjut mengenai ini..." -#. Label of the hidden (Check) field in DocType 'CRM Dropdown Item' -#: crm/fcrm/doctype/crm_dropdown_item/crm_dropdown_item.json +#. Label of the hidden (Check) field in PageType 'CRM Dropdown Item' +#: crm/fcrm/pagetype/crm_dropdown_item/crm_dropdown_item.json msgid "Hidden" msgstr "Tersembunyi" @@ -2877,26 +2877,26 @@ msgstr "Sembunyikan label" msgid "Hide preview" msgstr "Sembunyikan pratinjau" -#. Option for the 'Priority' (Select) field in DocType 'CRM Task' -#: crm/fcrm/doctype/crm_task/crm_task.json +#. Option for the 'Priority' (Select) field in PageType 'CRM Task' +#: crm/fcrm/pagetype/crm_task/crm_task.json msgid "High" msgstr "Tinggi" -#. Label of the holiday_list (Link) field in DocType 'CRM Service Level +#. Label of the holiday_list (Link) field in PageType 'CRM Service Level #. Agreement' -#: crm/fcrm/doctype/crm_service_level_agreement/crm_service_level_agreement.json +#: crm/fcrm/pagetype/crm_service_level_agreement/crm_service_level_agreement.json msgid "Holiday List" msgstr "Daftar Hari Libur" -#. Label of the holiday_list_name (Data) field in DocType 'CRM Holiday List' -#: crm/fcrm/doctype/crm_holiday_list/crm_holiday_list.json +#. Label of the holiday_list_name (Data) field in PageType 'CRM Holiday List' +#: crm/fcrm/pagetype/crm_holiday_list/crm_holiday_list.json msgid "Holiday List Name" msgstr "Nama Daftar Hari Libur" -#. Label of the holidays_section (Section Break) field in DocType 'CRM Holiday +#. Label of the holidays_section (Section Break) field in PageType 'CRM Holiday #. List' -#. Label of the holidays (Table) field in DocType 'CRM Holiday List' -#: crm/fcrm/doctype/crm_holiday_list/crm_holiday_list.json +#. Label of the holidays (Table) field in PageType 'CRM Holiday List' +#: crm/fcrm/pagetype/crm_holiday_list/crm_holiday_list.json msgid "Holidays" msgstr "Hari Libur" @@ -2914,15 +2914,15 @@ msgstr "Menu Cepat Beranda" msgid "I understand, add conditions" msgstr "" -#. Label of the id (Data) field in DocType 'CRM Call Log' -#: crm/fcrm/doctype/crm_call_log/crm_call_log.json +#. Label of the id (Data) field in PageType 'CRM Call Log' +#: crm/fcrm/pagetype/crm_call_log/crm_call_log.json msgid "ID" msgstr "ID" -#. Label of the icon (Code) field in DocType 'CRM Dropdown Item' -#. Label of the icon (Data) field in DocType 'CRM View Settings' -#: crm/fcrm/doctype/crm_dropdown_item/crm_dropdown_item.json -#: crm/fcrm/doctype/crm_view_settings/crm_view_settings.json +#. Label of the icon (Code) field in PageType 'CRM Dropdown Item' +#. Label of the icon (Data) field in PageType 'CRM View Settings' +#: crm/fcrm/pagetype/crm_dropdown_item/crm_dropdown_item.json +#: crm/fcrm/pagetype/crm_view_settings/crm_view_settings.json msgid "Icon" msgstr "Ikon" @@ -2942,10 +2942,10 @@ msgstr "Jika diaktifkan, email keluar dapat dikirim dari akun ini." msgid "If enabled, records can be created from the incoming emails on this account." msgstr "Jika diaktifkan, catatan dapat dibuat dari email yang masuk di akun ini." -#. Label of the image (Attach Image) field in DocType 'CRM Lead' -#. Label of the image (Attach Image) field in DocType 'CRM Product' -#: crm/fcrm/doctype/crm_lead/crm_lead.json -#: crm/fcrm/doctype/crm_product/crm_product.json +#. Label of the image (Attach Image) field in PageType 'CRM Lead' +#. Label of the image (Attach Image) field in PageType 'CRM Product' +#: crm/fcrm/pagetype/crm_lead/crm_lead.json +#: crm/fcrm/pagetype/crm_product/crm_product.json msgid "Image" msgstr "Gambar" @@ -2957,10 +2957,10 @@ msgstr "Gambar" msgid "In" msgstr "Di Dalam" -#. Option for the 'Status' (Select) field in DocType 'CRM Call Log' -#. Option for the 'Status' (Select) field in DocType 'CRM Task' -#: crm/fcrm/doctype/crm_call_log/crm_call_log.json -#: crm/fcrm/doctype/crm_task/crm_task.json +#. Option for the 'Status' (Select) field in PageType 'CRM Call Log' +#. Option for the 'Status' (Select) field in PageType 'CRM Task' +#: crm/fcrm/pagetype/crm_call_log/crm_call_log.json +#: crm/fcrm/pagetype/crm_task/crm_task.json msgid "In Progress" msgstr "Sedang Berjalan" @@ -2976,8 +2976,8 @@ msgstr "Panggilan Masuk" msgid "Inbox" msgstr "Kotak Masuk" -#. Option for the 'Type' (Select) field in DocType 'CRM Call Log' -#: crm/fcrm/doctype/crm_call_log/crm_call_log.json +#. Option for the 'Type' (Select) field in PageType 'CRM Call Log' +#: crm/fcrm/pagetype/crm_call_log/crm_call_log.json msgid "Incoming" msgstr "Masuk" @@ -2985,24 +2985,24 @@ msgstr "Masuk" msgid "Incoming call..." msgstr "Panggilan masuk..." -#. Label of a shortcut in the Frappe CRM Workspace -#: crm/fcrm/workspace/frappe_crm/frappe_crm.json +#. Label of a shortcut in the Jingrow CRM Workspace +#: crm/fcrm/workspace/jingrow_crm/jingrow_crm.json msgid "Industries" msgstr "Industri" -#. Label of the industry (Link) field in DocType 'CRM Deal' -#. Label of the industry (Data) field in DocType 'CRM Industry' -#. Label of the industry (Link) field in DocType 'CRM Lead' -#. Label of the industry (Link) field in DocType 'CRM Organization' -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_industry/crm_industry.json -#: crm/fcrm/doctype/crm_lead/crm_lead.json -#: crm/fcrm/doctype/crm_organization/crm_organization.json +#. Label of the industry (Link) field in PageType 'CRM Deal' +#. Label of the industry (Data) field in PageType 'CRM Industry' +#. Label of the industry (Link) field in PageType 'CRM Lead' +#. Label of the industry (Link) field in PageType 'CRM Organization' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_industry/crm_industry.json +#: crm/fcrm/pagetype/crm_lead/crm_lead.json +#: crm/fcrm/pagetype/crm_organization/crm_organization.json msgid "Industry" msgstr "Industri" -#. Option for the 'Status' (Select) field in DocType 'CRM Call Log' -#: crm/fcrm/doctype/crm_call_log/crm_call_log.json +#. Option for the 'Status' (Select) field in PageType 'CRM Call Log' +#: crm/fcrm/pagetype/crm_call_log/crm_call_log.json msgid "Initiated" msgstr "Diinisiasi" @@ -3037,7 +3037,7 @@ msgstr "Integrasi" msgid "Introduction" msgstr "Pengantar" -#: crm/fcrm/doctype/crm_twilio_settings/crm_twilio_settings.py:33 +#: crm/fcrm/pagetype/crm_twilio_settings/crm_twilio_settings.py:33 msgid "Invalid Account SID or Auth Token." msgstr "Account SID atau Auth Token tidak valid." @@ -3054,7 +3054,7 @@ msgstr "Nomor Exotel Tidak Valid" msgid "Invalid chart name" msgstr "Nama bagan tidak valid" -#: crm/fcrm/doctype/crm_exotel_settings/crm_exotel_settings.py:25 +#: crm/fcrm/pagetype/crm_exotel_settings/crm_exotel_settings.py:25 msgid "Invalid credentials" msgstr "Kredensial tidak valid" @@ -3103,8 +3103,8 @@ msgstr "Undang pengguna untuk mengakses CRM. Tentukan peran mereka untuk mengont msgid "Invite your team" msgstr "Undang tim Anda" -#. Label of the invited_by (Link) field in DocType 'CRM Invitation' -#: crm/fcrm/doctype/crm_invitation/crm_invitation.json +#. Label of the invited_by (Link) field in PageType 'CRM Invitation' +#: crm/fcrm/pagetype/crm_invitation/crm_invitation.json msgid "Invited By" msgstr "Diundang Sebagai" @@ -3118,59 +3118,59 @@ msgstr "Diundang Sebagai" msgid "Is" msgstr "Berstatus" -#. Label of the is_default (Check) field in DocType 'CRM View Settings' -#: crm/fcrm/doctype/crm_view_settings/crm_view_settings.json +#. Label of the is_default (Check) field in PageType 'CRM View Settings' +#: crm/fcrm/pagetype/crm_view_settings/crm_view_settings.json msgid "Is Default" msgstr "Default" -#. Label of the is_erpnext_in_different_site (Check) field in DocType 'ERPNext +#. Label of the is_erpnext_in_different_site (Check) field in PageType 'ERPNext #. CRM Settings' -#: crm/fcrm/doctype/erpnext_crm_settings/erpnext_crm_settings.json +#: crm/fcrm/pagetype/erpnext_crm_settings/erpnext_crm_settings.json msgid "Is ERPNext installed on a different site?" msgstr "ERPNext terpasang di situs berbeda?" -#. Label of the is_group (Check) field in DocType 'CRM Territory' -#: crm/fcrm/doctype/crm_territory/crm_territory.json +#. Label of the is_group (Check) field in PageType 'CRM Territory' +#: crm/fcrm/pagetype/crm_territory/crm_territory.json msgid "Is Group" msgstr "Grup" -#. Label of the is_helpdesk_in_different_site (Check) field in DocType +#. Label of the is_helpdesk_in_different_site (Check) field in PageType #. 'Helpdesk CRM Settings' -#: crm/fcrm/doctype/helpdesk_crm_settings/helpdesk_crm_settings.json +#: crm/fcrm/pagetype/helpdesk_crm_settings/helpdesk_crm_settings.json msgid "Is Helpdesk installed on a different site?" msgstr "" -#. Label of the is_primary (Check) field in DocType 'CRM Contacts' -#. Label of the is_primary (Check) field in DocType 'CRM Telephony Phone' -#: crm/fcrm/doctype/crm_contacts/crm_contacts.json -#: crm/fcrm/doctype/crm_telephony_phone/crm_telephony_phone.json +#. Label of the is_primary (Check) field in PageType 'CRM Contacts' +#. Label of the is_primary (Check) field in PageType 'CRM Telephony Phone' +#: crm/fcrm/pagetype/crm_contacts/crm_contacts.json +#: crm/fcrm/pagetype/crm_telephony_phone/crm_telephony_phone.json msgid "Is Primary" msgstr "Utama" -#. Label of the is_standard (Check) field in DocType 'CRM Dropdown Item' -#. Label of the is_standard (Check) field in DocType 'CRM Form Script' -#. Label of the is_standard (Check) field in DocType 'CRM View Settings' -#: crm/fcrm/doctype/crm_dropdown_item/crm_dropdown_item.json -#: crm/fcrm/doctype/crm_form_script/crm_form_script.json -#: crm/fcrm/doctype/crm_view_settings/crm_view_settings.json +#. Label of the is_standard (Check) field in PageType 'CRM Dropdown Item' +#. Label of the is_standard (Check) field in PageType 'CRM Form Script' +#. Label of the is_standard (Check) field in PageType 'CRM View Settings' +#: crm/fcrm/pagetype/crm_dropdown_item/crm_dropdown_item.json +#: crm/fcrm/pagetype/crm_form_script/crm_form_script.json +#: crm/fcrm/pagetype/crm_view_settings/crm_view_settings.json msgid "Is Standard" msgstr "Standar" -#. Description of the 'Enable Forecasting' (Check) field in DocType 'FCRM +#. Description of the 'Enable Forecasting' (Check) field in PageType 'FCRM #. Settings' -#: crm/fcrm/doctype/fcrm_settings/fcrm_settings.json +#: crm/fcrm/pagetype/fcrm_settings/fcrm_settings.json msgid "It will make deal's \"Expected Closure Date\" & \"Expected Deal Value\" mandatory to get accurate forecasting insights" msgstr "Mengaktifkan ini akan mewajibkan pengisian \"Tanggal Perkiraan Penutupan\" & \"Nilai Perkiraan Kesepakatan\" untuk mendapatkan gambaran perkiraan yang akurat" -#. Label of the json (JSON) field in DocType 'CRM Global Settings' -#: crm/fcrm/doctype/crm_global_settings/crm_global_settings.json +#. Label of the json (JSON) field in PageType 'CRM Global Settings' +#: crm/fcrm/pagetype/crm_global_settings/crm_global_settings.json msgid "JSON" msgstr "JSON" -#. Label of the job_title (Data) field in DocType 'CRM Deal' -#. Label of the job_title (Data) field in DocType 'CRM Lead' -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_lead/crm_lead.json +#. Label of the job_title (Data) field in PageType 'CRM Deal' +#. Label of the job_title (Data) field in PageType 'CRM Lead' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_lead/crm_lead.json msgid "Job Title" msgstr "Jabatan" @@ -3182,20 +3182,20 @@ msgstr "Jabatan" msgid "John Doe" msgstr "John Doe" -#. Label of the kanban_tab (Tab Break) field in DocType 'CRM View Settings' -#: crm/fcrm/doctype/crm_view_settings/crm_view_settings.json +#. Label of the kanban_tab (Tab Break) field in PageType 'CRM View Settings' +#: crm/fcrm/pagetype/crm_view_settings/crm_view_settings.json #: frontend/src/components/ViewControls.vue:384 #: frontend/src/components/ViewControls.vue:600 frontend/src/utils/view.js:20 msgid "Kanban" msgstr "Kanban" -#. Label of the kanban_columns (Code) field in DocType 'CRM View Settings' -#: crm/fcrm/doctype/crm_view_settings/crm_view_settings.json +#. Label of the kanban_columns (Code) field in PageType 'CRM View Settings' +#: crm/fcrm/pagetype/crm_view_settings/crm_view_settings.json msgid "Kanban Columns" msgstr "Kolom Kanban" -#. Label of the kanban_fields (Code) field in DocType 'CRM View Settings' -#: crm/fcrm/doctype/crm_view_settings/crm_view_settings.json +#. Label of the kanban_fields (Code) field in PageType 'CRM View Settings' +#: crm/fcrm/pagetype/crm_view_settings/crm_view_settings.json msgid "Kanban Fields" msgstr "Bidang Kanban" @@ -3204,15 +3204,15 @@ msgstr "Bidang Kanban" msgid "Kanban Settings" msgstr "Pengaturan Kanban" -#. Label of the key (Data) field in DocType 'CRM Invitation' -#: crm/fcrm/doctype/crm_invitation/crm_invitation.json +#. Label of the key (Data) field in PageType 'CRM Invitation' +#: crm/fcrm/pagetype/crm_invitation/crm_invitation.json msgid "Key" msgstr "Kunci" -#. Label of the label (Data) field in DocType 'CRM Dropdown Item' -#. Label of the label (Data) field in DocType 'CRM View Settings' -#: crm/fcrm/doctype/crm_dropdown_item/crm_dropdown_item.json -#: crm/fcrm/doctype/crm_view_settings/crm_view_settings.json +#. Label of the label (Data) field in PageType 'CRM Dropdown Item' +#. Label of the label (Data) field in PageType 'CRM View Settings' +#: crm/fcrm/pagetype/crm_dropdown_item/crm_dropdown_item.json +#: crm/fcrm/pagetype/crm_view_settings/crm_view_settings.json #: frontend/src/components/ColumnSettings.vue:100 msgid "Label" msgstr "Label" @@ -3229,10 +3229,10 @@ msgstr "6 Bulan Terakhir" msgid "Last Month" msgstr "Bulan Lalu" -#. Label of the last_name (Data) field in DocType 'CRM Deal' -#. Label of the last_name (Data) field in DocType 'CRM Lead' -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_lead/crm_lead.json +#. Label of the last_name (Data) field in PageType 'CRM Deal' +#. Label of the last_name (Data) field in PageType 'CRM Lead' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_lead/crm_lead.json msgid "Last Name" msgstr "Nama Belakang" @@ -3240,9 +3240,9 @@ msgstr "Nama Belakang" msgid "Last Quarter" msgstr "Kuartal Lalu" -#. Label of the last_status_change_log (Link) field in DocType 'CRM Status +#. Label of the last_status_change_log (Link) field in PageType 'CRM Status #. Change Log' -#: crm/fcrm/doctype/crm_status_change_log/crm_status_change_log.json +#: crm/fcrm/pagetype/crm_status_change_log/crm_status_change_log.json msgid "Last Status Change Log" msgstr "Log Perubahan Status Terakhir" @@ -3270,15 +3270,15 @@ msgstr "Nama belakang" msgid "Last user assigned by this rule" msgstr "" -#. Label of the layout (Code) field in DocType 'CRM Dashboard' -#. Label of the layout (Code) field in DocType 'CRM Fields Layout' -#: crm/fcrm/doctype/crm_dashboard/crm_dashboard.json -#: crm/fcrm/doctype/crm_fields_layout/crm_fields_layout.json +#. Label of the layout (Code) field in PageType 'CRM Dashboard' +#. Label of the layout (Code) field in PageType 'CRM Fields Layout' +#: crm/fcrm/pagetype/crm_dashboard/crm_dashboard.json +#: crm/fcrm/pagetype/crm_fields_layout/crm_fields_layout.json msgid "Layout" msgstr "Layout" -#. Label of the lead (Link) field in DocType 'CRM Deal' -#: crm/fcrm/doctype/crm_deal/crm_deal.json +#. Label of the lead (Link) field in PageType 'CRM Deal' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json #: frontend/src/components/Calendar/CalendarEventPanel.vue:263 #: frontend/src/components/Calendar/CalendarEventPanel.vue:288 #: frontend/src/components/Layouts/AppSidebar.vue:550 @@ -3291,32 +3291,32 @@ msgstr "Layout" msgid "Lead" msgstr "Prospek" -#. Label of the lead_details_tab (Tab Break) field in DocType 'CRM Deal' -#: crm/fcrm/doctype/crm_deal/crm_deal.json +#. Label of the lead_details_tab (Tab Break) field in PageType 'CRM Deal' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json msgid "Lead Details" msgstr "Detail Prospek" -#. Label of the lead_name (Data) field in DocType 'CRM Deal' -#: crm/fcrm/doctype/crm_deal/crm_deal.json +#. Label of the lead_name (Data) field in PageType 'CRM Deal' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json msgid "Lead Name" msgstr "Nama Prospek" -#. Label of the lead_owner (Link) field in DocType 'CRM Lead' -#: crm/fcrm/doctype/crm_lead/crm_lead.json +#. Label of the lead_owner (Link) field in PageType 'CRM Lead' +#: crm/fcrm/pagetype/crm_lead/crm_lead.json msgid "Lead Owner" msgstr "Pemilik Prospek" -#: crm/fcrm/doctype/crm_lead/crm_lead.py:73 +#: crm/fcrm/pagetype/crm_lead/crm_lead.py:73 msgid "Lead Owner cannot be same as the Lead Email Address" msgstr "Pemilik Prospek tidak boleh sama dengan Alamat Email Prospek" -#. Label of a shortcut in the Frappe CRM Workspace -#: crm/fcrm/workspace/frappe_crm/frappe_crm.json +#. Label of a shortcut in the Jingrow CRM Workspace +#: crm/fcrm/workspace/jingrow_crm/jingrow_crm.json msgid "Lead Sources" msgstr "Sumber Prospek" -#. Label of a shortcut in the Frappe CRM Workspace -#: crm/fcrm/workspace/frappe_crm/frappe_crm.json +#. Label of a shortcut in the Jingrow CRM Workspace +#: crm/fcrm/workspace/jingrow_crm/jingrow_crm.json msgid "Lead Statuses" msgstr "Status Prospek" @@ -3328,8 +3328,8 @@ msgstr "Analisis saluran perolehan prospek" msgid "Lead to deal conversion pipeline" msgstr "Pipeline konversi prospek menjadi kesepakatan" -#. Label of a shortcut in the Frappe CRM Workspace -#: crm/fcrm/workspace/frappe_crm/frappe_crm.json +#. Label of a shortcut in the Jingrow CRM Workspace +#: crm/fcrm/workspace/jingrow_crm/jingrow_crm.json #: frontend/src/pages/InvalidPage.vue:9 frontend/src/pages/Lead.vue:340 #: frontend/src/pages/MobileLead.vue:291 msgid "Leads" @@ -3345,8 +3345,8 @@ msgstr "Prospek berdasarkan sumber" msgid "Learn about conditions" msgstr "" -#. Label of the lft (Int) field in DocType 'CRM Territory' -#: crm/fcrm/doctype/crm_territory/crm_territory.json +#. Label of the lft (Int) field in PageType 'CRM Territory' +#: crm/fcrm/pagetype/crm_territory/crm_territory.json msgid "Left" msgstr "Left" @@ -3367,15 +3367,15 @@ msgstr "Mirip" msgid "Link" msgstr "Tautan" -#. Label of the links (Table) field in DocType 'CRM Call Log' -#: crm/fcrm/doctype/crm_call_log/crm_call_log.json +#. Label of the links (Table) field in PageType 'CRM Call Log' +#: crm/fcrm/pagetype/crm_call_log/crm_call_log.json msgid "Links" msgstr "Tautan" -#. Option for the 'Apply To' (Select) field in DocType 'CRM Form Script' -#. Label of the list_tab (Tab Break) field in DocType 'CRM View Settings' -#: crm/fcrm/doctype/crm_form_script/crm_form_script.json -#: crm/fcrm/doctype/crm_view_settings/crm_view_settings.json +#. Option for the 'Apply To' (Select) field in PageType 'CRM Form Script' +#. Label of the list_tab (Tab Break) field in PageType 'CRM View Settings' +#: crm/fcrm/pagetype/crm_form_script/crm_form_script.json +#: crm/fcrm/pagetype/crm_view_settings/crm_view_settings.json #: frontend/src/components/ViewControls.vue:374 #: frontend/src/components/ViewControls.vue:589 frontend/src/utils/view.js:12 msgid "List" @@ -3385,9 +3385,9 @@ msgstr "Daftar" msgid "Listen" msgstr "Dengarkan" -#. Label of the load_default_columns (Check) field in DocType 'CRM View +#. Label of the load_default_columns (Check) field in PageType 'CRM View #. Settings' -#: crm/fcrm/doctype/crm_view_settings/crm_view_settings.json +#: crm/fcrm/pagetype/crm_view_settings/crm_view_settings.json msgid "Load Default Columns" msgstr "Muat Kolom Default" @@ -3403,10 +3403,10 @@ msgstr "Muat lebih banyak" msgid "Loading..." msgstr "Memuat..." -#. Label of the log_tab (Tab Break) field in DocType 'CRM Deal' -#. Label of the log_tab (Tab Break) field in DocType 'CRM Lead' -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_lead/crm_lead.json +#. Label of the log_tab (Tab Break) field in PageType 'CRM Deal' +#. Label of the log_tab (Tab Break) field in PageType 'CRM Lead' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_lead/crm_lead.json msgid "Log" msgstr "Log" @@ -3417,28 +3417,28 @@ msgid "Log a Call" msgstr "Catat Panggilan" #: frontend/src/composables/frappecloud.js:23 -msgid "Login to Frappe Cloud?" -msgstr "Masuk ke Frappe Cloud?" +msgid "Login to Jingrow Cloud?" +msgstr "Masuk ke Jingrow Cloud?" -#. Label of the brand_logo (Attach) field in DocType 'FCRM Settings' -#: crm/fcrm/doctype/fcrm_settings/fcrm_settings.json +#. Label of the brand_logo (Attach) field in PageType 'FCRM Settings' +#: crm/fcrm/pagetype/fcrm_settings/fcrm_settings.json msgid "Logo" msgstr "Logo" -#. Option for the 'Type' (Select) field in DocType 'CRM Deal Status' -#: crm/fcrm/doctype/crm_deal_status/crm_deal_status.json +#. Option for the 'Type' (Select) field in PageType 'CRM Deal Status' +#: crm/fcrm/pagetype/crm_deal_status/crm_deal_status.json msgid "Lost" msgstr "Gagal" -#. Label of the lost_notes (Text) field in DocType 'CRM Deal' -#: crm/fcrm/doctype/crm_deal/crm_deal.json +#. Label of the lost_notes (Text) field in PageType 'CRM Deal' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json msgid "Lost Notes" msgstr "Catatan Kegagalan" -#. Label of the lost_reason (Link) field in DocType 'CRM Deal' -#. Label of the lost_reason (Data) field in DocType 'CRM Lost Reason' -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_lost_reason/crm_lost_reason.json +#. Label of the lost_reason (Link) field in PageType 'CRM Deal' +#. Label of the lost_reason (Data) field in PageType 'CRM Lost Reason' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_lost_reason/crm_lost_reason.json msgid "Lost Reason" msgstr "Alasan Kegagalan" @@ -3464,8 +3464,8 @@ msgstr "Alasan gagal" msgid "Lost reason is required" msgstr "Alasan gagal wajib diisi" -#. Option for the 'Priority' (Select) field in DocType 'CRM Task' -#: crm/fcrm/doctype/crm_task/crm_task.json +#. Option for the 'Priority' (Select) field in PageType 'CRM Task' +#: crm/fcrm/pagetype/crm_task/crm_task.json msgid "Low" msgstr "Rendah" @@ -3542,8 +3542,8 @@ msgstr "Manajer" msgid "Mandatory field error: {0}" msgstr "Kesalahan bidang wajib: {0}" -#. Option for the 'Telephony Medium' (Select) field in DocType 'CRM Call Log' -#: crm/fcrm/doctype/crm_call_log/crm_call_log.json +#. Option for the 'Telephony Medium' (Select) field in PageType 'CRM Call Log' +#: crm/fcrm/pagetype/crm_call_log/crm_call_log.json msgid "Manual" msgstr "Manual" @@ -3562,25 +3562,25 @@ msgstr "Data Master" msgid "May 1, 2025" msgstr "" -#. Label of the medium (Data) field in DocType 'CRM Call Log' -#. Option for the 'Priority' (Select) field in DocType 'CRM Task' -#: crm/fcrm/doctype/crm_call_log/crm_call_log.json -#: crm/fcrm/doctype/crm_task/crm_task.json +#. Label of the medium (Data) field in PageType 'CRM Call Log' +#. Option for the 'Priority' (Select) field in PageType 'CRM Task' +#: crm/fcrm/pagetype/crm_call_log/crm_call_log.json +#: crm/fcrm/pagetype/crm_task/crm_task.json msgid "Medium" msgstr "Media" -#. Option for the 'Type' (Select) field in DocType 'CRM Notification' -#: crm/fcrm/doctype/crm_notification/crm_notification.json +#. Option for the 'Type' (Select) field in PageType 'CRM Notification' +#: crm/fcrm/pagetype/crm_notification/crm_notification.json msgid "Mention" msgstr "Sebutan" -#. Label of the message (HTML Editor) field in DocType 'CRM Notification' -#: crm/fcrm/doctype/crm_notification/crm_notification.json +#. Label of the message (HTML Editor) field in PageType 'CRM Notification' +#: crm/fcrm/pagetype/crm_notification/crm_notification.json msgid "Message" msgstr "Pesan" -#. Label of the middle_name (Data) field in DocType 'CRM Lead' -#: crm/fcrm/doctype/crm_lead/crm_lead.json +#. Label of the middle_name (Data) field in PageType 'CRM Lead' +#: crm/fcrm/pagetype/crm_lead/crm_lead.json msgid "Middle Name" msgstr "Nama Tengah" @@ -3588,10 +3588,10 @@ msgstr "Nama Tengah" msgid "Minimize" msgstr "" -#. Label of the mobile_no (Data) field in DocType 'CRM Contacts' -#. Label of the mobile_no (Data) field in DocType 'CRM Lead' -#: crm/fcrm/doctype/crm_contacts/crm_contacts.json -#: crm/fcrm/doctype/crm_lead/crm_lead.json +#. Label of the mobile_no (Data) field in PageType 'CRM Contacts' +#. Label of the mobile_no (Data) field in PageType 'CRM Lead' +#: crm/fcrm/pagetype/crm_contacts/crm_contacts.json +#: crm/fcrm/pagetype/crm_lead/crm_lead.json msgid "Mobile No" msgstr "Nomor Ponsel" @@ -3600,8 +3600,8 @@ msgstr "Nomor Ponsel" msgid "Mobile No should be a number" msgstr "Nomor Ponsel harus berupa angka" -#. Label of the mobile_no (Data) field in DocType 'CRM Telephony Agent' -#: crm/fcrm/doctype/crm_telephony_agent/crm_telephony_agent.json +#. Label of the mobile_no (Data) field in PageType 'CRM Telephony Agent' +#: crm/fcrm/pagetype/crm_telephony_agent/crm_telephony_agent.json msgid "Mobile No." msgstr "No. Ponsel" @@ -3623,10 +3623,10 @@ msgstr "Instalasi aplikasi seluler" msgid "Mobile no" msgstr "Nomor Ponsel" -#. Option for the 'Weekly Off' (Select) field in DocType 'CRM Holiday List' -#. Option for the 'Workday' (Select) field in DocType 'CRM Service Day' -#: crm/fcrm/doctype/crm_holiday_list/crm_holiday_list.json -#: crm/fcrm/doctype/crm_service_day/crm_service_day.json +#. Option for the 'Weekly Off' (Select) field in PageType 'CRM Holiday List' +#. Option for the 'Workday' (Select) field in PageType 'CRM Service Day' +#: crm/fcrm/pagetype/crm_holiday_list/crm_holiday_list.json +#: crm/fcrm/pagetype/crm_service_day/crm_service_day.json msgid "Monday" msgstr "Senin" @@ -3658,12 +3658,12 @@ msgstr "Pindah ke tab sebelumnya" msgid "My Open Deals" msgstr "Kesepakatan Terbuka Saya" -#. Label of the title (Data) field in DocType 'CRM Dashboard' -#. Label of the name1 (Data) field in DocType 'CRM Dropdown Item' -#. Label of the brand_name (Data) field in DocType 'FCRM Settings' -#: crm/fcrm/doctype/crm_dashboard/crm_dashboard.json -#: crm/fcrm/doctype/crm_dropdown_item/crm_dropdown_item.json -#: crm/fcrm/doctype/fcrm_settings/fcrm_settings.json +#. Label of the title (Data) field in PageType 'CRM Dashboard' +#. Label of the name1 (Data) field in PageType 'CRM Dropdown Item' +#. Label of the brand_name (Data) field in PageType 'FCRM Settings' +#: crm/fcrm/pagetype/crm_dashboard/crm_dashboard.json +#: crm/fcrm/pagetype/crm_dropdown_item/crm_dropdown_item.json +#: crm/fcrm/pagetype/fcrm_settings/fcrm_settings.json #: frontend/src/components/Settings/AssignmentRules/AssignmentRuleView.vue:51 #: frontend/src/components/Settings/AssignmentRules/AssignmentRuleView.vue:52 #: frontend/src/components/Settings/EmailTemplate/EditEmailTemplate.vue:39 @@ -3680,10 +3680,10 @@ msgstr "Nama" msgid "Name is required" msgstr "Nama wajib diisi" -#. Label of the naming_series (Select) field in DocType 'CRM Deal' -#. Label of the naming_series (Select) field in DocType 'CRM Product' -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_product/crm_product.json +#. Label of the naming_series (Select) field in PageType 'CRM Deal' +#. Label of the naming_series (Select) field in PageType 'CRM Product' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_product/crm_product.json msgid "Naming Series" msgstr "Seri Penamaan" @@ -3691,15 +3691,15 @@ msgstr "Seri Penamaan" msgid "Nested conditions" msgstr "" -#. Label of the net_amount (Currency) field in DocType 'CRM Products' -#: crm/fcrm/doctype/crm_products/crm_products.json +#. Label of the net_amount (Currency) field in PageType 'CRM Products' +#: crm/fcrm/pagetype/crm_products/crm_products.json msgid "Net Amount" msgstr "Jumlah Bersih" -#. Label of the net_total (Currency) field in DocType 'CRM Deal' -#. Label of the net_total (Currency) field in DocType 'CRM Lead' -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_lead/crm_lead.json +#. Label of the net_total (Currency) field in PageType 'CRM Deal' +#. Label of the net_total (Currency) field in PageType 'CRM Lead' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_lead/crm_lead.json msgid "Net Total" msgstr "Total Bersih" @@ -3814,8 +3814,8 @@ msgstr "Bulan Depan" msgid "Next Quarter" msgstr "Kuartal Depan" -#. Label of the next_step (Data) field in DocType 'CRM Deal' -#: crm/fcrm/doctype/crm_deal/crm_deal.json +#. Label of the next_step (Data) field in PageType 'CRM Deal' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json msgid "Next Step" msgstr "Langkah Selanjutnya" @@ -3831,8 +3831,8 @@ msgstr "Tahun Depan" msgid "No" msgstr "Tidak" -#. Option for the 'Status' (Select) field in DocType 'CRM Call Log' -#: crm/fcrm/doctype/crm_call_log/crm_call_log.json +#. Option for the 'Status' (Select) field in PageType 'CRM Call Log' +#: crm/fcrm/pagetype/crm_call_log/crm_call_log.json msgid "No Answer" msgstr "Tidak Dijawab" @@ -3930,12 +3930,12 @@ msgstr "Tidak Ada {0} yang Tersedia" msgid "No {0} Found" msgstr "{0} tidak ditemukan" -#. Label of the no_of_employees (Select) field in DocType 'CRM Deal' -#. Label of the no_of_employees (Select) field in DocType 'CRM Lead' -#. Label of the no_of_employees (Select) field in DocType 'CRM Organization' -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_lead/crm_lead.json -#: crm/fcrm/doctype/crm_organization/crm_organization.json +#. Label of the no_of_employees (Select) field in PageType 'CRM Deal' +#. Label of the no_of_employees (Select) field in PageType 'CRM Lead' +#. Label of the no_of_employees (Select) field in PageType 'CRM Organization' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_lead/crm_lead.json +#: crm/fcrm/pagetype/crm_organization/crm_organization.json msgid "No. of Employees" msgstr "Jumlah Karyawan" @@ -3981,24 +3981,24 @@ msgstr "Tidak Cocok" msgid "Not Saved" msgstr "Tidak Disimpan" -#: crm/fcrm/doctype/crm_deal/crm_deal.py:272 +#: crm/fcrm/pagetype/crm_deal/crm_deal.py:272 msgid "Not allowed to add contact to Deal" msgstr "Tidak diizinkan menambahkan kontak ke Kesepakatan" -#: crm/fcrm/doctype/crm_lead/crm_lead.py:408 +#: crm/fcrm/pagetype/crm_lead/crm_lead.py:408 msgid "Not allowed to convert Lead to Deal" msgstr "Tidak diizinkan mengonversi Prospek menjadi Kesepakatan" -#: crm/fcrm/doctype/crm_deal/crm_deal.py:283 +#: crm/fcrm/pagetype/crm_deal/crm_deal.py:283 msgid "Not allowed to remove contact from Deal" msgstr "Tidak diizinkan menghapus kontak dari Kesepakatan" -#: crm/fcrm/doctype/crm_deal/crm_deal.py:294 +#: crm/fcrm/pagetype/crm_deal/crm_deal.py:294 msgid "Not allowed to set primary contact for Deal" msgstr "Tidak diizinkan mengatur kontak utama untuk Kesepakatan" -#. Label of the note (Link) field in DocType 'CRM Call Log' -#: crm/fcrm/doctype/crm_call_log/crm_call_log.json +#. Label of the note (Link) field in PageType 'CRM Call Log' +#: crm/fcrm/pagetype/crm_call_log/crm_call_log.json #: frontend/src/components/Layouts/AppSidebar.vue:554 msgid "Note" msgstr "Catatan" @@ -4017,22 +4017,22 @@ msgstr "Tampilan Catatan" msgid "Notification" msgstr "Notifikasi" -#. Label of the notification_text (Text) field in DocType 'CRM Notification' -#: crm/fcrm/doctype/crm_notification/crm_notification.json +#. Label of the notification_text (Text) field in PageType 'CRM Notification' +#: crm/fcrm/pagetype/crm_notification/crm_notification.json msgid "Notification Text" msgstr "Teks Notifikasi" -#. Label of the notification_type_doc (Dynamic Link) field in DocType 'CRM +#. Label of the notification_type_pg (Dynamic Link) field in PageType 'CRM #. Notification' -#: crm/fcrm/doctype/crm_notification/crm_notification.json -msgid "Notification Type Doc" +#: crm/fcrm/pagetype/crm_notification/crm_notification.json +msgid "Notification Type Pg" msgstr "Dokumen Tipe Notifikasi" -#. Label of the notification_type_doctype (Link) field in DocType 'CRM +#. Label of the notification_type_pagetype (Link) field in PageType 'CRM #. Notification' -#: crm/fcrm/doctype/crm_notification/crm_notification.json -msgid "Notification Type Doctype" -msgstr "DocType Tipe Notifikasi" +#: crm/fcrm/pagetype/crm_notification/crm_notification.json +msgid "Notification Type Pagetype" +msgstr "PageType Tipe Notifikasi" #: frontend/src/components/Layouts/AppSidebar.vue:13 #: frontend/src/components/Mobile/MobileSidebar.vue:23 @@ -4041,8 +4041,8 @@ msgstr "DocType Tipe Notifikasi" msgid "Notifications" msgstr "Notifikasi" -#. Label of the number (Data) field in DocType 'CRM Telephony Phone' -#: crm/fcrm/doctype/crm_telephony_phone/crm_telephony_phone.json +#. Label of the number (Data) field in PageType 'CRM Telephony Phone' +#: crm/fcrm/pagetype/crm_telephony_phone/crm_telephony_phone.json msgid "Number" msgstr "Nomor" @@ -4064,18 +4064,18 @@ msgstr "Jumlah kesepakatan dan nilai total per tenaga penjualan" msgid "Old Condition" msgstr "" -#. Label of the old_parent (Link) field in DocType 'CRM Territory' -#: crm/fcrm/doctype/crm_territory/crm_territory.json +#. Label of the old_parent (Link) field in PageType 'CRM Territory' +#: crm/fcrm/pagetype/crm_territory/crm_territory.json msgid "Old Parent" msgstr "Induk Lama" -#. Option for the 'Type' (Select) field in DocType 'CRM Deal Status' -#: crm/fcrm/doctype/crm_deal_status/crm_deal_status.json +#. Option for the 'Type' (Select) field in PageType 'CRM Deal Status' +#: crm/fcrm/pagetype/crm_deal_status/crm_deal_status.json msgid "On Hold" msgstr "Ditunda" -#. Option for the 'Type' (Select) field in DocType 'CRM Deal Status' -#: crm/fcrm/doctype/crm_deal_status/crm_deal_status.json +#. Option for the 'Type' (Select) field in PageType 'CRM Deal Status' +#: crm/fcrm/pagetype/crm_deal_status/crm_deal_status.json msgid "Ongoing" msgstr "Sedang Berjalan" @@ -4088,13 +4088,13 @@ msgstr "Kesepakatan yang sedang berjalan" msgid "Only image files are allowed" msgstr "Hanya file gambar yang diizinkan" -#: crm/fcrm/doctype/crm_deal/crm_deal.py:60 -#: crm/fcrm/doctype/crm_telephony_agent/crm_telephony_agent.py:23 +#: crm/fcrm/pagetype/crm_deal/crm_deal.py:60 +#: crm/fcrm/pagetype/crm_telephony_agent/crm_telephony_agent.py:23 msgid "Only one {0} can be set as primary." msgstr "Hanya satu {0} yang dapat dijadikan utama." -#. Option for the 'Type' (Select) field in DocType 'CRM Deal Status' -#: crm/fcrm/doctype/crm_deal_status/crm_deal_status.json +#. Option for the 'Type' (Select) field in PageType 'CRM Deal Status' +#: crm/fcrm/pagetype/crm_deal_status/crm_deal_status.json msgid "Open" msgstr "Buka" @@ -4108,13 +4108,13 @@ msgstr "Buka Kesepakatan" msgid "Open Lead" msgstr "Buka Prospek" -#: crm/fcrm/doctype/crm_deal/crm_deal.js:6 -#: crm/fcrm/doctype/crm_lead/crm_lead.js:6 +#: crm/fcrm/pagetype/crm_deal/crm_deal.js:6 +#: crm/fcrm/pagetype/crm_lead/crm_lead.js:6 msgid "Open in Portal" msgstr "Buka di Portal" -#. Label of the open_in_new_window (Check) field in DocType 'CRM Dropdown Item' -#: crm/fcrm/doctype/crm_dropdown_item/crm_dropdown_item.json +#. Label of the open_in_new_window (Check) field in PageType 'CRM Dropdown Item' +#: crm/fcrm/pagetype/crm_dropdown_item/crm_dropdown_item.json msgid "Open in new window" msgstr "Buka di jendela baru" @@ -4136,17 +4136,17 @@ msgstr "Opsi" msgid "Or create leads manually" msgstr "Atau buat prospek secara manual" -#. Label of the order_by_tab (Tab Break) field in DocType 'CRM View Settings' -#. Label of the order_by (Code) field in DocType 'CRM View Settings' -#: crm/fcrm/doctype/crm_view_settings/crm_view_settings.json +#. Label of the order_by_tab (Tab Break) field in PageType 'CRM View Settings' +#. Label of the order_by (Code) field in PageType 'CRM View Settings' +#: crm/fcrm/pagetype/crm_view_settings/crm_view_settings.json msgid "Order By" msgstr "Urutkan Berdasarkan" -#. Label of the organization (Link) field in DocType 'CRM Deal' -#. Label of the organization_tab (Tab Break) field in DocType 'CRM Deal' -#. Label of the organization (Data) field in DocType 'CRM Lead' -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_lead/crm_lead.json +#. Label of the organization (Link) field in PageType 'CRM Deal' +#. Label of the organization_tab (Tab Break) field in PageType 'CRM Deal' +#. Label of the organization (Data) field in PageType 'CRM Lead' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_lead/crm_lead.json #: frontend/src/components/Layouts/AppSidebar.vue:553 #: frontend/src/components/Modals/ConvertToDealModal.vue:25 #: frontend/src/pages/Contact.vue:494 frontend/src/pages/MobileContact.vue:502 @@ -4158,22 +4158,22 @@ msgstr "Urutkan Berdasarkan" msgid "Organization" msgstr "Organisasi" -#. Label of the organization_details_section (Section Break) field in DocType +#. Label of the organization_details_section (Section Break) field in PageType #. 'CRM Deal' -#: crm/fcrm/doctype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_deal/crm_deal.json msgid "Organization Details" msgstr "Detail Organisasi" -#. Label of the organization_logo (Attach Image) field in DocType 'CRM +#. Label of the organization_logo (Attach Image) field in PageType 'CRM #. Organization' -#: crm/fcrm/doctype/crm_organization/crm_organization.json +#: crm/fcrm/pagetype/crm_organization/crm_organization.json msgid "Organization Logo" msgstr "Logo Organisasi" -#. Label of the organization_name (Data) field in DocType 'CRM Deal' -#. Label of the organization_name (Data) field in DocType 'CRM Organization' -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_organization/crm_organization.json +#. Label of the organization_name (Data) field in PageType 'CRM Deal' +#. Label of the organization_name (Data) field in PageType 'CRM Organization' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_organization/crm_organization.json msgid "Organization Name" msgstr "Nama Organisasi" @@ -4181,8 +4181,8 @@ msgstr "Nama Organisasi" msgid "Organization logo" msgstr "Logo organisasi" -#. Label of a shortcut in the Frappe CRM Workspace -#: crm/fcrm/workspace/frappe_crm/frappe_crm.json +#. Label of a shortcut in the Jingrow CRM Workspace +#: crm/fcrm/workspace/jingrow_crm/jingrow_crm.json #: frontend/src/pages/MobileOrganization.vue:205 #: frontend/src/pages/Organization.vue:234 msgid "Organizations" @@ -4196,8 +4196,8 @@ msgstr "" msgid "Other features" msgstr "Fitur Lainnya" -#. Label of the organization_tab (Tab Break) field in DocType 'CRM Lead' -#: crm/fcrm/doctype/crm_lead/crm_lead.json +#. Label of the organization_tab (Tab Break) field in PageType 'CRM Lead' +#: crm/fcrm/pagetype/crm_lead/crm_lead.json msgid "Others" msgstr "Lainnya" @@ -4205,13 +4205,13 @@ msgstr "Lainnya" msgid "Outbound Call" msgstr "Panggilan Keluar" -#. Option for the 'Type' (Select) field in DocType 'CRM Call Log' -#: crm/fcrm/doctype/crm_call_log/crm_call_log.json +#. Option for the 'Type' (Select) field in PageType 'CRM Call Log' +#: crm/fcrm/pagetype/crm_call_log/crm_call_log.json msgid "Outgoing" msgstr "Keluar" -#. Label of the log_owner (Link) field in DocType 'CRM Status Change Log' -#: crm/fcrm/doctype/crm_status_change_log/crm_status_change_log.json +#. Label of the log_owner (Link) field in PageType 'CRM Status Change Log' +#: crm/fcrm/pagetype/crm_status_change_log/crm_status_change_log.json msgid "Owner" msgstr "Pemilik" @@ -4219,8 +4219,8 @@ msgstr "Pemilik" msgid "Owner: {0}" msgstr "" -#. Label of the parent_crm_territory (Link) field in DocType 'CRM Territory' -#: crm/fcrm/doctype/crm_territory/crm_territory.json +#. Label of the parent_crm_territory (Link) field in PageType 'CRM Territory' +#: crm/fcrm/pagetype/crm_territory/crm_territory.json msgid "Parent CRM Territory" msgstr "Wilayah CRM Induk" @@ -4251,8 +4251,8 @@ msgstr "Pengingat Pembayaran" msgid "Payment Reminder from Frappé - (#{{ name }})" msgstr "Pengingat Pembayaran dari Frappé - (#{{ name }})" -#. Option for the 'Status' (Select) field in DocType 'CRM Invitation' -#: crm/fcrm/doctype/crm_invitation/crm_invitation.json +#. Option for the 'Status' (Select) field in PageType 'CRM Invitation' +#: crm/fcrm/pagetype/crm_invitation/crm_invitation.json msgid "Pending" msgstr "Tertunda" @@ -4264,10 +4264,10 @@ msgstr "Undangan Tertunda" msgid "Period" msgstr "Periode" -#. Label of the person_section (Section Break) field in DocType 'CRM Deal' -#. Label of the person_tab (Tab Break) field in DocType 'CRM Lead' -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_lead/crm_lead.json +#. Label of the person_section (Section Break) field in PageType 'CRM Deal' +#. Label of the person_tab (Tab Break) field in PageType 'CRM Lead' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_lead/crm_lead.json msgid "Person" msgstr "Orang" @@ -4275,19 +4275,19 @@ msgstr "Orang" msgid "Personal Settings" msgstr "" -#. Label of the phone (Data) field in DocType 'CRM Contacts' -#. Label of the phone (Data) field in DocType 'CRM Lead' -#. Option for the 'Device' (Select) field in DocType 'CRM Telephony Agent' -#: crm/fcrm/doctype/crm_contacts/crm_contacts.json -#: crm/fcrm/doctype/crm_lead/crm_lead.json -#: crm/fcrm/doctype/crm_telephony_agent/crm_telephony_agent.json +#. Label of the phone (Data) field in PageType 'CRM Contacts' +#. Label of the phone (Data) field in PageType 'CRM Lead' +#. Option for the 'Device' (Select) field in PageType 'CRM Telephony Agent' +#: crm/fcrm/pagetype/crm_contacts/crm_contacts.json +#: crm/fcrm/pagetype/crm_lead/crm_lead.json +#: crm/fcrm/pagetype/crm_telephony_agent/crm_telephony_agent.json #: frontend/src/pages/MobileOrganization.vue:495 #: frontend/src/pages/Organization.vue:516 msgid "Phone" msgstr "Telepon" -#. Label of the phone_nos (Table) field in DocType 'CRM Telephony Agent' -#: crm/fcrm/doctype/crm_telephony_agent/crm_telephony_agent.json +#. Label of the phone_nos (Table) field in PageType 'CRM Telephony Agent' +#: crm/fcrm/pagetype/crm_telephony_agent/crm_telephony_agent.json msgid "Phone Numbers" msgstr "Nomor Telepon" @@ -4295,8 +4295,8 @@ msgstr "Nomor Telepon" msgid "Pin View" msgstr "Sematkan Tampilan" -#. Label of the pinned (Check) field in DocType 'CRM View Settings' -#: crm/fcrm/doctype/crm_view_settings/crm_view_settings.json +#. Label of the pinned (Check) field in PageType 'CRM View Settings' +#: crm/fcrm/pagetype/crm_view_settings/crm_view_settings.json msgid "Pinned" msgstr "Disematkan" @@ -4346,7 +4346,7 @@ msgstr "Harap pilih kontak yang sudah ada" msgid "Please select an existing organization" msgstr "Harap pilih organisasi yang sudah ada" -#: crm/fcrm/doctype/helpdesk_crm_settings/helpdesk_crm_settings.py:126 +#: crm/fcrm/pagetype/helpdesk_crm_settings/helpdesk_crm_settings.py:126 msgid "Please set Email Address" msgstr "Silahkan tetapkan Alamat Email" @@ -4354,18 +4354,18 @@ msgstr "Silahkan tetapkan Alamat Email" msgid "Please setup Exotel intergration" msgstr "Harap atur integrasi Exotel" -#: crm/fcrm/doctype/crm_deal/crm_deal.py:181 +#: crm/fcrm/pagetype/crm_deal/crm_deal.py:181 msgid "Please specify a reason for losing the deal." msgstr "Mohon sebutkan alasan kesepakatan ini gagal." -#: crm/fcrm/doctype/crm_deal/crm_deal.py:183 +#: crm/fcrm/pagetype/crm_deal/crm_deal.py:183 msgid "Please specify the reason for losing the deal." msgstr "Mohon sebutkan alasan utama kesepakatan ini gagal." -#. Label of the position (Int) field in DocType 'CRM Deal Status' -#. Label of the position (Int) field in DocType 'CRM Lead Status' -#: crm/fcrm/doctype/crm_deal_status/crm_deal_status.json -#: crm/fcrm/doctype/crm_lead_status/crm_lead_status.json +#. Label of the position (Int) field in PageType 'CRM Deal Status' +#. Label of the position (Int) field in PageType 'CRM Lead Status' +#: crm/fcrm/pagetype/crm_deal_status/crm_deal_status.json +#: crm/fcrm/pagetype/crm_lead_status/crm_lead_status.json msgid "Position" msgstr "Posisi" @@ -4373,18 +4373,18 @@ msgstr "Posisi" msgid "Primary" msgstr "Utama" -#. Label of the email (Data) field in DocType 'CRM Deal' -#: crm/fcrm/doctype/crm_deal/crm_deal.json +#. Label of the email (Data) field in PageType 'CRM Deal' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json msgid "Primary Email" msgstr "Email Utama" -#. Label of the mobile_no (Data) field in DocType 'CRM Deal' -#: crm/fcrm/doctype/crm_deal/crm_deal.json +#. Label of the mobile_no (Data) field in PageType 'CRM Deal' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json msgid "Primary Mobile No" msgstr "No Ponsel Utama" -#. Label of the phone (Data) field in DocType 'CRM Deal' -#: crm/fcrm/doctype/crm_deal/crm_deal.json +#. Label of the phone (Data) field in PageType 'CRM Deal' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json msgid "Primary Phone" msgstr "Nomor Telepon Utama" @@ -4392,57 +4392,57 @@ msgstr "Nomor Telepon Utama" msgid "Primary contact set" msgstr "Kontak utama ditetapkan" -#. Label of the priorities (Table) field in DocType 'CRM Service Level +#. Label of the priorities (Table) field in PageType 'CRM Service Level #. Agreement' -#: crm/fcrm/doctype/crm_service_level_agreement/crm_service_level_agreement.json +#: crm/fcrm/pagetype/crm_service_level_agreement/crm_service_level_agreement.json msgid "Priorities" msgstr "Prioritas" -#. Label of the priority (Link) field in DocType 'CRM Service Level Priority' -#. Label of the priority (Select) field in DocType 'CRM Task' -#: crm/fcrm/doctype/crm_service_level_priority/crm_service_level_priority.json -#: crm/fcrm/doctype/crm_task/crm_task.json +#. Label of the priority (Link) field in PageType 'CRM Service Level Priority' +#. Label of the priority (Select) field in PageType 'CRM Task' +#: crm/fcrm/pagetype/crm_service_level_priority/crm_service_level_priority.json +#: crm/fcrm/pagetype/crm_task/crm_task.json #: frontend/src/components/Settings/AssignmentRules/AssignmentRuleView.vue:64 #: frontend/src/components/Settings/AssignmentRules/AssignmentRulesList.vue:20 msgid "Priority" msgstr "Prioritas" -#. Label of the private (Check) field in DocType 'CRM Dashboard' -#: crm/fcrm/doctype/crm_dashboard/crm_dashboard.json +#. Label of the private (Check) field in PageType 'CRM Dashboard' +#: crm/fcrm/pagetype/crm_dashboard/crm_dashboard.json #: frontend/src/components/FilesUploader/FilesUploaderArea.vue:89 msgid "Private" msgstr "Privat" -#. Label of the probability (Percent) field in DocType 'CRM Deal' -#. Label of the probability (Percent) field in DocType 'CRM Deal Status' -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_deal_status/crm_deal_status.json +#. Label of the probability (Percent) field in PageType 'CRM Deal' +#. Label of the probability (Percent) field in PageType 'CRM Deal Status' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_deal_status/crm_deal_status.json msgid "Probability" msgstr "Probabilitas" -#. Label of the product_code (Link) field in DocType 'CRM Products' -#: crm/fcrm/doctype/crm_products/crm_products.json +#. Label of the product_code (Link) field in PageType 'CRM Products' +#: crm/fcrm/pagetype/crm_products/crm_products.json msgid "Product" msgstr "Produk" -#. Label of the product_code (Data) field in DocType 'CRM Product' -#: crm/fcrm/doctype/crm_product/crm_product.json +#. Label of the product_code (Data) field in PageType 'CRM Product' +#: crm/fcrm/pagetype/crm_product/crm_product.json msgid "Product Code" msgstr "Kode Produk" -#. Label of the product_name (Data) field in DocType 'CRM Product' -#. Label of the product_name (Data) field in DocType 'CRM Products' -#: crm/fcrm/doctype/crm_product/crm_product.json -#: crm/fcrm/doctype/crm_products/crm_products.json +#. Label of the product_name (Data) field in PageType 'CRM Product' +#. Label of the product_name (Data) field in PageType 'CRM Products' +#: crm/fcrm/pagetype/crm_product/crm_product.json +#: crm/fcrm/pagetype/crm_products/crm_products.json msgid "Product Name" msgstr "Nama Produk" -#. Label of the products_tab (Tab Break) field in DocType 'CRM Deal' -#. Label of the products (Table) field in DocType 'CRM Deal' -#. Label of the products_tab (Tab Break) field in DocType 'CRM Lead' -#. Label of the products (Table) field in DocType 'CRM Lead' -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_lead/crm_lead.json +#. Label of the products_tab (Tab Break) field in PageType 'CRM Deal' +#. Label of the products (Table) field in PageType 'CRM Deal' +#. Label of the products_tab (Tab Break) field in PageType 'CRM Lead' +#. Label of the products (Table) field in PageType 'CRM Lead' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_lead/crm_lead.json msgid "Products" msgstr "Produk" @@ -4459,8 +4459,8 @@ msgstr "Profil berhasil diperbarui" msgid "Projected vs actual revenue based on deal probability" msgstr "Pendapatan yang diproyeksikan vs pendapatan aktual berdasarkan probabilitas kesepakatan" -#. Label of the public (Check) field in DocType 'CRM View Settings' -#: crm/fcrm/doctype/crm_view_settings/crm_view_settings.json +#. Label of the public (Check) field in PageType 'CRM View Settings' +#: crm/fcrm/pagetype/crm_view_settings/crm_view_settings.json msgid "Public" msgstr "Publik" @@ -4472,23 +4472,23 @@ msgstr "Tampilan Publik" msgid "Public view" msgstr "Tampilan Publik" -#. Label of the qty (Float) field in DocType 'CRM Products' -#: crm/fcrm/doctype/crm_products/crm_products.json +#. Label of the qty (Float) field in PageType 'CRM Products' +#: crm/fcrm/pagetype/crm_products/crm_products.json msgid "Quantity" msgstr "Kuantitas" -#. Option for the 'Status' (Select) field in DocType 'CRM Call Log' -#: crm/fcrm/doctype/crm_call_log/crm_call_log.json +#. Option for the 'Status' (Select) field in PageType 'CRM Call Log' +#: crm/fcrm/pagetype/crm_call_log/crm_call_log.json msgid "Queued" msgstr "Dalam Antrian" -#. Option for the 'Type' (Select) field in DocType 'CRM Fields Layout' -#: crm/fcrm/doctype/crm_fields_layout/crm_fields_layout.json +#. Option for the 'Type' (Select) field in PageType 'CRM Fields Layout' +#: crm/fcrm/pagetype/crm_fields_layout/crm_fields_layout.json msgid "Quick Entry" msgstr "Entri Cepat" -#. Option for the 'Type' (Select) field in DocType 'CRM Global Settings' -#: crm/fcrm/doctype/crm_global_settings/crm_global_settings.json +#. Option for the 'Type' (Select) field in PageType 'CRM Global Settings' +#: crm/fcrm/pagetype/crm_global_settings/crm_global_settings.json msgid "Quick Filters" msgstr "Filter Cepat" @@ -4500,13 +4500,13 @@ msgstr "Filter Cepat berhasil diperbarui" msgid "Quick entry layout" msgstr "Layout entri cepat" -#. Label of the rate (Currency) field in DocType 'CRM Products' -#: crm/fcrm/doctype/crm_products/crm_products.json +#. Label of the rate (Currency) field in PageType 'CRM Products' +#: crm/fcrm/pagetype/crm_products/crm_products.json msgid "Rate" msgstr "Harga" -#. Label of the read (Check) field in DocType 'CRM Notification' -#: crm/fcrm/doctype/crm_notification/crm_notification.json +#. Label of the read (Check) field in PageType 'CRM Notification' +#: crm/fcrm/pagetype/crm_notification/crm_notification.json msgid "Read" msgstr "Dibaca" @@ -4514,48 +4514,48 @@ msgstr "Dibaca" msgid "Reason" msgstr "Alasan" -#. Label of the record_calls (Check) field in DocType 'CRM Twilio Settings' -#: crm/fcrm/doctype/crm_twilio_settings/crm_twilio_settings.json +#. Label of the record_calls (Check) field in PageType 'CRM Twilio Settings' +#: crm/fcrm/pagetype/crm_twilio_settings/crm_twilio_settings.json msgid "Record Calls" msgstr "Rekam Panggilan" -#. Label of the record_call (Check) field in DocType 'CRM Exotel Settings' -#: crm/fcrm/doctype/crm_exotel_settings/crm_exotel_settings.json +#. Label of the record_call (Check) field in PageType 'CRM Exotel Settings' +#: crm/fcrm/pagetype/crm_exotel_settings/crm_exotel_settings.json msgid "Record Outgoing Calls" msgstr "Rekam Panggilan Keluar" -#. Label of the recording_url (Data) field in DocType 'CRM Call Log' -#: crm/fcrm/doctype/crm_call_log/crm_call_log.json +#. Label of the recording_url (Data) field in PageType 'CRM Call Log' +#: crm/fcrm/pagetype/crm_call_log/crm_call_log.json msgid "Recording URL" msgstr "URL Rekaman" -#. Label of the reference_name (Dynamic Link) field in DocType 'CRM +#. Label of the reference_name (Dynamic Link) field in PageType 'CRM #. Notification' -#. Label of the reference_docname (Dynamic Link) field in DocType 'CRM Task' -#. Label of the reference_docname (Dynamic Link) field in DocType 'FCRM Note' -#: crm/fcrm/doctype/crm_notification/crm_notification.json -#: crm/fcrm/doctype/crm_task/crm_task.json -#: crm/fcrm/doctype/fcrm_note/fcrm_note.json -msgid "Reference Doc" +#. Label of the reference_docname (Dynamic Link) field in PageType 'CRM Task' +#. Label of the reference_docname (Dynamic Link) field in PageType 'FCRM Note' +#: crm/fcrm/pagetype/crm_notification/crm_notification.json +#: crm/fcrm/pagetype/crm_task/crm_task.json +#: crm/fcrm/pagetype/fcrm_note/fcrm_note.json +msgid "Reference Pg" msgstr "Dokumen Referensi" -#. Label of the reference_doctype (Link) field in DocType 'CRM Notification' -#: crm/fcrm/doctype/crm_notification/crm_notification.json -msgid "Reference Doctype" -msgstr "Doctype Referensi" +#. Label of the reference_pagetype (Link) field in PageType 'CRM Notification' +#: crm/fcrm/pagetype/crm_notification/crm_notification.json +msgid "Reference Pagetype" +msgstr "Pagetype Referensi" -#. Label of the reference_doctype (Link) field in DocType 'CRM Call Log' -#. Label of the reference_doctype (Link) field in DocType 'CRM Task' -#. Label of the reference_doctype (Link) field in DocType 'FCRM Note' -#: crm/fcrm/doctype/crm_call_log/crm_call_log.json -#: crm/fcrm/doctype/crm_task/crm_task.json -#: crm/fcrm/doctype/fcrm_note/fcrm_note.json +#. Label of the reference_pagetype (Link) field in PageType 'CRM Call Log' +#. Label of the reference_pagetype (Link) field in PageType 'CRM Task' +#. Label of the reference_pagetype (Link) field in PageType 'FCRM Note' +#: crm/fcrm/pagetype/crm_call_log/crm_call_log.json +#: crm/fcrm/pagetype/crm_task/crm_task.json +#: crm/fcrm/pagetype/fcrm_note/fcrm_note.json msgid "Reference Document Type" msgstr "Tipe Dokumen Referensi" -#. Label of the reference_docname (Dynamic Link) field in DocType 'CRM Call +#. Label of the reference_docname (Dynamic Link) field in PageType 'CRM Call #. Log' -#: crm/fcrm/doctype/crm_call_log/crm_call_log.json +#: crm/fcrm/pagetype/crm_call_log/crm_call_log.json msgid "Reference Name" msgstr "Nama Referensi" @@ -4625,8 +4625,8 @@ msgstr "Balas Semua" msgid "Report an Issue" msgstr "Laporkan masalah" -#. Option for the 'Type' (Select) field in DocType 'CRM Fields Layout' -#: crm/fcrm/doctype/crm_fields_layout/crm_fields_layout.json +#. Option for the 'Type' (Select) field in PageType 'CRM Fields Layout' +#: crm/fcrm/pagetype/crm_fields_layout/crm_fields_layout.json msgid "Required Fields" msgstr "Bidang Wajib" @@ -4642,7 +4642,7 @@ msgstr "Reset" msgid "Reset Changes" msgstr "Reset Perubahan" -#: crm/fcrm/doctype/erpnext_crm_settings/erpnext_crm_settings.js:7 +#: crm/fcrm/pagetype/erpnext_crm_settings/erpnext_crm_settings.js:7 msgid "Reset ERPNext Form Script" msgstr "Reset Skrip Formulir ERPNext" @@ -4654,35 +4654,35 @@ msgstr "Reset ke Pengaturan Default" msgid "Reset to default" msgstr "Atur ulang ke setelan default" -#. Label of the response_by (Datetime) field in DocType 'CRM Deal' -#. Label of the response_by (Datetime) field in DocType 'CRM Lead' -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_lead/crm_lead.json +#. Label of the response_by (Datetime) field in PageType 'CRM Deal' +#. Label of the response_by (Datetime) field in PageType 'CRM Lead' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_lead/crm_lead.json msgid "Response By" msgstr "Batas Respon" -#. Label of the response_details_section (Section Break) field in DocType 'CRM +#. Label of the response_details_section (Section Break) field in PageType 'CRM #. Deal' -#. Label of the response_details_section (Section Break) field in DocType 'CRM +#. Label of the response_details_section (Section Break) field in PageType 'CRM #. Lead' -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_lead/crm_lead.json +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_lead/crm_lead.json msgid "Response Details" msgstr "Detail Respon" -#. Label of the section_break_ufaf (Section Break) field in DocType 'CRM +#. Label of the section_break_ufaf (Section Break) field in PageType 'CRM #. Service Level Agreement' -#: crm/fcrm/doctype/crm_service_level_agreement/crm_service_level_agreement.json +#: crm/fcrm/pagetype/crm_service_level_agreement/crm_service_level_agreement.json msgid "Response and Follow Up" msgstr "Respon dan Tindak Lanjut" -#: crm/fcrm/doctype/fcrm_settings/fcrm_settings.js:14 +#: crm/fcrm/pagetype/fcrm_settings/fcrm_settings.js:14 msgid "Restore" msgstr "Pulihkan" -#. Label of the restore_defaults (Button) field in DocType 'FCRM Settings' -#: crm/fcrm/doctype/fcrm_settings/fcrm_settings.js:13 -#: crm/fcrm/doctype/fcrm_settings/fcrm_settings.json +#. Label of the restore_defaults (Button) field in PageType 'FCRM Settings' +#: crm/fcrm/pagetype/fcrm_settings/fcrm_settings.js:13 +#: crm/fcrm/pagetype/fcrm_settings/fcrm_settings.json msgid "Restore Defaults" msgstr "Kembalikan ke Pengaturan Default" @@ -4699,13 +4699,13 @@ msgstr "Pendapatan" msgid "Rich Text" msgstr "Teks Berformat" -#. Label of the rgt (Int) field in DocType 'CRM Territory' -#: crm/fcrm/doctype/crm_territory/crm_territory.json +#. Label of the rgt (Int) field in PageType 'CRM Territory' +#: crm/fcrm/pagetype/crm_territory/crm_territory.json msgid "Right" msgstr "Right" -#. Option for the 'Status' (Select) field in DocType 'CRM Call Log' -#: crm/fcrm/doctype/crm_call_log/crm_call_log.json +#. Option for the 'Status' (Select) field in PageType 'CRM Call Log' +#: crm/fcrm/pagetype/crm_call_log/crm_call_log.json msgid "Ringing" msgstr "Berdering" @@ -4714,55 +4714,55 @@ msgstr "Berdering" msgid "Ringing..." msgstr "Berdering..." -#. Label of the role (Select) field in DocType 'CRM Invitation' -#: crm/fcrm/doctype/crm_invitation/crm_invitation.json +#. Label of the role (Select) field in PageType 'CRM Invitation' +#: crm/fcrm/pagetype/crm_invitation/crm_invitation.json #: frontend/src/components/Modals/AddExistingUserModal.vue:46 msgid "Role" msgstr "Peran" -#. Option for the 'Type' (Select) field in DocType 'CRM Dropdown Item' -#. Label of the route (Data) field in DocType 'CRM Dropdown Item' -#: crm/fcrm/doctype/crm_dropdown_item/crm_dropdown_item.json +#. Option for the 'Type' (Select) field in PageType 'CRM Dropdown Item' +#. Label of the route (Data) field in PageType 'CRM Dropdown Item' +#: crm/fcrm/pagetype/crm_dropdown_item/crm_dropdown_item.json msgid "Route" msgstr "Route" -#. Label of the route_name (Data) field in DocType 'CRM View Settings' -#: crm/fcrm/doctype/crm_view_settings/crm_view_settings.json +#. Label of the route_name (Data) field in PageType 'CRM View Settings' +#: crm/fcrm/pagetype/crm_view_settings/crm_view_settings.json msgid "Route Name" msgstr "Nama Route" -#. Label of the rows (Code) field in DocType 'CRM View Settings' -#: crm/fcrm/doctype/crm_view_settings/crm_view_settings.json +#. Label of the rows (Code) field in PageType 'CRM View Settings' +#: crm/fcrm/pagetype/crm_view_settings/crm_view_settings.json msgid "Rows" msgstr "Baris" -#. Label of the sla_tab (Tab Break) field in DocType 'CRM Deal' -#. Label of the sla (Link) field in DocType 'CRM Deal' -#. Label of the sla_tab (Tab Break) field in DocType 'CRM Lead' -#. Label of the sla (Link) field in DocType 'CRM Lead' -#. Label of a shortcut in the Frappe CRM Workspace -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_lead/crm_lead.json -#: crm/fcrm/workspace/frappe_crm/frappe_crm.json +#. Label of the sla_tab (Tab Break) field in PageType 'CRM Deal' +#. Label of the sla (Link) field in PageType 'CRM Deal' +#. Label of the sla_tab (Tab Break) field in PageType 'CRM Lead' +#. Label of the sla (Link) field in PageType 'CRM Lead' +#. Label of a shortcut in the Jingrow CRM Workspace +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_lead/crm_lead.json +#: crm/fcrm/workspace/jingrow_crm/jingrow_crm.json msgid "SLA" msgstr "SLA" -#. Label of the sla_creation (Datetime) field in DocType 'CRM Deal' -#. Label of the sla_creation (Datetime) field in DocType 'CRM Lead' -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_lead/crm_lead.json +#. Label of the sla_creation (Datetime) field in PageType 'CRM Deal' +#. Label of the sla_creation (Datetime) field in PageType 'CRM Lead' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_lead/crm_lead.json msgid "SLA Creation" msgstr "Pembuatan SLA" -#. Label of the sla_name (Data) field in DocType 'CRM Service Level Agreement' -#: crm/fcrm/doctype/crm_service_level_agreement/crm_service_level_agreement.json +#. Label of the sla_name (Data) field in PageType 'CRM Service Level Agreement' +#: crm/fcrm/pagetype/crm_service_level_agreement/crm_service_level_agreement.json msgid "SLA Name" msgstr "Nama SLA" -#. Label of the sla_status (Select) field in DocType 'CRM Deal' -#. Label of the sla_status (Select) field in DocType 'CRM Lead' -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_lead/crm_lead.json +#. Label of the sla_status (Select) field in PageType 'CRM Deal' +#. Label of the sla_status (Select) field in PageType 'CRM Lead' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_lead/crm_lead.json msgid "SLA Status" msgstr "Status SLA" @@ -4771,57 +4771,57 @@ msgid "SUBJECT" msgstr "SUBJEK" #. Name of a role -#. Option for the 'Role' (Select) field in DocType 'CRM Invitation' -#: crm/fcrm/doctype/crm_call_log/crm_call_log.json -#: crm/fcrm/doctype/crm_communication_status/crm_communication_status.json -#: crm/fcrm/doctype/crm_dashboard/crm_dashboard.json -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_deal_status/crm_deal_status.json -#: crm/fcrm/doctype/crm_exotel_settings/crm_exotel_settings.json -#: crm/fcrm/doctype/crm_form_script/crm_form_script.json -#: crm/fcrm/doctype/crm_global_settings/crm_global_settings.json -#: crm/fcrm/doctype/crm_holiday_list/crm_holiday_list.json -#: crm/fcrm/doctype/crm_industry/crm_industry.json -#: crm/fcrm/doctype/crm_invitation/crm_invitation.json -#: crm/fcrm/doctype/crm_lead/crm_lead.json -#: crm/fcrm/doctype/crm_lead_source/crm_lead_source.json -#: crm/fcrm/doctype/crm_lead_status/crm_lead_status.json -#: crm/fcrm/doctype/crm_lost_reason/crm_lost_reason.json -#: crm/fcrm/doctype/crm_notification/crm_notification.json -#: crm/fcrm/doctype/crm_organization/crm_organization.json -#: crm/fcrm/doctype/crm_service_level_agreement/crm_service_level_agreement.json -#: crm/fcrm/doctype/crm_task/crm_task.json -#: crm/fcrm/doctype/crm_territory/crm_territory.json -#: crm/fcrm/doctype/crm_twilio_settings/crm_twilio_settings.json -#: crm/fcrm/doctype/crm_view_settings/crm_view_settings.json -#: crm/fcrm/doctype/erpnext_crm_settings/erpnext_crm_settings.json -#: crm/fcrm/doctype/fcrm_note/fcrm_note.json -#: crm/fcrm/doctype/fcrm_settings/fcrm_settings.json -#: crm/fcrm/doctype/helpdesk_crm_settings/helpdesk_crm_settings.json +#. Option for the 'Role' (Select) field in PageType 'CRM Invitation' +#: crm/fcrm/pagetype/crm_call_log/crm_call_log.json +#: crm/fcrm/pagetype/crm_communication_status/crm_communication_status.json +#: crm/fcrm/pagetype/crm_dashboard/crm_dashboard.json +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_deal_status/crm_deal_status.json +#: crm/fcrm/pagetype/crm_exotel_settings/crm_exotel_settings.json +#: crm/fcrm/pagetype/crm_form_script/crm_form_script.json +#: crm/fcrm/pagetype/crm_global_settings/crm_global_settings.json +#: crm/fcrm/pagetype/crm_holiday_list/crm_holiday_list.json +#: crm/fcrm/pagetype/crm_industry/crm_industry.json +#: crm/fcrm/pagetype/crm_invitation/crm_invitation.json +#: crm/fcrm/pagetype/crm_lead/crm_lead.json +#: crm/fcrm/pagetype/crm_lead_source/crm_lead_source.json +#: crm/fcrm/pagetype/crm_lead_status/crm_lead_status.json +#: crm/fcrm/pagetype/crm_lost_reason/crm_lost_reason.json +#: crm/fcrm/pagetype/crm_notification/crm_notification.json +#: crm/fcrm/pagetype/crm_organization/crm_organization.json +#: crm/fcrm/pagetype/crm_service_level_agreement/crm_service_level_agreement.json +#: crm/fcrm/pagetype/crm_task/crm_task.json +#: crm/fcrm/pagetype/crm_territory/crm_territory.json +#: crm/fcrm/pagetype/crm_twilio_settings/crm_twilio_settings.json +#: crm/fcrm/pagetype/crm_view_settings/crm_view_settings.json +#: crm/fcrm/pagetype/erpnext_crm_settings/erpnext_crm_settings.json +#: crm/fcrm/pagetype/fcrm_note/fcrm_note.json +#: crm/fcrm/pagetype/fcrm_settings/fcrm_settings.json +#: crm/fcrm/pagetype/helpdesk_crm_settings/helpdesk_crm_settings.json msgid "Sales Manager" msgstr "Manajer Penjualan" #. Name of a role -#. Option for the 'Role' (Select) field in DocType 'CRM Invitation' -#: crm/fcrm/doctype/crm_call_log/crm_call_log.json -#: crm/fcrm/doctype/crm_communication_status/crm_communication_status.json -#: crm/fcrm/doctype/crm_dashboard/crm_dashboard.json -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_deal_status/crm_deal_status.json -#: crm/fcrm/doctype/crm_global_settings/crm_global_settings.json -#: crm/fcrm/doctype/crm_holiday_list/crm_holiday_list.json -#: crm/fcrm/doctype/crm_industry/crm_industry.json -#: crm/fcrm/doctype/crm_invitation/crm_invitation.json -#: crm/fcrm/doctype/crm_lead/crm_lead.json -#: crm/fcrm/doctype/crm_lead_source/crm_lead_source.json -#: crm/fcrm/doctype/crm_lead_status/crm_lead_status.json -#: crm/fcrm/doctype/crm_lost_reason/crm_lost_reason.json -#: crm/fcrm/doctype/crm_notification/crm_notification.json -#: crm/fcrm/doctype/crm_organization/crm_organization.json -#: crm/fcrm/doctype/crm_task/crm_task.json -#: crm/fcrm/doctype/crm_territory/crm_territory.json -#: crm/fcrm/doctype/crm_view_settings/crm_view_settings.json -#: crm/fcrm/doctype/fcrm_note/fcrm_note.json +#. Option for the 'Role' (Select) field in PageType 'CRM Invitation' +#: crm/fcrm/pagetype/crm_call_log/crm_call_log.json +#: crm/fcrm/pagetype/crm_communication_status/crm_communication_status.json +#: crm/fcrm/pagetype/crm_dashboard/crm_dashboard.json +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_deal_status/crm_deal_status.json +#: crm/fcrm/pagetype/crm_global_settings/crm_global_settings.json +#: crm/fcrm/pagetype/crm_holiday_list/crm_holiday_list.json +#: crm/fcrm/pagetype/crm_industry/crm_industry.json +#: crm/fcrm/pagetype/crm_invitation/crm_invitation.json +#: crm/fcrm/pagetype/crm_lead/crm_lead.json +#: crm/fcrm/pagetype/crm_lead_source/crm_lead_source.json +#: crm/fcrm/pagetype/crm_lead_status/crm_lead_status.json +#: crm/fcrm/pagetype/crm_lost_reason/crm_lost_reason.json +#: crm/fcrm/pagetype/crm_notification/crm_notification.json +#: crm/fcrm/pagetype/crm_organization/crm_organization.json +#: crm/fcrm/pagetype/crm_task/crm_task.json +#: crm/fcrm/pagetype/crm_territory/crm_territory.json +#: crm/fcrm/pagetype/crm_view_settings/crm_view_settings.json +#: crm/fcrm/pagetype/fcrm_note/fcrm_note.json #: frontend/src/components/Modals/AddExistingUserModal.vue:92 #: frontend/src/components/Settings/InviteUserPage.vue:156 #: frontend/src/components/Settings/InviteUserPage.vue:163 @@ -4845,17 +4845,17 @@ msgstr "Pengguna penjualan" msgid "Salesperson" msgstr "Tenaga Penjualan" -#. Label of the salutation (Link) field in DocType 'CRM Deal' -#. Label of the salutation (Link) field in DocType 'CRM Lead' -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_lead/crm_lead.json +#. Label of the salutation (Link) field in PageType 'CRM Deal' +#. Label of the salutation (Link) field in PageType 'CRM Lead' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_lead/crm_lead.json msgid "Salutation" msgstr "Sapaan" -#. Option for the 'Weekly Off' (Select) field in DocType 'CRM Holiday List' -#. Option for the 'Workday' (Select) field in DocType 'CRM Service Day' -#: crm/fcrm/doctype/crm_holiday_list/crm_holiday_list.json -#: crm/fcrm/doctype/crm_service_day/crm_service_day.json +#. Option for the 'Weekly Off' (Select) field in PageType 'CRM Holiday List' +#. Option for the 'Workday' (Select) field in PageType 'CRM Service Day' +#: crm/fcrm/pagetype/crm_holiday_list/crm_holiday_list.json +#: crm/fcrm/pagetype/crm_service_day/crm_service_day.json msgid "Saturday" msgstr "Sabtu" @@ -4904,8 +4904,8 @@ msgstr "" msgid "Schedule an event" msgstr "" -#. Label of the script (Code) field in DocType 'CRM Form Script' -#: crm/fcrm/doctype/crm_form_script/crm_form_script.json +#. Label of the script (Code) field in PageType 'CRM Form Script' +#: crm/fcrm/pagetype/crm_form_script/crm_form_script.json msgid "Script" msgstr "Skrip" @@ -4973,18 +4973,18 @@ msgstr "Kirim email" msgid "Send invites to" msgstr "Kirim undangan ke" -#. Option for the 'Type' (Select) field in DocType 'CRM Dropdown Item' -#: crm/fcrm/doctype/crm_dropdown_item/crm_dropdown_item.json +#. Option for the 'Type' (Select) field in PageType 'CRM Dropdown Item' +#: crm/fcrm/pagetype/crm_dropdown_item/crm_dropdown_item.json msgid "Separator" msgstr "Pemisah" -#. Label of the naming_series (Select) field in DocType 'CRM Lead' -#: crm/fcrm/doctype/crm_lead/crm_lead.json +#. Label of the naming_series (Select) field in PageType 'CRM Lead' +#: crm/fcrm/pagetype/crm_lead/crm_lead.json msgid "Series" msgstr "Seri Penamaan" -#. Label of the service_provider (Select) field in DocType 'FCRM Settings' -#: crm/fcrm/doctype/fcrm_settings/fcrm_settings.json +#. Label of the service_provider (Select) field in PageType 'FCRM Settings' +#: crm/fcrm/pagetype/fcrm_settings/fcrm_settings.json msgid "Service Provider" msgstr "Penyedia Layanan" @@ -5029,8 +5029,8 @@ msgid "Setting up" msgstr "Penyiapan" #: frontend/src/components/Settings/emailConfig.js:145 -msgid "Setting up Frappe Mail requires you to have an API key and API Secret of your email account. Read more " -msgstr "Untuk mengatur Frappe Mail, Anda harus memiliki API key dan API Secret dari akun email Anda. Baca selengkapnya " +msgid "Setting up Jingrow Mail requires you to have an API key and API Secret of your email account. Read more " +msgstr "Untuk mengatur Jingrow Mail, Anda harus memiliki API key dan API Secret dari akun email Anda. Baca selengkapnya " #: frontend/src/components/Settings/emailConfig.js:97 msgid "Setting up GMail requires you to enable two factor authentication\n" @@ -5062,8 +5062,8 @@ msgid "Setting up Yandex requires you to enable two factor authentication\n" "\t\t and app specific passwords. Read more " msgstr "Untuk mengatur Yandex, Anda harus mengaktifkan autentikasi dua faktor dan kata sandi spesifik aplikasi. Baca selengkapnya " -#. Label of the defaults_tab (Tab Break) field in DocType 'FCRM Settings' -#: crm/fcrm/doctype/fcrm_settings/fcrm_settings.json +#. Label of the defaults_tab (Tab Break) field in PageType 'FCRM Settings' +#: crm/fcrm/pagetype/fcrm_settings/fcrm_settings.json #: frontend/src/components/Layouts/AppSidebar.vue:537 #: frontend/src/components/Settings/Settings.vue:12 msgid "Settings" @@ -5073,7 +5073,7 @@ msgstr "Pengaturan" msgid "Setup Email" msgstr "Atur Email" -#: crm/fcrm/doctype/fcrm_settings/fcrm_settings.py:199 +#: crm/fcrm/pagetype/fcrm_settings/fcrm_settings.py:199 msgid "Setup the Exchange Rate Provider as 'Exchangerate Host' in settings, as default provider does not support currency conversion for {0} to {1}." msgstr "Siapkan Penyedia Nilai Tukar sebagai 'Exchangerate Host' di pengaturan, karena penyedia default tidak mendukung konversi mata uang untuk {0} ke {1}." @@ -5108,21 +5108,21 @@ msgstr "" msgid "Show preview" msgstr "Tampilkan pratinjau" -#. Option for the 'Type' (Select) field in DocType 'CRM Fields Layout' -#: crm/fcrm/doctype/crm_fields_layout/crm_fields_layout.json +#. Option for the 'Type' (Select) field in PageType 'CRM Fields Layout' +#: crm/fcrm/pagetype/crm_fields_layout/crm_fields_layout.json msgid "Side Panel" msgstr "Panel Samping" -#. Option for the 'Type' (Select) field in DocType 'CRM Global Settings' -#: crm/fcrm/doctype/crm_global_settings/crm_global_settings.json +#. Option for the 'Type' (Select) field in PageType 'CRM Global Settings' +#: crm/fcrm/pagetype/crm_global_settings/crm_global_settings.json msgid "Sidebar Items" msgstr "Item Bilah Sisi" -#. Description of the 'Condition' (Code) field in DocType 'CRM Service Level +#. Description of the 'Condition' (Code) field in PageType 'CRM Service Level #. Agreement' -#: crm/fcrm/doctype/crm_service_level_agreement/crm_service_level_agreement.json -msgid "Simple Python Expression, Example: doc.status == 'Open' and doc.lead_source == 'Ads'" -msgstr "Ekspresi Python Sederhana, Contoh: doc.status == 'Open' and doc.lead_source == 'Ads'" +#: crm/fcrm/pagetype/crm_service_level_agreement/crm_service_level_agreement.json +msgid "Simple Python Expression, Example: pg.status == 'Open' and pg.lead_source == 'Ads'" +msgstr "Ekspresi Python Sederhana, Contoh: pg.status == 'Open' and pg.lead_source == 'Ads'" #: frontend/src/components/AssignTo.vue:83 msgid "Since you removed {0} from the assignee, the {0} has also been removed." @@ -5145,16 +5145,16 @@ msgstr "" msgid "Sort" msgstr "Urutkan" -#. Label of the source (Link) field in DocType 'CRM Deal' -#. Label of the source (Link) field in DocType 'CRM Lead' -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_lead/crm_lead.json +#. Label of the source (Link) field in PageType 'CRM Deal' +#. Label of the source (Link) field in PageType 'CRM Lead' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_lead/crm_lead.json #: frontend/src/components/Modals/EditValueModal.vue:10 msgid "Source" msgstr "Sumber" -#. Label of the source_name (Data) field in DocType 'CRM Lead Source' -#: crm/fcrm/doctype/crm_lead_source/crm_lead_source.json +#. Label of the source_name (Data) field in PageType 'CRM Lead Source' +#: crm/fcrm/pagetype/crm_lead_source/crm_lead_source.json msgid "Source Name" msgstr "Nama Sumber" @@ -5167,12 +5167,12 @@ msgstr "Pemberi Jarak" msgid "Stage" msgstr "Tahap" -#: crm/fcrm/doctype/crm_form_script/crm_form_script.js:15 +#: crm/fcrm/pagetype/crm_form_script/crm_form_script.js:15 msgid "Standard Form Scripts can not be modified, duplicate the Form Script instead." msgstr "Skrip Formulir Standar tidak dapat diubah, silakan duplikasi untuk melakukan perubahan." -#. Label of the standard_rate (Currency) field in DocType 'CRM Product' -#: crm/fcrm/doctype/crm_product/crm_product.json +#. Label of the standard_rate (Currency) field in PageType 'CRM Product' +#: crm/fcrm/pagetype/crm_product/crm_product.json msgid "Standard Selling Rate" msgstr "Harga Jual Standar" @@ -5180,18 +5180,18 @@ msgstr "Harga Jual Standar" msgid "Standard Views" msgstr "Tampilan Standar" -#. Label of the start_date (Date) field in DocType 'CRM Service Level +#. Label of the start_date (Date) field in PageType 'CRM Service Level #. Agreement' -#. Label of the start_date (Date) field in DocType 'CRM Task' -#: crm/fcrm/doctype/crm_service_level_agreement/crm_service_level_agreement.json -#: crm/fcrm/doctype/crm_task/crm_task.json +#. Label of the start_date (Date) field in PageType 'CRM Task' +#: crm/fcrm/pagetype/crm_service_level_agreement/crm_service_level_agreement.json +#: crm/fcrm/pagetype/crm_task/crm_task.json msgid "Start Date" msgstr "Tanggal Mulai" -#. Label of the start_time (Datetime) field in DocType 'CRM Call Log' -#. Label of the start_time (Time) field in DocType 'CRM Service Day' -#: crm/fcrm/doctype/crm_call_log/crm_call_log.json -#: crm/fcrm/doctype/crm_service_day/crm_service_day.json +#. Label of the start_time (Datetime) field in PageType 'CRM Call Log' +#. Label of the start_time (Time) field in PageType 'CRM Service Day' +#: crm/fcrm/pagetype/crm_call_log/crm_call_log.json +#: crm/fcrm/pagetype/crm_service_day/crm_service_day.json #: frontend/src/components/Calendar/CalendarEventPanel.vue:234 #: frontend/src/components/Modals/EventModal.vue:103 msgid "Start Time" @@ -5205,32 +5205,32 @@ msgstr "" msgid "Start with sample 10 leads" msgstr "Mulai dengan 10 contoh prospek" -#. Label of the status (Select) field in DocType 'CRM Call Log' -#. Label of the status (Data) field in DocType 'CRM Communication Status' -#. Label of the status (Link) field in DocType 'CRM Deal' -#. Label of the deal_status (Data) field in DocType 'CRM Deal Status' -#. Label of the status (Select) field in DocType 'CRM Invitation' -#. Label of the status (Link) field in DocType 'CRM Lead' -#. Label of the lead_status (Data) field in DocType 'CRM Lead Status' -#. Label of the status (Select) field in DocType 'CRM Task' -#: crm/fcrm/doctype/crm_call_log/crm_call_log.json -#: crm/fcrm/doctype/crm_communication_status/crm_communication_status.json -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_deal_status/crm_deal_status.json -#: crm/fcrm/doctype/crm_invitation/crm_invitation.json -#: crm/fcrm/doctype/crm_lead/crm_lead.json -#: crm/fcrm/doctype/crm_lead_status/crm_lead_status.json -#: crm/fcrm/doctype/crm_task/crm_task.json frontend/src/pages/Contact.vue:505 +#. Label of the status (Select) field in PageType 'CRM Call Log' +#. Label of the status (Data) field in PageType 'CRM Communication Status' +#. Label of the status (Link) field in PageType 'CRM Deal' +#. Label of the deal_status (Data) field in PageType 'CRM Deal Status' +#. Label of the status (Select) field in PageType 'CRM Invitation' +#. Label of the status (Link) field in PageType 'CRM Lead' +#. Label of the lead_status (Data) field in PageType 'CRM Lead Status' +#. Label of the status (Select) field in PageType 'CRM Task' +#: crm/fcrm/pagetype/crm_call_log/crm_call_log.json +#: crm/fcrm/pagetype/crm_communication_status/crm_communication_status.json +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_deal_status/crm_deal_status.json +#: crm/fcrm/pagetype/crm_invitation/crm_invitation.json +#: crm/fcrm/pagetype/crm_lead/crm_lead.json +#: crm/fcrm/pagetype/crm_lead_status/crm_lead_status.json +#: crm/fcrm/pagetype/crm_task/crm_task.json frontend/src/pages/Contact.vue:505 #: frontend/src/pages/MobileContact.vue:513 #: frontend/src/pages/MobileOrganization.vue:457 #: frontend/src/pages/Organization.vue:478 msgid "Status" msgstr "Status" -#. Label of the status_change_log (Table) field in DocType 'CRM Deal' -#. Label of the status_change_log (Table) field in DocType 'CRM Lead' -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_lead/crm_lead.json +#. Label of the status_change_log (Table) field in PageType 'CRM Deal' +#. Label of the status_change_log (Table) field in PageType 'CRM Lead' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_lead/crm_lead.json msgid "Status Change Log" msgstr "Log Perubahan Status" @@ -5239,8 +5239,8 @@ msgstr "Log Perubahan Status" msgid "Status is required" msgstr "Status wajib diisi" -#. Label of the subdomain (Data) field in DocType 'CRM Exotel Settings' -#: crm/fcrm/doctype/crm_exotel_settings/crm_exotel_settings.json +#. Label of the subdomain (Data) field in PageType 'CRM Exotel Settings' +#: crm/fcrm/pagetype/crm_exotel_settings/crm_exotel_settings.json msgid "Subdomain" msgstr "Subdomain" @@ -5258,10 +5258,10 @@ msgstr "Subjek wajib diisi" msgid "Subject: {0}" msgstr "Subjek {0}" -#. Option for the 'Weekly Off' (Select) field in DocType 'CRM Holiday List' -#. Option for the 'Workday' (Select) field in DocType 'CRM Service Day' -#: crm/fcrm/doctype/crm_holiday_list/crm_holiday_list.json -#: crm/fcrm/doctype/crm_service_day/crm_service_day.json +#. Option for the 'Weekly Off' (Select) field in PageType 'CRM Holiday List' +#. Option for the 'Workday' (Select) field in PageType 'CRM Service Day' +#: crm/fcrm/pagetype/crm_holiday_list/crm_holiday_list.json +#: crm/fcrm/pagetype/crm_service_day/crm_service_day.json msgid "Sunday" msgstr "Minggu" @@ -5282,21 +5282,21 @@ msgid "System Configuration" msgstr "" #. Name of a role -#. Option for the 'Role' (Select) field in DocType 'CRM Invitation' -#: crm/fcrm/doctype/crm_dashboard/crm_dashboard.json -#: crm/fcrm/doctype/crm_exotel_settings/crm_exotel_settings.json -#: crm/fcrm/doctype/crm_fields_layout/crm_fields_layout.json -#: crm/fcrm/doctype/crm_global_settings/crm_global_settings.json -#: crm/fcrm/doctype/crm_invitation/crm_invitation.json -#: crm/fcrm/doctype/crm_lead_source/crm_lead_source.json -#: crm/fcrm/doctype/crm_lost_reason/crm_lost_reason.json -#: crm/fcrm/doctype/crm_notification/crm_notification.json -#: crm/fcrm/doctype/crm_product/crm_product.json -#: crm/fcrm/doctype/crm_telephony_agent/crm_telephony_agent.json -#: crm/fcrm/doctype/crm_twilio_settings/crm_twilio_settings.json -#: crm/fcrm/doctype/erpnext_crm_settings/erpnext_crm_settings.json -#: crm/fcrm/doctype/fcrm_settings/fcrm_settings.json -#: crm/fcrm/doctype/helpdesk_crm_settings/helpdesk_crm_settings.json +#. Option for the 'Role' (Select) field in PageType 'CRM Invitation' +#: crm/fcrm/pagetype/crm_dashboard/crm_dashboard.json +#: crm/fcrm/pagetype/crm_exotel_settings/crm_exotel_settings.json +#: crm/fcrm/pagetype/crm_fields_layout/crm_fields_layout.json +#: crm/fcrm/pagetype/crm_global_settings/crm_global_settings.json +#: crm/fcrm/pagetype/crm_invitation/crm_invitation.json +#: crm/fcrm/pagetype/crm_lead_source/crm_lead_source.json +#: crm/fcrm/pagetype/crm_lost_reason/crm_lost_reason.json +#: crm/fcrm/pagetype/crm_notification/crm_notification.json +#: crm/fcrm/pagetype/crm_product/crm_product.json +#: crm/fcrm/pagetype/crm_telephony_agent/crm_telephony_agent.json +#: crm/fcrm/pagetype/crm_twilio_settings/crm_twilio_settings.json +#: crm/fcrm/pagetype/erpnext_crm_settings/erpnext_crm_settings.json +#: crm/fcrm/pagetype/fcrm_settings/fcrm_settings.json +#: crm/fcrm/pagetype/helpdesk_crm_settings/helpdesk_crm_settings.json msgid "System Manager" msgstr "System Manager" @@ -5308,8 +5308,8 @@ msgstr "KEPADA" msgid "Take a note..." msgstr "Tulis catatan..." -#. Option for the 'Type' (Select) field in DocType 'CRM Notification' -#: crm/fcrm/doctype/crm_notification/crm_notification.json +#. Option for the 'Type' (Select) field in PageType 'CRM Notification' +#: crm/fcrm/pagetype/crm_notification/crm_notification.json #: frontend/src/components/Layouts/AppSidebar.vue:555 msgid "Task" msgstr "Tugas" @@ -5327,8 +5327,8 @@ msgstr "Kanal Telegram" msgid "Telephony" msgstr "Telepon" -#. Label of the telephony_medium (Select) field in DocType 'CRM Call Log' -#: crm/fcrm/doctype/crm_call_log/crm_call_log.json +#. Label of the telephony_medium (Select) field in PageType 'CRM Call Log' +#: crm/fcrm/pagetype/crm_call_log/crm_call_log.json msgid "Telephony Medium" msgstr "Media Telepon" @@ -5364,27 +5364,27 @@ msgstr "Templat berhasil diganti nama" msgid "Template updated successfully" msgstr "Tempalt berhasil diperbarui" -#. Label of a shortcut in the Frappe CRM Workspace -#: crm/fcrm/workspace/frappe_crm/frappe_crm.json +#. Label of a shortcut in the Jingrow CRM Workspace +#: crm/fcrm/workspace/jingrow_crm/jingrow_crm.json msgid "Territories" msgstr "Wilayah" -#. Label of the territory (Link) field in DocType 'CRM Deal' -#. Label of the territory (Link) field in DocType 'CRM Lead' -#. Label of the territory (Link) field in DocType 'CRM Organization' -#: crm/api/dashboard.py:1022 crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_lead/crm_lead.json -#: crm/fcrm/doctype/crm_organization/crm_organization.json +#. Label of the territory (Link) field in PageType 'CRM Deal' +#. Label of the territory (Link) field in PageType 'CRM Lead' +#. Label of the territory (Link) field in PageType 'CRM Organization' +#: crm/api/dashboard.py:1022 crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_lead/crm_lead.json +#: crm/fcrm/pagetype/crm_organization/crm_organization.json msgid "Territory" msgstr "Wilayah" -#. Label of the territory_manager (Link) field in DocType 'CRM Territory' -#: crm/fcrm/doctype/crm_territory/crm_territory.json +#. Label of the territory_manager (Link) field in PageType 'CRM Territory' +#: crm/fcrm/pagetype/crm_territory/crm_territory.json msgid "Territory Manager" msgstr "Manajer Wilayah" -#. Label of the territory_name (Data) field in DocType 'CRM Territory' -#: crm/fcrm/doctype/crm_territory/crm_territory.json +#. Label of the territory_name (Data) field in PageType 'CRM Territory' +#: crm/fcrm/pagetype/crm_territory/crm_territory.json msgid "Territory Name" msgstr "Nama Wilayah" @@ -5392,22 +5392,22 @@ msgstr "Nama Wilayah" msgid "Thanks" msgstr "" -#: crm/fcrm/doctype/crm_service_level_agreement/crm_service_level_agreement.py:46 +#: crm/fcrm/pagetype/crm_service_level_agreement/crm_service_level_agreement.py:46 msgid "The Condition '{0}' is invalid: {1}" msgstr "Kondisi '{0}' tidak valid: {1}" -#. Description of the 'Exchange Rate' (Float) field in DocType 'CRM Deal' -#: crm/fcrm/doctype/crm_deal/crm_deal.json +#. Description of the 'Exchange Rate' (Float) field in PageType 'CRM Deal' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json msgid "The rate used to convert the deal’s currency to your crm's base currency (set in CRM Settings). It is set once when the currency is first added and doesn't change automatically." msgstr "Kurs yang digunakan untuk mengonversi mata uang kesepakatan ke mata uang dasar CRM Anda (diatur di Pengaturan CRM). Nilai ini ditetapkan sekali saat mata uang pertama kali ditambahkan dan tidak berubah secara otomatis." -#. Description of the 'Exchange Rate' (Float) field in DocType 'CRM +#. Description of the 'Exchange Rate' (Float) field in PageType 'CRM #. Organization' -#: crm/fcrm/doctype/crm_organization/crm_organization.json +#: crm/fcrm/pagetype/crm_organization/crm_organization.json msgid "The rate used to convert the organization’s currency to your crm's base currency (set in CRM Settings). It is set once when the currency is first added and doesn't change automatically." msgstr "Kurs yang digunakan untuk mengonversi mata uang organisasi ke mata uang dasar CRM Anda (diatur di Pengaturan CRM). Nilai ini ditetapkan sekali saat mata uang pertama kali ditambahkan dan tidak berubah secara otomatis." -#: crm/fcrm/doctype/crm_service_level_agreement/crm_service_level_agreement.js:14 +#: crm/fcrm/pagetype/crm_service_level_agreement/crm_service_level_agreement.js:14 msgid "There can only be one default priority in Priorities table" msgstr "Tabel Prioritas hanya boleh memiliki satu prioritas default" @@ -5444,14 +5444,14 @@ msgstr "Tindakan ini akan menghapus item terpilih beserta item lain yang tertaut msgid "This will delete selected items and unlink linked items to it, are you sure?" msgstr "Tindakan ini akan menghapus item terpilih dan melepas item lain yang tertaut dengannya, Anda yakin?" -#: crm/fcrm/doctype/fcrm_settings/fcrm_settings.js:9 +#: crm/fcrm/pagetype/fcrm_settings/fcrm_settings.js:9 msgid "This will restore (if not exist) all the default statuses, custom fields and layouts. Delete & Restore will delete default layouts and then restore them." msgstr "Ini akan memulihkan (jika belum ada) semua status default, bidang kustom, dan layout. Tindakan \"Hapus & Pulihkan\" akan menghapus layout default lalu memulihkannya kembali." -#. Option for the 'Weekly Off' (Select) field in DocType 'CRM Holiday List' -#. Option for the 'Workday' (Select) field in DocType 'CRM Service Day' -#: crm/fcrm/doctype/crm_holiday_list/crm_holiday_list.json -#: crm/fcrm/doctype/crm_service_day/crm_service_day.json +#. Option for the 'Weekly Off' (Select) field in PageType 'CRM Holiday List' +#. Option for the 'Workday' (Select) field in PageType 'CRM Service Day' +#: crm/fcrm/pagetype/crm_holiday_list/crm_holiday_list.json +#: crm/fcrm/pagetype/crm_service_day/crm_service_day.json msgid "Thursday" msgstr "Kamis" @@ -5463,18 +5463,18 @@ msgstr "Waktu" msgid "Timespan" msgstr "Rentang Waktu" -#. Label of the title (Data) field in DocType 'CRM Task' -#. Label of the title (Data) field in DocType 'FCRM Note' -#: crm/fcrm/doctype/crm_task/crm_task.json -#: crm/fcrm/doctype/fcrm_note/fcrm_note.json +#. Label of the title (Data) field in PageType 'CRM Task' +#. Label of the title (Data) field in PageType 'FCRM Note' +#: crm/fcrm/pagetype/crm_task/crm_task.json +#: crm/fcrm/pagetype/fcrm_note/fcrm_note.json #: frontend/src/components/Modals/EventModal.vue:43 #: frontend/src/components/Modals/NoteModal.vue:26 #: frontend/src/components/Modals/TaskModal.vue:25 msgid "Title" msgstr "Judul" -#. Label of the title_field (Data) field in DocType 'CRM View Settings' -#: crm/fcrm/doctype/crm_view_settings/crm_view_settings.json +#. Label of the title_field (Data) field in PageType 'CRM View Settings' +#: crm/fcrm/pagetype/crm_view_settings/crm_view_settings.json #: frontend/src/components/Kanban/KanbanSettings.vue:29 msgid "Title Field" msgstr "Bidang Judul" @@ -5484,28 +5484,28 @@ msgstr "Bidang Judul" msgid "Title is required" msgstr "" -#. Label of the to (Data) field in DocType 'CRM Call Log' -#. Label of the to (Data) field in DocType 'CRM Status Change Log' -#: crm/fcrm/doctype/crm_call_log/crm_call_log.json -#: crm/fcrm/doctype/crm_status_change_log/crm_status_change_log.json +#. Label of the to (Data) field in PageType 'CRM Call Log' +#. Label of the to (Data) field in PageType 'CRM Status Change Log' +#: crm/fcrm/pagetype/crm_call_log/crm_call_log.json +#: crm/fcrm/pagetype/crm_status_change_log/crm_status_change_log.json #: frontend/src/components/Activities/EmailArea.vue:53 msgid "To" msgstr "Ke" -#. Label of the to_date (Date) field in DocType 'CRM Holiday List' -#. Label of the to_date (Datetime) field in DocType 'CRM Status Change Log' -#: crm/fcrm/doctype/crm_holiday_list/crm_holiday_list.json -#: crm/fcrm/doctype/crm_status_change_log/crm_status_change_log.json +#. Label of the to_date (Date) field in PageType 'CRM Holiday List' +#. Label of the to_date (Datetime) field in PageType 'CRM Status Change Log' +#: crm/fcrm/pagetype/crm_holiday_list/crm_holiday_list.json +#: crm/fcrm/pagetype/crm_status_change_log/crm_status_change_log.json msgid "To Date" msgstr "Tanggal Selesai" -#. Label of the to_type (Data) field in DocType 'CRM Status Change Log' -#: crm/fcrm/doctype/crm_status_change_log/crm_status_change_log.json +#. Label of the to_type (Data) field in PageType 'CRM Status Change Log' +#: crm/fcrm/pagetype/crm_status_change_log/crm_status_change_log.json msgid "To Type" msgstr "Tipe Baru" -#. Label of the to_user (Link) field in DocType 'CRM Notification' -#: crm/fcrm/doctype/crm_notification/crm_notification.json +#. Label of the to_user (Link) field in PageType 'CRM Notification' +#: crm/fcrm/pagetype/crm_notification/crm_notification.json msgid "To User" msgstr "Kepada Pengguna" @@ -5517,8 +5517,8 @@ msgstr "Untuk mengetahui lebih lanjut tentang pengaturan akun email, klik" msgid "Today" msgstr "Hari Ini" -#. Option for the 'Status' (Select) field in DocType 'CRM Task' -#: crm/fcrm/doctype/crm_task/crm_task.json +#. Option for the 'Status' (Select) field in PageType 'CRM Task' +#: crm/fcrm/pagetype/crm_task/crm_task.json msgid "Todo" msgstr "Akan Dikerjakan" @@ -5535,22 +5535,22 @@ msgstr "Besok" msgid "Took a call with John Doe and discussed the new project." msgstr "Melakukan panggilan dengan John Doe dan membahas proyek baru." -#. Label of the total (Currency) field in DocType 'CRM Deal' -#. Label of the total (Currency) field in DocType 'CRM Lead' -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_lead/crm_lead.json +#. Label of the total (Currency) field in PageType 'CRM Deal' +#. Label of the total (Currency) field in PageType 'CRM Lead' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_lead/crm_lead.json msgid "Total" msgstr "Total" -#. Label of the total_holidays (Int) field in DocType 'CRM Holiday List' -#: crm/fcrm/doctype/crm_holiday_list/crm_holiday_list.json +#. Label of the total_holidays (Int) field in PageType 'CRM Holiday List' +#: crm/fcrm/pagetype/crm_holiday_list/crm_holiday_list.json msgid "Total Holidays" msgstr "Total Hari Libur" -#. Description of the 'Net Total' (Currency) field in DocType 'CRM Deal' -#. Description of the 'Net Total' (Currency) field in DocType 'CRM Lead' -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_lead/crm_lead.json +#. Description of the 'Net Total' (Currency) field in PageType 'CRM Deal' +#. Description of the 'Net Total' (Currency) field in PageType 'CRM Lead' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_lead/crm_lead.json msgid "Total after discount" msgstr "Total setelah diskon" @@ -5571,10 +5571,10 @@ msgstr "Jumlah total kesepakatan yang sedang berjalan" msgid "Total number of won deals based on its closure date" msgstr "Jumlah total kesepakatan yang berhasil berdasarkan tanggal penutupannya" -#. Option for the 'Weekly Off' (Select) field in DocType 'CRM Holiday List' -#. Option for the 'Workday' (Select) field in DocType 'CRM Service Day' -#: crm/fcrm/doctype/crm_holiday_list/crm_holiday_list.json -#: crm/fcrm/doctype/crm_service_day/crm_service_day.json +#. Option for the 'Weekly Off' (Select) field in PageType 'CRM Holiday List' +#. Option for the 'Workday' (Select) field in PageType 'CRM Service Day' +#: crm/fcrm/pagetype/crm_holiday_list/crm_holiday_list.json +#: crm/fcrm/pagetype/crm_service_day/crm_service_day.json msgid "Tuesday" msgstr "Selasa" @@ -5582,30 +5582,30 @@ msgstr "Selasa" msgid "Turn into a group" msgstr "" -#. Label of the twiml_sid (Data) field in DocType 'CRM Twilio Settings' -#: crm/fcrm/doctype/crm_twilio_settings/crm_twilio_settings.json +#. Label of the twiml_sid (Data) field in PageType 'CRM Twilio Settings' +#: crm/fcrm/pagetype/crm_twilio_settings/crm_twilio_settings.json msgid "TwiML SID" msgstr "TwiML SID" -#. Option for the 'Telephony Medium' (Select) field in DocType 'CRM Call Log' -#. Label of the twilio (Check) field in DocType 'CRM Telephony Agent' -#. Option for the 'Default Medium' (Select) field in DocType 'CRM Telephony +#. Option for the 'Telephony Medium' (Select) field in PageType 'CRM Call Log' +#. Label of the twilio (Check) field in PageType 'CRM Telephony Agent' +#. Option for the 'Default Medium' (Select) field in PageType 'CRM Telephony #. Agent' -#: crm/fcrm/doctype/crm_call_log/crm_call_log.json -#: crm/fcrm/doctype/crm_telephony_agent/crm_telephony_agent.json +#: crm/fcrm/pagetype/crm_call_log/crm_call_log.json +#: crm/fcrm/pagetype/crm_telephony_agent/crm_telephony_agent.json #: frontend/src/components/Layouts/AppSidebar.vue:601 #: frontend/src/components/Settings/TelephonySettings.vue:40 #: frontend/src/components/Settings/TelephonySettings.vue:50 msgid "Twilio" msgstr "Twilio" -#: crm/fcrm/doctype/crm_twilio_settings/crm_twilio_settings.py:59 -#: crm/fcrm/doctype/crm_twilio_settings/crm_twilio_settings.py:60 +#: crm/fcrm/pagetype/crm_twilio_settings/crm_twilio_settings.py:59 +#: crm/fcrm/pagetype/crm_twilio_settings/crm_twilio_settings.py:60 msgid "Twilio API credential creation error." msgstr "Kesalahan pembuatan kredensial API Twilio." -#. Label of the twilio_number (Data) field in DocType 'CRM Telephony Agent' -#: crm/fcrm/doctype/crm_telephony_agent/crm_telephony_agent.json +#. Label of the twilio_number (Data) field in PageType 'CRM Telephony Agent' +#: crm/fcrm/pagetype/crm_telephony_agent/crm_telephony_agent.json msgid "Twilio Number" msgstr "Nomor Twilio" @@ -5617,20 +5617,20 @@ msgstr "Twilio tidak diaktifkan" msgid "Twilio settings updated successfully" msgstr "Pengaturan Twilio berhasil diperbarui" -#. Label of the type (Select) field in DocType 'CRM Call Log' -#. Label of the type (Select) field in DocType 'CRM Deal Status' -#. Label of the type (Select) field in DocType 'CRM Dropdown Item' -#. Label of the type (Select) field in DocType 'CRM Fields Layout' -#. Label of the type (Select) field in DocType 'CRM Global Settings' -#. Label of the type (Select) field in DocType 'CRM Notification' -#. Label of the type (Select) field in DocType 'CRM View Settings' -#: crm/fcrm/doctype/crm_call_log/crm_call_log.json -#: crm/fcrm/doctype/crm_deal_status/crm_deal_status.json -#: crm/fcrm/doctype/crm_dropdown_item/crm_dropdown_item.json -#: crm/fcrm/doctype/crm_fields_layout/crm_fields_layout.json -#: crm/fcrm/doctype/crm_global_settings/crm_global_settings.json -#: crm/fcrm/doctype/crm_notification/crm_notification.json -#: crm/fcrm/doctype/crm_view_settings/crm_view_settings.json +#. Label of the type (Select) field in PageType 'CRM Call Log' +#. Label of the type (Select) field in PageType 'CRM Deal Status' +#. Label of the type (Select) field in PageType 'CRM Dropdown Item' +#. Label of the type (Select) field in PageType 'CRM Fields Layout' +#. Label of the type (Select) field in PageType 'CRM Global Settings' +#. Label of the type (Select) field in PageType 'CRM Notification' +#. Label of the type (Select) field in PageType 'CRM View Settings' +#: crm/fcrm/pagetype/crm_call_log/crm_call_log.json +#: crm/fcrm/pagetype/crm_deal_status/crm_deal_status.json +#: crm/fcrm/pagetype/crm_dropdown_item/crm_dropdown_item.json +#: crm/fcrm/pagetype/crm_fields_layout/crm_fields_layout.json +#: crm/fcrm/pagetype/crm_global_settings/crm_global_settings.json +#: crm/fcrm/pagetype/crm_notification/crm_notification.json +#: crm/fcrm/pagetype/crm_view_settings/crm_view_settings.json msgid "Type" msgstr "Tipe" @@ -5772,12 +5772,12 @@ msgstr "Unggah gambar" msgid "Uploading {0}%" msgstr "" -#. Label of the user (Link) field in DocType 'CRM Dashboard' -#. Label of the user (Link) field in DocType 'CRM Telephony Agent' -#. Label of the user (Link) field in DocType 'CRM View Settings' -#: crm/fcrm/doctype/crm_dashboard/crm_dashboard.json -#: crm/fcrm/doctype/crm_telephony_agent/crm_telephony_agent.json -#: crm/fcrm/doctype/crm_view_settings/crm_view_settings.json +#. Label of the user (Link) field in PageType 'CRM Dashboard' +#. Label of the user (Link) field in PageType 'CRM Telephony Agent' +#. Label of the user (Link) field in PageType 'CRM View Settings' +#: crm/fcrm/pagetype/crm_dashboard/crm_dashboard.json +#: crm/fcrm/pagetype/crm_telephony_agent/crm_telephony_agent.json +#: crm/fcrm/pagetype/crm_view_settings/crm_view_settings.json msgid "User" msgstr "Pengguna" @@ -5785,8 +5785,8 @@ msgstr "Pengguna" msgid "User Management" msgstr "" -#. Label of the user_name (Data) field in DocType 'CRM Telephony Agent' -#: crm/fcrm/doctype/crm_telephony_agent/crm_telephony_agent.json +#. Label of the user_name (Data) field in PageType 'CRM Telephony Agent' +#: crm/fcrm/pagetype/crm_telephony_agent/crm_telephony_agent.json msgid "User Name" msgstr "Nama Pengguna" @@ -5808,9 +5808,9 @@ msgstr "Pengguna berhasil ditambahkan" msgid "Users are required" msgstr "" -#. Label of the section_break_nevd (Section Break) field in DocType 'CRM +#. Label of the section_break_nevd (Section Break) field in PageType 'CRM #. Service Level Agreement' -#: crm/fcrm/doctype/crm_service_level_agreement/crm_service_level_agreement.json +#: crm/fcrm/pagetype/crm_service_level_agreement/crm_service_level_agreement.json msgid "Validity" msgstr "Validitas" @@ -5834,33 +5834,33 @@ msgstr "Tampilan" msgid "Web form" msgstr "Formulir Web" -#. Label of the webhook_verify_token (Data) field in DocType 'CRM Exotel +#. Label of the webhook_verify_token (Data) field in PageType 'CRM Exotel #. Settings' -#: crm/fcrm/doctype/crm_exotel_settings/crm_exotel_settings.json +#: crm/fcrm/pagetype/crm_exotel_settings/crm_exotel_settings.json msgid "Webhook Verify Token" msgstr "Token Verifikasi Webhook" -#. Label of the website (Data) field in DocType 'CRM Deal' -#. Label of the website (Data) field in DocType 'CRM Lead' -#. Label of the website (Data) field in DocType 'CRM Organization' -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_lead/crm_lead.json -#: crm/fcrm/doctype/crm_organization/crm_organization.json +#. Label of the website (Data) field in PageType 'CRM Deal' +#. Label of the website (Data) field in PageType 'CRM Lead' +#. Label of the website (Data) field in PageType 'CRM Organization' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_lead/crm_lead.json +#: crm/fcrm/pagetype/crm_organization/crm_organization.json #: frontend/src/components/Modals/AboutModal.vue:52 msgid "Website" msgstr "Situs Web" -#. Option for the 'Weekly Off' (Select) field in DocType 'CRM Holiday List' -#. Option for the 'Workday' (Select) field in DocType 'CRM Service Day' -#: crm/fcrm/doctype/crm_holiday_list/crm_holiday_list.json -#: crm/fcrm/doctype/crm_service_day/crm_service_day.json +#. Option for the 'Weekly Off' (Select) field in PageType 'CRM Holiday List' +#. Option for the 'Workday' (Select) field in PageType 'CRM Service Day' +#: crm/fcrm/pagetype/crm_holiday_list/crm_holiday_list.json +#: crm/fcrm/pagetype/crm_service_day/crm_service_day.json msgid "Wednesday" msgstr "Rabu" -#. Label of the weekly_off (Check) field in DocType 'CRM Holiday' -#. Label of the weekly_off (Select) field in DocType 'CRM Holiday List' -#: crm/fcrm/doctype/crm_holiday/crm_holiday.json -#: crm/fcrm/doctype/crm_holiday_list/crm_holiday_list.json +#. Label of the weekly_off (Check) field in PageType 'CRM Holiday' +#. Label of the weekly_off (Select) field in PageType 'CRM Holiday List' +#: crm/fcrm/pagetype/crm_holiday/crm_holiday.json +#: crm/fcrm/pagetype/crm_holiday_list/crm_holiday_list.json msgid "Weekly Off" msgstr "Libur Mingguan" @@ -5868,7 +5868,7 @@ msgstr "Libur Mingguan" msgid "Welcome Message" msgstr "Pesan Selamat Datang" -#: crm/fcrm/doctype/helpdesk_crm_settings/helpdesk_crm_settings.py:155 +#: crm/fcrm/pagetype/helpdesk_crm_settings/helpdesk_crm_settings.py:155 msgid "Welcome to Helpdesk" msgstr "" @@ -5876,8 +5876,8 @@ msgstr "" msgid "Welcome {0}, lets add your first lead" msgstr "Selamat Datang {0}, ayo tambahkan prospek pertama Anda" -#. Option for the 'Type' (Select) field in DocType 'CRM Notification' -#: crm/fcrm/doctype/crm_notification/crm_notification.json +#. Option for the 'Type' (Select) field in PageType 'CRM Notification' +#: crm/fcrm/pagetype/crm_notification/crm_notification.json #: frontend/src/components/Layouts/AppSidebar.vue:603 #: frontend/src/components/Settings/Settings.vue:190 #: frontend/src/pages/Deal.vue:572 frontend/src/pages/Lead.vue:429 @@ -5902,8 +5902,8 @@ msgstr "Lebar" msgid "Width can be in number, pixel or rem (eg. 3, 30px, 10rem)" msgstr "Lebar bisa dalam satuan angka, piksel, atau rem (misalnya 3, 30px, 10rem)" -#. Option for the 'Type' (Select) field in DocType 'CRM Deal Status' -#: crm/fcrm/doctype/crm_deal_status/crm_deal_status.json +#. Option for the 'Type' (Select) field in PageType 'CRM Deal Status' +#: crm/fcrm/pagetype/crm_deal_status/crm_deal_status.json msgid "Won" msgstr "Berhasil" @@ -5912,16 +5912,16 @@ msgstr "Berhasil" msgid "Won deals" msgstr "Kesepakatan yang berhasil" -#. Label of the workday (Select) field in DocType 'CRM Service Day' -#: crm/fcrm/doctype/crm_service_day/crm_service_day.json +#. Label of the workday (Select) field in PageType 'CRM Service Day' +#: crm/fcrm/pagetype/crm_service_day/crm_service_day.json msgid "Workday" msgstr "Hari Kerja" -#. Label of the section_break_rmgo (Section Break) field in DocType 'CRM +#. Label of the section_break_rmgo (Section Break) field in PageType 'CRM #. Service Level Agreement' -#. Label of the working_hours (Table) field in DocType 'CRM Service Level +#. Label of the working_hours (Table) field in PageType 'CRM Service Level #. Agreement' -#: crm/fcrm/doctype/crm_service_level_agreement/crm_service_level_agreement.json +#: crm/fcrm/pagetype/crm_service_level_agreement/crm_service_level_agreement.json msgid "Working Hours" msgstr "Jam Kerja" @@ -5967,7 +5967,7 @@ msgstr "Anda belum mengatur nomor ponsel di Agen Telepon Anda" msgid "You do not have permission to access this document" msgstr "Anda tidak memiliki izin untuk mengakses dokumen ini" -#: crm/fcrm/doctype/crm_form_script/crm_form_script.py:24 +#: crm/fcrm/pagetype/crm_form_script/crm_form_script.py:24 msgid "You need to be in developer mode to edit a Standard Form Script" msgstr "Anda harus berada dalam Mode pengembang untuk mengubah Skrip Formulir Standar" @@ -5995,10 +5995,10 @@ msgstr "" msgid "added a" msgstr "menambahkan" -#. Option for the 'Color' (Select) field in DocType 'CRM Deal Status' -#. Option for the 'Color' (Select) field in DocType 'CRM Lead Status' -#: crm/fcrm/doctype/crm_deal_status/crm_deal_status.json -#: crm/fcrm/doctype/crm_lead_status/crm_lead_status.json +#. Option for the 'Color' (Select) field in PageType 'CRM Deal Status' +#. Option for the 'Color' (Select) field in PageType 'CRM Lead Status' +#: crm/fcrm/pagetype/crm_deal_status/crm_deal_status.json +#: crm/fcrm/pagetype/crm_lead_status/crm_lead_status.json msgid "amber" msgstr "kuning sawo" @@ -6010,17 +6010,17 @@ msgstr "menetapkan tugas baru {0} kepada Anda" msgid "assigned a {0} {1} to you" msgstr "menetapkan tugas {0} {1} kepada Anda" -#. Option for the 'Color' (Select) field in DocType 'CRM Deal Status' -#. Option for the 'Color' (Select) field in DocType 'CRM Lead Status' -#: crm/fcrm/doctype/crm_deal_status/crm_deal_status.json -#: crm/fcrm/doctype/crm_lead_status/crm_lead_status.json +#. Option for the 'Color' (Select) field in PageType 'CRM Deal Status' +#. Option for the 'Color' (Select) field in PageType 'CRM Lead Status' +#: crm/fcrm/pagetype/crm_deal_status/crm_deal_status.json +#: crm/fcrm/pagetype/crm_lead_status/crm_lead_status.json msgid "black" msgstr "hitam" -#. Option for the 'Color' (Select) field in DocType 'CRM Deal Status' -#. Option for the 'Color' (Select) field in DocType 'CRM Lead Status' -#: crm/fcrm/doctype/crm_deal_status/crm_deal_status.json -#: crm/fcrm/doctype/crm_lead_status/crm_lead_status.json +#. Option for the 'Color' (Select) field in PageType 'CRM Deal Status' +#. Option for the 'Color' (Select) field in PageType 'CRM Lead Status' +#: crm/fcrm/pagetype/crm_deal_status/crm_deal_status.json +#: crm/fcrm/pagetype/crm_lead_status/crm_lead_status.json msgid "blue" msgstr "biru" @@ -6037,10 +6037,10 @@ msgstr "komentar" msgid "condition" msgstr "kondisi" -#. Option for the 'Color' (Select) field in DocType 'CRM Deal Status' -#. Option for the 'Color' (Select) field in DocType 'CRM Lead Status' -#: crm/fcrm/doctype/crm_deal_status/crm_deal_status.json -#: crm/fcrm/doctype/crm_lead_status/crm_lead_status.json +#. Option for the 'Color' (Select) field in PageType 'CRM Deal Status' +#. Option for the 'Color' (Select) field in PageType 'CRM Lead Status' +#: crm/fcrm/pagetype/crm_deal_status/crm_deal_status.json +#: crm/fcrm/pagetype/crm_lead_status/crm_lead_status.json msgid "cyan" msgstr "biru muda" @@ -6059,33 +6059,33 @@ msgstr "meja" msgid "email already exists" msgstr "email sudah ada" -#. Option for the 'Service Provider' (Select) field in DocType 'FCRM Settings' -#: crm/fcrm/doctype/fcrm_settings/fcrm_settings.json +#. Option for the 'Service Provider' (Select) field in PageType 'FCRM Settings' +#: crm/fcrm/pagetype/fcrm_settings/fcrm_settings.json #: frontend/src/components/Settings/CurrencySettings.vue:106 msgid "exchangerate.host" msgstr "exchangerate.host" -#. Option for the 'Service Provider' (Select) field in DocType 'FCRM Settings' -#: crm/fcrm/doctype/fcrm_settings/fcrm_settings.json +#. Option for the 'Service Provider' (Select) field in PageType 'FCRM Settings' +#: crm/fcrm/pagetype/fcrm_settings/fcrm_settings.json msgid "frankfurter.app" msgstr "frankfurter.app" -#. Option for the 'Color' (Select) field in DocType 'CRM Deal Status' -#. Option for the 'Color' (Select) field in DocType 'CRM Lead Status' -#: crm/fcrm/doctype/crm_deal_status/crm_deal_status.json -#: crm/fcrm/doctype/crm_lead_status/crm_lead_status.json +#. Option for the 'Color' (Select) field in PageType 'CRM Deal Status' +#. Option for the 'Color' (Select) field in PageType 'CRM Lead Status' +#: crm/fcrm/pagetype/crm_deal_status/crm_deal_status.json +#: crm/fcrm/pagetype/crm_lead_status/crm_lead_status.json msgid "gray" msgstr "abu-abu" -#. Option for the 'Color' (Select) field in DocType 'CRM Deal Status' -#. Option for the 'Color' (Select) field in DocType 'CRM Lead Status' -#: crm/fcrm/doctype/crm_deal_status/crm_deal_status.json -#: crm/fcrm/doctype/crm_lead_status/crm_lead_status.json +#. Option for the 'Color' (Select) field in PageType 'CRM Deal Status' +#. Option for the 'Color' (Select) field in PageType 'CRM Lead Status' +#: crm/fcrm/pagetype/crm_deal_status/crm_deal_status.json +#: crm/fcrm/pagetype/crm_lead_status/crm_lead_status.json msgid "green" msgstr "hijau" -#. Option for the 'Type' (Select) field in DocType 'CRM View Settings' -#: crm/fcrm/doctype/crm_view_settings/crm_view_settings.json +#. Option for the 'Type' (Select) field in PageType 'CRM View Settings' +#: crm/fcrm/pagetype/crm_view_settings/crm_view_settings.json msgid "group_by" msgstr "kelompokkan_berdasarkan" @@ -6170,12 +6170,12 @@ msgstr "john@doe.com" msgid "just now" msgstr "baru saja" -#. Option for the 'Type' (Select) field in DocType 'CRM View Settings' -#: crm/fcrm/doctype/crm_view_settings/crm_view_settings.json +#. Option for the 'Type' (Select) field in PageType 'CRM View Settings' +#: crm/fcrm/pagetype/crm_view_settings/crm_view_settings.json msgid "kanban" msgstr "kanban" -#: crm/api/doc.py:40 crm/api/doc.py:158 crm/api/doc.py:503 +#: crm/api/pg.py:40 crm/api/pg.py:158 crm/api/pg.py:503 msgid "label" msgstr "label" @@ -6184,8 +6184,8 @@ msgstr "label" msgid "leads" msgstr "lead" -#. Option for the 'Type' (Select) field in DocType 'CRM View Settings' -#: crm/fcrm/doctype/crm_view_settings/crm_view_settings.json +#. Option for the 'Type' (Select) field in PageType 'CRM View Settings' +#: crm/fcrm/pagetype/crm_view_settings/crm_view_settings.json msgid "list" msgstr "daftar" @@ -6206,17 +6206,17 @@ msgstr "sekarang" msgid "operator" msgstr "operator" -#. Option for the 'Color' (Select) field in DocType 'CRM Deal Status' -#. Option for the 'Color' (Select) field in DocType 'CRM Lead Status' -#: crm/fcrm/doctype/crm_deal_status/crm_deal_status.json -#: crm/fcrm/doctype/crm_lead_status/crm_lead_status.json +#. Option for the 'Color' (Select) field in PageType 'CRM Deal Status' +#. Option for the 'Color' (Select) field in PageType 'CRM Lead Status' +#: crm/fcrm/pagetype/crm_deal_status/crm_deal_status.json +#: crm/fcrm/pagetype/crm_lead_status/crm_lead_status.json msgid "orange" msgstr "oranye" -#. Option for the 'Color' (Select) field in DocType 'CRM Deal Status' -#. Option for the 'Color' (Select) field in DocType 'CRM Lead Status' -#: crm/fcrm/doctype/crm_deal_status/crm_deal_status.json -#: crm/fcrm/doctype/crm_lead_status/crm_lead_status.json +#. Option for the 'Color' (Select) field in PageType 'CRM Deal Status' +#. Option for the 'Color' (Select) field in PageType 'CRM Lead Status' +#: crm/fcrm/pagetype/crm_deal_status/crm_deal_status.json +#: crm/fcrm/pagetype/crm_lead_status/crm_lead_status.json msgid "pink" msgstr "merah jambu" @@ -6232,10 +6232,10 @@ msgstr "privat" msgid "public" msgstr "publik" -#. Option for the 'Color' (Select) field in DocType 'CRM Deal Status' -#. Option for the 'Color' (Select) field in DocType 'CRM Lead Status' -#: crm/fcrm/doctype/crm_deal_status/crm_deal_status.json -#: crm/fcrm/doctype/crm_lead_status/crm_lead_status.json +#. Option for the 'Color' (Select) field in PageType 'CRM Deal Status' +#. Option for the 'Color' (Select) field in PageType 'CRM Lead Status' +#: crm/fcrm/pagetype/crm_deal_status/crm_deal_status.json +#: crm/fcrm/pagetype/crm_lead_status/crm_lead_status.json msgid "purple" msgstr "ungu kemerahan" @@ -6243,17 +6243,17 @@ msgstr "ungu kemerahan" msgid "received a whatsapp message in {0}" msgstr "menerima pesan WhatsApp di {0}" -#. Option for the 'Color' (Select) field in DocType 'CRM Deal Status' -#. Option for the 'Color' (Select) field in DocType 'CRM Lead Status' -#: crm/fcrm/doctype/crm_deal_status/crm_deal_status.json -#: crm/fcrm/doctype/crm_lead_status/crm_lead_status.json +#. Option for the 'Color' (Select) field in PageType 'CRM Deal Status' +#. Option for the 'Color' (Select) field in PageType 'CRM Lead Status' +#: crm/fcrm/pagetype/crm_deal_status/crm_deal_status.json +#: crm/fcrm/pagetype/crm_lead_status/crm_lead_status.json msgid "red" msgstr "merah" -#. Option for the 'Color' (Select) field in DocType 'CRM Deal Status' -#. Option for the 'Color' (Select) field in DocType 'CRM Lead Status' -#: crm/fcrm/doctype/crm_deal_status/crm_deal_status.json -#: crm/fcrm/doctype/crm_lead_status/crm_lead_status.json +#. Option for the 'Color' (Select) field in PageType 'CRM Deal Status' +#. Option for the 'Color' (Select) field in PageType 'CRM Lead Status' +#: crm/fcrm/pagetype/crm_deal_status/crm_deal_status.json +#: crm/fcrm/pagetype/crm_lead_status/crm_lead_status.json msgid "teal" msgstr "biru kehijauan gelap" @@ -6266,10 +6266,10 @@ msgstr "menjadi" msgid "tomorrow" msgstr "besok" -#. Option for the 'Color' (Select) field in DocType 'CRM Deal Status' -#. Option for the 'Color' (Select) field in DocType 'CRM Lead Status' -#: crm/fcrm/doctype/crm_deal_status/crm_deal_status.json -#: crm/fcrm/doctype/crm_lead_status/crm_lead_status.json +#. Option for the 'Color' (Select) field in PageType 'CRM Deal Status' +#. Option for the 'Color' (Select) field in PageType 'CRM Lead Status' +#: crm/fcrm/pagetype/crm_deal_status/crm_deal_status.json +#: crm/fcrm/pagetype/crm_lead_status/crm_lead_status.json msgid "violet" msgstr "ungu kebiruan" @@ -6278,10 +6278,10 @@ msgstr "ungu kebiruan" msgid "which are not compatible with this UI, you will need to recreate the conditions here if you want to manage and add new conditions from this UI." msgstr "" -#. Option for the 'Color' (Select) field in DocType 'CRM Deal Status' -#. Option for the 'Color' (Select) field in DocType 'CRM Lead Status' -#: crm/fcrm/doctype/crm_deal_status/crm_deal_status.json -#: crm/fcrm/doctype/crm_lead_status/crm_lead_status.json +#. Option for the 'Color' (Select) field in PageType 'CRM Deal Status' +#. Option for the 'Color' (Select) field in PageType 'CRM Lead Status' +#: crm/fcrm/pagetype/crm_deal_status/crm_deal_status.json +#: crm/fcrm/pagetype/crm_lead_status/crm_lead_status.json msgid "yellow" msgstr "kuning" @@ -6379,8 +6379,8 @@ msgid "⚠️ Method \"{0}\" not found in class." msgstr "⚠️ Metode \"{0}\" tidak ditemukan pada kelas." #: frontend/src/data/script.js:83 -msgid "⚠️ No class found for doctype: {0}, it is mandatory to have a class for the parent doctype. it can be empty, but it should be present." -msgstr "⚠️ Kelas tidak ditemukan untuk doctype: {0}, wajib ada sebuah kelas untuk doctype induk. Kelas tersebut bisa kosong, namun harus tetap ada." +msgid "⚠️ No class found for pagetype: {0}, it is mandatory to have a class for the parent pagetype. it can be empty, but it should be present." +msgstr "⚠️ Kelas tidak ditemukan untuk pagetype: {0}, wajib ada sebuah kelas untuk pagetype induk. Kelas tersebut bisa kosong, namun harus tetap ada." #: frontend/src/data/script.js:180 msgid "⚠️ No data found for parent field: {0}" diff --git a/crm/locale/it.po b/crm/locale/it.po index 121c4f6f..9f4ad66f 100644 --- a/crm/locale/it.po +++ b/crm/locale/it.po @@ -1,6 +1,6 @@ msgid "" msgstr "" -"Project-Id-Version: frappe\n" +"Project-Id-Version: jingrow\n" "Report-Msgid-Bugs-To: shariq@jingrow.com\n" "POT-Creation-Date: 2025-09-21 09:35+0000\n" "PO-Revision-Date: 2025-09-22 20:42\n" @@ -11,10 +11,10 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Generated-By: Babel 2.16.0\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -"X-Crowdin-Project: frappe\n" +"X-Crowdin-Project: jingrow\n" "X-Crowdin-Project-ID: 639578\n" "X-Crowdin-Language: it\n" -"X-Crowdin-File: /[frappe.crm] develop/crm/locale/main.pot\n" +"X-Crowdin-File: /[jingrow.crm] develop/crm/locale/main.pot\n" "X-Crowdin-File-ID: 97\n" "Language: it_IT\n" @@ -55,73 +55,73 @@ msgstr "1 settimana fa" msgid "1 year ago" msgstr "1 anno fa" -#. Option for the 'No. of Employees' (Select) field in DocType 'CRM Deal' -#. Option for the 'No. of Employees' (Select) field in DocType 'CRM Lead' -#. Option for the 'No. of Employees' (Select) field in DocType 'CRM +#. Option for the 'No. of Employees' (Select) field in PageType 'CRM Deal' +#. Option for the 'No. of Employees' (Select) field in PageType 'CRM Lead' +#. Option for the 'No. of Employees' (Select) field in PageType 'CRM #. Organization' -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_lead/crm_lead.json -#: crm/fcrm/doctype/crm_organization/crm_organization.json +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_lead/crm_lead.json +#: crm/fcrm/pagetype/crm_organization/crm_organization.json msgid "1-10" msgstr "1-10" -#. Option for the 'No. of Employees' (Select) field in DocType 'CRM Deal' -#. Option for the 'No. of Employees' (Select) field in DocType 'CRM Lead' -#. Option for the 'No. of Employees' (Select) field in DocType 'CRM +#. Option for the 'No. of Employees' (Select) field in PageType 'CRM Deal' +#. Option for the 'No. of Employees' (Select) field in PageType 'CRM Lead' +#. Option for the 'No. of Employees' (Select) field in PageType 'CRM #. Organization' -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_lead/crm_lead.json -#: crm/fcrm/doctype/crm_organization/crm_organization.json +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_lead/crm_lead.json +#: crm/fcrm/pagetype/crm_organization/crm_organization.json msgid "1000+" msgstr "1000+" -#. Option for the 'No. of Employees' (Select) field in DocType 'CRM Deal' -#. Option for the 'No. of Employees' (Select) field in DocType 'CRM Lead' -#. Option for the 'No. of Employees' (Select) field in DocType 'CRM +#. Option for the 'No. of Employees' (Select) field in PageType 'CRM Deal' +#. Option for the 'No. of Employees' (Select) field in PageType 'CRM Lead' +#. Option for the 'No. of Employees' (Select) field in PageType 'CRM #. Organization' -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_lead/crm_lead.json -#: crm/fcrm/doctype/crm_organization/crm_organization.json +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_lead/crm_lead.json +#: crm/fcrm/pagetype/crm_organization/crm_organization.json msgid "11-50" msgstr "11-50" -#. Option for the 'No. of Employees' (Select) field in DocType 'CRM Deal' -#. Option for the 'No. of Employees' (Select) field in DocType 'CRM Lead' -#. Option for the 'No. of Employees' (Select) field in DocType 'CRM +#. Option for the 'No. of Employees' (Select) field in PageType 'CRM Deal' +#. Option for the 'No. of Employees' (Select) field in PageType 'CRM Lead' +#. Option for the 'No. of Employees' (Select) field in PageType 'CRM #. Organization' -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_lead/crm_lead.json -#: crm/fcrm/doctype/crm_organization/crm_organization.json +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_lead/crm_lead.json +#: crm/fcrm/pagetype/crm_organization/crm_organization.json msgid "201-500" msgstr "201-500" -#. Option for the 'No. of Employees' (Select) field in DocType 'CRM Deal' -#. Option for the 'No. of Employees' (Select) field in DocType 'CRM Lead' -#. Option for the 'No. of Employees' (Select) field in DocType 'CRM +#. Option for the 'No. of Employees' (Select) field in PageType 'CRM Deal' +#. Option for the 'No. of Employees' (Select) field in PageType 'CRM Lead' +#. Option for the 'No. of Employees' (Select) field in PageType 'CRM #. Organization' -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_lead/crm_lead.json -#: crm/fcrm/doctype/crm_organization/crm_organization.json +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_lead/crm_lead.json +#: crm/fcrm/pagetype/crm_organization/crm_organization.json msgid "501-1000" msgstr "501-1000" -#. Option for the 'No. of Employees' (Select) field in DocType 'CRM Deal' -#. Option for the 'No. of Employees' (Select) field in DocType 'CRM Lead' -#. Option for the 'No. of Employees' (Select) field in DocType 'CRM +#. Option for the 'No. of Employees' (Select) field in PageType 'CRM Deal' +#. Option for the 'No. of Employees' (Select) field in PageType 'CRM Lead' +#. Option for the 'No. of Employees' (Select) field in PageType 'CRM #. Organization' -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_lead/crm_lead.json -#: crm/fcrm/doctype/crm_organization/crm_organization.json +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_lead/crm_lead.json +#: crm/fcrm/pagetype/crm_organization/crm_organization.json msgid "51-200" msgstr "51-200" -#. Paragraph text in the Frappe CRM Workspace -#: crm/fcrm/workspace/frappe_crm/frappe_crm.json +#. Paragraph text in the Jingrow CRM Workspace +#: crm/fcrm/workspace/jingrow_crm/jingrow_crm.json msgid "META" msgstr "" -#. Paragraph text in the Frappe CRM Workspace -#: crm/fcrm/workspace/frappe_crm/frappe_crm.json +#. Paragraph text in the Jingrow CRM Workspace +#: crm/fcrm/workspace/jingrow_crm/jingrow_crm.json msgid "SHORTCUTS" msgstr "SCORCIATOIE" @@ -130,8 +130,8 @@ msgstr "SCORCIATOIE" msgid "

Dear {{ lead_name }},

\\n\\n

This is a reminder for the payment of {{ grand_total }}.

\\n\\n

Thanks,

\\n

Frappé

" msgstr "" -#. Header text in the Frappe CRM Workspace -#: crm/fcrm/workspace/frappe_crm/frappe_crm.json +#. Header text in the Jingrow CRM Workspace +#: crm/fcrm/workspace/jingrow_crm/jingrow_crm.json msgid "PORTAL" msgstr "PORTALE" @@ -139,7 +139,7 @@ msgstr "PORTALE" msgid "@John, can you please check this?" msgstr "" -#: crm/fcrm/doctype/crm_lead/crm_lead.py:56 +#: crm/fcrm/pagetype/crm_lead/crm_lead.py:56 msgid "A Lead requires either a person's name or an organization's name" msgstr "" @@ -147,14 +147,14 @@ msgstr "" msgid "A new account has been created for you at {0}" msgstr "" -#. Label of the api_key (Data) field in DocType 'CRM Exotel Settings' -#. Label of the api_key (Data) field in DocType 'CRM Twilio Settings' -#. Label of the api_key (Data) field in DocType 'ERPNext CRM Settings' -#. Label of the api_key (Data) field in DocType 'Helpdesk CRM Settings' -#: crm/fcrm/doctype/crm_exotel_settings/crm_exotel_settings.json -#: crm/fcrm/doctype/crm_twilio_settings/crm_twilio_settings.json -#: crm/fcrm/doctype/erpnext_crm_settings/erpnext_crm_settings.json -#: crm/fcrm/doctype/helpdesk_crm_settings/helpdesk_crm_settings.json +#. Label of the api_key (Data) field in PageType 'CRM Exotel Settings' +#. Label of the api_key (Data) field in PageType 'CRM Twilio Settings' +#. Label of the api_key (Data) field in PageType 'ERPNext CRM Settings' +#. Label of the api_key (Data) field in PageType 'Helpdesk CRM Settings' +#: crm/fcrm/pagetype/crm_exotel_settings/crm_exotel_settings.json +#: crm/fcrm/pagetype/crm_twilio_settings/crm_twilio_settings.json +#: crm/fcrm/pagetype/erpnext_crm_settings/erpnext_crm_settings.json +#: crm/fcrm/pagetype/helpdesk_crm_settings/helpdesk_crm_settings.json msgid "API Key" msgstr "" @@ -162,17 +162,17 @@ msgstr "" msgid "API Key is required" msgstr "" -#. Label of the api_secret (Password) field in DocType 'CRM Twilio Settings' -#. Label of the api_secret (Password) field in DocType 'ERPNext CRM Settings' -#. Label of the api_secret (Password) field in DocType 'Helpdesk CRM Settings' -#: crm/fcrm/doctype/crm_twilio_settings/crm_twilio_settings.json -#: crm/fcrm/doctype/erpnext_crm_settings/erpnext_crm_settings.json -#: crm/fcrm/doctype/helpdesk_crm_settings/helpdesk_crm_settings.json +#. Label of the api_secret (Password) field in PageType 'CRM Twilio Settings' +#. Label of the api_secret (Password) field in PageType 'ERPNext CRM Settings' +#. Label of the api_secret (Password) field in PageType 'Helpdesk CRM Settings' +#: crm/fcrm/pagetype/crm_twilio_settings/crm_twilio_settings.json +#: crm/fcrm/pagetype/erpnext_crm_settings/erpnext_crm_settings.json +#: crm/fcrm/pagetype/helpdesk_crm_settings/helpdesk_crm_settings.json msgid "API Secret" msgstr "" -#. Label of the api_token (Password) field in DocType 'CRM Exotel Settings' -#: crm/fcrm/doctype/crm_exotel_settings/crm_exotel_settings.json +#. Label of the api_token (Password) field in PageType 'CRM Exotel Settings' +#: crm/fcrm/pagetype/crm_exotel_settings/crm_exotel_settings.json msgid "API Token" msgstr "" @@ -180,7 +180,7 @@ msgstr "" msgid "Accept" msgstr "" -#: crm/fcrm/doctype/crm_invitation/crm_invitation.js:7 +#: crm/fcrm/pagetype/crm_invitation/crm_invitation.js:7 msgid "Accept Invitation" msgstr "Accetta l'Invito" @@ -188,22 +188,22 @@ msgstr "Accetta l'Invito" msgid "Accept call" msgstr "" -#. Option for the 'Status' (Select) field in DocType 'CRM Invitation' -#: crm/fcrm/doctype/crm_invitation/crm_invitation.json +#. Option for the 'Status' (Select) field in PageType 'CRM Invitation' +#: crm/fcrm/pagetype/crm_invitation/crm_invitation.json msgid "Accepted" msgstr "Accettato" -#. Label of the accepted_at (Datetime) field in DocType 'CRM Invitation' -#: crm/fcrm/doctype/crm_invitation/crm_invitation.json +#. Label of the accepted_at (Datetime) field in PageType 'CRM Invitation' +#: crm/fcrm/pagetype/crm_invitation/crm_invitation.json msgid "Accepted At" msgstr "" -#. Label of the access_key (Data) field in DocType 'FCRM Settings' -#: crm/fcrm/doctype/fcrm_settings/fcrm_settings.json +#. Label of the access_key (Data) field in PageType 'FCRM Settings' +#: crm/fcrm/pagetype/fcrm_settings/fcrm_settings.json msgid "Access Key" msgstr "" -#: crm/fcrm/doctype/fcrm_settings/fcrm_settings.py:156 +#: crm/fcrm/pagetype/fcrm_settings/fcrm_settings.py:156 msgid "Access Key is required for Service Provider: {0}" msgstr "" @@ -219,10 +219,10 @@ msgstr "" msgid "Account Name" msgstr "" -#. Label of the account_sid (Data) field in DocType 'CRM Exotel Settings' -#. Label of the account_sid (Data) field in DocType 'CRM Twilio Settings' -#: crm/fcrm/doctype/crm_exotel_settings/crm_exotel_settings.json -#: crm/fcrm/doctype/crm_twilio_settings/crm_twilio_settings.json +#. Label of the account_sid (Data) field in PageType 'CRM Exotel Settings' +#. Label of the account_sid (Data) field in PageType 'CRM Twilio Settings' +#: crm/fcrm/pagetype/crm_exotel_settings/crm_exotel_settings.json +#: crm/fcrm/pagetype/crm_twilio_settings/crm_twilio_settings.json msgid "Account SID" msgstr "SID dell'Account" @@ -296,9 +296,9 @@ msgstr "" msgid "Add Tab" msgstr "Aggiungi Scheda" -#. Label of the add_weekly_holidays_section (Section Break) field in DocType +#. Label of the add_weekly_holidays_section (Section Break) field in PageType #. 'CRM Holiday List' -#: crm/fcrm/doctype/crm_holiday_list/crm_holiday_list.json +#: crm/fcrm/pagetype/crm_holiday_list/crm_holiday_list.json msgid "Add Weekly Holidays" msgstr "Aggiungi Festività Settimanali" @@ -363,8 +363,8 @@ msgstr "" msgid "Add sample data" msgstr "" -#. Description of the 'Icon' (Code) field in DocType 'CRM Dropdown Item' -#: crm/fcrm/doctype/crm_dropdown_item/crm_dropdown_item.json +#. Description of the 'Icon' (Code) field in PageType 'CRM Dropdown Item' +#: crm/fcrm/pagetype/crm_dropdown_item/crm_dropdown_item.json msgid "Add svg code or use feather icons e.g 'settings'" msgstr "Aggiungi codice svg o usa icone leggere ad esempio 'impostazioni'" @@ -372,8 +372,8 @@ msgstr "Aggiungi codice svg o usa icone leggere ad esempio 'impostazioni'" msgid "Add task" msgstr "" -#. Label of the add_to_holidays (Button) field in DocType 'CRM Holiday List' -#: crm/fcrm/doctype/crm_holiday_list/crm_holiday_list.json +#. Label of the add_to_holidays (Button) field in PageType 'CRM Holiday List' +#: crm/fcrm/pagetype/crm_holiday_list/crm_holiday_list.json msgid "Add to Holidays" msgstr "Aggiungi alle Festività" @@ -385,8 +385,8 @@ msgstr "Aggiungi il tuo primo commento" msgid "Add, edit, and manage email templates for various CRM communications" msgstr "" -#. Label of the address (Link) field in DocType 'CRM Organization' -#: crm/fcrm/doctype/crm_organization/crm_organization.json +#. Label of the address (Link) field in PageType 'CRM Organization' +#: crm/fcrm/pagetype/crm_organization/crm_organization.json msgid "Address" msgstr "Indirizzo" @@ -406,14 +406,14 @@ msgid "Agent is unavailable to take the call, please call after some time." msgstr "" #. Name of a role -#: crm/fcrm/doctype/crm_exotel_settings/crm_exotel_settings.json -#: crm/fcrm/doctype/crm_fields_layout/crm_fields_layout.json -#: crm/fcrm/doctype/crm_form_script/crm_form_script.json -#: crm/fcrm/doctype/crm_industry/crm_industry.json -#: crm/fcrm/doctype/crm_lead/crm_lead.json -#: crm/fcrm/doctype/crm_lead_source/crm_lead_source.json -#: crm/fcrm/doctype/crm_lead_status/crm_lead_status.json -#: crm/fcrm/doctype/fcrm_settings/fcrm_settings.json +#: crm/fcrm/pagetype/crm_exotel_settings/crm_exotel_settings.json +#: crm/fcrm/pagetype/crm_fields_layout/crm_fields_layout.json +#: crm/fcrm/pagetype/crm_form_script/crm_form_script.json +#: crm/fcrm/pagetype/crm_industry/crm_industry.json +#: crm/fcrm/pagetype/crm_lead/crm_lead.json +#: crm/fcrm/pagetype/crm_lead_source/crm_lead_source.json +#: crm/fcrm/pagetype/crm_lead_status/crm_lead_status.json +#: crm/fcrm/pagetype/fcrm_settings/fcrm_settings.json #: frontend/src/components/Settings/EmailTemplate/EmailTemplates.vue:76 #: frontend/src/components/Settings/Users.vue:85 msgid "All" @@ -426,16 +426,16 @@ msgstr "Tutti" msgid "All day" msgstr "" -#. Label of the amount (Currency) field in DocType 'CRM Products' -#: crm/fcrm/doctype/crm_products/crm_products.json +#. Label of the amount (Currency) field in PageType 'CRM Products' +#: crm/fcrm/pagetype/crm_products/crm_products.json #: frontend/src/pages/Contact.vue:499 frontend/src/pages/MobileContact.vue:507 #: frontend/src/pages/MobileOrganization.vue:451 #: frontend/src/pages/Organization.vue:472 msgid "Amount" msgstr "" -#. Description of the 'Net Amount' (Currency) field in DocType 'CRM Products' -#: crm/fcrm/doctype/crm_products/crm_products.json +#. Description of the 'Net Amount' (Currency) field in PageType 'CRM Products' +#: crm/fcrm/pagetype/crm_products/crm_products.json msgid "Amount after discount" msgstr "" @@ -447,13 +447,13 @@ msgstr "" msgid "An error occurred while updating the document" msgstr "Si è verificato un errore durante l'aggiornamento del documento" -#. Description of the 'Favicon' (Attach) field in DocType 'FCRM Settings' -#: crm/fcrm/doctype/fcrm_settings/fcrm_settings.json +#. Description of the 'Favicon' (Attach) field in PageType 'FCRM Settings' +#: crm/fcrm/pagetype/fcrm_settings/fcrm_settings.json msgid "An icon file with .ico extension. Should be 16 x 16 px. Generated using a favicon generator. [favicon-generator.org]" msgstr "" -#. Description of the 'Logo' (Attach) field in DocType 'FCRM Settings' -#: crm/fcrm/doctype/fcrm_settings/fcrm_settings.json +#. Description of the 'Logo' (Attach) field in PageType 'FCRM Settings' +#: crm/fcrm/pagetype/fcrm_settings/fcrm_settings.json msgid "An image with 1:1 & 2:1 ratio is preferred" msgstr "" @@ -461,12 +461,12 @@ msgstr "" msgid "And" msgstr "" -#. Label of the annual_revenue (Currency) field in DocType 'CRM Deal' -#. Label of the annual_revenue (Currency) field in DocType 'CRM Lead' -#. Label of the annual_revenue (Currency) field in DocType 'CRM Organization' -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_lead/crm_lead.json -#: crm/fcrm/doctype/crm_organization/crm_organization.json +#. Label of the annual_revenue (Currency) field in PageType 'CRM Deal' +#. Label of the annual_revenue (Currency) field in PageType 'CRM Lead' +#. Label of the annual_revenue (Currency) field in PageType 'CRM Organization' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_lead/crm_lead.json +#: crm/fcrm/pagetype/crm_organization/crm_organization.json msgid "Annual Revenue" msgstr "Ricavi Annuali" @@ -488,13 +488,13 @@ msgstr "" msgid "Apply" msgstr "Applica" -#. Label of the apply_on (Link) field in DocType 'CRM Service Level Agreement' -#: crm/fcrm/doctype/crm_service_level_agreement/crm_service_level_agreement.json +#. Label of the apply_on (Link) field in PageType 'CRM Service Level Agreement' +#: crm/fcrm/pagetype/crm_service_level_agreement/crm_service_level_agreement.json msgid "Apply On" msgstr "" -#. Label of the view (Select) field in DocType 'CRM Form Script' -#: crm/fcrm/doctype/crm_form_script/crm_form_script.json +#. Label of the view (Select) field in PageType 'CRM Form Script' +#: crm/fcrm/pagetype/crm_form_script/crm_form_script.json msgid "Apply To" msgstr "Applica A" @@ -540,10 +540,10 @@ msgid "Are you sure you want to go back? Unsaved changes will be lost." msgstr "" #: frontend/src/composables/frappecloud.js:24 -msgid "Are you sure you want to login to your Frappe Cloud dashboard?" +msgid "Are you sure you want to login to your Jingrow Cloud dashboard?" msgstr "" -#: crm/fcrm/doctype/erpnext_crm_settings/erpnext_crm_settings.js:9 +#: crm/fcrm/pagetype/erpnext_crm_settings/erpnext_crm_settings.js:9 msgid "Are you sure you want to reset 'Create Quotation from CRM Deal' Form Script?" msgstr "Vuoi davvero reimpostare lo script del modulo \"Crea Preventivo da Offerta CRM\"?" @@ -555,7 +555,7 @@ msgstr "" msgid "Are you sure you want to unlink {0} linked item(s)?" msgstr "" -#: crm/fcrm/doctype/fcrm_settings/fcrm_settings.py:193 +#: crm/fcrm/pagetype/fcrm_settings/fcrm_settings.py:193 msgid "Ask your manager to set up the Exchange Rate Provider, as default provider does not support currency conversion for {0} to {1}." msgstr "Chiedi al tuo manager di configurare un fornitore di tassi di cambio, poiché quello predefinito non supporta la conversione da {0} a {1}." @@ -581,8 +581,8 @@ msgstr "" msgid "Assign to me" msgstr "Assegna a me" -#. Label of the assigned_to (Link) field in DocType 'CRM Task' -#: crm/fcrm/doctype/crm_task/crm_task.json +#. Label of the assigned_to (Link) field in PageType 'CRM Task' +#: crm/fcrm/pagetype/crm_task/crm_task.json msgid "Assigned To" msgstr "Assegnato A" @@ -594,13 +594,13 @@ msgstr "" msgid "Assignees" msgstr "" -#. Option for the 'Type' (Select) field in DocType 'CRM Notification' -#: crm/fcrm/doctype/crm_notification/crm_notification.json +#. Option for the 'Type' (Select) field in PageType 'CRM Notification' +#: crm/fcrm/pagetype/crm_notification/crm_notification.json msgid "Assignment" msgstr "" -#. Label of a shortcut in the Frappe CRM Workspace -#: crm/fcrm/workspace/frappe_crm/frappe_crm.json +#. Label of a shortcut in the Jingrow CRM Workspace +#: crm/fcrm/workspace/jingrow_crm/jingrow_crm.json msgid "Assignment Rule" msgstr "Regola di Assegnazione" @@ -678,14 +678,14 @@ msgstr "Allegati" msgid "Attendees" msgstr "" -#. Label of the auth_token (Password) field in DocType 'CRM Twilio Settings' -#: crm/fcrm/doctype/crm_twilio_settings/crm_twilio_settings.json +#. Label of the auth_token (Password) field in PageType 'CRM Twilio Settings' +#: crm/fcrm/pagetype/crm_twilio_settings/crm_twilio_settings.json msgid "Auth Token" msgstr "Token di Autorizzazione" -#. Label of the auto_update_expected_deal_value (Check) field in DocType 'FCRM +#. Label of the auto_update_expected_deal_value (Check) field in PageType 'FCRM #. Settings' -#: crm/fcrm/doctype/fcrm_settings/fcrm_settings.json +#: crm/fcrm/pagetype/fcrm_settings/fcrm_settings.json msgid "Auto Update Expected Deal Value" msgstr "" @@ -702,8 +702,8 @@ msgid "Auto update of expected deal value enabled" msgstr "" #. Description of the 'Auto Update Expected Deal Value' (Check) field in -#. DocType 'FCRM Settings' -#: crm/fcrm/doctype/fcrm_settings/fcrm_settings.json +#. PageType 'FCRM Settings' +#: crm/fcrm/pagetype/fcrm_settings/fcrm_settings.json #: frontend/src/components/Settings/ForecastingSettings.vue:46 msgid "Automatically update \"Expected Deal Value\" based on the total value of associated products in a deal" msgstr "" @@ -793,8 +793,8 @@ msgstr "" msgid "Back to file upload" msgstr "" -#. Option for the 'Status' (Select) field in DocType 'CRM Task' -#: crm/fcrm/doctype/crm_task/crm_task.json +#. Option for the 'Status' (Select) field in PageType 'CRM Task' +#: crm/fcrm/pagetype/crm_task/crm_task.json msgid "Backlog" msgstr "" @@ -818,8 +818,8 @@ msgstr "" msgid "Brand settings" msgstr "" -#. Label of the branding_tab (Tab Break) field in DocType 'FCRM Settings' -#: crm/fcrm/doctype/fcrm_settings/fcrm_settings.json +#. Label of the branding_tab (Tab Break) field in PageType 'FCRM Settings' +#: crm/fcrm/pagetype/fcrm_settings/fcrm_settings.json msgid "Branding" msgstr "" @@ -827,8 +827,8 @@ msgstr "" msgid "Bulk Edit" msgstr "" -#. Option for the 'Status' (Select) field in DocType 'CRM Call Log' -#: crm/fcrm/doctype/crm_call_log/crm_call_log.json +#. Option for the 'Status' (Select) field in PageType 'CRM Call Log' +#: crm/fcrm/pagetype/crm_call_log/crm_call_log.json msgid "Busy" msgstr "Occupato" @@ -838,174 +838,174 @@ msgstr "Occupato" msgid "CC" msgstr "CC" -#. Name of a DocType -#: crm/fcrm/doctype/crm_call_log/crm_call_log.json +#. Name of a PageType +#: crm/fcrm/pagetype/crm_call_log/crm_call_log.json msgid "CRM Call Log" msgstr "" -#. Name of a DocType -#: crm/fcrm/doctype/crm_communication_status/crm_communication_status.json +#. Name of a PageType +#: crm/fcrm/pagetype/crm_communication_status/crm_communication_status.json msgid "CRM Communication Status" msgstr "" -#. Name of a DocType -#: crm/fcrm/doctype/crm_contacts/crm_contacts.json +#. Name of a PageType +#: crm/fcrm/pagetype/crm_contacts/crm_contacts.json msgid "CRM Contacts" msgstr "" -#. Name of a DocType -#: crm/fcrm/doctype/crm_dashboard/crm_dashboard.json +#. Name of a PageType +#: crm/fcrm/pagetype/crm_dashboard/crm_dashboard.json #: frontend/src/pages/Dashboard.vue:304 msgid "CRM Dashboard" msgstr "" -#. Name of a DocType -#: crm/fcrm/doctype/crm_deal/crm_deal.json +#. Name of a PageType +#: crm/fcrm/pagetype/crm_deal/crm_deal.json msgid "CRM Deal" msgstr "Offerta CRM" -#. Name of a DocType -#: crm/fcrm/doctype/crm_deal_status/crm_deal_status.json +#. Name of a PageType +#: crm/fcrm/pagetype/crm_deal_status/crm_deal_status.json msgid "CRM Deal Status" msgstr "Stati Offerta CRM" -#. Name of a DocType -#: crm/fcrm/doctype/crm_dropdown_item/crm_dropdown_item.json +#. Name of a PageType +#: crm/fcrm/pagetype/crm_dropdown_item/crm_dropdown_item.json msgid "CRM Dropdown Item" msgstr "" -#. Name of a DocType -#: crm/fcrm/doctype/crm_exotel_settings/crm_exotel_settings.json +#. Name of a PageType +#: crm/fcrm/pagetype/crm_exotel_settings/crm_exotel_settings.json msgid "CRM Exotel Settings" msgstr "" -#. Name of a DocType -#: crm/fcrm/doctype/crm_fields_layout/crm_fields_layout.json +#. Name of a PageType +#: crm/fcrm/pagetype/crm_fields_layout/crm_fields_layout.json msgid "CRM Fields Layout" msgstr "" -#. Name of a DocType -#: crm/fcrm/doctype/crm_form_script/crm_form_script.json +#. Name of a PageType +#: crm/fcrm/pagetype/crm_form_script/crm_form_script.json msgid "CRM Form Script" msgstr "" -#. Name of a DocType -#: crm/fcrm/doctype/crm_global_settings/crm_global_settings.json +#. Name of a PageType +#: crm/fcrm/pagetype/crm_global_settings/crm_global_settings.json msgid "CRM Global Settings" msgstr "" -#. Name of a DocType -#: crm/fcrm/doctype/crm_holiday/crm_holiday.json +#. Name of a PageType +#: crm/fcrm/pagetype/crm_holiday/crm_holiday.json msgid "CRM Holiday" msgstr "" -#. Name of a DocType -#: crm/fcrm/doctype/crm_holiday_list/crm_holiday_list.json +#. Name of a PageType +#: crm/fcrm/pagetype/crm_holiday_list/crm_holiday_list.json msgid "CRM Holiday List" msgstr "" -#. Name of a DocType -#: crm/fcrm/doctype/crm_industry/crm_industry.json +#. Name of a PageType +#: crm/fcrm/pagetype/crm_industry/crm_industry.json msgid "CRM Industry" msgstr "" -#. Name of a DocType -#: crm/fcrm/doctype/crm_invitation/crm_invitation.json +#. Name of a PageType +#: crm/fcrm/pagetype/crm_invitation/crm_invitation.json msgid "CRM Invitation" msgstr "" -#. Name of a DocType -#: crm/fcrm/doctype/crm_lead/crm_lead.json +#. Name of a PageType +#: crm/fcrm/pagetype/crm_lead/crm_lead.json msgid "CRM Lead" msgstr "Offerta CRM" -#. Name of a DocType -#: crm/fcrm/doctype/crm_lead_source/crm_lead_source.json +#. Name of a PageType +#: crm/fcrm/pagetype/crm_lead_source/crm_lead_source.json msgid "CRM Lead Source" msgstr "" -#. Name of a DocType -#: crm/fcrm/doctype/crm_lead_status/crm_lead_status.json +#. Name of a PageType +#: crm/fcrm/pagetype/crm_lead_status/crm_lead_status.json msgid "CRM Lead Status" msgstr "" -#. Name of a DocType -#: crm/fcrm/doctype/crm_lost_reason/crm_lost_reason.json +#. Name of a PageType +#: crm/fcrm/pagetype/crm_lost_reason/crm_lost_reason.json msgid "CRM Lost Reason" msgstr "" -#. Name of a DocType -#: crm/fcrm/doctype/crm_notification/crm_notification.json +#. Name of a PageType +#: crm/fcrm/pagetype/crm_notification/crm_notification.json msgid "CRM Notification" msgstr "" -#. Name of a DocType -#: crm/fcrm/doctype/crm_organization/crm_organization.json +#. Name of a PageType +#: crm/fcrm/pagetype/crm_organization/crm_organization.json msgid "CRM Organization" msgstr "" -#. Label of a shortcut in the Frappe CRM Workspace -#: crm/fcrm/workspace/frappe_crm/frappe_crm.json +#. Label of a shortcut in the Jingrow CRM Workspace +#: crm/fcrm/workspace/jingrow_crm/jingrow_crm.json msgid "CRM Portal Page" msgstr "" -#. Name of a DocType -#: crm/fcrm/doctype/crm_product/crm_product.json +#. Name of a PageType +#: crm/fcrm/pagetype/crm_product/crm_product.json msgid "CRM Product" msgstr "" -#. Name of a DocType -#: crm/fcrm/doctype/crm_products/crm_products.json +#. Name of a PageType +#: crm/fcrm/pagetype/crm_products/crm_products.json msgid "CRM Products" msgstr "" -#. Name of a DocType -#: crm/fcrm/doctype/crm_service_day/crm_service_day.json +#. Name of a PageType +#: crm/fcrm/pagetype/crm_service_day/crm_service_day.json msgid "CRM Service Day" msgstr "" -#. Name of a DocType -#: crm/fcrm/doctype/crm_service_level_agreement/crm_service_level_agreement.json +#. Name of a PageType +#: crm/fcrm/pagetype/crm_service_level_agreement/crm_service_level_agreement.json msgid "CRM Service Level Agreement" msgstr "" -#. Name of a DocType -#: crm/fcrm/doctype/crm_service_level_priority/crm_service_level_priority.json +#. Name of a PageType +#: crm/fcrm/pagetype/crm_service_level_priority/crm_service_level_priority.json msgid "CRM Service Level Priority" msgstr "" -#. Name of a DocType -#: crm/fcrm/doctype/crm_status_change_log/crm_status_change_log.json +#. Name of a PageType +#: crm/fcrm/pagetype/crm_status_change_log/crm_status_change_log.json msgid "CRM Status Change Log" msgstr "" -#. Name of a DocType -#: crm/fcrm/doctype/crm_task/crm_task.json +#. Name of a PageType +#: crm/fcrm/pagetype/crm_task/crm_task.json msgid "CRM Task" msgstr "Attività CRM" -#. Name of a DocType -#: crm/fcrm/doctype/crm_telephony_agent/crm_telephony_agent.json +#. Name of a PageType +#: crm/fcrm/pagetype/crm_telephony_agent/crm_telephony_agent.json msgid "CRM Telephony Agent" msgstr "" -#. Name of a DocType -#: crm/fcrm/doctype/crm_telephony_phone/crm_telephony_phone.json +#. Name of a PageType +#: crm/fcrm/pagetype/crm_telephony_phone/crm_telephony_phone.json msgid "CRM Telephony Phone" msgstr "" -#. Name of a DocType -#: crm/fcrm/doctype/crm_territory/crm_territory.json +#. Name of a PageType +#: crm/fcrm/pagetype/crm_territory/crm_territory.json msgid "CRM Territory" msgstr "" -#. Name of a DocType -#: crm/fcrm/doctype/crm_twilio_settings/crm_twilio_settings.json +#. Name of a PageType +#: crm/fcrm/pagetype/crm_twilio_settings/crm_twilio_settings.json msgid "CRM Twilio Settings" msgstr "" -#. Name of a DocType -#: crm/fcrm/doctype/crm_view_settings/crm_view_settings.json +#. Name of a PageType +#: crm/fcrm/pagetype/crm_view_settings/crm_view_settings.json msgid "CRM View Settings" msgstr "" @@ -1021,13 +1021,13 @@ msgstr "CSV" msgid "Call Details" msgstr "" -#. Label of the receiver (Link) field in DocType 'CRM Call Log' -#: crm/fcrm/doctype/crm_call_log/crm_call_log.json +#. Label of the receiver (Link) field in PageType 'CRM Call Log' +#: crm/fcrm/pagetype/crm_call_log/crm_call_log.json msgid "Call Received By" msgstr "" -#. Description of the 'Duration' (Duration) field in DocType 'CRM Call Log' -#: crm/fcrm/doctype/crm_call_log/crm_call_log.json +#. Description of the 'Duration' (Duration) field in PageType 'CRM Call Log' +#: crm/fcrm/pagetype/crm_call_log/crm_call_log.json msgid "Call duration in seconds" msgstr "" @@ -1045,8 +1045,8 @@ msgstr "" msgid "Call with John Doe" msgstr "" -#. Label of the caller (Link) field in DocType 'CRM Call Log' -#: crm/fcrm/doctype/crm_call_log/crm_call_log.json +#. Label of the caller (Link) field in PageType 'CRM Call Log' +#: crm/fcrm/pagetype/crm_call_log/crm_call_log.json msgid "Caller" msgstr "" @@ -1083,10 +1083,10 @@ msgstr "Fotocamera" msgid "Cancel" msgstr "Annulla" -#. Option for the 'Status' (Select) field in DocType 'CRM Call Log' -#. Option for the 'Status' (Select) field in DocType 'CRM Task' -#: crm/fcrm/doctype/crm_call_log/crm_call_log.json -#: crm/fcrm/doctype/crm_task/crm_task.json +#. Option for the 'Status' (Select) field in PageType 'CRM Call Log' +#. Option for the 'Status' (Select) field in PageType 'CRM Task' +#: crm/fcrm/pagetype/crm_call_log/crm_call_log.json +#: crm/fcrm/pagetype/crm_task/crm_task.json msgid "Canceled" msgstr "" @@ -1094,7 +1094,7 @@ msgstr "" msgid "Cannot change role of user with Admin access" msgstr "Impossibile modificare il ruolo dell'utente con accesso Amministratore" -#: crm/fcrm/doctype/fcrm_settings/fcrm_settings.py:34 +#: crm/fcrm/pagetype/fcrm_settings/fcrm_settings.py:34 msgid "Cannot delete standard items {0}" msgstr "" @@ -1189,8 +1189,8 @@ msgstr "Cancella Assegnazioni" msgid "Clear Sort" msgstr "Cancella Ordinamento" -#. Label of the clear_table (Button) field in DocType 'CRM Holiday List' -#: crm/fcrm/doctype/crm_holiday_list/crm_holiday_list.json +#. Label of the clear_table (Button) field in PageType 'CRM Holiday List' +#: crm/fcrm/pagetype/crm_holiday_list/crm_holiday_list.json msgid "Clear Table" msgstr "Cancella Tabella" @@ -1211,8 +1211,8 @@ msgstr "" msgid "Close panel" msgstr "" -#. Label of the closed_date (Date) field in DocType 'CRM Deal' -#: crm/fcrm/doctype/crm_deal/crm_deal.json +#. Label of the closed_date (Date) field in PageType 'CRM Deal' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json msgid "Closed Date" msgstr "Data di Chiusura" @@ -1224,10 +1224,10 @@ msgstr "Comprimi" msgid "Collapsible" msgstr "Comprimibile" -#. Label of the color (Select) field in DocType 'CRM Deal Status' -#. Label of the color (Select) field in DocType 'CRM Lead Status' -#: crm/fcrm/doctype/crm_deal_status/crm_deal_status.json -#: crm/fcrm/doctype/crm_lead_status/crm_lead_status.json +#. Label of the color (Select) field in PageType 'CRM Deal Status' +#. Label of the color (Select) field in PageType 'CRM Lead Status' +#: crm/fcrm/pagetype/crm_deal_status/crm_deal_status.json +#: crm/fcrm/pagetype/crm_lead_status/crm_lead_status.json msgid "Color" msgstr "Colore" @@ -1235,20 +1235,20 @@ msgstr "Colore" msgid "Column" msgstr "" -#. Label of the column_field (Data) field in DocType 'CRM View Settings' -#: crm/fcrm/doctype/crm_view_settings/crm_view_settings.json +#. Label of the column_field (Data) field in PageType 'CRM View Settings' +#: crm/fcrm/pagetype/crm_view_settings/crm_view_settings.json #: frontend/src/components/Kanban/KanbanSettings.vue:12 msgid "Column Field" msgstr "Campo Colonna" -#. Label of the columns (Code) field in DocType 'CRM View Settings' -#: crm/fcrm/doctype/crm_view_settings/crm_view_settings.json +#. Label of the columns (Code) field in PageType 'CRM View Settings' +#: crm/fcrm/pagetype/crm_view_settings/crm_view_settings.json #: frontend/src/components/ColumnSettings.vue:4 msgid "Columns" msgstr "" -#. Label of the comment (Link) field in DocType 'CRM Notification' -#: crm/fcrm/doctype/crm_notification/crm_notification.json +#. Label of the comment (Link) field in PageType 'CRM Notification' +#: crm/fcrm/pagetype/crm_notification/crm_notification.json #: frontend/src/components/CommentBox.vue:78 #: frontend/src/components/CommunicationArea.vue:16 #: frontend/src/components/Layouts/AppSidebar.vue:579 @@ -1264,20 +1264,20 @@ msgstr "Commenti" msgid "Common reasons for losing deals" msgstr "" -#. Label of the communication_status (Link) field in DocType 'CRM Deal' -#. Label of the communication_status (Link) field in DocType 'CRM Lead' -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_lead/crm_lead.json +#. Label of the communication_status (Link) field in PageType 'CRM Deal' +#. Label of the communication_status (Link) field in PageType 'CRM Lead' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_lead/crm_lead.json msgid "Communication Status" msgstr "Stati della Comunicazione" -#. Label of a shortcut in the Frappe CRM Workspace -#: crm/fcrm/workspace/frappe_crm/frappe_crm.json +#. Label of a shortcut in the Jingrow CRM Workspace +#: crm/fcrm/workspace/jingrow_crm/jingrow_crm.json msgid "Communication Statuses" msgstr "Stati Comunicazione" -#. Label of the erpnext_company (Data) field in DocType 'ERPNext CRM Settings' -#: crm/fcrm/doctype/erpnext_crm_settings/erpnext_crm_settings.json +#. Label of the erpnext_company (Data) field in PageType 'ERPNext CRM Settings' +#: crm/fcrm/pagetype/erpnext_crm_settings/erpnext_crm_settings.json msgid "Company in ERPNext Site" msgstr "" @@ -1285,18 +1285,18 @@ msgstr "" msgid "Complete Registration" msgstr "" -#. Option for the 'Status' (Select) field in DocType 'CRM Call Log' -#: crm/fcrm/doctype/crm_call_log/crm_call_log.json +#. Option for the 'Status' (Select) field in PageType 'CRM Call Log' +#: crm/fcrm/pagetype/crm_call_log/crm_call_log.json msgid "Completed" msgstr "" -#. Option for the 'Device' (Select) field in DocType 'CRM Telephony Agent' -#: crm/fcrm/doctype/crm_telephony_agent/crm_telephony_agent.json +#. Option for the 'Device' (Select) field in PageType 'CRM Telephony Agent' +#: crm/fcrm/pagetype/crm_telephony_agent/crm_telephony_agent.json msgid "Computer" msgstr "" -#. Label of the condition (Code) field in DocType 'CRM Service Level Agreement' -#: crm/fcrm/doctype/crm_service_level_agreement/crm_service_level_agreement.json +#. Label of the condition (Code) field in PageType 'CRM Service Level Agreement' +#: crm/fcrm/pagetype/crm_service_level_agreement/crm_service_level_agreement.json msgid "Condition" msgstr "" @@ -1354,17 +1354,17 @@ msgstr "" msgid "Connect your email" msgstr "" -#. Label of the contact (Link) field in DocType 'CRM Contacts' -#. Label of the contact (Link) field in DocType 'CRM Deal' -#: crm/fcrm/doctype/crm_contacts/crm_contacts.json -#: crm/fcrm/doctype/crm_deal/crm_deal.json +#. Label of the contact (Link) field in PageType 'CRM Contacts' +#. Label of the contact (Link) field in PageType 'CRM Deal' +#: crm/fcrm/pagetype/crm_contacts/crm_contacts.json +#: crm/fcrm/pagetype/crm_deal/crm_deal.json #: frontend/src/components/Layouts/AppSidebar.vue:552 #: frontend/src/components/Modals/ConvertToDealModal.vue:51 #: frontend/src/pages/MobileLead.vue:145 msgid "Contact" msgstr "Contatto" -#: crm/fcrm/doctype/crm_lead/crm_lead.py:212 +#: crm/fcrm/pagetype/crm_lead/crm_lead.py:212 msgid "Contact Already Exists" msgstr "Il Contatto Esiste Già" @@ -1384,7 +1384,7 @@ msgstr "" msgid "Contact already added" msgstr "" -#: crm/fcrm/doctype/crm_lead/crm_lead.py:211 +#: crm/fcrm/pagetype/crm_lead/crm_lead.py:211 msgid "Contact already exists with {0}" msgstr "Il Contatto esiste già con {0}" @@ -1405,18 +1405,18 @@ msgstr "" msgid "Contact updated" msgstr "" -#. Label of the contacts_tab (Tab Break) field in DocType 'CRM Deal' -#. Label of the contacts (Table) field in DocType 'CRM Deal' -#. Label of a shortcut in the Frappe CRM Workspace -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/workspace/frappe_crm/frappe_crm.json +#. Label of the contacts_tab (Tab Break) field in PageType 'CRM Deal' +#. Label of the contacts (Table) field in PageType 'CRM Deal' +#. Label of a shortcut in the Jingrow CRM Workspace +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/workspace/jingrow_crm/jingrow_crm.json #: frontend/src/pages/Contact.vue:234 frontend/src/pages/MobileContact.vue:212 #: frontend/src/pages/MobileOrganization.vue:331 msgid "Contacts" msgstr "" -#. Label of the content (Text Editor) field in DocType 'FCRM Note' -#: crm/fcrm/doctype/fcrm_note/fcrm_note.json +#. Label of the content (Text Editor) field in PageType 'FCRM Note' +#: crm/fcrm/pagetype/fcrm_note/fcrm_note.json #: frontend/src/components/Modals/NoteModal.vue:33 #: frontend/src/components/Settings/EmailTemplate/EditEmailTemplate.vue:89 #: frontend/src/components/Settings/EmailTemplate/EditEmailTemplate.vue:102 @@ -1456,8 +1456,8 @@ msgstr "" msgid "Convert to Deal" msgstr "" -#. Label of the converted (Check) field in DocType 'CRM Lead' -#: crm/fcrm/doctype/crm_lead/crm_lead.json +#. Label of the converted (Check) field in PageType 'CRM Lead' +#: crm/fcrm/pagetype/crm_lead/crm_lead.json msgid "Converted" msgstr "" @@ -1533,9 +1533,9 @@ msgstr "" msgid "Create an event" msgstr "" -#. Label of the create_customer_on_status_change (Check) field in DocType +#. Label of the create_customer_on_status_change (Check) field in PageType #. 'ERPNext CRM Settings' -#: crm/fcrm/doctype/erpnext_crm_settings/erpnext_crm_settings.json +#: crm/fcrm/pagetype/erpnext_crm_settings/erpnext_crm_settings.json msgid "Create customer on status change" msgstr "" @@ -1560,13 +1560,13 @@ msgstr "" msgid "Create your first task" msgstr "" -#. Label of the currency (Link) field in DocType 'CRM Deal' -#. Label of the currency (Link) field in DocType 'CRM Organization' -#. Label of the currency (Link) field in DocType 'FCRM Settings' -#. Label of the currency_tab (Tab Break) field in DocType 'FCRM Settings' -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_organization/crm_organization.json -#: crm/fcrm/doctype/fcrm_settings/fcrm_settings.json +#. Label of the currency (Link) field in PageType 'CRM Deal' +#. Label of the currency (Link) field in PageType 'CRM Organization' +#. Label of the currency (Link) field in PageType 'FCRM Settings' +#. Label of the currency_tab (Tab Break) field in PageType 'FCRM Settings' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_organization/crm_organization.json +#: crm/fcrm/pagetype/fcrm_settings/fcrm_settings.json #: frontend/src/components/Settings/CurrencySettings.vue:31 msgid "Currency" msgstr "Valuta" @@ -1631,13 +1631,13 @@ msgstr "" msgid "Data" msgstr "Dati" -#. Option for the 'Type' (Select) field in DocType 'CRM Fields Layout' -#: crm/fcrm/doctype/crm_fields_layout/crm_fields_layout.json +#. Option for the 'Type' (Select) field in PageType 'CRM Fields Layout' +#: crm/fcrm/pagetype/crm_fields_layout/crm_fields_layout.json msgid "Data Fields" msgstr "" -#. Label of the date (Date) field in DocType 'CRM Holiday' -#: crm/api/dashboard.py:601 crm/fcrm/doctype/crm_holiday/crm_holiday.json +#. Label of the date (Date) field in PageType 'CRM Holiday' +#: crm/api/dashboard.py:601 crm/fcrm/pagetype/crm_holiday/crm_holiday.json #: frontend/src/components/Calendar/CalendarEventPanel.vue:202 msgid "Date" msgstr "Data" @@ -1660,23 +1660,23 @@ msgstr "" msgid "Deal" msgstr "" -#. Label of the deal_owner (Link) field in DocType 'CRM Deal' -#: crm/fcrm/doctype/crm_deal/crm_deal.json +#. Label of the deal_owner (Link) field in PageType 'CRM Deal' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json msgid "Deal Owner" msgstr "" -#. Label of the deal_status (Link) field in DocType 'ERPNext CRM Settings' -#: crm/fcrm/doctype/erpnext_crm_settings/erpnext_crm_settings.json +#. Label of the deal_status (Link) field in PageType 'ERPNext CRM Settings' +#: crm/fcrm/pagetype/erpnext_crm_settings/erpnext_crm_settings.json msgid "Deal Status" msgstr "Stati Offerta" -#. Label of a shortcut in the Frappe CRM Workspace -#: crm/fcrm/workspace/frappe_crm/frappe_crm.json +#. Label of a shortcut in the Jingrow CRM Workspace +#: crm/fcrm/workspace/jingrow_crm/jingrow_crm.json msgid "Deal Statuses" msgstr "" -#. Label of the deal_value (Currency) field in DocType 'CRM Deal' -#: crm/fcrm/doctype/crm_deal/crm_deal.json +#. Label of the deal_value (Currency) field in PageType 'CRM Deal' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json msgid "Deal Value" msgstr "" @@ -1694,8 +1694,8 @@ msgstr "" msgid "Deal value" msgstr "" -#. Label of a shortcut in the Frappe CRM Workspace -#: crm/fcrm/workspace/frappe_crm/frappe_crm.json +#. Label of a shortcut in the Jingrow CRM Workspace +#: crm/fcrm/workspace/jingrow_crm/jingrow_crm.json #: frontend/src/pages/Deal.vue:480 frontend/src/pages/MobileContact.vue:288 #: frontend/src/pages/MobileDeal.vue:384 #: frontend/src/pages/MobileOrganization.vue:325 @@ -1732,8 +1732,8 @@ msgstr "" msgid "Dear {{ lead_name }}, \\n\\nThis is a reminder for the payment of {{ grand_total }}. \\n\\nThanks, \\nFrappé" msgstr "" -#. Label of the default (Check) field in DocType 'CRM Service Level Agreement' -#: crm/fcrm/doctype/crm_service_level_agreement/crm_service_level_agreement.json +#. Label of the default (Check) field in PageType 'CRM Service Level Agreement' +#: crm/fcrm/pagetype/crm_service_level_agreement/crm_service_level_agreement.json msgid "Default" msgstr "" @@ -1745,8 +1745,8 @@ msgstr "" msgid "Default Incoming" msgstr "" -#. Label of the default_medium (Select) field in DocType 'CRM Telephony Agent' -#: crm/fcrm/doctype/crm_telephony_agent/crm_telephony_agent.json +#. Label of the default_medium (Select) field in PageType 'CRM Telephony Agent' +#: crm/fcrm/pagetype/crm_telephony_agent/crm_telephony_agent.json msgid "Default Medium" msgstr "" @@ -1754,9 +1754,9 @@ msgstr "" msgid "Default Outgoing" msgstr "" -#. Label of the default_priority (Check) field in DocType 'CRM Service Level +#. Label of the default_priority (Check) field in PageType 'CRM Service Level #. Priority' -#: crm/fcrm/doctype/crm_service_level_priority/crm_service_level_priority.json +#: crm/fcrm/pagetype/crm_service_level_priority/crm_service_level_priority.json msgid "Default Priority" msgstr "" @@ -1768,7 +1768,7 @@ msgstr "" msgid "Default Sending and Inbox" msgstr "" -#: crm/fcrm/doctype/crm_service_level_agreement/crm_service_level_agreement.py:33 +#: crm/fcrm/pagetype/crm_service_level_agreement/crm_service_level_agreement.py:33 msgid "Default Service Level Agreement already exists for {0}" msgstr "" @@ -1788,8 +1788,8 @@ msgstr "" msgid "Default medium" msgstr "" -#: crm/fcrm/doctype/fcrm_settings/fcrm_settings.js:18 -#: crm/fcrm/doctype/fcrm_settings/fcrm_settings.js:30 +#: crm/fcrm/pagetype/fcrm_settings/fcrm_settings.js:18 +#: crm/fcrm/pagetype/fcrm_settings/fcrm_settings.js:30 msgid "Default statuses, custom fields and layouts restored successfully." msgstr "" @@ -1825,7 +1825,7 @@ msgstr "" msgid "Delete" msgstr "Elimina" -#: crm/fcrm/doctype/fcrm_settings/fcrm_settings.js:26 +#: crm/fcrm/pagetype/fcrm_settings/fcrm_settings.js:26 msgid "Delete & Restore" msgstr "" @@ -1883,14 +1883,14 @@ msgstr "" msgid "Delete {0} items" msgstr "" -#. Label of the description (Text Editor) field in DocType 'CRM Holiday' -#. Label of the description (Text Editor) field in DocType 'CRM Lost Reason' -#. Label of the description (Text Editor) field in DocType 'CRM Product' -#. Label of the description (Text Editor) field in DocType 'CRM Task' -#: crm/fcrm/doctype/crm_holiday/crm_holiday.json -#: crm/fcrm/doctype/crm_lost_reason/crm_lost_reason.json -#: crm/fcrm/doctype/crm_product/crm_product.json -#: crm/fcrm/doctype/crm_task/crm_task.json +#. Label of the description (Text Editor) field in PageType 'CRM Holiday' +#. Label of the description (Text Editor) field in PageType 'CRM Lost Reason' +#. Label of the description (Text Editor) field in PageType 'CRM Product' +#. Label of the description (Text Editor) field in PageType 'CRM Task' +#: crm/fcrm/pagetype/crm_holiday/crm_holiday.json +#: crm/fcrm/pagetype/crm_lost_reason/crm_lost_reason.json +#: crm/fcrm/pagetype/crm_product/crm_product.json +#: crm/fcrm/pagetype/crm_task/crm_task.json #: frontend/src/components/Calendar/CalendarEventPanel.vue:152 #: frontend/src/components/Modals/EventModal.vue:134 #: frontend/src/components/Modals/TaskModal.vue:36 @@ -1907,29 +1907,29 @@ msgstr "" msgid "Desk" msgstr "" -#. Label of the details (Tab Break) field in DocType 'CRM Lead' -#. Label of the details (Text Editor) field in DocType 'CRM Lead Source' -#: crm/fcrm/doctype/crm_lead/crm_lead.json -#: crm/fcrm/doctype/crm_lead_source/crm_lead_source.json +#. Label of the details (Tab Break) field in PageType 'CRM Lead' +#. Label of the details (Text Editor) field in PageType 'CRM Lead Source' +#: crm/fcrm/pagetype/crm_lead/crm_lead.json +#: crm/fcrm/pagetype/crm_lead_source/crm_lead_source.json #: frontend/src/pages/MobileContact.vue:283 #: frontend/src/pages/MobileDeal.vue:424 frontend/src/pages/MobileLead.vue:331 #: frontend/src/pages/MobileOrganization.vue:320 msgid "Details" msgstr "" -#. Label of the call_receiving_device (Select) field in DocType 'CRM Telephony +#. Label of the call_receiving_device (Select) field in PageType 'CRM Telephony #. Agent' -#: crm/fcrm/doctype/crm_telephony_agent/crm_telephony_agent.json +#: crm/fcrm/pagetype/crm_telephony_agent/crm_telephony_agent.json #: frontend/src/components/FilesUploader/FilesUploaderArea.vue:39 msgid "Device" msgstr "" -#: crm/fcrm/doctype/crm_form_script/crm_form_script.js:30 +#: crm/fcrm/pagetype/crm_form_script/crm_form_script.js:30 msgid "Disable" msgstr "" -#. Label of the disabled (Check) field in DocType 'CRM Product' -#: crm/fcrm/doctype/crm_product/crm_product.json +#. Label of the disabled (Check) field in PageType 'CRM Product' +#: crm/fcrm/pagetype/crm_product/crm_product.json msgid "Disabled" msgstr "Disabilitato" @@ -1943,27 +1943,27 @@ msgstr "Annulla" msgid "Discard unsaved changes?" msgstr "" -#. Label of the discount_percentage (Percent) field in DocType 'CRM Products' -#: crm/fcrm/doctype/crm_products/crm_products.json +#. Label of the discount_percentage (Percent) field in PageType 'CRM Products' +#: crm/fcrm/pagetype/crm_products/crm_products.json msgid "Discount %" msgstr "Sconto %" -#. Label of the discount_amount (Currency) field in DocType 'CRM Products' -#: crm/fcrm/doctype/crm_products/crm_products.json +#. Label of the discount_amount (Currency) field in PageType 'CRM Products' +#: crm/fcrm/pagetype/crm_products/crm_products.json msgid "Discount Amount" msgstr "" -#. Label of the dt (Link) field in DocType 'CRM Form Script' -#. Label of the dt (Link) field in DocType 'CRM Global Settings' -#. Label of the dt (Link) field in DocType 'CRM View Settings' -#: crm/fcrm/doctype/crm_form_script/crm_form_script.json -#: crm/fcrm/doctype/crm_global_settings/crm_global_settings.json -#: crm/fcrm/doctype/crm_view_settings/crm_view_settings.json -msgid "DocType" +#. Label of the dt (Link) field in PageType 'CRM Form Script' +#. Label of the dt (Link) field in PageType 'CRM Global Settings' +#. Label of the dt (Link) field in PageType 'CRM View Settings' +#: crm/fcrm/pagetype/crm_form_script/crm_form_script.json +#: crm/fcrm/pagetype/crm_global_settings/crm_global_settings.json +#: crm/fcrm/pagetype/crm_view_settings/crm_view_settings.json +msgid "PageType" msgstr "Tipo Documento" -#. Label of the dt (Link) field in DocType 'CRM Fields Layout' -#: crm/fcrm/doctype/crm_fields_layout/crm_fields_layout.json +#. Label of the dt (Link) field in PageType 'CRM Fields Layout' +#: crm/fcrm/pagetype/crm_fields_layout/crm_fields_layout.json msgid "Document Type" msgstr "Tipo Documento" @@ -1983,8 +1983,8 @@ msgstr "" msgid "Documentation" msgstr "" -#. Option for the 'Status' (Select) field in DocType 'CRM Task' -#: crm/fcrm/doctype/crm_task/crm_task.json +#. Option for the 'Status' (Select) field in PageType 'CRM Task' +#: crm/fcrm/pagetype/crm_task/crm_task.json msgid "Done" msgstr "" @@ -2006,13 +2006,13 @@ msgstr "Trascina e rilascia qui i file o caricali da" msgid "Drop files here" msgstr "Rilascia i file qui" -#. Label of the dropdown_items_tab (Tab Break) field in DocType 'FCRM Settings' -#: crm/fcrm/doctype/fcrm_settings/fcrm_settings.json +#. Label of the dropdown_items_tab (Tab Break) field in PageType 'FCRM Settings' +#: crm/fcrm/pagetype/fcrm_settings/fcrm_settings.json msgid "Dropdown Items" msgstr "" -#. Label of the due_date (Datetime) field in DocType 'CRM Task' -#: crm/fcrm/doctype/crm_task/crm_task.json +#. Label of the due_date (Datetime) field in PageType 'CRM Task' +#: crm/fcrm/pagetype/crm_task/crm_task.json msgid "Due Date" msgstr "" @@ -2048,10 +2048,10 @@ msgstr "" msgid "Duplicate template" msgstr "" -#. Label of the duration (Duration) field in DocType 'CRM Call Log' -#. Label of the duration (Duration) field in DocType 'CRM Status Change Log' -#: crm/fcrm/doctype/crm_call_log/crm_call_log.json -#: crm/fcrm/doctype/crm_status_change_log/crm_status_change_log.json +#. Label of the duration (Duration) field in PageType 'CRM Call Log' +#. Label of the duration (Duration) field in PageType 'CRM Status Change Log' +#: crm/fcrm/pagetype/crm_call_log/crm_call_log.json +#: crm/fcrm/pagetype/crm_status_change_log/crm_status_change_log.json msgid "Duration" msgstr "" @@ -2060,28 +2060,28 @@ msgstr "" msgid "ERPNext" msgstr "ERPNext" -#. Name of a DocType -#: crm/fcrm/doctype/erpnext_crm_settings/erpnext_crm_settings.json +#. Name of a PageType +#: crm/fcrm/pagetype/erpnext_crm_settings/erpnext_crm_settings.json msgid "ERPNext CRM Settings" msgstr "" -#. Label of the section_break_oubd (Section Break) field in DocType 'ERPNext +#. Label of the section_break_oubd (Section Break) field in PageType 'ERPNext #. CRM Settings' -#: crm/fcrm/doctype/erpnext_crm_settings/erpnext_crm_settings.json +#: crm/fcrm/pagetype/erpnext_crm_settings/erpnext_crm_settings.json msgid "ERPNext Site API's" msgstr "" -#. Label of the erpnext_site_url (Data) field in DocType 'ERPNext CRM Settings' -#: crm/fcrm/doctype/erpnext_crm_settings/erpnext_crm_settings.json +#. Label of the erpnext_site_url (Data) field in PageType 'ERPNext CRM Settings' +#: crm/fcrm/pagetype/erpnext_crm_settings/erpnext_crm_settings.json msgid "ERPNext Site URL" msgstr "" -#: crm/fcrm/doctype/erpnext_crm_settings/erpnext_crm_settings.py:25 +#: crm/fcrm/pagetype/erpnext_crm_settings/erpnext_crm_settings.py:25 msgid "ERPNext is not installed in the current site" msgstr "" -#: crm/fcrm/doctype/erpnext_crm_settings/erpnext_crm_settings.py:98 -#: crm/fcrm/doctype/erpnext_crm_settings/erpnext_crm_settings.py:124 +#: crm/fcrm/pagetype/erpnext_crm_settings/erpnext_crm_settings.py:98 +#: crm/fcrm/pagetype/erpnext_crm_settings/erpnext_crm_settings.py:124 msgid "ERPNext is not integrated with the CRM" msgstr "" @@ -2191,12 +2191,12 @@ msgstr "" msgid "Editing event" msgstr "" -#. Label of the email (Data) field in DocType 'CRM Contacts' -#. Label of the email (Data) field in DocType 'CRM Invitation' -#. Label of the email (Data) field in DocType 'CRM Lead' -#: crm/fcrm/doctype/crm_contacts/crm_contacts.json -#: crm/fcrm/doctype/crm_invitation/crm_invitation.json -#: crm/fcrm/doctype/crm_lead/crm_lead.json frontend/src/pages/Contact.vue:510 +#. Label of the email (Data) field in PageType 'CRM Contacts' +#. Label of the email (Data) field in PageType 'CRM Invitation' +#. Label of the email (Data) field in PageType 'CRM Lead' +#: crm/fcrm/pagetype/crm_contacts/crm_contacts.json +#: crm/fcrm/pagetype/crm_invitation/crm_invitation.json +#: crm/fcrm/pagetype/crm_lead/crm_lead.json frontend/src/pages/Contact.vue:510 #: frontend/src/pages/MobileContact.vue:518 #: frontend/src/pages/MobileOrganization.vue:462 #: frontend/src/pages/MobileOrganization.vue:490 @@ -2213,8 +2213,8 @@ msgstr "" msgid "Email ID is required" msgstr "" -#. Label of the email_sent_at (Datetime) field in DocType 'CRM Invitation' -#: crm/fcrm/doctype/crm_invitation/crm_invitation.json +#. Label of the email_sent_at (Datetime) field in PageType 'CRM Invitation' +#: crm/fcrm/pagetype/crm_invitation/crm_invitation.json msgid "Email Sent At" msgstr "" @@ -2272,12 +2272,12 @@ msgstr "" msgid "Empty - Choose a field to sort by" msgstr "" -#: crm/fcrm/doctype/crm_form_script/crm_form_script.js:30 +#: crm/fcrm/pagetype/crm_form_script/crm_form_script.js:30 msgid "Enable" msgstr "Abilita" -#. Label of the enable_forecasting (Check) field in DocType 'FCRM Settings' -#: crm/fcrm/doctype/fcrm_settings/fcrm_settings.json +#. Label of the enable_forecasting (Check) field in PageType 'FCRM Settings' +#: crm/fcrm/pagetype/fcrm_settings/fcrm_settings.json msgid "Enable Forecasting" msgstr "" @@ -2293,18 +2293,18 @@ msgstr "" msgid "Enable forecasting" msgstr "" -#. Label of the enabled (Check) field in DocType 'CRM Exotel Settings' -#. Label of the enabled (Check) field in DocType 'CRM Form Script' -#. Label of the enabled (Check) field in DocType 'CRM Service Level Agreement' -#. Label of the enabled (Check) field in DocType 'CRM Twilio Settings' -#. Label of the enabled (Check) field in DocType 'ERPNext CRM Settings' -#. Label of the enabled (Check) field in DocType 'Helpdesk CRM Settings' -#: crm/fcrm/doctype/crm_exotel_settings/crm_exotel_settings.json -#: crm/fcrm/doctype/crm_form_script/crm_form_script.json -#: crm/fcrm/doctype/crm_service_level_agreement/crm_service_level_agreement.json -#: crm/fcrm/doctype/crm_twilio_settings/crm_twilio_settings.json -#: crm/fcrm/doctype/erpnext_crm_settings/erpnext_crm_settings.json -#: crm/fcrm/doctype/helpdesk_crm_settings/helpdesk_crm_settings.json +#. Label of the enabled (Check) field in PageType 'CRM Exotel Settings' +#. Label of the enabled (Check) field in PageType 'CRM Form Script' +#. Label of the enabled (Check) field in PageType 'CRM Service Level Agreement' +#. Label of the enabled (Check) field in PageType 'CRM Twilio Settings' +#. Label of the enabled (Check) field in PageType 'ERPNext CRM Settings' +#. Label of the enabled (Check) field in PageType 'Helpdesk CRM Settings' +#: crm/fcrm/pagetype/crm_exotel_settings/crm_exotel_settings.json +#: crm/fcrm/pagetype/crm_form_script/crm_form_script.json +#: crm/fcrm/pagetype/crm_service_level_agreement/crm_service_level_agreement.json +#: crm/fcrm/pagetype/crm_twilio_settings/crm_twilio_settings.json +#: crm/fcrm/pagetype/erpnext_crm_settings/erpnext_crm_settings.json +#: crm/fcrm/pagetype/helpdesk_crm_settings/helpdesk_crm_settings.json #: frontend/src/components/Settings/AssignmentRules/AssignmentRuleView.vue:32 #: frontend/src/components/Settings/AssignmentRules/AssignmentRulesList.vue:21 #: frontend/src/components/Settings/EmailTemplate/EditEmailTemplate.vue:18 @@ -2313,15 +2313,15 @@ msgstr "" msgid "Enabled" msgstr "Abilitato" -#. Label of the end_date (Date) field in DocType 'CRM Service Level Agreement' -#: crm/fcrm/doctype/crm_service_level_agreement/crm_service_level_agreement.json +#. Label of the end_date (Date) field in PageType 'CRM Service Level Agreement' +#: crm/fcrm/pagetype/crm_service_level_agreement/crm_service_level_agreement.json msgid "End Date" msgstr "" -#. Label of the end_time (Datetime) field in DocType 'CRM Call Log' -#. Label of the end_time (Time) field in DocType 'CRM Service Day' -#: crm/fcrm/doctype/crm_call_log/crm_call_log.json -#: crm/fcrm/doctype/crm_service_day/crm_service_day.json +#. Label of the end_time (Datetime) field in PageType 'CRM Call Log' +#. Label of the end_time (Time) field in PageType 'CRM Service Day' +#: crm/fcrm/pagetype/crm_call_log/crm_call_log.json +#: crm/fcrm/pagetype/crm_service_day/crm_service_day.json #: frontend/src/components/Calendar/CalendarEventPanel.vue:242 #: frontend/src/components/Modals/EventModal.vue:112 msgid "End Time" @@ -2362,15 +2362,15 @@ msgstr "" msgid "Error updating field" msgstr "Aggiornamento campo non riuscito" -#: crm/fcrm/doctype/erpnext_crm_settings/erpnext_crm_settings.py:279 +#: crm/fcrm/pagetype/erpnext_crm_settings/erpnext_crm_settings.py:279 msgid "Error while creating customer in ERPNext, check error log for more details" msgstr "" -#: crm/fcrm/doctype/erpnext_crm_settings/erpnext_crm_settings.py:191 +#: crm/fcrm/pagetype/erpnext_crm_settings/erpnext_crm_settings.py:191 msgid "Error while creating prospect in ERPNext, check error log for more details" msgstr "" -#: crm/fcrm/doctype/erpnext_crm_settings/erpnext_crm_settings.py:117 +#: crm/fcrm/pagetype/erpnext_crm_settings/erpnext_crm_settings.py:117 msgid "Error while fetching customer in ERPNext, check error log for more details" msgstr "" @@ -2395,16 +2395,16 @@ msgstr "Eventi" msgid "Excel" msgstr "" -#. Label of the exchange_rate (Float) field in DocType 'CRM Deal' -#. Label of the exchange_rate (Float) field in DocType 'CRM Organization' -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_organization/crm_organization.json +#. Label of the exchange_rate (Float) field in PageType 'CRM Deal' +#. Label of the exchange_rate (Float) field in PageType 'CRM Organization' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_organization/crm_organization.json msgid "Exchange Rate" msgstr "" -#. Label of the exchange_rate_provider_section (Section Break) field in DocType +#. Label of the exchange_rate_provider_section (Section Break) field in PageType #. 'FCRM Settings' -#: crm/fcrm/doctype/fcrm_settings/fcrm_settings.json +#: crm/fcrm/pagetype/fcrm_settings/fcrm_settings.json msgid "Exchange Rate Provider" msgstr "" @@ -2412,12 +2412,12 @@ msgstr "" msgid "Exchange rate provider" msgstr "" -#. Option for the 'Telephony Medium' (Select) field in DocType 'CRM Call Log' -#. Label of the exotel (Check) field in DocType 'CRM Telephony Agent' -#. Option for the 'Default Medium' (Select) field in DocType 'CRM Telephony +#. Option for the 'Telephony Medium' (Select) field in PageType 'CRM Call Log' +#. Label of the exotel (Check) field in PageType 'CRM Telephony Agent' +#. Option for the 'Default Medium' (Select) field in PageType 'CRM Telephony #. Agent' -#: crm/fcrm/doctype/crm_call_log/crm_call_log.json -#: crm/fcrm/doctype/crm_telephony_agent/crm_telephony_agent.json +#: crm/fcrm/pagetype/crm_call_log/crm_call_log.json +#: crm/fcrm/pagetype/crm_telephony_agent/crm_telephony_agent.json #: frontend/src/components/Layouts/AppSidebar.vue:602 #: frontend/src/components/Settings/TelephonySettings.vue:41 #: frontend/src/components/Settings/TelephonySettings.vue:63 @@ -2428,8 +2428,8 @@ msgstr "" msgid "Exotel Exception" msgstr "" -#. Label of the exotel_number (Data) field in DocType 'CRM Telephony Agent' -#: crm/fcrm/doctype/crm_telephony_agent/crm_telephony_agent.json +#. Label of the exotel_number (Data) field in PageType 'CRM Telephony Agent' +#: crm/fcrm/pagetype/crm_telephony_agent/crm_telephony_agent.json msgid "Exotel Number" msgstr "" @@ -2453,26 +2453,26 @@ msgstr "" msgid "Expand" msgstr "Espandi" -#. Label of the expected_closure_date (Date) field in DocType 'CRM Deal' -#: crm/fcrm/doctype/crm_deal/crm_deal.json +#. Label of the expected_closure_date (Date) field in PageType 'CRM Deal' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json msgid "Expected Closure Date" msgstr "" -#: crm/fcrm/doctype/crm_deal/crm_deal.py:173 +#: crm/fcrm/pagetype/crm_deal/crm_deal.py:173 msgid "Expected Closure Date is required." msgstr "Data Chiusura Prevista obbligatoria." -#. Label of the expected_deal_value (Currency) field in DocType 'CRM Deal' -#: crm/fcrm/doctype/crm_deal/crm_deal.json +#. Label of the expected_deal_value (Currency) field in PageType 'CRM Deal' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json msgid "Expected Deal Value" msgstr "" -#: crm/fcrm/doctype/crm_deal/crm_deal.py:171 +#: crm/fcrm/pagetype/crm_deal/crm_deal.py:171 msgid "Expected Deal Value is required." msgstr "" -#. Option for the 'Status' (Select) field in DocType 'CRM Invitation' -#: crm/fcrm/doctype/crm_invitation/crm_invitation.json +#. Option for the 'Status' (Select) field in PageType 'CRM Invitation' +#: crm/fcrm/pagetype/crm_invitation/crm_invitation.json msgid "Expired" msgstr "" @@ -2489,22 +2489,22 @@ msgstr "" msgid "Export Type" msgstr "" -#. Name of a DocType -#: crm/fcrm/doctype/fcrm_note/fcrm_note.json +#. Name of a PageType +#: crm/fcrm/pagetype/fcrm_note/fcrm_note.json msgid "FCRM Note" msgstr "" -#. Name of a DocType -#: crm/fcrm/doctype/fcrm_settings/fcrm_settings.json +#. Name of a PageType +#: crm/fcrm/pagetype/fcrm_settings/fcrm_settings.json msgid "FCRM Settings" msgstr "" -#. Option for the 'Status' (Select) field in DocType 'CRM Call Log' -#. Option for the 'SLA Status' (Select) field in DocType 'CRM Deal' -#. Option for the 'SLA Status' (Select) field in DocType 'CRM Lead' -#: crm/fcrm/doctype/crm_call_log/crm_call_log.json -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_lead/crm_lead.json +#. Option for the 'Status' (Select) field in PageType 'CRM Call Log' +#. Option for the 'SLA Status' (Select) field in PageType 'CRM Deal' +#. Option for the 'SLA Status' (Select) field in PageType 'CRM Lead' +#: crm/fcrm/pagetype/crm_call_log/crm_call_log.json +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_lead/crm_lead.json msgid "Failed" msgstr "" @@ -2528,7 +2528,7 @@ msgstr "" msgid "Failed to delete template" msgstr "" -#: crm/fcrm/doctype/fcrm_settings/fcrm_settings.py:205 +#: crm/fcrm/pagetype/fcrm_settings/fcrm_settings.py:205 msgid "Failed to fetch exchange rate from {0} to {1} on {2}. Please check your internet connection or try again later." msgstr "Impossibile recuperare il tasso di cambio da {0} a {1} in data {2}. Controlla la tua connessione internet o riprova più tardi." @@ -2561,8 +2561,8 @@ msgstr "" msgid "Failed to update template" msgstr "" -#. Label of the favicon (Attach) field in DocType 'FCRM Settings' -#: crm/fcrm/doctype/fcrm_settings/fcrm_settings.json +#. Label of the favicon (Attach) field in PageType 'FCRM Settings' +#: crm/fcrm/pagetype/fcrm_settings/fcrm_settings.json #: frontend/src/components/Settings/BrandSettings.vue:87 msgid "Favicon" msgstr "" @@ -2586,23 +2586,23 @@ msgid "File \"{0}\" was skipped because only {1} uploads are allowed" msgstr "" #: frontend/src/components/FilesUploader/FilesUploaderArea.vue:359 -msgid "File \"{0}\" was skipped because only {1} uploads are allowed for DocType \"{2}\"" +msgid "File \"{0}\" was skipped because only {1} uploads are allowed for PageType \"{2}\"" msgstr "" #: frontend/src/components/Filter.vue:6 msgid "Filter" msgstr "Filtro" -#. Label of the filters (Code) field in DocType 'CRM View Settings' -#. Label of the filters_tab (Tab Break) field in DocType 'CRM View Settings' -#: crm/fcrm/doctype/crm_view_settings/crm_view_settings.json +#. Label of the filters (Code) field in PageType 'CRM View Settings' +#. Label of the filters_tab (Tab Break) field in PageType 'CRM View Settings' +#: crm/fcrm/pagetype/crm_view_settings/crm_view_settings.json msgid "Filters" msgstr "Filtri" -#. Label of the first_name (Data) field in DocType 'CRM Deal' -#. Label of the first_name (Data) field in DocType 'CRM Lead' -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_lead/crm_lead.json +#. Label of the first_name (Data) field in PageType 'CRM Deal' +#. Label of the first_name (Data) field in PageType 'CRM Lead' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_lead/crm_lead.json #: frontend/src/components/ColumnSettings.vue:103 #: frontend/src/components/Filter.vue:57 frontend/src/components/Filter.vue:88 #: frontend/src/components/SortBy.vue:6 frontend/src/components/SortBy.vue:103 @@ -2614,30 +2614,30 @@ msgstr "Nome" msgid "First Name is mandatory" msgstr "" -#. Label of the first_responded_on (Datetime) field in DocType 'CRM Deal' -#. Label of the first_responded_on (Datetime) field in DocType 'CRM Lead' -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_lead/crm_lead.json +#. Label of the first_responded_on (Datetime) field in PageType 'CRM Deal' +#. Label of the first_responded_on (Datetime) field in PageType 'CRM Lead' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_lead/crm_lead.json msgid "First Responded On" msgstr "" -#. Option for the 'SLA Status' (Select) field in DocType 'CRM Deal' -#. Option for the 'SLA Status' (Select) field in DocType 'CRM Lead' -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_lead/crm_lead.json +#. Option for the 'SLA Status' (Select) field in PageType 'CRM Deal' +#. Option for the 'SLA Status' (Select) field in PageType 'CRM Lead' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_lead/crm_lead.json msgid "First Response Due" msgstr "" -#. Label of the first_response_time (Duration) field in DocType 'CRM Service +#. Label of the first_response_time (Duration) field in PageType 'CRM Service #. Level Priority' -#: crm/fcrm/doctype/crm_service_level_priority/crm_service_level_priority.json +#: crm/fcrm/pagetype/crm_service_level_priority/crm_service_level_priority.json msgid "First Response TIme" msgstr "" -#. Label of the first_response_time (Duration) field in DocType 'CRM Deal' -#. Label of the first_response_time (Duration) field in DocType 'CRM Lead' -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_lead/crm_lead.json +#. Label of the first_response_time (Duration) field in PageType 'CRM Deal' +#. Label of the first_response_time (Duration) field in PageType 'CRM Lead' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_lead/crm_lead.json msgid "First Response Time" msgstr "" @@ -2670,66 +2670,66 @@ msgstr "" msgid "Forecasting enabled successfully" msgstr "" -#. Option for the 'Apply To' (Select) field in DocType 'CRM Form Script' -#: crm/fcrm/doctype/crm_form_script/crm_form_script.json +#. Option for the 'Apply To' (Select) field in PageType 'CRM Form Script' +#: crm/fcrm/pagetype/crm_form_script/crm_form_script.json msgid "Form" msgstr "Modulo" -#: crm/fcrm/doctype/erpnext_crm_settings/erpnext_crm_settings.js:19 +#: crm/fcrm/pagetype/erpnext_crm_settings/erpnext_crm_settings.js:19 msgid "Form Script updated successfully" msgstr "" #. Name of a Workspace -#: crm/fcrm/workspace/frappe_crm/frappe_crm.json -msgid "Frappe CRM" -msgstr "CRM Frappe" +#: crm/fcrm/workspace/jingrow_crm/jingrow_crm.json +msgid "Jingrow CRM" +msgstr "CRM Jingrow" #: frontend/src/components/Layouts/AppSidebar.vue:608 -msgid "Frappe CRM mobile" +msgid "Jingrow CRM mobile" msgstr "" -#. Option for the 'Weekly Off' (Select) field in DocType 'CRM Holiday List' -#. Option for the 'Workday' (Select) field in DocType 'CRM Service Day' -#: crm/fcrm/doctype/crm_holiday_list/crm_holiday_list.json -#: crm/fcrm/doctype/crm_service_day/crm_service_day.json +#. Option for the 'Weekly Off' (Select) field in PageType 'CRM Holiday List' +#. Option for the 'Workday' (Select) field in PageType 'CRM Service Day' +#: crm/fcrm/pagetype/crm_holiday_list/crm_holiday_list.json +#: crm/fcrm/pagetype/crm_service_day/crm_service_day.json msgid "Friday" msgstr "" -#. Label of the from (Data) field in DocType 'CRM Call Log' -#. Label of the from (Data) field in DocType 'CRM Status Change Log' -#: crm/fcrm/doctype/crm_call_log/crm_call_log.json -#: crm/fcrm/doctype/crm_status_change_log/crm_status_change_log.json +#. Label of the from (Data) field in PageType 'CRM Call Log' +#. Label of the from (Data) field in PageType 'CRM Status Change Log' +#: crm/fcrm/pagetype/crm_call_log/crm_call_log.json +#: crm/fcrm/pagetype/crm_status_change_log/crm_status_change_log.json msgid "From" msgstr "Da" -#. Label of the from_date (Date) field in DocType 'CRM Holiday List' -#. Label of the from_date (Datetime) field in DocType 'CRM Status Change Log' -#: crm/fcrm/doctype/crm_holiday_list/crm_holiday_list.json -#: crm/fcrm/doctype/crm_status_change_log/crm_status_change_log.json +#. Label of the from_date (Date) field in PageType 'CRM Holiday List' +#. Label of the from_date (Datetime) field in PageType 'CRM Status Change Log' +#: crm/fcrm/pagetype/crm_holiday_list/crm_holiday_list.json +#: crm/fcrm/pagetype/crm_status_change_log/crm_status_change_log.json msgid "From Date" msgstr "" -#. Label of the from_type (Data) field in DocType 'CRM Status Change Log' -#: crm/fcrm/doctype/crm_status_change_log/crm_status_change_log.json +#. Label of the from_type (Data) field in PageType 'CRM Status Change Log' +#: crm/fcrm/pagetype/crm_status_change_log/crm_status_change_log.json msgid "From Type" msgstr "" -#. Label of the from_user (Link) field in DocType 'CRM Notification' -#: crm/fcrm/doctype/crm_notification/crm_notification.json +#. Label of the from_user (Link) field in PageType 'CRM Notification' +#: crm/fcrm/pagetype/crm_notification/crm_notification.json msgid "From User" msgstr "" -#. Option for the 'SLA Status' (Select) field in DocType 'CRM Deal' -#. Option for the 'SLA Status' (Select) field in DocType 'CRM Lead' -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_lead/crm_lead.json +#. Option for the 'SLA Status' (Select) field in PageType 'CRM Deal' +#. Option for the 'SLA Status' (Select) field in PageType 'CRM Lead' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_lead/crm_lead.json msgid "Fulfilled" msgstr "" -#. Label of the full_name (Data) field in DocType 'CRM Contacts' -#. Label of the lead_name (Data) field in DocType 'CRM Lead' -#: crm/fcrm/doctype/crm_contacts/crm_contacts.json -#: crm/fcrm/doctype/crm_lead/crm_lead.json +#. Label of the full_name (Data) field in PageType 'CRM Contacts' +#. Label of the lead_name (Data) field in PageType 'CRM Lead' +#: crm/fcrm/pagetype/crm_contacts/crm_contacts.json +#: crm/fcrm/pagetype/crm_lead/crm_lead.json msgid "Full Name" msgstr "Nome e Cognome" @@ -2742,12 +2742,12 @@ msgstr "" msgid "GMT+5:30" msgstr "" -#. Label of the gender (Link) field in DocType 'CRM Contacts' -#. Label of the gender (Link) field in DocType 'CRM Deal' -#. Label of the gender (Link) field in DocType 'CRM Lead' -#: crm/fcrm/doctype/crm_contacts/crm_contacts.json -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_lead/crm_lead.json +#. Label of the gender (Link) field in PageType 'CRM Contacts' +#. Label of the gender (Link) field in PageType 'CRM Deal' +#. Label of the gender (Link) field in PageType 'CRM Lead' +#: crm/fcrm/pagetype/crm_contacts/crm_contacts.json +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_lead/crm_lead.json msgid "Gender" msgstr "Genere" @@ -2771,20 +2771,20 @@ msgstr "" msgid "Go to website" msgstr "" -#. Option for the 'Type' (Select) field in DocType 'CRM Fields Layout' -#: crm/fcrm/doctype/crm_fields_layout/crm_fields_layout.json +#. Option for the 'Type' (Select) field in PageType 'CRM Fields Layout' +#: crm/fcrm/pagetype/crm_fields_layout/crm_fields_layout.json msgid "Grid Row" msgstr "" -#. Label of the group_by_tab (Tab Break) field in DocType 'CRM View Settings' -#: crm/fcrm/doctype/crm_view_settings/crm_view_settings.json +#. Label of the group_by_tab (Tab Break) field in PageType 'CRM View Settings' +#: crm/fcrm/pagetype/crm_view_settings/crm_view_settings.json #: frontend/src/components/ViewControls.vue:379 #: frontend/src/components/ViewControls.vue:611 frontend/src/utils/view.js:16 msgid "Group By" msgstr "" -#. Label of the group_by_field (Data) field in DocType 'CRM View Settings' -#: crm/fcrm/doctype/crm_view_settings/crm_view_settings.json +#. Label of the group_by_field (Data) field in PageType 'CRM View Settings' +#: crm/fcrm/pagetype/crm_view_settings/crm_view_settings.json msgid "Group By Field" msgstr "" @@ -2808,28 +2808,28 @@ msgstr "Aiuto" msgid "Helpdesk" msgstr "" -#. Name of a DocType -#: crm/fcrm/doctype/helpdesk_crm_settings/helpdesk_crm_settings.json +#. Name of a PageType +#: crm/fcrm/pagetype/helpdesk_crm_settings/helpdesk_crm_settings.json msgid "Helpdesk CRM Settings" msgstr "" -#. Label of the helpdesk_site_apis_section (Section Break) field in DocType +#. Label of the helpdesk_site_apis_section (Section Break) field in PageType #. 'Helpdesk CRM Settings' -#: crm/fcrm/doctype/helpdesk_crm_settings/helpdesk_crm_settings.json +#: crm/fcrm/pagetype/helpdesk_crm_settings/helpdesk_crm_settings.json msgid "Helpdesk Site API's" msgstr "" -#. Label of the helpdesk_site_url (Data) field in DocType 'Helpdesk CRM +#. Label of the helpdesk_site_url (Data) field in PageType 'Helpdesk CRM #. Settings' -#: crm/fcrm/doctype/helpdesk_crm_settings/helpdesk_crm_settings.json +#: crm/fcrm/pagetype/helpdesk_crm_settings/helpdesk_crm_settings.json msgid "Helpdesk Site URL" msgstr "" -#: crm/fcrm/doctype/helpdesk_crm_settings/helpdesk_crm_settings.py:18 +#: crm/fcrm/pagetype/helpdesk_crm_settings/helpdesk_crm_settings.py:18 msgid "Helpdesk is not installed in the current site" msgstr "" -#: crm/fcrm/doctype/helpdesk_crm_settings/helpdesk_crm_settings.py:40 +#: crm/fcrm/pagetype/helpdesk_crm_settings/helpdesk_crm_settings.py:40 msgid "Helpdesk is not integrated with the CRM" msgstr "" @@ -2845,8 +2845,8 @@ msgstr "" msgid "Hi John, \\n\\nCan you please provide more details on this..." msgstr "" -#. Label of the hidden (Check) field in DocType 'CRM Dropdown Item' -#: crm/fcrm/doctype/crm_dropdown_item/crm_dropdown_item.json +#. Label of the hidden (Check) field in PageType 'CRM Dropdown Item' +#: crm/fcrm/pagetype/crm_dropdown_item/crm_dropdown_item.json msgid "Hidden" msgstr "Nascosto" @@ -2877,26 +2877,26 @@ msgstr "" msgid "Hide preview" msgstr "" -#. Option for the 'Priority' (Select) field in DocType 'CRM Task' -#: crm/fcrm/doctype/crm_task/crm_task.json +#. Option for the 'Priority' (Select) field in PageType 'CRM Task' +#: crm/fcrm/pagetype/crm_task/crm_task.json msgid "High" msgstr "" -#. Label of the holiday_list (Link) field in DocType 'CRM Service Level +#. Label of the holiday_list (Link) field in PageType 'CRM Service Level #. Agreement' -#: crm/fcrm/doctype/crm_service_level_agreement/crm_service_level_agreement.json +#: crm/fcrm/pagetype/crm_service_level_agreement/crm_service_level_agreement.json msgid "Holiday List" msgstr "" -#. Label of the holiday_list_name (Data) field in DocType 'CRM Holiday List' -#: crm/fcrm/doctype/crm_holiday_list/crm_holiday_list.json +#. Label of the holiday_list_name (Data) field in PageType 'CRM Holiday List' +#: crm/fcrm/pagetype/crm_holiday_list/crm_holiday_list.json msgid "Holiday List Name" msgstr "" -#. Label of the holidays_section (Section Break) field in DocType 'CRM Holiday +#. Label of the holidays_section (Section Break) field in PageType 'CRM Holiday #. List' -#. Label of the holidays (Table) field in DocType 'CRM Holiday List' -#: crm/fcrm/doctype/crm_holiday_list/crm_holiday_list.json +#. Label of the holidays (Table) field in PageType 'CRM Holiday List' +#: crm/fcrm/pagetype/crm_holiday_list/crm_holiday_list.json msgid "Holidays" msgstr "" @@ -2914,15 +2914,15 @@ msgstr "" msgid "I understand, add conditions" msgstr "" -#. Label of the id (Data) field in DocType 'CRM Call Log' -#: crm/fcrm/doctype/crm_call_log/crm_call_log.json +#. Label of the id (Data) field in PageType 'CRM Call Log' +#: crm/fcrm/pagetype/crm_call_log/crm_call_log.json msgid "ID" msgstr "ID" -#. Label of the icon (Code) field in DocType 'CRM Dropdown Item' -#. Label of the icon (Data) field in DocType 'CRM View Settings' -#: crm/fcrm/doctype/crm_dropdown_item/crm_dropdown_item.json -#: crm/fcrm/doctype/crm_view_settings/crm_view_settings.json +#. Label of the icon (Code) field in PageType 'CRM Dropdown Item' +#. Label of the icon (Data) field in PageType 'CRM View Settings' +#: crm/fcrm/pagetype/crm_dropdown_item/crm_dropdown_item.json +#: crm/fcrm/pagetype/crm_view_settings/crm_view_settings.json msgid "Icon" msgstr "Icona" @@ -2942,10 +2942,10 @@ msgstr "" msgid "If enabled, records can be created from the incoming emails on this account." msgstr "" -#. Label of the image (Attach Image) field in DocType 'CRM Lead' -#. Label of the image (Attach Image) field in DocType 'CRM Product' -#: crm/fcrm/doctype/crm_lead/crm_lead.json -#: crm/fcrm/doctype/crm_product/crm_product.json +#. Label of the image (Attach Image) field in PageType 'CRM Lead' +#. Label of the image (Attach Image) field in PageType 'CRM Product' +#: crm/fcrm/pagetype/crm_lead/crm_lead.json +#: crm/fcrm/pagetype/crm_product/crm_product.json msgid "Image" msgstr "Immagine" @@ -2957,10 +2957,10 @@ msgstr "Immagine" msgid "In" msgstr "" -#. Option for the 'Status' (Select) field in DocType 'CRM Call Log' -#. Option for the 'Status' (Select) field in DocType 'CRM Task' -#: crm/fcrm/doctype/crm_call_log/crm_call_log.json -#: crm/fcrm/doctype/crm_task/crm_task.json +#. Option for the 'Status' (Select) field in PageType 'CRM Call Log' +#. Option for the 'Status' (Select) field in PageType 'CRM Task' +#: crm/fcrm/pagetype/crm_call_log/crm_call_log.json +#: crm/fcrm/pagetype/crm_task/crm_task.json msgid "In Progress" msgstr "" @@ -2976,8 +2976,8 @@ msgstr "" msgid "Inbox" msgstr "" -#. Option for the 'Type' (Select) field in DocType 'CRM Call Log' -#: crm/fcrm/doctype/crm_call_log/crm_call_log.json +#. Option for the 'Type' (Select) field in PageType 'CRM Call Log' +#: crm/fcrm/pagetype/crm_call_log/crm_call_log.json msgid "Incoming" msgstr "" @@ -2985,24 +2985,24 @@ msgstr "" msgid "Incoming call..." msgstr "" -#. Label of a shortcut in the Frappe CRM Workspace -#: crm/fcrm/workspace/frappe_crm/frappe_crm.json +#. Label of a shortcut in the Jingrow CRM Workspace +#: crm/fcrm/workspace/jingrow_crm/jingrow_crm.json msgid "Industries" msgstr "" -#. Label of the industry (Link) field in DocType 'CRM Deal' -#. Label of the industry (Data) field in DocType 'CRM Industry' -#. Label of the industry (Link) field in DocType 'CRM Lead' -#. Label of the industry (Link) field in DocType 'CRM Organization' -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_industry/crm_industry.json -#: crm/fcrm/doctype/crm_lead/crm_lead.json -#: crm/fcrm/doctype/crm_organization/crm_organization.json +#. Label of the industry (Link) field in PageType 'CRM Deal' +#. Label of the industry (Data) field in PageType 'CRM Industry' +#. Label of the industry (Link) field in PageType 'CRM Lead' +#. Label of the industry (Link) field in PageType 'CRM Organization' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_industry/crm_industry.json +#: crm/fcrm/pagetype/crm_lead/crm_lead.json +#: crm/fcrm/pagetype/crm_organization/crm_organization.json msgid "Industry" msgstr "" -#. Option for the 'Status' (Select) field in DocType 'CRM Call Log' -#: crm/fcrm/doctype/crm_call_log/crm_call_log.json +#. Option for the 'Status' (Select) field in PageType 'CRM Call Log' +#: crm/fcrm/pagetype/crm_call_log/crm_call_log.json msgid "Initiated" msgstr "" @@ -3037,7 +3037,7 @@ msgstr "Integrazioni" msgid "Introduction" msgstr "" -#: crm/fcrm/doctype/crm_twilio_settings/crm_twilio_settings.py:33 +#: crm/fcrm/pagetype/crm_twilio_settings/crm_twilio_settings.py:33 msgid "Invalid Account SID or Auth Token." msgstr "" @@ -3054,7 +3054,7 @@ msgstr "" msgid "Invalid chart name" msgstr "" -#: crm/fcrm/doctype/crm_exotel_settings/crm_exotel_settings.py:25 +#: crm/fcrm/pagetype/crm_exotel_settings/crm_exotel_settings.py:25 msgid "Invalid credentials" msgstr "" @@ -3103,8 +3103,8 @@ msgstr "" msgid "Invite your team" msgstr "" -#. Label of the invited_by (Link) field in DocType 'CRM Invitation' -#: crm/fcrm/doctype/crm_invitation/crm_invitation.json +#. Label of the invited_by (Link) field in PageType 'CRM Invitation' +#: crm/fcrm/pagetype/crm_invitation/crm_invitation.json msgid "Invited By" msgstr "" @@ -3118,59 +3118,59 @@ msgstr "" msgid "Is" msgstr "" -#. Label of the is_default (Check) field in DocType 'CRM View Settings' -#: crm/fcrm/doctype/crm_view_settings/crm_view_settings.json +#. Label of the is_default (Check) field in PageType 'CRM View Settings' +#: crm/fcrm/pagetype/crm_view_settings/crm_view_settings.json msgid "Is Default" msgstr "È Predefinito" -#. Label of the is_erpnext_in_different_site (Check) field in DocType 'ERPNext +#. Label of the is_erpnext_in_different_site (Check) field in PageType 'ERPNext #. CRM Settings' -#: crm/fcrm/doctype/erpnext_crm_settings/erpnext_crm_settings.json +#: crm/fcrm/pagetype/erpnext_crm_settings/erpnext_crm_settings.json msgid "Is ERPNext installed on a different site?" msgstr "" -#. Label of the is_group (Check) field in DocType 'CRM Territory' -#: crm/fcrm/doctype/crm_territory/crm_territory.json +#. Label of the is_group (Check) field in PageType 'CRM Territory' +#: crm/fcrm/pagetype/crm_territory/crm_territory.json msgid "Is Group" msgstr "" -#. Label of the is_helpdesk_in_different_site (Check) field in DocType +#. Label of the is_helpdesk_in_different_site (Check) field in PageType #. 'Helpdesk CRM Settings' -#: crm/fcrm/doctype/helpdesk_crm_settings/helpdesk_crm_settings.json +#: crm/fcrm/pagetype/helpdesk_crm_settings/helpdesk_crm_settings.json msgid "Is Helpdesk installed on a different site?" msgstr "" -#. Label of the is_primary (Check) field in DocType 'CRM Contacts' -#. Label of the is_primary (Check) field in DocType 'CRM Telephony Phone' -#: crm/fcrm/doctype/crm_contacts/crm_contacts.json -#: crm/fcrm/doctype/crm_telephony_phone/crm_telephony_phone.json +#. Label of the is_primary (Check) field in PageType 'CRM Contacts' +#. Label of the is_primary (Check) field in PageType 'CRM Telephony Phone' +#: crm/fcrm/pagetype/crm_contacts/crm_contacts.json +#: crm/fcrm/pagetype/crm_telephony_phone/crm_telephony_phone.json msgid "Is Primary" msgstr "" -#. Label of the is_standard (Check) field in DocType 'CRM Dropdown Item' -#. Label of the is_standard (Check) field in DocType 'CRM Form Script' -#. Label of the is_standard (Check) field in DocType 'CRM View Settings' -#: crm/fcrm/doctype/crm_dropdown_item/crm_dropdown_item.json -#: crm/fcrm/doctype/crm_form_script/crm_form_script.json -#: crm/fcrm/doctype/crm_view_settings/crm_view_settings.json +#. Label of the is_standard (Check) field in PageType 'CRM Dropdown Item' +#. Label of the is_standard (Check) field in PageType 'CRM Form Script' +#. Label of the is_standard (Check) field in PageType 'CRM View Settings' +#: crm/fcrm/pagetype/crm_dropdown_item/crm_dropdown_item.json +#: crm/fcrm/pagetype/crm_form_script/crm_form_script.json +#: crm/fcrm/pagetype/crm_view_settings/crm_view_settings.json msgid "Is Standard" msgstr "È standard" -#. Description of the 'Enable Forecasting' (Check) field in DocType 'FCRM +#. Description of the 'Enable Forecasting' (Check) field in PageType 'FCRM #. Settings' -#: crm/fcrm/doctype/fcrm_settings/fcrm_settings.json +#: crm/fcrm/pagetype/fcrm_settings/fcrm_settings.json msgid "It will make deal's \"Expected Closure Date\" & \"Expected Deal Value\" mandatory to get accurate forecasting insights" msgstr "" -#. Label of the json (JSON) field in DocType 'CRM Global Settings' -#: crm/fcrm/doctype/crm_global_settings/crm_global_settings.json +#. Label of the json (JSON) field in PageType 'CRM Global Settings' +#: crm/fcrm/pagetype/crm_global_settings/crm_global_settings.json msgid "JSON" msgstr "JSON" -#. Label of the job_title (Data) field in DocType 'CRM Deal' -#. Label of the job_title (Data) field in DocType 'CRM Lead' -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_lead/crm_lead.json +#. Label of the job_title (Data) field in PageType 'CRM Deal' +#. Label of the job_title (Data) field in PageType 'CRM Lead' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_lead/crm_lead.json msgid "Job Title" msgstr "" @@ -3182,20 +3182,20 @@ msgstr "" msgid "John Doe" msgstr "" -#. Label of the kanban_tab (Tab Break) field in DocType 'CRM View Settings' -#: crm/fcrm/doctype/crm_view_settings/crm_view_settings.json +#. Label of the kanban_tab (Tab Break) field in PageType 'CRM View Settings' +#: crm/fcrm/pagetype/crm_view_settings/crm_view_settings.json #: frontend/src/components/ViewControls.vue:384 #: frontend/src/components/ViewControls.vue:600 frontend/src/utils/view.js:20 msgid "Kanban" msgstr "Kanban" -#. Label of the kanban_columns (Code) field in DocType 'CRM View Settings' -#: crm/fcrm/doctype/crm_view_settings/crm_view_settings.json +#. Label of the kanban_columns (Code) field in PageType 'CRM View Settings' +#: crm/fcrm/pagetype/crm_view_settings/crm_view_settings.json msgid "Kanban Columns" msgstr "" -#. Label of the kanban_fields (Code) field in DocType 'CRM View Settings' -#: crm/fcrm/doctype/crm_view_settings/crm_view_settings.json +#. Label of the kanban_fields (Code) field in PageType 'CRM View Settings' +#: crm/fcrm/pagetype/crm_view_settings/crm_view_settings.json msgid "Kanban Fields" msgstr "" @@ -3204,15 +3204,15 @@ msgstr "" msgid "Kanban Settings" msgstr "Impostazioni Kanban" -#. Label of the key (Data) field in DocType 'CRM Invitation' -#: crm/fcrm/doctype/crm_invitation/crm_invitation.json +#. Label of the key (Data) field in PageType 'CRM Invitation' +#: crm/fcrm/pagetype/crm_invitation/crm_invitation.json msgid "Key" msgstr "" -#. Label of the label (Data) field in DocType 'CRM Dropdown Item' -#. Label of the label (Data) field in DocType 'CRM View Settings' -#: crm/fcrm/doctype/crm_dropdown_item/crm_dropdown_item.json -#: crm/fcrm/doctype/crm_view_settings/crm_view_settings.json +#. Label of the label (Data) field in PageType 'CRM Dropdown Item' +#. Label of the label (Data) field in PageType 'CRM View Settings' +#: crm/fcrm/pagetype/crm_dropdown_item/crm_dropdown_item.json +#: crm/fcrm/pagetype/crm_view_settings/crm_view_settings.json #: frontend/src/components/ColumnSettings.vue:100 msgid "Label" msgstr "Etichetta" @@ -3229,10 +3229,10 @@ msgstr "" msgid "Last Month" msgstr "" -#. Label of the last_name (Data) field in DocType 'CRM Deal' -#. Label of the last_name (Data) field in DocType 'CRM Lead' -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_lead/crm_lead.json +#. Label of the last_name (Data) field in PageType 'CRM Deal' +#. Label of the last_name (Data) field in PageType 'CRM Lead' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_lead/crm_lead.json msgid "Last Name" msgstr "Cognome" @@ -3240,9 +3240,9 @@ msgstr "Cognome" msgid "Last Quarter" msgstr "" -#. Label of the last_status_change_log (Link) field in DocType 'CRM Status +#. Label of the last_status_change_log (Link) field in PageType 'CRM Status #. Change Log' -#: crm/fcrm/doctype/crm_status_change_log/crm_status_change_log.json +#: crm/fcrm/pagetype/crm_status_change_log/crm_status_change_log.json msgid "Last Status Change Log" msgstr "" @@ -3270,15 +3270,15 @@ msgstr "" msgid "Last user assigned by this rule" msgstr "" -#. Label of the layout (Code) field in DocType 'CRM Dashboard' -#. Label of the layout (Code) field in DocType 'CRM Fields Layout' -#: crm/fcrm/doctype/crm_dashboard/crm_dashboard.json -#: crm/fcrm/doctype/crm_fields_layout/crm_fields_layout.json +#. Label of the layout (Code) field in PageType 'CRM Dashboard' +#. Label of the layout (Code) field in PageType 'CRM Fields Layout' +#: crm/fcrm/pagetype/crm_dashboard/crm_dashboard.json +#: crm/fcrm/pagetype/crm_fields_layout/crm_fields_layout.json msgid "Layout" msgstr "" -#. Label of the lead (Link) field in DocType 'CRM Deal' -#: crm/fcrm/doctype/crm_deal/crm_deal.json +#. Label of the lead (Link) field in PageType 'CRM Deal' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json #: frontend/src/components/Calendar/CalendarEventPanel.vue:263 #: frontend/src/components/Calendar/CalendarEventPanel.vue:288 #: frontend/src/components/Layouts/AppSidebar.vue:550 @@ -3291,32 +3291,32 @@ msgstr "" msgid "Lead" msgstr "Opportunità" -#. Label of the lead_details_tab (Tab Break) field in DocType 'CRM Deal' -#: crm/fcrm/doctype/crm_deal/crm_deal.json +#. Label of the lead_details_tab (Tab Break) field in PageType 'CRM Deal' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json msgid "Lead Details" msgstr "" -#. Label of the lead_name (Data) field in DocType 'CRM Deal' -#: crm/fcrm/doctype/crm_deal/crm_deal.json +#. Label of the lead_name (Data) field in PageType 'CRM Deal' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json msgid "Lead Name" msgstr "" -#. Label of the lead_owner (Link) field in DocType 'CRM Lead' -#: crm/fcrm/doctype/crm_lead/crm_lead.json +#. Label of the lead_owner (Link) field in PageType 'CRM Lead' +#: crm/fcrm/pagetype/crm_lead/crm_lead.json msgid "Lead Owner" msgstr "" -#: crm/fcrm/doctype/crm_lead/crm_lead.py:73 +#: crm/fcrm/pagetype/crm_lead/crm_lead.py:73 msgid "Lead Owner cannot be same as the Lead Email Address" msgstr "" -#. Label of a shortcut in the Frappe CRM Workspace -#: crm/fcrm/workspace/frappe_crm/frappe_crm.json +#. Label of a shortcut in the Jingrow CRM Workspace +#: crm/fcrm/workspace/jingrow_crm/jingrow_crm.json msgid "Lead Sources" msgstr "" -#. Label of a shortcut in the Frappe CRM Workspace -#: crm/fcrm/workspace/frappe_crm/frappe_crm.json +#. Label of a shortcut in the Jingrow CRM Workspace +#: crm/fcrm/workspace/jingrow_crm/jingrow_crm.json msgid "Lead Statuses" msgstr "" @@ -3328,8 +3328,8 @@ msgstr "" msgid "Lead to deal conversion pipeline" msgstr "" -#. Label of a shortcut in the Frappe CRM Workspace -#: crm/fcrm/workspace/frappe_crm/frappe_crm.json +#. Label of a shortcut in the Jingrow CRM Workspace +#: crm/fcrm/workspace/jingrow_crm/jingrow_crm.json #: frontend/src/pages/InvalidPage.vue:9 frontend/src/pages/Lead.vue:340 #: frontend/src/pages/MobileLead.vue:291 msgid "Leads" @@ -3345,8 +3345,8 @@ msgstr "" msgid "Learn about conditions" msgstr "" -#. Label of the lft (Int) field in DocType 'CRM Territory' -#: crm/fcrm/doctype/crm_territory/crm_territory.json +#. Label of the lft (Int) field in PageType 'CRM Territory' +#: crm/fcrm/pagetype/crm_territory/crm_territory.json msgid "Left" msgstr "" @@ -3367,15 +3367,15 @@ msgstr "" msgid "Link" msgstr "Collegamento" -#. Label of the links (Table) field in DocType 'CRM Call Log' -#: crm/fcrm/doctype/crm_call_log/crm_call_log.json +#. Label of the links (Table) field in PageType 'CRM Call Log' +#: crm/fcrm/pagetype/crm_call_log/crm_call_log.json msgid "Links" msgstr "" -#. Option for the 'Apply To' (Select) field in DocType 'CRM Form Script' -#. Label of the list_tab (Tab Break) field in DocType 'CRM View Settings' -#: crm/fcrm/doctype/crm_form_script/crm_form_script.json -#: crm/fcrm/doctype/crm_view_settings/crm_view_settings.json +#. Option for the 'Apply To' (Select) field in PageType 'CRM Form Script' +#. Label of the list_tab (Tab Break) field in PageType 'CRM View Settings' +#: crm/fcrm/pagetype/crm_form_script/crm_form_script.json +#: crm/fcrm/pagetype/crm_view_settings/crm_view_settings.json #: frontend/src/components/ViewControls.vue:374 #: frontend/src/components/ViewControls.vue:589 frontend/src/utils/view.js:12 msgid "List" @@ -3385,9 +3385,9 @@ msgstr "" msgid "Listen" msgstr "" -#. Label of the load_default_columns (Check) field in DocType 'CRM View +#. Label of the load_default_columns (Check) field in PageType 'CRM View #. Settings' -#: crm/fcrm/doctype/crm_view_settings/crm_view_settings.json +#: crm/fcrm/pagetype/crm_view_settings/crm_view_settings.json msgid "Load Default Columns" msgstr "" @@ -3403,10 +3403,10 @@ msgstr "Carica Altro" msgid "Loading..." msgstr "Caricamento..." -#. Label of the log_tab (Tab Break) field in DocType 'CRM Deal' -#. Label of the log_tab (Tab Break) field in DocType 'CRM Lead' -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_lead/crm_lead.json +#. Label of the log_tab (Tab Break) field in PageType 'CRM Deal' +#. Label of the log_tab (Tab Break) field in PageType 'CRM Lead' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_lead/crm_lead.json msgid "Log" msgstr "" @@ -3417,28 +3417,28 @@ msgid "Log a Call" msgstr "" #: frontend/src/composables/frappecloud.js:23 -msgid "Login to Frappe Cloud?" +msgid "Login to Jingrow Cloud?" msgstr "" -#. Label of the brand_logo (Attach) field in DocType 'FCRM Settings' -#: crm/fcrm/doctype/fcrm_settings/fcrm_settings.json +#. Label of the brand_logo (Attach) field in PageType 'FCRM Settings' +#: crm/fcrm/pagetype/fcrm_settings/fcrm_settings.json msgid "Logo" msgstr "Logo" -#. Option for the 'Type' (Select) field in DocType 'CRM Deal Status' -#: crm/fcrm/doctype/crm_deal_status/crm_deal_status.json +#. Option for the 'Type' (Select) field in PageType 'CRM Deal Status' +#: crm/fcrm/pagetype/crm_deal_status/crm_deal_status.json msgid "Lost" msgstr "" -#. Label of the lost_notes (Text) field in DocType 'CRM Deal' -#: crm/fcrm/doctype/crm_deal/crm_deal.json +#. Label of the lost_notes (Text) field in PageType 'CRM Deal' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json msgid "Lost Notes" msgstr "" -#. Label of the lost_reason (Link) field in DocType 'CRM Deal' -#. Label of the lost_reason (Data) field in DocType 'CRM Lost Reason' -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_lost_reason/crm_lost_reason.json +#. Label of the lost_reason (Link) field in PageType 'CRM Deal' +#. Label of the lost_reason (Data) field in PageType 'CRM Lost Reason' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_lost_reason/crm_lost_reason.json msgid "Lost Reason" msgstr "" @@ -3464,8 +3464,8 @@ msgstr "" msgid "Lost reason is required" msgstr "" -#. Option for the 'Priority' (Select) field in DocType 'CRM Task' -#: crm/fcrm/doctype/crm_task/crm_task.json +#. Option for the 'Priority' (Select) field in PageType 'CRM Task' +#: crm/fcrm/pagetype/crm_task/crm_task.json msgid "Low" msgstr "Bassa" @@ -3542,8 +3542,8 @@ msgstr "Responsabile" msgid "Mandatory field error: {0}" msgstr "" -#. Option for the 'Telephony Medium' (Select) field in DocType 'CRM Call Log' -#: crm/fcrm/doctype/crm_call_log/crm_call_log.json +#. Option for the 'Telephony Medium' (Select) field in PageType 'CRM Call Log' +#: crm/fcrm/pagetype/crm_call_log/crm_call_log.json msgid "Manual" msgstr "Manuale" @@ -3562,25 +3562,25 @@ msgstr "" msgid "May 1, 2025" msgstr "" -#. Label of the medium (Data) field in DocType 'CRM Call Log' -#. Option for the 'Priority' (Select) field in DocType 'CRM Task' -#: crm/fcrm/doctype/crm_call_log/crm_call_log.json -#: crm/fcrm/doctype/crm_task/crm_task.json +#. Label of the medium (Data) field in PageType 'CRM Call Log' +#. Option for the 'Priority' (Select) field in PageType 'CRM Task' +#: crm/fcrm/pagetype/crm_call_log/crm_call_log.json +#: crm/fcrm/pagetype/crm_task/crm_task.json msgid "Medium" msgstr "" -#. Option for the 'Type' (Select) field in DocType 'CRM Notification' -#: crm/fcrm/doctype/crm_notification/crm_notification.json +#. Option for the 'Type' (Select) field in PageType 'CRM Notification' +#: crm/fcrm/pagetype/crm_notification/crm_notification.json msgid "Mention" msgstr "" -#. Label of the message (HTML Editor) field in DocType 'CRM Notification' -#: crm/fcrm/doctype/crm_notification/crm_notification.json +#. Label of the message (HTML Editor) field in PageType 'CRM Notification' +#: crm/fcrm/pagetype/crm_notification/crm_notification.json msgid "Message" msgstr "Messaggio" -#. Label of the middle_name (Data) field in DocType 'CRM Lead' -#: crm/fcrm/doctype/crm_lead/crm_lead.json +#. Label of the middle_name (Data) field in PageType 'CRM Lead' +#: crm/fcrm/pagetype/crm_lead/crm_lead.json msgid "Middle Name" msgstr "" @@ -3588,10 +3588,10 @@ msgstr "" msgid "Minimize" msgstr "" -#. Label of the mobile_no (Data) field in DocType 'CRM Contacts' -#. Label of the mobile_no (Data) field in DocType 'CRM Lead' -#: crm/fcrm/doctype/crm_contacts/crm_contacts.json -#: crm/fcrm/doctype/crm_lead/crm_lead.json +#. Label of the mobile_no (Data) field in PageType 'CRM Contacts' +#. Label of the mobile_no (Data) field in PageType 'CRM Lead' +#: crm/fcrm/pagetype/crm_contacts/crm_contacts.json +#: crm/fcrm/pagetype/crm_lead/crm_lead.json msgid "Mobile No" msgstr "Cellulare" @@ -3600,8 +3600,8 @@ msgstr "Cellulare" msgid "Mobile No should be a number" msgstr "" -#. Label of the mobile_no (Data) field in DocType 'CRM Telephony Agent' -#: crm/fcrm/doctype/crm_telephony_agent/crm_telephony_agent.json +#. Label of the mobile_no (Data) field in PageType 'CRM Telephony Agent' +#: crm/fcrm/pagetype/crm_telephony_agent/crm_telephony_agent.json msgid "Mobile No." msgstr "" @@ -3623,10 +3623,10 @@ msgstr "" msgid "Mobile no" msgstr "Cellulare" -#. Option for the 'Weekly Off' (Select) field in DocType 'CRM Holiday List' -#. Option for the 'Workday' (Select) field in DocType 'CRM Service Day' -#: crm/fcrm/doctype/crm_holiday_list/crm_holiday_list.json -#: crm/fcrm/doctype/crm_service_day/crm_service_day.json +#. Option for the 'Weekly Off' (Select) field in PageType 'CRM Holiday List' +#. Option for the 'Workday' (Select) field in PageType 'CRM Service Day' +#: crm/fcrm/pagetype/crm_holiday_list/crm_holiday_list.json +#: crm/fcrm/pagetype/crm_service_day/crm_service_day.json msgid "Monday" msgstr "" @@ -3658,12 +3658,12 @@ msgstr "" msgid "My Open Deals" msgstr "" -#. Label of the title (Data) field in DocType 'CRM Dashboard' -#. Label of the name1 (Data) field in DocType 'CRM Dropdown Item' -#. Label of the brand_name (Data) field in DocType 'FCRM Settings' -#: crm/fcrm/doctype/crm_dashboard/crm_dashboard.json -#: crm/fcrm/doctype/crm_dropdown_item/crm_dropdown_item.json -#: crm/fcrm/doctype/fcrm_settings/fcrm_settings.json +#. Label of the title (Data) field in PageType 'CRM Dashboard' +#. Label of the name1 (Data) field in PageType 'CRM Dropdown Item' +#. Label of the brand_name (Data) field in PageType 'FCRM Settings' +#: crm/fcrm/pagetype/crm_dashboard/crm_dashboard.json +#: crm/fcrm/pagetype/crm_dropdown_item/crm_dropdown_item.json +#: crm/fcrm/pagetype/fcrm_settings/fcrm_settings.json #: frontend/src/components/Settings/AssignmentRules/AssignmentRuleView.vue:51 #: frontend/src/components/Settings/AssignmentRules/AssignmentRuleView.vue:52 #: frontend/src/components/Settings/EmailTemplate/EditEmailTemplate.vue:39 @@ -3680,10 +3680,10 @@ msgstr "" msgid "Name is required" msgstr "" -#. Label of the naming_series (Select) field in DocType 'CRM Deal' -#. Label of the naming_series (Select) field in DocType 'CRM Product' -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_product/crm_product.json +#. Label of the naming_series (Select) field in PageType 'CRM Deal' +#. Label of the naming_series (Select) field in PageType 'CRM Product' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_product/crm_product.json msgid "Naming Series" msgstr "" @@ -3691,15 +3691,15 @@ msgstr "" msgid "Nested conditions" msgstr "" -#. Label of the net_amount (Currency) field in DocType 'CRM Products' -#: crm/fcrm/doctype/crm_products/crm_products.json +#. Label of the net_amount (Currency) field in PageType 'CRM Products' +#: crm/fcrm/pagetype/crm_products/crm_products.json msgid "Net Amount" msgstr "" -#. Label of the net_total (Currency) field in DocType 'CRM Deal' -#. Label of the net_total (Currency) field in DocType 'CRM Lead' -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_lead/crm_lead.json +#. Label of the net_total (Currency) field in PageType 'CRM Deal' +#. Label of the net_total (Currency) field in PageType 'CRM Lead' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_lead/crm_lead.json msgid "Net Total" msgstr "" @@ -3814,8 +3814,8 @@ msgstr "" msgid "Next Quarter" msgstr "" -#. Label of the next_step (Data) field in DocType 'CRM Deal' -#: crm/fcrm/doctype/crm_deal/crm_deal.json +#. Label of the next_step (Data) field in PageType 'CRM Deal' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json msgid "Next Step" msgstr "" @@ -3831,8 +3831,8 @@ msgstr "" msgid "No" msgstr "No" -#. Option for the 'Status' (Select) field in DocType 'CRM Call Log' -#: crm/fcrm/doctype/crm_call_log/crm_call_log.json +#. Option for the 'Status' (Select) field in PageType 'CRM Call Log' +#: crm/fcrm/pagetype/crm_call_log/crm_call_log.json msgid "No Answer" msgstr "" @@ -3930,12 +3930,12 @@ msgstr "" msgid "No {0} Found" msgstr "" -#. Label of the no_of_employees (Select) field in DocType 'CRM Deal' -#. Label of the no_of_employees (Select) field in DocType 'CRM Lead' -#. Label of the no_of_employees (Select) field in DocType 'CRM Organization' -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_lead/crm_lead.json -#: crm/fcrm/doctype/crm_organization/crm_organization.json +#. Label of the no_of_employees (Select) field in PageType 'CRM Deal' +#. Label of the no_of_employees (Select) field in PageType 'CRM Lead' +#. Label of the no_of_employees (Select) field in PageType 'CRM Organization' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_lead/crm_lead.json +#: crm/fcrm/pagetype/crm_organization/crm_organization.json msgid "No. of Employees" msgstr "" @@ -3981,24 +3981,24 @@ msgstr "" msgid "Not Saved" msgstr "Non Salvato" -#: crm/fcrm/doctype/crm_deal/crm_deal.py:272 +#: crm/fcrm/pagetype/crm_deal/crm_deal.py:272 msgid "Not allowed to add contact to Deal" msgstr "" -#: crm/fcrm/doctype/crm_lead/crm_lead.py:408 +#: crm/fcrm/pagetype/crm_lead/crm_lead.py:408 msgid "Not allowed to convert Lead to Deal" msgstr "" -#: crm/fcrm/doctype/crm_deal/crm_deal.py:283 +#: crm/fcrm/pagetype/crm_deal/crm_deal.py:283 msgid "Not allowed to remove contact from Deal" msgstr "" -#: crm/fcrm/doctype/crm_deal/crm_deal.py:294 +#: crm/fcrm/pagetype/crm_deal/crm_deal.py:294 msgid "Not allowed to set primary contact for Deal" msgstr "" -#. Label of the note (Link) field in DocType 'CRM Call Log' -#: crm/fcrm/doctype/crm_call_log/crm_call_log.json +#. Label of the note (Link) field in PageType 'CRM Call Log' +#: crm/fcrm/pagetype/crm_call_log/crm_call_log.json #: frontend/src/components/Layouts/AppSidebar.vue:554 msgid "Note" msgstr "" @@ -4017,21 +4017,21 @@ msgstr "" msgid "Notification" msgstr "" -#. Label of the notification_text (Text) field in DocType 'CRM Notification' -#: crm/fcrm/doctype/crm_notification/crm_notification.json +#. Label of the notification_text (Text) field in PageType 'CRM Notification' +#: crm/fcrm/pagetype/crm_notification/crm_notification.json msgid "Notification Text" msgstr "" -#. Label of the notification_type_doc (Dynamic Link) field in DocType 'CRM +#. Label of the notification_type_pg (Dynamic Link) field in PageType 'CRM #. Notification' -#: crm/fcrm/doctype/crm_notification/crm_notification.json -msgid "Notification Type Doc" +#: crm/fcrm/pagetype/crm_notification/crm_notification.json +msgid "Notification Type Pg" msgstr "" -#. Label of the notification_type_doctype (Link) field in DocType 'CRM +#. Label of the notification_type_pagetype (Link) field in PageType 'CRM #. Notification' -#: crm/fcrm/doctype/crm_notification/crm_notification.json -msgid "Notification Type Doctype" +#: crm/fcrm/pagetype/crm_notification/crm_notification.json +msgid "Notification Type Pagetype" msgstr "" #: frontend/src/components/Layouts/AppSidebar.vue:13 @@ -4041,8 +4041,8 @@ msgstr "" msgid "Notifications" msgstr "Notifiche" -#. Label of the number (Data) field in DocType 'CRM Telephony Phone' -#: crm/fcrm/doctype/crm_telephony_phone/crm_telephony_phone.json +#. Label of the number (Data) field in PageType 'CRM Telephony Phone' +#: crm/fcrm/pagetype/crm_telephony_phone/crm_telephony_phone.json msgid "Number" msgstr "" @@ -4064,18 +4064,18 @@ msgstr "" msgid "Old Condition" msgstr "" -#. Label of the old_parent (Link) field in DocType 'CRM Territory' -#: crm/fcrm/doctype/crm_territory/crm_territory.json +#. Label of the old_parent (Link) field in PageType 'CRM Territory' +#: crm/fcrm/pagetype/crm_territory/crm_territory.json msgid "Old Parent" msgstr "" -#. Option for the 'Type' (Select) field in DocType 'CRM Deal Status' -#: crm/fcrm/doctype/crm_deal_status/crm_deal_status.json +#. Option for the 'Type' (Select) field in PageType 'CRM Deal Status' +#: crm/fcrm/pagetype/crm_deal_status/crm_deal_status.json msgid "On Hold" msgstr "" -#. Option for the 'Type' (Select) field in DocType 'CRM Deal Status' -#: crm/fcrm/doctype/crm_deal_status/crm_deal_status.json +#. Option for the 'Type' (Select) field in PageType 'CRM Deal Status' +#: crm/fcrm/pagetype/crm_deal_status/crm_deal_status.json msgid "Ongoing" msgstr "" @@ -4088,13 +4088,13 @@ msgstr "" msgid "Only image files are allowed" msgstr "" -#: crm/fcrm/doctype/crm_deal/crm_deal.py:60 -#: crm/fcrm/doctype/crm_telephony_agent/crm_telephony_agent.py:23 +#: crm/fcrm/pagetype/crm_deal/crm_deal.py:60 +#: crm/fcrm/pagetype/crm_telephony_agent/crm_telephony_agent.py:23 msgid "Only one {0} can be set as primary." msgstr "" -#. Option for the 'Type' (Select) field in DocType 'CRM Deal Status' -#: crm/fcrm/doctype/crm_deal_status/crm_deal_status.json +#. Option for the 'Type' (Select) field in PageType 'CRM Deal Status' +#: crm/fcrm/pagetype/crm_deal_status/crm_deal_status.json msgid "Open" msgstr "Aperto" @@ -4108,13 +4108,13 @@ msgstr "" msgid "Open Lead" msgstr "" -#: crm/fcrm/doctype/crm_deal/crm_deal.js:6 -#: crm/fcrm/doctype/crm_lead/crm_lead.js:6 +#: crm/fcrm/pagetype/crm_deal/crm_deal.js:6 +#: crm/fcrm/pagetype/crm_lead/crm_lead.js:6 msgid "Open in Portal" msgstr "" -#. Label of the open_in_new_window (Check) field in DocType 'CRM Dropdown Item' -#: crm/fcrm/doctype/crm_dropdown_item/crm_dropdown_item.json +#. Label of the open_in_new_window (Check) field in PageType 'CRM Dropdown Item' +#: crm/fcrm/pagetype/crm_dropdown_item/crm_dropdown_item.json msgid "Open in new window" msgstr "" @@ -4136,17 +4136,17 @@ msgstr "" msgid "Or create leads manually" msgstr "" -#. Label of the order_by_tab (Tab Break) field in DocType 'CRM View Settings' -#. Label of the order_by (Code) field in DocType 'CRM View Settings' -#: crm/fcrm/doctype/crm_view_settings/crm_view_settings.json +#. Label of the order_by_tab (Tab Break) field in PageType 'CRM View Settings' +#. Label of the order_by (Code) field in PageType 'CRM View Settings' +#: crm/fcrm/pagetype/crm_view_settings/crm_view_settings.json msgid "Order By" msgstr "" -#. Label of the organization (Link) field in DocType 'CRM Deal' -#. Label of the organization_tab (Tab Break) field in DocType 'CRM Deal' -#. Label of the organization (Data) field in DocType 'CRM Lead' -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_lead/crm_lead.json +#. Label of the organization (Link) field in PageType 'CRM Deal' +#. Label of the organization_tab (Tab Break) field in PageType 'CRM Deal' +#. Label of the organization (Data) field in PageType 'CRM Lead' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_lead/crm_lead.json #: frontend/src/components/Layouts/AppSidebar.vue:553 #: frontend/src/components/Modals/ConvertToDealModal.vue:25 #: frontend/src/pages/Contact.vue:494 frontend/src/pages/MobileContact.vue:502 @@ -4158,22 +4158,22 @@ msgstr "" msgid "Organization" msgstr "" -#. Label of the organization_details_section (Section Break) field in DocType +#. Label of the organization_details_section (Section Break) field in PageType #. 'CRM Deal' -#: crm/fcrm/doctype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_deal/crm_deal.json msgid "Organization Details" msgstr "" -#. Label of the organization_logo (Attach Image) field in DocType 'CRM +#. Label of the organization_logo (Attach Image) field in PageType 'CRM #. Organization' -#: crm/fcrm/doctype/crm_organization/crm_organization.json +#: crm/fcrm/pagetype/crm_organization/crm_organization.json msgid "Organization Logo" msgstr "" -#. Label of the organization_name (Data) field in DocType 'CRM Deal' -#. Label of the organization_name (Data) field in DocType 'CRM Organization' -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_organization/crm_organization.json +#. Label of the organization_name (Data) field in PageType 'CRM Deal' +#. Label of the organization_name (Data) field in PageType 'CRM Organization' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_organization/crm_organization.json msgid "Organization Name" msgstr "" @@ -4181,8 +4181,8 @@ msgstr "" msgid "Organization logo" msgstr "" -#. Label of a shortcut in the Frappe CRM Workspace -#: crm/fcrm/workspace/frappe_crm/frappe_crm.json +#. Label of a shortcut in the Jingrow CRM Workspace +#: crm/fcrm/workspace/jingrow_crm/jingrow_crm.json #: frontend/src/pages/MobileOrganization.vue:205 #: frontend/src/pages/Organization.vue:234 msgid "Organizations" @@ -4196,8 +4196,8 @@ msgstr "" msgid "Other features" msgstr "" -#. Label of the organization_tab (Tab Break) field in DocType 'CRM Lead' -#: crm/fcrm/doctype/crm_lead/crm_lead.json +#. Label of the organization_tab (Tab Break) field in PageType 'CRM Lead' +#: crm/fcrm/pagetype/crm_lead/crm_lead.json msgid "Others" msgstr "" @@ -4205,13 +4205,13 @@ msgstr "" msgid "Outbound Call" msgstr "" -#. Option for the 'Type' (Select) field in DocType 'CRM Call Log' -#: crm/fcrm/doctype/crm_call_log/crm_call_log.json +#. Option for the 'Type' (Select) field in PageType 'CRM Call Log' +#: crm/fcrm/pagetype/crm_call_log/crm_call_log.json msgid "Outgoing" msgstr "" -#. Label of the log_owner (Link) field in DocType 'CRM Status Change Log' -#: crm/fcrm/doctype/crm_status_change_log/crm_status_change_log.json +#. Label of the log_owner (Link) field in PageType 'CRM Status Change Log' +#: crm/fcrm/pagetype/crm_status_change_log/crm_status_change_log.json msgid "Owner" msgstr "" @@ -4219,8 +4219,8 @@ msgstr "" msgid "Owner: {0}" msgstr "" -#. Label of the parent_crm_territory (Link) field in DocType 'CRM Territory' -#: crm/fcrm/doctype/crm_territory/crm_territory.json +#. Label of the parent_crm_territory (Link) field in PageType 'CRM Territory' +#: crm/fcrm/pagetype/crm_territory/crm_territory.json msgid "Parent CRM Territory" msgstr "" @@ -4251,8 +4251,8 @@ msgstr "" msgid "Payment Reminder from Frappé - (#{{ name }})" msgstr "" -#. Option for the 'Status' (Select) field in DocType 'CRM Invitation' -#: crm/fcrm/doctype/crm_invitation/crm_invitation.json +#. Option for the 'Status' (Select) field in PageType 'CRM Invitation' +#: crm/fcrm/pagetype/crm_invitation/crm_invitation.json msgid "Pending" msgstr "" @@ -4264,10 +4264,10 @@ msgstr "" msgid "Period" msgstr "" -#. Label of the person_section (Section Break) field in DocType 'CRM Deal' -#. Label of the person_tab (Tab Break) field in DocType 'CRM Lead' -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_lead/crm_lead.json +#. Label of the person_section (Section Break) field in PageType 'CRM Deal' +#. Label of the person_tab (Tab Break) field in PageType 'CRM Lead' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_lead/crm_lead.json msgid "Person" msgstr "" @@ -4275,19 +4275,19 @@ msgstr "" msgid "Personal Settings" msgstr "" -#. Label of the phone (Data) field in DocType 'CRM Contacts' -#. Label of the phone (Data) field in DocType 'CRM Lead' -#. Option for the 'Device' (Select) field in DocType 'CRM Telephony Agent' -#: crm/fcrm/doctype/crm_contacts/crm_contacts.json -#: crm/fcrm/doctype/crm_lead/crm_lead.json -#: crm/fcrm/doctype/crm_telephony_agent/crm_telephony_agent.json +#. Label of the phone (Data) field in PageType 'CRM Contacts' +#. Label of the phone (Data) field in PageType 'CRM Lead' +#. Option for the 'Device' (Select) field in PageType 'CRM Telephony Agent' +#: crm/fcrm/pagetype/crm_contacts/crm_contacts.json +#: crm/fcrm/pagetype/crm_lead/crm_lead.json +#: crm/fcrm/pagetype/crm_telephony_agent/crm_telephony_agent.json #: frontend/src/pages/MobileOrganization.vue:495 #: frontend/src/pages/Organization.vue:516 msgid "Phone" msgstr "Telefono" -#. Label of the phone_nos (Table) field in DocType 'CRM Telephony Agent' -#: crm/fcrm/doctype/crm_telephony_agent/crm_telephony_agent.json +#. Label of the phone_nos (Table) field in PageType 'CRM Telephony Agent' +#: crm/fcrm/pagetype/crm_telephony_agent/crm_telephony_agent.json msgid "Phone Numbers" msgstr "" @@ -4295,8 +4295,8 @@ msgstr "" msgid "Pin View" msgstr "" -#. Label of the pinned (Check) field in DocType 'CRM View Settings' -#: crm/fcrm/doctype/crm_view_settings/crm_view_settings.json +#. Label of the pinned (Check) field in PageType 'CRM View Settings' +#: crm/fcrm/pagetype/crm_view_settings/crm_view_settings.json msgid "Pinned" msgstr "" @@ -4346,7 +4346,7 @@ msgstr "" msgid "Please select an existing organization" msgstr "" -#: crm/fcrm/doctype/helpdesk_crm_settings/helpdesk_crm_settings.py:126 +#: crm/fcrm/pagetype/helpdesk_crm_settings/helpdesk_crm_settings.py:126 msgid "Please set Email Address" msgstr "" @@ -4354,18 +4354,18 @@ msgstr "" msgid "Please setup Exotel intergration" msgstr "" -#: crm/fcrm/doctype/crm_deal/crm_deal.py:181 +#: crm/fcrm/pagetype/crm_deal/crm_deal.py:181 msgid "Please specify a reason for losing the deal." msgstr "" -#: crm/fcrm/doctype/crm_deal/crm_deal.py:183 +#: crm/fcrm/pagetype/crm_deal/crm_deal.py:183 msgid "Please specify the reason for losing the deal." msgstr "" -#. Label of the position (Int) field in DocType 'CRM Deal Status' -#. Label of the position (Int) field in DocType 'CRM Lead Status' -#: crm/fcrm/doctype/crm_deal_status/crm_deal_status.json -#: crm/fcrm/doctype/crm_lead_status/crm_lead_status.json +#. Label of the position (Int) field in PageType 'CRM Deal Status' +#. Label of the position (Int) field in PageType 'CRM Lead Status' +#: crm/fcrm/pagetype/crm_deal_status/crm_deal_status.json +#: crm/fcrm/pagetype/crm_lead_status/crm_lead_status.json msgid "Position" msgstr "" @@ -4373,18 +4373,18 @@ msgstr "" msgid "Primary" msgstr "" -#. Label of the email (Data) field in DocType 'CRM Deal' -#: crm/fcrm/doctype/crm_deal/crm_deal.json +#. Label of the email (Data) field in PageType 'CRM Deal' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json msgid "Primary Email" msgstr "" -#. Label of the mobile_no (Data) field in DocType 'CRM Deal' -#: crm/fcrm/doctype/crm_deal/crm_deal.json +#. Label of the mobile_no (Data) field in PageType 'CRM Deal' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json msgid "Primary Mobile No" msgstr "" -#. Label of the phone (Data) field in DocType 'CRM Deal' -#: crm/fcrm/doctype/crm_deal/crm_deal.json +#. Label of the phone (Data) field in PageType 'CRM Deal' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json msgid "Primary Phone" msgstr "" @@ -4392,57 +4392,57 @@ msgstr "" msgid "Primary contact set" msgstr "" -#. Label of the priorities (Table) field in DocType 'CRM Service Level +#. Label of the priorities (Table) field in PageType 'CRM Service Level #. Agreement' -#: crm/fcrm/doctype/crm_service_level_agreement/crm_service_level_agreement.json +#: crm/fcrm/pagetype/crm_service_level_agreement/crm_service_level_agreement.json msgid "Priorities" msgstr "" -#. Label of the priority (Link) field in DocType 'CRM Service Level Priority' -#. Label of the priority (Select) field in DocType 'CRM Task' -#: crm/fcrm/doctype/crm_service_level_priority/crm_service_level_priority.json -#: crm/fcrm/doctype/crm_task/crm_task.json +#. Label of the priority (Link) field in PageType 'CRM Service Level Priority' +#. Label of the priority (Select) field in PageType 'CRM Task' +#: crm/fcrm/pagetype/crm_service_level_priority/crm_service_level_priority.json +#: crm/fcrm/pagetype/crm_task/crm_task.json #: frontend/src/components/Settings/AssignmentRules/AssignmentRuleView.vue:64 #: frontend/src/components/Settings/AssignmentRules/AssignmentRulesList.vue:20 msgid "Priority" msgstr "Priorità" -#. Label of the private (Check) field in DocType 'CRM Dashboard' -#: crm/fcrm/doctype/crm_dashboard/crm_dashboard.json +#. Label of the private (Check) field in PageType 'CRM Dashboard' +#: crm/fcrm/pagetype/crm_dashboard/crm_dashboard.json #: frontend/src/components/FilesUploader/FilesUploaderArea.vue:89 msgid "Private" msgstr "Privato" -#. Label of the probability (Percent) field in DocType 'CRM Deal' -#. Label of the probability (Percent) field in DocType 'CRM Deal Status' -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_deal_status/crm_deal_status.json +#. Label of the probability (Percent) field in PageType 'CRM Deal' +#. Label of the probability (Percent) field in PageType 'CRM Deal Status' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_deal_status/crm_deal_status.json msgid "Probability" msgstr "" -#. Label of the product_code (Link) field in DocType 'CRM Products' -#: crm/fcrm/doctype/crm_products/crm_products.json +#. Label of the product_code (Link) field in PageType 'CRM Products' +#: crm/fcrm/pagetype/crm_products/crm_products.json msgid "Product" msgstr "" -#. Label of the product_code (Data) field in DocType 'CRM Product' -#: crm/fcrm/doctype/crm_product/crm_product.json +#. Label of the product_code (Data) field in PageType 'CRM Product' +#: crm/fcrm/pagetype/crm_product/crm_product.json msgid "Product Code" msgstr "" -#. Label of the product_name (Data) field in DocType 'CRM Product' -#. Label of the product_name (Data) field in DocType 'CRM Products' -#: crm/fcrm/doctype/crm_product/crm_product.json -#: crm/fcrm/doctype/crm_products/crm_products.json +#. Label of the product_name (Data) field in PageType 'CRM Product' +#. Label of the product_name (Data) field in PageType 'CRM Products' +#: crm/fcrm/pagetype/crm_product/crm_product.json +#: crm/fcrm/pagetype/crm_products/crm_products.json msgid "Product Name" msgstr "" -#. Label of the products_tab (Tab Break) field in DocType 'CRM Deal' -#. Label of the products (Table) field in DocType 'CRM Deal' -#. Label of the products_tab (Tab Break) field in DocType 'CRM Lead' -#. Label of the products (Table) field in DocType 'CRM Lead' -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_lead/crm_lead.json +#. Label of the products_tab (Tab Break) field in PageType 'CRM Deal' +#. Label of the products (Table) field in PageType 'CRM Deal' +#. Label of the products_tab (Tab Break) field in PageType 'CRM Lead' +#. Label of the products (Table) field in PageType 'CRM Lead' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_lead/crm_lead.json msgid "Products" msgstr "" @@ -4459,8 +4459,8 @@ msgstr "" msgid "Projected vs actual revenue based on deal probability" msgstr "" -#. Label of the public (Check) field in DocType 'CRM View Settings' -#: crm/fcrm/doctype/crm_view_settings/crm_view_settings.json +#. Label of the public (Check) field in PageType 'CRM View Settings' +#: crm/fcrm/pagetype/crm_view_settings/crm_view_settings.json msgid "Public" msgstr "Pubblico" @@ -4472,23 +4472,23 @@ msgstr "" msgid "Public view" msgstr "" -#. Label of the qty (Float) field in DocType 'CRM Products' -#: crm/fcrm/doctype/crm_products/crm_products.json +#. Label of the qty (Float) field in PageType 'CRM Products' +#: crm/fcrm/pagetype/crm_products/crm_products.json msgid "Quantity" msgstr "" -#. Option for the 'Status' (Select) field in DocType 'CRM Call Log' -#: crm/fcrm/doctype/crm_call_log/crm_call_log.json +#. Option for the 'Status' (Select) field in PageType 'CRM Call Log' +#: crm/fcrm/pagetype/crm_call_log/crm_call_log.json msgid "Queued" msgstr "" -#. Option for the 'Type' (Select) field in DocType 'CRM Fields Layout' -#: crm/fcrm/doctype/crm_fields_layout/crm_fields_layout.json +#. Option for the 'Type' (Select) field in PageType 'CRM Fields Layout' +#: crm/fcrm/pagetype/crm_fields_layout/crm_fields_layout.json msgid "Quick Entry" msgstr "" -#. Option for the 'Type' (Select) field in DocType 'CRM Global Settings' -#: crm/fcrm/doctype/crm_global_settings/crm_global_settings.json +#. Option for the 'Type' (Select) field in PageType 'CRM Global Settings' +#: crm/fcrm/pagetype/crm_global_settings/crm_global_settings.json msgid "Quick Filters" msgstr "" @@ -4500,13 +4500,13 @@ msgstr "" msgid "Quick entry layout" msgstr "" -#. Label of the rate (Currency) field in DocType 'CRM Products' -#: crm/fcrm/doctype/crm_products/crm_products.json +#. Label of the rate (Currency) field in PageType 'CRM Products' +#: crm/fcrm/pagetype/crm_products/crm_products.json msgid "Rate" msgstr "" -#. Label of the read (Check) field in DocType 'CRM Notification' -#: crm/fcrm/doctype/crm_notification/crm_notification.json +#. Label of the read (Check) field in PageType 'CRM Notification' +#: crm/fcrm/pagetype/crm_notification/crm_notification.json msgid "Read" msgstr "Leggere" @@ -4514,48 +4514,48 @@ msgstr "Leggere" msgid "Reason" msgstr "" -#. Label of the record_calls (Check) field in DocType 'CRM Twilio Settings' -#: crm/fcrm/doctype/crm_twilio_settings/crm_twilio_settings.json +#. Label of the record_calls (Check) field in PageType 'CRM Twilio Settings' +#: crm/fcrm/pagetype/crm_twilio_settings/crm_twilio_settings.json msgid "Record Calls" msgstr "" -#. Label of the record_call (Check) field in DocType 'CRM Exotel Settings' -#: crm/fcrm/doctype/crm_exotel_settings/crm_exotel_settings.json +#. Label of the record_call (Check) field in PageType 'CRM Exotel Settings' +#: crm/fcrm/pagetype/crm_exotel_settings/crm_exotel_settings.json msgid "Record Outgoing Calls" msgstr "" -#. Label of the recording_url (Data) field in DocType 'CRM Call Log' -#: crm/fcrm/doctype/crm_call_log/crm_call_log.json +#. Label of the recording_url (Data) field in PageType 'CRM Call Log' +#: crm/fcrm/pagetype/crm_call_log/crm_call_log.json msgid "Recording URL" msgstr "" -#. Label of the reference_name (Dynamic Link) field in DocType 'CRM +#. Label of the reference_name (Dynamic Link) field in PageType 'CRM #. Notification' -#. Label of the reference_docname (Dynamic Link) field in DocType 'CRM Task' -#. Label of the reference_docname (Dynamic Link) field in DocType 'FCRM Note' -#: crm/fcrm/doctype/crm_notification/crm_notification.json -#: crm/fcrm/doctype/crm_task/crm_task.json -#: crm/fcrm/doctype/fcrm_note/fcrm_note.json -msgid "Reference Doc" +#. Label of the reference_docname (Dynamic Link) field in PageType 'CRM Task' +#. Label of the reference_docname (Dynamic Link) field in PageType 'FCRM Note' +#: crm/fcrm/pagetype/crm_notification/crm_notification.json +#: crm/fcrm/pagetype/crm_task/crm_task.json +#: crm/fcrm/pagetype/fcrm_note/fcrm_note.json +msgid "Reference Pg" msgstr "" -#. Label of the reference_doctype (Link) field in DocType 'CRM Notification' -#: crm/fcrm/doctype/crm_notification/crm_notification.json -msgid "Reference Doctype" +#. Label of the reference_pagetype (Link) field in PageType 'CRM Notification' +#: crm/fcrm/pagetype/crm_notification/crm_notification.json +msgid "Reference Pagetype" msgstr "" -#. Label of the reference_doctype (Link) field in DocType 'CRM Call Log' -#. Label of the reference_doctype (Link) field in DocType 'CRM Task' -#. Label of the reference_doctype (Link) field in DocType 'FCRM Note' -#: crm/fcrm/doctype/crm_call_log/crm_call_log.json -#: crm/fcrm/doctype/crm_task/crm_task.json -#: crm/fcrm/doctype/fcrm_note/fcrm_note.json +#. Label of the reference_pagetype (Link) field in PageType 'CRM Call Log' +#. Label of the reference_pagetype (Link) field in PageType 'CRM Task' +#. Label of the reference_pagetype (Link) field in PageType 'FCRM Note' +#: crm/fcrm/pagetype/crm_call_log/crm_call_log.json +#: crm/fcrm/pagetype/crm_task/crm_task.json +#: crm/fcrm/pagetype/fcrm_note/fcrm_note.json msgid "Reference Document Type" msgstr "Riferimento Tipo di documento" -#. Label of the reference_docname (Dynamic Link) field in DocType 'CRM Call +#. Label of the reference_docname (Dynamic Link) field in PageType 'CRM Call #. Log' -#: crm/fcrm/doctype/crm_call_log/crm_call_log.json +#: crm/fcrm/pagetype/crm_call_log/crm_call_log.json msgid "Reference Name" msgstr "Nome di Riferimento" @@ -4625,8 +4625,8 @@ msgstr "" msgid "Report an Issue" msgstr "" -#. Option for the 'Type' (Select) field in DocType 'CRM Fields Layout' -#: crm/fcrm/doctype/crm_fields_layout/crm_fields_layout.json +#. Option for the 'Type' (Select) field in PageType 'CRM Fields Layout' +#: crm/fcrm/pagetype/crm_fields_layout/crm_fields_layout.json msgid "Required Fields" msgstr "" @@ -4642,7 +4642,7 @@ msgstr "" msgid "Reset Changes" msgstr "" -#: crm/fcrm/doctype/erpnext_crm_settings/erpnext_crm_settings.js:7 +#: crm/fcrm/pagetype/erpnext_crm_settings/erpnext_crm_settings.js:7 msgid "Reset ERPNext Form Script" msgstr "" @@ -4654,35 +4654,35 @@ msgstr "" msgid "Reset to default" msgstr "" -#. Label of the response_by (Datetime) field in DocType 'CRM Deal' -#. Label of the response_by (Datetime) field in DocType 'CRM Lead' -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_lead/crm_lead.json +#. Label of the response_by (Datetime) field in PageType 'CRM Deal' +#. Label of the response_by (Datetime) field in PageType 'CRM Lead' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_lead/crm_lead.json msgid "Response By" msgstr "" -#. Label of the response_details_section (Section Break) field in DocType 'CRM +#. Label of the response_details_section (Section Break) field in PageType 'CRM #. Deal' -#. Label of the response_details_section (Section Break) field in DocType 'CRM +#. Label of the response_details_section (Section Break) field in PageType 'CRM #. Lead' -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_lead/crm_lead.json +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_lead/crm_lead.json msgid "Response Details" msgstr "" -#. Label of the section_break_ufaf (Section Break) field in DocType 'CRM +#. Label of the section_break_ufaf (Section Break) field in PageType 'CRM #. Service Level Agreement' -#: crm/fcrm/doctype/crm_service_level_agreement/crm_service_level_agreement.json +#: crm/fcrm/pagetype/crm_service_level_agreement/crm_service_level_agreement.json msgid "Response and Follow Up" msgstr "" -#: crm/fcrm/doctype/fcrm_settings/fcrm_settings.js:14 +#: crm/fcrm/pagetype/fcrm_settings/fcrm_settings.js:14 msgid "Restore" msgstr "" -#. Label of the restore_defaults (Button) field in DocType 'FCRM Settings' -#: crm/fcrm/doctype/fcrm_settings/fcrm_settings.js:13 -#: crm/fcrm/doctype/fcrm_settings/fcrm_settings.json +#. Label of the restore_defaults (Button) field in PageType 'FCRM Settings' +#: crm/fcrm/pagetype/fcrm_settings/fcrm_settings.js:13 +#: crm/fcrm/pagetype/fcrm_settings/fcrm_settings.json msgid "Restore Defaults" msgstr "" @@ -4699,13 +4699,13 @@ msgstr "" msgid "Rich Text" msgstr "" -#. Label of the rgt (Int) field in DocType 'CRM Territory' -#: crm/fcrm/doctype/crm_territory/crm_territory.json +#. Label of the rgt (Int) field in PageType 'CRM Territory' +#: crm/fcrm/pagetype/crm_territory/crm_territory.json msgid "Right" msgstr "Destra" -#. Option for the 'Status' (Select) field in DocType 'CRM Call Log' -#: crm/fcrm/doctype/crm_call_log/crm_call_log.json +#. Option for the 'Status' (Select) field in PageType 'CRM Call Log' +#: crm/fcrm/pagetype/crm_call_log/crm_call_log.json msgid "Ringing" msgstr "" @@ -4714,55 +4714,55 @@ msgstr "" msgid "Ringing..." msgstr "" -#. Label of the role (Select) field in DocType 'CRM Invitation' -#: crm/fcrm/doctype/crm_invitation/crm_invitation.json +#. Label of the role (Select) field in PageType 'CRM Invitation' +#: crm/fcrm/pagetype/crm_invitation/crm_invitation.json #: frontend/src/components/Modals/AddExistingUserModal.vue:46 msgid "Role" msgstr "Ruolo" -#. Option for the 'Type' (Select) field in DocType 'CRM Dropdown Item' -#. Label of the route (Data) field in DocType 'CRM Dropdown Item' -#: crm/fcrm/doctype/crm_dropdown_item/crm_dropdown_item.json +#. Option for the 'Type' (Select) field in PageType 'CRM Dropdown Item' +#. Label of the route (Data) field in PageType 'CRM Dropdown Item' +#: crm/fcrm/pagetype/crm_dropdown_item/crm_dropdown_item.json msgid "Route" msgstr "Percorso" -#. Label of the route_name (Data) field in DocType 'CRM View Settings' -#: crm/fcrm/doctype/crm_view_settings/crm_view_settings.json +#. Label of the route_name (Data) field in PageType 'CRM View Settings' +#: crm/fcrm/pagetype/crm_view_settings/crm_view_settings.json msgid "Route Name" msgstr "" -#. Label of the rows (Code) field in DocType 'CRM View Settings' -#: crm/fcrm/doctype/crm_view_settings/crm_view_settings.json +#. Label of the rows (Code) field in PageType 'CRM View Settings' +#: crm/fcrm/pagetype/crm_view_settings/crm_view_settings.json msgid "Rows" msgstr "" -#. Label of the sla_tab (Tab Break) field in DocType 'CRM Deal' -#. Label of the sla (Link) field in DocType 'CRM Deal' -#. Label of the sla_tab (Tab Break) field in DocType 'CRM Lead' -#. Label of the sla (Link) field in DocType 'CRM Lead' -#. Label of a shortcut in the Frappe CRM Workspace -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_lead/crm_lead.json -#: crm/fcrm/workspace/frappe_crm/frappe_crm.json +#. Label of the sla_tab (Tab Break) field in PageType 'CRM Deal' +#. Label of the sla (Link) field in PageType 'CRM Deal' +#. Label of the sla_tab (Tab Break) field in PageType 'CRM Lead' +#. Label of the sla (Link) field in PageType 'CRM Lead' +#. Label of a shortcut in the Jingrow CRM Workspace +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_lead/crm_lead.json +#: crm/fcrm/workspace/jingrow_crm/jingrow_crm.json msgid "SLA" msgstr "" -#. Label of the sla_creation (Datetime) field in DocType 'CRM Deal' -#. Label of the sla_creation (Datetime) field in DocType 'CRM Lead' -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_lead/crm_lead.json +#. Label of the sla_creation (Datetime) field in PageType 'CRM Deal' +#. Label of the sla_creation (Datetime) field in PageType 'CRM Lead' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_lead/crm_lead.json msgid "SLA Creation" msgstr "" -#. Label of the sla_name (Data) field in DocType 'CRM Service Level Agreement' -#: crm/fcrm/doctype/crm_service_level_agreement/crm_service_level_agreement.json +#. Label of the sla_name (Data) field in PageType 'CRM Service Level Agreement' +#: crm/fcrm/pagetype/crm_service_level_agreement/crm_service_level_agreement.json msgid "SLA Name" msgstr "" -#. Label of the sla_status (Select) field in DocType 'CRM Deal' -#. Label of the sla_status (Select) field in DocType 'CRM Lead' -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_lead/crm_lead.json +#. Label of the sla_status (Select) field in PageType 'CRM Deal' +#. Label of the sla_status (Select) field in PageType 'CRM Lead' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_lead/crm_lead.json msgid "SLA Status" msgstr "" @@ -4771,57 +4771,57 @@ msgid "SUBJECT" msgstr "" #. Name of a role -#. Option for the 'Role' (Select) field in DocType 'CRM Invitation' -#: crm/fcrm/doctype/crm_call_log/crm_call_log.json -#: crm/fcrm/doctype/crm_communication_status/crm_communication_status.json -#: crm/fcrm/doctype/crm_dashboard/crm_dashboard.json -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_deal_status/crm_deal_status.json -#: crm/fcrm/doctype/crm_exotel_settings/crm_exotel_settings.json -#: crm/fcrm/doctype/crm_form_script/crm_form_script.json -#: crm/fcrm/doctype/crm_global_settings/crm_global_settings.json -#: crm/fcrm/doctype/crm_holiday_list/crm_holiday_list.json -#: crm/fcrm/doctype/crm_industry/crm_industry.json -#: crm/fcrm/doctype/crm_invitation/crm_invitation.json -#: crm/fcrm/doctype/crm_lead/crm_lead.json -#: crm/fcrm/doctype/crm_lead_source/crm_lead_source.json -#: crm/fcrm/doctype/crm_lead_status/crm_lead_status.json -#: crm/fcrm/doctype/crm_lost_reason/crm_lost_reason.json -#: crm/fcrm/doctype/crm_notification/crm_notification.json -#: crm/fcrm/doctype/crm_organization/crm_organization.json -#: crm/fcrm/doctype/crm_service_level_agreement/crm_service_level_agreement.json -#: crm/fcrm/doctype/crm_task/crm_task.json -#: crm/fcrm/doctype/crm_territory/crm_territory.json -#: crm/fcrm/doctype/crm_twilio_settings/crm_twilio_settings.json -#: crm/fcrm/doctype/crm_view_settings/crm_view_settings.json -#: crm/fcrm/doctype/erpnext_crm_settings/erpnext_crm_settings.json -#: crm/fcrm/doctype/fcrm_note/fcrm_note.json -#: crm/fcrm/doctype/fcrm_settings/fcrm_settings.json -#: crm/fcrm/doctype/helpdesk_crm_settings/helpdesk_crm_settings.json +#. Option for the 'Role' (Select) field in PageType 'CRM Invitation' +#: crm/fcrm/pagetype/crm_call_log/crm_call_log.json +#: crm/fcrm/pagetype/crm_communication_status/crm_communication_status.json +#: crm/fcrm/pagetype/crm_dashboard/crm_dashboard.json +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_deal_status/crm_deal_status.json +#: crm/fcrm/pagetype/crm_exotel_settings/crm_exotel_settings.json +#: crm/fcrm/pagetype/crm_form_script/crm_form_script.json +#: crm/fcrm/pagetype/crm_global_settings/crm_global_settings.json +#: crm/fcrm/pagetype/crm_holiday_list/crm_holiday_list.json +#: crm/fcrm/pagetype/crm_industry/crm_industry.json +#: crm/fcrm/pagetype/crm_invitation/crm_invitation.json +#: crm/fcrm/pagetype/crm_lead/crm_lead.json +#: crm/fcrm/pagetype/crm_lead_source/crm_lead_source.json +#: crm/fcrm/pagetype/crm_lead_status/crm_lead_status.json +#: crm/fcrm/pagetype/crm_lost_reason/crm_lost_reason.json +#: crm/fcrm/pagetype/crm_notification/crm_notification.json +#: crm/fcrm/pagetype/crm_organization/crm_organization.json +#: crm/fcrm/pagetype/crm_service_level_agreement/crm_service_level_agreement.json +#: crm/fcrm/pagetype/crm_task/crm_task.json +#: crm/fcrm/pagetype/crm_territory/crm_territory.json +#: crm/fcrm/pagetype/crm_twilio_settings/crm_twilio_settings.json +#: crm/fcrm/pagetype/crm_view_settings/crm_view_settings.json +#: crm/fcrm/pagetype/erpnext_crm_settings/erpnext_crm_settings.json +#: crm/fcrm/pagetype/fcrm_note/fcrm_note.json +#: crm/fcrm/pagetype/fcrm_settings/fcrm_settings.json +#: crm/fcrm/pagetype/helpdesk_crm_settings/helpdesk_crm_settings.json msgid "Sales Manager" msgstr "Responsabile Vendite" #. Name of a role -#. Option for the 'Role' (Select) field in DocType 'CRM Invitation' -#: crm/fcrm/doctype/crm_call_log/crm_call_log.json -#: crm/fcrm/doctype/crm_communication_status/crm_communication_status.json -#: crm/fcrm/doctype/crm_dashboard/crm_dashboard.json -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_deal_status/crm_deal_status.json -#: crm/fcrm/doctype/crm_global_settings/crm_global_settings.json -#: crm/fcrm/doctype/crm_holiday_list/crm_holiday_list.json -#: crm/fcrm/doctype/crm_industry/crm_industry.json -#: crm/fcrm/doctype/crm_invitation/crm_invitation.json -#: crm/fcrm/doctype/crm_lead/crm_lead.json -#: crm/fcrm/doctype/crm_lead_source/crm_lead_source.json -#: crm/fcrm/doctype/crm_lead_status/crm_lead_status.json -#: crm/fcrm/doctype/crm_lost_reason/crm_lost_reason.json -#: crm/fcrm/doctype/crm_notification/crm_notification.json -#: crm/fcrm/doctype/crm_organization/crm_organization.json -#: crm/fcrm/doctype/crm_task/crm_task.json -#: crm/fcrm/doctype/crm_territory/crm_territory.json -#: crm/fcrm/doctype/crm_view_settings/crm_view_settings.json -#: crm/fcrm/doctype/fcrm_note/fcrm_note.json +#. Option for the 'Role' (Select) field in PageType 'CRM Invitation' +#: crm/fcrm/pagetype/crm_call_log/crm_call_log.json +#: crm/fcrm/pagetype/crm_communication_status/crm_communication_status.json +#: crm/fcrm/pagetype/crm_dashboard/crm_dashboard.json +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_deal_status/crm_deal_status.json +#: crm/fcrm/pagetype/crm_global_settings/crm_global_settings.json +#: crm/fcrm/pagetype/crm_holiday_list/crm_holiday_list.json +#: crm/fcrm/pagetype/crm_industry/crm_industry.json +#: crm/fcrm/pagetype/crm_invitation/crm_invitation.json +#: crm/fcrm/pagetype/crm_lead/crm_lead.json +#: crm/fcrm/pagetype/crm_lead_source/crm_lead_source.json +#: crm/fcrm/pagetype/crm_lead_status/crm_lead_status.json +#: crm/fcrm/pagetype/crm_lost_reason/crm_lost_reason.json +#: crm/fcrm/pagetype/crm_notification/crm_notification.json +#: crm/fcrm/pagetype/crm_organization/crm_organization.json +#: crm/fcrm/pagetype/crm_task/crm_task.json +#: crm/fcrm/pagetype/crm_territory/crm_territory.json +#: crm/fcrm/pagetype/crm_view_settings/crm_view_settings.json +#: crm/fcrm/pagetype/fcrm_note/fcrm_note.json #: frontend/src/components/Modals/AddExistingUserModal.vue:92 #: frontend/src/components/Settings/InviteUserPage.vue:156 #: frontend/src/components/Settings/InviteUserPage.vue:163 @@ -4845,17 +4845,17 @@ msgstr "" msgid "Salesperson" msgstr "" -#. Label of the salutation (Link) field in DocType 'CRM Deal' -#. Label of the salutation (Link) field in DocType 'CRM Lead' -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_lead/crm_lead.json +#. Label of the salutation (Link) field in PageType 'CRM Deal' +#. Label of the salutation (Link) field in PageType 'CRM Lead' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_lead/crm_lead.json msgid "Salutation" msgstr "" -#. Option for the 'Weekly Off' (Select) field in DocType 'CRM Holiday List' -#. Option for the 'Workday' (Select) field in DocType 'CRM Service Day' -#: crm/fcrm/doctype/crm_holiday_list/crm_holiday_list.json -#: crm/fcrm/doctype/crm_service_day/crm_service_day.json +#. Option for the 'Weekly Off' (Select) field in PageType 'CRM Holiday List' +#. Option for the 'Workday' (Select) field in PageType 'CRM Service Day' +#: crm/fcrm/pagetype/crm_holiday_list/crm_holiday_list.json +#: crm/fcrm/pagetype/crm_service_day/crm_service_day.json msgid "Saturday" msgstr "" @@ -4904,8 +4904,8 @@ msgstr "" msgid "Schedule an event" msgstr "" -#. Label of the script (Code) field in DocType 'CRM Form Script' -#: crm/fcrm/doctype/crm_form_script/crm_form_script.json +#. Label of the script (Code) field in PageType 'CRM Form Script' +#: crm/fcrm/pagetype/crm_form_script/crm_form_script.json msgid "Script" msgstr "Script" @@ -4973,18 +4973,18 @@ msgstr "" msgid "Send invites to" msgstr "" -#. Option for the 'Type' (Select) field in DocType 'CRM Dropdown Item' -#: crm/fcrm/doctype/crm_dropdown_item/crm_dropdown_item.json +#. Option for the 'Type' (Select) field in PageType 'CRM Dropdown Item' +#: crm/fcrm/pagetype/crm_dropdown_item/crm_dropdown_item.json msgid "Separator" msgstr "Separatore" -#. Label of the naming_series (Select) field in DocType 'CRM Lead' -#: crm/fcrm/doctype/crm_lead/crm_lead.json +#. Label of the naming_series (Select) field in PageType 'CRM Lead' +#: crm/fcrm/pagetype/crm_lead/crm_lead.json msgid "Series" msgstr "" -#. Label of the service_provider (Select) field in DocType 'FCRM Settings' -#: crm/fcrm/doctype/fcrm_settings/fcrm_settings.json +#. Label of the service_provider (Select) field in PageType 'FCRM Settings' +#: crm/fcrm/pagetype/fcrm_settings/fcrm_settings.json msgid "Service Provider" msgstr "" @@ -5029,7 +5029,7 @@ msgid "Setting up" msgstr "" #: frontend/src/components/Settings/emailConfig.js:145 -msgid "Setting up Frappe Mail requires you to have an API key and API Secret of your email account. Read more " +msgid "Setting up Jingrow Mail requires you to have an API key and API Secret of your email account. Read more " msgstr "" #: frontend/src/components/Settings/emailConfig.js:97 @@ -5062,8 +5062,8 @@ msgid "Setting up Yandex requires you to enable two factor authentication\n" "\t\t and app specific passwords. Read more " msgstr "" -#. Label of the defaults_tab (Tab Break) field in DocType 'FCRM Settings' -#: crm/fcrm/doctype/fcrm_settings/fcrm_settings.json +#. Label of the defaults_tab (Tab Break) field in PageType 'FCRM Settings' +#: crm/fcrm/pagetype/fcrm_settings/fcrm_settings.json #: frontend/src/components/Layouts/AppSidebar.vue:537 #: frontend/src/components/Settings/Settings.vue:12 msgid "Settings" @@ -5073,7 +5073,7 @@ msgstr "Impostazioni" msgid "Setup Email" msgstr "" -#: crm/fcrm/doctype/fcrm_settings/fcrm_settings.py:199 +#: crm/fcrm/pagetype/fcrm_settings/fcrm_settings.py:199 msgid "Setup the Exchange Rate Provider as 'Exchangerate Host' in settings, as default provider does not support currency conversion for {0} to {1}." msgstr "" @@ -5108,20 +5108,20 @@ msgstr "" msgid "Show preview" msgstr "" -#. Option for the 'Type' (Select) field in DocType 'CRM Fields Layout' -#: crm/fcrm/doctype/crm_fields_layout/crm_fields_layout.json +#. Option for the 'Type' (Select) field in PageType 'CRM Fields Layout' +#: crm/fcrm/pagetype/crm_fields_layout/crm_fields_layout.json msgid "Side Panel" msgstr "" -#. Option for the 'Type' (Select) field in DocType 'CRM Global Settings' -#: crm/fcrm/doctype/crm_global_settings/crm_global_settings.json +#. Option for the 'Type' (Select) field in PageType 'CRM Global Settings' +#: crm/fcrm/pagetype/crm_global_settings/crm_global_settings.json msgid "Sidebar Items" msgstr "Elementi della Barra Laterale" -#. Description of the 'Condition' (Code) field in DocType 'CRM Service Level +#. Description of the 'Condition' (Code) field in PageType 'CRM Service Level #. Agreement' -#: crm/fcrm/doctype/crm_service_level_agreement/crm_service_level_agreement.json -msgid "Simple Python Expression, Example: doc.status == 'Open' and doc.lead_source == 'Ads'" +#: crm/fcrm/pagetype/crm_service_level_agreement/crm_service_level_agreement.json +msgid "Simple Python Expression, Example: pg.status == 'Open' and pg.lead_source == 'Ads'" msgstr "" #: frontend/src/components/AssignTo.vue:83 @@ -5145,16 +5145,16 @@ msgstr "" msgid "Sort" msgstr "" -#. Label of the source (Link) field in DocType 'CRM Deal' -#. Label of the source (Link) field in DocType 'CRM Lead' -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_lead/crm_lead.json +#. Label of the source (Link) field in PageType 'CRM Deal' +#. Label of the source (Link) field in PageType 'CRM Lead' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_lead/crm_lead.json #: frontend/src/components/Modals/EditValueModal.vue:10 msgid "Source" msgstr "Sorgente" -#. Label of the source_name (Data) field in DocType 'CRM Lead Source' -#: crm/fcrm/doctype/crm_lead_source/crm_lead_source.json +#. Label of the source_name (Data) field in PageType 'CRM Lead Source' +#: crm/fcrm/pagetype/crm_lead_source/crm_lead_source.json msgid "Source Name" msgstr "" @@ -5167,12 +5167,12 @@ msgstr "Separatore" msgid "Stage" msgstr "" -#: crm/fcrm/doctype/crm_form_script/crm_form_script.js:15 +#: crm/fcrm/pagetype/crm_form_script/crm_form_script.js:15 msgid "Standard Form Scripts can not be modified, duplicate the Form Script instead." msgstr "" -#. Label of the standard_rate (Currency) field in DocType 'CRM Product' -#: crm/fcrm/doctype/crm_product/crm_product.json +#. Label of the standard_rate (Currency) field in PageType 'CRM Product' +#: crm/fcrm/pagetype/crm_product/crm_product.json msgid "Standard Selling Rate" msgstr "" @@ -5180,18 +5180,18 @@ msgstr "" msgid "Standard Views" msgstr "" -#. Label of the start_date (Date) field in DocType 'CRM Service Level +#. Label of the start_date (Date) field in PageType 'CRM Service Level #. Agreement' -#. Label of the start_date (Date) field in DocType 'CRM Task' -#: crm/fcrm/doctype/crm_service_level_agreement/crm_service_level_agreement.json -#: crm/fcrm/doctype/crm_task/crm_task.json +#. Label of the start_date (Date) field in PageType 'CRM Task' +#: crm/fcrm/pagetype/crm_service_level_agreement/crm_service_level_agreement.json +#: crm/fcrm/pagetype/crm_task/crm_task.json msgid "Start Date" msgstr "" -#. Label of the start_time (Datetime) field in DocType 'CRM Call Log' -#. Label of the start_time (Time) field in DocType 'CRM Service Day' -#: crm/fcrm/doctype/crm_call_log/crm_call_log.json -#: crm/fcrm/doctype/crm_service_day/crm_service_day.json +#. Label of the start_time (Datetime) field in PageType 'CRM Call Log' +#. Label of the start_time (Time) field in PageType 'CRM Service Day' +#: crm/fcrm/pagetype/crm_call_log/crm_call_log.json +#: crm/fcrm/pagetype/crm_service_day/crm_service_day.json #: frontend/src/components/Calendar/CalendarEventPanel.vue:234 #: frontend/src/components/Modals/EventModal.vue:103 msgid "Start Time" @@ -5205,32 +5205,32 @@ msgstr "" msgid "Start with sample 10 leads" msgstr "" -#. Label of the status (Select) field in DocType 'CRM Call Log' -#. Label of the status (Data) field in DocType 'CRM Communication Status' -#. Label of the status (Link) field in DocType 'CRM Deal' -#. Label of the deal_status (Data) field in DocType 'CRM Deal Status' -#. Label of the status (Select) field in DocType 'CRM Invitation' -#. Label of the status (Link) field in DocType 'CRM Lead' -#. Label of the lead_status (Data) field in DocType 'CRM Lead Status' -#. Label of the status (Select) field in DocType 'CRM Task' -#: crm/fcrm/doctype/crm_call_log/crm_call_log.json -#: crm/fcrm/doctype/crm_communication_status/crm_communication_status.json -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_deal_status/crm_deal_status.json -#: crm/fcrm/doctype/crm_invitation/crm_invitation.json -#: crm/fcrm/doctype/crm_lead/crm_lead.json -#: crm/fcrm/doctype/crm_lead_status/crm_lead_status.json -#: crm/fcrm/doctype/crm_task/crm_task.json frontend/src/pages/Contact.vue:505 +#. Label of the status (Select) field in PageType 'CRM Call Log' +#. Label of the status (Data) field in PageType 'CRM Communication Status' +#. Label of the status (Link) field in PageType 'CRM Deal' +#. Label of the deal_status (Data) field in PageType 'CRM Deal Status' +#. Label of the status (Select) field in PageType 'CRM Invitation' +#. Label of the status (Link) field in PageType 'CRM Lead' +#. Label of the lead_status (Data) field in PageType 'CRM Lead Status' +#. Label of the status (Select) field in PageType 'CRM Task' +#: crm/fcrm/pagetype/crm_call_log/crm_call_log.json +#: crm/fcrm/pagetype/crm_communication_status/crm_communication_status.json +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_deal_status/crm_deal_status.json +#: crm/fcrm/pagetype/crm_invitation/crm_invitation.json +#: crm/fcrm/pagetype/crm_lead/crm_lead.json +#: crm/fcrm/pagetype/crm_lead_status/crm_lead_status.json +#: crm/fcrm/pagetype/crm_task/crm_task.json frontend/src/pages/Contact.vue:505 #: frontend/src/pages/MobileContact.vue:513 #: frontend/src/pages/MobileOrganization.vue:457 #: frontend/src/pages/Organization.vue:478 msgid "Status" msgstr "Stato" -#. Label of the status_change_log (Table) field in DocType 'CRM Deal' -#. Label of the status_change_log (Table) field in DocType 'CRM Lead' -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_lead/crm_lead.json +#. Label of the status_change_log (Table) field in PageType 'CRM Deal' +#. Label of the status_change_log (Table) field in PageType 'CRM Lead' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_lead/crm_lead.json msgid "Status Change Log" msgstr "" @@ -5239,8 +5239,8 @@ msgstr "" msgid "Status is required" msgstr "" -#. Label of the subdomain (Data) field in DocType 'CRM Exotel Settings' -#: crm/fcrm/doctype/crm_exotel_settings/crm_exotel_settings.json +#. Label of the subdomain (Data) field in PageType 'CRM Exotel Settings' +#: crm/fcrm/pagetype/crm_exotel_settings/crm_exotel_settings.json msgid "Subdomain" msgstr "Sottodominio" @@ -5258,10 +5258,10 @@ msgstr "" msgid "Subject: {0}" msgstr "" -#. Option for the 'Weekly Off' (Select) field in DocType 'CRM Holiday List' -#. Option for the 'Workday' (Select) field in DocType 'CRM Service Day' -#: crm/fcrm/doctype/crm_holiday_list/crm_holiday_list.json -#: crm/fcrm/doctype/crm_service_day/crm_service_day.json +#. Option for the 'Weekly Off' (Select) field in PageType 'CRM Holiday List' +#. Option for the 'Workday' (Select) field in PageType 'CRM Service Day' +#: crm/fcrm/pagetype/crm_holiday_list/crm_holiday_list.json +#: crm/fcrm/pagetype/crm_service_day/crm_service_day.json msgid "Sunday" msgstr "" @@ -5282,21 +5282,21 @@ msgid "System Configuration" msgstr "" #. Name of a role -#. Option for the 'Role' (Select) field in DocType 'CRM Invitation' -#: crm/fcrm/doctype/crm_dashboard/crm_dashboard.json -#: crm/fcrm/doctype/crm_exotel_settings/crm_exotel_settings.json -#: crm/fcrm/doctype/crm_fields_layout/crm_fields_layout.json -#: crm/fcrm/doctype/crm_global_settings/crm_global_settings.json -#: crm/fcrm/doctype/crm_invitation/crm_invitation.json -#: crm/fcrm/doctype/crm_lead_source/crm_lead_source.json -#: crm/fcrm/doctype/crm_lost_reason/crm_lost_reason.json -#: crm/fcrm/doctype/crm_notification/crm_notification.json -#: crm/fcrm/doctype/crm_product/crm_product.json -#: crm/fcrm/doctype/crm_telephony_agent/crm_telephony_agent.json -#: crm/fcrm/doctype/crm_twilio_settings/crm_twilio_settings.json -#: crm/fcrm/doctype/erpnext_crm_settings/erpnext_crm_settings.json -#: crm/fcrm/doctype/fcrm_settings/fcrm_settings.json -#: crm/fcrm/doctype/helpdesk_crm_settings/helpdesk_crm_settings.json +#. Option for the 'Role' (Select) field in PageType 'CRM Invitation' +#: crm/fcrm/pagetype/crm_dashboard/crm_dashboard.json +#: crm/fcrm/pagetype/crm_exotel_settings/crm_exotel_settings.json +#: crm/fcrm/pagetype/crm_fields_layout/crm_fields_layout.json +#: crm/fcrm/pagetype/crm_global_settings/crm_global_settings.json +#: crm/fcrm/pagetype/crm_invitation/crm_invitation.json +#: crm/fcrm/pagetype/crm_lead_source/crm_lead_source.json +#: crm/fcrm/pagetype/crm_lost_reason/crm_lost_reason.json +#: crm/fcrm/pagetype/crm_notification/crm_notification.json +#: crm/fcrm/pagetype/crm_product/crm_product.json +#: crm/fcrm/pagetype/crm_telephony_agent/crm_telephony_agent.json +#: crm/fcrm/pagetype/crm_twilio_settings/crm_twilio_settings.json +#: crm/fcrm/pagetype/erpnext_crm_settings/erpnext_crm_settings.json +#: crm/fcrm/pagetype/fcrm_settings/fcrm_settings.json +#: crm/fcrm/pagetype/helpdesk_crm_settings/helpdesk_crm_settings.json msgid "System Manager" msgstr "Amministratore di Sistema" @@ -5308,8 +5308,8 @@ msgstr "" msgid "Take a note..." msgstr "" -#. Option for the 'Type' (Select) field in DocType 'CRM Notification' -#: crm/fcrm/doctype/crm_notification/crm_notification.json +#. Option for the 'Type' (Select) field in PageType 'CRM Notification' +#: crm/fcrm/pagetype/crm_notification/crm_notification.json #: frontend/src/components/Layouts/AppSidebar.vue:555 msgid "Task" msgstr "Attività" @@ -5327,8 +5327,8 @@ msgstr "" msgid "Telephony" msgstr "" -#. Label of the telephony_medium (Select) field in DocType 'CRM Call Log' -#: crm/fcrm/doctype/crm_call_log/crm_call_log.json +#. Label of the telephony_medium (Select) field in PageType 'CRM Call Log' +#: crm/fcrm/pagetype/crm_call_log/crm_call_log.json msgid "Telephony Medium" msgstr "" @@ -5364,27 +5364,27 @@ msgstr "" msgid "Template updated successfully" msgstr "" -#. Label of a shortcut in the Frappe CRM Workspace -#: crm/fcrm/workspace/frappe_crm/frappe_crm.json +#. Label of a shortcut in the Jingrow CRM Workspace +#: crm/fcrm/workspace/jingrow_crm/jingrow_crm.json msgid "Territories" msgstr "" -#. Label of the territory (Link) field in DocType 'CRM Deal' -#. Label of the territory (Link) field in DocType 'CRM Lead' -#. Label of the territory (Link) field in DocType 'CRM Organization' -#: crm/api/dashboard.py:1022 crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_lead/crm_lead.json -#: crm/fcrm/doctype/crm_organization/crm_organization.json +#. Label of the territory (Link) field in PageType 'CRM Deal' +#. Label of the territory (Link) field in PageType 'CRM Lead' +#. Label of the territory (Link) field in PageType 'CRM Organization' +#: crm/api/dashboard.py:1022 crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_lead/crm_lead.json +#: crm/fcrm/pagetype/crm_organization/crm_organization.json msgid "Territory" msgstr "" -#. Label of the territory_manager (Link) field in DocType 'CRM Territory' -#: crm/fcrm/doctype/crm_territory/crm_territory.json +#. Label of the territory_manager (Link) field in PageType 'CRM Territory' +#: crm/fcrm/pagetype/crm_territory/crm_territory.json msgid "Territory Manager" msgstr "" -#. Label of the territory_name (Data) field in DocType 'CRM Territory' -#: crm/fcrm/doctype/crm_territory/crm_territory.json +#. Label of the territory_name (Data) field in PageType 'CRM Territory' +#: crm/fcrm/pagetype/crm_territory/crm_territory.json msgid "Territory Name" msgstr "" @@ -5392,22 +5392,22 @@ msgstr "" msgid "Thanks" msgstr "" -#: crm/fcrm/doctype/crm_service_level_agreement/crm_service_level_agreement.py:46 +#: crm/fcrm/pagetype/crm_service_level_agreement/crm_service_level_agreement.py:46 msgid "The Condition '{0}' is invalid: {1}" msgstr "" -#. Description of the 'Exchange Rate' (Float) field in DocType 'CRM Deal' -#: crm/fcrm/doctype/crm_deal/crm_deal.json +#. Description of the 'Exchange Rate' (Float) field in PageType 'CRM Deal' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json msgid "The rate used to convert the deal’s currency to your crm's base currency (set in CRM Settings). It is set once when the currency is first added and doesn't change automatically." msgstr "" -#. Description of the 'Exchange Rate' (Float) field in DocType 'CRM +#. Description of the 'Exchange Rate' (Float) field in PageType 'CRM #. Organization' -#: crm/fcrm/doctype/crm_organization/crm_organization.json +#: crm/fcrm/pagetype/crm_organization/crm_organization.json msgid "The rate used to convert the organization’s currency to your crm's base currency (set in CRM Settings). It is set once when the currency is first added and doesn't change automatically." msgstr "" -#: crm/fcrm/doctype/crm_service_level_agreement/crm_service_level_agreement.js:14 +#: crm/fcrm/pagetype/crm_service_level_agreement/crm_service_level_agreement.js:14 msgid "There can only be one default priority in Priorities table" msgstr "" @@ -5444,14 +5444,14 @@ msgstr "" msgid "This will delete selected items and unlink linked items to it, are you sure?" msgstr "" -#: crm/fcrm/doctype/fcrm_settings/fcrm_settings.js:9 +#: crm/fcrm/pagetype/fcrm_settings/fcrm_settings.js:9 msgid "This will restore (if not exist) all the default statuses, custom fields and layouts. Delete & Restore will delete default layouts and then restore them." msgstr "" -#. Option for the 'Weekly Off' (Select) field in DocType 'CRM Holiday List' -#. Option for the 'Workday' (Select) field in DocType 'CRM Service Day' -#: crm/fcrm/doctype/crm_holiday_list/crm_holiday_list.json -#: crm/fcrm/doctype/crm_service_day/crm_service_day.json +#. Option for the 'Weekly Off' (Select) field in PageType 'CRM Holiday List' +#. Option for the 'Workday' (Select) field in PageType 'CRM Service Day' +#: crm/fcrm/pagetype/crm_holiday_list/crm_holiday_list.json +#: crm/fcrm/pagetype/crm_service_day/crm_service_day.json msgid "Thursday" msgstr "" @@ -5463,18 +5463,18 @@ msgstr "" msgid "Timespan" msgstr "" -#. Label of the title (Data) field in DocType 'CRM Task' -#. Label of the title (Data) field in DocType 'FCRM Note' -#: crm/fcrm/doctype/crm_task/crm_task.json -#: crm/fcrm/doctype/fcrm_note/fcrm_note.json +#. Label of the title (Data) field in PageType 'CRM Task' +#. Label of the title (Data) field in PageType 'FCRM Note' +#: crm/fcrm/pagetype/crm_task/crm_task.json +#: crm/fcrm/pagetype/fcrm_note/fcrm_note.json #: frontend/src/components/Modals/EventModal.vue:43 #: frontend/src/components/Modals/NoteModal.vue:26 #: frontend/src/components/Modals/TaskModal.vue:25 msgid "Title" msgstr "Titolo" -#. Label of the title_field (Data) field in DocType 'CRM View Settings' -#: crm/fcrm/doctype/crm_view_settings/crm_view_settings.json +#. Label of the title_field (Data) field in PageType 'CRM View Settings' +#: crm/fcrm/pagetype/crm_view_settings/crm_view_settings.json #: frontend/src/components/Kanban/KanbanSettings.vue:29 msgid "Title Field" msgstr "" @@ -5484,28 +5484,28 @@ msgstr "" msgid "Title is required" msgstr "" -#. Label of the to (Data) field in DocType 'CRM Call Log' -#. Label of the to (Data) field in DocType 'CRM Status Change Log' -#: crm/fcrm/doctype/crm_call_log/crm_call_log.json -#: crm/fcrm/doctype/crm_status_change_log/crm_status_change_log.json +#. Label of the to (Data) field in PageType 'CRM Call Log' +#. Label of the to (Data) field in PageType 'CRM Status Change Log' +#: crm/fcrm/pagetype/crm_call_log/crm_call_log.json +#: crm/fcrm/pagetype/crm_status_change_log/crm_status_change_log.json #: frontend/src/components/Activities/EmailArea.vue:53 msgid "To" msgstr "A" -#. Label of the to_date (Date) field in DocType 'CRM Holiday List' -#. Label of the to_date (Datetime) field in DocType 'CRM Status Change Log' -#: crm/fcrm/doctype/crm_holiday_list/crm_holiday_list.json -#: crm/fcrm/doctype/crm_status_change_log/crm_status_change_log.json +#. Label of the to_date (Date) field in PageType 'CRM Holiday List' +#. Label of the to_date (Datetime) field in PageType 'CRM Status Change Log' +#: crm/fcrm/pagetype/crm_holiday_list/crm_holiday_list.json +#: crm/fcrm/pagetype/crm_status_change_log/crm_status_change_log.json msgid "To Date" msgstr "" -#. Label of the to_type (Data) field in DocType 'CRM Status Change Log' -#: crm/fcrm/doctype/crm_status_change_log/crm_status_change_log.json +#. Label of the to_type (Data) field in PageType 'CRM Status Change Log' +#: crm/fcrm/pagetype/crm_status_change_log/crm_status_change_log.json msgid "To Type" msgstr "" -#. Label of the to_user (Link) field in DocType 'CRM Notification' -#: crm/fcrm/doctype/crm_notification/crm_notification.json +#. Label of the to_user (Link) field in PageType 'CRM Notification' +#: crm/fcrm/pagetype/crm_notification/crm_notification.json msgid "To User" msgstr "" @@ -5517,8 +5517,8 @@ msgstr "" msgid "Today" msgstr "Oggi" -#. Option for the 'Status' (Select) field in DocType 'CRM Task' -#: crm/fcrm/doctype/crm_task/crm_task.json +#. Option for the 'Status' (Select) field in PageType 'CRM Task' +#: crm/fcrm/pagetype/crm_task/crm_task.json msgid "Todo" msgstr "" @@ -5535,22 +5535,22 @@ msgstr "" msgid "Took a call with John Doe and discussed the new project." msgstr "" -#. Label of the total (Currency) field in DocType 'CRM Deal' -#. Label of the total (Currency) field in DocType 'CRM Lead' -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_lead/crm_lead.json +#. Label of the total (Currency) field in PageType 'CRM Deal' +#. Label of the total (Currency) field in PageType 'CRM Lead' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_lead/crm_lead.json msgid "Total" msgstr "" -#. Label of the total_holidays (Int) field in DocType 'CRM Holiday List' -#: crm/fcrm/doctype/crm_holiday_list/crm_holiday_list.json +#. Label of the total_holidays (Int) field in PageType 'CRM Holiday List' +#: crm/fcrm/pagetype/crm_holiday_list/crm_holiday_list.json msgid "Total Holidays" msgstr "" -#. Description of the 'Net Total' (Currency) field in DocType 'CRM Deal' -#. Description of the 'Net Total' (Currency) field in DocType 'CRM Lead' -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_lead/crm_lead.json +#. Description of the 'Net Total' (Currency) field in PageType 'CRM Deal' +#. Description of the 'Net Total' (Currency) field in PageType 'CRM Lead' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_lead/crm_lead.json msgid "Total after discount" msgstr "" @@ -5571,10 +5571,10 @@ msgstr "" msgid "Total number of won deals based on its closure date" msgstr "" -#. Option for the 'Weekly Off' (Select) field in DocType 'CRM Holiday List' -#. Option for the 'Workday' (Select) field in DocType 'CRM Service Day' -#: crm/fcrm/doctype/crm_holiday_list/crm_holiday_list.json -#: crm/fcrm/doctype/crm_service_day/crm_service_day.json +#. Option for the 'Weekly Off' (Select) field in PageType 'CRM Holiday List' +#. Option for the 'Workday' (Select) field in PageType 'CRM Service Day' +#: crm/fcrm/pagetype/crm_holiday_list/crm_holiday_list.json +#: crm/fcrm/pagetype/crm_service_day/crm_service_day.json msgid "Tuesday" msgstr "" @@ -5582,30 +5582,30 @@ msgstr "" msgid "Turn into a group" msgstr "" -#. Label of the twiml_sid (Data) field in DocType 'CRM Twilio Settings' -#: crm/fcrm/doctype/crm_twilio_settings/crm_twilio_settings.json +#. Label of the twiml_sid (Data) field in PageType 'CRM Twilio Settings' +#: crm/fcrm/pagetype/crm_twilio_settings/crm_twilio_settings.json msgid "TwiML SID" msgstr "" -#. Option for the 'Telephony Medium' (Select) field in DocType 'CRM Call Log' -#. Label of the twilio (Check) field in DocType 'CRM Telephony Agent' -#. Option for the 'Default Medium' (Select) field in DocType 'CRM Telephony +#. Option for the 'Telephony Medium' (Select) field in PageType 'CRM Call Log' +#. Label of the twilio (Check) field in PageType 'CRM Telephony Agent' +#. Option for the 'Default Medium' (Select) field in PageType 'CRM Telephony #. Agent' -#: crm/fcrm/doctype/crm_call_log/crm_call_log.json -#: crm/fcrm/doctype/crm_telephony_agent/crm_telephony_agent.json +#: crm/fcrm/pagetype/crm_call_log/crm_call_log.json +#: crm/fcrm/pagetype/crm_telephony_agent/crm_telephony_agent.json #: frontend/src/components/Layouts/AppSidebar.vue:601 #: frontend/src/components/Settings/TelephonySettings.vue:40 #: frontend/src/components/Settings/TelephonySettings.vue:50 msgid "Twilio" msgstr "" -#: crm/fcrm/doctype/crm_twilio_settings/crm_twilio_settings.py:59 -#: crm/fcrm/doctype/crm_twilio_settings/crm_twilio_settings.py:60 +#: crm/fcrm/pagetype/crm_twilio_settings/crm_twilio_settings.py:59 +#: crm/fcrm/pagetype/crm_twilio_settings/crm_twilio_settings.py:60 msgid "Twilio API credential creation error." msgstr "" -#. Label of the twilio_number (Data) field in DocType 'CRM Telephony Agent' -#: crm/fcrm/doctype/crm_telephony_agent/crm_telephony_agent.json +#. Label of the twilio_number (Data) field in PageType 'CRM Telephony Agent' +#: crm/fcrm/pagetype/crm_telephony_agent/crm_telephony_agent.json msgid "Twilio Number" msgstr "" @@ -5617,20 +5617,20 @@ msgstr "" msgid "Twilio settings updated successfully" msgstr "" -#. Label of the type (Select) field in DocType 'CRM Call Log' -#. Label of the type (Select) field in DocType 'CRM Deal Status' -#. Label of the type (Select) field in DocType 'CRM Dropdown Item' -#. Label of the type (Select) field in DocType 'CRM Fields Layout' -#. Label of the type (Select) field in DocType 'CRM Global Settings' -#. Label of the type (Select) field in DocType 'CRM Notification' -#. Label of the type (Select) field in DocType 'CRM View Settings' -#: crm/fcrm/doctype/crm_call_log/crm_call_log.json -#: crm/fcrm/doctype/crm_deal_status/crm_deal_status.json -#: crm/fcrm/doctype/crm_dropdown_item/crm_dropdown_item.json -#: crm/fcrm/doctype/crm_fields_layout/crm_fields_layout.json -#: crm/fcrm/doctype/crm_global_settings/crm_global_settings.json -#: crm/fcrm/doctype/crm_notification/crm_notification.json -#: crm/fcrm/doctype/crm_view_settings/crm_view_settings.json +#. Label of the type (Select) field in PageType 'CRM Call Log' +#. Label of the type (Select) field in PageType 'CRM Deal Status' +#. Label of the type (Select) field in PageType 'CRM Dropdown Item' +#. Label of the type (Select) field in PageType 'CRM Fields Layout' +#. Label of the type (Select) field in PageType 'CRM Global Settings' +#. Label of the type (Select) field in PageType 'CRM Notification' +#. Label of the type (Select) field in PageType 'CRM View Settings' +#: crm/fcrm/pagetype/crm_call_log/crm_call_log.json +#: crm/fcrm/pagetype/crm_deal_status/crm_deal_status.json +#: crm/fcrm/pagetype/crm_dropdown_item/crm_dropdown_item.json +#: crm/fcrm/pagetype/crm_fields_layout/crm_fields_layout.json +#: crm/fcrm/pagetype/crm_global_settings/crm_global_settings.json +#: crm/fcrm/pagetype/crm_notification/crm_notification.json +#: crm/fcrm/pagetype/crm_view_settings/crm_view_settings.json msgid "Type" msgstr "Tipo" @@ -5772,12 +5772,12 @@ msgstr "" msgid "Uploading {0}%" msgstr "" -#. Label of the user (Link) field in DocType 'CRM Dashboard' -#. Label of the user (Link) field in DocType 'CRM Telephony Agent' -#. Label of the user (Link) field in DocType 'CRM View Settings' -#: crm/fcrm/doctype/crm_dashboard/crm_dashboard.json -#: crm/fcrm/doctype/crm_telephony_agent/crm_telephony_agent.json -#: crm/fcrm/doctype/crm_view_settings/crm_view_settings.json +#. Label of the user (Link) field in PageType 'CRM Dashboard' +#. Label of the user (Link) field in PageType 'CRM Telephony Agent' +#. Label of the user (Link) field in PageType 'CRM View Settings' +#: crm/fcrm/pagetype/crm_dashboard/crm_dashboard.json +#: crm/fcrm/pagetype/crm_telephony_agent/crm_telephony_agent.json +#: crm/fcrm/pagetype/crm_view_settings/crm_view_settings.json msgid "User" msgstr "Utente" @@ -5785,8 +5785,8 @@ msgstr "Utente" msgid "User Management" msgstr "" -#. Label of the user_name (Data) field in DocType 'CRM Telephony Agent' -#: crm/fcrm/doctype/crm_telephony_agent/crm_telephony_agent.json +#. Label of the user_name (Data) field in PageType 'CRM Telephony Agent' +#: crm/fcrm/pagetype/crm_telephony_agent/crm_telephony_agent.json msgid "User Name" msgstr "" @@ -5808,9 +5808,9 @@ msgstr "" msgid "Users are required" msgstr "" -#. Label of the section_break_nevd (Section Break) field in DocType 'CRM +#. Label of the section_break_nevd (Section Break) field in PageType 'CRM #. Service Level Agreement' -#: crm/fcrm/doctype/crm_service_level_agreement/crm_service_level_agreement.json +#: crm/fcrm/pagetype/crm_service_level_agreement/crm_service_level_agreement.json msgid "Validity" msgstr "" @@ -5834,33 +5834,33 @@ msgstr "Viste" msgid "Web form" msgstr "" -#. Label of the webhook_verify_token (Data) field in DocType 'CRM Exotel +#. Label of the webhook_verify_token (Data) field in PageType 'CRM Exotel #. Settings' -#: crm/fcrm/doctype/crm_exotel_settings/crm_exotel_settings.json +#: crm/fcrm/pagetype/crm_exotel_settings/crm_exotel_settings.json msgid "Webhook Verify Token" msgstr "" -#. Label of the website (Data) field in DocType 'CRM Deal' -#. Label of the website (Data) field in DocType 'CRM Lead' -#. Label of the website (Data) field in DocType 'CRM Organization' -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_lead/crm_lead.json -#: crm/fcrm/doctype/crm_organization/crm_organization.json +#. Label of the website (Data) field in PageType 'CRM Deal' +#. Label of the website (Data) field in PageType 'CRM Lead' +#. Label of the website (Data) field in PageType 'CRM Organization' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_lead/crm_lead.json +#: crm/fcrm/pagetype/crm_organization/crm_organization.json #: frontend/src/components/Modals/AboutModal.vue:52 msgid "Website" msgstr "Sito Web" -#. Option for the 'Weekly Off' (Select) field in DocType 'CRM Holiday List' -#. Option for the 'Workday' (Select) field in DocType 'CRM Service Day' -#: crm/fcrm/doctype/crm_holiday_list/crm_holiday_list.json -#: crm/fcrm/doctype/crm_service_day/crm_service_day.json +#. Option for the 'Weekly Off' (Select) field in PageType 'CRM Holiday List' +#. Option for the 'Workday' (Select) field in PageType 'CRM Service Day' +#: crm/fcrm/pagetype/crm_holiday_list/crm_holiday_list.json +#: crm/fcrm/pagetype/crm_service_day/crm_service_day.json msgid "Wednesday" msgstr "" -#. Label of the weekly_off (Check) field in DocType 'CRM Holiday' -#. Label of the weekly_off (Select) field in DocType 'CRM Holiday List' -#: crm/fcrm/doctype/crm_holiday/crm_holiday.json -#: crm/fcrm/doctype/crm_holiday_list/crm_holiday_list.json +#. Label of the weekly_off (Check) field in PageType 'CRM Holiday' +#. Label of the weekly_off (Select) field in PageType 'CRM Holiday List' +#: crm/fcrm/pagetype/crm_holiday/crm_holiday.json +#: crm/fcrm/pagetype/crm_holiday_list/crm_holiday_list.json msgid "Weekly Off" msgstr "" @@ -5868,7 +5868,7 @@ msgstr "" msgid "Welcome Message" msgstr "" -#: crm/fcrm/doctype/helpdesk_crm_settings/helpdesk_crm_settings.py:155 +#: crm/fcrm/pagetype/helpdesk_crm_settings/helpdesk_crm_settings.py:155 msgid "Welcome to Helpdesk" msgstr "" @@ -5876,8 +5876,8 @@ msgstr "" msgid "Welcome {0}, lets add your first lead" msgstr "" -#. Option for the 'Type' (Select) field in DocType 'CRM Notification' -#: crm/fcrm/doctype/crm_notification/crm_notification.json +#. Option for the 'Type' (Select) field in PageType 'CRM Notification' +#: crm/fcrm/pagetype/crm_notification/crm_notification.json #: frontend/src/components/Layouts/AppSidebar.vue:603 #: frontend/src/components/Settings/Settings.vue:190 #: frontend/src/pages/Deal.vue:572 frontend/src/pages/Lead.vue:429 @@ -5902,8 +5902,8 @@ msgstr "Larghezza" msgid "Width can be in number, pixel or rem (eg. 3, 30px, 10rem)" msgstr "" -#. Option for the 'Type' (Select) field in DocType 'CRM Deal Status' -#: crm/fcrm/doctype/crm_deal_status/crm_deal_status.json +#. Option for the 'Type' (Select) field in PageType 'CRM Deal Status' +#: crm/fcrm/pagetype/crm_deal_status/crm_deal_status.json msgid "Won" msgstr "" @@ -5912,16 +5912,16 @@ msgstr "" msgid "Won deals" msgstr "" -#. Label of the workday (Select) field in DocType 'CRM Service Day' -#: crm/fcrm/doctype/crm_service_day/crm_service_day.json +#. Label of the workday (Select) field in PageType 'CRM Service Day' +#: crm/fcrm/pagetype/crm_service_day/crm_service_day.json msgid "Workday" msgstr "" -#. Label of the section_break_rmgo (Section Break) field in DocType 'CRM +#. Label of the section_break_rmgo (Section Break) field in PageType 'CRM #. Service Level Agreement' -#. Label of the working_hours (Table) field in DocType 'CRM Service Level +#. Label of the working_hours (Table) field in PageType 'CRM Service Level #. Agreement' -#: crm/fcrm/doctype/crm_service_level_agreement/crm_service_level_agreement.json +#: crm/fcrm/pagetype/crm_service_level_agreement/crm_service_level_agreement.json msgid "Working Hours" msgstr "" @@ -5967,7 +5967,7 @@ msgstr "" msgid "You do not have permission to access this document" msgstr "" -#: crm/fcrm/doctype/crm_form_script/crm_form_script.py:24 +#: crm/fcrm/pagetype/crm_form_script/crm_form_script.py:24 msgid "You need to be in developer mode to edit a Standard Form Script" msgstr "" @@ -5995,10 +5995,10 @@ msgstr "" msgid "added a" msgstr "" -#. Option for the 'Color' (Select) field in DocType 'CRM Deal Status' -#. Option for the 'Color' (Select) field in DocType 'CRM Lead Status' -#: crm/fcrm/doctype/crm_deal_status/crm_deal_status.json -#: crm/fcrm/doctype/crm_lead_status/crm_lead_status.json +#. Option for the 'Color' (Select) field in PageType 'CRM Deal Status' +#. Option for the 'Color' (Select) field in PageType 'CRM Lead Status' +#: crm/fcrm/pagetype/crm_deal_status/crm_deal_status.json +#: crm/fcrm/pagetype/crm_lead_status/crm_lead_status.json msgid "amber" msgstr "" @@ -6010,17 +6010,17 @@ msgstr "" msgid "assigned a {0} {1} to you" msgstr "" -#. Option for the 'Color' (Select) field in DocType 'CRM Deal Status' -#. Option for the 'Color' (Select) field in DocType 'CRM Lead Status' -#: crm/fcrm/doctype/crm_deal_status/crm_deal_status.json -#: crm/fcrm/doctype/crm_lead_status/crm_lead_status.json +#. Option for the 'Color' (Select) field in PageType 'CRM Deal Status' +#. Option for the 'Color' (Select) field in PageType 'CRM Lead Status' +#: crm/fcrm/pagetype/crm_deal_status/crm_deal_status.json +#: crm/fcrm/pagetype/crm_lead_status/crm_lead_status.json msgid "black" msgstr "" -#. Option for the 'Color' (Select) field in DocType 'CRM Deal Status' -#. Option for the 'Color' (Select) field in DocType 'CRM Lead Status' -#: crm/fcrm/doctype/crm_deal_status/crm_deal_status.json -#: crm/fcrm/doctype/crm_lead_status/crm_lead_status.json +#. Option for the 'Color' (Select) field in PageType 'CRM Deal Status' +#. Option for the 'Color' (Select) field in PageType 'CRM Lead Status' +#: crm/fcrm/pagetype/crm_deal_status/crm_deal_status.json +#: crm/fcrm/pagetype/crm_lead_status/crm_lead_status.json msgid "blue" msgstr "" @@ -6037,10 +6037,10 @@ msgstr "" msgid "condition" msgstr "condizione" -#. Option for the 'Color' (Select) field in DocType 'CRM Deal Status' -#. Option for the 'Color' (Select) field in DocType 'CRM Lead Status' -#: crm/fcrm/doctype/crm_deal_status/crm_deal_status.json -#: crm/fcrm/doctype/crm_lead_status/crm_lead_status.json +#. Option for the 'Color' (Select) field in PageType 'CRM Deal Status' +#. Option for the 'Color' (Select) field in PageType 'CRM Lead Status' +#: crm/fcrm/pagetype/crm_deal_status/crm_deal_status.json +#: crm/fcrm/pagetype/crm_lead_status/crm_lead_status.json msgid "cyan" msgstr "" @@ -6059,33 +6059,33 @@ msgstr "scrivania" msgid "email already exists" msgstr "" -#. Option for the 'Service Provider' (Select) field in DocType 'FCRM Settings' -#: crm/fcrm/doctype/fcrm_settings/fcrm_settings.json +#. Option for the 'Service Provider' (Select) field in PageType 'FCRM Settings' +#: crm/fcrm/pagetype/fcrm_settings/fcrm_settings.json #: frontend/src/components/Settings/CurrencySettings.vue:106 msgid "exchangerate.host" msgstr "" -#. Option for the 'Service Provider' (Select) field in DocType 'FCRM Settings' -#: crm/fcrm/doctype/fcrm_settings/fcrm_settings.json +#. Option for the 'Service Provider' (Select) field in PageType 'FCRM Settings' +#: crm/fcrm/pagetype/fcrm_settings/fcrm_settings.json msgid "frankfurter.app" msgstr "" -#. Option for the 'Color' (Select) field in DocType 'CRM Deal Status' -#. Option for the 'Color' (Select) field in DocType 'CRM Lead Status' -#: crm/fcrm/doctype/crm_deal_status/crm_deal_status.json -#: crm/fcrm/doctype/crm_lead_status/crm_lead_status.json +#. Option for the 'Color' (Select) field in PageType 'CRM Deal Status' +#. Option for the 'Color' (Select) field in PageType 'CRM Lead Status' +#: crm/fcrm/pagetype/crm_deal_status/crm_deal_status.json +#: crm/fcrm/pagetype/crm_lead_status/crm_lead_status.json msgid "gray" msgstr "" -#. Option for the 'Color' (Select) field in DocType 'CRM Deal Status' -#. Option for the 'Color' (Select) field in DocType 'CRM Lead Status' -#: crm/fcrm/doctype/crm_deal_status/crm_deal_status.json -#: crm/fcrm/doctype/crm_lead_status/crm_lead_status.json +#. Option for the 'Color' (Select) field in PageType 'CRM Deal Status' +#. Option for the 'Color' (Select) field in PageType 'CRM Lead Status' +#: crm/fcrm/pagetype/crm_deal_status/crm_deal_status.json +#: crm/fcrm/pagetype/crm_lead_status/crm_lead_status.json msgid "green" msgstr "" -#. Option for the 'Type' (Select) field in DocType 'CRM View Settings' -#: crm/fcrm/doctype/crm_view_settings/crm_view_settings.json +#. Option for the 'Type' (Select) field in PageType 'CRM View Settings' +#: crm/fcrm/pagetype/crm_view_settings/crm_view_settings.json msgid "group_by" msgstr "" @@ -6170,12 +6170,12 @@ msgstr "" msgid "just now" msgstr "" -#. Option for the 'Type' (Select) field in DocType 'CRM View Settings' -#: crm/fcrm/doctype/crm_view_settings/crm_view_settings.json +#. Option for the 'Type' (Select) field in PageType 'CRM View Settings' +#: crm/fcrm/pagetype/crm_view_settings/crm_view_settings.json msgid "kanban" msgstr "" -#: crm/api/doc.py:40 crm/api/doc.py:158 crm/api/doc.py:503 +#: crm/api/pg.py:40 crm/api/pg.py:158 crm/api/pg.py:503 msgid "label" msgstr "" @@ -6184,8 +6184,8 @@ msgstr "" msgid "leads" msgstr "opportunità" -#. Option for the 'Type' (Select) field in DocType 'CRM View Settings' -#: crm/fcrm/doctype/crm_view_settings/crm_view_settings.json +#. Option for the 'Type' (Select) field in PageType 'CRM View Settings' +#: crm/fcrm/pagetype/crm_view_settings/crm_view_settings.json msgid "list" msgstr "" @@ -6206,17 +6206,17 @@ msgstr "" msgid "operator" msgstr "operatore" -#. Option for the 'Color' (Select) field in DocType 'CRM Deal Status' -#. Option for the 'Color' (Select) field in DocType 'CRM Lead Status' -#: crm/fcrm/doctype/crm_deal_status/crm_deal_status.json -#: crm/fcrm/doctype/crm_lead_status/crm_lead_status.json +#. Option for the 'Color' (Select) field in PageType 'CRM Deal Status' +#. Option for the 'Color' (Select) field in PageType 'CRM Lead Status' +#: crm/fcrm/pagetype/crm_deal_status/crm_deal_status.json +#: crm/fcrm/pagetype/crm_lead_status/crm_lead_status.json msgid "orange" msgstr "" -#. Option for the 'Color' (Select) field in DocType 'CRM Deal Status' -#. Option for the 'Color' (Select) field in DocType 'CRM Lead Status' -#: crm/fcrm/doctype/crm_deal_status/crm_deal_status.json -#: crm/fcrm/doctype/crm_lead_status/crm_lead_status.json +#. Option for the 'Color' (Select) field in PageType 'CRM Deal Status' +#. Option for the 'Color' (Select) field in PageType 'CRM Lead Status' +#: crm/fcrm/pagetype/crm_deal_status/crm_deal_status.json +#: crm/fcrm/pagetype/crm_lead_status/crm_lead_status.json msgid "pink" msgstr "" @@ -6232,10 +6232,10 @@ msgstr "" msgid "public" msgstr "" -#. Option for the 'Color' (Select) field in DocType 'CRM Deal Status' -#. Option for the 'Color' (Select) field in DocType 'CRM Lead Status' -#: crm/fcrm/doctype/crm_deal_status/crm_deal_status.json -#: crm/fcrm/doctype/crm_lead_status/crm_lead_status.json +#. Option for the 'Color' (Select) field in PageType 'CRM Deal Status' +#. Option for the 'Color' (Select) field in PageType 'CRM Lead Status' +#: crm/fcrm/pagetype/crm_deal_status/crm_deal_status.json +#: crm/fcrm/pagetype/crm_lead_status/crm_lead_status.json msgid "purple" msgstr "" @@ -6243,17 +6243,17 @@ msgstr "" msgid "received a whatsapp message in {0}" msgstr "" -#. Option for the 'Color' (Select) field in DocType 'CRM Deal Status' -#. Option for the 'Color' (Select) field in DocType 'CRM Lead Status' -#: crm/fcrm/doctype/crm_deal_status/crm_deal_status.json -#: crm/fcrm/doctype/crm_lead_status/crm_lead_status.json +#. Option for the 'Color' (Select) field in PageType 'CRM Deal Status' +#. Option for the 'Color' (Select) field in PageType 'CRM Lead Status' +#: crm/fcrm/pagetype/crm_deal_status/crm_deal_status.json +#: crm/fcrm/pagetype/crm_lead_status/crm_lead_status.json msgid "red" msgstr "" -#. Option for the 'Color' (Select) field in DocType 'CRM Deal Status' -#. Option for the 'Color' (Select) field in DocType 'CRM Lead Status' -#: crm/fcrm/doctype/crm_deal_status/crm_deal_status.json -#: crm/fcrm/doctype/crm_lead_status/crm_lead_status.json +#. Option for the 'Color' (Select) field in PageType 'CRM Deal Status' +#. Option for the 'Color' (Select) field in PageType 'CRM Lead Status' +#: crm/fcrm/pagetype/crm_deal_status/crm_deal_status.json +#: crm/fcrm/pagetype/crm_lead_status/crm_lead_status.json msgid "teal" msgstr "" @@ -6266,10 +6266,10 @@ msgstr "" msgid "tomorrow" msgstr "" -#. Option for the 'Color' (Select) field in DocType 'CRM Deal Status' -#. Option for the 'Color' (Select) field in DocType 'CRM Lead Status' -#: crm/fcrm/doctype/crm_deal_status/crm_deal_status.json -#: crm/fcrm/doctype/crm_lead_status/crm_lead_status.json +#. Option for the 'Color' (Select) field in PageType 'CRM Deal Status' +#. Option for the 'Color' (Select) field in PageType 'CRM Lead Status' +#: crm/fcrm/pagetype/crm_deal_status/crm_deal_status.json +#: crm/fcrm/pagetype/crm_lead_status/crm_lead_status.json msgid "violet" msgstr "" @@ -6278,10 +6278,10 @@ msgstr "" msgid "which are not compatible with this UI, you will need to recreate the conditions here if you want to manage and add new conditions from this UI." msgstr "" -#. Option for the 'Color' (Select) field in DocType 'CRM Deal Status' -#. Option for the 'Color' (Select) field in DocType 'CRM Lead Status' -#: crm/fcrm/doctype/crm_deal_status/crm_deal_status.json -#: crm/fcrm/doctype/crm_lead_status/crm_lead_status.json +#. Option for the 'Color' (Select) field in PageType 'CRM Deal Status' +#. Option for the 'Color' (Select) field in PageType 'CRM Lead Status' +#: crm/fcrm/pagetype/crm_deal_status/crm_deal_status.json +#: crm/fcrm/pagetype/crm_lead_status/crm_lead_status.json msgid "yellow" msgstr "" @@ -6379,7 +6379,7 @@ msgid "⚠️ Method \"{0}\" not found in class." msgstr "" #: frontend/src/data/script.js:83 -msgid "⚠️ No class found for doctype: {0}, it is mandatory to have a class for the parent doctype. it can be empty, but it should be present." +msgid "⚠️ No class found for pagetype: {0}, it is mandatory to have a class for the parent pagetype. it can be empty, but it should be present." msgstr "" #: frontend/src/data/script.js:180 diff --git a/crm/locale/main.pot b/crm/locale/main.pot index 9be91923..48439173 100644 --- a/crm/locale/main.pot +++ b/crm/locale/main.pot @@ -1,11 +1,11 @@ -# Translations template for Frappe CRM. +# Translations template for Jingrow CRM. # Copyright (C) 2025 JINGROW -# This file is distributed under the same license as the Frappe CRM project. +# This file is distributed under the same license as the Jingrow CRM project. # FIRST AUTHOR , 2025. # msgid "" msgstr "" -"Project-Id-Version: Frappe CRM VERSION\n" +"Project-Id-Version: Jingrow CRM VERSION\n" "Report-Msgid-Bugs-To: shariq@jingrow.com\n" "POT-Creation-Date: 2025-09-21 09:35+0000\n" "PO-Revision-Date: 2025-09-21 09:35+0000\n" @@ -53,73 +53,73 @@ msgstr "" msgid "1 year ago" msgstr "" -#. Option for the 'No. of Employees' (Select) field in DocType 'CRM Deal' -#. Option for the 'No. of Employees' (Select) field in DocType 'CRM Lead' -#. Option for the 'No. of Employees' (Select) field in DocType 'CRM +#. Option for the 'No. of Employees' (Select) field in PageType 'CRM Deal' +#. Option for the 'No. of Employees' (Select) field in PageType 'CRM Lead' +#. Option for the 'No. of Employees' (Select) field in PageType 'CRM #. Organization' -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_lead/crm_lead.json -#: crm/fcrm/doctype/crm_organization/crm_organization.json +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_lead/crm_lead.json +#: crm/fcrm/pagetype/crm_organization/crm_organization.json msgid "1-10" msgstr "" -#. Option for the 'No. of Employees' (Select) field in DocType 'CRM Deal' -#. Option for the 'No. of Employees' (Select) field in DocType 'CRM Lead' -#. Option for the 'No. of Employees' (Select) field in DocType 'CRM +#. Option for the 'No. of Employees' (Select) field in PageType 'CRM Deal' +#. Option for the 'No. of Employees' (Select) field in PageType 'CRM Lead' +#. Option for the 'No. of Employees' (Select) field in PageType 'CRM #. Organization' -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_lead/crm_lead.json -#: crm/fcrm/doctype/crm_organization/crm_organization.json +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_lead/crm_lead.json +#: crm/fcrm/pagetype/crm_organization/crm_organization.json msgid "1000+" msgstr "" -#. Option for the 'No. of Employees' (Select) field in DocType 'CRM Deal' -#. Option for the 'No. of Employees' (Select) field in DocType 'CRM Lead' -#. Option for the 'No. of Employees' (Select) field in DocType 'CRM +#. Option for the 'No. of Employees' (Select) field in PageType 'CRM Deal' +#. Option for the 'No. of Employees' (Select) field in PageType 'CRM Lead' +#. Option for the 'No. of Employees' (Select) field in PageType 'CRM #. Organization' -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_lead/crm_lead.json -#: crm/fcrm/doctype/crm_organization/crm_organization.json +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_lead/crm_lead.json +#: crm/fcrm/pagetype/crm_organization/crm_organization.json msgid "11-50" msgstr "" -#. Option for the 'No. of Employees' (Select) field in DocType 'CRM Deal' -#. Option for the 'No. of Employees' (Select) field in DocType 'CRM Lead' -#. Option for the 'No. of Employees' (Select) field in DocType 'CRM +#. Option for the 'No. of Employees' (Select) field in PageType 'CRM Deal' +#. Option for the 'No. of Employees' (Select) field in PageType 'CRM Lead' +#. Option for the 'No. of Employees' (Select) field in PageType 'CRM #. Organization' -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_lead/crm_lead.json -#: crm/fcrm/doctype/crm_organization/crm_organization.json +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_lead/crm_lead.json +#: crm/fcrm/pagetype/crm_organization/crm_organization.json msgid "201-500" msgstr "" -#. Option for the 'No. of Employees' (Select) field in DocType 'CRM Deal' -#. Option for the 'No. of Employees' (Select) field in DocType 'CRM Lead' -#. Option for the 'No. of Employees' (Select) field in DocType 'CRM +#. Option for the 'No. of Employees' (Select) field in PageType 'CRM Deal' +#. Option for the 'No. of Employees' (Select) field in PageType 'CRM Lead' +#. Option for the 'No. of Employees' (Select) field in PageType 'CRM #. Organization' -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_lead/crm_lead.json -#: crm/fcrm/doctype/crm_organization/crm_organization.json +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_lead/crm_lead.json +#: crm/fcrm/pagetype/crm_organization/crm_organization.json msgid "501-1000" msgstr "" -#. Option for the 'No. of Employees' (Select) field in DocType 'CRM Deal' -#. Option for the 'No. of Employees' (Select) field in DocType 'CRM Lead' -#. Option for the 'No. of Employees' (Select) field in DocType 'CRM +#. Option for the 'No. of Employees' (Select) field in PageType 'CRM Deal' +#. Option for the 'No. of Employees' (Select) field in PageType 'CRM Lead' +#. Option for the 'No. of Employees' (Select) field in PageType 'CRM #. Organization' -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_lead/crm_lead.json -#: crm/fcrm/doctype/crm_organization/crm_organization.json +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_lead/crm_lead.json +#: crm/fcrm/pagetype/crm_organization/crm_organization.json msgid "51-200" msgstr "" -#. Paragraph text in the Frappe CRM Workspace -#: crm/fcrm/workspace/frappe_crm/frappe_crm.json +#. Paragraph text in the Jingrow CRM Workspace +#: crm/fcrm/workspace/jingrow_crm/jingrow_crm.json msgid "META" msgstr "" -#. Paragraph text in the Frappe CRM Workspace -#: crm/fcrm/workspace/frappe_crm/frappe_crm.json +#. Paragraph text in the Jingrow CRM Workspace +#: crm/fcrm/workspace/jingrow_crm/jingrow_crm.json msgid "SHORTCUTS" msgstr "" @@ -128,8 +128,8 @@ msgstr "" msgid "

Dear {{ lead_name }},

\\n\\n

This is a reminder for the payment of {{ grand_total }}.

\\n\\n

Thanks,

\\n

Frappé

" msgstr "" -#. Header text in the Frappe CRM Workspace -#: crm/fcrm/workspace/frappe_crm/frappe_crm.json +#. Header text in the Jingrow CRM Workspace +#: crm/fcrm/workspace/jingrow_crm/jingrow_crm.json msgid "PORTAL" msgstr "" @@ -137,7 +137,7 @@ msgstr "" msgid "@John, can you please check this?" msgstr "" -#: crm/fcrm/doctype/crm_lead/crm_lead.py:56 +#: crm/fcrm/pagetype/crm_lead/crm_lead.py:56 msgid "A Lead requires either a person's name or an organization's name" msgstr "" @@ -145,14 +145,14 @@ msgstr "" msgid "A new account has been created for you at {0}" msgstr "" -#. Label of the api_key (Data) field in DocType 'CRM Exotel Settings' -#. Label of the api_key (Data) field in DocType 'CRM Twilio Settings' -#. Label of the api_key (Data) field in DocType 'ERPNext CRM Settings' -#. Label of the api_key (Data) field in DocType 'Helpdesk CRM Settings' -#: crm/fcrm/doctype/crm_exotel_settings/crm_exotel_settings.json -#: crm/fcrm/doctype/crm_twilio_settings/crm_twilio_settings.json -#: crm/fcrm/doctype/erpnext_crm_settings/erpnext_crm_settings.json -#: crm/fcrm/doctype/helpdesk_crm_settings/helpdesk_crm_settings.json +#. Label of the api_key (Data) field in PageType 'CRM Exotel Settings' +#. Label of the api_key (Data) field in PageType 'CRM Twilio Settings' +#. Label of the api_key (Data) field in PageType 'ERPNext CRM Settings' +#. Label of the api_key (Data) field in PageType 'Helpdesk CRM Settings' +#: crm/fcrm/pagetype/crm_exotel_settings/crm_exotel_settings.json +#: crm/fcrm/pagetype/crm_twilio_settings/crm_twilio_settings.json +#: crm/fcrm/pagetype/erpnext_crm_settings/erpnext_crm_settings.json +#: crm/fcrm/pagetype/helpdesk_crm_settings/helpdesk_crm_settings.json msgid "API Key" msgstr "" @@ -160,17 +160,17 @@ msgstr "" msgid "API Key is required" msgstr "" -#. Label of the api_secret (Password) field in DocType 'CRM Twilio Settings' -#. Label of the api_secret (Password) field in DocType 'ERPNext CRM Settings' -#. Label of the api_secret (Password) field in DocType 'Helpdesk CRM Settings' -#: crm/fcrm/doctype/crm_twilio_settings/crm_twilio_settings.json -#: crm/fcrm/doctype/erpnext_crm_settings/erpnext_crm_settings.json -#: crm/fcrm/doctype/helpdesk_crm_settings/helpdesk_crm_settings.json +#. Label of the api_secret (Password) field in PageType 'CRM Twilio Settings' +#. Label of the api_secret (Password) field in PageType 'ERPNext CRM Settings' +#. Label of the api_secret (Password) field in PageType 'Helpdesk CRM Settings' +#: crm/fcrm/pagetype/crm_twilio_settings/crm_twilio_settings.json +#: crm/fcrm/pagetype/erpnext_crm_settings/erpnext_crm_settings.json +#: crm/fcrm/pagetype/helpdesk_crm_settings/helpdesk_crm_settings.json msgid "API Secret" msgstr "" -#. Label of the api_token (Password) field in DocType 'CRM Exotel Settings' -#: crm/fcrm/doctype/crm_exotel_settings/crm_exotel_settings.json +#. Label of the api_token (Password) field in PageType 'CRM Exotel Settings' +#: crm/fcrm/pagetype/crm_exotel_settings/crm_exotel_settings.json msgid "API Token" msgstr "" @@ -178,7 +178,7 @@ msgstr "" msgid "Accept" msgstr "" -#: crm/fcrm/doctype/crm_invitation/crm_invitation.js:7 +#: crm/fcrm/pagetype/crm_invitation/crm_invitation.js:7 msgid "Accept Invitation" msgstr "" @@ -186,22 +186,22 @@ msgstr "" msgid "Accept call" msgstr "" -#. Option for the 'Status' (Select) field in DocType 'CRM Invitation' -#: crm/fcrm/doctype/crm_invitation/crm_invitation.json +#. Option for the 'Status' (Select) field in PageType 'CRM Invitation' +#: crm/fcrm/pagetype/crm_invitation/crm_invitation.json msgid "Accepted" msgstr "" -#. Label of the accepted_at (Datetime) field in DocType 'CRM Invitation' -#: crm/fcrm/doctype/crm_invitation/crm_invitation.json +#. Label of the accepted_at (Datetime) field in PageType 'CRM Invitation' +#: crm/fcrm/pagetype/crm_invitation/crm_invitation.json msgid "Accepted At" msgstr "" -#. Label of the access_key (Data) field in DocType 'FCRM Settings' -#: crm/fcrm/doctype/fcrm_settings/fcrm_settings.json +#. Label of the access_key (Data) field in PageType 'FCRM Settings' +#: crm/fcrm/pagetype/fcrm_settings/fcrm_settings.json msgid "Access Key" msgstr "" -#: crm/fcrm/doctype/fcrm_settings/fcrm_settings.py:156 +#: crm/fcrm/pagetype/fcrm_settings/fcrm_settings.py:156 msgid "Access Key is required for Service Provider: {0}" msgstr "" @@ -217,10 +217,10 @@ msgstr "" msgid "Account Name" msgstr "" -#. Label of the account_sid (Data) field in DocType 'CRM Exotel Settings' -#. Label of the account_sid (Data) field in DocType 'CRM Twilio Settings' -#: crm/fcrm/doctype/crm_exotel_settings/crm_exotel_settings.json -#: crm/fcrm/doctype/crm_twilio_settings/crm_twilio_settings.json +#. Label of the account_sid (Data) field in PageType 'CRM Exotel Settings' +#. Label of the account_sid (Data) field in PageType 'CRM Twilio Settings' +#: crm/fcrm/pagetype/crm_exotel_settings/crm_exotel_settings.json +#: crm/fcrm/pagetype/crm_twilio_settings/crm_twilio_settings.json msgid "Account SID" msgstr "" @@ -294,9 +294,9 @@ msgstr "" msgid "Add Tab" msgstr "" -#. Label of the add_weekly_holidays_section (Section Break) field in DocType +#. Label of the add_weekly_holidays_section (Section Break) field in PageType #. 'CRM Holiday List' -#: crm/fcrm/doctype/crm_holiday_list/crm_holiday_list.json +#: crm/fcrm/pagetype/crm_holiday_list/crm_holiday_list.json msgid "Add Weekly Holidays" msgstr "" @@ -361,8 +361,8 @@ msgstr "" msgid "Add sample data" msgstr "" -#. Description of the 'Icon' (Code) field in DocType 'CRM Dropdown Item' -#: crm/fcrm/doctype/crm_dropdown_item/crm_dropdown_item.json +#. Description of the 'Icon' (Code) field in PageType 'CRM Dropdown Item' +#: crm/fcrm/pagetype/crm_dropdown_item/crm_dropdown_item.json msgid "Add svg code or use feather icons e.g 'settings'" msgstr "" @@ -370,8 +370,8 @@ msgstr "" msgid "Add task" msgstr "" -#. Label of the add_to_holidays (Button) field in DocType 'CRM Holiday List' -#: crm/fcrm/doctype/crm_holiday_list/crm_holiday_list.json +#. Label of the add_to_holidays (Button) field in PageType 'CRM Holiday List' +#: crm/fcrm/pagetype/crm_holiday_list/crm_holiday_list.json msgid "Add to Holidays" msgstr "" @@ -383,8 +383,8 @@ msgstr "" msgid "Add, edit, and manage email templates for various CRM communications" msgstr "" -#. Label of the address (Link) field in DocType 'CRM Organization' -#: crm/fcrm/doctype/crm_organization/crm_organization.json +#. Label of the address (Link) field in PageType 'CRM Organization' +#: crm/fcrm/pagetype/crm_organization/crm_organization.json msgid "Address" msgstr "" @@ -404,14 +404,14 @@ msgid "Agent is unavailable to take the call, please call after some time." msgstr "" #. Name of a role -#: crm/fcrm/doctype/crm_exotel_settings/crm_exotel_settings.json -#: crm/fcrm/doctype/crm_fields_layout/crm_fields_layout.json -#: crm/fcrm/doctype/crm_form_script/crm_form_script.json -#: crm/fcrm/doctype/crm_industry/crm_industry.json -#: crm/fcrm/doctype/crm_lead/crm_lead.json -#: crm/fcrm/doctype/crm_lead_source/crm_lead_source.json -#: crm/fcrm/doctype/crm_lead_status/crm_lead_status.json -#: crm/fcrm/doctype/fcrm_settings/fcrm_settings.json +#: crm/fcrm/pagetype/crm_exotel_settings/crm_exotel_settings.json +#: crm/fcrm/pagetype/crm_fields_layout/crm_fields_layout.json +#: crm/fcrm/pagetype/crm_form_script/crm_form_script.json +#: crm/fcrm/pagetype/crm_industry/crm_industry.json +#: crm/fcrm/pagetype/crm_lead/crm_lead.json +#: crm/fcrm/pagetype/crm_lead_source/crm_lead_source.json +#: crm/fcrm/pagetype/crm_lead_status/crm_lead_status.json +#: crm/fcrm/pagetype/fcrm_settings/fcrm_settings.json #: frontend/src/components/Settings/EmailTemplate/EmailTemplates.vue:76 #: frontend/src/components/Settings/Users.vue:85 msgid "All" @@ -424,16 +424,16 @@ msgstr "" msgid "All day" msgstr "" -#. Label of the amount (Currency) field in DocType 'CRM Products' -#: crm/fcrm/doctype/crm_products/crm_products.json +#. Label of the amount (Currency) field in PageType 'CRM Products' +#: crm/fcrm/pagetype/crm_products/crm_products.json #: frontend/src/pages/Contact.vue:499 frontend/src/pages/MobileContact.vue:507 #: frontend/src/pages/MobileOrganization.vue:451 #: frontend/src/pages/Organization.vue:472 msgid "Amount" msgstr "" -#. Description of the 'Net Amount' (Currency) field in DocType 'CRM Products' -#: crm/fcrm/doctype/crm_products/crm_products.json +#. Description of the 'Net Amount' (Currency) field in PageType 'CRM Products' +#: crm/fcrm/pagetype/crm_products/crm_products.json msgid "Amount after discount" msgstr "" @@ -445,13 +445,13 @@ msgstr "" msgid "An error occurred while updating the document" msgstr "" -#. Description of the 'Favicon' (Attach) field in DocType 'FCRM Settings' -#: crm/fcrm/doctype/fcrm_settings/fcrm_settings.json +#. Description of the 'Favicon' (Attach) field in PageType 'FCRM Settings' +#: crm/fcrm/pagetype/fcrm_settings/fcrm_settings.json msgid "An icon file with .ico extension. Should be 16 x 16 px. Generated using a favicon generator. [favicon-generator.org]" msgstr "" -#. Description of the 'Logo' (Attach) field in DocType 'FCRM Settings' -#: crm/fcrm/doctype/fcrm_settings/fcrm_settings.json +#. Description of the 'Logo' (Attach) field in PageType 'FCRM Settings' +#: crm/fcrm/pagetype/fcrm_settings/fcrm_settings.json msgid "An image with 1:1 & 2:1 ratio is preferred" msgstr "" @@ -459,12 +459,12 @@ msgstr "" msgid "And" msgstr "" -#. Label of the annual_revenue (Currency) field in DocType 'CRM Deal' -#. Label of the annual_revenue (Currency) field in DocType 'CRM Lead' -#. Label of the annual_revenue (Currency) field in DocType 'CRM Organization' -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_lead/crm_lead.json -#: crm/fcrm/doctype/crm_organization/crm_organization.json +#. Label of the annual_revenue (Currency) field in PageType 'CRM Deal' +#. Label of the annual_revenue (Currency) field in PageType 'CRM Lead' +#. Label of the annual_revenue (Currency) field in PageType 'CRM Organization' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_lead/crm_lead.json +#: crm/fcrm/pagetype/crm_organization/crm_organization.json msgid "Annual Revenue" msgstr "" @@ -486,13 +486,13 @@ msgstr "" msgid "Apply" msgstr "" -#. Label of the apply_on (Link) field in DocType 'CRM Service Level Agreement' -#: crm/fcrm/doctype/crm_service_level_agreement/crm_service_level_agreement.json +#. Label of the apply_on (Link) field in PageType 'CRM Service Level Agreement' +#: crm/fcrm/pagetype/crm_service_level_agreement/crm_service_level_agreement.json msgid "Apply On" msgstr "" -#. Label of the view (Select) field in DocType 'CRM Form Script' -#: crm/fcrm/doctype/crm_form_script/crm_form_script.json +#. Label of the view (Select) field in PageType 'CRM Form Script' +#: crm/fcrm/pagetype/crm_form_script/crm_form_script.json msgid "Apply To" msgstr "" @@ -538,10 +538,10 @@ msgid "Are you sure you want to go back? Unsaved changes will be lost." msgstr "" #: frontend/src/composables/frappecloud.js:24 -msgid "Are you sure you want to login to your Frappe Cloud dashboard?" +msgid "Are you sure you want to login to your Jingrow Cloud dashboard?" msgstr "" -#: crm/fcrm/doctype/erpnext_crm_settings/erpnext_crm_settings.js:9 +#: crm/fcrm/pagetype/erpnext_crm_settings/erpnext_crm_settings.js:9 msgid "Are you sure you want to reset 'Create Quotation from CRM Deal' Form Script?" msgstr "" @@ -553,7 +553,7 @@ msgstr "" msgid "Are you sure you want to unlink {0} linked item(s)?" msgstr "" -#: crm/fcrm/doctype/fcrm_settings/fcrm_settings.py:193 +#: crm/fcrm/pagetype/fcrm_settings/fcrm_settings.py:193 msgid "Ask your manager to set up the Exchange Rate Provider, as default provider does not support currency conversion for {0} to {1}." msgstr "" @@ -579,8 +579,8 @@ msgstr "" msgid "Assign to me" msgstr "" -#. Label of the assigned_to (Link) field in DocType 'CRM Task' -#: crm/fcrm/doctype/crm_task/crm_task.json +#. Label of the assigned_to (Link) field in PageType 'CRM Task' +#: crm/fcrm/pagetype/crm_task/crm_task.json msgid "Assigned To" msgstr "" @@ -592,13 +592,13 @@ msgstr "" msgid "Assignees" msgstr "" -#. Option for the 'Type' (Select) field in DocType 'CRM Notification' -#: crm/fcrm/doctype/crm_notification/crm_notification.json +#. Option for the 'Type' (Select) field in PageType 'CRM Notification' +#: crm/fcrm/pagetype/crm_notification/crm_notification.json msgid "Assignment" msgstr "" -#. Label of a shortcut in the Frappe CRM Workspace -#: crm/fcrm/workspace/frappe_crm/frappe_crm.json +#. Label of a shortcut in the Jingrow CRM Workspace +#: crm/fcrm/workspace/jingrow_crm/jingrow_crm.json msgid "Assignment Rule" msgstr "" @@ -676,14 +676,14 @@ msgstr "" msgid "Attendees" msgstr "" -#. Label of the auth_token (Password) field in DocType 'CRM Twilio Settings' -#: crm/fcrm/doctype/crm_twilio_settings/crm_twilio_settings.json +#. Label of the auth_token (Password) field in PageType 'CRM Twilio Settings' +#: crm/fcrm/pagetype/crm_twilio_settings/crm_twilio_settings.json msgid "Auth Token" msgstr "" -#. Label of the auto_update_expected_deal_value (Check) field in DocType 'FCRM +#. Label of the auto_update_expected_deal_value (Check) field in PageType 'FCRM #. Settings' -#: crm/fcrm/doctype/fcrm_settings/fcrm_settings.json +#: crm/fcrm/pagetype/fcrm_settings/fcrm_settings.json msgid "Auto Update Expected Deal Value" msgstr "" @@ -700,8 +700,8 @@ msgid "Auto update of expected deal value enabled" msgstr "" #. Description of the 'Auto Update Expected Deal Value' (Check) field in -#. DocType 'FCRM Settings' -#: crm/fcrm/doctype/fcrm_settings/fcrm_settings.json +#. PageType 'FCRM Settings' +#: crm/fcrm/pagetype/fcrm_settings/fcrm_settings.json #: frontend/src/components/Settings/ForecastingSettings.vue:46 msgid "Automatically update \"Expected Deal Value\" based on the total value of associated products in a deal" msgstr "" @@ -791,8 +791,8 @@ msgstr "" msgid "Back to file upload" msgstr "" -#. Option for the 'Status' (Select) field in DocType 'CRM Task' -#: crm/fcrm/doctype/crm_task/crm_task.json +#. Option for the 'Status' (Select) field in PageType 'CRM Task' +#: crm/fcrm/pagetype/crm_task/crm_task.json msgid "Backlog" msgstr "" @@ -816,8 +816,8 @@ msgstr "" msgid "Brand settings" msgstr "" -#. Label of the branding_tab (Tab Break) field in DocType 'FCRM Settings' -#: crm/fcrm/doctype/fcrm_settings/fcrm_settings.json +#. Label of the branding_tab (Tab Break) field in PageType 'FCRM Settings' +#: crm/fcrm/pagetype/fcrm_settings/fcrm_settings.json msgid "Branding" msgstr "" @@ -825,8 +825,8 @@ msgstr "" msgid "Bulk Edit" msgstr "" -#. Option for the 'Status' (Select) field in DocType 'CRM Call Log' -#: crm/fcrm/doctype/crm_call_log/crm_call_log.json +#. Option for the 'Status' (Select) field in PageType 'CRM Call Log' +#: crm/fcrm/pagetype/crm_call_log/crm_call_log.json msgid "Busy" msgstr "" @@ -836,174 +836,174 @@ msgstr "" msgid "CC" msgstr "" -#. Name of a DocType -#: crm/fcrm/doctype/crm_call_log/crm_call_log.json +#. Name of a PageType +#: crm/fcrm/pagetype/crm_call_log/crm_call_log.json msgid "CRM Call Log" msgstr "" -#. Name of a DocType -#: crm/fcrm/doctype/crm_communication_status/crm_communication_status.json +#. Name of a PageType +#: crm/fcrm/pagetype/crm_communication_status/crm_communication_status.json msgid "CRM Communication Status" msgstr "" -#. Name of a DocType -#: crm/fcrm/doctype/crm_contacts/crm_contacts.json +#. Name of a PageType +#: crm/fcrm/pagetype/crm_contacts/crm_contacts.json msgid "CRM Contacts" msgstr "" -#. Name of a DocType -#: crm/fcrm/doctype/crm_dashboard/crm_dashboard.json +#. Name of a PageType +#: crm/fcrm/pagetype/crm_dashboard/crm_dashboard.json #: frontend/src/pages/Dashboard.vue:304 msgid "CRM Dashboard" msgstr "" -#. Name of a DocType -#: crm/fcrm/doctype/crm_deal/crm_deal.json +#. Name of a PageType +#: crm/fcrm/pagetype/crm_deal/crm_deal.json msgid "CRM Deal" msgstr "" -#. Name of a DocType -#: crm/fcrm/doctype/crm_deal_status/crm_deal_status.json +#. Name of a PageType +#: crm/fcrm/pagetype/crm_deal_status/crm_deal_status.json msgid "CRM Deal Status" msgstr "" -#. Name of a DocType -#: crm/fcrm/doctype/crm_dropdown_item/crm_dropdown_item.json +#. Name of a PageType +#: crm/fcrm/pagetype/crm_dropdown_item/crm_dropdown_item.json msgid "CRM Dropdown Item" msgstr "" -#. Name of a DocType -#: crm/fcrm/doctype/crm_exotel_settings/crm_exotel_settings.json +#. Name of a PageType +#: crm/fcrm/pagetype/crm_exotel_settings/crm_exotel_settings.json msgid "CRM Exotel Settings" msgstr "" -#. Name of a DocType -#: crm/fcrm/doctype/crm_fields_layout/crm_fields_layout.json +#. Name of a PageType +#: crm/fcrm/pagetype/crm_fields_layout/crm_fields_layout.json msgid "CRM Fields Layout" msgstr "" -#. Name of a DocType -#: crm/fcrm/doctype/crm_form_script/crm_form_script.json +#. Name of a PageType +#: crm/fcrm/pagetype/crm_form_script/crm_form_script.json msgid "CRM Form Script" msgstr "" -#. Name of a DocType -#: crm/fcrm/doctype/crm_global_settings/crm_global_settings.json +#. Name of a PageType +#: crm/fcrm/pagetype/crm_global_settings/crm_global_settings.json msgid "CRM Global Settings" msgstr "" -#. Name of a DocType -#: crm/fcrm/doctype/crm_holiday/crm_holiday.json +#. Name of a PageType +#: crm/fcrm/pagetype/crm_holiday/crm_holiday.json msgid "CRM Holiday" msgstr "" -#. Name of a DocType -#: crm/fcrm/doctype/crm_holiday_list/crm_holiday_list.json +#. Name of a PageType +#: crm/fcrm/pagetype/crm_holiday_list/crm_holiday_list.json msgid "CRM Holiday List" msgstr "" -#. Name of a DocType -#: crm/fcrm/doctype/crm_industry/crm_industry.json +#. Name of a PageType +#: crm/fcrm/pagetype/crm_industry/crm_industry.json msgid "CRM Industry" msgstr "" -#. Name of a DocType -#: crm/fcrm/doctype/crm_invitation/crm_invitation.json +#. Name of a PageType +#: crm/fcrm/pagetype/crm_invitation/crm_invitation.json msgid "CRM Invitation" msgstr "" -#. Name of a DocType -#: crm/fcrm/doctype/crm_lead/crm_lead.json +#. Name of a PageType +#: crm/fcrm/pagetype/crm_lead/crm_lead.json msgid "CRM Lead" msgstr "" -#. Name of a DocType -#: crm/fcrm/doctype/crm_lead_source/crm_lead_source.json +#. Name of a PageType +#: crm/fcrm/pagetype/crm_lead_source/crm_lead_source.json msgid "CRM Lead Source" msgstr "" -#. Name of a DocType -#: crm/fcrm/doctype/crm_lead_status/crm_lead_status.json +#. Name of a PageType +#: crm/fcrm/pagetype/crm_lead_status/crm_lead_status.json msgid "CRM Lead Status" msgstr "" -#. Name of a DocType -#: crm/fcrm/doctype/crm_lost_reason/crm_lost_reason.json +#. Name of a PageType +#: crm/fcrm/pagetype/crm_lost_reason/crm_lost_reason.json msgid "CRM Lost Reason" msgstr "" -#. Name of a DocType -#: crm/fcrm/doctype/crm_notification/crm_notification.json +#. Name of a PageType +#: crm/fcrm/pagetype/crm_notification/crm_notification.json msgid "CRM Notification" msgstr "" -#. Name of a DocType -#: crm/fcrm/doctype/crm_organization/crm_organization.json +#. Name of a PageType +#: crm/fcrm/pagetype/crm_organization/crm_organization.json msgid "CRM Organization" msgstr "" -#. Label of a shortcut in the Frappe CRM Workspace -#: crm/fcrm/workspace/frappe_crm/frappe_crm.json +#. Label of a shortcut in the Jingrow CRM Workspace +#: crm/fcrm/workspace/jingrow_crm/jingrow_crm.json msgid "CRM Portal Page" msgstr "" -#. Name of a DocType -#: crm/fcrm/doctype/crm_product/crm_product.json +#. Name of a PageType +#: crm/fcrm/pagetype/crm_product/crm_product.json msgid "CRM Product" msgstr "" -#. Name of a DocType -#: crm/fcrm/doctype/crm_products/crm_products.json +#. Name of a PageType +#: crm/fcrm/pagetype/crm_products/crm_products.json msgid "CRM Products" msgstr "" -#. Name of a DocType -#: crm/fcrm/doctype/crm_service_day/crm_service_day.json +#. Name of a PageType +#: crm/fcrm/pagetype/crm_service_day/crm_service_day.json msgid "CRM Service Day" msgstr "" -#. Name of a DocType -#: crm/fcrm/doctype/crm_service_level_agreement/crm_service_level_agreement.json +#. Name of a PageType +#: crm/fcrm/pagetype/crm_service_level_agreement/crm_service_level_agreement.json msgid "CRM Service Level Agreement" msgstr "" -#. Name of a DocType -#: crm/fcrm/doctype/crm_service_level_priority/crm_service_level_priority.json +#. Name of a PageType +#: crm/fcrm/pagetype/crm_service_level_priority/crm_service_level_priority.json msgid "CRM Service Level Priority" msgstr "" -#. Name of a DocType -#: crm/fcrm/doctype/crm_status_change_log/crm_status_change_log.json +#. Name of a PageType +#: crm/fcrm/pagetype/crm_status_change_log/crm_status_change_log.json msgid "CRM Status Change Log" msgstr "" -#. Name of a DocType -#: crm/fcrm/doctype/crm_task/crm_task.json +#. Name of a PageType +#: crm/fcrm/pagetype/crm_task/crm_task.json msgid "CRM Task" msgstr "" -#. Name of a DocType -#: crm/fcrm/doctype/crm_telephony_agent/crm_telephony_agent.json +#. Name of a PageType +#: crm/fcrm/pagetype/crm_telephony_agent/crm_telephony_agent.json msgid "CRM Telephony Agent" msgstr "" -#. Name of a DocType -#: crm/fcrm/doctype/crm_telephony_phone/crm_telephony_phone.json +#. Name of a PageType +#: crm/fcrm/pagetype/crm_telephony_phone/crm_telephony_phone.json msgid "CRM Telephony Phone" msgstr "" -#. Name of a DocType -#: crm/fcrm/doctype/crm_territory/crm_territory.json +#. Name of a PageType +#: crm/fcrm/pagetype/crm_territory/crm_territory.json msgid "CRM Territory" msgstr "" -#. Name of a DocType -#: crm/fcrm/doctype/crm_twilio_settings/crm_twilio_settings.json +#. Name of a PageType +#: crm/fcrm/pagetype/crm_twilio_settings/crm_twilio_settings.json msgid "CRM Twilio Settings" msgstr "" -#. Name of a DocType -#: crm/fcrm/doctype/crm_view_settings/crm_view_settings.json +#. Name of a PageType +#: crm/fcrm/pagetype/crm_view_settings/crm_view_settings.json msgid "CRM View Settings" msgstr "" @@ -1019,13 +1019,13 @@ msgstr "" msgid "Call Details" msgstr "" -#. Label of the receiver (Link) field in DocType 'CRM Call Log' -#: crm/fcrm/doctype/crm_call_log/crm_call_log.json +#. Label of the receiver (Link) field in PageType 'CRM Call Log' +#: crm/fcrm/pagetype/crm_call_log/crm_call_log.json msgid "Call Received By" msgstr "" -#. Description of the 'Duration' (Duration) field in DocType 'CRM Call Log' -#: crm/fcrm/doctype/crm_call_log/crm_call_log.json +#. Description of the 'Duration' (Duration) field in PageType 'CRM Call Log' +#: crm/fcrm/pagetype/crm_call_log/crm_call_log.json msgid "Call duration in seconds" msgstr "" @@ -1043,8 +1043,8 @@ msgstr "" msgid "Call with John Doe" msgstr "" -#. Label of the caller (Link) field in DocType 'CRM Call Log' -#: crm/fcrm/doctype/crm_call_log/crm_call_log.json +#. Label of the caller (Link) field in PageType 'CRM Call Log' +#: crm/fcrm/pagetype/crm_call_log/crm_call_log.json msgid "Caller" msgstr "" @@ -1081,10 +1081,10 @@ msgstr "" msgid "Cancel" msgstr "" -#. Option for the 'Status' (Select) field in DocType 'CRM Call Log' -#. Option for the 'Status' (Select) field in DocType 'CRM Task' -#: crm/fcrm/doctype/crm_call_log/crm_call_log.json -#: crm/fcrm/doctype/crm_task/crm_task.json +#. Option for the 'Status' (Select) field in PageType 'CRM Call Log' +#. Option for the 'Status' (Select) field in PageType 'CRM Task' +#: crm/fcrm/pagetype/crm_call_log/crm_call_log.json +#: crm/fcrm/pagetype/crm_task/crm_task.json msgid "Canceled" msgstr "" @@ -1092,7 +1092,7 @@ msgstr "" msgid "Cannot change role of user with Admin access" msgstr "" -#: crm/fcrm/doctype/fcrm_settings/fcrm_settings.py:34 +#: crm/fcrm/pagetype/fcrm_settings/fcrm_settings.py:34 msgid "Cannot delete standard items {0}" msgstr "" @@ -1187,8 +1187,8 @@ msgstr "" msgid "Clear Sort" msgstr "" -#. Label of the clear_table (Button) field in DocType 'CRM Holiday List' -#: crm/fcrm/doctype/crm_holiday_list/crm_holiday_list.json +#. Label of the clear_table (Button) field in PageType 'CRM Holiday List' +#: crm/fcrm/pagetype/crm_holiday_list/crm_holiday_list.json msgid "Clear Table" msgstr "" @@ -1209,8 +1209,8 @@ msgstr "" msgid "Close panel" msgstr "" -#. Label of the closed_date (Date) field in DocType 'CRM Deal' -#: crm/fcrm/doctype/crm_deal/crm_deal.json +#. Label of the closed_date (Date) field in PageType 'CRM Deal' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json msgid "Closed Date" msgstr "" @@ -1222,10 +1222,10 @@ msgstr "" msgid "Collapsible" msgstr "" -#. Label of the color (Select) field in DocType 'CRM Deal Status' -#. Label of the color (Select) field in DocType 'CRM Lead Status' -#: crm/fcrm/doctype/crm_deal_status/crm_deal_status.json -#: crm/fcrm/doctype/crm_lead_status/crm_lead_status.json +#. Label of the color (Select) field in PageType 'CRM Deal Status' +#. Label of the color (Select) field in PageType 'CRM Lead Status' +#: crm/fcrm/pagetype/crm_deal_status/crm_deal_status.json +#: crm/fcrm/pagetype/crm_lead_status/crm_lead_status.json msgid "Color" msgstr "" @@ -1233,20 +1233,20 @@ msgstr "" msgid "Column" msgstr "" -#. Label of the column_field (Data) field in DocType 'CRM View Settings' -#: crm/fcrm/doctype/crm_view_settings/crm_view_settings.json +#. Label of the column_field (Data) field in PageType 'CRM View Settings' +#: crm/fcrm/pagetype/crm_view_settings/crm_view_settings.json #: frontend/src/components/Kanban/KanbanSettings.vue:12 msgid "Column Field" msgstr "" -#. Label of the columns (Code) field in DocType 'CRM View Settings' -#: crm/fcrm/doctype/crm_view_settings/crm_view_settings.json +#. Label of the columns (Code) field in PageType 'CRM View Settings' +#: crm/fcrm/pagetype/crm_view_settings/crm_view_settings.json #: frontend/src/components/ColumnSettings.vue:4 msgid "Columns" msgstr "" -#. Label of the comment (Link) field in DocType 'CRM Notification' -#: crm/fcrm/doctype/crm_notification/crm_notification.json +#. Label of the comment (Link) field in PageType 'CRM Notification' +#: crm/fcrm/pagetype/crm_notification/crm_notification.json #: frontend/src/components/CommentBox.vue:78 #: frontend/src/components/CommunicationArea.vue:16 #: frontend/src/components/Layouts/AppSidebar.vue:579 @@ -1262,20 +1262,20 @@ msgstr "" msgid "Common reasons for losing deals" msgstr "" -#. Label of the communication_status (Link) field in DocType 'CRM Deal' -#. Label of the communication_status (Link) field in DocType 'CRM Lead' -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_lead/crm_lead.json +#. Label of the communication_status (Link) field in PageType 'CRM Deal' +#. Label of the communication_status (Link) field in PageType 'CRM Lead' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_lead/crm_lead.json msgid "Communication Status" msgstr "" -#. Label of a shortcut in the Frappe CRM Workspace -#: crm/fcrm/workspace/frappe_crm/frappe_crm.json +#. Label of a shortcut in the Jingrow CRM Workspace +#: crm/fcrm/workspace/jingrow_crm/jingrow_crm.json msgid "Communication Statuses" msgstr "" -#. Label of the erpnext_company (Data) field in DocType 'ERPNext CRM Settings' -#: crm/fcrm/doctype/erpnext_crm_settings/erpnext_crm_settings.json +#. Label of the erpnext_company (Data) field in PageType 'ERPNext CRM Settings' +#: crm/fcrm/pagetype/erpnext_crm_settings/erpnext_crm_settings.json msgid "Company in ERPNext Site" msgstr "" @@ -1283,18 +1283,18 @@ msgstr "" msgid "Complete Registration" msgstr "" -#. Option for the 'Status' (Select) field in DocType 'CRM Call Log' -#: crm/fcrm/doctype/crm_call_log/crm_call_log.json +#. Option for the 'Status' (Select) field in PageType 'CRM Call Log' +#: crm/fcrm/pagetype/crm_call_log/crm_call_log.json msgid "Completed" msgstr "" -#. Option for the 'Device' (Select) field in DocType 'CRM Telephony Agent' -#: crm/fcrm/doctype/crm_telephony_agent/crm_telephony_agent.json +#. Option for the 'Device' (Select) field in PageType 'CRM Telephony Agent' +#: crm/fcrm/pagetype/crm_telephony_agent/crm_telephony_agent.json msgid "Computer" msgstr "" -#. Label of the condition (Code) field in DocType 'CRM Service Level Agreement' -#: crm/fcrm/doctype/crm_service_level_agreement/crm_service_level_agreement.json +#. Label of the condition (Code) field in PageType 'CRM Service Level Agreement' +#: crm/fcrm/pagetype/crm_service_level_agreement/crm_service_level_agreement.json msgid "Condition" msgstr "" @@ -1352,17 +1352,17 @@ msgstr "" msgid "Connect your email" msgstr "" -#. Label of the contact (Link) field in DocType 'CRM Contacts' -#. Label of the contact (Link) field in DocType 'CRM Deal' -#: crm/fcrm/doctype/crm_contacts/crm_contacts.json -#: crm/fcrm/doctype/crm_deal/crm_deal.json +#. Label of the contact (Link) field in PageType 'CRM Contacts' +#. Label of the contact (Link) field in PageType 'CRM Deal' +#: crm/fcrm/pagetype/crm_contacts/crm_contacts.json +#: crm/fcrm/pagetype/crm_deal/crm_deal.json #: frontend/src/components/Layouts/AppSidebar.vue:552 #: frontend/src/components/Modals/ConvertToDealModal.vue:51 #: frontend/src/pages/MobileLead.vue:145 msgid "Contact" msgstr "" -#: crm/fcrm/doctype/crm_lead/crm_lead.py:212 +#: crm/fcrm/pagetype/crm_lead/crm_lead.py:212 msgid "Contact Already Exists" msgstr "" @@ -1382,7 +1382,7 @@ msgstr "" msgid "Contact already added" msgstr "" -#: crm/fcrm/doctype/crm_lead/crm_lead.py:211 +#: crm/fcrm/pagetype/crm_lead/crm_lead.py:211 msgid "Contact already exists with {0}" msgstr "" @@ -1403,18 +1403,18 @@ msgstr "" msgid "Contact updated" msgstr "" -#. Label of the contacts_tab (Tab Break) field in DocType 'CRM Deal' -#. Label of the contacts (Table) field in DocType 'CRM Deal' -#. Label of a shortcut in the Frappe CRM Workspace -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/workspace/frappe_crm/frappe_crm.json +#. Label of the contacts_tab (Tab Break) field in PageType 'CRM Deal' +#. Label of the contacts (Table) field in PageType 'CRM Deal' +#. Label of a shortcut in the Jingrow CRM Workspace +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/workspace/jingrow_crm/jingrow_crm.json #: frontend/src/pages/Contact.vue:234 frontend/src/pages/MobileContact.vue:212 #: frontend/src/pages/MobileOrganization.vue:331 msgid "Contacts" msgstr "" -#. Label of the content (Text Editor) field in DocType 'FCRM Note' -#: crm/fcrm/doctype/fcrm_note/fcrm_note.json +#. Label of the content (Text Editor) field in PageType 'FCRM Note' +#: crm/fcrm/pagetype/fcrm_note/fcrm_note.json #: frontend/src/components/Modals/NoteModal.vue:33 #: frontend/src/components/Settings/EmailTemplate/EditEmailTemplate.vue:89 #: frontend/src/components/Settings/EmailTemplate/EditEmailTemplate.vue:102 @@ -1454,8 +1454,8 @@ msgstr "" msgid "Convert to Deal" msgstr "" -#. Label of the converted (Check) field in DocType 'CRM Lead' -#: crm/fcrm/doctype/crm_lead/crm_lead.json +#. Label of the converted (Check) field in PageType 'CRM Lead' +#: crm/fcrm/pagetype/crm_lead/crm_lead.json msgid "Converted" msgstr "" @@ -1531,9 +1531,9 @@ msgstr "" msgid "Create an event" msgstr "" -#. Label of the create_customer_on_status_change (Check) field in DocType +#. Label of the create_customer_on_status_change (Check) field in PageType #. 'ERPNext CRM Settings' -#: crm/fcrm/doctype/erpnext_crm_settings/erpnext_crm_settings.json +#: crm/fcrm/pagetype/erpnext_crm_settings/erpnext_crm_settings.json msgid "Create customer on status change" msgstr "" @@ -1558,13 +1558,13 @@ msgstr "" msgid "Create your first task" msgstr "" -#. Label of the currency (Link) field in DocType 'CRM Deal' -#. Label of the currency (Link) field in DocType 'CRM Organization' -#. Label of the currency (Link) field in DocType 'FCRM Settings' -#. Label of the currency_tab (Tab Break) field in DocType 'FCRM Settings' -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_organization/crm_organization.json -#: crm/fcrm/doctype/fcrm_settings/fcrm_settings.json +#. Label of the currency (Link) field in PageType 'CRM Deal' +#. Label of the currency (Link) field in PageType 'CRM Organization' +#. Label of the currency (Link) field in PageType 'FCRM Settings' +#. Label of the currency_tab (Tab Break) field in PageType 'FCRM Settings' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_organization/crm_organization.json +#: crm/fcrm/pagetype/fcrm_settings/fcrm_settings.json #: frontend/src/components/Settings/CurrencySettings.vue:31 msgid "Currency" msgstr "" @@ -1629,13 +1629,13 @@ msgstr "" msgid "Data" msgstr "" -#. Option for the 'Type' (Select) field in DocType 'CRM Fields Layout' -#: crm/fcrm/doctype/crm_fields_layout/crm_fields_layout.json +#. Option for the 'Type' (Select) field in PageType 'CRM Fields Layout' +#: crm/fcrm/pagetype/crm_fields_layout/crm_fields_layout.json msgid "Data Fields" msgstr "" -#. Label of the date (Date) field in DocType 'CRM Holiday' -#: crm/api/dashboard.py:601 crm/fcrm/doctype/crm_holiday/crm_holiday.json +#. Label of the date (Date) field in PageType 'CRM Holiday' +#: crm/api/dashboard.py:601 crm/fcrm/pagetype/crm_holiday/crm_holiday.json #: frontend/src/components/Calendar/CalendarEventPanel.vue:202 msgid "Date" msgstr "" @@ -1658,23 +1658,23 @@ msgstr "" msgid "Deal" msgstr "" -#. Label of the deal_owner (Link) field in DocType 'CRM Deal' -#: crm/fcrm/doctype/crm_deal/crm_deal.json +#. Label of the deal_owner (Link) field in PageType 'CRM Deal' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json msgid "Deal Owner" msgstr "" -#. Label of the deal_status (Link) field in DocType 'ERPNext CRM Settings' -#: crm/fcrm/doctype/erpnext_crm_settings/erpnext_crm_settings.json +#. Label of the deal_status (Link) field in PageType 'ERPNext CRM Settings' +#: crm/fcrm/pagetype/erpnext_crm_settings/erpnext_crm_settings.json msgid "Deal Status" msgstr "" -#. Label of a shortcut in the Frappe CRM Workspace -#: crm/fcrm/workspace/frappe_crm/frappe_crm.json +#. Label of a shortcut in the Jingrow CRM Workspace +#: crm/fcrm/workspace/jingrow_crm/jingrow_crm.json msgid "Deal Statuses" msgstr "" -#. Label of the deal_value (Currency) field in DocType 'CRM Deal' -#: crm/fcrm/doctype/crm_deal/crm_deal.json +#. Label of the deal_value (Currency) field in PageType 'CRM Deal' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json msgid "Deal Value" msgstr "" @@ -1692,8 +1692,8 @@ msgstr "" msgid "Deal value" msgstr "" -#. Label of a shortcut in the Frappe CRM Workspace -#: crm/fcrm/workspace/frappe_crm/frappe_crm.json +#. Label of a shortcut in the Jingrow CRM Workspace +#: crm/fcrm/workspace/jingrow_crm/jingrow_crm.json #: frontend/src/pages/Deal.vue:480 frontend/src/pages/MobileContact.vue:288 #: frontend/src/pages/MobileDeal.vue:384 #: frontend/src/pages/MobileOrganization.vue:325 @@ -1730,8 +1730,8 @@ msgstr "" msgid "Dear {{ lead_name }}, \\n\\nThis is a reminder for the payment of {{ grand_total }}. \\n\\nThanks, \\nFrappé" msgstr "" -#. Label of the default (Check) field in DocType 'CRM Service Level Agreement' -#: crm/fcrm/doctype/crm_service_level_agreement/crm_service_level_agreement.json +#. Label of the default (Check) field in PageType 'CRM Service Level Agreement' +#: crm/fcrm/pagetype/crm_service_level_agreement/crm_service_level_agreement.json msgid "Default" msgstr "" @@ -1743,8 +1743,8 @@ msgstr "" msgid "Default Incoming" msgstr "" -#. Label of the default_medium (Select) field in DocType 'CRM Telephony Agent' -#: crm/fcrm/doctype/crm_telephony_agent/crm_telephony_agent.json +#. Label of the default_medium (Select) field in PageType 'CRM Telephony Agent' +#: crm/fcrm/pagetype/crm_telephony_agent/crm_telephony_agent.json msgid "Default Medium" msgstr "" @@ -1752,9 +1752,9 @@ msgstr "" msgid "Default Outgoing" msgstr "" -#. Label of the default_priority (Check) field in DocType 'CRM Service Level +#. Label of the default_priority (Check) field in PageType 'CRM Service Level #. Priority' -#: crm/fcrm/doctype/crm_service_level_priority/crm_service_level_priority.json +#: crm/fcrm/pagetype/crm_service_level_priority/crm_service_level_priority.json msgid "Default Priority" msgstr "" @@ -1766,7 +1766,7 @@ msgstr "" msgid "Default Sending and Inbox" msgstr "" -#: crm/fcrm/doctype/crm_service_level_agreement/crm_service_level_agreement.py:33 +#: crm/fcrm/pagetype/crm_service_level_agreement/crm_service_level_agreement.py:33 msgid "Default Service Level Agreement already exists for {0}" msgstr "" @@ -1786,8 +1786,8 @@ msgstr "" msgid "Default medium" msgstr "" -#: crm/fcrm/doctype/fcrm_settings/fcrm_settings.js:18 -#: crm/fcrm/doctype/fcrm_settings/fcrm_settings.js:30 +#: crm/fcrm/pagetype/fcrm_settings/fcrm_settings.js:18 +#: crm/fcrm/pagetype/fcrm_settings/fcrm_settings.js:30 msgid "Default statuses, custom fields and layouts restored successfully." msgstr "" @@ -1823,7 +1823,7 @@ msgstr "" msgid "Delete" msgstr "" -#: crm/fcrm/doctype/fcrm_settings/fcrm_settings.js:26 +#: crm/fcrm/pagetype/fcrm_settings/fcrm_settings.js:26 msgid "Delete & Restore" msgstr "" @@ -1881,14 +1881,14 @@ msgstr "" msgid "Delete {0} items" msgstr "" -#. Label of the description (Text Editor) field in DocType 'CRM Holiday' -#. Label of the description (Text Editor) field in DocType 'CRM Lost Reason' -#. Label of the description (Text Editor) field in DocType 'CRM Product' -#. Label of the description (Text Editor) field in DocType 'CRM Task' -#: crm/fcrm/doctype/crm_holiday/crm_holiday.json -#: crm/fcrm/doctype/crm_lost_reason/crm_lost_reason.json -#: crm/fcrm/doctype/crm_product/crm_product.json -#: crm/fcrm/doctype/crm_task/crm_task.json +#. Label of the description (Text Editor) field in PageType 'CRM Holiday' +#. Label of the description (Text Editor) field in PageType 'CRM Lost Reason' +#. Label of the description (Text Editor) field in PageType 'CRM Product' +#. Label of the description (Text Editor) field in PageType 'CRM Task' +#: crm/fcrm/pagetype/crm_holiday/crm_holiday.json +#: crm/fcrm/pagetype/crm_lost_reason/crm_lost_reason.json +#: crm/fcrm/pagetype/crm_product/crm_product.json +#: crm/fcrm/pagetype/crm_task/crm_task.json #: frontend/src/components/Calendar/CalendarEventPanel.vue:152 #: frontend/src/components/Modals/EventModal.vue:134 #: frontend/src/components/Modals/TaskModal.vue:36 @@ -1905,29 +1905,29 @@ msgstr "" msgid "Desk" msgstr "" -#. Label of the details (Tab Break) field in DocType 'CRM Lead' -#. Label of the details (Text Editor) field in DocType 'CRM Lead Source' -#: crm/fcrm/doctype/crm_lead/crm_lead.json -#: crm/fcrm/doctype/crm_lead_source/crm_lead_source.json +#. Label of the details (Tab Break) field in PageType 'CRM Lead' +#. Label of the details (Text Editor) field in PageType 'CRM Lead Source' +#: crm/fcrm/pagetype/crm_lead/crm_lead.json +#: crm/fcrm/pagetype/crm_lead_source/crm_lead_source.json #: frontend/src/pages/MobileContact.vue:283 #: frontend/src/pages/MobileDeal.vue:424 frontend/src/pages/MobileLead.vue:331 #: frontend/src/pages/MobileOrganization.vue:320 msgid "Details" msgstr "" -#. Label of the call_receiving_device (Select) field in DocType 'CRM Telephony +#. Label of the call_receiving_device (Select) field in PageType 'CRM Telephony #. Agent' -#: crm/fcrm/doctype/crm_telephony_agent/crm_telephony_agent.json +#: crm/fcrm/pagetype/crm_telephony_agent/crm_telephony_agent.json #: frontend/src/components/FilesUploader/FilesUploaderArea.vue:39 msgid "Device" msgstr "" -#: crm/fcrm/doctype/crm_form_script/crm_form_script.js:30 +#: crm/fcrm/pagetype/crm_form_script/crm_form_script.js:30 msgid "Disable" msgstr "" -#. Label of the disabled (Check) field in DocType 'CRM Product' -#: crm/fcrm/doctype/crm_product/crm_product.json +#. Label of the disabled (Check) field in PageType 'CRM Product' +#: crm/fcrm/pagetype/crm_product/crm_product.json msgid "Disabled" msgstr "" @@ -1941,27 +1941,27 @@ msgstr "" msgid "Discard unsaved changes?" msgstr "" -#. Label of the discount_percentage (Percent) field in DocType 'CRM Products' -#: crm/fcrm/doctype/crm_products/crm_products.json +#. Label of the discount_percentage (Percent) field in PageType 'CRM Products' +#: crm/fcrm/pagetype/crm_products/crm_products.json msgid "Discount %" msgstr "" -#. Label of the discount_amount (Currency) field in DocType 'CRM Products' -#: crm/fcrm/doctype/crm_products/crm_products.json +#. Label of the discount_amount (Currency) field in PageType 'CRM Products' +#: crm/fcrm/pagetype/crm_products/crm_products.json msgid "Discount Amount" msgstr "" -#. Label of the dt (Link) field in DocType 'CRM Form Script' -#. Label of the dt (Link) field in DocType 'CRM Global Settings' -#. Label of the dt (Link) field in DocType 'CRM View Settings' -#: crm/fcrm/doctype/crm_form_script/crm_form_script.json -#: crm/fcrm/doctype/crm_global_settings/crm_global_settings.json -#: crm/fcrm/doctype/crm_view_settings/crm_view_settings.json -msgid "DocType" +#. Label of the dt (Link) field in PageType 'CRM Form Script' +#. Label of the dt (Link) field in PageType 'CRM Global Settings' +#. Label of the dt (Link) field in PageType 'CRM View Settings' +#: crm/fcrm/pagetype/crm_form_script/crm_form_script.json +#: crm/fcrm/pagetype/crm_global_settings/crm_global_settings.json +#: crm/fcrm/pagetype/crm_view_settings/crm_view_settings.json +msgid "PageType" msgstr "" -#. Label of the dt (Link) field in DocType 'CRM Fields Layout' -#: crm/fcrm/doctype/crm_fields_layout/crm_fields_layout.json +#. Label of the dt (Link) field in PageType 'CRM Fields Layout' +#: crm/fcrm/pagetype/crm_fields_layout/crm_fields_layout.json msgid "Document Type" msgstr "" @@ -1981,8 +1981,8 @@ msgstr "" msgid "Documentation" msgstr "" -#. Option for the 'Status' (Select) field in DocType 'CRM Task' -#: crm/fcrm/doctype/crm_task/crm_task.json +#. Option for the 'Status' (Select) field in PageType 'CRM Task' +#: crm/fcrm/pagetype/crm_task/crm_task.json msgid "Done" msgstr "" @@ -2004,13 +2004,13 @@ msgstr "" msgid "Drop files here" msgstr "" -#. Label of the dropdown_items_tab (Tab Break) field in DocType 'FCRM Settings' -#: crm/fcrm/doctype/fcrm_settings/fcrm_settings.json +#. Label of the dropdown_items_tab (Tab Break) field in PageType 'FCRM Settings' +#: crm/fcrm/pagetype/fcrm_settings/fcrm_settings.json msgid "Dropdown Items" msgstr "" -#. Label of the due_date (Datetime) field in DocType 'CRM Task' -#: crm/fcrm/doctype/crm_task/crm_task.json +#. Label of the due_date (Datetime) field in PageType 'CRM Task' +#: crm/fcrm/pagetype/crm_task/crm_task.json msgid "Due Date" msgstr "" @@ -2046,10 +2046,10 @@ msgstr "" msgid "Duplicate template" msgstr "" -#. Label of the duration (Duration) field in DocType 'CRM Call Log' -#. Label of the duration (Duration) field in DocType 'CRM Status Change Log' -#: crm/fcrm/doctype/crm_call_log/crm_call_log.json -#: crm/fcrm/doctype/crm_status_change_log/crm_status_change_log.json +#. Label of the duration (Duration) field in PageType 'CRM Call Log' +#. Label of the duration (Duration) field in PageType 'CRM Status Change Log' +#: crm/fcrm/pagetype/crm_call_log/crm_call_log.json +#: crm/fcrm/pagetype/crm_status_change_log/crm_status_change_log.json msgid "Duration" msgstr "" @@ -2058,28 +2058,28 @@ msgstr "" msgid "ERPNext" msgstr "" -#. Name of a DocType -#: crm/fcrm/doctype/erpnext_crm_settings/erpnext_crm_settings.json +#. Name of a PageType +#: crm/fcrm/pagetype/erpnext_crm_settings/erpnext_crm_settings.json msgid "ERPNext CRM Settings" msgstr "" -#. Label of the section_break_oubd (Section Break) field in DocType 'ERPNext +#. Label of the section_break_oubd (Section Break) field in PageType 'ERPNext #. CRM Settings' -#: crm/fcrm/doctype/erpnext_crm_settings/erpnext_crm_settings.json +#: crm/fcrm/pagetype/erpnext_crm_settings/erpnext_crm_settings.json msgid "ERPNext Site API's" msgstr "" -#. Label of the erpnext_site_url (Data) field in DocType 'ERPNext CRM Settings' -#: crm/fcrm/doctype/erpnext_crm_settings/erpnext_crm_settings.json +#. Label of the erpnext_site_url (Data) field in PageType 'ERPNext CRM Settings' +#: crm/fcrm/pagetype/erpnext_crm_settings/erpnext_crm_settings.json msgid "ERPNext Site URL" msgstr "" -#: crm/fcrm/doctype/erpnext_crm_settings/erpnext_crm_settings.py:25 +#: crm/fcrm/pagetype/erpnext_crm_settings/erpnext_crm_settings.py:25 msgid "ERPNext is not installed in the current site" msgstr "" -#: crm/fcrm/doctype/erpnext_crm_settings/erpnext_crm_settings.py:98 -#: crm/fcrm/doctype/erpnext_crm_settings/erpnext_crm_settings.py:124 +#: crm/fcrm/pagetype/erpnext_crm_settings/erpnext_crm_settings.py:98 +#: crm/fcrm/pagetype/erpnext_crm_settings/erpnext_crm_settings.py:124 msgid "ERPNext is not integrated with the CRM" msgstr "" @@ -2189,12 +2189,12 @@ msgstr "" msgid "Editing event" msgstr "" -#. Label of the email (Data) field in DocType 'CRM Contacts' -#. Label of the email (Data) field in DocType 'CRM Invitation' -#. Label of the email (Data) field in DocType 'CRM Lead' -#: crm/fcrm/doctype/crm_contacts/crm_contacts.json -#: crm/fcrm/doctype/crm_invitation/crm_invitation.json -#: crm/fcrm/doctype/crm_lead/crm_lead.json frontend/src/pages/Contact.vue:510 +#. Label of the email (Data) field in PageType 'CRM Contacts' +#. Label of the email (Data) field in PageType 'CRM Invitation' +#. Label of the email (Data) field in PageType 'CRM Lead' +#: crm/fcrm/pagetype/crm_contacts/crm_contacts.json +#: crm/fcrm/pagetype/crm_invitation/crm_invitation.json +#: crm/fcrm/pagetype/crm_lead/crm_lead.json frontend/src/pages/Contact.vue:510 #: frontend/src/pages/MobileContact.vue:518 #: frontend/src/pages/MobileOrganization.vue:462 #: frontend/src/pages/MobileOrganization.vue:490 @@ -2211,8 +2211,8 @@ msgstr "" msgid "Email ID is required" msgstr "" -#. Label of the email_sent_at (Datetime) field in DocType 'CRM Invitation' -#: crm/fcrm/doctype/crm_invitation/crm_invitation.json +#. Label of the email_sent_at (Datetime) field in PageType 'CRM Invitation' +#: crm/fcrm/pagetype/crm_invitation/crm_invitation.json msgid "Email Sent At" msgstr "" @@ -2270,12 +2270,12 @@ msgstr "" msgid "Empty - Choose a field to sort by" msgstr "" -#: crm/fcrm/doctype/crm_form_script/crm_form_script.js:30 +#: crm/fcrm/pagetype/crm_form_script/crm_form_script.js:30 msgid "Enable" msgstr "" -#. Label of the enable_forecasting (Check) field in DocType 'FCRM Settings' -#: crm/fcrm/doctype/fcrm_settings/fcrm_settings.json +#. Label of the enable_forecasting (Check) field in PageType 'FCRM Settings' +#: crm/fcrm/pagetype/fcrm_settings/fcrm_settings.json msgid "Enable Forecasting" msgstr "" @@ -2291,18 +2291,18 @@ msgstr "" msgid "Enable forecasting" msgstr "" -#. Label of the enabled (Check) field in DocType 'CRM Exotel Settings' -#. Label of the enabled (Check) field in DocType 'CRM Form Script' -#. Label of the enabled (Check) field in DocType 'CRM Service Level Agreement' -#. Label of the enabled (Check) field in DocType 'CRM Twilio Settings' -#. Label of the enabled (Check) field in DocType 'ERPNext CRM Settings' -#. Label of the enabled (Check) field in DocType 'Helpdesk CRM Settings' -#: crm/fcrm/doctype/crm_exotel_settings/crm_exotel_settings.json -#: crm/fcrm/doctype/crm_form_script/crm_form_script.json -#: crm/fcrm/doctype/crm_service_level_agreement/crm_service_level_agreement.json -#: crm/fcrm/doctype/crm_twilio_settings/crm_twilio_settings.json -#: crm/fcrm/doctype/erpnext_crm_settings/erpnext_crm_settings.json -#: crm/fcrm/doctype/helpdesk_crm_settings/helpdesk_crm_settings.json +#. Label of the enabled (Check) field in PageType 'CRM Exotel Settings' +#. Label of the enabled (Check) field in PageType 'CRM Form Script' +#. Label of the enabled (Check) field in PageType 'CRM Service Level Agreement' +#. Label of the enabled (Check) field in PageType 'CRM Twilio Settings' +#. Label of the enabled (Check) field in PageType 'ERPNext CRM Settings' +#. Label of the enabled (Check) field in PageType 'Helpdesk CRM Settings' +#: crm/fcrm/pagetype/crm_exotel_settings/crm_exotel_settings.json +#: crm/fcrm/pagetype/crm_form_script/crm_form_script.json +#: crm/fcrm/pagetype/crm_service_level_agreement/crm_service_level_agreement.json +#: crm/fcrm/pagetype/crm_twilio_settings/crm_twilio_settings.json +#: crm/fcrm/pagetype/erpnext_crm_settings/erpnext_crm_settings.json +#: crm/fcrm/pagetype/helpdesk_crm_settings/helpdesk_crm_settings.json #: frontend/src/components/Settings/AssignmentRules/AssignmentRuleView.vue:32 #: frontend/src/components/Settings/AssignmentRules/AssignmentRulesList.vue:21 #: frontend/src/components/Settings/EmailTemplate/EditEmailTemplate.vue:18 @@ -2311,15 +2311,15 @@ msgstr "" msgid "Enabled" msgstr "" -#. Label of the end_date (Date) field in DocType 'CRM Service Level Agreement' -#: crm/fcrm/doctype/crm_service_level_agreement/crm_service_level_agreement.json +#. Label of the end_date (Date) field in PageType 'CRM Service Level Agreement' +#: crm/fcrm/pagetype/crm_service_level_agreement/crm_service_level_agreement.json msgid "End Date" msgstr "" -#. Label of the end_time (Datetime) field in DocType 'CRM Call Log' -#. Label of the end_time (Time) field in DocType 'CRM Service Day' -#: crm/fcrm/doctype/crm_call_log/crm_call_log.json -#: crm/fcrm/doctype/crm_service_day/crm_service_day.json +#. Label of the end_time (Datetime) field in PageType 'CRM Call Log' +#. Label of the end_time (Time) field in PageType 'CRM Service Day' +#: crm/fcrm/pagetype/crm_call_log/crm_call_log.json +#: crm/fcrm/pagetype/crm_service_day/crm_service_day.json #: frontend/src/components/Calendar/CalendarEventPanel.vue:242 #: frontend/src/components/Modals/EventModal.vue:112 msgid "End Time" @@ -2360,15 +2360,15 @@ msgstr "" msgid "Error updating field" msgstr "" -#: crm/fcrm/doctype/erpnext_crm_settings/erpnext_crm_settings.py:279 +#: crm/fcrm/pagetype/erpnext_crm_settings/erpnext_crm_settings.py:279 msgid "Error while creating customer in ERPNext, check error log for more details" msgstr "" -#: crm/fcrm/doctype/erpnext_crm_settings/erpnext_crm_settings.py:191 +#: crm/fcrm/pagetype/erpnext_crm_settings/erpnext_crm_settings.py:191 msgid "Error while creating prospect in ERPNext, check error log for more details" msgstr "" -#: crm/fcrm/doctype/erpnext_crm_settings/erpnext_crm_settings.py:117 +#: crm/fcrm/pagetype/erpnext_crm_settings/erpnext_crm_settings.py:117 msgid "Error while fetching customer in ERPNext, check error log for more details" msgstr "" @@ -2393,16 +2393,16 @@ msgstr "" msgid "Excel" msgstr "" -#. Label of the exchange_rate (Float) field in DocType 'CRM Deal' -#. Label of the exchange_rate (Float) field in DocType 'CRM Organization' -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_organization/crm_organization.json +#. Label of the exchange_rate (Float) field in PageType 'CRM Deal' +#. Label of the exchange_rate (Float) field in PageType 'CRM Organization' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_organization/crm_organization.json msgid "Exchange Rate" msgstr "" -#. Label of the exchange_rate_provider_section (Section Break) field in DocType +#. Label of the exchange_rate_provider_section (Section Break) field in PageType #. 'FCRM Settings' -#: crm/fcrm/doctype/fcrm_settings/fcrm_settings.json +#: crm/fcrm/pagetype/fcrm_settings/fcrm_settings.json msgid "Exchange Rate Provider" msgstr "" @@ -2410,12 +2410,12 @@ msgstr "" msgid "Exchange rate provider" msgstr "" -#. Option for the 'Telephony Medium' (Select) field in DocType 'CRM Call Log' -#. Label of the exotel (Check) field in DocType 'CRM Telephony Agent' -#. Option for the 'Default Medium' (Select) field in DocType 'CRM Telephony +#. Option for the 'Telephony Medium' (Select) field in PageType 'CRM Call Log' +#. Label of the exotel (Check) field in PageType 'CRM Telephony Agent' +#. Option for the 'Default Medium' (Select) field in PageType 'CRM Telephony #. Agent' -#: crm/fcrm/doctype/crm_call_log/crm_call_log.json -#: crm/fcrm/doctype/crm_telephony_agent/crm_telephony_agent.json +#: crm/fcrm/pagetype/crm_call_log/crm_call_log.json +#: crm/fcrm/pagetype/crm_telephony_agent/crm_telephony_agent.json #: frontend/src/components/Layouts/AppSidebar.vue:602 #: frontend/src/components/Settings/TelephonySettings.vue:41 #: frontend/src/components/Settings/TelephonySettings.vue:63 @@ -2426,8 +2426,8 @@ msgstr "" msgid "Exotel Exception" msgstr "" -#. Label of the exotel_number (Data) field in DocType 'CRM Telephony Agent' -#: crm/fcrm/doctype/crm_telephony_agent/crm_telephony_agent.json +#. Label of the exotel_number (Data) field in PageType 'CRM Telephony Agent' +#: crm/fcrm/pagetype/crm_telephony_agent/crm_telephony_agent.json msgid "Exotel Number" msgstr "" @@ -2451,26 +2451,26 @@ msgstr "" msgid "Expand" msgstr "" -#. Label of the expected_closure_date (Date) field in DocType 'CRM Deal' -#: crm/fcrm/doctype/crm_deal/crm_deal.json +#. Label of the expected_closure_date (Date) field in PageType 'CRM Deal' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json msgid "Expected Closure Date" msgstr "" -#: crm/fcrm/doctype/crm_deal/crm_deal.py:173 +#: crm/fcrm/pagetype/crm_deal/crm_deal.py:173 msgid "Expected Closure Date is required." msgstr "" -#. Label of the expected_deal_value (Currency) field in DocType 'CRM Deal' -#: crm/fcrm/doctype/crm_deal/crm_deal.json +#. Label of the expected_deal_value (Currency) field in PageType 'CRM Deal' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json msgid "Expected Deal Value" msgstr "" -#: crm/fcrm/doctype/crm_deal/crm_deal.py:171 +#: crm/fcrm/pagetype/crm_deal/crm_deal.py:171 msgid "Expected Deal Value is required." msgstr "" -#. Option for the 'Status' (Select) field in DocType 'CRM Invitation' -#: crm/fcrm/doctype/crm_invitation/crm_invitation.json +#. Option for the 'Status' (Select) field in PageType 'CRM Invitation' +#: crm/fcrm/pagetype/crm_invitation/crm_invitation.json msgid "Expired" msgstr "" @@ -2487,22 +2487,22 @@ msgstr "" msgid "Export Type" msgstr "" -#. Name of a DocType -#: crm/fcrm/doctype/fcrm_note/fcrm_note.json +#. Name of a PageType +#: crm/fcrm/pagetype/fcrm_note/fcrm_note.json msgid "FCRM Note" msgstr "" -#. Name of a DocType -#: crm/fcrm/doctype/fcrm_settings/fcrm_settings.json +#. Name of a PageType +#: crm/fcrm/pagetype/fcrm_settings/fcrm_settings.json msgid "FCRM Settings" msgstr "" -#. Option for the 'Status' (Select) field in DocType 'CRM Call Log' -#. Option for the 'SLA Status' (Select) field in DocType 'CRM Deal' -#. Option for the 'SLA Status' (Select) field in DocType 'CRM Lead' -#: crm/fcrm/doctype/crm_call_log/crm_call_log.json -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_lead/crm_lead.json +#. Option for the 'Status' (Select) field in PageType 'CRM Call Log' +#. Option for the 'SLA Status' (Select) field in PageType 'CRM Deal' +#. Option for the 'SLA Status' (Select) field in PageType 'CRM Lead' +#: crm/fcrm/pagetype/crm_call_log/crm_call_log.json +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_lead/crm_lead.json msgid "Failed" msgstr "" @@ -2526,7 +2526,7 @@ msgstr "" msgid "Failed to delete template" msgstr "" -#: crm/fcrm/doctype/fcrm_settings/fcrm_settings.py:205 +#: crm/fcrm/pagetype/fcrm_settings/fcrm_settings.py:205 msgid "Failed to fetch exchange rate from {0} to {1} on {2}. Please check your internet connection or try again later." msgstr "" @@ -2559,8 +2559,8 @@ msgstr "" msgid "Failed to update template" msgstr "" -#. Label of the favicon (Attach) field in DocType 'FCRM Settings' -#: crm/fcrm/doctype/fcrm_settings/fcrm_settings.json +#. Label of the favicon (Attach) field in PageType 'FCRM Settings' +#: crm/fcrm/pagetype/fcrm_settings/fcrm_settings.json #: frontend/src/components/Settings/BrandSettings.vue:87 msgid "Favicon" msgstr "" @@ -2584,23 +2584,23 @@ msgid "File \"{0}\" was skipped because only {1} uploads are allowed" msgstr "" #: frontend/src/components/FilesUploader/FilesUploaderArea.vue:359 -msgid "File \"{0}\" was skipped because only {1} uploads are allowed for DocType \"{2}\"" +msgid "File \"{0}\" was skipped because only {1} uploads are allowed for PageType \"{2}\"" msgstr "" #: frontend/src/components/Filter.vue:6 msgid "Filter" msgstr "" -#. Label of the filters (Code) field in DocType 'CRM View Settings' -#. Label of the filters_tab (Tab Break) field in DocType 'CRM View Settings' -#: crm/fcrm/doctype/crm_view_settings/crm_view_settings.json +#. Label of the filters (Code) field in PageType 'CRM View Settings' +#. Label of the filters_tab (Tab Break) field in PageType 'CRM View Settings' +#: crm/fcrm/pagetype/crm_view_settings/crm_view_settings.json msgid "Filters" msgstr "" -#. Label of the first_name (Data) field in DocType 'CRM Deal' -#. Label of the first_name (Data) field in DocType 'CRM Lead' -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_lead/crm_lead.json +#. Label of the first_name (Data) field in PageType 'CRM Deal' +#. Label of the first_name (Data) field in PageType 'CRM Lead' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_lead/crm_lead.json #: frontend/src/components/ColumnSettings.vue:103 #: frontend/src/components/Filter.vue:57 frontend/src/components/Filter.vue:88 #: frontend/src/components/SortBy.vue:6 frontend/src/components/SortBy.vue:103 @@ -2612,30 +2612,30 @@ msgstr "" msgid "First Name is mandatory" msgstr "" -#. Label of the first_responded_on (Datetime) field in DocType 'CRM Deal' -#. Label of the first_responded_on (Datetime) field in DocType 'CRM Lead' -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_lead/crm_lead.json +#. Label of the first_responded_on (Datetime) field in PageType 'CRM Deal' +#. Label of the first_responded_on (Datetime) field in PageType 'CRM Lead' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_lead/crm_lead.json msgid "First Responded On" msgstr "" -#. Option for the 'SLA Status' (Select) field in DocType 'CRM Deal' -#. Option for the 'SLA Status' (Select) field in DocType 'CRM Lead' -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_lead/crm_lead.json +#. Option for the 'SLA Status' (Select) field in PageType 'CRM Deal' +#. Option for the 'SLA Status' (Select) field in PageType 'CRM Lead' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_lead/crm_lead.json msgid "First Response Due" msgstr "" -#. Label of the first_response_time (Duration) field in DocType 'CRM Service +#. Label of the first_response_time (Duration) field in PageType 'CRM Service #. Level Priority' -#: crm/fcrm/doctype/crm_service_level_priority/crm_service_level_priority.json +#: crm/fcrm/pagetype/crm_service_level_priority/crm_service_level_priority.json msgid "First Response TIme" msgstr "" -#. Label of the first_response_time (Duration) field in DocType 'CRM Deal' -#. Label of the first_response_time (Duration) field in DocType 'CRM Lead' -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_lead/crm_lead.json +#. Label of the first_response_time (Duration) field in PageType 'CRM Deal' +#. Label of the first_response_time (Duration) field in PageType 'CRM Lead' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_lead/crm_lead.json msgid "First Response Time" msgstr "" @@ -2668,66 +2668,66 @@ msgstr "" msgid "Forecasting enabled successfully" msgstr "" -#. Option for the 'Apply To' (Select) field in DocType 'CRM Form Script' -#: crm/fcrm/doctype/crm_form_script/crm_form_script.json +#. Option for the 'Apply To' (Select) field in PageType 'CRM Form Script' +#: crm/fcrm/pagetype/crm_form_script/crm_form_script.json msgid "Form" msgstr "" -#: crm/fcrm/doctype/erpnext_crm_settings/erpnext_crm_settings.js:19 +#: crm/fcrm/pagetype/erpnext_crm_settings/erpnext_crm_settings.js:19 msgid "Form Script updated successfully" msgstr "" #. Name of a Workspace -#: crm/fcrm/workspace/frappe_crm/frappe_crm.json -msgid "Frappe CRM" +#: crm/fcrm/workspace/jingrow_crm/jingrow_crm.json +msgid "Jingrow CRM" msgstr "" #: frontend/src/components/Layouts/AppSidebar.vue:608 -msgid "Frappe CRM mobile" +msgid "Jingrow CRM mobile" msgstr "" -#. Option for the 'Weekly Off' (Select) field in DocType 'CRM Holiday List' -#. Option for the 'Workday' (Select) field in DocType 'CRM Service Day' -#: crm/fcrm/doctype/crm_holiday_list/crm_holiday_list.json -#: crm/fcrm/doctype/crm_service_day/crm_service_day.json +#. Option for the 'Weekly Off' (Select) field in PageType 'CRM Holiday List' +#. Option for the 'Workday' (Select) field in PageType 'CRM Service Day' +#: crm/fcrm/pagetype/crm_holiday_list/crm_holiday_list.json +#: crm/fcrm/pagetype/crm_service_day/crm_service_day.json msgid "Friday" msgstr "" -#. Label of the from (Data) field in DocType 'CRM Call Log' -#. Label of the from (Data) field in DocType 'CRM Status Change Log' -#: crm/fcrm/doctype/crm_call_log/crm_call_log.json -#: crm/fcrm/doctype/crm_status_change_log/crm_status_change_log.json +#. Label of the from (Data) field in PageType 'CRM Call Log' +#. Label of the from (Data) field in PageType 'CRM Status Change Log' +#: crm/fcrm/pagetype/crm_call_log/crm_call_log.json +#: crm/fcrm/pagetype/crm_status_change_log/crm_status_change_log.json msgid "From" msgstr "" -#. Label of the from_date (Date) field in DocType 'CRM Holiday List' -#. Label of the from_date (Datetime) field in DocType 'CRM Status Change Log' -#: crm/fcrm/doctype/crm_holiday_list/crm_holiday_list.json -#: crm/fcrm/doctype/crm_status_change_log/crm_status_change_log.json +#. Label of the from_date (Date) field in PageType 'CRM Holiday List' +#. Label of the from_date (Datetime) field in PageType 'CRM Status Change Log' +#: crm/fcrm/pagetype/crm_holiday_list/crm_holiday_list.json +#: crm/fcrm/pagetype/crm_status_change_log/crm_status_change_log.json msgid "From Date" msgstr "" -#. Label of the from_type (Data) field in DocType 'CRM Status Change Log' -#: crm/fcrm/doctype/crm_status_change_log/crm_status_change_log.json +#. Label of the from_type (Data) field in PageType 'CRM Status Change Log' +#: crm/fcrm/pagetype/crm_status_change_log/crm_status_change_log.json msgid "From Type" msgstr "" -#. Label of the from_user (Link) field in DocType 'CRM Notification' -#: crm/fcrm/doctype/crm_notification/crm_notification.json +#. Label of the from_user (Link) field in PageType 'CRM Notification' +#: crm/fcrm/pagetype/crm_notification/crm_notification.json msgid "From User" msgstr "" -#. Option for the 'SLA Status' (Select) field in DocType 'CRM Deal' -#. Option for the 'SLA Status' (Select) field in DocType 'CRM Lead' -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_lead/crm_lead.json +#. Option for the 'SLA Status' (Select) field in PageType 'CRM Deal' +#. Option for the 'SLA Status' (Select) field in PageType 'CRM Lead' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_lead/crm_lead.json msgid "Fulfilled" msgstr "" -#. Label of the full_name (Data) field in DocType 'CRM Contacts' -#. Label of the lead_name (Data) field in DocType 'CRM Lead' -#: crm/fcrm/doctype/crm_contacts/crm_contacts.json -#: crm/fcrm/doctype/crm_lead/crm_lead.json +#. Label of the full_name (Data) field in PageType 'CRM Contacts' +#. Label of the lead_name (Data) field in PageType 'CRM Lead' +#: crm/fcrm/pagetype/crm_contacts/crm_contacts.json +#: crm/fcrm/pagetype/crm_lead/crm_lead.json msgid "Full Name" msgstr "" @@ -2740,12 +2740,12 @@ msgstr "" msgid "GMT+5:30" msgstr "" -#. Label of the gender (Link) field in DocType 'CRM Contacts' -#. Label of the gender (Link) field in DocType 'CRM Deal' -#. Label of the gender (Link) field in DocType 'CRM Lead' -#: crm/fcrm/doctype/crm_contacts/crm_contacts.json -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_lead/crm_lead.json +#. Label of the gender (Link) field in PageType 'CRM Contacts' +#. Label of the gender (Link) field in PageType 'CRM Deal' +#. Label of the gender (Link) field in PageType 'CRM Lead' +#: crm/fcrm/pagetype/crm_contacts/crm_contacts.json +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_lead/crm_lead.json msgid "Gender" msgstr "" @@ -2769,20 +2769,20 @@ msgstr "" msgid "Go to website" msgstr "" -#. Option for the 'Type' (Select) field in DocType 'CRM Fields Layout' -#: crm/fcrm/doctype/crm_fields_layout/crm_fields_layout.json +#. Option for the 'Type' (Select) field in PageType 'CRM Fields Layout' +#: crm/fcrm/pagetype/crm_fields_layout/crm_fields_layout.json msgid "Grid Row" msgstr "" -#. Label of the group_by_tab (Tab Break) field in DocType 'CRM View Settings' -#: crm/fcrm/doctype/crm_view_settings/crm_view_settings.json +#. Label of the group_by_tab (Tab Break) field in PageType 'CRM View Settings' +#: crm/fcrm/pagetype/crm_view_settings/crm_view_settings.json #: frontend/src/components/ViewControls.vue:379 #: frontend/src/components/ViewControls.vue:611 frontend/src/utils/view.js:16 msgid "Group By" msgstr "" -#. Label of the group_by_field (Data) field in DocType 'CRM View Settings' -#: crm/fcrm/doctype/crm_view_settings/crm_view_settings.json +#. Label of the group_by_field (Data) field in PageType 'CRM View Settings' +#: crm/fcrm/pagetype/crm_view_settings/crm_view_settings.json msgid "Group By Field" msgstr "" @@ -2806,28 +2806,28 @@ msgstr "" msgid "Helpdesk" msgstr "" -#. Name of a DocType -#: crm/fcrm/doctype/helpdesk_crm_settings/helpdesk_crm_settings.json +#. Name of a PageType +#: crm/fcrm/pagetype/helpdesk_crm_settings/helpdesk_crm_settings.json msgid "Helpdesk CRM Settings" msgstr "" -#. Label of the helpdesk_site_apis_section (Section Break) field in DocType +#. Label of the helpdesk_site_apis_section (Section Break) field in PageType #. 'Helpdesk CRM Settings' -#: crm/fcrm/doctype/helpdesk_crm_settings/helpdesk_crm_settings.json +#: crm/fcrm/pagetype/helpdesk_crm_settings/helpdesk_crm_settings.json msgid "Helpdesk Site API's" msgstr "" -#. Label of the helpdesk_site_url (Data) field in DocType 'Helpdesk CRM +#. Label of the helpdesk_site_url (Data) field in PageType 'Helpdesk CRM #. Settings' -#: crm/fcrm/doctype/helpdesk_crm_settings/helpdesk_crm_settings.json +#: crm/fcrm/pagetype/helpdesk_crm_settings/helpdesk_crm_settings.json msgid "Helpdesk Site URL" msgstr "" -#: crm/fcrm/doctype/helpdesk_crm_settings/helpdesk_crm_settings.py:18 +#: crm/fcrm/pagetype/helpdesk_crm_settings/helpdesk_crm_settings.py:18 msgid "Helpdesk is not installed in the current site" msgstr "" -#: crm/fcrm/doctype/helpdesk_crm_settings/helpdesk_crm_settings.py:40 +#: crm/fcrm/pagetype/helpdesk_crm_settings/helpdesk_crm_settings.py:40 msgid "Helpdesk is not integrated with the CRM" msgstr "" @@ -2843,8 +2843,8 @@ msgstr "" msgid "Hi John, \\n\\nCan you please provide more details on this..." msgstr "" -#. Label of the hidden (Check) field in DocType 'CRM Dropdown Item' -#: crm/fcrm/doctype/crm_dropdown_item/crm_dropdown_item.json +#. Label of the hidden (Check) field in PageType 'CRM Dropdown Item' +#: crm/fcrm/pagetype/crm_dropdown_item/crm_dropdown_item.json msgid "Hidden" msgstr "" @@ -2875,26 +2875,26 @@ msgstr "" msgid "Hide preview" msgstr "" -#. Option for the 'Priority' (Select) field in DocType 'CRM Task' -#: crm/fcrm/doctype/crm_task/crm_task.json +#. Option for the 'Priority' (Select) field in PageType 'CRM Task' +#: crm/fcrm/pagetype/crm_task/crm_task.json msgid "High" msgstr "" -#. Label of the holiday_list (Link) field in DocType 'CRM Service Level +#. Label of the holiday_list (Link) field in PageType 'CRM Service Level #. Agreement' -#: crm/fcrm/doctype/crm_service_level_agreement/crm_service_level_agreement.json +#: crm/fcrm/pagetype/crm_service_level_agreement/crm_service_level_agreement.json msgid "Holiday List" msgstr "" -#. Label of the holiday_list_name (Data) field in DocType 'CRM Holiday List' -#: crm/fcrm/doctype/crm_holiday_list/crm_holiday_list.json +#. Label of the holiday_list_name (Data) field in PageType 'CRM Holiday List' +#: crm/fcrm/pagetype/crm_holiday_list/crm_holiday_list.json msgid "Holiday List Name" msgstr "" -#. Label of the holidays_section (Section Break) field in DocType 'CRM Holiday +#. Label of the holidays_section (Section Break) field in PageType 'CRM Holiday #. List' -#. Label of the holidays (Table) field in DocType 'CRM Holiday List' -#: crm/fcrm/doctype/crm_holiday_list/crm_holiday_list.json +#. Label of the holidays (Table) field in PageType 'CRM Holiday List' +#: crm/fcrm/pagetype/crm_holiday_list/crm_holiday_list.json msgid "Holidays" msgstr "" @@ -2912,15 +2912,15 @@ msgstr "" msgid "I understand, add conditions" msgstr "" -#. Label of the id (Data) field in DocType 'CRM Call Log' -#: crm/fcrm/doctype/crm_call_log/crm_call_log.json +#. Label of the id (Data) field in PageType 'CRM Call Log' +#: crm/fcrm/pagetype/crm_call_log/crm_call_log.json msgid "ID" msgstr "" -#. Label of the icon (Code) field in DocType 'CRM Dropdown Item' -#. Label of the icon (Data) field in DocType 'CRM View Settings' -#: crm/fcrm/doctype/crm_dropdown_item/crm_dropdown_item.json -#: crm/fcrm/doctype/crm_view_settings/crm_view_settings.json +#. Label of the icon (Code) field in PageType 'CRM Dropdown Item' +#. Label of the icon (Data) field in PageType 'CRM View Settings' +#: crm/fcrm/pagetype/crm_dropdown_item/crm_dropdown_item.json +#: crm/fcrm/pagetype/crm_view_settings/crm_view_settings.json msgid "Icon" msgstr "" @@ -2940,10 +2940,10 @@ msgstr "" msgid "If enabled, records can be created from the incoming emails on this account." msgstr "" -#. Label of the image (Attach Image) field in DocType 'CRM Lead' -#. Label of the image (Attach Image) field in DocType 'CRM Product' -#: crm/fcrm/doctype/crm_lead/crm_lead.json -#: crm/fcrm/doctype/crm_product/crm_product.json +#. Label of the image (Attach Image) field in PageType 'CRM Lead' +#. Label of the image (Attach Image) field in PageType 'CRM Product' +#: crm/fcrm/pagetype/crm_lead/crm_lead.json +#: crm/fcrm/pagetype/crm_product/crm_product.json msgid "Image" msgstr "" @@ -2955,10 +2955,10 @@ msgstr "" msgid "In" msgstr "" -#. Option for the 'Status' (Select) field in DocType 'CRM Call Log' -#. Option for the 'Status' (Select) field in DocType 'CRM Task' -#: crm/fcrm/doctype/crm_call_log/crm_call_log.json -#: crm/fcrm/doctype/crm_task/crm_task.json +#. Option for the 'Status' (Select) field in PageType 'CRM Call Log' +#. Option for the 'Status' (Select) field in PageType 'CRM Task' +#: crm/fcrm/pagetype/crm_call_log/crm_call_log.json +#: crm/fcrm/pagetype/crm_task/crm_task.json msgid "In Progress" msgstr "" @@ -2974,8 +2974,8 @@ msgstr "" msgid "Inbox" msgstr "" -#. Option for the 'Type' (Select) field in DocType 'CRM Call Log' -#: crm/fcrm/doctype/crm_call_log/crm_call_log.json +#. Option for the 'Type' (Select) field in PageType 'CRM Call Log' +#: crm/fcrm/pagetype/crm_call_log/crm_call_log.json msgid "Incoming" msgstr "" @@ -2983,24 +2983,24 @@ msgstr "" msgid "Incoming call..." msgstr "" -#. Label of a shortcut in the Frappe CRM Workspace -#: crm/fcrm/workspace/frappe_crm/frappe_crm.json +#. Label of a shortcut in the Jingrow CRM Workspace +#: crm/fcrm/workspace/jingrow_crm/jingrow_crm.json msgid "Industries" msgstr "" -#. Label of the industry (Link) field in DocType 'CRM Deal' -#. Label of the industry (Data) field in DocType 'CRM Industry' -#. Label of the industry (Link) field in DocType 'CRM Lead' -#. Label of the industry (Link) field in DocType 'CRM Organization' -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_industry/crm_industry.json -#: crm/fcrm/doctype/crm_lead/crm_lead.json -#: crm/fcrm/doctype/crm_organization/crm_organization.json +#. Label of the industry (Link) field in PageType 'CRM Deal' +#. Label of the industry (Data) field in PageType 'CRM Industry' +#. Label of the industry (Link) field in PageType 'CRM Lead' +#. Label of the industry (Link) field in PageType 'CRM Organization' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_industry/crm_industry.json +#: crm/fcrm/pagetype/crm_lead/crm_lead.json +#: crm/fcrm/pagetype/crm_organization/crm_organization.json msgid "Industry" msgstr "" -#. Option for the 'Status' (Select) field in DocType 'CRM Call Log' -#: crm/fcrm/doctype/crm_call_log/crm_call_log.json +#. Option for the 'Status' (Select) field in PageType 'CRM Call Log' +#: crm/fcrm/pagetype/crm_call_log/crm_call_log.json msgid "Initiated" msgstr "" @@ -3035,7 +3035,7 @@ msgstr "" msgid "Introduction" msgstr "" -#: crm/fcrm/doctype/crm_twilio_settings/crm_twilio_settings.py:33 +#: crm/fcrm/pagetype/crm_twilio_settings/crm_twilio_settings.py:33 msgid "Invalid Account SID or Auth Token." msgstr "" @@ -3052,7 +3052,7 @@ msgstr "" msgid "Invalid chart name" msgstr "" -#: crm/fcrm/doctype/crm_exotel_settings/crm_exotel_settings.py:25 +#: crm/fcrm/pagetype/crm_exotel_settings/crm_exotel_settings.py:25 msgid "Invalid credentials" msgstr "" @@ -3101,8 +3101,8 @@ msgstr "" msgid "Invite your team" msgstr "" -#. Label of the invited_by (Link) field in DocType 'CRM Invitation' -#: crm/fcrm/doctype/crm_invitation/crm_invitation.json +#. Label of the invited_by (Link) field in PageType 'CRM Invitation' +#: crm/fcrm/pagetype/crm_invitation/crm_invitation.json msgid "Invited By" msgstr "" @@ -3116,59 +3116,59 @@ msgstr "" msgid "Is" msgstr "" -#. Label of the is_default (Check) field in DocType 'CRM View Settings' -#: crm/fcrm/doctype/crm_view_settings/crm_view_settings.json +#. Label of the is_default (Check) field in PageType 'CRM View Settings' +#: crm/fcrm/pagetype/crm_view_settings/crm_view_settings.json msgid "Is Default" msgstr "" -#. Label of the is_erpnext_in_different_site (Check) field in DocType 'ERPNext +#. Label of the is_erpnext_in_different_site (Check) field in PageType 'ERPNext #. CRM Settings' -#: crm/fcrm/doctype/erpnext_crm_settings/erpnext_crm_settings.json +#: crm/fcrm/pagetype/erpnext_crm_settings/erpnext_crm_settings.json msgid "Is ERPNext installed on a different site?" msgstr "" -#. Label of the is_group (Check) field in DocType 'CRM Territory' -#: crm/fcrm/doctype/crm_territory/crm_territory.json +#. Label of the is_group (Check) field in PageType 'CRM Territory' +#: crm/fcrm/pagetype/crm_territory/crm_territory.json msgid "Is Group" msgstr "" -#. Label of the is_helpdesk_in_different_site (Check) field in DocType +#. Label of the is_helpdesk_in_different_site (Check) field in PageType #. 'Helpdesk CRM Settings' -#: crm/fcrm/doctype/helpdesk_crm_settings/helpdesk_crm_settings.json +#: crm/fcrm/pagetype/helpdesk_crm_settings/helpdesk_crm_settings.json msgid "Is Helpdesk installed on a different site?" msgstr "" -#. Label of the is_primary (Check) field in DocType 'CRM Contacts' -#. Label of the is_primary (Check) field in DocType 'CRM Telephony Phone' -#: crm/fcrm/doctype/crm_contacts/crm_contacts.json -#: crm/fcrm/doctype/crm_telephony_phone/crm_telephony_phone.json +#. Label of the is_primary (Check) field in PageType 'CRM Contacts' +#. Label of the is_primary (Check) field in PageType 'CRM Telephony Phone' +#: crm/fcrm/pagetype/crm_contacts/crm_contacts.json +#: crm/fcrm/pagetype/crm_telephony_phone/crm_telephony_phone.json msgid "Is Primary" msgstr "" -#. Label of the is_standard (Check) field in DocType 'CRM Dropdown Item' -#. Label of the is_standard (Check) field in DocType 'CRM Form Script' -#. Label of the is_standard (Check) field in DocType 'CRM View Settings' -#: crm/fcrm/doctype/crm_dropdown_item/crm_dropdown_item.json -#: crm/fcrm/doctype/crm_form_script/crm_form_script.json -#: crm/fcrm/doctype/crm_view_settings/crm_view_settings.json +#. Label of the is_standard (Check) field in PageType 'CRM Dropdown Item' +#. Label of the is_standard (Check) field in PageType 'CRM Form Script' +#. Label of the is_standard (Check) field in PageType 'CRM View Settings' +#: crm/fcrm/pagetype/crm_dropdown_item/crm_dropdown_item.json +#: crm/fcrm/pagetype/crm_form_script/crm_form_script.json +#: crm/fcrm/pagetype/crm_view_settings/crm_view_settings.json msgid "Is Standard" msgstr "" -#. Description of the 'Enable Forecasting' (Check) field in DocType 'FCRM +#. Description of the 'Enable Forecasting' (Check) field in PageType 'FCRM #. Settings' -#: crm/fcrm/doctype/fcrm_settings/fcrm_settings.json +#: crm/fcrm/pagetype/fcrm_settings/fcrm_settings.json msgid "It will make deal's \"Expected Closure Date\" & \"Expected Deal Value\" mandatory to get accurate forecasting insights" msgstr "" -#. Label of the json (JSON) field in DocType 'CRM Global Settings' -#: crm/fcrm/doctype/crm_global_settings/crm_global_settings.json +#. Label of the json (JSON) field in PageType 'CRM Global Settings' +#: crm/fcrm/pagetype/crm_global_settings/crm_global_settings.json msgid "JSON" msgstr "" -#. Label of the job_title (Data) field in DocType 'CRM Deal' -#. Label of the job_title (Data) field in DocType 'CRM Lead' -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_lead/crm_lead.json +#. Label of the job_title (Data) field in PageType 'CRM Deal' +#. Label of the job_title (Data) field in PageType 'CRM Lead' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_lead/crm_lead.json msgid "Job Title" msgstr "" @@ -3180,20 +3180,20 @@ msgstr "" msgid "John Doe" msgstr "" -#. Label of the kanban_tab (Tab Break) field in DocType 'CRM View Settings' -#: crm/fcrm/doctype/crm_view_settings/crm_view_settings.json +#. Label of the kanban_tab (Tab Break) field in PageType 'CRM View Settings' +#: crm/fcrm/pagetype/crm_view_settings/crm_view_settings.json #: frontend/src/components/ViewControls.vue:384 #: frontend/src/components/ViewControls.vue:600 frontend/src/utils/view.js:20 msgid "Kanban" msgstr "" -#. Label of the kanban_columns (Code) field in DocType 'CRM View Settings' -#: crm/fcrm/doctype/crm_view_settings/crm_view_settings.json +#. Label of the kanban_columns (Code) field in PageType 'CRM View Settings' +#: crm/fcrm/pagetype/crm_view_settings/crm_view_settings.json msgid "Kanban Columns" msgstr "" -#. Label of the kanban_fields (Code) field in DocType 'CRM View Settings' -#: crm/fcrm/doctype/crm_view_settings/crm_view_settings.json +#. Label of the kanban_fields (Code) field in PageType 'CRM View Settings' +#: crm/fcrm/pagetype/crm_view_settings/crm_view_settings.json msgid "Kanban Fields" msgstr "" @@ -3202,15 +3202,15 @@ msgstr "" msgid "Kanban Settings" msgstr "" -#. Label of the key (Data) field in DocType 'CRM Invitation' -#: crm/fcrm/doctype/crm_invitation/crm_invitation.json +#. Label of the key (Data) field in PageType 'CRM Invitation' +#: crm/fcrm/pagetype/crm_invitation/crm_invitation.json msgid "Key" msgstr "" -#. Label of the label (Data) field in DocType 'CRM Dropdown Item' -#. Label of the label (Data) field in DocType 'CRM View Settings' -#: crm/fcrm/doctype/crm_dropdown_item/crm_dropdown_item.json -#: crm/fcrm/doctype/crm_view_settings/crm_view_settings.json +#. Label of the label (Data) field in PageType 'CRM Dropdown Item' +#. Label of the label (Data) field in PageType 'CRM View Settings' +#: crm/fcrm/pagetype/crm_dropdown_item/crm_dropdown_item.json +#: crm/fcrm/pagetype/crm_view_settings/crm_view_settings.json #: frontend/src/components/ColumnSettings.vue:100 msgid "Label" msgstr "" @@ -3227,10 +3227,10 @@ msgstr "" msgid "Last Month" msgstr "" -#. Label of the last_name (Data) field in DocType 'CRM Deal' -#. Label of the last_name (Data) field in DocType 'CRM Lead' -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_lead/crm_lead.json +#. Label of the last_name (Data) field in PageType 'CRM Deal' +#. Label of the last_name (Data) field in PageType 'CRM Lead' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_lead/crm_lead.json msgid "Last Name" msgstr "" @@ -3238,9 +3238,9 @@ msgstr "" msgid "Last Quarter" msgstr "" -#. Label of the last_status_change_log (Link) field in DocType 'CRM Status +#. Label of the last_status_change_log (Link) field in PageType 'CRM Status #. Change Log' -#: crm/fcrm/doctype/crm_status_change_log/crm_status_change_log.json +#: crm/fcrm/pagetype/crm_status_change_log/crm_status_change_log.json msgid "Last Status Change Log" msgstr "" @@ -3268,15 +3268,15 @@ msgstr "" msgid "Last user assigned by this rule" msgstr "" -#. Label of the layout (Code) field in DocType 'CRM Dashboard' -#. Label of the layout (Code) field in DocType 'CRM Fields Layout' -#: crm/fcrm/doctype/crm_dashboard/crm_dashboard.json -#: crm/fcrm/doctype/crm_fields_layout/crm_fields_layout.json +#. Label of the layout (Code) field in PageType 'CRM Dashboard' +#. Label of the layout (Code) field in PageType 'CRM Fields Layout' +#: crm/fcrm/pagetype/crm_dashboard/crm_dashboard.json +#: crm/fcrm/pagetype/crm_fields_layout/crm_fields_layout.json msgid "Layout" msgstr "" -#. Label of the lead (Link) field in DocType 'CRM Deal' -#: crm/fcrm/doctype/crm_deal/crm_deal.json +#. Label of the lead (Link) field in PageType 'CRM Deal' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json #: frontend/src/components/Calendar/CalendarEventPanel.vue:263 #: frontend/src/components/Calendar/CalendarEventPanel.vue:288 #: frontend/src/components/Layouts/AppSidebar.vue:550 @@ -3289,32 +3289,32 @@ msgstr "" msgid "Lead" msgstr "" -#. Label of the lead_details_tab (Tab Break) field in DocType 'CRM Deal' -#: crm/fcrm/doctype/crm_deal/crm_deal.json +#. Label of the lead_details_tab (Tab Break) field in PageType 'CRM Deal' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json msgid "Lead Details" msgstr "" -#. Label of the lead_name (Data) field in DocType 'CRM Deal' -#: crm/fcrm/doctype/crm_deal/crm_deal.json +#. Label of the lead_name (Data) field in PageType 'CRM Deal' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json msgid "Lead Name" msgstr "" -#. Label of the lead_owner (Link) field in DocType 'CRM Lead' -#: crm/fcrm/doctype/crm_lead/crm_lead.json +#. Label of the lead_owner (Link) field in PageType 'CRM Lead' +#: crm/fcrm/pagetype/crm_lead/crm_lead.json msgid "Lead Owner" msgstr "" -#: crm/fcrm/doctype/crm_lead/crm_lead.py:73 +#: crm/fcrm/pagetype/crm_lead/crm_lead.py:73 msgid "Lead Owner cannot be same as the Lead Email Address" msgstr "" -#. Label of a shortcut in the Frappe CRM Workspace -#: crm/fcrm/workspace/frappe_crm/frappe_crm.json +#. Label of a shortcut in the Jingrow CRM Workspace +#: crm/fcrm/workspace/jingrow_crm/jingrow_crm.json msgid "Lead Sources" msgstr "" -#. Label of a shortcut in the Frappe CRM Workspace -#: crm/fcrm/workspace/frappe_crm/frappe_crm.json +#. Label of a shortcut in the Jingrow CRM Workspace +#: crm/fcrm/workspace/jingrow_crm/jingrow_crm.json msgid "Lead Statuses" msgstr "" @@ -3326,8 +3326,8 @@ msgstr "" msgid "Lead to deal conversion pipeline" msgstr "" -#. Label of a shortcut in the Frappe CRM Workspace -#: crm/fcrm/workspace/frappe_crm/frappe_crm.json +#. Label of a shortcut in the Jingrow CRM Workspace +#: crm/fcrm/workspace/jingrow_crm/jingrow_crm.json #: frontend/src/pages/InvalidPage.vue:9 frontend/src/pages/Lead.vue:340 #: frontend/src/pages/MobileLead.vue:291 msgid "Leads" @@ -3343,8 +3343,8 @@ msgstr "" msgid "Learn about conditions" msgstr "" -#. Label of the lft (Int) field in DocType 'CRM Territory' -#: crm/fcrm/doctype/crm_territory/crm_territory.json +#. Label of the lft (Int) field in PageType 'CRM Territory' +#: crm/fcrm/pagetype/crm_territory/crm_territory.json msgid "Left" msgstr "" @@ -3365,15 +3365,15 @@ msgstr "" msgid "Link" msgstr "" -#. Label of the links (Table) field in DocType 'CRM Call Log' -#: crm/fcrm/doctype/crm_call_log/crm_call_log.json +#. Label of the links (Table) field in PageType 'CRM Call Log' +#: crm/fcrm/pagetype/crm_call_log/crm_call_log.json msgid "Links" msgstr "" -#. Option for the 'Apply To' (Select) field in DocType 'CRM Form Script' -#. Label of the list_tab (Tab Break) field in DocType 'CRM View Settings' -#: crm/fcrm/doctype/crm_form_script/crm_form_script.json -#: crm/fcrm/doctype/crm_view_settings/crm_view_settings.json +#. Option for the 'Apply To' (Select) field in PageType 'CRM Form Script' +#. Label of the list_tab (Tab Break) field in PageType 'CRM View Settings' +#: crm/fcrm/pagetype/crm_form_script/crm_form_script.json +#: crm/fcrm/pagetype/crm_view_settings/crm_view_settings.json #: frontend/src/components/ViewControls.vue:374 #: frontend/src/components/ViewControls.vue:589 frontend/src/utils/view.js:12 msgid "List" @@ -3383,9 +3383,9 @@ msgstr "" msgid "Listen" msgstr "" -#. Label of the load_default_columns (Check) field in DocType 'CRM View +#. Label of the load_default_columns (Check) field in PageType 'CRM View #. Settings' -#: crm/fcrm/doctype/crm_view_settings/crm_view_settings.json +#: crm/fcrm/pagetype/crm_view_settings/crm_view_settings.json msgid "Load Default Columns" msgstr "" @@ -3401,10 +3401,10 @@ msgstr "" msgid "Loading..." msgstr "" -#. Label of the log_tab (Tab Break) field in DocType 'CRM Deal' -#. Label of the log_tab (Tab Break) field in DocType 'CRM Lead' -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_lead/crm_lead.json +#. Label of the log_tab (Tab Break) field in PageType 'CRM Deal' +#. Label of the log_tab (Tab Break) field in PageType 'CRM Lead' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_lead/crm_lead.json msgid "Log" msgstr "" @@ -3415,28 +3415,28 @@ msgid "Log a Call" msgstr "" #: frontend/src/composables/frappecloud.js:23 -msgid "Login to Frappe Cloud?" +msgid "Login to Jingrow Cloud?" msgstr "" -#. Label of the brand_logo (Attach) field in DocType 'FCRM Settings' -#: crm/fcrm/doctype/fcrm_settings/fcrm_settings.json +#. Label of the brand_logo (Attach) field in PageType 'FCRM Settings' +#: crm/fcrm/pagetype/fcrm_settings/fcrm_settings.json msgid "Logo" msgstr "" -#. Option for the 'Type' (Select) field in DocType 'CRM Deal Status' -#: crm/fcrm/doctype/crm_deal_status/crm_deal_status.json +#. Option for the 'Type' (Select) field in PageType 'CRM Deal Status' +#: crm/fcrm/pagetype/crm_deal_status/crm_deal_status.json msgid "Lost" msgstr "" -#. Label of the lost_notes (Text) field in DocType 'CRM Deal' -#: crm/fcrm/doctype/crm_deal/crm_deal.json +#. Label of the lost_notes (Text) field in PageType 'CRM Deal' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json msgid "Lost Notes" msgstr "" -#. Label of the lost_reason (Link) field in DocType 'CRM Deal' -#. Label of the lost_reason (Data) field in DocType 'CRM Lost Reason' -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_lost_reason/crm_lost_reason.json +#. Label of the lost_reason (Link) field in PageType 'CRM Deal' +#. Label of the lost_reason (Data) field in PageType 'CRM Lost Reason' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_lost_reason/crm_lost_reason.json msgid "Lost Reason" msgstr "" @@ -3462,8 +3462,8 @@ msgstr "" msgid "Lost reason is required" msgstr "" -#. Option for the 'Priority' (Select) field in DocType 'CRM Task' -#: crm/fcrm/doctype/crm_task/crm_task.json +#. Option for the 'Priority' (Select) field in PageType 'CRM Task' +#: crm/fcrm/pagetype/crm_task/crm_task.json msgid "Low" msgstr "" @@ -3540,8 +3540,8 @@ msgstr "" msgid "Mandatory field error: {0}" msgstr "" -#. Option for the 'Telephony Medium' (Select) field in DocType 'CRM Call Log' -#: crm/fcrm/doctype/crm_call_log/crm_call_log.json +#. Option for the 'Telephony Medium' (Select) field in PageType 'CRM Call Log' +#: crm/fcrm/pagetype/crm_call_log/crm_call_log.json msgid "Manual" msgstr "" @@ -3560,25 +3560,25 @@ msgstr "" msgid "May 1, 2025" msgstr "" -#. Label of the medium (Data) field in DocType 'CRM Call Log' -#. Option for the 'Priority' (Select) field in DocType 'CRM Task' -#: crm/fcrm/doctype/crm_call_log/crm_call_log.json -#: crm/fcrm/doctype/crm_task/crm_task.json +#. Label of the medium (Data) field in PageType 'CRM Call Log' +#. Option for the 'Priority' (Select) field in PageType 'CRM Task' +#: crm/fcrm/pagetype/crm_call_log/crm_call_log.json +#: crm/fcrm/pagetype/crm_task/crm_task.json msgid "Medium" msgstr "" -#. Option for the 'Type' (Select) field in DocType 'CRM Notification' -#: crm/fcrm/doctype/crm_notification/crm_notification.json +#. Option for the 'Type' (Select) field in PageType 'CRM Notification' +#: crm/fcrm/pagetype/crm_notification/crm_notification.json msgid "Mention" msgstr "" -#. Label of the message (HTML Editor) field in DocType 'CRM Notification' -#: crm/fcrm/doctype/crm_notification/crm_notification.json +#. Label of the message (HTML Editor) field in PageType 'CRM Notification' +#: crm/fcrm/pagetype/crm_notification/crm_notification.json msgid "Message" msgstr "" -#. Label of the middle_name (Data) field in DocType 'CRM Lead' -#: crm/fcrm/doctype/crm_lead/crm_lead.json +#. Label of the middle_name (Data) field in PageType 'CRM Lead' +#: crm/fcrm/pagetype/crm_lead/crm_lead.json msgid "Middle Name" msgstr "" @@ -3586,10 +3586,10 @@ msgstr "" msgid "Minimize" msgstr "" -#. Label of the mobile_no (Data) field in DocType 'CRM Contacts' -#. Label of the mobile_no (Data) field in DocType 'CRM Lead' -#: crm/fcrm/doctype/crm_contacts/crm_contacts.json -#: crm/fcrm/doctype/crm_lead/crm_lead.json +#. Label of the mobile_no (Data) field in PageType 'CRM Contacts' +#. Label of the mobile_no (Data) field in PageType 'CRM Lead' +#: crm/fcrm/pagetype/crm_contacts/crm_contacts.json +#: crm/fcrm/pagetype/crm_lead/crm_lead.json msgid "Mobile No" msgstr "" @@ -3598,8 +3598,8 @@ msgstr "" msgid "Mobile No should be a number" msgstr "" -#. Label of the mobile_no (Data) field in DocType 'CRM Telephony Agent' -#: crm/fcrm/doctype/crm_telephony_agent/crm_telephony_agent.json +#. Label of the mobile_no (Data) field in PageType 'CRM Telephony Agent' +#: crm/fcrm/pagetype/crm_telephony_agent/crm_telephony_agent.json msgid "Mobile No." msgstr "" @@ -3621,10 +3621,10 @@ msgstr "" msgid "Mobile no" msgstr "" -#. Option for the 'Weekly Off' (Select) field in DocType 'CRM Holiday List' -#. Option for the 'Workday' (Select) field in DocType 'CRM Service Day' -#: crm/fcrm/doctype/crm_holiday_list/crm_holiday_list.json -#: crm/fcrm/doctype/crm_service_day/crm_service_day.json +#. Option for the 'Weekly Off' (Select) field in PageType 'CRM Holiday List' +#. Option for the 'Workday' (Select) field in PageType 'CRM Service Day' +#: crm/fcrm/pagetype/crm_holiday_list/crm_holiday_list.json +#: crm/fcrm/pagetype/crm_service_day/crm_service_day.json msgid "Monday" msgstr "" @@ -3656,12 +3656,12 @@ msgstr "" msgid "My Open Deals" msgstr "" -#. Label of the title (Data) field in DocType 'CRM Dashboard' -#. Label of the name1 (Data) field in DocType 'CRM Dropdown Item' -#. Label of the brand_name (Data) field in DocType 'FCRM Settings' -#: crm/fcrm/doctype/crm_dashboard/crm_dashboard.json -#: crm/fcrm/doctype/crm_dropdown_item/crm_dropdown_item.json -#: crm/fcrm/doctype/fcrm_settings/fcrm_settings.json +#. Label of the title (Data) field in PageType 'CRM Dashboard' +#. Label of the name1 (Data) field in PageType 'CRM Dropdown Item' +#. Label of the brand_name (Data) field in PageType 'FCRM Settings' +#: crm/fcrm/pagetype/crm_dashboard/crm_dashboard.json +#: crm/fcrm/pagetype/crm_dropdown_item/crm_dropdown_item.json +#: crm/fcrm/pagetype/fcrm_settings/fcrm_settings.json #: frontend/src/components/Settings/AssignmentRules/AssignmentRuleView.vue:51 #: frontend/src/components/Settings/AssignmentRules/AssignmentRuleView.vue:52 #: frontend/src/components/Settings/EmailTemplate/EditEmailTemplate.vue:39 @@ -3678,10 +3678,10 @@ msgstr "" msgid "Name is required" msgstr "" -#. Label of the naming_series (Select) field in DocType 'CRM Deal' -#. Label of the naming_series (Select) field in DocType 'CRM Product' -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_product/crm_product.json +#. Label of the naming_series (Select) field in PageType 'CRM Deal' +#. Label of the naming_series (Select) field in PageType 'CRM Product' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_product/crm_product.json msgid "Naming Series" msgstr "" @@ -3689,15 +3689,15 @@ msgstr "" msgid "Nested conditions" msgstr "" -#. Label of the net_amount (Currency) field in DocType 'CRM Products' -#: crm/fcrm/doctype/crm_products/crm_products.json +#. Label of the net_amount (Currency) field in PageType 'CRM Products' +#: crm/fcrm/pagetype/crm_products/crm_products.json msgid "Net Amount" msgstr "" -#. Label of the net_total (Currency) field in DocType 'CRM Deal' -#. Label of the net_total (Currency) field in DocType 'CRM Lead' -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_lead/crm_lead.json +#. Label of the net_total (Currency) field in PageType 'CRM Deal' +#. Label of the net_total (Currency) field in PageType 'CRM Lead' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_lead/crm_lead.json msgid "Net Total" msgstr "" @@ -3812,8 +3812,8 @@ msgstr "" msgid "Next Quarter" msgstr "" -#. Label of the next_step (Data) field in DocType 'CRM Deal' -#: crm/fcrm/doctype/crm_deal/crm_deal.json +#. Label of the next_step (Data) field in PageType 'CRM Deal' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json msgid "Next Step" msgstr "" @@ -3829,8 +3829,8 @@ msgstr "" msgid "No" msgstr "" -#. Option for the 'Status' (Select) field in DocType 'CRM Call Log' -#: crm/fcrm/doctype/crm_call_log/crm_call_log.json +#. Option for the 'Status' (Select) field in PageType 'CRM Call Log' +#: crm/fcrm/pagetype/crm_call_log/crm_call_log.json msgid "No Answer" msgstr "" @@ -3928,12 +3928,12 @@ msgstr "" msgid "No {0} Found" msgstr "" -#. Label of the no_of_employees (Select) field in DocType 'CRM Deal' -#. Label of the no_of_employees (Select) field in DocType 'CRM Lead' -#. Label of the no_of_employees (Select) field in DocType 'CRM Organization' -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_lead/crm_lead.json -#: crm/fcrm/doctype/crm_organization/crm_organization.json +#. Label of the no_of_employees (Select) field in PageType 'CRM Deal' +#. Label of the no_of_employees (Select) field in PageType 'CRM Lead' +#. Label of the no_of_employees (Select) field in PageType 'CRM Organization' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_lead/crm_lead.json +#: crm/fcrm/pagetype/crm_organization/crm_organization.json msgid "No. of Employees" msgstr "" @@ -3979,24 +3979,24 @@ msgstr "" msgid "Not Saved" msgstr "" -#: crm/fcrm/doctype/crm_deal/crm_deal.py:272 +#: crm/fcrm/pagetype/crm_deal/crm_deal.py:272 msgid "Not allowed to add contact to Deal" msgstr "" -#: crm/fcrm/doctype/crm_lead/crm_lead.py:408 +#: crm/fcrm/pagetype/crm_lead/crm_lead.py:408 msgid "Not allowed to convert Lead to Deal" msgstr "" -#: crm/fcrm/doctype/crm_deal/crm_deal.py:283 +#: crm/fcrm/pagetype/crm_deal/crm_deal.py:283 msgid "Not allowed to remove contact from Deal" msgstr "" -#: crm/fcrm/doctype/crm_deal/crm_deal.py:294 +#: crm/fcrm/pagetype/crm_deal/crm_deal.py:294 msgid "Not allowed to set primary contact for Deal" msgstr "" -#. Label of the note (Link) field in DocType 'CRM Call Log' -#: crm/fcrm/doctype/crm_call_log/crm_call_log.json +#. Label of the note (Link) field in PageType 'CRM Call Log' +#: crm/fcrm/pagetype/crm_call_log/crm_call_log.json #: frontend/src/components/Layouts/AppSidebar.vue:554 msgid "Note" msgstr "" @@ -4015,21 +4015,21 @@ msgstr "" msgid "Notification" msgstr "" -#. Label of the notification_text (Text) field in DocType 'CRM Notification' -#: crm/fcrm/doctype/crm_notification/crm_notification.json +#. Label of the notification_text (Text) field in PageType 'CRM Notification' +#: crm/fcrm/pagetype/crm_notification/crm_notification.json msgid "Notification Text" msgstr "" -#. Label of the notification_type_doc (Dynamic Link) field in DocType 'CRM +#. Label of the notification_type_pg (Dynamic Link) field in PageType 'CRM #. Notification' -#: crm/fcrm/doctype/crm_notification/crm_notification.json -msgid "Notification Type Doc" +#: crm/fcrm/pagetype/crm_notification/crm_notification.json +msgid "Notification Type Pg" msgstr "" -#. Label of the notification_type_doctype (Link) field in DocType 'CRM +#. Label of the notification_type_pagetype (Link) field in PageType 'CRM #. Notification' -#: crm/fcrm/doctype/crm_notification/crm_notification.json -msgid "Notification Type Doctype" +#: crm/fcrm/pagetype/crm_notification/crm_notification.json +msgid "Notification Type Pagetype" msgstr "" #: frontend/src/components/Layouts/AppSidebar.vue:13 @@ -4039,8 +4039,8 @@ msgstr "" msgid "Notifications" msgstr "" -#. Label of the number (Data) field in DocType 'CRM Telephony Phone' -#: crm/fcrm/doctype/crm_telephony_phone/crm_telephony_phone.json +#. Label of the number (Data) field in PageType 'CRM Telephony Phone' +#: crm/fcrm/pagetype/crm_telephony_phone/crm_telephony_phone.json msgid "Number" msgstr "" @@ -4062,18 +4062,18 @@ msgstr "" msgid "Old Condition" msgstr "" -#. Label of the old_parent (Link) field in DocType 'CRM Territory' -#: crm/fcrm/doctype/crm_territory/crm_territory.json +#. Label of the old_parent (Link) field in PageType 'CRM Territory' +#: crm/fcrm/pagetype/crm_territory/crm_territory.json msgid "Old Parent" msgstr "" -#. Option for the 'Type' (Select) field in DocType 'CRM Deal Status' -#: crm/fcrm/doctype/crm_deal_status/crm_deal_status.json +#. Option for the 'Type' (Select) field in PageType 'CRM Deal Status' +#: crm/fcrm/pagetype/crm_deal_status/crm_deal_status.json msgid "On Hold" msgstr "" -#. Option for the 'Type' (Select) field in DocType 'CRM Deal Status' -#: crm/fcrm/doctype/crm_deal_status/crm_deal_status.json +#. Option for the 'Type' (Select) field in PageType 'CRM Deal Status' +#: crm/fcrm/pagetype/crm_deal_status/crm_deal_status.json msgid "Ongoing" msgstr "" @@ -4086,13 +4086,13 @@ msgstr "" msgid "Only image files are allowed" msgstr "" -#: crm/fcrm/doctype/crm_deal/crm_deal.py:60 -#: crm/fcrm/doctype/crm_telephony_agent/crm_telephony_agent.py:23 +#: crm/fcrm/pagetype/crm_deal/crm_deal.py:60 +#: crm/fcrm/pagetype/crm_telephony_agent/crm_telephony_agent.py:23 msgid "Only one {0} can be set as primary." msgstr "" -#. Option for the 'Type' (Select) field in DocType 'CRM Deal Status' -#: crm/fcrm/doctype/crm_deal_status/crm_deal_status.json +#. Option for the 'Type' (Select) field in PageType 'CRM Deal Status' +#: crm/fcrm/pagetype/crm_deal_status/crm_deal_status.json msgid "Open" msgstr "" @@ -4106,13 +4106,13 @@ msgstr "" msgid "Open Lead" msgstr "" -#: crm/fcrm/doctype/crm_deal/crm_deal.js:6 -#: crm/fcrm/doctype/crm_lead/crm_lead.js:6 +#: crm/fcrm/pagetype/crm_deal/crm_deal.js:6 +#: crm/fcrm/pagetype/crm_lead/crm_lead.js:6 msgid "Open in Portal" msgstr "" -#. Label of the open_in_new_window (Check) field in DocType 'CRM Dropdown Item' -#: crm/fcrm/doctype/crm_dropdown_item/crm_dropdown_item.json +#. Label of the open_in_new_window (Check) field in PageType 'CRM Dropdown Item' +#: crm/fcrm/pagetype/crm_dropdown_item/crm_dropdown_item.json msgid "Open in new window" msgstr "" @@ -4134,17 +4134,17 @@ msgstr "" msgid "Or create leads manually" msgstr "" -#. Label of the order_by_tab (Tab Break) field in DocType 'CRM View Settings' -#. Label of the order_by (Code) field in DocType 'CRM View Settings' -#: crm/fcrm/doctype/crm_view_settings/crm_view_settings.json +#. Label of the order_by_tab (Tab Break) field in PageType 'CRM View Settings' +#. Label of the order_by (Code) field in PageType 'CRM View Settings' +#: crm/fcrm/pagetype/crm_view_settings/crm_view_settings.json msgid "Order By" msgstr "" -#. Label of the organization (Link) field in DocType 'CRM Deal' -#. Label of the organization_tab (Tab Break) field in DocType 'CRM Deal' -#. Label of the organization (Data) field in DocType 'CRM Lead' -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_lead/crm_lead.json +#. Label of the organization (Link) field in PageType 'CRM Deal' +#. Label of the organization_tab (Tab Break) field in PageType 'CRM Deal' +#. Label of the organization (Data) field in PageType 'CRM Lead' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_lead/crm_lead.json #: frontend/src/components/Layouts/AppSidebar.vue:553 #: frontend/src/components/Modals/ConvertToDealModal.vue:25 #: frontend/src/pages/Contact.vue:494 frontend/src/pages/MobileContact.vue:502 @@ -4156,22 +4156,22 @@ msgstr "" msgid "Organization" msgstr "" -#. Label of the organization_details_section (Section Break) field in DocType +#. Label of the organization_details_section (Section Break) field in PageType #. 'CRM Deal' -#: crm/fcrm/doctype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_deal/crm_deal.json msgid "Organization Details" msgstr "" -#. Label of the organization_logo (Attach Image) field in DocType 'CRM +#. Label of the organization_logo (Attach Image) field in PageType 'CRM #. Organization' -#: crm/fcrm/doctype/crm_organization/crm_organization.json +#: crm/fcrm/pagetype/crm_organization/crm_organization.json msgid "Organization Logo" msgstr "" -#. Label of the organization_name (Data) field in DocType 'CRM Deal' -#. Label of the organization_name (Data) field in DocType 'CRM Organization' -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_organization/crm_organization.json +#. Label of the organization_name (Data) field in PageType 'CRM Deal' +#. Label of the organization_name (Data) field in PageType 'CRM Organization' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_organization/crm_organization.json msgid "Organization Name" msgstr "" @@ -4179,8 +4179,8 @@ msgstr "" msgid "Organization logo" msgstr "" -#. Label of a shortcut in the Frappe CRM Workspace -#: crm/fcrm/workspace/frappe_crm/frappe_crm.json +#. Label of a shortcut in the Jingrow CRM Workspace +#: crm/fcrm/workspace/jingrow_crm/jingrow_crm.json #: frontend/src/pages/MobileOrganization.vue:205 #: frontend/src/pages/Organization.vue:234 msgid "Organizations" @@ -4194,8 +4194,8 @@ msgstr "" msgid "Other features" msgstr "" -#. Label of the organization_tab (Tab Break) field in DocType 'CRM Lead' -#: crm/fcrm/doctype/crm_lead/crm_lead.json +#. Label of the organization_tab (Tab Break) field in PageType 'CRM Lead' +#: crm/fcrm/pagetype/crm_lead/crm_lead.json msgid "Others" msgstr "" @@ -4203,13 +4203,13 @@ msgstr "" msgid "Outbound Call" msgstr "" -#. Option for the 'Type' (Select) field in DocType 'CRM Call Log' -#: crm/fcrm/doctype/crm_call_log/crm_call_log.json +#. Option for the 'Type' (Select) field in PageType 'CRM Call Log' +#: crm/fcrm/pagetype/crm_call_log/crm_call_log.json msgid "Outgoing" msgstr "" -#. Label of the log_owner (Link) field in DocType 'CRM Status Change Log' -#: crm/fcrm/doctype/crm_status_change_log/crm_status_change_log.json +#. Label of the log_owner (Link) field in PageType 'CRM Status Change Log' +#: crm/fcrm/pagetype/crm_status_change_log/crm_status_change_log.json msgid "Owner" msgstr "" @@ -4217,8 +4217,8 @@ msgstr "" msgid "Owner: {0}" msgstr "" -#. Label of the parent_crm_territory (Link) field in DocType 'CRM Territory' -#: crm/fcrm/doctype/crm_territory/crm_territory.json +#. Label of the parent_crm_territory (Link) field in PageType 'CRM Territory' +#: crm/fcrm/pagetype/crm_territory/crm_territory.json msgid "Parent CRM Territory" msgstr "" @@ -4249,8 +4249,8 @@ msgstr "" msgid "Payment Reminder from Frappé - (#{{ name }})" msgstr "" -#. Option for the 'Status' (Select) field in DocType 'CRM Invitation' -#: crm/fcrm/doctype/crm_invitation/crm_invitation.json +#. Option for the 'Status' (Select) field in PageType 'CRM Invitation' +#: crm/fcrm/pagetype/crm_invitation/crm_invitation.json msgid "Pending" msgstr "" @@ -4262,10 +4262,10 @@ msgstr "" msgid "Period" msgstr "" -#. Label of the person_section (Section Break) field in DocType 'CRM Deal' -#. Label of the person_tab (Tab Break) field in DocType 'CRM Lead' -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_lead/crm_lead.json +#. Label of the person_section (Section Break) field in PageType 'CRM Deal' +#. Label of the person_tab (Tab Break) field in PageType 'CRM Lead' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_lead/crm_lead.json msgid "Person" msgstr "" @@ -4273,19 +4273,19 @@ msgstr "" msgid "Personal Settings" msgstr "" -#. Label of the phone (Data) field in DocType 'CRM Contacts' -#. Label of the phone (Data) field in DocType 'CRM Lead' -#. Option for the 'Device' (Select) field in DocType 'CRM Telephony Agent' -#: crm/fcrm/doctype/crm_contacts/crm_contacts.json -#: crm/fcrm/doctype/crm_lead/crm_lead.json -#: crm/fcrm/doctype/crm_telephony_agent/crm_telephony_agent.json +#. Label of the phone (Data) field in PageType 'CRM Contacts' +#. Label of the phone (Data) field in PageType 'CRM Lead' +#. Option for the 'Device' (Select) field in PageType 'CRM Telephony Agent' +#: crm/fcrm/pagetype/crm_contacts/crm_contacts.json +#: crm/fcrm/pagetype/crm_lead/crm_lead.json +#: crm/fcrm/pagetype/crm_telephony_agent/crm_telephony_agent.json #: frontend/src/pages/MobileOrganization.vue:495 #: frontend/src/pages/Organization.vue:516 msgid "Phone" msgstr "" -#. Label of the phone_nos (Table) field in DocType 'CRM Telephony Agent' -#: crm/fcrm/doctype/crm_telephony_agent/crm_telephony_agent.json +#. Label of the phone_nos (Table) field in PageType 'CRM Telephony Agent' +#: crm/fcrm/pagetype/crm_telephony_agent/crm_telephony_agent.json msgid "Phone Numbers" msgstr "" @@ -4293,8 +4293,8 @@ msgstr "" msgid "Pin View" msgstr "" -#. Label of the pinned (Check) field in DocType 'CRM View Settings' -#: crm/fcrm/doctype/crm_view_settings/crm_view_settings.json +#. Label of the pinned (Check) field in PageType 'CRM View Settings' +#: crm/fcrm/pagetype/crm_view_settings/crm_view_settings.json msgid "Pinned" msgstr "" @@ -4344,7 +4344,7 @@ msgstr "" msgid "Please select an existing organization" msgstr "" -#: crm/fcrm/doctype/helpdesk_crm_settings/helpdesk_crm_settings.py:126 +#: crm/fcrm/pagetype/helpdesk_crm_settings/helpdesk_crm_settings.py:126 msgid "Please set Email Address" msgstr "" @@ -4352,18 +4352,18 @@ msgstr "" msgid "Please setup Exotel intergration" msgstr "" -#: crm/fcrm/doctype/crm_deal/crm_deal.py:181 +#: crm/fcrm/pagetype/crm_deal/crm_deal.py:181 msgid "Please specify a reason for losing the deal." msgstr "" -#: crm/fcrm/doctype/crm_deal/crm_deal.py:183 +#: crm/fcrm/pagetype/crm_deal/crm_deal.py:183 msgid "Please specify the reason for losing the deal." msgstr "" -#. Label of the position (Int) field in DocType 'CRM Deal Status' -#. Label of the position (Int) field in DocType 'CRM Lead Status' -#: crm/fcrm/doctype/crm_deal_status/crm_deal_status.json -#: crm/fcrm/doctype/crm_lead_status/crm_lead_status.json +#. Label of the position (Int) field in PageType 'CRM Deal Status' +#. Label of the position (Int) field in PageType 'CRM Lead Status' +#: crm/fcrm/pagetype/crm_deal_status/crm_deal_status.json +#: crm/fcrm/pagetype/crm_lead_status/crm_lead_status.json msgid "Position" msgstr "" @@ -4371,18 +4371,18 @@ msgstr "" msgid "Primary" msgstr "" -#. Label of the email (Data) field in DocType 'CRM Deal' -#: crm/fcrm/doctype/crm_deal/crm_deal.json +#. Label of the email (Data) field in PageType 'CRM Deal' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json msgid "Primary Email" msgstr "" -#. Label of the mobile_no (Data) field in DocType 'CRM Deal' -#: crm/fcrm/doctype/crm_deal/crm_deal.json +#. Label of the mobile_no (Data) field in PageType 'CRM Deal' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json msgid "Primary Mobile No" msgstr "" -#. Label of the phone (Data) field in DocType 'CRM Deal' -#: crm/fcrm/doctype/crm_deal/crm_deal.json +#. Label of the phone (Data) field in PageType 'CRM Deal' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json msgid "Primary Phone" msgstr "" @@ -4390,57 +4390,57 @@ msgstr "" msgid "Primary contact set" msgstr "" -#. Label of the priorities (Table) field in DocType 'CRM Service Level +#. Label of the priorities (Table) field in PageType 'CRM Service Level #. Agreement' -#: crm/fcrm/doctype/crm_service_level_agreement/crm_service_level_agreement.json +#: crm/fcrm/pagetype/crm_service_level_agreement/crm_service_level_agreement.json msgid "Priorities" msgstr "" -#. Label of the priority (Link) field in DocType 'CRM Service Level Priority' -#. Label of the priority (Select) field in DocType 'CRM Task' -#: crm/fcrm/doctype/crm_service_level_priority/crm_service_level_priority.json -#: crm/fcrm/doctype/crm_task/crm_task.json +#. Label of the priority (Link) field in PageType 'CRM Service Level Priority' +#. Label of the priority (Select) field in PageType 'CRM Task' +#: crm/fcrm/pagetype/crm_service_level_priority/crm_service_level_priority.json +#: crm/fcrm/pagetype/crm_task/crm_task.json #: frontend/src/components/Settings/AssignmentRules/AssignmentRuleView.vue:64 #: frontend/src/components/Settings/AssignmentRules/AssignmentRulesList.vue:20 msgid "Priority" msgstr "" -#. Label of the private (Check) field in DocType 'CRM Dashboard' -#: crm/fcrm/doctype/crm_dashboard/crm_dashboard.json +#. Label of the private (Check) field in PageType 'CRM Dashboard' +#: crm/fcrm/pagetype/crm_dashboard/crm_dashboard.json #: frontend/src/components/FilesUploader/FilesUploaderArea.vue:89 msgid "Private" msgstr "" -#. Label of the probability (Percent) field in DocType 'CRM Deal' -#. Label of the probability (Percent) field in DocType 'CRM Deal Status' -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_deal_status/crm_deal_status.json +#. Label of the probability (Percent) field in PageType 'CRM Deal' +#. Label of the probability (Percent) field in PageType 'CRM Deal Status' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_deal_status/crm_deal_status.json msgid "Probability" msgstr "" -#. Label of the product_code (Link) field in DocType 'CRM Products' -#: crm/fcrm/doctype/crm_products/crm_products.json +#. Label of the product_code (Link) field in PageType 'CRM Products' +#: crm/fcrm/pagetype/crm_products/crm_products.json msgid "Product" msgstr "" -#. Label of the product_code (Data) field in DocType 'CRM Product' -#: crm/fcrm/doctype/crm_product/crm_product.json +#. Label of the product_code (Data) field in PageType 'CRM Product' +#: crm/fcrm/pagetype/crm_product/crm_product.json msgid "Product Code" msgstr "" -#. Label of the product_name (Data) field in DocType 'CRM Product' -#. Label of the product_name (Data) field in DocType 'CRM Products' -#: crm/fcrm/doctype/crm_product/crm_product.json -#: crm/fcrm/doctype/crm_products/crm_products.json +#. Label of the product_name (Data) field in PageType 'CRM Product' +#. Label of the product_name (Data) field in PageType 'CRM Products' +#: crm/fcrm/pagetype/crm_product/crm_product.json +#: crm/fcrm/pagetype/crm_products/crm_products.json msgid "Product Name" msgstr "" -#. Label of the products_tab (Tab Break) field in DocType 'CRM Deal' -#. Label of the products (Table) field in DocType 'CRM Deal' -#. Label of the products_tab (Tab Break) field in DocType 'CRM Lead' -#. Label of the products (Table) field in DocType 'CRM Lead' -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_lead/crm_lead.json +#. Label of the products_tab (Tab Break) field in PageType 'CRM Deal' +#. Label of the products (Table) field in PageType 'CRM Deal' +#. Label of the products_tab (Tab Break) field in PageType 'CRM Lead' +#. Label of the products (Table) field in PageType 'CRM Lead' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_lead/crm_lead.json msgid "Products" msgstr "" @@ -4457,8 +4457,8 @@ msgstr "" msgid "Projected vs actual revenue based on deal probability" msgstr "" -#. Label of the public (Check) field in DocType 'CRM View Settings' -#: crm/fcrm/doctype/crm_view_settings/crm_view_settings.json +#. Label of the public (Check) field in PageType 'CRM View Settings' +#: crm/fcrm/pagetype/crm_view_settings/crm_view_settings.json msgid "Public" msgstr "" @@ -4470,23 +4470,23 @@ msgstr "" msgid "Public view" msgstr "" -#. Label of the qty (Float) field in DocType 'CRM Products' -#: crm/fcrm/doctype/crm_products/crm_products.json +#. Label of the qty (Float) field in PageType 'CRM Products' +#: crm/fcrm/pagetype/crm_products/crm_products.json msgid "Quantity" msgstr "" -#. Option for the 'Status' (Select) field in DocType 'CRM Call Log' -#: crm/fcrm/doctype/crm_call_log/crm_call_log.json +#. Option for the 'Status' (Select) field in PageType 'CRM Call Log' +#: crm/fcrm/pagetype/crm_call_log/crm_call_log.json msgid "Queued" msgstr "" -#. Option for the 'Type' (Select) field in DocType 'CRM Fields Layout' -#: crm/fcrm/doctype/crm_fields_layout/crm_fields_layout.json +#. Option for the 'Type' (Select) field in PageType 'CRM Fields Layout' +#: crm/fcrm/pagetype/crm_fields_layout/crm_fields_layout.json msgid "Quick Entry" msgstr "" -#. Option for the 'Type' (Select) field in DocType 'CRM Global Settings' -#: crm/fcrm/doctype/crm_global_settings/crm_global_settings.json +#. Option for the 'Type' (Select) field in PageType 'CRM Global Settings' +#: crm/fcrm/pagetype/crm_global_settings/crm_global_settings.json msgid "Quick Filters" msgstr "" @@ -4498,13 +4498,13 @@ msgstr "" msgid "Quick entry layout" msgstr "" -#. Label of the rate (Currency) field in DocType 'CRM Products' -#: crm/fcrm/doctype/crm_products/crm_products.json +#. Label of the rate (Currency) field in PageType 'CRM Products' +#: crm/fcrm/pagetype/crm_products/crm_products.json msgid "Rate" msgstr "" -#. Label of the read (Check) field in DocType 'CRM Notification' -#: crm/fcrm/doctype/crm_notification/crm_notification.json +#. Label of the read (Check) field in PageType 'CRM Notification' +#: crm/fcrm/pagetype/crm_notification/crm_notification.json msgid "Read" msgstr "" @@ -4512,48 +4512,48 @@ msgstr "" msgid "Reason" msgstr "" -#. Label of the record_calls (Check) field in DocType 'CRM Twilio Settings' -#: crm/fcrm/doctype/crm_twilio_settings/crm_twilio_settings.json +#. Label of the record_calls (Check) field in PageType 'CRM Twilio Settings' +#: crm/fcrm/pagetype/crm_twilio_settings/crm_twilio_settings.json msgid "Record Calls" msgstr "" -#. Label of the record_call (Check) field in DocType 'CRM Exotel Settings' -#: crm/fcrm/doctype/crm_exotel_settings/crm_exotel_settings.json +#. Label of the record_call (Check) field in PageType 'CRM Exotel Settings' +#: crm/fcrm/pagetype/crm_exotel_settings/crm_exotel_settings.json msgid "Record Outgoing Calls" msgstr "" -#. Label of the recording_url (Data) field in DocType 'CRM Call Log' -#: crm/fcrm/doctype/crm_call_log/crm_call_log.json +#. Label of the recording_url (Data) field in PageType 'CRM Call Log' +#: crm/fcrm/pagetype/crm_call_log/crm_call_log.json msgid "Recording URL" msgstr "" -#. Label of the reference_name (Dynamic Link) field in DocType 'CRM +#. Label of the reference_name (Dynamic Link) field in PageType 'CRM #. Notification' -#. Label of the reference_docname (Dynamic Link) field in DocType 'CRM Task' -#. Label of the reference_docname (Dynamic Link) field in DocType 'FCRM Note' -#: crm/fcrm/doctype/crm_notification/crm_notification.json -#: crm/fcrm/doctype/crm_task/crm_task.json -#: crm/fcrm/doctype/fcrm_note/fcrm_note.json -msgid "Reference Doc" +#. Label of the reference_docname (Dynamic Link) field in PageType 'CRM Task' +#. Label of the reference_docname (Dynamic Link) field in PageType 'FCRM Note' +#: crm/fcrm/pagetype/crm_notification/crm_notification.json +#: crm/fcrm/pagetype/crm_task/crm_task.json +#: crm/fcrm/pagetype/fcrm_note/fcrm_note.json +msgid "Reference Pg" msgstr "" -#. Label of the reference_doctype (Link) field in DocType 'CRM Notification' -#: crm/fcrm/doctype/crm_notification/crm_notification.json -msgid "Reference Doctype" +#. Label of the reference_pagetype (Link) field in PageType 'CRM Notification' +#: crm/fcrm/pagetype/crm_notification/crm_notification.json +msgid "Reference Pagetype" msgstr "" -#. Label of the reference_doctype (Link) field in DocType 'CRM Call Log' -#. Label of the reference_doctype (Link) field in DocType 'CRM Task' -#. Label of the reference_doctype (Link) field in DocType 'FCRM Note' -#: crm/fcrm/doctype/crm_call_log/crm_call_log.json -#: crm/fcrm/doctype/crm_task/crm_task.json -#: crm/fcrm/doctype/fcrm_note/fcrm_note.json +#. Label of the reference_pagetype (Link) field in PageType 'CRM Call Log' +#. Label of the reference_pagetype (Link) field in PageType 'CRM Task' +#. Label of the reference_pagetype (Link) field in PageType 'FCRM Note' +#: crm/fcrm/pagetype/crm_call_log/crm_call_log.json +#: crm/fcrm/pagetype/crm_task/crm_task.json +#: crm/fcrm/pagetype/fcrm_note/fcrm_note.json msgid "Reference Document Type" msgstr "" -#. Label of the reference_docname (Dynamic Link) field in DocType 'CRM Call +#. Label of the reference_docname (Dynamic Link) field in PageType 'CRM Call #. Log' -#: crm/fcrm/doctype/crm_call_log/crm_call_log.json +#: crm/fcrm/pagetype/crm_call_log/crm_call_log.json msgid "Reference Name" msgstr "" @@ -4623,8 +4623,8 @@ msgstr "" msgid "Report an Issue" msgstr "" -#. Option for the 'Type' (Select) field in DocType 'CRM Fields Layout' -#: crm/fcrm/doctype/crm_fields_layout/crm_fields_layout.json +#. Option for the 'Type' (Select) field in PageType 'CRM Fields Layout' +#: crm/fcrm/pagetype/crm_fields_layout/crm_fields_layout.json msgid "Required Fields" msgstr "" @@ -4640,7 +4640,7 @@ msgstr "" msgid "Reset Changes" msgstr "" -#: crm/fcrm/doctype/erpnext_crm_settings/erpnext_crm_settings.js:7 +#: crm/fcrm/pagetype/erpnext_crm_settings/erpnext_crm_settings.js:7 msgid "Reset ERPNext Form Script" msgstr "" @@ -4652,35 +4652,35 @@ msgstr "" msgid "Reset to default" msgstr "" -#. Label of the response_by (Datetime) field in DocType 'CRM Deal' -#. Label of the response_by (Datetime) field in DocType 'CRM Lead' -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_lead/crm_lead.json +#. Label of the response_by (Datetime) field in PageType 'CRM Deal' +#. Label of the response_by (Datetime) field in PageType 'CRM Lead' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_lead/crm_lead.json msgid "Response By" msgstr "" -#. Label of the response_details_section (Section Break) field in DocType 'CRM +#. Label of the response_details_section (Section Break) field in PageType 'CRM #. Deal' -#. Label of the response_details_section (Section Break) field in DocType 'CRM +#. Label of the response_details_section (Section Break) field in PageType 'CRM #. Lead' -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_lead/crm_lead.json +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_lead/crm_lead.json msgid "Response Details" msgstr "" -#. Label of the section_break_ufaf (Section Break) field in DocType 'CRM +#. Label of the section_break_ufaf (Section Break) field in PageType 'CRM #. Service Level Agreement' -#: crm/fcrm/doctype/crm_service_level_agreement/crm_service_level_agreement.json +#: crm/fcrm/pagetype/crm_service_level_agreement/crm_service_level_agreement.json msgid "Response and Follow Up" msgstr "" -#: crm/fcrm/doctype/fcrm_settings/fcrm_settings.js:14 +#: crm/fcrm/pagetype/fcrm_settings/fcrm_settings.js:14 msgid "Restore" msgstr "" -#. Label of the restore_defaults (Button) field in DocType 'FCRM Settings' -#: crm/fcrm/doctype/fcrm_settings/fcrm_settings.js:13 -#: crm/fcrm/doctype/fcrm_settings/fcrm_settings.json +#. Label of the restore_defaults (Button) field in PageType 'FCRM Settings' +#: crm/fcrm/pagetype/fcrm_settings/fcrm_settings.js:13 +#: crm/fcrm/pagetype/fcrm_settings/fcrm_settings.json msgid "Restore Defaults" msgstr "" @@ -4697,13 +4697,13 @@ msgstr "" msgid "Rich Text" msgstr "" -#. Label of the rgt (Int) field in DocType 'CRM Territory' -#: crm/fcrm/doctype/crm_territory/crm_territory.json +#. Label of the rgt (Int) field in PageType 'CRM Territory' +#: crm/fcrm/pagetype/crm_territory/crm_territory.json msgid "Right" msgstr "" -#. Option for the 'Status' (Select) field in DocType 'CRM Call Log' -#: crm/fcrm/doctype/crm_call_log/crm_call_log.json +#. Option for the 'Status' (Select) field in PageType 'CRM Call Log' +#: crm/fcrm/pagetype/crm_call_log/crm_call_log.json msgid "Ringing" msgstr "" @@ -4712,55 +4712,55 @@ msgstr "" msgid "Ringing..." msgstr "" -#. Label of the role (Select) field in DocType 'CRM Invitation' -#: crm/fcrm/doctype/crm_invitation/crm_invitation.json +#. Label of the role (Select) field in PageType 'CRM Invitation' +#: crm/fcrm/pagetype/crm_invitation/crm_invitation.json #: frontend/src/components/Modals/AddExistingUserModal.vue:46 msgid "Role" msgstr "" -#. Option for the 'Type' (Select) field in DocType 'CRM Dropdown Item' -#. Label of the route (Data) field in DocType 'CRM Dropdown Item' -#: crm/fcrm/doctype/crm_dropdown_item/crm_dropdown_item.json +#. Option for the 'Type' (Select) field in PageType 'CRM Dropdown Item' +#. Label of the route (Data) field in PageType 'CRM Dropdown Item' +#: crm/fcrm/pagetype/crm_dropdown_item/crm_dropdown_item.json msgid "Route" msgstr "" -#. Label of the route_name (Data) field in DocType 'CRM View Settings' -#: crm/fcrm/doctype/crm_view_settings/crm_view_settings.json +#. Label of the route_name (Data) field in PageType 'CRM View Settings' +#: crm/fcrm/pagetype/crm_view_settings/crm_view_settings.json msgid "Route Name" msgstr "" -#. Label of the rows (Code) field in DocType 'CRM View Settings' -#: crm/fcrm/doctype/crm_view_settings/crm_view_settings.json +#. Label of the rows (Code) field in PageType 'CRM View Settings' +#: crm/fcrm/pagetype/crm_view_settings/crm_view_settings.json msgid "Rows" msgstr "" -#. Label of the sla_tab (Tab Break) field in DocType 'CRM Deal' -#. Label of the sla (Link) field in DocType 'CRM Deal' -#. Label of the sla_tab (Tab Break) field in DocType 'CRM Lead' -#. Label of the sla (Link) field in DocType 'CRM Lead' -#. Label of a shortcut in the Frappe CRM Workspace -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_lead/crm_lead.json -#: crm/fcrm/workspace/frappe_crm/frappe_crm.json +#. Label of the sla_tab (Tab Break) field in PageType 'CRM Deal' +#. Label of the sla (Link) field in PageType 'CRM Deal' +#. Label of the sla_tab (Tab Break) field in PageType 'CRM Lead' +#. Label of the sla (Link) field in PageType 'CRM Lead' +#. Label of a shortcut in the Jingrow CRM Workspace +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_lead/crm_lead.json +#: crm/fcrm/workspace/jingrow_crm/jingrow_crm.json msgid "SLA" msgstr "" -#. Label of the sla_creation (Datetime) field in DocType 'CRM Deal' -#. Label of the sla_creation (Datetime) field in DocType 'CRM Lead' -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_lead/crm_lead.json +#. Label of the sla_creation (Datetime) field in PageType 'CRM Deal' +#. Label of the sla_creation (Datetime) field in PageType 'CRM Lead' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_lead/crm_lead.json msgid "SLA Creation" msgstr "" -#. Label of the sla_name (Data) field in DocType 'CRM Service Level Agreement' -#: crm/fcrm/doctype/crm_service_level_agreement/crm_service_level_agreement.json +#. Label of the sla_name (Data) field in PageType 'CRM Service Level Agreement' +#: crm/fcrm/pagetype/crm_service_level_agreement/crm_service_level_agreement.json msgid "SLA Name" msgstr "" -#. Label of the sla_status (Select) field in DocType 'CRM Deal' -#. Label of the sla_status (Select) field in DocType 'CRM Lead' -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_lead/crm_lead.json +#. Label of the sla_status (Select) field in PageType 'CRM Deal' +#. Label of the sla_status (Select) field in PageType 'CRM Lead' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_lead/crm_lead.json msgid "SLA Status" msgstr "" @@ -4769,57 +4769,57 @@ msgid "SUBJECT" msgstr "" #. Name of a role -#. Option for the 'Role' (Select) field in DocType 'CRM Invitation' -#: crm/fcrm/doctype/crm_call_log/crm_call_log.json -#: crm/fcrm/doctype/crm_communication_status/crm_communication_status.json -#: crm/fcrm/doctype/crm_dashboard/crm_dashboard.json -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_deal_status/crm_deal_status.json -#: crm/fcrm/doctype/crm_exotel_settings/crm_exotel_settings.json -#: crm/fcrm/doctype/crm_form_script/crm_form_script.json -#: crm/fcrm/doctype/crm_global_settings/crm_global_settings.json -#: crm/fcrm/doctype/crm_holiday_list/crm_holiday_list.json -#: crm/fcrm/doctype/crm_industry/crm_industry.json -#: crm/fcrm/doctype/crm_invitation/crm_invitation.json -#: crm/fcrm/doctype/crm_lead/crm_lead.json -#: crm/fcrm/doctype/crm_lead_source/crm_lead_source.json -#: crm/fcrm/doctype/crm_lead_status/crm_lead_status.json -#: crm/fcrm/doctype/crm_lost_reason/crm_lost_reason.json -#: crm/fcrm/doctype/crm_notification/crm_notification.json -#: crm/fcrm/doctype/crm_organization/crm_organization.json -#: crm/fcrm/doctype/crm_service_level_agreement/crm_service_level_agreement.json -#: crm/fcrm/doctype/crm_task/crm_task.json -#: crm/fcrm/doctype/crm_territory/crm_territory.json -#: crm/fcrm/doctype/crm_twilio_settings/crm_twilio_settings.json -#: crm/fcrm/doctype/crm_view_settings/crm_view_settings.json -#: crm/fcrm/doctype/erpnext_crm_settings/erpnext_crm_settings.json -#: crm/fcrm/doctype/fcrm_note/fcrm_note.json -#: crm/fcrm/doctype/fcrm_settings/fcrm_settings.json -#: crm/fcrm/doctype/helpdesk_crm_settings/helpdesk_crm_settings.json +#. Option for the 'Role' (Select) field in PageType 'CRM Invitation' +#: crm/fcrm/pagetype/crm_call_log/crm_call_log.json +#: crm/fcrm/pagetype/crm_communication_status/crm_communication_status.json +#: crm/fcrm/pagetype/crm_dashboard/crm_dashboard.json +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_deal_status/crm_deal_status.json +#: crm/fcrm/pagetype/crm_exotel_settings/crm_exotel_settings.json +#: crm/fcrm/pagetype/crm_form_script/crm_form_script.json +#: crm/fcrm/pagetype/crm_global_settings/crm_global_settings.json +#: crm/fcrm/pagetype/crm_holiday_list/crm_holiday_list.json +#: crm/fcrm/pagetype/crm_industry/crm_industry.json +#: crm/fcrm/pagetype/crm_invitation/crm_invitation.json +#: crm/fcrm/pagetype/crm_lead/crm_lead.json +#: crm/fcrm/pagetype/crm_lead_source/crm_lead_source.json +#: crm/fcrm/pagetype/crm_lead_status/crm_lead_status.json +#: crm/fcrm/pagetype/crm_lost_reason/crm_lost_reason.json +#: crm/fcrm/pagetype/crm_notification/crm_notification.json +#: crm/fcrm/pagetype/crm_organization/crm_organization.json +#: crm/fcrm/pagetype/crm_service_level_agreement/crm_service_level_agreement.json +#: crm/fcrm/pagetype/crm_task/crm_task.json +#: crm/fcrm/pagetype/crm_territory/crm_territory.json +#: crm/fcrm/pagetype/crm_twilio_settings/crm_twilio_settings.json +#: crm/fcrm/pagetype/crm_view_settings/crm_view_settings.json +#: crm/fcrm/pagetype/erpnext_crm_settings/erpnext_crm_settings.json +#: crm/fcrm/pagetype/fcrm_note/fcrm_note.json +#: crm/fcrm/pagetype/fcrm_settings/fcrm_settings.json +#: crm/fcrm/pagetype/helpdesk_crm_settings/helpdesk_crm_settings.json msgid "Sales Manager" msgstr "" #. Name of a role -#. Option for the 'Role' (Select) field in DocType 'CRM Invitation' -#: crm/fcrm/doctype/crm_call_log/crm_call_log.json -#: crm/fcrm/doctype/crm_communication_status/crm_communication_status.json -#: crm/fcrm/doctype/crm_dashboard/crm_dashboard.json -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_deal_status/crm_deal_status.json -#: crm/fcrm/doctype/crm_global_settings/crm_global_settings.json -#: crm/fcrm/doctype/crm_holiday_list/crm_holiday_list.json -#: crm/fcrm/doctype/crm_industry/crm_industry.json -#: crm/fcrm/doctype/crm_invitation/crm_invitation.json -#: crm/fcrm/doctype/crm_lead/crm_lead.json -#: crm/fcrm/doctype/crm_lead_source/crm_lead_source.json -#: crm/fcrm/doctype/crm_lead_status/crm_lead_status.json -#: crm/fcrm/doctype/crm_lost_reason/crm_lost_reason.json -#: crm/fcrm/doctype/crm_notification/crm_notification.json -#: crm/fcrm/doctype/crm_organization/crm_organization.json -#: crm/fcrm/doctype/crm_task/crm_task.json -#: crm/fcrm/doctype/crm_territory/crm_territory.json -#: crm/fcrm/doctype/crm_view_settings/crm_view_settings.json -#: crm/fcrm/doctype/fcrm_note/fcrm_note.json +#. Option for the 'Role' (Select) field in PageType 'CRM Invitation' +#: crm/fcrm/pagetype/crm_call_log/crm_call_log.json +#: crm/fcrm/pagetype/crm_communication_status/crm_communication_status.json +#: crm/fcrm/pagetype/crm_dashboard/crm_dashboard.json +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_deal_status/crm_deal_status.json +#: crm/fcrm/pagetype/crm_global_settings/crm_global_settings.json +#: crm/fcrm/pagetype/crm_holiday_list/crm_holiday_list.json +#: crm/fcrm/pagetype/crm_industry/crm_industry.json +#: crm/fcrm/pagetype/crm_invitation/crm_invitation.json +#: crm/fcrm/pagetype/crm_lead/crm_lead.json +#: crm/fcrm/pagetype/crm_lead_source/crm_lead_source.json +#: crm/fcrm/pagetype/crm_lead_status/crm_lead_status.json +#: crm/fcrm/pagetype/crm_lost_reason/crm_lost_reason.json +#: crm/fcrm/pagetype/crm_notification/crm_notification.json +#: crm/fcrm/pagetype/crm_organization/crm_organization.json +#: crm/fcrm/pagetype/crm_task/crm_task.json +#: crm/fcrm/pagetype/crm_territory/crm_territory.json +#: crm/fcrm/pagetype/crm_view_settings/crm_view_settings.json +#: crm/fcrm/pagetype/fcrm_note/fcrm_note.json #: frontend/src/components/Modals/AddExistingUserModal.vue:92 #: frontend/src/components/Settings/InviteUserPage.vue:156 #: frontend/src/components/Settings/InviteUserPage.vue:163 @@ -4843,17 +4843,17 @@ msgstr "" msgid "Salesperson" msgstr "" -#. Label of the salutation (Link) field in DocType 'CRM Deal' -#. Label of the salutation (Link) field in DocType 'CRM Lead' -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_lead/crm_lead.json +#. Label of the salutation (Link) field in PageType 'CRM Deal' +#. Label of the salutation (Link) field in PageType 'CRM Lead' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_lead/crm_lead.json msgid "Salutation" msgstr "" -#. Option for the 'Weekly Off' (Select) field in DocType 'CRM Holiday List' -#. Option for the 'Workday' (Select) field in DocType 'CRM Service Day' -#: crm/fcrm/doctype/crm_holiday_list/crm_holiday_list.json -#: crm/fcrm/doctype/crm_service_day/crm_service_day.json +#. Option for the 'Weekly Off' (Select) field in PageType 'CRM Holiday List' +#. Option for the 'Workday' (Select) field in PageType 'CRM Service Day' +#: crm/fcrm/pagetype/crm_holiday_list/crm_holiday_list.json +#: crm/fcrm/pagetype/crm_service_day/crm_service_day.json msgid "Saturday" msgstr "" @@ -4902,8 +4902,8 @@ msgstr "" msgid "Schedule an event" msgstr "" -#. Label of the script (Code) field in DocType 'CRM Form Script' -#: crm/fcrm/doctype/crm_form_script/crm_form_script.json +#. Label of the script (Code) field in PageType 'CRM Form Script' +#: crm/fcrm/pagetype/crm_form_script/crm_form_script.json msgid "Script" msgstr "" @@ -4971,18 +4971,18 @@ msgstr "" msgid "Send invites to" msgstr "" -#. Option for the 'Type' (Select) field in DocType 'CRM Dropdown Item' -#: crm/fcrm/doctype/crm_dropdown_item/crm_dropdown_item.json +#. Option for the 'Type' (Select) field in PageType 'CRM Dropdown Item' +#: crm/fcrm/pagetype/crm_dropdown_item/crm_dropdown_item.json msgid "Separator" msgstr "" -#. Label of the naming_series (Select) field in DocType 'CRM Lead' -#: crm/fcrm/doctype/crm_lead/crm_lead.json +#. Label of the naming_series (Select) field in PageType 'CRM Lead' +#: crm/fcrm/pagetype/crm_lead/crm_lead.json msgid "Series" msgstr "" -#. Label of the service_provider (Select) field in DocType 'FCRM Settings' -#: crm/fcrm/doctype/fcrm_settings/fcrm_settings.json +#. Label of the service_provider (Select) field in PageType 'FCRM Settings' +#: crm/fcrm/pagetype/fcrm_settings/fcrm_settings.json msgid "Service Provider" msgstr "" @@ -5027,7 +5027,7 @@ msgid "Setting up" msgstr "" #: frontend/src/components/Settings/emailConfig.js:145 -msgid "Setting up Frappe Mail requires you to have an API key and API Secret of your email account. Read more " +msgid "Setting up Jingrow Mail requires you to have an API key and API Secret of your email account. Read more " msgstr "" #: frontend/src/components/Settings/emailConfig.js:97 @@ -5066,8 +5066,8 @@ msgid "" "\t\t and app specific passwords. Read more " msgstr "" -#. Label of the defaults_tab (Tab Break) field in DocType 'FCRM Settings' -#: crm/fcrm/doctype/fcrm_settings/fcrm_settings.json +#. Label of the defaults_tab (Tab Break) field in PageType 'FCRM Settings' +#: crm/fcrm/pagetype/fcrm_settings/fcrm_settings.json #: frontend/src/components/Layouts/AppSidebar.vue:537 #: frontend/src/components/Settings/Settings.vue:12 msgid "Settings" @@ -5077,7 +5077,7 @@ msgstr "" msgid "Setup Email" msgstr "" -#: crm/fcrm/doctype/fcrm_settings/fcrm_settings.py:199 +#: crm/fcrm/pagetype/fcrm_settings/fcrm_settings.py:199 msgid "Setup the Exchange Rate Provider as 'Exchangerate Host' in settings, as default provider does not support currency conversion for {0} to {1}." msgstr "" @@ -5112,20 +5112,20 @@ msgstr "" msgid "Show preview" msgstr "" -#. Option for the 'Type' (Select) field in DocType 'CRM Fields Layout' -#: crm/fcrm/doctype/crm_fields_layout/crm_fields_layout.json +#. Option for the 'Type' (Select) field in PageType 'CRM Fields Layout' +#: crm/fcrm/pagetype/crm_fields_layout/crm_fields_layout.json msgid "Side Panel" msgstr "" -#. Option for the 'Type' (Select) field in DocType 'CRM Global Settings' -#: crm/fcrm/doctype/crm_global_settings/crm_global_settings.json +#. Option for the 'Type' (Select) field in PageType 'CRM Global Settings' +#: crm/fcrm/pagetype/crm_global_settings/crm_global_settings.json msgid "Sidebar Items" msgstr "" -#. Description of the 'Condition' (Code) field in DocType 'CRM Service Level +#. Description of the 'Condition' (Code) field in PageType 'CRM Service Level #. Agreement' -#: crm/fcrm/doctype/crm_service_level_agreement/crm_service_level_agreement.json -msgid "Simple Python Expression, Example: doc.status == 'Open' and doc.lead_source == 'Ads'" +#: crm/fcrm/pagetype/crm_service_level_agreement/crm_service_level_agreement.json +msgid "Simple Python Expression, Example: pg.status == 'Open' and pg.lead_source == 'Ads'" msgstr "" #: frontend/src/components/AssignTo.vue:83 @@ -5149,16 +5149,16 @@ msgstr "" msgid "Sort" msgstr "" -#. Label of the source (Link) field in DocType 'CRM Deal' -#. Label of the source (Link) field in DocType 'CRM Lead' -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_lead/crm_lead.json +#. Label of the source (Link) field in PageType 'CRM Deal' +#. Label of the source (Link) field in PageType 'CRM Lead' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_lead/crm_lead.json #: frontend/src/components/Modals/EditValueModal.vue:10 msgid "Source" msgstr "" -#. Label of the source_name (Data) field in DocType 'CRM Lead Source' -#: crm/fcrm/doctype/crm_lead_source/crm_lead_source.json +#. Label of the source_name (Data) field in PageType 'CRM Lead Source' +#: crm/fcrm/pagetype/crm_lead_source/crm_lead_source.json msgid "Source Name" msgstr "" @@ -5171,12 +5171,12 @@ msgstr "" msgid "Stage" msgstr "" -#: crm/fcrm/doctype/crm_form_script/crm_form_script.js:15 +#: crm/fcrm/pagetype/crm_form_script/crm_form_script.js:15 msgid "Standard Form Scripts can not be modified, duplicate the Form Script instead." msgstr "" -#. Label of the standard_rate (Currency) field in DocType 'CRM Product' -#: crm/fcrm/doctype/crm_product/crm_product.json +#. Label of the standard_rate (Currency) field in PageType 'CRM Product' +#: crm/fcrm/pagetype/crm_product/crm_product.json msgid "Standard Selling Rate" msgstr "" @@ -5184,18 +5184,18 @@ msgstr "" msgid "Standard Views" msgstr "" -#. Label of the start_date (Date) field in DocType 'CRM Service Level +#. Label of the start_date (Date) field in PageType 'CRM Service Level #. Agreement' -#. Label of the start_date (Date) field in DocType 'CRM Task' -#: crm/fcrm/doctype/crm_service_level_agreement/crm_service_level_agreement.json -#: crm/fcrm/doctype/crm_task/crm_task.json +#. Label of the start_date (Date) field in PageType 'CRM Task' +#: crm/fcrm/pagetype/crm_service_level_agreement/crm_service_level_agreement.json +#: crm/fcrm/pagetype/crm_task/crm_task.json msgid "Start Date" msgstr "" -#. Label of the start_time (Datetime) field in DocType 'CRM Call Log' -#. Label of the start_time (Time) field in DocType 'CRM Service Day' -#: crm/fcrm/doctype/crm_call_log/crm_call_log.json -#: crm/fcrm/doctype/crm_service_day/crm_service_day.json +#. Label of the start_time (Datetime) field in PageType 'CRM Call Log' +#. Label of the start_time (Time) field in PageType 'CRM Service Day' +#: crm/fcrm/pagetype/crm_call_log/crm_call_log.json +#: crm/fcrm/pagetype/crm_service_day/crm_service_day.json #: frontend/src/components/Calendar/CalendarEventPanel.vue:234 #: frontend/src/components/Modals/EventModal.vue:103 msgid "Start Time" @@ -5209,32 +5209,32 @@ msgstr "" msgid "Start with sample 10 leads" msgstr "" -#. Label of the status (Select) field in DocType 'CRM Call Log' -#. Label of the status (Data) field in DocType 'CRM Communication Status' -#. Label of the status (Link) field in DocType 'CRM Deal' -#. Label of the deal_status (Data) field in DocType 'CRM Deal Status' -#. Label of the status (Select) field in DocType 'CRM Invitation' -#. Label of the status (Link) field in DocType 'CRM Lead' -#. Label of the lead_status (Data) field in DocType 'CRM Lead Status' -#. Label of the status (Select) field in DocType 'CRM Task' -#: crm/fcrm/doctype/crm_call_log/crm_call_log.json -#: crm/fcrm/doctype/crm_communication_status/crm_communication_status.json -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_deal_status/crm_deal_status.json -#: crm/fcrm/doctype/crm_invitation/crm_invitation.json -#: crm/fcrm/doctype/crm_lead/crm_lead.json -#: crm/fcrm/doctype/crm_lead_status/crm_lead_status.json -#: crm/fcrm/doctype/crm_task/crm_task.json frontend/src/pages/Contact.vue:505 +#. Label of the status (Select) field in PageType 'CRM Call Log' +#. Label of the status (Data) field in PageType 'CRM Communication Status' +#. Label of the status (Link) field in PageType 'CRM Deal' +#. Label of the deal_status (Data) field in PageType 'CRM Deal Status' +#. Label of the status (Select) field in PageType 'CRM Invitation' +#. Label of the status (Link) field in PageType 'CRM Lead' +#. Label of the lead_status (Data) field in PageType 'CRM Lead Status' +#. Label of the status (Select) field in PageType 'CRM Task' +#: crm/fcrm/pagetype/crm_call_log/crm_call_log.json +#: crm/fcrm/pagetype/crm_communication_status/crm_communication_status.json +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_deal_status/crm_deal_status.json +#: crm/fcrm/pagetype/crm_invitation/crm_invitation.json +#: crm/fcrm/pagetype/crm_lead/crm_lead.json +#: crm/fcrm/pagetype/crm_lead_status/crm_lead_status.json +#: crm/fcrm/pagetype/crm_task/crm_task.json frontend/src/pages/Contact.vue:505 #: frontend/src/pages/MobileContact.vue:513 #: frontend/src/pages/MobileOrganization.vue:457 #: frontend/src/pages/Organization.vue:478 msgid "Status" msgstr "" -#. Label of the status_change_log (Table) field in DocType 'CRM Deal' -#. Label of the status_change_log (Table) field in DocType 'CRM Lead' -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_lead/crm_lead.json +#. Label of the status_change_log (Table) field in PageType 'CRM Deal' +#. Label of the status_change_log (Table) field in PageType 'CRM Lead' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_lead/crm_lead.json msgid "Status Change Log" msgstr "" @@ -5243,8 +5243,8 @@ msgstr "" msgid "Status is required" msgstr "" -#. Label of the subdomain (Data) field in DocType 'CRM Exotel Settings' -#: crm/fcrm/doctype/crm_exotel_settings/crm_exotel_settings.json +#. Label of the subdomain (Data) field in PageType 'CRM Exotel Settings' +#: crm/fcrm/pagetype/crm_exotel_settings/crm_exotel_settings.json msgid "Subdomain" msgstr "" @@ -5262,10 +5262,10 @@ msgstr "" msgid "Subject: {0}" msgstr "" -#. Option for the 'Weekly Off' (Select) field in DocType 'CRM Holiday List' -#. Option for the 'Workday' (Select) field in DocType 'CRM Service Day' -#: crm/fcrm/doctype/crm_holiday_list/crm_holiday_list.json -#: crm/fcrm/doctype/crm_service_day/crm_service_day.json +#. Option for the 'Weekly Off' (Select) field in PageType 'CRM Holiday List' +#. Option for the 'Workday' (Select) field in PageType 'CRM Service Day' +#: crm/fcrm/pagetype/crm_holiday_list/crm_holiday_list.json +#: crm/fcrm/pagetype/crm_service_day/crm_service_day.json msgid "Sunday" msgstr "" @@ -5286,21 +5286,21 @@ msgid "System Configuration" msgstr "" #. Name of a role -#. Option for the 'Role' (Select) field in DocType 'CRM Invitation' -#: crm/fcrm/doctype/crm_dashboard/crm_dashboard.json -#: crm/fcrm/doctype/crm_exotel_settings/crm_exotel_settings.json -#: crm/fcrm/doctype/crm_fields_layout/crm_fields_layout.json -#: crm/fcrm/doctype/crm_global_settings/crm_global_settings.json -#: crm/fcrm/doctype/crm_invitation/crm_invitation.json -#: crm/fcrm/doctype/crm_lead_source/crm_lead_source.json -#: crm/fcrm/doctype/crm_lost_reason/crm_lost_reason.json -#: crm/fcrm/doctype/crm_notification/crm_notification.json -#: crm/fcrm/doctype/crm_product/crm_product.json -#: crm/fcrm/doctype/crm_telephony_agent/crm_telephony_agent.json -#: crm/fcrm/doctype/crm_twilio_settings/crm_twilio_settings.json -#: crm/fcrm/doctype/erpnext_crm_settings/erpnext_crm_settings.json -#: crm/fcrm/doctype/fcrm_settings/fcrm_settings.json -#: crm/fcrm/doctype/helpdesk_crm_settings/helpdesk_crm_settings.json +#. Option for the 'Role' (Select) field in PageType 'CRM Invitation' +#: crm/fcrm/pagetype/crm_dashboard/crm_dashboard.json +#: crm/fcrm/pagetype/crm_exotel_settings/crm_exotel_settings.json +#: crm/fcrm/pagetype/crm_fields_layout/crm_fields_layout.json +#: crm/fcrm/pagetype/crm_global_settings/crm_global_settings.json +#: crm/fcrm/pagetype/crm_invitation/crm_invitation.json +#: crm/fcrm/pagetype/crm_lead_source/crm_lead_source.json +#: crm/fcrm/pagetype/crm_lost_reason/crm_lost_reason.json +#: crm/fcrm/pagetype/crm_notification/crm_notification.json +#: crm/fcrm/pagetype/crm_product/crm_product.json +#: crm/fcrm/pagetype/crm_telephony_agent/crm_telephony_agent.json +#: crm/fcrm/pagetype/crm_twilio_settings/crm_twilio_settings.json +#: crm/fcrm/pagetype/erpnext_crm_settings/erpnext_crm_settings.json +#: crm/fcrm/pagetype/fcrm_settings/fcrm_settings.json +#: crm/fcrm/pagetype/helpdesk_crm_settings/helpdesk_crm_settings.json msgid "System Manager" msgstr "" @@ -5312,8 +5312,8 @@ msgstr "" msgid "Take a note..." msgstr "" -#. Option for the 'Type' (Select) field in DocType 'CRM Notification' -#: crm/fcrm/doctype/crm_notification/crm_notification.json +#. Option for the 'Type' (Select) field in PageType 'CRM Notification' +#: crm/fcrm/pagetype/crm_notification/crm_notification.json #: frontend/src/components/Layouts/AppSidebar.vue:555 msgid "Task" msgstr "" @@ -5331,8 +5331,8 @@ msgstr "" msgid "Telephony" msgstr "" -#. Label of the telephony_medium (Select) field in DocType 'CRM Call Log' -#: crm/fcrm/doctype/crm_call_log/crm_call_log.json +#. Label of the telephony_medium (Select) field in PageType 'CRM Call Log' +#: crm/fcrm/pagetype/crm_call_log/crm_call_log.json msgid "Telephony Medium" msgstr "" @@ -5368,27 +5368,27 @@ msgstr "" msgid "Template updated successfully" msgstr "" -#. Label of a shortcut in the Frappe CRM Workspace -#: crm/fcrm/workspace/frappe_crm/frappe_crm.json +#. Label of a shortcut in the Jingrow CRM Workspace +#: crm/fcrm/workspace/jingrow_crm/jingrow_crm.json msgid "Territories" msgstr "" -#. Label of the territory (Link) field in DocType 'CRM Deal' -#. Label of the territory (Link) field in DocType 'CRM Lead' -#. Label of the territory (Link) field in DocType 'CRM Organization' -#: crm/api/dashboard.py:1022 crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_lead/crm_lead.json -#: crm/fcrm/doctype/crm_organization/crm_organization.json +#. Label of the territory (Link) field in PageType 'CRM Deal' +#. Label of the territory (Link) field in PageType 'CRM Lead' +#. Label of the territory (Link) field in PageType 'CRM Organization' +#: crm/api/dashboard.py:1022 crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_lead/crm_lead.json +#: crm/fcrm/pagetype/crm_organization/crm_organization.json msgid "Territory" msgstr "" -#. Label of the territory_manager (Link) field in DocType 'CRM Territory' -#: crm/fcrm/doctype/crm_territory/crm_territory.json +#. Label of the territory_manager (Link) field in PageType 'CRM Territory' +#: crm/fcrm/pagetype/crm_territory/crm_territory.json msgid "Territory Manager" msgstr "" -#. Label of the territory_name (Data) field in DocType 'CRM Territory' -#: crm/fcrm/doctype/crm_territory/crm_territory.json +#. Label of the territory_name (Data) field in PageType 'CRM Territory' +#: crm/fcrm/pagetype/crm_territory/crm_territory.json msgid "Territory Name" msgstr "" @@ -5396,22 +5396,22 @@ msgstr "" msgid "Thanks" msgstr "" -#: crm/fcrm/doctype/crm_service_level_agreement/crm_service_level_agreement.py:46 +#: crm/fcrm/pagetype/crm_service_level_agreement/crm_service_level_agreement.py:46 msgid "The Condition '{0}' is invalid: {1}" msgstr "" -#. Description of the 'Exchange Rate' (Float) field in DocType 'CRM Deal' -#: crm/fcrm/doctype/crm_deal/crm_deal.json +#. Description of the 'Exchange Rate' (Float) field in PageType 'CRM Deal' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json msgid "The rate used to convert the deal’s currency to your crm's base currency (set in CRM Settings). It is set once when the currency is first added and doesn't change automatically." msgstr "" -#. Description of the 'Exchange Rate' (Float) field in DocType 'CRM +#. Description of the 'Exchange Rate' (Float) field in PageType 'CRM #. Organization' -#: crm/fcrm/doctype/crm_organization/crm_organization.json +#: crm/fcrm/pagetype/crm_organization/crm_organization.json msgid "The rate used to convert the organization’s currency to your crm's base currency (set in CRM Settings). It is set once when the currency is first added and doesn't change automatically." msgstr "" -#: crm/fcrm/doctype/crm_service_level_agreement/crm_service_level_agreement.js:14 +#: crm/fcrm/pagetype/crm_service_level_agreement/crm_service_level_agreement.js:14 msgid "There can only be one default priority in Priorities table" msgstr "" @@ -5448,14 +5448,14 @@ msgstr "" msgid "This will delete selected items and unlink linked items to it, are you sure?" msgstr "" -#: crm/fcrm/doctype/fcrm_settings/fcrm_settings.js:9 +#: crm/fcrm/pagetype/fcrm_settings/fcrm_settings.js:9 msgid "This will restore (if not exist) all the default statuses, custom fields and layouts. Delete & Restore will delete default layouts and then restore them." msgstr "" -#. Option for the 'Weekly Off' (Select) field in DocType 'CRM Holiday List' -#. Option for the 'Workday' (Select) field in DocType 'CRM Service Day' -#: crm/fcrm/doctype/crm_holiday_list/crm_holiday_list.json -#: crm/fcrm/doctype/crm_service_day/crm_service_day.json +#. Option for the 'Weekly Off' (Select) field in PageType 'CRM Holiday List' +#. Option for the 'Workday' (Select) field in PageType 'CRM Service Day' +#: crm/fcrm/pagetype/crm_holiday_list/crm_holiday_list.json +#: crm/fcrm/pagetype/crm_service_day/crm_service_day.json msgid "Thursday" msgstr "" @@ -5467,18 +5467,18 @@ msgstr "" msgid "Timespan" msgstr "" -#. Label of the title (Data) field in DocType 'CRM Task' -#. Label of the title (Data) field in DocType 'FCRM Note' -#: crm/fcrm/doctype/crm_task/crm_task.json -#: crm/fcrm/doctype/fcrm_note/fcrm_note.json +#. Label of the title (Data) field in PageType 'CRM Task' +#. Label of the title (Data) field in PageType 'FCRM Note' +#: crm/fcrm/pagetype/crm_task/crm_task.json +#: crm/fcrm/pagetype/fcrm_note/fcrm_note.json #: frontend/src/components/Modals/EventModal.vue:43 #: frontend/src/components/Modals/NoteModal.vue:26 #: frontend/src/components/Modals/TaskModal.vue:25 msgid "Title" msgstr "" -#. Label of the title_field (Data) field in DocType 'CRM View Settings' -#: crm/fcrm/doctype/crm_view_settings/crm_view_settings.json +#. Label of the title_field (Data) field in PageType 'CRM View Settings' +#: crm/fcrm/pagetype/crm_view_settings/crm_view_settings.json #: frontend/src/components/Kanban/KanbanSettings.vue:29 msgid "Title Field" msgstr "" @@ -5488,28 +5488,28 @@ msgstr "" msgid "Title is required" msgstr "" -#. Label of the to (Data) field in DocType 'CRM Call Log' -#. Label of the to (Data) field in DocType 'CRM Status Change Log' -#: crm/fcrm/doctype/crm_call_log/crm_call_log.json -#: crm/fcrm/doctype/crm_status_change_log/crm_status_change_log.json +#. Label of the to (Data) field in PageType 'CRM Call Log' +#. Label of the to (Data) field in PageType 'CRM Status Change Log' +#: crm/fcrm/pagetype/crm_call_log/crm_call_log.json +#: crm/fcrm/pagetype/crm_status_change_log/crm_status_change_log.json #: frontend/src/components/Activities/EmailArea.vue:53 msgid "To" msgstr "" -#. Label of the to_date (Date) field in DocType 'CRM Holiday List' -#. Label of the to_date (Datetime) field in DocType 'CRM Status Change Log' -#: crm/fcrm/doctype/crm_holiday_list/crm_holiday_list.json -#: crm/fcrm/doctype/crm_status_change_log/crm_status_change_log.json +#. Label of the to_date (Date) field in PageType 'CRM Holiday List' +#. Label of the to_date (Datetime) field in PageType 'CRM Status Change Log' +#: crm/fcrm/pagetype/crm_holiday_list/crm_holiday_list.json +#: crm/fcrm/pagetype/crm_status_change_log/crm_status_change_log.json msgid "To Date" msgstr "" -#. Label of the to_type (Data) field in DocType 'CRM Status Change Log' -#: crm/fcrm/doctype/crm_status_change_log/crm_status_change_log.json +#. Label of the to_type (Data) field in PageType 'CRM Status Change Log' +#: crm/fcrm/pagetype/crm_status_change_log/crm_status_change_log.json msgid "To Type" msgstr "" -#. Label of the to_user (Link) field in DocType 'CRM Notification' -#: crm/fcrm/doctype/crm_notification/crm_notification.json +#. Label of the to_user (Link) field in PageType 'CRM Notification' +#: crm/fcrm/pagetype/crm_notification/crm_notification.json msgid "To User" msgstr "" @@ -5521,8 +5521,8 @@ msgstr "" msgid "Today" msgstr "" -#. Option for the 'Status' (Select) field in DocType 'CRM Task' -#: crm/fcrm/doctype/crm_task/crm_task.json +#. Option for the 'Status' (Select) field in PageType 'CRM Task' +#: crm/fcrm/pagetype/crm_task/crm_task.json msgid "Todo" msgstr "" @@ -5539,22 +5539,22 @@ msgstr "" msgid "Took a call with John Doe and discussed the new project." msgstr "" -#. Label of the total (Currency) field in DocType 'CRM Deal' -#. Label of the total (Currency) field in DocType 'CRM Lead' -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_lead/crm_lead.json +#. Label of the total (Currency) field in PageType 'CRM Deal' +#. Label of the total (Currency) field in PageType 'CRM Lead' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_lead/crm_lead.json msgid "Total" msgstr "" -#. Label of the total_holidays (Int) field in DocType 'CRM Holiday List' -#: crm/fcrm/doctype/crm_holiday_list/crm_holiday_list.json +#. Label of the total_holidays (Int) field in PageType 'CRM Holiday List' +#: crm/fcrm/pagetype/crm_holiday_list/crm_holiday_list.json msgid "Total Holidays" msgstr "" -#. Description of the 'Net Total' (Currency) field in DocType 'CRM Deal' -#. Description of the 'Net Total' (Currency) field in DocType 'CRM Lead' -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_lead/crm_lead.json +#. Description of the 'Net Total' (Currency) field in PageType 'CRM Deal' +#. Description of the 'Net Total' (Currency) field in PageType 'CRM Lead' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_lead/crm_lead.json msgid "Total after discount" msgstr "" @@ -5575,10 +5575,10 @@ msgstr "" msgid "Total number of won deals based on its closure date" msgstr "" -#. Option for the 'Weekly Off' (Select) field in DocType 'CRM Holiday List' -#. Option for the 'Workday' (Select) field in DocType 'CRM Service Day' -#: crm/fcrm/doctype/crm_holiday_list/crm_holiday_list.json -#: crm/fcrm/doctype/crm_service_day/crm_service_day.json +#. Option for the 'Weekly Off' (Select) field in PageType 'CRM Holiday List' +#. Option for the 'Workday' (Select) field in PageType 'CRM Service Day' +#: crm/fcrm/pagetype/crm_holiday_list/crm_holiday_list.json +#: crm/fcrm/pagetype/crm_service_day/crm_service_day.json msgid "Tuesday" msgstr "" @@ -5586,30 +5586,30 @@ msgstr "" msgid "Turn into a group" msgstr "" -#. Label of the twiml_sid (Data) field in DocType 'CRM Twilio Settings' -#: crm/fcrm/doctype/crm_twilio_settings/crm_twilio_settings.json +#. Label of the twiml_sid (Data) field in PageType 'CRM Twilio Settings' +#: crm/fcrm/pagetype/crm_twilio_settings/crm_twilio_settings.json msgid "TwiML SID" msgstr "" -#. Option for the 'Telephony Medium' (Select) field in DocType 'CRM Call Log' -#. Label of the twilio (Check) field in DocType 'CRM Telephony Agent' -#. Option for the 'Default Medium' (Select) field in DocType 'CRM Telephony +#. Option for the 'Telephony Medium' (Select) field in PageType 'CRM Call Log' +#. Label of the twilio (Check) field in PageType 'CRM Telephony Agent' +#. Option for the 'Default Medium' (Select) field in PageType 'CRM Telephony #. Agent' -#: crm/fcrm/doctype/crm_call_log/crm_call_log.json -#: crm/fcrm/doctype/crm_telephony_agent/crm_telephony_agent.json +#: crm/fcrm/pagetype/crm_call_log/crm_call_log.json +#: crm/fcrm/pagetype/crm_telephony_agent/crm_telephony_agent.json #: frontend/src/components/Layouts/AppSidebar.vue:601 #: frontend/src/components/Settings/TelephonySettings.vue:40 #: frontend/src/components/Settings/TelephonySettings.vue:50 msgid "Twilio" msgstr "" -#: crm/fcrm/doctype/crm_twilio_settings/crm_twilio_settings.py:59 -#: crm/fcrm/doctype/crm_twilio_settings/crm_twilio_settings.py:60 +#: crm/fcrm/pagetype/crm_twilio_settings/crm_twilio_settings.py:59 +#: crm/fcrm/pagetype/crm_twilio_settings/crm_twilio_settings.py:60 msgid "Twilio API credential creation error." msgstr "" -#. Label of the twilio_number (Data) field in DocType 'CRM Telephony Agent' -#: crm/fcrm/doctype/crm_telephony_agent/crm_telephony_agent.json +#. Label of the twilio_number (Data) field in PageType 'CRM Telephony Agent' +#: crm/fcrm/pagetype/crm_telephony_agent/crm_telephony_agent.json msgid "Twilio Number" msgstr "" @@ -5621,20 +5621,20 @@ msgstr "" msgid "Twilio settings updated successfully" msgstr "" -#. Label of the type (Select) field in DocType 'CRM Call Log' -#. Label of the type (Select) field in DocType 'CRM Deal Status' -#. Label of the type (Select) field in DocType 'CRM Dropdown Item' -#. Label of the type (Select) field in DocType 'CRM Fields Layout' -#. Label of the type (Select) field in DocType 'CRM Global Settings' -#. Label of the type (Select) field in DocType 'CRM Notification' -#. Label of the type (Select) field in DocType 'CRM View Settings' -#: crm/fcrm/doctype/crm_call_log/crm_call_log.json -#: crm/fcrm/doctype/crm_deal_status/crm_deal_status.json -#: crm/fcrm/doctype/crm_dropdown_item/crm_dropdown_item.json -#: crm/fcrm/doctype/crm_fields_layout/crm_fields_layout.json -#: crm/fcrm/doctype/crm_global_settings/crm_global_settings.json -#: crm/fcrm/doctype/crm_notification/crm_notification.json -#: crm/fcrm/doctype/crm_view_settings/crm_view_settings.json +#. Label of the type (Select) field in PageType 'CRM Call Log' +#. Label of the type (Select) field in PageType 'CRM Deal Status' +#. Label of the type (Select) field in PageType 'CRM Dropdown Item' +#. Label of the type (Select) field in PageType 'CRM Fields Layout' +#. Label of the type (Select) field in PageType 'CRM Global Settings' +#. Label of the type (Select) field in PageType 'CRM Notification' +#. Label of the type (Select) field in PageType 'CRM View Settings' +#: crm/fcrm/pagetype/crm_call_log/crm_call_log.json +#: crm/fcrm/pagetype/crm_deal_status/crm_deal_status.json +#: crm/fcrm/pagetype/crm_dropdown_item/crm_dropdown_item.json +#: crm/fcrm/pagetype/crm_fields_layout/crm_fields_layout.json +#: crm/fcrm/pagetype/crm_global_settings/crm_global_settings.json +#: crm/fcrm/pagetype/crm_notification/crm_notification.json +#: crm/fcrm/pagetype/crm_view_settings/crm_view_settings.json msgid "Type" msgstr "" @@ -5776,12 +5776,12 @@ msgstr "" msgid "Uploading {0}%" msgstr "" -#. Label of the user (Link) field in DocType 'CRM Dashboard' -#. Label of the user (Link) field in DocType 'CRM Telephony Agent' -#. Label of the user (Link) field in DocType 'CRM View Settings' -#: crm/fcrm/doctype/crm_dashboard/crm_dashboard.json -#: crm/fcrm/doctype/crm_telephony_agent/crm_telephony_agent.json -#: crm/fcrm/doctype/crm_view_settings/crm_view_settings.json +#. Label of the user (Link) field in PageType 'CRM Dashboard' +#. Label of the user (Link) field in PageType 'CRM Telephony Agent' +#. Label of the user (Link) field in PageType 'CRM View Settings' +#: crm/fcrm/pagetype/crm_dashboard/crm_dashboard.json +#: crm/fcrm/pagetype/crm_telephony_agent/crm_telephony_agent.json +#: crm/fcrm/pagetype/crm_view_settings/crm_view_settings.json msgid "User" msgstr "" @@ -5789,8 +5789,8 @@ msgstr "" msgid "User Management" msgstr "" -#. Label of the user_name (Data) field in DocType 'CRM Telephony Agent' -#: crm/fcrm/doctype/crm_telephony_agent/crm_telephony_agent.json +#. Label of the user_name (Data) field in PageType 'CRM Telephony Agent' +#: crm/fcrm/pagetype/crm_telephony_agent/crm_telephony_agent.json msgid "User Name" msgstr "" @@ -5812,9 +5812,9 @@ msgstr "" msgid "Users are required" msgstr "" -#. Label of the section_break_nevd (Section Break) field in DocType 'CRM +#. Label of the section_break_nevd (Section Break) field in PageType 'CRM #. Service Level Agreement' -#: crm/fcrm/doctype/crm_service_level_agreement/crm_service_level_agreement.json +#: crm/fcrm/pagetype/crm_service_level_agreement/crm_service_level_agreement.json msgid "Validity" msgstr "" @@ -5838,33 +5838,33 @@ msgstr "" msgid "Web form" msgstr "" -#. Label of the webhook_verify_token (Data) field in DocType 'CRM Exotel +#. Label of the webhook_verify_token (Data) field in PageType 'CRM Exotel #. Settings' -#: crm/fcrm/doctype/crm_exotel_settings/crm_exotel_settings.json +#: crm/fcrm/pagetype/crm_exotel_settings/crm_exotel_settings.json msgid "Webhook Verify Token" msgstr "" -#. Label of the website (Data) field in DocType 'CRM Deal' -#. Label of the website (Data) field in DocType 'CRM Lead' -#. Label of the website (Data) field in DocType 'CRM Organization' -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_lead/crm_lead.json -#: crm/fcrm/doctype/crm_organization/crm_organization.json +#. Label of the website (Data) field in PageType 'CRM Deal' +#. Label of the website (Data) field in PageType 'CRM Lead' +#. Label of the website (Data) field in PageType 'CRM Organization' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_lead/crm_lead.json +#: crm/fcrm/pagetype/crm_organization/crm_organization.json #: frontend/src/components/Modals/AboutModal.vue:52 msgid "Website" msgstr "" -#. Option for the 'Weekly Off' (Select) field in DocType 'CRM Holiday List' -#. Option for the 'Workday' (Select) field in DocType 'CRM Service Day' -#: crm/fcrm/doctype/crm_holiday_list/crm_holiday_list.json -#: crm/fcrm/doctype/crm_service_day/crm_service_day.json +#. Option for the 'Weekly Off' (Select) field in PageType 'CRM Holiday List' +#. Option for the 'Workday' (Select) field in PageType 'CRM Service Day' +#: crm/fcrm/pagetype/crm_holiday_list/crm_holiday_list.json +#: crm/fcrm/pagetype/crm_service_day/crm_service_day.json msgid "Wednesday" msgstr "" -#. Label of the weekly_off (Check) field in DocType 'CRM Holiday' -#. Label of the weekly_off (Select) field in DocType 'CRM Holiday List' -#: crm/fcrm/doctype/crm_holiday/crm_holiday.json -#: crm/fcrm/doctype/crm_holiday_list/crm_holiday_list.json +#. Label of the weekly_off (Check) field in PageType 'CRM Holiday' +#. Label of the weekly_off (Select) field in PageType 'CRM Holiday List' +#: crm/fcrm/pagetype/crm_holiday/crm_holiday.json +#: crm/fcrm/pagetype/crm_holiday_list/crm_holiday_list.json msgid "Weekly Off" msgstr "" @@ -5872,7 +5872,7 @@ msgstr "" msgid "Welcome Message" msgstr "" -#: crm/fcrm/doctype/helpdesk_crm_settings/helpdesk_crm_settings.py:155 +#: crm/fcrm/pagetype/helpdesk_crm_settings/helpdesk_crm_settings.py:155 msgid "Welcome to Helpdesk" msgstr "" @@ -5880,8 +5880,8 @@ msgstr "" msgid "Welcome {0}, lets add your first lead" msgstr "" -#. Option for the 'Type' (Select) field in DocType 'CRM Notification' -#: crm/fcrm/doctype/crm_notification/crm_notification.json +#. Option for the 'Type' (Select) field in PageType 'CRM Notification' +#: crm/fcrm/pagetype/crm_notification/crm_notification.json #: frontend/src/components/Layouts/AppSidebar.vue:603 #: frontend/src/components/Settings/Settings.vue:190 #: frontend/src/pages/Deal.vue:572 frontend/src/pages/Lead.vue:429 @@ -5906,8 +5906,8 @@ msgstr "" msgid "Width can be in number, pixel or rem (eg. 3, 30px, 10rem)" msgstr "" -#. Option for the 'Type' (Select) field in DocType 'CRM Deal Status' -#: crm/fcrm/doctype/crm_deal_status/crm_deal_status.json +#. Option for the 'Type' (Select) field in PageType 'CRM Deal Status' +#: crm/fcrm/pagetype/crm_deal_status/crm_deal_status.json msgid "Won" msgstr "" @@ -5916,16 +5916,16 @@ msgstr "" msgid "Won deals" msgstr "" -#. Label of the workday (Select) field in DocType 'CRM Service Day' -#: crm/fcrm/doctype/crm_service_day/crm_service_day.json +#. Label of the workday (Select) field in PageType 'CRM Service Day' +#: crm/fcrm/pagetype/crm_service_day/crm_service_day.json msgid "Workday" msgstr "" -#. Label of the section_break_rmgo (Section Break) field in DocType 'CRM +#. Label of the section_break_rmgo (Section Break) field in PageType 'CRM #. Service Level Agreement' -#. Label of the working_hours (Table) field in DocType 'CRM Service Level +#. Label of the working_hours (Table) field in PageType 'CRM Service Level #. Agreement' -#: crm/fcrm/doctype/crm_service_level_agreement/crm_service_level_agreement.json +#: crm/fcrm/pagetype/crm_service_level_agreement/crm_service_level_agreement.json msgid "Working Hours" msgstr "" @@ -5971,7 +5971,7 @@ msgstr "" msgid "You do not have permission to access this document" msgstr "" -#: crm/fcrm/doctype/crm_form_script/crm_form_script.py:24 +#: crm/fcrm/pagetype/crm_form_script/crm_form_script.py:24 msgid "You need to be in developer mode to edit a Standard Form Script" msgstr "" @@ -5999,10 +5999,10 @@ msgstr "" msgid "added a" msgstr "" -#. Option for the 'Color' (Select) field in DocType 'CRM Deal Status' -#. Option for the 'Color' (Select) field in DocType 'CRM Lead Status' -#: crm/fcrm/doctype/crm_deal_status/crm_deal_status.json -#: crm/fcrm/doctype/crm_lead_status/crm_lead_status.json +#. Option for the 'Color' (Select) field in PageType 'CRM Deal Status' +#. Option for the 'Color' (Select) field in PageType 'CRM Lead Status' +#: crm/fcrm/pagetype/crm_deal_status/crm_deal_status.json +#: crm/fcrm/pagetype/crm_lead_status/crm_lead_status.json msgid "amber" msgstr "" @@ -6014,17 +6014,17 @@ msgstr "" msgid "assigned a {0} {1} to you" msgstr "" -#. Option for the 'Color' (Select) field in DocType 'CRM Deal Status' -#. Option for the 'Color' (Select) field in DocType 'CRM Lead Status' -#: crm/fcrm/doctype/crm_deal_status/crm_deal_status.json -#: crm/fcrm/doctype/crm_lead_status/crm_lead_status.json +#. Option for the 'Color' (Select) field in PageType 'CRM Deal Status' +#. Option for the 'Color' (Select) field in PageType 'CRM Lead Status' +#: crm/fcrm/pagetype/crm_deal_status/crm_deal_status.json +#: crm/fcrm/pagetype/crm_lead_status/crm_lead_status.json msgid "black" msgstr "" -#. Option for the 'Color' (Select) field in DocType 'CRM Deal Status' -#. Option for the 'Color' (Select) field in DocType 'CRM Lead Status' -#: crm/fcrm/doctype/crm_deal_status/crm_deal_status.json -#: crm/fcrm/doctype/crm_lead_status/crm_lead_status.json +#. Option for the 'Color' (Select) field in PageType 'CRM Deal Status' +#. Option for the 'Color' (Select) field in PageType 'CRM Lead Status' +#: crm/fcrm/pagetype/crm_deal_status/crm_deal_status.json +#: crm/fcrm/pagetype/crm_lead_status/crm_lead_status.json msgid "blue" msgstr "" @@ -6041,10 +6041,10 @@ msgstr "" msgid "condition" msgstr "" -#. Option for the 'Color' (Select) field in DocType 'CRM Deal Status' -#. Option for the 'Color' (Select) field in DocType 'CRM Lead Status' -#: crm/fcrm/doctype/crm_deal_status/crm_deal_status.json -#: crm/fcrm/doctype/crm_lead_status/crm_lead_status.json +#. Option for the 'Color' (Select) field in PageType 'CRM Deal Status' +#. Option for the 'Color' (Select) field in PageType 'CRM Lead Status' +#: crm/fcrm/pagetype/crm_deal_status/crm_deal_status.json +#: crm/fcrm/pagetype/crm_lead_status/crm_lead_status.json msgid "cyan" msgstr "" @@ -6063,33 +6063,33 @@ msgstr "" msgid "email already exists" msgstr "" -#. Option for the 'Service Provider' (Select) field in DocType 'FCRM Settings' -#: crm/fcrm/doctype/fcrm_settings/fcrm_settings.json +#. Option for the 'Service Provider' (Select) field in PageType 'FCRM Settings' +#: crm/fcrm/pagetype/fcrm_settings/fcrm_settings.json #: frontend/src/components/Settings/CurrencySettings.vue:106 msgid "exchangerate.host" msgstr "" -#. Option for the 'Service Provider' (Select) field in DocType 'FCRM Settings' -#: crm/fcrm/doctype/fcrm_settings/fcrm_settings.json +#. Option for the 'Service Provider' (Select) field in PageType 'FCRM Settings' +#: crm/fcrm/pagetype/fcrm_settings/fcrm_settings.json msgid "frankfurter.app" msgstr "" -#. Option for the 'Color' (Select) field in DocType 'CRM Deal Status' -#. Option for the 'Color' (Select) field in DocType 'CRM Lead Status' -#: crm/fcrm/doctype/crm_deal_status/crm_deal_status.json -#: crm/fcrm/doctype/crm_lead_status/crm_lead_status.json +#. Option for the 'Color' (Select) field in PageType 'CRM Deal Status' +#. Option for the 'Color' (Select) field in PageType 'CRM Lead Status' +#: crm/fcrm/pagetype/crm_deal_status/crm_deal_status.json +#: crm/fcrm/pagetype/crm_lead_status/crm_lead_status.json msgid "gray" msgstr "" -#. Option for the 'Color' (Select) field in DocType 'CRM Deal Status' -#. Option for the 'Color' (Select) field in DocType 'CRM Lead Status' -#: crm/fcrm/doctype/crm_deal_status/crm_deal_status.json -#: crm/fcrm/doctype/crm_lead_status/crm_lead_status.json +#. Option for the 'Color' (Select) field in PageType 'CRM Deal Status' +#. Option for the 'Color' (Select) field in PageType 'CRM Lead Status' +#: crm/fcrm/pagetype/crm_deal_status/crm_deal_status.json +#: crm/fcrm/pagetype/crm_lead_status/crm_lead_status.json msgid "green" msgstr "" -#. Option for the 'Type' (Select) field in DocType 'CRM View Settings' -#: crm/fcrm/doctype/crm_view_settings/crm_view_settings.json +#. Option for the 'Type' (Select) field in PageType 'CRM View Settings' +#: crm/fcrm/pagetype/crm_view_settings/crm_view_settings.json msgid "group_by" msgstr "" @@ -6174,12 +6174,12 @@ msgstr "" msgid "just now" msgstr "" -#. Option for the 'Type' (Select) field in DocType 'CRM View Settings' -#: crm/fcrm/doctype/crm_view_settings/crm_view_settings.json +#. Option for the 'Type' (Select) field in PageType 'CRM View Settings' +#: crm/fcrm/pagetype/crm_view_settings/crm_view_settings.json msgid "kanban" msgstr "" -#: crm/api/doc.py:40 crm/api/doc.py:158 crm/api/doc.py:503 +#: crm/api/pg.py:40 crm/api/pg.py:158 crm/api/pg.py:503 msgid "label" msgstr "" @@ -6188,8 +6188,8 @@ msgstr "" msgid "leads" msgstr "" -#. Option for the 'Type' (Select) field in DocType 'CRM View Settings' -#: crm/fcrm/doctype/crm_view_settings/crm_view_settings.json +#. Option for the 'Type' (Select) field in PageType 'CRM View Settings' +#: crm/fcrm/pagetype/crm_view_settings/crm_view_settings.json msgid "list" msgstr "" @@ -6210,17 +6210,17 @@ msgstr "" msgid "operator" msgstr "" -#. Option for the 'Color' (Select) field in DocType 'CRM Deal Status' -#. Option for the 'Color' (Select) field in DocType 'CRM Lead Status' -#: crm/fcrm/doctype/crm_deal_status/crm_deal_status.json -#: crm/fcrm/doctype/crm_lead_status/crm_lead_status.json +#. Option for the 'Color' (Select) field in PageType 'CRM Deal Status' +#. Option for the 'Color' (Select) field in PageType 'CRM Lead Status' +#: crm/fcrm/pagetype/crm_deal_status/crm_deal_status.json +#: crm/fcrm/pagetype/crm_lead_status/crm_lead_status.json msgid "orange" msgstr "" -#. Option for the 'Color' (Select) field in DocType 'CRM Deal Status' -#. Option for the 'Color' (Select) field in DocType 'CRM Lead Status' -#: crm/fcrm/doctype/crm_deal_status/crm_deal_status.json -#: crm/fcrm/doctype/crm_lead_status/crm_lead_status.json +#. Option for the 'Color' (Select) field in PageType 'CRM Deal Status' +#. Option for the 'Color' (Select) field in PageType 'CRM Lead Status' +#: crm/fcrm/pagetype/crm_deal_status/crm_deal_status.json +#: crm/fcrm/pagetype/crm_lead_status/crm_lead_status.json msgid "pink" msgstr "" @@ -6236,10 +6236,10 @@ msgstr "" msgid "public" msgstr "" -#. Option for the 'Color' (Select) field in DocType 'CRM Deal Status' -#. Option for the 'Color' (Select) field in DocType 'CRM Lead Status' -#: crm/fcrm/doctype/crm_deal_status/crm_deal_status.json -#: crm/fcrm/doctype/crm_lead_status/crm_lead_status.json +#. Option for the 'Color' (Select) field in PageType 'CRM Deal Status' +#. Option for the 'Color' (Select) field in PageType 'CRM Lead Status' +#: crm/fcrm/pagetype/crm_deal_status/crm_deal_status.json +#: crm/fcrm/pagetype/crm_lead_status/crm_lead_status.json msgid "purple" msgstr "" @@ -6247,17 +6247,17 @@ msgstr "" msgid "received a whatsapp message in {0}" msgstr "" -#. Option for the 'Color' (Select) field in DocType 'CRM Deal Status' -#. Option for the 'Color' (Select) field in DocType 'CRM Lead Status' -#: crm/fcrm/doctype/crm_deal_status/crm_deal_status.json -#: crm/fcrm/doctype/crm_lead_status/crm_lead_status.json +#. Option for the 'Color' (Select) field in PageType 'CRM Deal Status' +#. Option for the 'Color' (Select) field in PageType 'CRM Lead Status' +#: crm/fcrm/pagetype/crm_deal_status/crm_deal_status.json +#: crm/fcrm/pagetype/crm_lead_status/crm_lead_status.json msgid "red" msgstr "" -#. Option for the 'Color' (Select) field in DocType 'CRM Deal Status' -#. Option for the 'Color' (Select) field in DocType 'CRM Lead Status' -#: crm/fcrm/doctype/crm_deal_status/crm_deal_status.json -#: crm/fcrm/doctype/crm_lead_status/crm_lead_status.json +#. Option for the 'Color' (Select) field in PageType 'CRM Deal Status' +#. Option for the 'Color' (Select) field in PageType 'CRM Lead Status' +#: crm/fcrm/pagetype/crm_deal_status/crm_deal_status.json +#: crm/fcrm/pagetype/crm_lead_status/crm_lead_status.json msgid "teal" msgstr "" @@ -6270,10 +6270,10 @@ msgstr "" msgid "tomorrow" msgstr "" -#. Option for the 'Color' (Select) field in DocType 'CRM Deal Status' -#. Option for the 'Color' (Select) field in DocType 'CRM Lead Status' -#: crm/fcrm/doctype/crm_deal_status/crm_deal_status.json -#: crm/fcrm/doctype/crm_lead_status/crm_lead_status.json +#. Option for the 'Color' (Select) field in PageType 'CRM Deal Status' +#. Option for the 'Color' (Select) field in PageType 'CRM Lead Status' +#: crm/fcrm/pagetype/crm_deal_status/crm_deal_status.json +#: crm/fcrm/pagetype/crm_lead_status/crm_lead_status.json msgid "violet" msgstr "" @@ -6282,10 +6282,10 @@ msgstr "" msgid "which are not compatible with this UI, you will need to recreate the conditions here if you want to manage and add new conditions from this UI." msgstr "" -#. Option for the 'Color' (Select) field in DocType 'CRM Deal Status' -#. Option for the 'Color' (Select) field in DocType 'CRM Lead Status' -#: crm/fcrm/doctype/crm_deal_status/crm_deal_status.json -#: crm/fcrm/doctype/crm_lead_status/crm_lead_status.json +#. Option for the 'Color' (Select) field in PageType 'CRM Deal Status' +#. Option for the 'Color' (Select) field in PageType 'CRM Lead Status' +#: crm/fcrm/pagetype/crm_deal_status/crm_deal_status.json +#: crm/fcrm/pagetype/crm_lead_status/crm_lead_status.json msgid "yellow" msgstr "" @@ -6383,7 +6383,7 @@ msgid "⚠️ Method \"{0}\" not found in class." msgstr "" #: frontend/src/data/script.js:83 -msgid "⚠️ No class found for doctype: {0}, it is mandatory to have a class for the parent doctype. it can be empty, but it should be present." +msgid "⚠️ No class found for pagetype: {0}, it is mandatory to have a class for the parent pagetype. it can be empty, but it should be present." msgstr "" #: frontend/src/data/script.js:180 diff --git a/crm/locale/nb.po b/crm/locale/nb.po index ca56cfb1..9da675e4 100644 --- a/crm/locale/nb.po +++ b/crm/locale/nb.po @@ -1,6 +1,6 @@ msgid "" msgstr "" -"Project-Id-Version: frappe\n" +"Project-Id-Version: jingrow\n" "Report-Msgid-Bugs-To: shariq@jingrow.com\n" "POT-Creation-Date: 2025-09-21 09:35+0000\n" "PO-Revision-Date: 2025-09-24 21:29\n" @@ -11,10 +11,10 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Generated-By: Babel 2.16.0\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -"X-Crowdin-Project: frappe\n" +"X-Crowdin-Project: jingrow\n" "X-Crowdin-Project-ID: 639578\n" "X-Crowdin-Language: nb\n" -"X-Crowdin-File: /[frappe.crm] develop/crm/locale/main.pot\n" +"X-Crowdin-File: /[jingrow.crm] develop/crm/locale/main.pot\n" "X-Crowdin-File-ID: 97\n" "Language: nb_NO\n" @@ -55,73 +55,73 @@ msgstr "1 uke siden" msgid "1 year ago" msgstr "1 år siden" -#. Option for the 'No. of Employees' (Select) field in DocType 'CRM Deal' -#. Option for the 'No. of Employees' (Select) field in DocType 'CRM Lead' -#. Option for the 'No. of Employees' (Select) field in DocType 'CRM +#. Option for the 'No. of Employees' (Select) field in PageType 'CRM Deal' +#. Option for the 'No. of Employees' (Select) field in PageType 'CRM Lead' +#. Option for the 'No. of Employees' (Select) field in PageType 'CRM #. Organization' -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_lead/crm_lead.json -#: crm/fcrm/doctype/crm_organization/crm_organization.json +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_lead/crm_lead.json +#: crm/fcrm/pagetype/crm_organization/crm_organization.json msgid "1-10" msgstr "1-10" -#. Option for the 'No. of Employees' (Select) field in DocType 'CRM Deal' -#. Option for the 'No. of Employees' (Select) field in DocType 'CRM Lead' -#. Option for the 'No. of Employees' (Select) field in DocType 'CRM +#. Option for the 'No. of Employees' (Select) field in PageType 'CRM Deal' +#. Option for the 'No. of Employees' (Select) field in PageType 'CRM Lead' +#. Option for the 'No. of Employees' (Select) field in PageType 'CRM #. Organization' -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_lead/crm_lead.json -#: crm/fcrm/doctype/crm_organization/crm_organization.json +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_lead/crm_lead.json +#: crm/fcrm/pagetype/crm_organization/crm_organization.json msgid "1000+" msgstr "1000+" -#. Option for the 'No. of Employees' (Select) field in DocType 'CRM Deal' -#. Option for the 'No. of Employees' (Select) field in DocType 'CRM Lead' -#. Option for the 'No. of Employees' (Select) field in DocType 'CRM +#. Option for the 'No. of Employees' (Select) field in PageType 'CRM Deal' +#. Option for the 'No. of Employees' (Select) field in PageType 'CRM Lead' +#. Option for the 'No. of Employees' (Select) field in PageType 'CRM #. Organization' -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_lead/crm_lead.json -#: crm/fcrm/doctype/crm_organization/crm_organization.json +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_lead/crm_lead.json +#: crm/fcrm/pagetype/crm_organization/crm_organization.json msgid "11-50" msgstr "11-50" -#. Option for the 'No. of Employees' (Select) field in DocType 'CRM Deal' -#. Option for the 'No. of Employees' (Select) field in DocType 'CRM Lead' -#. Option for the 'No. of Employees' (Select) field in DocType 'CRM +#. Option for the 'No. of Employees' (Select) field in PageType 'CRM Deal' +#. Option for the 'No. of Employees' (Select) field in PageType 'CRM Lead' +#. Option for the 'No. of Employees' (Select) field in PageType 'CRM #. Organization' -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_lead/crm_lead.json -#: crm/fcrm/doctype/crm_organization/crm_organization.json +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_lead/crm_lead.json +#: crm/fcrm/pagetype/crm_organization/crm_organization.json msgid "201-500" msgstr "201-500" -#. Option for the 'No. of Employees' (Select) field in DocType 'CRM Deal' -#. Option for the 'No. of Employees' (Select) field in DocType 'CRM Lead' -#. Option for the 'No. of Employees' (Select) field in DocType 'CRM +#. Option for the 'No. of Employees' (Select) field in PageType 'CRM Deal' +#. Option for the 'No. of Employees' (Select) field in PageType 'CRM Lead' +#. Option for the 'No. of Employees' (Select) field in PageType 'CRM #. Organization' -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_lead/crm_lead.json -#: crm/fcrm/doctype/crm_organization/crm_organization.json +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_lead/crm_lead.json +#: crm/fcrm/pagetype/crm_organization/crm_organization.json msgid "501-1000" msgstr "501-1000" -#. Option for the 'No. of Employees' (Select) field in DocType 'CRM Deal' -#. Option for the 'No. of Employees' (Select) field in DocType 'CRM Lead' -#. Option for the 'No. of Employees' (Select) field in DocType 'CRM +#. Option for the 'No. of Employees' (Select) field in PageType 'CRM Deal' +#. Option for the 'No. of Employees' (Select) field in PageType 'CRM Lead' +#. Option for the 'No. of Employees' (Select) field in PageType 'CRM #. Organization' -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_lead/crm_lead.json -#: crm/fcrm/doctype/crm_organization/crm_organization.json +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_lead/crm_lead.json +#: crm/fcrm/pagetype/crm_organization/crm_organization.json msgid "51-200" msgstr "51-200" -#. Paragraph text in the Frappe CRM Workspace -#: crm/fcrm/workspace/frappe_crm/frappe_crm.json +#. Paragraph text in the Jingrow CRM Workspace +#: crm/fcrm/workspace/jingrow_crm/jingrow_crm.json msgid "META" msgstr "META" -#. Paragraph text in the Frappe CRM Workspace -#: crm/fcrm/workspace/frappe_crm/frappe_crm.json +#. Paragraph text in the Jingrow CRM Workspace +#: crm/fcrm/workspace/jingrow_crm/jingrow_crm.json msgid "SHORTCUTS" msgstr "SNARVEIER" @@ -130,8 +130,8 @@ msgstr "SNARVEIER" msgid "

Dear {{ lead_name }},

\\n\\n

This is a reminder for the payment of {{ grand_total }}.

\\n\\n

Thanks,

\\n

Frappé

" msgstr "

Kjære {{ lead_name }},

\\n\\n

Dette er en påminnelse om betaling av {{ grand_total }}.

\\n\\n

Takk,

\\n

Frappé

" -#. Header text in the Frappe CRM Workspace -#: crm/fcrm/workspace/frappe_crm/frappe_crm.json +#. Header text in the Jingrow CRM Workspace +#: crm/fcrm/workspace/jingrow_crm/jingrow_crm.json msgid "PORTAL" msgstr "PORTAL" @@ -139,7 +139,7 @@ msgstr "PORTAL" msgid "@John, can you please check this?" msgstr "@John, kan du sjekke dette?" -#: crm/fcrm/doctype/crm_lead/crm_lead.py:56 +#: crm/fcrm/pagetype/crm_lead/crm_lead.py:56 msgid "A Lead requires either a person's name or an organization's name" msgstr "En potensiell kunde krever enten en persons navn eller en organisasjons navn" @@ -147,14 +147,14 @@ msgstr "En potensiell kunde krever enten en persons navn eller en organisasjons msgid "A new account has been created for you at {0}" msgstr "En ny konto er opprettet for deg på {0}" -#. Label of the api_key (Data) field in DocType 'CRM Exotel Settings' -#. Label of the api_key (Data) field in DocType 'CRM Twilio Settings' -#. Label of the api_key (Data) field in DocType 'ERPNext CRM Settings' -#. Label of the api_key (Data) field in DocType 'Helpdesk CRM Settings' -#: crm/fcrm/doctype/crm_exotel_settings/crm_exotel_settings.json -#: crm/fcrm/doctype/crm_twilio_settings/crm_twilio_settings.json -#: crm/fcrm/doctype/erpnext_crm_settings/erpnext_crm_settings.json -#: crm/fcrm/doctype/helpdesk_crm_settings/helpdesk_crm_settings.json +#. Label of the api_key (Data) field in PageType 'CRM Exotel Settings' +#. Label of the api_key (Data) field in PageType 'CRM Twilio Settings' +#. Label of the api_key (Data) field in PageType 'ERPNext CRM Settings' +#. Label of the api_key (Data) field in PageType 'Helpdesk CRM Settings' +#: crm/fcrm/pagetype/crm_exotel_settings/crm_exotel_settings.json +#: crm/fcrm/pagetype/crm_twilio_settings/crm_twilio_settings.json +#: crm/fcrm/pagetype/erpnext_crm_settings/erpnext_crm_settings.json +#: crm/fcrm/pagetype/helpdesk_crm_settings/helpdesk_crm_settings.json msgid "API Key" msgstr "API Nøkkel" @@ -162,17 +162,17 @@ msgstr "API Nøkkel" msgid "API Key is required" msgstr "API-key er påkrevd" -#. Label of the api_secret (Password) field in DocType 'CRM Twilio Settings' -#. Label of the api_secret (Password) field in DocType 'ERPNext CRM Settings' -#. Label of the api_secret (Password) field in DocType 'Helpdesk CRM Settings' -#: crm/fcrm/doctype/crm_twilio_settings/crm_twilio_settings.json -#: crm/fcrm/doctype/erpnext_crm_settings/erpnext_crm_settings.json -#: crm/fcrm/doctype/helpdesk_crm_settings/helpdesk_crm_settings.json +#. Label of the api_secret (Password) field in PageType 'CRM Twilio Settings' +#. Label of the api_secret (Password) field in PageType 'ERPNext CRM Settings' +#. Label of the api_secret (Password) field in PageType 'Helpdesk CRM Settings' +#: crm/fcrm/pagetype/crm_twilio_settings/crm_twilio_settings.json +#: crm/fcrm/pagetype/erpnext_crm_settings/erpnext_crm_settings.json +#: crm/fcrm/pagetype/helpdesk_crm_settings/helpdesk_crm_settings.json msgid "API Secret" msgstr "API-hemmelighet" -#. Label of the api_token (Password) field in DocType 'CRM Exotel Settings' -#: crm/fcrm/doctype/crm_exotel_settings/crm_exotel_settings.json +#. Label of the api_token (Password) field in PageType 'CRM Exotel Settings' +#: crm/fcrm/pagetype/crm_exotel_settings/crm_exotel_settings.json msgid "API Token" msgstr "API-token" @@ -180,7 +180,7 @@ msgstr "API-token" msgid "Accept" msgstr "Aksepter" -#: crm/fcrm/doctype/crm_invitation/crm_invitation.js:7 +#: crm/fcrm/pagetype/crm_invitation/crm_invitation.js:7 msgid "Accept Invitation" msgstr "Aksepter invitasjon" @@ -188,22 +188,22 @@ msgstr "Aksepter invitasjon" msgid "Accept call" msgstr "Aksepter anrop" -#. Option for the 'Status' (Select) field in DocType 'CRM Invitation' -#: crm/fcrm/doctype/crm_invitation/crm_invitation.json +#. Option for the 'Status' (Select) field in PageType 'CRM Invitation' +#: crm/fcrm/pagetype/crm_invitation/crm_invitation.json msgid "Accepted" msgstr "Akseptert" -#. Label of the accepted_at (Datetime) field in DocType 'CRM Invitation' -#: crm/fcrm/doctype/crm_invitation/crm_invitation.json +#. Label of the accepted_at (Datetime) field in PageType 'CRM Invitation' +#: crm/fcrm/pagetype/crm_invitation/crm_invitation.json msgid "Accepted At" msgstr "Akseptert kl. " -#. Label of the access_key (Data) field in DocType 'FCRM Settings' -#: crm/fcrm/doctype/fcrm_settings/fcrm_settings.json +#. Label of the access_key (Data) field in PageType 'FCRM Settings' +#: crm/fcrm/pagetype/fcrm_settings/fcrm_settings.json msgid "Access Key" msgstr "Tilgangsnøkkel" -#: crm/fcrm/doctype/fcrm_settings/fcrm_settings.py:156 +#: crm/fcrm/pagetype/fcrm_settings/fcrm_settings.py:156 msgid "Access Key is required for Service Provider: {0}" msgstr "Tilgangsnøkkel er nødvendig for tjenesteleverandøren: {0}" @@ -219,10 +219,10 @@ msgstr "Tilgangsnøkkel for Exchangerate Host. Nødvendig for å hente valutakur msgid "Account Name" msgstr "Kontonavn" -#. Label of the account_sid (Data) field in DocType 'CRM Exotel Settings' -#. Label of the account_sid (Data) field in DocType 'CRM Twilio Settings' -#: crm/fcrm/doctype/crm_exotel_settings/crm_exotel_settings.json -#: crm/fcrm/doctype/crm_twilio_settings/crm_twilio_settings.json +#. Label of the account_sid (Data) field in PageType 'CRM Exotel Settings' +#. Label of the account_sid (Data) field in PageType 'CRM Twilio Settings' +#: crm/fcrm/pagetype/crm_exotel_settings/crm_exotel_settings.json +#: crm/fcrm/pagetype/crm_twilio_settings/crm_twilio_settings.json msgid "Account SID" msgstr "Konto-SID" @@ -296,9 +296,9 @@ msgstr "" msgid "Add Tab" msgstr "" -#. Label of the add_weekly_holidays_section (Section Break) field in DocType +#. Label of the add_weekly_holidays_section (Section Break) field in PageType #. 'CRM Holiday List' -#: crm/fcrm/doctype/crm_holiday_list/crm_holiday_list.json +#: crm/fcrm/pagetype/crm_holiday_list/crm_holiday_list.json msgid "Add Weekly Holidays" msgstr "Legg til ukentlige helligdager" @@ -363,8 +363,8 @@ msgstr "" msgid "Add sample data" msgstr "" -#. Description of the 'Icon' (Code) field in DocType 'CRM Dropdown Item' -#: crm/fcrm/doctype/crm_dropdown_item/crm_dropdown_item.json +#. Description of the 'Icon' (Code) field in PageType 'CRM Dropdown Item' +#: crm/fcrm/pagetype/crm_dropdown_item/crm_dropdown_item.json msgid "Add svg code or use feather icons e.g 'settings'" msgstr "" @@ -372,8 +372,8 @@ msgstr "" msgid "Add task" msgstr "" -#. Label of the add_to_holidays (Button) field in DocType 'CRM Holiday List' -#: crm/fcrm/doctype/crm_holiday_list/crm_holiday_list.json +#. Label of the add_to_holidays (Button) field in PageType 'CRM Holiday List' +#: crm/fcrm/pagetype/crm_holiday_list/crm_holiday_list.json msgid "Add to Holidays" msgstr "" @@ -385,8 +385,8 @@ msgstr "" msgid "Add, edit, and manage email templates for various CRM communications" msgstr "" -#. Label of the address (Link) field in DocType 'CRM Organization' -#: crm/fcrm/doctype/crm_organization/crm_organization.json +#. Label of the address (Link) field in PageType 'CRM Organization' +#: crm/fcrm/pagetype/crm_organization/crm_organization.json msgid "Address" msgstr "Adresse" @@ -406,14 +406,14 @@ msgid "Agent is unavailable to take the call, please call after some time." msgstr "" #. Name of a role -#: crm/fcrm/doctype/crm_exotel_settings/crm_exotel_settings.json -#: crm/fcrm/doctype/crm_fields_layout/crm_fields_layout.json -#: crm/fcrm/doctype/crm_form_script/crm_form_script.json -#: crm/fcrm/doctype/crm_industry/crm_industry.json -#: crm/fcrm/doctype/crm_lead/crm_lead.json -#: crm/fcrm/doctype/crm_lead_source/crm_lead_source.json -#: crm/fcrm/doctype/crm_lead_status/crm_lead_status.json -#: crm/fcrm/doctype/fcrm_settings/fcrm_settings.json +#: crm/fcrm/pagetype/crm_exotel_settings/crm_exotel_settings.json +#: crm/fcrm/pagetype/crm_fields_layout/crm_fields_layout.json +#: crm/fcrm/pagetype/crm_form_script/crm_form_script.json +#: crm/fcrm/pagetype/crm_industry/crm_industry.json +#: crm/fcrm/pagetype/crm_lead/crm_lead.json +#: crm/fcrm/pagetype/crm_lead_source/crm_lead_source.json +#: crm/fcrm/pagetype/crm_lead_status/crm_lead_status.json +#: crm/fcrm/pagetype/fcrm_settings/fcrm_settings.json #: frontend/src/components/Settings/EmailTemplate/EmailTemplates.vue:76 #: frontend/src/components/Settings/Users.vue:85 msgid "All" @@ -426,16 +426,16 @@ msgstr "" msgid "All day" msgstr "Hele dagen" -#. Label of the amount (Currency) field in DocType 'CRM Products' -#: crm/fcrm/doctype/crm_products/crm_products.json +#. Label of the amount (Currency) field in PageType 'CRM Products' +#: crm/fcrm/pagetype/crm_products/crm_products.json #: frontend/src/pages/Contact.vue:499 frontend/src/pages/MobileContact.vue:507 #: frontend/src/pages/MobileOrganization.vue:451 #: frontend/src/pages/Organization.vue:472 msgid "Amount" msgstr "Beløp" -#. Description of the 'Net Amount' (Currency) field in DocType 'CRM Products' -#: crm/fcrm/doctype/crm_products/crm_products.json +#. Description of the 'Net Amount' (Currency) field in PageType 'CRM Products' +#: crm/fcrm/pagetype/crm_products/crm_products.json msgid "Amount after discount" msgstr "Beløp etter rabatt" @@ -447,13 +447,13 @@ msgstr "En feil oppstod" msgid "An error occurred while updating the document" msgstr "Det oppsto en feil under oppdatering av dokumentet" -#. Description of the 'Favicon' (Attach) field in DocType 'FCRM Settings' -#: crm/fcrm/doctype/fcrm_settings/fcrm_settings.json +#. Description of the 'Favicon' (Attach) field in PageType 'FCRM Settings' +#: crm/fcrm/pagetype/fcrm_settings/fcrm_settings.json msgid "An icon file with .ico extension. Should be 16 x 16 px. Generated using a favicon generator. [favicon-generator.org]" msgstr "En ikonfil med filtypen .ico. Bør være 16 x 16 px. Genereres ved hjelp av en favicon-generator. [favicon-generator.org]" -#. Description of the 'Logo' (Attach) field in DocType 'FCRM Settings' -#: crm/fcrm/doctype/fcrm_settings/fcrm_settings.json +#. Description of the 'Logo' (Attach) field in PageType 'FCRM Settings' +#: crm/fcrm/pagetype/fcrm_settings/fcrm_settings.json msgid "An image with 1:1 & 2:1 ratio is preferred" msgstr "Et bilde med forholdet 1:1 og 2:1 er å foretrekke" @@ -461,12 +461,12 @@ msgstr "Et bilde med forholdet 1:1 og 2:1 er å foretrekke" msgid "And" msgstr "Og" -#. Label of the annual_revenue (Currency) field in DocType 'CRM Deal' -#. Label of the annual_revenue (Currency) field in DocType 'CRM Lead' -#. Label of the annual_revenue (Currency) field in DocType 'CRM Organization' -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_lead/crm_lead.json -#: crm/fcrm/doctype/crm_organization/crm_organization.json +#. Label of the annual_revenue (Currency) field in PageType 'CRM Deal' +#. Label of the annual_revenue (Currency) field in PageType 'CRM Lead' +#. Label of the annual_revenue (Currency) field in PageType 'CRM Organization' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_lead/crm_lead.json +#: crm/fcrm/pagetype/crm_organization/crm_organization.json msgid "Annual Revenue" msgstr "Årlig omsetning" @@ -488,13 +488,13 @@ msgstr "Vises ved siden av tittelen i nettleserfanen. Anbefalt størrelse er 32x msgid "Apply" msgstr "Bruk" -#. Label of the apply_on (Link) field in DocType 'CRM Service Level Agreement' -#: crm/fcrm/doctype/crm_service_level_agreement/crm_service_level_agreement.json +#. Label of the apply_on (Link) field in PageType 'CRM Service Level Agreement' +#: crm/fcrm/pagetype/crm_service_level_agreement/crm_service_level_agreement.json msgid "Apply On" msgstr "Bruk på" -#. Label of the view (Select) field in DocType 'CRM Form Script' -#: crm/fcrm/doctype/crm_form_script/crm_form_script.json +#. Label of the view (Select) field in PageType 'CRM Form Script' +#: crm/fcrm/pagetype/crm_form_script/crm_form_script.json msgid "Apply To" msgstr "Bruk på" @@ -540,10 +540,10 @@ msgid "Are you sure you want to go back? Unsaved changes will be lost." msgstr "Er du sikker på at du vil gå tilbake? Ikke-lagrede endringer vil gå tapt." #: frontend/src/composables/frappecloud.js:24 -msgid "Are you sure you want to login to your Frappe Cloud dashboard?" -msgstr "Er du sikker på at du vil logge inn på Frappe Cloud-dashbordet ditt?" +msgid "Are you sure you want to login to your Jingrow Cloud dashboard?" +msgstr "Er du sikker på at du vil logge inn på Jingrow Cloud-dashbordet ditt?" -#: crm/fcrm/doctype/erpnext_crm_settings/erpnext_crm_settings.js:9 +#: crm/fcrm/pagetype/erpnext_crm_settings/erpnext_crm_settings.js:9 msgid "Are you sure you want to reset 'Create Quotation from CRM Deal' Form Script?" msgstr "Er du sikker på at du vil tilbakestille skjemaskriptet \"Opprett tilbud fra CRM-avtale\"?" @@ -555,7 +555,7 @@ msgstr "Er du sikker på at du vil angi valutaen som {0}? Dette kan ikke endres msgid "Are you sure you want to unlink {0} linked item(s)?" msgstr "Er du sikker på at du vil fjerne koblingen til {0} lenkede elementer?" -#: crm/fcrm/doctype/fcrm_settings/fcrm_settings.py:193 +#: crm/fcrm/pagetype/fcrm_settings/fcrm_settings.py:193 msgid "Ask your manager to set up the Exchange Rate Provider, as default provider does not support currency conversion for {0} to {1}." msgstr "" @@ -581,8 +581,8 @@ msgstr "" msgid "Assign to me" msgstr "Tilordne til meg" -#. Label of the assigned_to (Link) field in DocType 'CRM Task' -#: crm/fcrm/doctype/crm_task/crm_task.json +#. Label of the assigned_to (Link) field in PageType 'CRM Task' +#: crm/fcrm/pagetype/crm_task/crm_task.json msgid "Assigned To" msgstr "" @@ -594,13 +594,13 @@ msgstr "" msgid "Assignees" msgstr "" -#. Option for the 'Type' (Select) field in DocType 'CRM Notification' -#: crm/fcrm/doctype/crm_notification/crm_notification.json +#. Option for the 'Type' (Select) field in PageType 'CRM Notification' +#: crm/fcrm/pagetype/crm_notification/crm_notification.json msgid "Assignment" msgstr "" -#. Label of a shortcut in the Frappe CRM Workspace -#: crm/fcrm/workspace/frappe_crm/frappe_crm.json +#. Label of a shortcut in the Jingrow CRM Workspace +#: crm/fcrm/workspace/jingrow_crm/jingrow_crm.json msgid "Assignment Rule" msgstr "Tilordningsregel" @@ -678,14 +678,14 @@ msgstr "" msgid "Attendees" msgstr "" -#. Label of the auth_token (Password) field in DocType 'CRM Twilio Settings' -#: crm/fcrm/doctype/crm_twilio_settings/crm_twilio_settings.json +#. Label of the auth_token (Password) field in PageType 'CRM Twilio Settings' +#: crm/fcrm/pagetype/crm_twilio_settings/crm_twilio_settings.json msgid "Auth Token" msgstr "" -#. Label of the auto_update_expected_deal_value (Check) field in DocType 'FCRM +#. Label of the auto_update_expected_deal_value (Check) field in PageType 'FCRM #. Settings' -#: crm/fcrm/doctype/fcrm_settings/fcrm_settings.json +#: crm/fcrm/pagetype/fcrm_settings/fcrm_settings.json msgid "Auto Update Expected Deal Value" msgstr "" @@ -702,8 +702,8 @@ msgid "Auto update of expected deal value enabled" msgstr "" #. Description of the 'Auto Update Expected Deal Value' (Check) field in -#. DocType 'FCRM Settings' -#: crm/fcrm/doctype/fcrm_settings/fcrm_settings.json +#. PageType 'FCRM Settings' +#: crm/fcrm/pagetype/fcrm_settings/fcrm_settings.json #: frontend/src/components/Settings/ForecastingSettings.vue:46 msgid "Automatically update \"Expected Deal Value\" based on the total value of associated products in a deal" msgstr "" @@ -793,8 +793,8 @@ msgstr "Tilbake" msgid "Back to file upload" msgstr "" -#. Option for the 'Status' (Select) field in DocType 'CRM Task' -#: crm/fcrm/doctype/crm_task/crm_task.json +#. Option for the 'Status' (Select) field in PageType 'CRM Task' +#: crm/fcrm/pagetype/crm_task/crm_task.json msgid "Backlog" msgstr "" @@ -818,8 +818,8 @@ msgstr "" msgid "Brand settings" msgstr "" -#. Label of the branding_tab (Tab Break) field in DocType 'FCRM Settings' -#: crm/fcrm/doctype/fcrm_settings/fcrm_settings.json +#. Label of the branding_tab (Tab Break) field in PageType 'FCRM Settings' +#: crm/fcrm/pagetype/fcrm_settings/fcrm_settings.json msgid "Branding" msgstr "" @@ -827,8 +827,8 @@ msgstr "" msgid "Bulk Edit" msgstr "Masseredigering" -#. Option for the 'Status' (Select) field in DocType 'CRM Call Log' -#: crm/fcrm/doctype/crm_call_log/crm_call_log.json +#. Option for the 'Status' (Select) field in PageType 'CRM Call Log' +#: crm/fcrm/pagetype/crm_call_log/crm_call_log.json msgid "Busy" msgstr "" @@ -838,174 +838,174 @@ msgstr "" msgid "CC" msgstr "CC" -#. Name of a DocType -#: crm/fcrm/doctype/crm_call_log/crm_call_log.json +#. Name of a PageType +#: crm/fcrm/pagetype/crm_call_log/crm_call_log.json msgid "CRM Call Log" msgstr "" -#. Name of a DocType -#: crm/fcrm/doctype/crm_communication_status/crm_communication_status.json +#. Name of a PageType +#: crm/fcrm/pagetype/crm_communication_status/crm_communication_status.json msgid "CRM Communication Status" msgstr "" -#. Name of a DocType -#: crm/fcrm/doctype/crm_contacts/crm_contacts.json +#. Name of a PageType +#: crm/fcrm/pagetype/crm_contacts/crm_contacts.json msgid "CRM Contacts" msgstr "" -#. Name of a DocType -#: crm/fcrm/doctype/crm_dashboard/crm_dashboard.json +#. Name of a PageType +#: crm/fcrm/pagetype/crm_dashboard/crm_dashboard.json #: frontend/src/pages/Dashboard.vue:304 msgid "CRM Dashboard" msgstr "" -#. Name of a DocType -#: crm/fcrm/doctype/crm_deal/crm_deal.json +#. Name of a PageType +#: crm/fcrm/pagetype/crm_deal/crm_deal.json msgid "CRM Deal" msgstr "" -#. Name of a DocType -#: crm/fcrm/doctype/crm_deal_status/crm_deal_status.json +#. Name of a PageType +#: crm/fcrm/pagetype/crm_deal_status/crm_deal_status.json msgid "CRM Deal Status" msgstr "" -#. Name of a DocType -#: crm/fcrm/doctype/crm_dropdown_item/crm_dropdown_item.json +#. Name of a PageType +#: crm/fcrm/pagetype/crm_dropdown_item/crm_dropdown_item.json msgid "CRM Dropdown Item" msgstr "" -#. Name of a DocType -#: crm/fcrm/doctype/crm_exotel_settings/crm_exotel_settings.json +#. Name of a PageType +#: crm/fcrm/pagetype/crm_exotel_settings/crm_exotel_settings.json msgid "CRM Exotel Settings" msgstr "" -#. Name of a DocType -#: crm/fcrm/doctype/crm_fields_layout/crm_fields_layout.json +#. Name of a PageType +#: crm/fcrm/pagetype/crm_fields_layout/crm_fields_layout.json msgid "CRM Fields Layout" msgstr "" -#. Name of a DocType -#: crm/fcrm/doctype/crm_form_script/crm_form_script.json +#. Name of a PageType +#: crm/fcrm/pagetype/crm_form_script/crm_form_script.json msgid "CRM Form Script" msgstr "" -#. Name of a DocType -#: crm/fcrm/doctype/crm_global_settings/crm_global_settings.json +#. Name of a PageType +#: crm/fcrm/pagetype/crm_global_settings/crm_global_settings.json msgid "CRM Global Settings" msgstr "" -#. Name of a DocType -#: crm/fcrm/doctype/crm_holiday/crm_holiday.json +#. Name of a PageType +#: crm/fcrm/pagetype/crm_holiday/crm_holiday.json msgid "CRM Holiday" msgstr "" -#. Name of a DocType -#: crm/fcrm/doctype/crm_holiday_list/crm_holiday_list.json +#. Name of a PageType +#: crm/fcrm/pagetype/crm_holiday_list/crm_holiday_list.json msgid "CRM Holiday List" msgstr "" -#. Name of a DocType -#: crm/fcrm/doctype/crm_industry/crm_industry.json +#. Name of a PageType +#: crm/fcrm/pagetype/crm_industry/crm_industry.json msgid "CRM Industry" msgstr "" -#. Name of a DocType -#: crm/fcrm/doctype/crm_invitation/crm_invitation.json +#. Name of a PageType +#: crm/fcrm/pagetype/crm_invitation/crm_invitation.json msgid "CRM Invitation" msgstr "" -#. Name of a DocType -#: crm/fcrm/doctype/crm_lead/crm_lead.json +#. Name of a PageType +#: crm/fcrm/pagetype/crm_lead/crm_lead.json msgid "CRM Lead" msgstr "" -#. Name of a DocType -#: crm/fcrm/doctype/crm_lead_source/crm_lead_source.json +#. Name of a PageType +#: crm/fcrm/pagetype/crm_lead_source/crm_lead_source.json msgid "CRM Lead Source" msgstr "" -#. Name of a DocType -#: crm/fcrm/doctype/crm_lead_status/crm_lead_status.json +#. Name of a PageType +#: crm/fcrm/pagetype/crm_lead_status/crm_lead_status.json msgid "CRM Lead Status" msgstr "" -#. Name of a DocType -#: crm/fcrm/doctype/crm_lost_reason/crm_lost_reason.json +#. Name of a PageType +#: crm/fcrm/pagetype/crm_lost_reason/crm_lost_reason.json msgid "CRM Lost Reason" msgstr "" -#. Name of a DocType -#: crm/fcrm/doctype/crm_notification/crm_notification.json +#. Name of a PageType +#: crm/fcrm/pagetype/crm_notification/crm_notification.json msgid "CRM Notification" msgstr "" -#. Name of a DocType -#: crm/fcrm/doctype/crm_organization/crm_organization.json +#. Name of a PageType +#: crm/fcrm/pagetype/crm_organization/crm_organization.json msgid "CRM Organization" msgstr "" -#. Label of a shortcut in the Frappe CRM Workspace -#: crm/fcrm/workspace/frappe_crm/frappe_crm.json +#. Label of a shortcut in the Jingrow CRM Workspace +#: crm/fcrm/workspace/jingrow_crm/jingrow_crm.json msgid "CRM Portal Page" msgstr "" -#. Name of a DocType -#: crm/fcrm/doctype/crm_product/crm_product.json +#. Name of a PageType +#: crm/fcrm/pagetype/crm_product/crm_product.json msgid "CRM Product" msgstr "" -#. Name of a DocType -#: crm/fcrm/doctype/crm_products/crm_products.json +#. Name of a PageType +#: crm/fcrm/pagetype/crm_products/crm_products.json msgid "CRM Products" msgstr "" -#. Name of a DocType -#: crm/fcrm/doctype/crm_service_day/crm_service_day.json +#. Name of a PageType +#: crm/fcrm/pagetype/crm_service_day/crm_service_day.json msgid "CRM Service Day" msgstr "" -#. Name of a DocType -#: crm/fcrm/doctype/crm_service_level_agreement/crm_service_level_agreement.json +#. Name of a PageType +#: crm/fcrm/pagetype/crm_service_level_agreement/crm_service_level_agreement.json msgid "CRM Service Level Agreement" msgstr "" -#. Name of a DocType -#: crm/fcrm/doctype/crm_service_level_priority/crm_service_level_priority.json +#. Name of a PageType +#: crm/fcrm/pagetype/crm_service_level_priority/crm_service_level_priority.json msgid "CRM Service Level Priority" msgstr "" -#. Name of a DocType -#: crm/fcrm/doctype/crm_status_change_log/crm_status_change_log.json +#. Name of a PageType +#: crm/fcrm/pagetype/crm_status_change_log/crm_status_change_log.json msgid "CRM Status Change Log" msgstr "" -#. Name of a DocType -#: crm/fcrm/doctype/crm_task/crm_task.json +#. Name of a PageType +#: crm/fcrm/pagetype/crm_task/crm_task.json msgid "CRM Task" msgstr "" -#. Name of a DocType -#: crm/fcrm/doctype/crm_telephony_agent/crm_telephony_agent.json +#. Name of a PageType +#: crm/fcrm/pagetype/crm_telephony_agent/crm_telephony_agent.json msgid "CRM Telephony Agent" msgstr "" -#. Name of a DocType -#: crm/fcrm/doctype/crm_telephony_phone/crm_telephony_phone.json +#. Name of a PageType +#: crm/fcrm/pagetype/crm_telephony_phone/crm_telephony_phone.json msgid "CRM Telephony Phone" msgstr "" -#. Name of a DocType -#: crm/fcrm/doctype/crm_territory/crm_territory.json +#. Name of a PageType +#: crm/fcrm/pagetype/crm_territory/crm_territory.json msgid "CRM Territory" msgstr "" -#. Name of a DocType -#: crm/fcrm/doctype/crm_twilio_settings/crm_twilio_settings.json +#. Name of a PageType +#: crm/fcrm/pagetype/crm_twilio_settings/crm_twilio_settings.json msgid "CRM Twilio Settings" msgstr "" -#. Name of a DocType -#: crm/fcrm/doctype/crm_view_settings/crm_view_settings.json +#. Name of a PageType +#: crm/fcrm/pagetype/crm_view_settings/crm_view_settings.json msgid "CRM View Settings" msgstr "" @@ -1021,13 +1021,13 @@ msgstr "" msgid "Call Details" msgstr "" -#. Label of the receiver (Link) field in DocType 'CRM Call Log' -#: crm/fcrm/doctype/crm_call_log/crm_call_log.json +#. Label of the receiver (Link) field in PageType 'CRM Call Log' +#: crm/fcrm/pagetype/crm_call_log/crm_call_log.json msgid "Call Received By" msgstr "" -#. Description of the 'Duration' (Duration) field in DocType 'CRM Call Log' -#: crm/fcrm/doctype/crm_call_log/crm_call_log.json +#. Description of the 'Duration' (Duration) field in PageType 'CRM Call Log' +#: crm/fcrm/pagetype/crm_call_log/crm_call_log.json msgid "Call duration in seconds" msgstr "" @@ -1045,8 +1045,8 @@ msgstr "" msgid "Call with John Doe" msgstr "" -#. Label of the caller (Link) field in DocType 'CRM Call Log' -#: crm/fcrm/doctype/crm_call_log/crm_call_log.json +#. Label of the caller (Link) field in PageType 'CRM Call Log' +#: crm/fcrm/pagetype/crm_call_log/crm_call_log.json msgid "Caller" msgstr "" @@ -1083,10 +1083,10 @@ msgstr "Kamera" msgid "Cancel" msgstr "Avbryt" -#. Option for the 'Status' (Select) field in DocType 'CRM Call Log' -#. Option for the 'Status' (Select) field in DocType 'CRM Task' -#: crm/fcrm/doctype/crm_call_log/crm_call_log.json -#: crm/fcrm/doctype/crm_task/crm_task.json +#. Option for the 'Status' (Select) field in PageType 'CRM Call Log' +#. Option for the 'Status' (Select) field in PageType 'CRM Task' +#: crm/fcrm/pagetype/crm_call_log/crm_call_log.json +#: crm/fcrm/pagetype/crm_task/crm_task.json msgid "Canceled" msgstr "" @@ -1094,7 +1094,7 @@ msgstr "" msgid "Cannot change role of user with Admin access" msgstr "" -#: crm/fcrm/doctype/fcrm_settings/fcrm_settings.py:34 +#: crm/fcrm/pagetype/fcrm_settings/fcrm_settings.py:34 msgid "Cannot delete standard items {0}" msgstr "" @@ -1189,8 +1189,8 @@ msgstr "Slett oppgave" msgid "Clear Sort" msgstr "" -#. Label of the clear_table (Button) field in DocType 'CRM Holiday List' -#: crm/fcrm/doctype/crm_holiday_list/crm_holiday_list.json +#. Label of the clear_table (Button) field in PageType 'CRM Holiday List' +#: crm/fcrm/pagetype/crm_holiday_list/crm_holiday_list.json msgid "Clear Table" msgstr "" @@ -1211,8 +1211,8 @@ msgstr "" msgid "Close panel" msgstr "" -#. Label of the closed_date (Date) field in DocType 'CRM Deal' -#: crm/fcrm/doctype/crm_deal/crm_deal.json +#. Label of the closed_date (Date) field in PageType 'CRM Deal' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json msgid "Closed Date" msgstr "" @@ -1224,10 +1224,10 @@ msgstr "Fold sammen alle" msgid "Collapsible" msgstr "" -#. Label of the color (Select) field in DocType 'CRM Deal Status' -#. Label of the color (Select) field in DocType 'CRM Lead Status' -#: crm/fcrm/doctype/crm_deal_status/crm_deal_status.json -#: crm/fcrm/doctype/crm_lead_status/crm_lead_status.json +#. Label of the color (Select) field in PageType 'CRM Deal Status' +#. Label of the color (Select) field in PageType 'CRM Lead Status' +#: crm/fcrm/pagetype/crm_deal_status/crm_deal_status.json +#: crm/fcrm/pagetype/crm_lead_status/crm_lead_status.json msgid "Color" msgstr "Farge" @@ -1235,20 +1235,20 @@ msgstr "Farge" msgid "Column" msgstr "Kolonne" -#. Label of the column_field (Data) field in DocType 'CRM View Settings' -#: crm/fcrm/doctype/crm_view_settings/crm_view_settings.json +#. Label of the column_field (Data) field in PageType 'CRM View Settings' +#: crm/fcrm/pagetype/crm_view_settings/crm_view_settings.json #: frontend/src/components/Kanban/KanbanSettings.vue:12 msgid "Column Field" msgstr "" -#. Label of the columns (Code) field in DocType 'CRM View Settings' -#: crm/fcrm/doctype/crm_view_settings/crm_view_settings.json +#. Label of the columns (Code) field in PageType 'CRM View Settings' +#: crm/fcrm/pagetype/crm_view_settings/crm_view_settings.json #: frontend/src/components/ColumnSettings.vue:4 msgid "Columns" msgstr "" -#. Label of the comment (Link) field in DocType 'CRM Notification' -#: crm/fcrm/doctype/crm_notification/crm_notification.json +#. Label of the comment (Link) field in PageType 'CRM Notification' +#: crm/fcrm/pagetype/crm_notification/crm_notification.json #: frontend/src/components/CommentBox.vue:78 #: frontend/src/components/CommunicationArea.vue:16 #: frontend/src/components/Layouts/AppSidebar.vue:579 @@ -1264,20 +1264,20 @@ msgstr "" msgid "Common reasons for losing deals" msgstr "" -#. Label of the communication_status (Link) field in DocType 'CRM Deal' -#. Label of the communication_status (Link) field in DocType 'CRM Lead' -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_lead/crm_lead.json +#. Label of the communication_status (Link) field in PageType 'CRM Deal' +#. Label of the communication_status (Link) field in PageType 'CRM Lead' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_lead/crm_lead.json msgid "Communication Status" msgstr "" -#. Label of a shortcut in the Frappe CRM Workspace -#: crm/fcrm/workspace/frappe_crm/frappe_crm.json +#. Label of a shortcut in the Jingrow CRM Workspace +#: crm/fcrm/workspace/jingrow_crm/jingrow_crm.json msgid "Communication Statuses" msgstr "" -#. Label of the erpnext_company (Data) field in DocType 'ERPNext CRM Settings' -#: crm/fcrm/doctype/erpnext_crm_settings/erpnext_crm_settings.json +#. Label of the erpnext_company (Data) field in PageType 'ERPNext CRM Settings' +#: crm/fcrm/pagetype/erpnext_crm_settings/erpnext_crm_settings.json msgid "Company in ERPNext Site" msgstr "Bedrift i ERPNext-nettsted" @@ -1285,18 +1285,18 @@ msgstr "Bedrift i ERPNext-nettsted" msgid "Complete Registration" msgstr "Fullfør registrering!" -#. Option for the 'Status' (Select) field in DocType 'CRM Call Log' -#: crm/fcrm/doctype/crm_call_log/crm_call_log.json +#. Option for the 'Status' (Select) field in PageType 'CRM Call Log' +#: crm/fcrm/pagetype/crm_call_log/crm_call_log.json msgid "Completed" msgstr "" -#. Option for the 'Device' (Select) field in DocType 'CRM Telephony Agent' -#: crm/fcrm/doctype/crm_telephony_agent/crm_telephony_agent.json +#. Option for the 'Device' (Select) field in PageType 'CRM Telephony Agent' +#: crm/fcrm/pagetype/crm_telephony_agent/crm_telephony_agent.json msgid "Computer" msgstr "" -#. Label of the condition (Code) field in DocType 'CRM Service Level Agreement' -#: crm/fcrm/doctype/crm_service_level_agreement/crm_service_level_agreement.json +#. Label of the condition (Code) field in PageType 'CRM Service Level Agreement' +#: crm/fcrm/pagetype/crm_service_level_agreement/crm_service_level_agreement.json msgid "Condition" msgstr "" @@ -1354,17 +1354,17 @@ msgstr "" msgid "Connect your email" msgstr "" -#. Label of the contact (Link) field in DocType 'CRM Contacts' -#. Label of the contact (Link) field in DocType 'CRM Deal' -#: crm/fcrm/doctype/crm_contacts/crm_contacts.json -#: crm/fcrm/doctype/crm_deal/crm_deal.json +#. Label of the contact (Link) field in PageType 'CRM Contacts' +#. Label of the contact (Link) field in PageType 'CRM Deal' +#: crm/fcrm/pagetype/crm_contacts/crm_contacts.json +#: crm/fcrm/pagetype/crm_deal/crm_deal.json #: frontend/src/components/Layouts/AppSidebar.vue:552 #: frontend/src/components/Modals/ConvertToDealModal.vue:51 #: frontend/src/pages/MobileLead.vue:145 msgid "Contact" msgstr "" -#: crm/fcrm/doctype/crm_lead/crm_lead.py:212 +#: crm/fcrm/pagetype/crm_lead/crm_lead.py:212 msgid "Contact Already Exists" msgstr "" @@ -1384,7 +1384,7 @@ msgstr "" msgid "Contact already added" msgstr "" -#: crm/fcrm/doctype/crm_lead/crm_lead.py:211 +#: crm/fcrm/pagetype/crm_lead/crm_lead.py:211 msgid "Contact already exists with {0}" msgstr "" @@ -1405,18 +1405,18 @@ msgstr "" msgid "Contact updated" msgstr "" -#. Label of the contacts_tab (Tab Break) field in DocType 'CRM Deal' -#. Label of the contacts (Table) field in DocType 'CRM Deal' -#. Label of a shortcut in the Frappe CRM Workspace -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/workspace/frappe_crm/frappe_crm.json +#. Label of the contacts_tab (Tab Break) field in PageType 'CRM Deal' +#. Label of the contacts (Table) field in PageType 'CRM Deal' +#. Label of a shortcut in the Jingrow CRM Workspace +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/workspace/jingrow_crm/jingrow_crm.json #: frontend/src/pages/Contact.vue:234 frontend/src/pages/MobileContact.vue:212 #: frontend/src/pages/MobileOrganization.vue:331 msgid "Contacts" msgstr "" -#. Label of the content (Text Editor) field in DocType 'FCRM Note' -#: crm/fcrm/doctype/fcrm_note/fcrm_note.json +#. Label of the content (Text Editor) field in PageType 'FCRM Note' +#: crm/fcrm/pagetype/fcrm_note/fcrm_note.json #: frontend/src/components/Modals/NoteModal.vue:33 #: frontend/src/components/Settings/EmailTemplate/EditEmailTemplate.vue:89 #: frontend/src/components/Settings/EmailTemplate/EditEmailTemplate.vue:102 @@ -1456,8 +1456,8 @@ msgstr "" msgid "Convert to Deal" msgstr "" -#. Label of the converted (Check) field in DocType 'CRM Lead' -#: crm/fcrm/doctype/crm_lead/crm_lead.json +#. Label of the converted (Check) field in PageType 'CRM Lead' +#: crm/fcrm/pagetype/crm_lead/crm_lead.json msgid "Converted" msgstr "" @@ -1533,9 +1533,9 @@ msgstr "" msgid "Create an event" msgstr "" -#. Label of the create_customer_on_status_change (Check) field in DocType +#. Label of the create_customer_on_status_change (Check) field in PageType #. 'ERPNext CRM Settings' -#: crm/fcrm/doctype/erpnext_crm_settings/erpnext_crm_settings.json +#: crm/fcrm/pagetype/erpnext_crm_settings/erpnext_crm_settings.json msgid "Create customer on status change" msgstr "Opprett kunde ved statusendring" @@ -1560,13 +1560,13 @@ msgstr "" msgid "Create your first task" msgstr "" -#. Label of the currency (Link) field in DocType 'CRM Deal' -#. Label of the currency (Link) field in DocType 'CRM Organization' -#. Label of the currency (Link) field in DocType 'FCRM Settings' -#. Label of the currency_tab (Tab Break) field in DocType 'FCRM Settings' -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_organization/crm_organization.json -#: crm/fcrm/doctype/fcrm_settings/fcrm_settings.json +#. Label of the currency (Link) field in PageType 'CRM Deal' +#. Label of the currency (Link) field in PageType 'CRM Organization' +#. Label of the currency (Link) field in PageType 'FCRM Settings' +#. Label of the currency_tab (Tab Break) field in PageType 'FCRM Settings' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_organization/crm_organization.json +#: crm/fcrm/pagetype/fcrm_settings/fcrm_settings.json #: frontend/src/components/Settings/CurrencySettings.vue:31 msgid "Currency" msgstr "" @@ -1631,13 +1631,13 @@ msgstr "" msgid "Data" msgstr "Data" -#. Option for the 'Type' (Select) field in DocType 'CRM Fields Layout' -#: crm/fcrm/doctype/crm_fields_layout/crm_fields_layout.json +#. Option for the 'Type' (Select) field in PageType 'CRM Fields Layout' +#: crm/fcrm/pagetype/crm_fields_layout/crm_fields_layout.json msgid "Data Fields" msgstr "" -#. Label of the date (Date) field in DocType 'CRM Holiday' -#: crm/api/dashboard.py:601 crm/fcrm/doctype/crm_holiday/crm_holiday.json +#. Label of the date (Date) field in PageType 'CRM Holiday' +#: crm/api/dashboard.py:601 crm/fcrm/pagetype/crm_holiday/crm_holiday.json #: frontend/src/components/Calendar/CalendarEventPanel.vue:202 msgid "Date" msgstr "" @@ -1660,23 +1660,23 @@ msgstr "" msgid "Deal" msgstr "" -#. Label of the deal_owner (Link) field in DocType 'CRM Deal' -#: crm/fcrm/doctype/crm_deal/crm_deal.json +#. Label of the deal_owner (Link) field in PageType 'CRM Deal' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json msgid "Deal Owner" msgstr "" -#. Label of the deal_status (Link) field in DocType 'ERPNext CRM Settings' -#: crm/fcrm/doctype/erpnext_crm_settings/erpnext_crm_settings.json +#. Label of the deal_status (Link) field in PageType 'ERPNext CRM Settings' +#: crm/fcrm/pagetype/erpnext_crm_settings/erpnext_crm_settings.json msgid "Deal Status" msgstr "Avtalestatus" -#. Label of a shortcut in the Frappe CRM Workspace -#: crm/fcrm/workspace/frappe_crm/frappe_crm.json +#. Label of a shortcut in the Jingrow CRM Workspace +#: crm/fcrm/workspace/jingrow_crm/jingrow_crm.json msgid "Deal Statuses" msgstr "" -#. Label of the deal_value (Currency) field in DocType 'CRM Deal' -#: crm/fcrm/doctype/crm_deal/crm_deal.json +#. Label of the deal_value (Currency) field in PageType 'CRM Deal' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json msgid "Deal Value" msgstr "" @@ -1694,8 +1694,8 @@ msgstr "" msgid "Deal value" msgstr "" -#. Label of a shortcut in the Frappe CRM Workspace -#: crm/fcrm/workspace/frappe_crm/frappe_crm.json +#. Label of a shortcut in the Jingrow CRM Workspace +#: crm/fcrm/workspace/jingrow_crm/jingrow_crm.json #: frontend/src/pages/Deal.vue:480 frontend/src/pages/MobileContact.vue:288 #: frontend/src/pages/MobileDeal.vue:384 #: frontend/src/pages/MobileOrganization.vue:325 @@ -1732,8 +1732,8 @@ msgstr "" msgid "Dear {{ lead_name }}, \\n\\nThis is a reminder for the payment of {{ grand_total }}. \\n\\nThanks, \\nFrappé" msgstr "" -#. Label of the default (Check) field in DocType 'CRM Service Level Agreement' -#: crm/fcrm/doctype/crm_service_level_agreement/crm_service_level_agreement.json +#. Label of the default (Check) field in PageType 'CRM Service Level Agreement' +#: crm/fcrm/pagetype/crm_service_level_agreement/crm_service_level_agreement.json msgid "Default" msgstr "" @@ -1745,8 +1745,8 @@ msgstr "Standard innboks" msgid "Default Incoming" msgstr "Standard innkommende" -#. Label of the default_medium (Select) field in DocType 'CRM Telephony Agent' -#: crm/fcrm/doctype/crm_telephony_agent/crm_telephony_agent.json +#. Label of the default_medium (Select) field in PageType 'CRM Telephony Agent' +#: crm/fcrm/pagetype/crm_telephony_agent/crm_telephony_agent.json msgid "Default Medium" msgstr "" @@ -1754,9 +1754,9 @@ msgstr "" msgid "Default Outgoing" msgstr "Standard utgående" -#. Label of the default_priority (Check) field in DocType 'CRM Service Level +#. Label of the default_priority (Check) field in PageType 'CRM Service Level #. Priority' -#: crm/fcrm/doctype/crm_service_level_priority/crm_service_level_priority.json +#: crm/fcrm/pagetype/crm_service_level_priority/crm_service_level_priority.json msgid "Default Priority" msgstr "" @@ -1768,7 +1768,7 @@ msgstr "Standard sending" msgid "Default Sending and Inbox" msgstr "Standard sending og innboks" -#: crm/fcrm/doctype/crm_service_level_agreement/crm_service_level_agreement.py:33 +#: crm/fcrm/pagetype/crm_service_level_agreement/crm_service_level_agreement.py:33 msgid "Default Service Level Agreement already exists for {0}" msgstr "" @@ -1788,8 +1788,8 @@ msgstr "" msgid "Default medium" msgstr "" -#: crm/fcrm/doctype/fcrm_settings/fcrm_settings.js:18 -#: crm/fcrm/doctype/fcrm_settings/fcrm_settings.js:30 +#: crm/fcrm/pagetype/fcrm_settings/fcrm_settings.js:18 +#: crm/fcrm/pagetype/fcrm_settings/fcrm_settings.js:30 msgid "Default statuses, custom fields and layouts restored successfully." msgstr "" @@ -1825,7 +1825,7 @@ msgstr "" msgid "Delete" msgstr "" -#: crm/fcrm/doctype/fcrm_settings/fcrm_settings.js:26 +#: crm/fcrm/pagetype/fcrm_settings/fcrm_settings.js:26 msgid "Delete & Restore" msgstr "" @@ -1883,14 +1883,14 @@ msgstr "" msgid "Delete {0} items" msgstr "" -#. Label of the description (Text Editor) field in DocType 'CRM Holiday' -#. Label of the description (Text Editor) field in DocType 'CRM Lost Reason' -#. Label of the description (Text Editor) field in DocType 'CRM Product' -#. Label of the description (Text Editor) field in DocType 'CRM Task' -#: crm/fcrm/doctype/crm_holiday/crm_holiday.json -#: crm/fcrm/doctype/crm_lost_reason/crm_lost_reason.json -#: crm/fcrm/doctype/crm_product/crm_product.json -#: crm/fcrm/doctype/crm_task/crm_task.json +#. Label of the description (Text Editor) field in PageType 'CRM Holiday' +#. Label of the description (Text Editor) field in PageType 'CRM Lost Reason' +#. Label of the description (Text Editor) field in PageType 'CRM Product' +#. Label of the description (Text Editor) field in PageType 'CRM Task' +#: crm/fcrm/pagetype/crm_holiday/crm_holiday.json +#: crm/fcrm/pagetype/crm_lost_reason/crm_lost_reason.json +#: crm/fcrm/pagetype/crm_product/crm_product.json +#: crm/fcrm/pagetype/crm_task/crm_task.json #: frontend/src/components/Calendar/CalendarEventPanel.vue:152 #: frontend/src/components/Modals/EventModal.vue:134 #: frontend/src/components/Modals/TaskModal.vue:36 @@ -1907,29 +1907,29 @@ msgstr "" msgid "Desk" msgstr "" -#. Label of the details (Tab Break) field in DocType 'CRM Lead' -#. Label of the details (Text Editor) field in DocType 'CRM Lead Source' -#: crm/fcrm/doctype/crm_lead/crm_lead.json -#: crm/fcrm/doctype/crm_lead_source/crm_lead_source.json +#. Label of the details (Tab Break) field in PageType 'CRM Lead' +#. Label of the details (Text Editor) field in PageType 'CRM Lead Source' +#: crm/fcrm/pagetype/crm_lead/crm_lead.json +#: crm/fcrm/pagetype/crm_lead_source/crm_lead_source.json #: frontend/src/pages/MobileContact.vue:283 #: frontend/src/pages/MobileDeal.vue:424 frontend/src/pages/MobileLead.vue:331 #: frontend/src/pages/MobileOrganization.vue:320 msgid "Details" msgstr "Detaljer" -#. Label of the call_receiving_device (Select) field in DocType 'CRM Telephony +#. Label of the call_receiving_device (Select) field in PageType 'CRM Telephony #. Agent' -#: crm/fcrm/doctype/crm_telephony_agent/crm_telephony_agent.json +#: crm/fcrm/pagetype/crm_telephony_agent/crm_telephony_agent.json #: frontend/src/components/FilesUploader/FilesUploaderArea.vue:39 msgid "Device" msgstr "Enhet" -#: crm/fcrm/doctype/crm_form_script/crm_form_script.js:30 +#: crm/fcrm/pagetype/crm_form_script/crm_form_script.js:30 msgid "Disable" msgstr "" -#. Label of the disabled (Check) field in DocType 'CRM Product' -#: crm/fcrm/doctype/crm_product/crm_product.json +#. Label of the disabled (Check) field in PageType 'CRM Product' +#: crm/fcrm/pagetype/crm_product/crm_product.json msgid "Disabled" msgstr "" @@ -1943,29 +1943,29 @@ msgstr "Kast" msgid "Discard unsaved changes?" msgstr "" -#. Label of the discount_percentage (Percent) field in DocType 'CRM Products' -#: crm/fcrm/doctype/crm_products/crm_products.json +#. Label of the discount_percentage (Percent) field in PageType 'CRM Products' +#: crm/fcrm/pagetype/crm_products/crm_products.json msgid "Discount %" msgstr "Rabatt %" -#. Label of the discount_amount (Currency) field in DocType 'CRM Products' -#: crm/fcrm/doctype/crm_products/crm_products.json +#. Label of the discount_amount (Currency) field in PageType 'CRM Products' +#: crm/fcrm/pagetype/crm_products/crm_products.json msgid "Discount Amount" msgstr "" -#. Label of the dt (Link) field in DocType 'CRM Form Script' -#. Label of the dt (Link) field in DocType 'CRM Global Settings' -#. Label of the dt (Link) field in DocType 'CRM View Settings' -#: crm/fcrm/doctype/crm_form_script/crm_form_script.json -#: crm/fcrm/doctype/crm_global_settings/crm_global_settings.json -#: crm/fcrm/doctype/crm_view_settings/crm_view_settings.json -msgid "DocType" -msgstr "DocType" +#. Label of the dt (Link) field in PageType 'CRM Form Script' +#. Label of the dt (Link) field in PageType 'CRM Global Settings' +#. Label of the dt (Link) field in PageType 'CRM View Settings' +#: crm/fcrm/pagetype/crm_form_script/crm_form_script.json +#: crm/fcrm/pagetype/crm_global_settings/crm_global_settings.json +#: crm/fcrm/pagetype/crm_view_settings/crm_view_settings.json +msgid "PageType" +msgstr "PageType" -#. Label of the dt (Link) field in DocType 'CRM Fields Layout' -#: crm/fcrm/doctype/crm_fields_layout/crm_fields_layout.json +#. Label of the dt (Link) field in PageType 'CRM Fields Layout' +#: crm/fcrm/pagetype/crm_fields_layout/crm_fields_layout.json msgid "Document Type" -msgstr "Dokumenttype (DocType)" +msgstr "Dokumenttype (PageType)" #: frontend/src/data/document.js:28 msgid "Document does not exist" @@ -1983,8 +1983,8 @@ msgstr "" msgid "Documentation" msgstr "" -#. Option for the 'Status' (Select) field in DocType 'CRM Task' -#: crm/fcrm/doctype/crm_task/crm_task.json +#. Option for the 'Status' (Select) field in PageType 'CRM Task' +#: crm/fcrm/pagetype/crm_task/crm_task.json msgid "Done" msgstr "" @@ -2006,13 +2006,13 @@ msgstr "Dra og slipp filer hit eller last opp fra" msgid "Drop files here" msgstr "Slipp filer her" -#. Label of the dropdown_items_tab (Tab Break) field in DocType 'FCRM Settings' -#: crm/fcrm/doctype/fcrm_settings/fcrm_settings.json +#. Label of the dropdown_items_tab (Tab Break) field in PageType 'FCRM Settings' +#: crm/fcrm/pagetype/fcrm_settings/fcrm_settings.json msgid "Dropdown Items" msgstr "" -#. Label of the due_date (Datetime) field in DocType 'CRM Task' -#: crm/fcrm/doctype/crm_task/crm_task.json +#. Label of the due_date (Datetime) field in PageType 'CRM Task' +#: crm/fcrm/pagetype/crm_task/crm_task.json msgid "Due Date" msgstr "" @@ -2048,10 +2048,10 @@ msgstr "" msgid "Duplicate template" msgstr "" -#. Label of the duration (Duration) field in DocType 'CRM Call Log' -#. Label of the duration (Duration) field in DocType 'CRM Status Change Log' -#: crm/fcrm/doctype/crm_call_log/crm_call_log.json -#: crm/fcrm/doctype/crm_status_change_log/crm_status_change_log.json +#. Label of the duration (Duration) field in PageType 'CRM Call Log' +#. Label of the duration (Duration) field in PageType 'CRM Status Change Log' +#: crm/fcrm/pagetype/crm_call_log/crm_call_log.json +#: crm/fcrm/pagetype/crm_status_change_log/crm_status_change_log.json msgid "Duration" msgstr "" @@ -2060,28 +2060,28 @@ msgstr "" msgid "ERPNext" msgstr "ERPNext" -#. Name of a DocType -#: crm/fcrm/doctype/erpnext_crm_settings/erpnext_crm_settings.json +#. Name of a PageType +#: crm/fcrm/pagetype/erpnext_crm_settings/erpnext_crm_settings.json msgid "ERPNext CRM Settings" msgstr "ERPNext CRM-innstillinger" -#. Label of the section_break_oubd (Section Break) field in DocType 'ERPNext +#. Label of the section_break_oubd (Section Break) field in PageType 'ERPNext #. CRM Settings' -#: crm/fcrm/doctype/erpnext_crm_settings/erpnext_crm_settings.json +#: crm/fcrm/pagetype/erpnext_crm_settings/erpnext_crm_settings.json msgid "ERPNext Site API's" msgstr "ERPNext-nettstedets API-er" -#. Label of the erpnext_site_url (Data) field in DocType 'ERPNext CRM Settings' -#: crm/fcrm/doctype/erpnext_crm_settings/erpnext_crm_settings.json +#. Label of the erpnext_site_url (Data) field in PageType 'ERPNext CRM Settings' +#: crm/fcrm/pagetype/erpnext_crm_settings/erpnext_crm_settings.json msgid "ERPNext Site URL" msgstr "ERPNext-nettstedets URL" -#: crm/fcrm/doctype/erpnext_crm_settings/erpnext_crm_settings.py:25 +#: crm/fcrm/pagetype/erpnext_crm_settings/erpnext_crm_settings.py:25 msgid "ERPNext is not installed in the current site" msgstr "ERPNext er ikke installert på det aktuelle nettstedet" -#: crm/fcrm/doctype/erpnext_crm_settings/erpnext_crm_settings.py:98 -#: crm/fcrm/doctype/erpnext_crm_settings/erpnext_crm_settings.py:124 +#: crm/fcrm/pagetype/erpnext_crm_settings/erpnext_crm_settings.py:98 +#: crm/fcrm/pagetype/erpnext_crm_settings/erpnext_crm_settings.py:124 msgid "ERPNext is not integrated with the CRM" msgstr "ERPNext er ikke integrert med CRM-systemet" @@ -2191,12 +2191,12 @@ msgstr "" msgid "Editing event" msgstr "" -#. Label of the email (Data) field in DocType 'CRM Contacts' -#. Label of the email (Data) field in DocType 'CRM Invitation' -#. Label of the email (Data) field in DocType 'CRM Lead' -#: crm/fcrm/doctype/crm_contacts/crm_contacts.json -#: crm/fcrm/doctype/crm_invitation/crm_invitation.json -#: crm/fcrm/doctype/crm_lead/crm_lead.json frontend/src/pages/Contact.vue:510 +#. Label of the email (Data) field in PageType 'CRM Contacts' +#. Label of the email (Data) field in PageType 'CRM Invitation' +#. Label of the email (Data) field in PageType 'CRM Lead' +#: crm/fcrm/pagetype/crm_contacts/crm_contacts.json +#: crm/fcrm/pagetype/crm_invitation/crm_invitation.json +#: crm/fcrm/pagetype/crm_lead/crm_lead.json frontend/src/pages/Contact.vue:510 #: frontend/src/pages/MobileContact.vue:518 #: frontend/src/pages/MobileOrganization.vue:462 #: frontend/src/pages/MobileOrganization.vue:490 @@ -2213,8 +2213,8 @@ msgstr "" msgid "Email ID is required" msgstr "" -#. Label of the email_sent_at (Datetime) field in DocType 'CRM Invitation' -#: crm/fcrm/doctype/crm_invitation/crm_invitation.json +#. Label of the email_sent_at (Datetime) field in PageType 'CRM Invitation' +#: crm/fcrm/pagetype/crm_invitation/crm_invitation.json msgid "Email Sent At" msgstr "" @@ -2272,12 +2272,12 @@ msgstr "Tom - Velg et felt å filtrere etter" msgid "Empty - Choose a field to sort by" msgstr "" -#: crm/fcrm/doctype/crm_form_script/crm_form_script.js:30 +#: crm/fcrm/pagetype/crm_form_script/crm_form_script.js:30 msgid "Enable" msgstr "Aktiver" -#. Label of the enable_forecasting (Check) field in DocType 'FCRM Settings' -#: crm/fcrm/doctype/fcrm_settings/fcrm_settings.json +#. Label of the enable_forecasting (Check) field in PageType 'FCRM Settings' +#: crm/fcrm/pagetype/fcrm_settings/fcrm_settings.json msgid "Enable Forecasting" msgstr "" @@ -2293,18 +2293,18 @@ msgstr "Aktiver utgående e-post" msgid "Enable forecasting" msgstr "Aktiver prognoser" -#. Label of the enabled (Check) field in DocType 'CRM Exotel Settings' -#. Label of the enabled (Check) field in DocType 'CRM Form Script' -#. Label of the enabled (Check) field in DocType 'CRM Service Level Agreement' -#. Label of the enabled (Check) field in DocType 'CRM Twilio Settings' -#. Label of the enabled (Check) field in DocType 'ERPNext CRM Settings' -#. Label of the enabled (Check) field in DocType 'Helpdesk CRM Settings' -#: crm/fcrm/doctype/crm_exotel_settings/crm_exotel_settings.json -#: crm/fcrm/doctype/crm_form_script/crm_form_script.json -#: crm/fcrm/doctype/crm_service_level_agreement/crm_service_level_agreement.json -#: crm/fcrm/doctype/crm_twilio_settings/crm_twilio_settings.json -#: crm/fcrm/doctype/erpnext_crm_settings/erpnext_crm_settings.json -#: crm/fcrm/doctype/helpdesk_crm_settings/helpdesk_crm_settings.json +#. Label of the enabled (Check) field in PageType 'CRM Exotel Settings' +#. Label of the enabled (Check) field in PageType 'CRM Form Script' +#. Label of the enabled (Check) field in PageType 'CRM Service Level Agreement' +#. Label of the enabled (Check) field in PageType 'CRM Twilio Settings' +#. Label of the enabled (Check) field in PageType 'ERPNext CRM Settings' +#. Label of the enabled (Check) field in PageType 'Helpdesk CRM Settings' +#: crm/fcrm/pagetype/crm_exotel_settings/crm_exotel_settings.json +#: crm/fcrm/pagetype/crm_form_script/crm_form_script.json +#: crm/fcrm/pagetype/crm_service_level_agreement/crm_service_level_agreement.json +#: crm/fcrm/pagetype/crm_twilio_settings/crm_twilio_settings.json +#: crm/fcrm/pagetype/erpnext_crm_settings/erpnext_crm_settings.json +#: crm/fcrm/pagetype/helpdesk_crm_settings/helpdesk_crm_settings.json #: frontend/src/components/Settings/AssignmentRules/AssignmentRuleView.vue:32 #: frontend/src/components/Settings/AssignmentRules/AssignmentRulesList.vue:21 #: frontend/src/components/Settings/EmailTemplate/EditEmailTemplate.vue:18 @@ -2313,15 +2313,15 @@ msgstr "Aktiver prognoser" msgid "Enabled" msgstr "Aktivert" -#. Label of the end_date (Date) field in DocType 'CRM Service Level Agreement' -#: crm/fcrm/doctype/crm_service_level_agreement/crm_service_level_agreement.json +#. Label of the end_date (Date) field in PageType 'CRM Service Level Agreement' +#: crm/fcrm/pagetype/crm_service_level_agreement/crm_service_level_agreement.json msgid "End Date" msgstr "Sluttdato" -#. Label of the end_time (Datetime) field in DocType 'CRM Call Log' -#. Label of the end_time (Time) field in DocType 'CRM Service Day' -#: crm/fcrm/doctype/crm_call_log/crm_call_log.json -#: crm/fcrm/doctype/crm_service_day/crm_service_day.json +#. Label of the end_time (Datetime) field in PageType 'CRM Call Log' +#. Label of the end_time (Time) field in PageType 'CRM Service Day' +#: crm/fcrm/pagetype/crm_call_log/crm_call_log.json +#: crm/fcrm/pagetype/crm_service_day/crm_service_day.json #: frontend/src/components/Calendar/CalendarEventPanel.vue:242 #: frontend/src/components/Modals/EventModal.vue:112 msgid "End Time" @@ -2362,15 +2362,15 @@ msgstr "Feil ved konvertering til avtale: {0}" msgid "Error updating field" msgstr "Feil ved oppdatering av felt" -#: crm/fcrm/doctype/erpnext_crm_settings/erpnext_crm_settings.py:279 +#: crm/fcrm/pagetype/erpnext_crm_settings/erpnext_crm_settings.py:279 msgid "Error while creating customer in ERPNext, check error log for more details" msgstr "Feil under oppretting av kunde i ERPNext, sjekk feilloggen for mer informasjon" -#: crm/fcrm/doctype/erpnext_crm_settings/erpnext_crm_settings.py:191 +#: crm/fcrm/pagetype/erpnext_crm_settings/erpnext_crm_settings.py:191 msgid "Error while creating prospect in ERPNext, check error log for more details" msgstr "Feil under oppretting av prospekt i ERPNext, sjekk feilloggen for mer informasjon" -#: crm/fcrm/doctype/erpnext_crm_settings/erpnext_crm_settings.py:117 +#: crm/fcrm/pagetype/erpnext_crm_settings/erpnext_crm_settings.py:117 msgid "Error while fetching customer in ERPNext, check error log for more details" msgstr "Feil under henting av kunde i ERPNext, sjekk feilloggen for mer informasjon" @@ -2395,16 +2395,16 @@ msgstr "Hendelser" msgid "Excel" msgstr "" -#. Label of the exchange_rate (Float) field in DocType 'CRM Deal' -#. Label of the exchange_rate (Float) field in DocType 'CRM Organization' -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_organization/crm_organization.json +#. Label of the exchange_rate (Float) field in PageType 'CRM Deal' +#. Label of the exchange_rate (Float) field in PageType 'CRM Organization' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_organization/crm_organization.json msgid "Exchange Rate" msgstr "" -#. Label of the exchange_rate_provider_section (Section Break) field in DocType +#. Label of the exchange_rate_provider_section (Section Break) field in PageType #. 'FCRM Settings' -#: crm/fcrm/doctype/fcrm_settings/fcrm_settings.json +#: crm/fcrm/pagetype/fcrm_settings/fcrm_settings.json msgid "Exchange Rate Provider" msgstr "Valutakursleverandør" @@ -2412,12 +2412,12 @@ msgstr "Valutakursleverandør" msgid "Exchange rate provider" msgstr "Valutakursleverandør" -#. Option for the 'Telephony Medium' (Select) field in DocType 'CRM Call Log' -#. Label of the exotel (Check) field in DocType 'CRM Telephony Agent' -#. Option for the 'Default Medium' (Select) field in DocType 'CRM Telephony +#. Option for the 'Telephony Medium' (Select) field in PageType 'CRM Call Log' +#. Label of the exotel (Check) field in PageType 'CRM Telephony Agent' +#. Option for the 'Default Medium' (Select) field in PageType 'CRM Telephony #. Agent' -#: crm/fcrm/doctype/crm_call_log/crm_call_log.json -#: crm/fcrm/doctype/crm_telephony_agent/crm_telephony_agent.json +#: crm/fcrm/pagetype/crm_call_log/crm_call_log.json +#: crm/fcrm/pagetype/crm_telephony_agent/crm_telephony_agent.json #: frontend/src/components/Layouts/AppSidebar.vue:602 #: frontend/src/components/Settings/TelephonySettings.vue:41 #: frontend/src/components/Settings/TelephonySettings.vue:63 @@ -2428,8 +2428,8 @@ msgstr "" msgid "Exotel Exception" msgstr "Exotel-unntak" -#. Label of the exotel_number (Data) field in DocType 'CRM Telephony Agent' -#: crm/fcrm/doctype/crm_telephony_agent/crm_telephony_agent.json +#. Label of the exotel_number (Data) field in PageType 'CRM Telephony Agent' +#: crm/fcrm/pagetype/crm_telephony_agent/crm_telephony_agent.json msgid "Exotel Number" msgstr "Exotel-nummer" @@ -2453,26 +2453,26 @@ msgstr "" msgid "Expand" msgstr "Utvid" -#. Label of the expected_closure_date (Date) field in DocType 'CRM Deal' -#: crm/fcrm/doctype/crm_deal/crm_deal.json +#. Label of the expected_closure_date (Date) field in PageType 'CRM Deal' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json msgid "Expected Closure Date" msgstr "" -#: crm/fcrm/doctype/crm_deal/crm_deal.py:173 +#: crm/fcrm/pagetype/crm_deal/crm_deal.py:173 msgid "Expected Closure Date is required." msgstr "" -#. Label of the expected_deal_value (Currency) field in DocType 'CRM Deal' -#: crm/fcrm/doctype/crm_deal/crm_deal.json +#. Label of the expected_deal_value (Currency) field in PageType 'CRM Deal' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json msgid "Expected Deal Value" msgstr "" -#: crm/fcrm/doctype/crm_deal/crm_deal.py:171 +#: crm/fcrm/pagetype/crm_deal/crm_deal.py:171 msgid "Expected Deal Value is required." msgstr "" -#. Option for the 'Status' (Select) field in DocType 'CRM Invitation' -#: crm/fcrm/doctype/crm_invitation/crm_invitation.json +#. Option for the 'Status' (Select) field in PageType 'CRM Invitation' +#: crm/fcrm/pagetype/crm_invitation/crm_invitation.json msgid "Expired" msgstr "" @@ -2489,22 +2489,22 @@ msgstr "" msgid "Export Type" msgstr "Eksporttype" -#. Name of a DocType -#: crm/fcrm/doctype/fcrm_note/fcrm_note.json +#. Name of a PageType +#: crm/fcrm/pagetype/fcrm_note/fcrm_note.json msgid "FCRM Note" msgstr "" -#. Name of a DocType -#: crm/fcrm/doctype/fcrm_settings/fcrm_settings.json +#. Name of a PageType +#: crm/fcrm/pagetype/fcrm_settings/fcrm_settings.json msgid "FCRM Settings" msgstr "" -#. Option for the 'Status' (Select) field in DocType 'CRM Call Log' -#. Option for the 'SLA Status' (Select) field in DocType 'CRM Deal' -#. Option for the 'SLA Status' (Select) field in DocType 'CRM Lead' -#: crm/fcrm/doctype/crm_call_log/crm_call_log.json -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_lead/crm_lead.json +#. Option for the 'Status' (Select) field in PageType 'CRM Call Log' +#. Option for the 'SLA Status' (Select) field in PageType 'CRM Deal' +#. Option for the 'SLA Status' (Select) field in PageType 'CRM Lead' +#: crm/fcrm/pagetype/crm_call_log/crm_call_log.json +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_lead/crm_lead.json msgid "Failed" msgstr "" @@ -2528,7 +2528,7 @@ msgstr "" msgid "Failed to delete template" msgstr "" -#: crm/fcrm/doctype/fcrm_settings/fcrm_settings.py:205 +#: crm/fcrm/pagetype/fcrm_settings/fcrm_settings.py:205 msgid "Failed to fetch exchange rate from {0} to {1} on {2}. Please check your internet connection or try again later." msgstr "Kunne ikke hente valutakurs fra {0} til {1} på {2}. Vennligst sjekk internettforbindelsen din eller prøv igjen senere." @@ -2561,8 +2561,8 @@ msgstr "" msgid "Failed to update template" msgstr "" -#. Label of the favicon (Attach) field in DocType 'FCRM Settings' -#: crm/fcrm/doctype/fcrm_settings/fcrm_settings.json +#. Label of the favicon (Attach) field in PageType 'FCRM Settings' +#: crm/fcrm/pagetype/fcrm_settings/fcrm_settings.json #: frontend/src/components/Settings/BrandSettings.vue:87 msgid "Favicon" msgstr "Favicon" @@ -2586,23 +2586,23 @@ msgid "File \"{0}\" was skipped because only {1} uploads are allowed" msgstr "Filen \"{0}\" ble hoppet over fordi bare {1} -opplastinger er tillatt" #: frontend/src/components/FilesUploader/FilesUploaderArea.vue:359 -msgid "File \"{0}\" was skipped because only {1} uploads are allowed for DocType \"{2}\"" -msgstr "Filen \"{0}\" ble hoppet over fordi bare {1} -opplastinger er tillatt for dokumenttype (DocType) \"{2}\"" +msgid "File \"{0}\" was skipped because only {1} uploads are allowed for PageType \"{2}\"" +msgstr "Filen \"{0}\" ble hoppet over fordi bare {1} -opplastinger er tillatt for dokumenttype (PageType) \"{2}\"" #: frontend/src/components/Filter.vue:6 msgid "Filter" msgstr "Filter" -#. Label of the filters (Code) field in DocType 'CRM View Settings' -#. Label of the filters_tab (Tab Break) field in DocType 'CRM View Settings' -#: crm/fcrm/doctype/crm_view_settings/crm_view_settings.json +#. Label of the filters (Code) field in PageType 'CRM View Settings' +#. Label of the filters_tab (Tab Break) field in PageType 'CRM View Settings' +#: crm/fcrm/pagetype/crm_view_settings/crm_view_settings.json msgid "Filters" msgstr "Filtre" -#. Label of the first_name (Data) field in DocType 'CRM Deal' -#. Label of the first_name (Data) field in DocType 'CRM Lead' -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_lead/crm_lead.json +#. Label of the first_name (Data) field in PageType 'CRM Deal' +#. Label of the first_name (Data) field in PageType 'CRM Lead' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_lead/crm_lead.json #: frontend/src/components/ColumnSettings.vue:103 #: frontend/src/components/Filter.vue:57 frontend/src/components/Filter.vue:88 #: frontend/src/components/SortBy.vue:6 frontend/src/components/SortBy.vue:103 @@ -2614,30 +2614,30 @@ msgstr "Fornavn" msgid "First Name is mandatory" msgstr "" -#. Label of the first_responded_on (Datetime) field in DocType 'CRM Deal' -#. Label of the first_responded_on (Datetime) field in DocType 'CRM Lead' -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_lead/crm_lead.json +#. Label of the first_responded_on (Datetime) field in PageType 'CRM Deal' +#. Label of the first_responded_on (Datetime) field in PageType 'CRM Lead' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_lead/crm_lead.json msgid "First Responded On" msgstr "" -#. Option for the 'SLA Status' (Select) field in DocType 'CRM Deal' -#. Option for the 'SLA Status' (Select) field in DocType 'CRM Lead' -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_lead/crm_lead.json +#. Option for the 'SLA Status' (Select) field in PageType 'CRM Deal' +#. Option for the 'SLA Status' (Select) field in PageType 'CRM Lead' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_lead/crm_lead.json msgid "First Response Due" msgstr "" -#. Label of the first_response_time (Duration) field in DocType 'CRM Service +#. Label of the first_response_time (Duration) field in PageType 'CRM Service #. Level Priority' -#: crm/fcrm/doctype/crm_service_level_priority/crm_service_level_priority.json +#: crm/fcrm/pagetype/crm_service_level_priority/crm_service_level_priority.json msgid "First Response TIme" msgstr "Første responstid" -#. Label of the first_response_time (Duration) field in DocType 'CRM Deal' -#. Label of the first_response_time (Duration) field in DocType 'CRM Lead' -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_lead/crm_lead.json +#. Label of the first_response_time (Duration) field in PageType 'CRM Deal' +#. Label of the first_response_time (Duration) field in PageType 'CRM Lead' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_lead/crm_lead.json msgid "First Response Time" msgstr "" @@ -2670,66 +2670,66 @@ msgstr "Prognoser er deaktivert" msgid "Forecasting enabled successfully" msgstr "Prognoser er aktivert" -#. Option for the 'Apply To' (Select) field in DocType 'CRM Form Script' -#: crm/fcrm/doctype/crm_form_script/crm_form_script.json +#. Option for the 'Apply To' (Select) field in PageType 'CRM Form Script' +#: crm/fcrm/pagetype/crm_form_script/crm_form_script.json msgid "Form" msgstr "Skjema" -#: crm/fcrm/doctype/erpnext_crm_settings/erpnext_crm_settings.js:19 +#: crm/fcrm/pagetype/erpnext_crm_settings/erpnext_crm_settings.js:19 msgid "Form Script updated successfully" msgstr "Skjemaskriptet ble vellykket oppdatert" #. Name of a Workspace -#: crm/fcrm/workspace/frappe_crm/frappe_crm.json -msgid "Frappe CRM" +#: crm/fcrm/workspace/jingrow_crm/jingrow_crm.json +msgid "Jingrow CRM" msgstr "" #: frontend/src/components/Layouts/AppSidebar.vue:608 -msgid "Frappe CRM mobile" +msgid "Jingrow CRM mobile" msgstr "" -#. Option for the 'Weekly Off' (Select) field in DocType 'CRM Holiday List' -#. Option for the 'Workday' (Select) field in DocType 'CRM Service Day' -#: crm/fcrm/doctype/crm_holiday_list/crm_holiday_list.json -#: crm/fcrm/doctype/crm_service_day/crm_service_day.json +#. Option for the 'Weekly Off' (Select) field in PageType 'CRM Holiday List' +#. Option for the 'Workday' (Select) field in PageType 'CRM Service Day' +#: crm/fcrm/pagetype/crm_holiday_list/crm_holiday_list.json +#: crm/fcrm/pagetype/crm_service_day/crm_service_day.json msgid "Friday" msgstr "Fredag" -#. Label of the from (Data) field in DocType 'CRM Call Log' -#. Label of the from (Data) field in DocType 'CRM Status Change Log' -#: crm/fcrm/doctype/crm_call_log/crm_call_log.json -#: crm/fcrm/doctype/crm_status_change_log/crm_status_change_log.json +#. Label of the from (Data) field in PageType 'CRM Call Log' +#. Label of the from (Data) field in PageType 'CRM Status Change Log' +#: crm/fcrm/pagetype/crm_call_log/crm_call_log.json +#: crm/fcrm/pagetype/crm_status_change_log/crm_status_change_log.json msgid "From" msgstr "" -#. Label of the from_date (Date) field in DocType 'CRM Holiday List' -#. Label of the from_date (Datetime) field in DocType 'CRM Status Change Log' -#: crm/fcrm/doctype/crm_holiday_list/crm_holiday_list.json -#: crm/fcrm/doctype/crm_status_change_log/crm_status_change_log.json +#. Label of the from_date (Date) field in PageType 'CRM Holiday List' +#. Label of the from_date (Datetime) field in PageType 'CRM Status Change Log' +#: crm/fcrm/pagetype/crm_holiday_list/crm_holiday_list.json +#: crm/fcrm/pagetype/crm_status_change_log/crm_status_change_log.json msgid "From Date" msgstr "" -#. Label of the from_type (Data) field in DocType 'CRM Status Change Log' -#: crm/fcrm/doctype/crm_status_change_log/crm_status_change_log.json +#. Label of the from_type (Data) field in PageType 'CRM Status Change Log' +#: crm/fcrm/pagetype/crm_status_change_log/crm_status_change_log.json msgid "From Type" msgstr "" -#. Label of the from_user (Link) field in DocType 'CRM Notification' -#: crm/fcrm/doctype/crm_notification/crm_notification.json +#. Label of the from_user (Link) field in PageType 'CRM Notification' +#: crm/fcrm/pagetype/crm_notification/crm_notification.json msgid "From User" msgstr "Fra bruker" -#. Option for the 'SLA Status' (Select) field in DocType 'CRM Deal' -#. Option for the 'SLA Status' (Select) field in DocType 'CRM Lead' -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_lead/crm_lead.json +#. Option for the 'SLA Status' (Select) field in PageType 'CRM Deal' +#. Option for the 'SLA Status' (Select) field in PageType 'CRM Lead' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_lead/crm_lead.json msgid "Fulfilled" msgstr "" -#. Label of the full_name (Data) field in DocType 'CRM Contacts' -#. Label of the lead_name (Data) field in DocType 'CRM Lead' -#: crm/fcrm/doctype/crm_contacts/crm_contacts.json -#: crm/fcrm/doctype/crm_lead/crm_lead.json +#. Label of the full_name (Data) field in PageType 'CRM Contacts' +#. Label of the lead_name (Data) field in PageType 'CRM Lead' +#: crm/fcrm/pagetype/crm_contacts/crm_contacts.json +#: crm/fcrm/pagetype/crm_lead/crm_lead.json msgid "Full Name" msgstr "Fullt navn" @@ -2742,12 +2742,12 @@ msgstr "Traktkonvertering" msgid "GMT+5:30" msgstr "" -#. Label of the gender (Link) field in DocType 'CRM Contacts' -#. Label of the gender (Link) field in DocType 'CRM Deal' -#. Label of the gender (Link) field in DocType 'CRM Lead' -#: crm/fcrm/doctype/crm_contacts/crm_contacts.json -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_lead/crm_lead.json +#. Label of the gender (Link) field in PageType 'CRM Contacts' +#. Label of the gender (Link) field in PageType 'CRM Deal' +#. Label of the gender (Link) field in PageType 'CRM Lead' +#: crm/fcrm/pagetype/crm_contacts/crm_contacts.json +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_lead/crm_lead.json msgid "Gender" msgstr "Kjønn" @@ -2771,20 +2771,20 @@ msgstr "" msgid "Go to website" msgstr "" -#. Option for the 'Type' (Select) field in DocType 'CRM Fields Layout' -#: crm/fcrm/doctype/crm_fields_layout/crm_fields_layout.json +#. Option for the 'Type' (Select) field in PageType 'CRM Fields Layout' +#: crm/fcrm/pagetype/crm_fields_layout/crm_fields_layout.json msgid "Grid Row" msgstr "" -#. Label of the group_by_tab (Tab Break) field in DocType 'CRM View Settings' -#: crm/fcrm/doctype/crm_view_settings/crm_view_settings.json +#. Label of the group_by_tab (Tab Break) field in PageType 'CRM View Settings' +#: crm/fcrm/pagetype/crm_view_settings/crm_view_settings.json #: frontend/src/components/ViewControls.vue:379 #: frontend/src/components/ViewControls.vue:611 frontend/src/utils/view.js:16 msgid "Group By" msgstr "" -#. Label of the group_by_field (Data) field in DocType 'CRM View Settings' -#: crm/fcrm/doctype/crm_view_settings/crm_view_settings.json +#. Label of the group_by_field (Data) field in PageType 'CRM View Settings' +#: crm/fcrm/pagetype/crm_view_settings/crm_view_settings.json msgid "Group By Field" msgstr "" @@ -2808,28 +2808,28 @@ msgstr "" msgid "Helpdesk" msgstr "" -#. Name of a DocType -#: crm/fcrm/doctype/helpdesk_crm_settings/helpdesk_crm_settings.json +#. Name of a PageType +#: crm/fcrm/pagetype/helpdesk_crm_settings/helpdesk_crm_settings.json msgid "Helpdesk CRM Settings" msgstr "" -#. Label of the helpdesk_site_apis_section (Section Break) field in DocType +#. Label of the helpdesk_site_apis_section (Section Break) field in PageType #. 'Helpdesk CRM Settings' -#: crm/fcrm/doctype/helpdesk_crm_settings/helpdesk_crm_settings.json +#: crm/fcrm/pagetype/helpdesk_crm_settings/helpdesk_crm_settings.json msgid "Helpdesk Site API's" msgstr "" -#. Label of the helpdesk_site_url (Data) field in DocType 'Helpdesk CRM +#. Label of the helpdesk_site_url (Data) field in PageType 'Helpdesk CRM #. Settings' -#: crm/fcrm/doctype/helpdesk_crm_settings/helpdesk_crm_settings.json +#: crm/fcrm/pagetype/helpdesk_crm_settings/helpdesk_crm_settings.json msgid "Helpdesk Site URL" msgstr "" -#: crm/fcrm/doctype/helpdesk_crm_settings/helpdesk_crm_settings.py:18 +#: crm/fcrm/pagetype/helpdesk_crm_settings/helpdesk_crm_settings.py:18 msgid "Helpdesk is not installed in the current site" msgstr "" -#: crm/fcrm/doctype/helpdesk_crm_settings/helpdesk_crm_settings.py:40 +#: crm/fcrm/pagetype/helpdesk_crm_settings/helpdesk_crm_settings.py:40 msgid "Helpdesk is not integrated with the CRM" msgstr "" @@ -2845,8 +2845,8 @@ msgstr "" msgid "Hi John, \\n\\nCan you please provide more details on this..." msgstr "" -#. Label of the hidden (Check) field in DocType 'CRM Dropdown Item' -#: crm/fcrm/doctype/crm_dropdown_item/crm_dropdown_item.json +#. Label of the hidden (Check) field in PageType 'CRM Dropdown Item' +#: crm/fcrm/pagetype/crm_dropdown_item/crm_dropdown_item.json msgid "Hidden" msgstr "Skjult" @@ -2877,26 +2877,26 @@ msgstr "" msgid "Hide preview" msgstr "" -#. Option for the 'Priority' (Select) field in DocType 'CRM Task' -#: crm/fcrm/doctype/crm_task/crm_task.json +#. Option for the 'Priority' (Select) field in PageType 'CRM Task' +#: crm/fcrm/pagetype/crm_task/crm_task.json msgid "High" msgstr "" -#. Label of the holiday_list (Link) field in DocType 'CRM Service Level +#. Label of the holiday_list (Link) field in PageType 'CRM Service Level #. Agreement' -#: crm/fcrm/doctype/crm_service_level_agreement/crm_service_level_agreement.json +#: crm/fcrm/pagetype/crm_service_level_agreement/crm_service_level_agreement.json msgid "Holiday List" msgstr "Ferieliste" -#. Label of the holiday_list_name (Data) field in DocType 'CRM Holiday List' -#: crm/fcrm/doctype/crm_holiday_list/crm_holiday_list.json +#. Label of the holiday_list_name (Data) field in PageType 'CRM Holiday List' +#: crm/fcrm/pagetype/crm_holiday_list/crm_holiday_list.json msgid "Holiday List Name" msgstr "" -#. Label of the holidays_section (Section Break) field in DocType 'CRM Holiday +#. Label of the holidays_section (Section Break) field in PageType 'CRM Holiday #. List' -#. Label of the holidays (Table) field in DocType 'CRM Holiday List' -#: crm/fcrm/doctype/crm_holiday_list/crm_holiday_list.json +#. Label of the holidays (Table) field in PageType 'CRM Holiday List' +#: crm/fcrm/pagetype/crm_holiday_list/crm_holiday_list.json msgid "Holidays" msgstr "" @@ -2914,15 +2914,15 @@ msgstr "Handlinger på Hjem-siden" msgid "I understand, add conditions" msgstr "Jeg forstår, legg til betingelser" -#. Label of the id (Data) field in DocType 'CRM Call Log' -#: crm/fcrm/doctype/crm_call_log/crm_call_log.json +#. Label of the id (Data) field in PageType 'CRM Call Log' +#: crm/fcrm/pagetype/crm_call_log/crm_call_log.json msgid "ID" msgstr "" -#. Label of the icon (Code) field in DocType 'CRM Dropdown Item' -#. Label of the icon (Data) field in DocType 'CRM View Settings' -#: crm/fcrm/doctype/crm_dropdown_item/crm_dropdown_item.json -#: crm/fcrm/doctype/crm_view_settings/crm_view_settings.json +#. Label of the icon (Code) field in PageType 'CRM Dropdown Item' +#. Label of the icon (Data) field in PageType 'CRM View Settings' +#: crm/fcrm/pagetype/crm_dropdown_item/crm_dropdown_item.json +#: crm/fcrm/pagetype/crm_view_settings/crm_view_settings.json msgid "Icon" msgstr "Ikon" @@ -2942,10 +2942,10 @@ msgstr "" msgid "If enabled, records can be created from the incoming emails on this account." msgstr "" -#. Label of the image (Attach Image) field in DocType 'CRM Lead' -#. Label of the image (Attach Image) field in DocType 'CRM Product' -#: crm/fcrm/doctype/crm_lead/crm_lead.json -#: crm/fcrm/doctype/crm_product/crm_product.json +#. Label of the image (Attach Image) field in PageType 'CRM Lead' +#. Label of the image (Attach Image) field in PageType 'CRM Product' +#: crm/fcrm/pagetype/crm_lead/crm_lead.json +#: crm/fcrm/pagetype/crm_product/crm_product.json msgid "Image" msgstr "" @@ -2957,10 +2957,10 @@ msgstr "" msgid "In" msgstr "I" -#. Option for the 'Status' (Select) field in DocType 'CRM Call Log' -#. Option for the 'Status' (Select) field in DocType 'CRM Task' -#: crm/fcrm/doctype/crm_call_log/crm_call_log.json -#: crm/fcrm/doctype/crm_task/crm_task.json +#. Option for the 'Status' (Select) field in PageType 'CRM Call Log' +#. Option for the 'Status' (Select) field in PageType 'CRM Task' +#: crm/fcrm/pagetype/crm_call_log/crm_call_log.json +#: crm/fcrm/pagetype/crm_task/crm_task.json msgid "In Progress" msgstr "" @@ -2976,8 +2976,8 @@ msgstr "" msgid "Inbox" msgstr "Innboks" -#. Option for the 'Type' (Select) field in DocType 'CRM Call Log' -#: crm/fcrm/doctype/crm_call_log/crm_call_log.json +#. Option for the 'Type' (Select) field in PageType 'CRM Call Log' +#: crm/fcrm/pagetype/crm_call_log/crm_call_log.json msgid "Incoming" msgstr "" @@ -2985,24 +2985,24 @@ msgstr "" msgid "Incoming call..." msgstr "" -#. Label of a shortcut in the Frappe CRM Workspace -#: crm/fcrm/workspace/frappe_crm/frappe_crm.json +#. Label of a shortcut in the Jingrow CRM Workspace +#: crm/fcrm/workspace/jingrow_crm/jingrow_crm.json msgid "Industries" msgstr "" -#. Label of the industry (Link) field in DocType 'CRM Deal' -#. Label of the industry (Data) field in DocType 'CRM Industry' -#. Label of the industry (Link) field in DocType 'CRM Lead' -#. Label of the industry (Link) field in DocType 'CRM Organization' -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_industry/crm_industry.json -#: crm/fcrm/doctype/crm_lead/crm_lead.json -#: crm/fcrm/doctype/crm_organization/crm_organization.json +#. Label of the industry (Link) field in PageType 'CRM Deal' +#. Label of the industry (Data) field in PageType 'CRM Industry' +#. Label of the industry (Link) field in PageType 'CRM Lead' +#. Label of the industry (Link) field in PageType 'CRM Organization' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_industry/crm_industry.json +#: crm/fcrm/pagetype/crm_lead/crm_lead.json +#: crm/fcrm/pagetype/crm_organization/crm_organization.json msgid "Industry" msgstr "" -#. Option for the 'Status' (Select) field in DocType 'CRM Call Log' -#: crm/fcrm/doctype/crm_call_log/crm_call_log.json +#. Option for the 'Status' (Select) field in PageType 'CRM Call Log' +#: crm/fcrm/pagetype/crm_call_log/crm_call_log.json msgid "Initiated" msgstr "" @@ -3037,7 +3037,7 @@ msgstr "Integrasjoner" msgid "Introduction" msgstr "" -#: crm/fcrm/doctype/crm_twilio_settings/crm_twilio_settings.py:33 +#: crm/fcrm/pagetype/crm_twilio_settings/crm_twilio_settings.py:33 msgid "Invalid Account SID or Auth Token." msgstr "" @@ -3054,7 +3054,7 @@ msgstr "Ugyldig Exotel-nummer" msgid "Invalid chart name" msgstr "" -#: crm/fcrm/doctype/crm_exotel_settings/crm_exotel_settings.py:25 +#: crm/fcrm/pagetype/crm_exotel_settings/crm_exotel_settings.py:25 msgid "Invalid credentials" msgstr "" @@ -3103,8 +3103,8 @@ msgstr "Inviter brukere til å få tilgang til CRM. Spesifiser rollene deres for msgid "Invite your team" msgstr "" -#. Label of the invited_by (Link) field in DocType 'CRM Invitation' -#: crm/fcrm/doctype/crm_invitation/crm_invitation.json +#. Label of the invited_by (Link) field in PageType 'CRM Invitation' +#: crm/fcrm/pagetype/crm_invitation/crm_invitation.json msgid "Invited By" msgstr "" @@ -3118,59 +3118,59 @@ msgstr "" msgid "Is" msgstr "Er" -#. Label of the is_default (Check) field in DocType 'CRM View Settings' -#: crm/fcrm/doctype/crm_view_settings/crm_view_settings.json +#. Label of the is_default (Check) field in PageType 'CRM View Settings' +#: crm/fcrm/pagetype/crm_view_settings/crm_view_settings.json msgid "Is Default" msgstr "Er standard" -#. Label of the is_erpnext_in_different_site (Check) field in DocType 'ERPNext +#. Label of the is_erpnext_in_different_site (Check) field in PageType 'ERPNext #. CRM Settings' -#: crm/fcrm/doctype/erpnext_crm_settings/erpnext_crm_settings.json +#: crm/fcrm/pagetype/erpnext_crm_settings/erpnext_crm_settings.json msgid "Is ERPNext installed on a different site?" msgstr "Er ERPNext installert på et annet nettsted?" -#. Label of the is_group (Check) field in DocType 'CRM Territory' -#: crm/fcrm/doctype/crm_territory/crm_territory.json +#. Label of the is_group (Check) field in PageType 'CRM Territory' +#: crm/fcrm/pagetype/crm_territory/crm_territory.json msgid "Is Group" msgstr "Er gruppe" -#. Label of the is_helpdesk_in_different_site (Check) field in DocType +#. Label of the is_helpdesk_in_different_site (Check) field in PageType #. 'Helpdesk CRM Settings' -#: crm/fcrm/doctype/helpdesk_crm_settings/helpdesk_crm_settings.json +#: crm/fcrm/pagetype/helpdesk_crm_settings/helpdesk_crm_settings.json msgid "Is Helpdesk installed on a different site?" msgstr "Er Helpdesk installert på et annet nettsted?" -#. Label of the is_primary (Check) field in DocType 'CRM Contacts' -#. Label of the is_primary (Check) field in DocType 'CRM Telephony Phone' -#: crm/fcrm/doctype/crm_contacts/crm_contacts.json -#: crm/fcrm/doctype/crm_telephony_phone/crm_telephony_phone.json +#. Label of the is_primary (Check) field in PageType 'CRM Contacts' +#. Label of the is_primary (Check) field in PageType 'CRM Telephony Phone' +#: crm/fcrm/pagetype/crm_contacts/crm_contacts.json +#: crm/fcrm/pagetype/crm_telephony_phone/crm_telephony_phone.json msgid "Is Primary" msgstr "" -#. Label of the is_standard (Check) field in DocType 'CRM Dropdown Item' -#. Label of the is_standard (Check) field in DocType 'CRM Form Script' -#. Label of the is_standard (Check) field in DocType 'CRM View Settings' -#: crm/fcrm/doctype/crm_dropdown_item/crm_dropdown_item.json -#: crm/fcrm/doctype/crm_form_script/crm_form_script.json -#: crm/fcrm/doctype/crm_view_settings/crm_view_settings.json +#. Label of the is_standard (Check) field in PageType 'CRM Dropdown Item' +#. Label of the is_standard (Check) field in PageType 'CRM Form Script' +#. Label of the is_standard (Check) field in PageType 'CRM View Settings' +#: crm/fcrm/pagetype/crm_dropdown_item/crm_dropdown_item.json +#: crm/fcrm/pagetype/crm_form_script/crm_form_script.json +#: crm/fcrm/pagetype/crm_view_settings/crm_view_settings.json msgid "Is Standard" msgstr "" -#. Description of the 'Enable Forecasting' (Check) field in DocType 'FCRM +#. Description of the 'Enable Forecasting' (Check) field in PageType 'FCRM #. Settings' -#: crm/fcrm/doctype/fcrm_settings/fcrm_settings.json +#: crm/fcrm/pagetype/fcrm_settings/fcrm_settings.json msgid "It will make deal's \"Expected Closure Date\" & \"Expected Deal Value\" mandatory to get accurate forecasting insights" msgstr "" -#. Label of the json (JSON) field in DocType 'CRM Global Settings' -#: crm/fcrm/doctype/crm_global_settings/crm_global_settings.json +#. Label of the json (JSON) field in PageType 'CRM Global Settings' +#: crm/fcrm/pagetype/crm_global_settings/crm_global_settings.json msgid "JSON" msgstr "JSON" -#. Label of the job_title (Data) field in DocType 'CRM Deal' -#. Label of the job_title (Data) field in DocType 'CRM Lead' -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_lead/crm_lead.json +#. Label of the job_title (Data) field in PageType 'CRM Deal' +#. Label of the job_title (Data) field in PageType 'CRM Lead' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_lead/crm_lead.json msgid "Job Title" msgstr "" @@ -3182,20 +3182,20 @@ msgstr "" msgid "John Doe" msgstr "" -#. Label of the kanban_tab (Tab Break) field in DocType 'CRM View Settings' -#: crm/fcrm/doctype/crm_view_settings/crm_view_settings.json +#. Label of the kanban_tab (Tab Break) field in PageType 'CRM View Settings' +#: crm/fcrm/pagetype/crm_view_settings/crm_view_settings.json #: frontend/src/components/ViewControls.vue:384 #: frontend/src/components/ViewControls.vue:600 frontend/src/utils/view.js:20 msgid "Kanban" msgstr "" -#. Label of the kanban_columns (Code) field in DocType 'CRM View Settings' -#: crm/fcrm/doctype/crm_view_settings/crm_view_settings.json +#. Label of the kanban_columns (Code) field in PageType 'CRM View Settings' +#: crm/fcrm/pagetype/crm_view_settings/crm_view_settings.json msgid "Kanban Columns" msgstr "" -#. Label of the kanban_fields (Code) field in DocType 'CRM View Settings' -#: crm/fcrm/doctype/crm_view_settings/crm_view_settings.json +#. Label of the kanban_fields (Code) field in PageType 'CRM View Settings' +#: crm/fcrm/pagetype/crm_view_settings/crm_view_settings.json msgid "Kanban Fields" msgstr "" @@ -3204,15 +3204,15 @@ msgstr "" msgid "Kanban Settings" msgstr "Innstillinger for Kanban-tavle" -#. Label of the key (Data) field in DocType 'CRM Invitation' -#: crm/fcrm/doctype/crm_invitation/crm_invitation.json +#. Label of the key (Data) field in PageType 'CRM Invitation' +#: crm/fcrm/pagetype/crm_invitation/crm_invitation.json msgid "Key" msgstr "Nøkkel" -#. Label of the label (Data) field in DocType 'CRM Dropdown Item' -#. Label of the label (Data) field in DocType 'CRM View Settings' -#: crm/fcrm/doctype/crm_dropdown_item/crm_dropdown_item.json -#: crm/fcrm/doctype/crm_view_settings/crm_view_settings.json +#. Label of the label (Data) field in PageType 'CRM Dropdown Item' +#. Label of the label (Data) field in PageType 'CRM View Settings' +#: crm/fcrm/pagetype/crm_dropdown_item/crm_dropdown_item.json +#: crm/fcrm/pagetype/crm_view_settings/crm_view_settings.json #: frontend/src/components/ColumnSettings.vue:100 msgid "Label" msgstr "Etikett" @@ -3229,10 +3229,10 @@ msgstr "" msgid "Last Month" msgstr "" -#. Label of the last_name (Data) field in DocType 'CRM Deal' -#. Label of the last_name (Data) field in DocType 'CRM Lead' -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_lead/crm_lead.json +#. Label of the last_name (Data) field in PageType 'CRM Deal' +#. Label of the last_name (Data) field in PageType 'CRM Lead' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_lead/crm_lead.json msgid "Last Name" msgstr "" @@ -3240,9 +3240,9 @@ msgstr "" msgid "Last Quarter" msgstr "" -#. Label of the last_status_change_log (Link) field in DocType 'CRM Status +#. Label of the last_status_change_log (Link) field in PageType 'CRM Status #. Change Log' -#: crm/fcrm/doctype/crm_status_change_log/crm_status_change_log.json +#: crm/fcrm/pagetype/crm_status_change_log/crm_status_change_log.json msgid "Last Status Change Log" msgstr "" @@ -3270,15 +3270,15 @@ msgstr "" msgid "Last user assigned by this rule" msgstr "" -#. Label of the layout (Code) field in DocType 'CRM Dashboard' -#. Label of the layout (Code) field in DocType 'CRM Fields Layout' -#: crm/fcrm/doctype/crm_dashboard/crm_dashboard.json -#: crm/fcrm/doctype/crm_fields_layout/crm_fields_layout.json +#. Label of the layout (Code) field in PageType 'CRM Dashboard' +#. Label of the layout (Code) field in PageType 'CRM Fields Layout' +#: crm/fcrm/pagetype/crm_dashboard/crm_dashboard.json +#: crm/fcrm/pagetype/crm_fields_layout/crm_fields_layout.json msgid "Layout" msgstr "" -#. Label of the lead (Link) field in DocType 'CRM Deal' -#: crm/fcrm/doctype/crm_deal/crm_deal.json +#. Label of the lead (Link) field in PageType 'CRM Deal' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json #: frontend/src/components/Calendar/CalendarEventPanel.vue:263 #: frontend/src/components/Calendar/CalendarEventPanel.vue:288 #: frontend/src/components/Layouts/AppSidebar.vue:550 @@ -3291,32 +3291,32 @@ msgstr "" msgid "Lead" msgstr "Potensiell kunde" -#. Label of the lead_details_tab (Tab Break) field in DocType 'CRM Deal' -#: crm/fcrm/doctype/crm_deal/crm_deal.json +#. Label of the lead_details_tab (Tab Break) field in PageType 'CRM Deal' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json msgid "Lead Details" msgstr "" -#. Label of the lead_name (Data) field in DocType 'CRM Deal' -#: crm/fcrm/doctype/crm_deal/crm_deal.json +#. Label of the lead_name (Data) field in PageType 'CRM Deal' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json msgid "Lead Name" msgstr "" -#. Label of the lead_owner (Link) field in DocType 'CRM Lead' -#: crm/fcrm/doctype/crm_lead/crm_lead.json +#. Label of the lead_owner (Link) field in PageType 'CRM Lead' +#: crm/fcrm/pagetype/crm_lead/crm_lead.json msgid "Lead Owner" msgstr "" -#: crm/fcrm/doctype/crm_lead/crm_lead.py:73 +#: crm/fcrm/pagetype/crm_lead/crm_lead.py:73 msgid "Lead Owner cannot be same as the Lead Email Address" msgstr "" -#. Label of a shortcut in the Frappe CRM Workspace -#: crm/fcrm/workspace/frappe_crm/frappe_crm.json +#. Label of a shortcut in the Jingrow CRM Workspace +#: crm/fcrm/workspace/jingrow_crm/jingrow_crm.json msgid "Lead Sources" msgstr "" -#. Label of a shortcut in the Frappe CRM Workspace -#: crm/fcrm/workspace/frappe_crm/frappe_crm.json +#. Label of a shortcut in the Jingrow CRM Workspace +#: crm/fcrm/workspace/jingrow_crm/jingrow_crm.json msgid "Lead Statuses" msgstr "" @@ -3328,8 +3328,8 @@ msgstr "" msgid "Lead to deal conversion pipeline" msgstr "" -#. Label of a shortcut in the Frappe CRM Workspace -#: crm/fcrm/workspace/frappe_crm/frappe_crm.json +#. Label of a shortcut in the Jingrow CRM Workspace +#: crm/fcrm/workspace/jingrow_crm/jingrow_crm.json #: frontend/src/pages/InvalidPage.vue:9 frontend/src/pages/Lead.vue:340 #: frontend/src/pages/MobileLead.vue:291 msgid "Leads" @@ -3345,8 +3345,8 @@ msgstr "" msgid "Learn about conditions" msgstr "" -#. Label of the lft (Int) field in DocType 'CRM Territory' -#: crm/fcrm/doctype/crm_territory/crm_territory.json +#. Label of the lft (Int) field in PageType 'CRM Territory' +#: crm/fcrm/pagetype/crm_territory/crm_territory.json msgid "Left" msgstr "Venstre" @@ -3367,15 +3367,15 @@ msgstr "Liker" msgid "Link" msgstr "" -#. Label of the links (Table) field in DocType 'CRM Call Log' -#: crm/fcrm/doctype/crm_call_log/crm_call_log.json +#. Label of the links (Table) field in PageType 'CRM Call Log' +#: crm/fcrm/pagetype/crm_call_log/crm_call_log.json msgid "Links" msgstr "Lenker" -#. Option for the 'Apply To' (Select) field in DocType 'CRM Form Script' -#. Label of the list_tab (Tab Break) field in DocType 'CRM View Settings' -#: crm/fcrm/doctype/crm_form_script/crm_form_script.json -#: crm/fcrm/doctype/crm_view_settings/crm_view_settings.json +#. Option for the 'Apply To' (Select) field in PageType 'CRM Form Script' +#. Label of the list_tab (Tab Break) field in PageType 'CRM View Settings' +#: crm/fcrm/pagetype/crm_form_script/crm_form_script.json +#: crm/fcrm/pagetype/crm_view_settings/crm_view_settings.json #: frontend/src/components/ViewControls.vue:374 #: frontend/src/components/ViewControls.vue:589 frontend/src/utils/view.js:12 msgid "List" @@ -3385,9 +3385,9 @@ msgstr "" msgid "Listen" msgstr "" -#. Label of the load_default_columns (Check) field in DocType 'CRM View +#. Label of the load_default_columns (Check) field in PageType 'CRM View #. Settings' -#: crm/fcrm/doctype/crm_view_settings/crm_view_settings.json +#: crm/fcrm/pagetype/crm_view_settings/crm_view_settings.json msgid "Load Default Columns" msgstr "" @@ -3403,10 +3403,10 @@ msgstr "Last inn flere" msgid "Loading..." msgstr "Laster inn..." -#. Label of the log_tab (Tab Break) field in DocType 'CRM Deal' -#. Label of the log_tab (Tab Break) field in DocType 'CRM Lead' -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_lead/crm_lead.json +#. Label of the log_tab (Tab Break) field in PageType 'CRM Deal' +#. Label of the log_tab (Tab Break) field in PageType 'CRM Lead' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_lead/crm_lead.json msgid "Log" msgstr "" @@ -3417,28 +3417,28 @@ msgid "Log a Call" msgstr "" #: frontend/src/composables/frappecloud.js:23 -msgid "Login to Frappe Cloud?" +msgid "Login to Jingrow Cloud?" msgstr "" -#. Label of the brand_logo (Attach) field in DocType 'FCRM Settings' -#: crm/fcrm/doctype/fcrm_settings/fcrm_settings.json +#. Label of the brand_logo (Attach) field in PageType 'FCRM Settings' +#: crm/fcrm/pagetype/fcrm_settings/fcrm_settings.json msgid "Logo" msgstr "" -#. Option for the 'Type' (Select) field in DocType 'CRM Deal Status' -#: crm/fcrm/doctype/crm_deal_status/crm_deal_status.json +#. Option for the 'Type' (Select) field in PageType 'CRM Deal Status' +#: crm/fcrm/pagetype/crm_deal_status/crm_deal_status.json msgid "Lost" msgstr "" -#. Label of the lost_notes (Text) field in DocType 'CRM Deal' -#: crm/fcrm/doctype/crm_deal/crm_deal.json +#. Label of the lost_notes (Text) field in PageType 'CRM Deal' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json msgid "Lost Notes" msgstr "" -#. Label of the lost_reason (Link) field in DocType 'CRM Deal' -#. Label of the lost_reason (Data) field in DocType 'CRM Lost Reason' -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_lost_reason/crm_lost_reason.json +#. Label of the lost_reason (Link) field in PageType 'CRM Deal' +#. Label of the lost_reason (Data) field in PageType 'CRM Lost Reason' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_lost_reason/crm_lost_reason.json msgid "Lost Reason" msgstr "" @@ -3464,8 +3464,8 @@ msgstr "" msgid "Lost reason is required" msgstr "" -#. Option for the 'Priority' (Select) field in DocType 'CRM Task' -#: crm/fcrm/doctype/crm_task/crm_task.json +#. Option for the 'Priority' (Select) field in PageType 'CRM Task' +#: crm/fcrm/pagetype/crm_task/crm_task.json msgid "Low" msgstr "" @@ -3542,8 +3542,8 @@ msgstr "" msgid "Mandatory field error: {0}" msgstr "" -#. Option for the 'Telephony Medium' (Select) field in DocType 'CRM Call Log' -#: crm/fcrm/doctype/crm_call_log/crm_call_log.json +#. Option for the 'Telephony Medium' (Select) field in PageType 'CRM Call Log' +#: crm/fcrm/pagetype/crm_call_log/crm_call_log.json msgid "Manual" msgstr "" @@ -3562,25 +3562,25 @@ msgstr "" msgid "May 1, 2025" msgstr "" -#. Label of the medium (Data) field in DocType 'CRM Call Log' -#. Option for the 'Priority' (Select) field in DocType 'CRM Task' -#: crm/fcrm/doctype/crm_call_log/crm_call_log.json -#: crm/fcrm/doctype/crm_task/crm_task.json +#. Label of the medium (Data) field in PageType 'CRM Call Log' +#. Option for the 'Priority' (Select) field in PageType 'CRM Task' +#: crm/fcrm/pagetype/crm_call_log/crm_call_log.json +#: crm/fcrm/pagetype/crm_task/crm_task.json msgid "Medium" msgstr "" -#. Option for the 'Type' (Select) field in DocType 'CRM Notification' -#: crm/fcrm/doctype/crm_notification/crm_notification.json +#. Option for the 'Type' (Select) field in PageType 'CRM Notification' +#: crm/fcrm/pagetype/crm_notification/crm_notification.json msgid "Mention" msgstr "" -#. Label of the message (HTML Editor) field in DocType 'CRM Notification' -#: crm/fcrm/doctype/crm_notification/crm_notification.json +#. Label of the message (HTML Editor) field in PageType 'CRM Notification' +#: crm/fcrm/pagetype/crm_notification/crm_notification.json msgid "Message" msgstr "Melding" -#. Label of the middle_name (Data) field in DocType 'CRM Lead' -#: crm/fcrm/doctype/crm_lead/crm_lead.json +#. Label of the middle_name (Data) field in PageType 'CRM Lead' +#: crm/fcrm/pagetype/crm_lead/crm_lead.json msgid "Middle Name" msgstr "" @@ -3588,10 +3588,10 @@ msgstr "" msgid "Minimize" msgstr "" -#. Label of the mobile_no (Data) field in DocType 'CRM Contacts' -#. Label of the mobile_no (Data) field in DocType 'CRM Lead' -#: crm/fcrm/doctype/crm_contacts/crm_contacts.json -#: crm/fcrm/doctype/crm_lead/crm_lead.json +#. Label of the mobile_no (Data) field in PageType 'CRM Contacts' +#. Label of the mobile_no (Data) field in PageType 'CRM Lead' +#: crm/fcrm/pagetype/crm_contacts/crm_contacts.json +#: crm/fcrm/pagetype/crm_lead/crm_lead.json msgid "Mobile No" msgstr "Mobile No" @@ -3600,8 +3600,8 @@ msgstr "Mobile No" msgid "Mobile No should be a number" msgstr "" -#. Label of the mobile_no (Data) field in DocType 'CRM Telephony Agent' -#: crm/fcrm/doctype/crm_telephony_agent/crm_telephony_agent.json +#. Label of the mobile_no (Data) field in PageType 'CRM Telephony Agent' +#: crm/fcrm/pagetype/crm_telephony_agent/crm_telephony_agent.json msgid "Mobile No." msgstr "" @@ -3623,10 +3623,10 @@ msgstr "" msgid "Mobile no" msgstr "" -#. Option for the 'Weekly Off' (Select) field in DocType 'CRM Holiday List' -#. Option for the 'Workday' (Select) field in DocType 'CRM Service Day' -#: crm/fcrm/doctype/crm_holiday_list/crm_holiday_list.json -#: crm/fcrm/doctype/crm_service_day/crm_service_day.json +#. Option for the 'Weekly Off' (Select) field in PageType 'CRM Holiday List' +#. Option for the 'Workday' (Select) field in PageType 'CRM Service Day' +#: crm/fcrm/pagetype/crm_holiday_list/crm_holiday_list.json +#: crm/fcrm/pagetype/crm_service_day/crm_service_day.json msgid "Monday" msgstr "" @@ -3658,12 +3658,12 @@ msgstr "" msgid "My Open Deals" msgstr "" -#. Label of the title (Data) field in DocType 'CRM Dashboard' -#. Label of the name1 (Data) field in DocType 'CRM Dropdown Item' -#. Label of the brand_name (Data) field in DocType 'FCRM Settings' -#: crm/fcrm/doctype/crm_dashboard/crm_dashboard.json -#: crm/fcrm/doctype/crm_dropdown_item/crm_dropdown_item.json -#: crm/fcrm/doctype/fcrm_settings/fcrm_settings.json +#. Label of the title (Data) field in PageType 'CRM Dashboard' +#. Label of the name1 (Data) field in PageType 'CRM Dropdown Item' +#. Label of the brand_name (Data) field in PageType 'FCRM Settings' +#: crm/fcrm/pagetype/crm_dashboard/crm_dashboard.json +#: crm/fcrm/pagetype/crm_dropdown_item/crm_dropdown_item.json +#: crm/fcrm/pagetype/fcrm_settings/fcrm_settings.json #: frontend/src/components/Settings/AssignmentRules/AssignmentRuleView.vue:51 #: frontend/src/components/Settings/AssignmentRules/AssignmentRuleView.vue:52 #: frontend/src/components/Settings/EmailTemplate/EditEmailTemplate.vue:39 @@ -3680,10 +3680,10 @@ msgstr "" msgid "Name is required" msgstr "" -#. Label of the naming_series (Select) field in DocType 'CRM Deal' -#. Label of the naming_series (Select) field in DocType 'CRM Product' -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_product/crm_product.json +#. Label of the naming_series (Select) field in PageType 'CRM Deal' +#. Label of the naming_series (Select) field in PageType 'CRM Product' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_product/crm_product.json msgid "Naming Series" msgstr "Nummerserie" @@ -3691,15 +3691,15 @@ msgstr "Nummerserie" msgid "Nested conditions" msgstr "" -#. Label of the net_amount (Currency) field in DocType 'CRM Products' -#: crm/fcrm/doctype/crm_products/crm_products.json +#. Label of the net_amount (Currency) field in PageType 'CRM Products' +#: crm/fcrm/pagetype/crm_products/crm_products.json msgid "Net Amount" msgstr "" -#. Label of the net_total (Currency) field in DocType 'CRM Deal' -#. Label of the net_total (Currency) field in DocType 'CRM Lead' -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_lead/crm_lead.json +#. Label of the net_total (Currency) field in PageType 'CRM Deal' +#. Label of the net_total (Currency) field in PageType 'CRM Lead' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_lead/crm_lead.json msgid "Net Total" msgstr "" @@ -3814,8 +3814,8 @@ msgstr "" msgid "Next Quarter" msgstr "" -#. Label of the next_step (Data) field in DocType 'CRM Deal' -#: crm/fcrm/doctype/crm_deal/crm_deal.json +#. Label of the next_step (Data) field in PageType 'CRM Deal' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json msgid "Next Step" msgstr "" @@ -3831,8 +3831,8 @@ msgstr "" msgid "No" msgstr "" -#. Option for the 'Status' (Select) field in DocType 'CRM Call Log' -#: crm/fcrm/doctype/crm_call_log/crm_call_log.json +#. Option for the 'Status' (Select) field in PageType 'CRM Call Log' +#: crm/fcrm/pagetype/crm_call_log/crm_call_log.json msgid "No Answer" msgstr "" @@ -3930,12 +3930,12 @@ msgstr "" msgid "No {0} Found" msgstr "Ingen {0} funnet" -#. Label of the no_of_employees (Select) field in DocType 'CRM Deal' -#. Label of the no_of_employees (Select) field in DocType 'CRM Lead' -#. Label of the no_of_employees (Select) field in DocType 'CRM Organization' -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_lead/crm_lead.json -#: crm/fcrm/doctype/crm_organization/crm_organization.json +#. Label of the no_of_employees (Select) field in PageType 'CRM Deal' +#. Label of the no_of_employees (Select) field in PageType 'CRM Lead' +#. Label of the no_of_employees (Select) field in PageType 'CRM Organization' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_lead/crm_lead.json +#: crm/fcrm/pagetype/crm_organization/crm_organization.json msgid "No. of Employees" msgstr "" @@ -3981,24 +3981,24 @@ msgstr "Ikke som" msgid "Not Saved" msgstr "Ikke lagret" -#: crm/fcrm/doctype/crm_deal/crm_deal.py:272 +#: crm/fcrm/pagetype/crm_deal/crm_deal.py:272 msgid "Not allowed to add contact to Deal" msgstr "" -#: crm/fcrm/doctype/crm_lead/crm_lead.py:408 +#: crm/fcrm/pagetype/crm_lead/crm_lead.py:408 msgid "Not allowed to convert Lead to Deal" msgstr "" -#: crm/fcrm/doctype/crm_deal/crm_deal.py:283 +#: crm/fcrm/pagetype/crm_deal/crm_deal.py:283 msgid "Not allowed to remove contact from Deal" msgstr "" -#: crm/fcrm/doctype/crm_deal/crm_deal.py:294 +#: crm/fcrm/pagetype/crm_deal/crm_deal.py:294 msgid "Not allowed to set primary contact for Deal" msgstr "" -#. Label of the note (Link) field in DocType 'CRM Call Log' -#: crm/fcrm/doctype/crm_call_log/crm_call_log.json +#. Label of the note (Link) field in PageType 'CRM Call Log' +#: crm/fcrm/pagetype/crm_call_log/crm_call_log.json #: frontend/src/components/Layouts/AppSidebar.vue:554 msgid "Note" msgstr "" @@ -4017,22 +4017,22 @@ msgstr "" msgid "Notification" msgstr "" -#. Label of the notification_text (Text) field in DocType 'CRM Notification' -#: crm/fcrm/doctype/crm_notification/crm_notification.json +#. Label of the notification_text (Text) field in PageType 'CRM Notification' +#: crm/fcrm/pagetype/crm_notification/crm_notification.json msgid "Notification Text" msgstr "" -#. Label of the notification_type_doc (Dynamic Link) field in DocType 'CRM +#. Label of the notification_type_pg (Dynamic Link) field in PageType 'CRM #. Notification' -#: crm/fcrm/doctype/crm_notification/crm_notification.json -msgid "Notification Type Doc" +#: crm/fcrm/pagetype/crm_notification/crm_notification.json +msgid "Notification Type Pg" msgstr "" -#. Label of the notification_type_doctype (Link) field in DocType 'CRM +#. Label of the notification_type_pagetype (Link) field in PageType 'CRM #. Notification' -#: crm/fcrm/doctype/crm_notification/crm_notification.json -msgid "Notification Type Doctype" -msgstr "Varslingstype-DocType" +#: crm/fcrm/pagetype/crm_notification/crm_notification.json +msgid "Notification Type Pagetype" +msgstr "Varslingstype-PageType" #: frontend/src/components/Layouts/AppSidebar.vue:13 #: frontend/src/components/Mobile/MobileSidebar.vue:23 @@ -4041,8 +4041,8 @@ msgstr "Varslingstype-DocType" msgid "Notifications" msgstr "Varsler" -#. Label of the number (Data) field in DocType 'CRM Telephony Phone' -#: crm/fcrm/doctype/crm_telephony_phone/crm_telephony_phone.json +#. Label of the number (Data) field in PageType 'CRM Telephony Phone' +#: crm/fcrm/pagetype/crm_telephony_phone/crm_telephony_phone.json msgid "Number" msgstr "" @@ -4064,18 +4064,18 @@ msgstr "" msgid "Old Condition" msgstr "" -#. Label of the old_parent (Link) field in DocType 'CRM Territory' -#: crm/fcrm/doctype/crm_territory/crm_territory.json +#. Label of the old_parent (Link) field in PageType 'CRM Territory' +#: crm/fcrm/pagetype/crm_territory/crm_territory.json msgid "Old Parent" msgstr "" -#. Option for the 'Type' (Select) field in DocType 'CRM Deal Status' -#: crm/fcrm/doctype/crm_deal_status/crm_deal_status.json +#. Option for the 'Type' (Select) field in PageType 'CRM Deal Status' +#: crm/fcrm/pagetype/crm_deal_status/crm_deal_status.json msgid "On Hold" msgstr "" -#. Option for the 'Type' (Select) field in DocType 'CRM Deal Status' -#: crm/fcrm/doctype/crm_deal_status/crm_deal_status.json +#. Option for the 'Type' (Select) field in PageType 'CRM Deal Status' +#: crm/fcrm/pagetype/crm_deal_status/crm_deal_status.json msgid "Ongoing" msgstr "" @@ -4088,13 +4088,13 @@ msgstr "" msgid "Only image files are allowed" msgstr "" -#: crm/fcrm/doctype/crm_deal/crm_deal.py:60 -#: crm/fcrm/doctype/crm_telephony_agent/crm_telephony_agent.py:23 +#: crm/fcrm/pagetype/crm_deal/crm_deal.py:60 +#: crm/fcrm/pagetype/crm_telephony_agent/crm_telephony_agent.py:23 msgid "Only one {0} can be set as primary." msgstr "Bare én {0} kan angis som primær." -#. Option for the 'Type' (Select) field in DocType 'CRM Deal Status' -#: crm/fcrm/doctype/crm_deal_status/crm_deal_status.json +#. Option for the 'Type' (Select) field in PageType 'CRM Deal Status' +#: crm/fcrm/pagetype/crm_deal_status/crm_deal_status.json msgid "Open" msgstr "" @@ -4108,13 +4108,13 @@ msgstr "" msgid "Open Lead" msgstr "" -#: crm/fcrm/doctype/crm_deal/crm_deal.js:6 -#: crm/fcrm/doctype/crm_lead/crm_lead.js:6 +#: crm/fcrm/pagetype/crm_deal/crm_deal.js:6 +#: crm/fcrm/pagetype/crm_lead/crm_lead.js:6 msgid "Open in Portal" msgstr "" -#. Label of the open_in_new_window (Check) field in DocType 'CRM Dropdown Item' -#: crm/fcrm/doctype/crm_dropdown_item/crm_dropdown_item.json +#. Label of the open_in_new_window (Check) field in PageType 'CRM Dropdown Item' +#: crm/fcrm/pagetype/crm_dropdown_item/crm_dropdown_item.json msgid "Open in new window" msgstr "" @@ -4136,17 +4136,17 @@ msgstr "Alternativer" msgid "Or create leads manually" msgstr "" -#. Label of the order_by_tab (Tab Break) field in DocType 'CRM View Settings' -#. Label of the order_by (Code) field in DocType 'CRM View Settings' -#: crm/fcrm/doctype/crm_view_settings/crm_view_settings.json +#. Label of the order_by_tab (Tab Break) field in PageType 'CRM View Settings' +#. Label of the order_by (Code) field in PageType 'CRM View Settings' +#: crm/fcrm/pagetype/crm_view_settings/crm_view_settings.json msgid "Order By" msgstr "" -#. Label of the organization (Link) field in DocType 'CRM Deal' -#. Label of the organization_tab (Tab Break) field in DocType 'CRM Deal' -#. Label of the organization (Data) field in DocType 'CRM Lead' -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_lead/crm_lead.json +#. Label of the organization (Link) field in PageType 'CRM Deal' +#. Label of the organization_tab (Tab Break) field in PageType 'CRM Deal' +#. Label of the organization (Data) field in PageType 'CRM Lead' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_lead/crm_lead.json #: frontend/src/components/Layouts/AppSidebar.vue:553 #: frontend/src/components/Modals/ConvertToDealModal.vue:25 #: frontend/src/pages/Contact.vue:494 frontend/src/pages/MobileContact.vue:502 @@ -4158,22 +4158,22 @@ msgstr "" msgid "Organization" msgstr "" -#. Label of the organization_details_section (Section Break) field in DocType +#. Label of the organization_details_section (Section Break) field in PageType #. 'CRM Deal' -#: crm/fcrm/doctype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_deal/crm_deal.json msgid "Organization Details" msgstr "" -#. Label of the organization_logo (Attach Image) field in DocType 'CRM +#. Label of the organization_logo (Attach Image) field in PageType 'CRM #. Organization' -#: crm/fcrm/doctype/crm_organization/crm_organization.json +#: crm/fcrm/pagetype/crm_organization/crm_organization.json msgid "Organization Logo" msgstr "" -#. Label of the organization_name (Data) field in DocType 'CRM Deal' -#. Label of the organization_name (Data) field in DocType 'CRM Organization' -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_organization/crm_organization.json +#. Label of the organization_name (Data) field in PageType 'CRM Deal' +#. Label of the organization_name (Data) field in PageType 'CRM Organization' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_organization/crm_organization.json msgid "Organization Name" msgstr "" @@ -4181,8 +4181,8 @@ msgstr "" msgid "Organization logo" msgstr "" -#. Label of a shortcut in the Frappe CRM Workspace -#: crm/fcrm/workspace/frappe_crm/frappe_crm.json +#. Label of a shortcut in the Jingrow CRM Workspace +#: crm/fcrm/workspace/jingrow_crm/jingrow_crm.json #: frontend/src/pages/MobileOrganization.vue:205 #: frontend/src/pages/Organization.vue:234 msgid "Organizations" @@ -4196,8 +4196,8 @@ msgstr "" msgid "Other features" msgstr "" -#. Label of the organization_tab (Tab Break) field in DocType 'CRM Lead' -#: crm/fcrm/doctype/crm_lead/crm_lead.json +#. Label of the organization_tab (Tab Break) field in PageType 'CRM Lead' +#: crm/fcrm/pagetype/crm_lead/crm_lead.json msgid "Others" msgstr "" @@ -4205,13 +4205,13 @@ msgstr "" msgid "Outbound Call" msgstr "" -#. Option for the 'Type' (Select) field in DocType 'CRM Call Log' -#: crm/fcrm/doctype/crm_call_log/crm_call_log.json +#. Option for the 'Type' (Select) field in PageType 'CRM Call Log' +#: crm/fcrm/pagetype/crm_call_log/crm_call_log.json msgid "Outgoing" msgstr "" -#. Label of the log_owner (Link) field in DocType 'CRM Status Change Log' -#: crm/fcrm/doctype/crm_status_change_log/crm_status_change_log.json +#. Label of the log_owner (Link) field in PageType 'CRM Status Change Log' +#: crm/fcrm/pagetype/crm_status_change_log/crm_status_change_log.json msgid "Owner" msgstr "" @@ -4219,8 +4219,8 @@ msgstr "" msgid "Owner: {0}" msgstr "" -#. Label of the parent_crm_territory (Link) field in DocType 'CRM Territory' -#: crm/fcrm/doctype/crm_territory/crm_territory.json +#. Label of the parent_crm_territory (Link) field in PageType 'CRM Territory' +#: crm/fcrm/pagetype/crm_territory/crm_territory.json msgid "Parent CRM Territory" msgstr "" @@ -4251,8 +4251,8 @@ msgstr "" msgid "Payment Reminder from Frappé - (#{{ name }})" msgstr "" -#. Option for the 'Status' (Select) field in DocType 'CRM Invitation' -#: crm/fcrm/doctype/crm_invitation/crm_invitation.json +#. Option for the 'Status' (Select) field in PageType 'CRM Invitation' +#: crm/fcrm/pagetype/crm_invitation/crm_invitation.json msgid "Pending" msgstr "" @@ -4264,10 +4264,10 @@ msgstr "" msgid "Period" msgstr "" -#. Label of the person_section (Section Break) field in DocType 'CRM Deal' -#. Label of the person_tab (Tab Break) field in DocType 'CRM Lead' -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_lead/crm_lead.json +#. Label of the person_section (Section Break) field in PageType 'CRM Deal' +#. Label of the person_tab (Tab Break) field in PageType 'CRM Lead' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_lead/crm_lead.json msgid "Person" msgstr "" @@ -4275,19 +4275,19 @@ msgstr "" msgid "Personal Settings" msgstr "" -#. Label of the phone (Data) field in DocType 'CRM Contacts' -#. Label of the phone (Data) field in DocType 'CRM Lead' -#. Option for the 'Device' (Select) field in DocType 'CRM Telephony Agent' -#: crm/fcrm/doctype/crm_contacts/crm_contacts.json -#: crm/fcrm/doctype/crm_lead/crm_lead.json -#: crm/fcrm/doctype/crm_telephony_agent/crm_telephony_agent.json +#. Label of the phone (Data) field in PageType 'CRM Contacts' +#. Label of the phone (Data) field in PageType 'CRM Lead' +#. Option for the 'Device' (Select) field in PageType 'CRM Telephony Agent' +#: crm/fcrm/pagetype/crm_contacts/crm_contacts.json +#: crm/fcrm/pagetype/crm_lead/crm_lead.json +#: crm/fcrm/pagetype/crm_telephony_agent/crm_telephony_agent.json #: frontend/src/pages/MobileOrganization.vue:495 #: frontend/src/pages/Organization.vue:516 msgid "Phone" msgstr "" -#. Label of the phone_nos (Table) field in DocType 'CRM Telephony Agent' -#: crm/fcrm/doctype/crm_telephony_agent/crm_telephony_agent.json +#. Label of the phone_nos (Table) field in PageType 'CRM Telephony Agent' +#: crm/fcrm/pagetype/crm_telephony_agent/crm_telephony_agent.json msgid "Phone Numbers" msgstr "" @@ -4295,8 +4295,8 @@ msgstr "" msgid "Pin View" msgstr "" -#. Label of the pinned (Check) field in DocType 'CRM View Settings' -#: crm/fcrm/doctype/crm_view_settings/crm_view_settings.json +#. Label of the pinned (Check) field in PageType 'CRM View Settings' +#: crm/fcrm/pagetype/crm_view_settings/crm_view_settings.json msgid "Pinned" msgstr "" @@ -4346,7 +4346,7 @@ msgstr "" msgid "Please select an existing organization" msgstr "" -#: crm/fcrm/doctype/helpdesk_crm_settings/helpdesk_crm_settings.py:126 +#: crm/fcrm/pagetype/helpdesk_crm_settings/helpdesk_crm_settings.py:126 msgid "Please set Email Address" msgstr "Angi e-postadresse" @@ -4354,18 +4354,18 @@ msgstr "Angi e-postadresse" msgid "Please setup Exotel intergration" msgstr "" -#: crm/fcrm/doctype/crm_deal/crm_deal.py:181 +#: crm/fcrm/pagetype/crm_deal/crm_deal.py:181 msgid "Please specify a reason for losing the deal." msgstr "" -#: crm/fcrm/doctype/crm_deal/crm_deal.py:183 +#: crm/fcrm/pagetype/crm_deal/crm_deal.py:183 msgid "Please specify the reason for losing the deal." msgstr "" -#. Label of the position (Int) field in DocType 'CRM Deal Status' -#. Label of the position (Int) field in DocType 'CRM Lead Status' -#: crm/fcrm/doctype/crm_deal_status/crm_deal_status.json -#: crm/fcrm/doctype/crm_lead_status/crm_lead_status.json +#. Label of the position (Int) field in PageType 'CRM Deal Status' +#. Label of the position (Int) field in PageType 'CRM Lead Status' +#: crm/fcrm/pagetype/crm_deal_status/crm_deal_status.json +#: crm/fcrm/pagetype/crm_lead_status/crm_lead_status.json msgid "Position" msgstr "" @@ -4373,18 +4373,18 @@ msgstr "" msgid "Primary" msgstr "" -#. Label of the email (Data) field in DocType 'CRM Deal' -#: crm/fcrm/doctype/crm_deal/crm_deal.json +#. Label of the email (Data) field in PageType 'CRM Deal' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json msgid "Primary Email" msgstr "Primær e-postadresse" -#. Label of the mobile_no (Data) field in DocType 'CRM Deal' -#: crm/fcrm/doctype/crm_deal/crm_deal.json +#. Label of the mobile_no (Data) field in PageType 'CRM Deal' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json msgid "Primary Mobile No" msgstr "" -#. Label of the phone (Data) field in DocType 'CRM Deal' -#: crm/fcrm/doctype/crm_deal/crm_deal.json +#. Label of the phone (Data) field in PageType 'CRM Deal' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json msgid "Primary Phone" msgstr "Primært telefonnummer" @@ -4392,57 +4392,57 @@ msgstr "Primært telefonnummer" msgid "Primary contact set" msgstr "" -#. Label of the priorities (Table) field in DocType 'CRM Service Level +#. Label of the priorities (Table) field in PageType 'CRM Service Level #. Agreement' -#: crm/fcrm/doctype/crm_service_level_agreement/crm_service_level_agreement.json +#: crm/fcrm/pagetype/crm_service_level_agreement/crm_service_level_agreement.json msgid "Priorities" msgstr "" -#. Label of the priority (Link) field in DocType 'CRM Service Level Priority' -#. Label of the priority (Select) field in DocType 'CRM Task' -#: crm/fcrm/doctype/crm_service_level_priority/crm_service_level_priority.json -#: crm/fcrm/doctype/crm_task/crm_task.json +#. Label of the priority (Link) field in PageType 'CRM Service Level Priority' +#. Label of the priority (Select) field in PageType 'CRM Task' +#: crm/fcrm/pagetype/crm_service_level_priority/crm_service_level_priority.json +#: crm/fcrm/pagetype/crm_task/crm_task.json #: frontend/src/components/Settings/AssignmentRules/AssignmentRuleView.vue:64 #: frontend/src/components/Settings/AssignmentRules/AssignmentRulesList.vue:20 msgid "Priority" msgstr "" -#. Label of the private (Check) field in DocType 'CRM Dashboard' -#: crm/fcrm/doctype/crm_dashboard/crm_dashboard.json +#. Label of the private (Check) field in PageType 'CRM Dashboard' +#: crm/fcrm/pagetype/crm_dashboard/crm_dashboard.json #: frontend/src/components/FilesUploader/FilesUploaderArea.vue:89 msgid "Private" msgstr "Privat" -#. Label of the probability (Percent) field in DocType 'CRM Deal' -#. Label of the probability (Percent) field in DocType 'CRM Deal Status' -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_deal_status/crm_deal_status.json +#. Label of the probability (Percent) field in PageType 'CRM Deal' +#. Label of the probability (Percent) field in PageType 'CRM Deal Status' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_deal_status/crm_deal_status.json msgid "Probability" msgstr "" -#. Label of the product_code (Link) field in DocType 'CRM Products' -#: crm/fcrm/doctype/crm_products/crm_products.json +#. Label of the product_code (Link) field in PageType 'CRM Products' +#: crm/fcrm/pagetype/crm_products/crm_products.json msgid "Product" msgstr "" -#. Label of the product_code (Data) field in DocType 'CRM Product' -#: crm/fcrm/doctype/crm_product/crm_product.json +#. Label of the product_code (Data) field in PageType 'CRM Product' +#: crm/fcrm/pagetype/crm_product/crm_product.json msgid "Product Code" msgstr "" -#. Label of the product_name (Data) field in DocType 'CRM Product' -#. Label of the product_name (Data) field in DocType 'CRM Products' -#: crm/fcrm/doctype/crm_product/crm_product.json -#: crm/fcrm/doctype/crm_products/crm_products.json +#. Label of the product_name (Data) field in PageType 'CRM Product' +#. Label of the product_name (Data) field in PageType 'CRM Products' +#: crm/fcrm/pagetype/crm_product/crm_product.json +#: crm/fcrm/pagetype/crm_products/crm_products.json msgid "Product Name" msgstr "" -#. Label of the products_tab (Tab Break) field in DocType 'CRM Deal' -#. Label of the products (Table) field in DocType 'CRM Deal' -#. Label of the products_tab (Tab Break) field in DocType 'CRM Lead' -#. Label of the products (Table) field in DocType 'CRM Lead' -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_lead/crm_lead.json +#. Label of the products_tab (Tab Break) field in PageType 'CRM Deal' +#. Label of the products (Table) field in PageType 'CRM Deal' +#. Label of the products_tab (Tab Break) field in PageType 'CRM Lead' +#. Label of the products (Table) field in PageType 'CRM Lead' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_lead/crm_lead.json msgid "Products" msgstr "" @@ -4459,8 +4459,8 @@ msgstr "" msgid "Projected vs actual revenue based on deal probability" msgstr "" -#. Label of the public (Check) field in DocType 'CRM View Settings' -#: crm/fcrm/doctype/crm_view_settings/crm_view_settings.json +#. Label of the public (Check) field in PageType 'CRM View Settings' +#: crm/fcrm/pagetype/crm_view_settings/crm_view_settings.json msgid "Public" msgstr "Offentlig" @@ -4472,23 +4472,23 @@ msgstr "" msgid "Public view" msgstr "" -#. Label of the qty (Float) field in DocType 'CRM Products' -#: crm/fcrm/doctype/crm_products/crm_products.json +#. Label of the qty (Float) field in PageType 'CRM Products' +#: crm/fcrm/pagetype/crm_products/crm_products.json msgid "Quantity" msgstr "" -#. Option for the 'Status' (Select) field in DocType 'CRM Call Log' -#: crm/fcrm/doctype/crm_call_log/crm_call_log.json +#. Option for the 'Status' (Select) field in PageType 'CRM Call Log' +#: crm/fcrm/pagetype/crm_call_log/crm_call_log.json msgid "Queued" msgstr "I kø" -#. Option for the 'Type' (Select) field in DocType 'CRM Fields Layout' -#: crm/fcrm/doctype/crm_fields_layout/crm_fields_layout.json +#. Option for the 'Type' (Select) field in PageType 'CRM Fields Layout' +#: crm/fcrm/pagetype/crm_fields_layout/crm_fields_layout.json msgid "Quick Entry" msgstr "" -#. Option for the 'Type' (Select) field in DocType 'CRM Global Settings' -#: crm/fcrm/doctype/crm_global_settings/crm_global_settings.json +#. Option for the 'Type' (Select) field in PageType 'CRM Global Settings' +#: crm/fcrm/pagetype/crm_global_settings/crm_global_settings.json msgid "Quick Filters" msgstr "" @@ -4500,13 +4500,13 @@ msgstr "" msgid "Quick entry layout" msgstr "" -#. Label of the rate (Currency) field in DocType 'CRM Products' -#: crm/fcrm/doctype/crm_products/crm_products.json +#. Label of the rate (Currency) field in PageType 'CRM Products' +#: crm/fcrm/pagetype/crm_products/crm_products.json msgid "Rate" msgstr "" -#. Label of the read (Check) field in DocType 'CRM Notification' -#: crm/fcrm/doctype/crm_notification/crm_notification.json +#. Label of the read (Check) field in PageType 'CRM Notification' +#: crm/fcrm/pagetype/crm_notification/crm_notification.json msgid "Read" msgstr "Lest" @@ -4514,48 +4514,48 @@ msgstr "Lest" msgid "Reason" msgstr "" -#. Label of the record_calls (Check) field in DocType 'CRM Twilio Settings' -#: crm/fcrm/doctype/crm_twilio_settings/crm_twilio_settings.json +#. Label of the record_calls (Check) field in PageType 'CRM Twilio Settings' +#: crm/fcrm/pagetype/crm_twilio_settings/crm_twilio_settings.json msgid "Record Calls" msgstr "" -#. Label of the record_call (Check) field in DocType 'CRM Exotel Settings' -#: crm/fcrm/doctype/crm_exotel_settings/crm_exotel_settings.json +#. Label of the record_call (Check) field in PageType 'CRM Exotel Settings' +#: crm/fcrm/pagetype/crm_exotel_settings/crm_exotel_settings.json msgid "Record Outgoing Calls" msgstr "" -#. Label of the recording_url (Data) field in DocType 'CRM Call Log' -#: crm/fcrm/doctype/crm_call_log/crm_call_log.json +#. Label of the recording_url (Data) field in PageType 'CRM Call Log' +#: crm/fcrm/pagetype/crm_call_log/crm_call_log.json msgid "Recording URL" msgstr "" -#. Label of the reference_name (Dynamic Link) field in DocType 'CRM +#. Label of the reference_name (Dynamic Link) field in PageType 'CRM #. Notification' -#. Label of the reference_docname (Dynamic Link) field in DocType 'CRM Task' -#. Label of the reference_docname (Dynamic Link) field in DocType 'FCRM Note' -#: crm/fcrm/doctype/crm_notification/crm_notification.json -#: crm/fcrm/doctype/crm_task/crm_task.json -#: crm/fcrm/doctype/fcrm_note/fcrm_note.json -msgid "Reference Doc" +#. Label of the reference_docname (Dynamic Link) field in PageType 'CRM Task' +#. Label of the reference_docname (Dynamic Link) field in PageType 'FCRM Note' +#: crm/fcrm/pagetype/crm_notification/crm_notification.json +#: crm/fcrm/pagetype/crm_task/crm_task.json +#: crm/fcrm/pagetype/fcrm_note/fcrm_note.json +msgid "Reference Pg" msgstr "" -#. Label of the reference_doctype (Link) field in DocType 'CRM Notification' -#: crm/fcrm/doctype/crm_notification/crm_notification.json -msgid "Reference Doctype" -msgstr "Referanse-DocType" +#. Label of the reference_pagetype (Link) field in PageType 'CRM Notification' +#: crm/fcrm/pagetype/crm_notification/crm_notification.json +msgid "Reference Pagetype" +msgstr "Referanse-PageType" -#. Label of the reference_doctype (Link) field in DocType 'CRM Call Log' -#. Label of the reference_doctype (Link) field in DocType 'CRM Task' -#. Label of the reference_doctype (Link) field in DocType 'FCRM Note' -#: crm/fcrm/doctype/crm_call_log/crm_call_log.json -#: crm/fcrm/doctype/crm_task/crm_task.json -#: crm/fcrm/doctype/fcrm_note/fcrm_note.json +#. Label of the reference_pagetype (Link) field in PageType 'CRM Call Log' +#. Label of the reference_pagetype (Link) field in PageType 'CRM Task' +#. Label of the reference_pagetype (Link) field in PageType 'FCRM Note' +#: crm/fcrm/pagetype/crm_call_log/crm_call_log.json +#: crm/fcrm/pagetype/crm_task/crm_task.json +#: crm/fcrm/pagetype/fcrm_note/fcrm_note.json msgid "Reference Document Type" -msgstr "Referanse-DocType" +msgstr "Referanse-PageType" -#. Label of the reference_docname (Dynamic Link) field in DocType 'CRM Call +#. Label of the reference_docname (Dynamic Link) field in PageType 'CRM Call #. Log' -#: crm/fcrm/doctype/crm_call_log/crm_call_log.json +#: crm/fcrm/pagetype/crm_call_log/crm_call_log.json msgid "Reference Name" msgstr "" @@ -4625,8 +4625,8 @@ msgstr "Svar alle" msgid "Report an Issue" msgstr "" -#. Option for the 'Type' (Select) field in DocType 'CRM Fields Layout' -#: crm/fcrm/doctype/crm_fields_layout/crm_fields_layout.json +#. Option for the 'Type' (Select) field in PageType 'CRM Fields Layout' +#: crm/fcrm/pagetype/crm_fields_layout/crm_fields_layout.json msgid "Required Fields" msgstr "" @@ -4642,7 +4642,7 @@ msgstr "" msgid "Reset Changes" msgstr "Tilbakestill endringer" -#: crm/fcrm/doctype/erpnext_crm_settings/erpnext_crm_settings.js:7 +#: crm/fcrm/pagetype/erpnext_crm_settings/erpnext_crm_settings.js:7 msgid "Reset ERPNext Form Script" msgstr "Tilbakestill ERPNext skjemaskript" @@ -4654,35 +4654,35 @@ msgstr "" msgid "Reset to default" msgstr "Tilbakestill til standardinnstilling" -#. Label of the response_by (Datetime) field in DocType 'CRM Deal' -#. Label of the response_by (Datetime) field in DocType 'CRM Lead' -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_lead/crm_lead.json +#. Label of the response_by (Datetime) field in PageType 'CRM Deal' +#. Label of the response_by (Datetime) field in PageType 'CRM Lead' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_lead/crm_lead.json msgid "Response By" msgstr "" -#. Label of the response_details_section (Section Break) field in DocType 'CRM +#. Label of the response_details_section (Section Break) field in PageType 'CRM #. Deal' -#. Label of the response_details_section (Section Break) field in DocType 'CRM +#. Label of the response_details_section (Section Break) field in PageType 'CRM #. Lead' -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_lead/crm_lead.json +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_lead/crm_lead.json msgid "Response Details" msgstr "" -#. Label of the section_break_ufaf (Section Break) field in DocType 'CRM +#. Label of the section_break_ufaf (Section Break) field in PageType 'CRM #. Service Level Agreement' -#: crm/fcrm/doctype/crm_service_level_agreement/crm_service_level_agreement.json +#: crm/fcrm/pagetype/crm_service_level_agreement/crm_service_level_agreement.json msgid "Response and Follow Up" msgstr "" -#: crm/fcrm/doctype/fcrm_settings/fcrm_settings.js:14 +#: crm/fcrm/pagetype/fcrm_settings/fcrm_settings.js:14 msgid "Restore" msgstr "Gjenopprett" -#. Label of the restore_defaults (Button) field in DocType 'FCRM Settings' -#: crm/fcrm/doctype/fcrm_settings/fcrm_settings.js:13 -#: crm/fcrm/doctype/fcrm_settings/fcrm_settings.json +#. Label of the restore_defaults (Button) field in PageType 'FCRM Settings' +#: crm/fcrm/pagetype/fcrm_settings/fcrm_settings.js:13 +#: crm/fcrm/pagetype/fcrm_settings/fcrm_settings.json msgid "Restore Defaults" msgstr "" @@ -4699,13 +4699,13 @@ msgstr "" msgid "Rich Text" msgstr "Rik tekst" -#. Label of the rgt (Int) field in DocType 'CRM Territory' -#: crm/fcrm/doctype/crm_territory/crm_territory.json +#. Label of the rgt (Int) field in PageType 'CRM Territory' +#: crm/fcrm/pagetype/crm_territory/crm_territory.json msgid "Right" msgstr "Høyre" -#. Option for the 'Status' (Select) field in DocType 'CRM Call Log' -#: crm/fcrm/doctype/crm_call_log/crm_call_log.json +#. Option for the 'Status' (Select) field in PageType 'CRM Call Log' +#: crm/fcrm/pagetype/crm_call_log/crm_call_log.json msgid "Ringing" msgstr "" @@ -4714,55 +4714,55 @@ msgstr "" msgid "Ringing..." msgstr "" -#. Label of the role (Select) field in DocType 'CRM Invitation' -#: crm/fcrm/doctype/crm_invitation/crm_invitation.json +#. Label of the role (Select) field in PageType 'CRM Invitation' +#: crm/fcrm/pagetype/crm_invitation/crm_invitation.json #: frontend/src/components/Modals/AddExistingUserModal.vue:46 msgid "Role" msgstr "Rolle" -#. Option for the 'Type' (Select) field in DocType 'CRM Dropdown Item' -#. Label of the route (Data) field in DocType 'CRM Dropdown Item' -#: crm/fcrm/doctype/crm_dropdown_item/crm_dropdown_item.json +#. Option for the 'Type' (Select) field in PageType 'CRM Dropdown Item' +#. Label of the route (Data) field in PageType 'CRM Dropdown Item' +#: crm/fcrm/pagetype/crm_dropdown_item/crm_dropdown_item.json msgid "Route" msgstr "" -#. Label of the route_name (Data) field in DocType 'CRM View Settings' -#: crm/fcrm/doctype/crm_view_settings/crm_view_settings.json +#. Label of the route_name (Data) field in PageType 'CRM View Settings' +#: crm/fcrm/pagetype/crm_view_settings/crm_view_settings.json msgid "Route Name" msgstr "" -#. Label of the rows (Code) field in DocType 'CRM View Settings' -#: crm/fcrm/doctype/crm_view_settings/crm_view_settings.json +#. Label of the rows (Code) field in PageType 'CRM View Settings' +#: crm/fcrm/pagetype/crm_view_settings/crm_view_settings.json msgid "Rows" msgstr "" -#. Label of the sla_tab (Tab Break) field in DocType 'CRM Deal' -#. Label of the sla (Link) field in DocType 'CRM Deal' -#. Label of the sla_tab (Tab Break) field in DocType 'CRM Lead' -#. Label of the sla (Link) field in DocType 'CRM Lead' -#. Label of a shortcut in the Frappe CRM Workspace -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_lead/crm_lead.json -#: crm/fcrm/workspace/frappe_crm/frappe_crm.json +#. Label of the sla_tab (Tab Break) field in PageType 'CRM Deal' +#. Label of the sla (Link) field in PageType 'CRM Deal' +#. Label of the sla_tab (Tab Break) field in PageType 'CRM Lead' +#. Label of the sla (Link) field in PageType 'CRM Lead' +#. Label of a shortcut in the Jingrow CRM Workspace +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_lead/crm_lead.json +#: crm/fcrm/workspace/jingrow_crm/jingrow_crm.json msgid "SLA" msgstr "" -#. Label of the sla_creation (Datetime) field in DocType 'CRM Deal' -#. Label of the sla_creation (Datetime) field in DocType 'CRM Lead' -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_lead/crm_lead.json +#. Label of the sla_creation (Datetime) field in PageType 'CRM Deal' +#. Label of the sla_creation (Datetime) field in PageType 'CRM Lead' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_lead/crm_lead.json msgid "SLA Creation" msgstr "" -#. Label of the sla_name (Data) field in DocType 'CRM Service Level Agreement' -#: crm/fcrm/doctype/crm_service_level_agreement/crm_service_level_agreement.json +#. Label of the sla_name (Data) field in PageType 'CRM Service Level Agreement' +#: crm/fcrm/pagetype/crm_service_level_agreement/crm_service_level_agreement.json msgid "SLA Name" msgstr "" -#. Label of the sla_status (Select) field in DocType 'CRM Deal' -#. Label of the sla_status (Select) field in DocType 'CRM Lead' -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_lead/crm_lead.json +#. Label of the sla_status (Select) field in PageType 'CRM Deal' +#. Label of the sla_status (Select) field in PageType 'CRM Lead' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_lead/crm_lead.json msgid "SLA Status" msgstr "" @@ -4771,57 +4771,57 @@ msgid "SUBJECT" msgstr "" #. Name of a role -#. Option for the 'Role' (Select) field in DocType 'CRM Invitation' -#: crm/fcrm/doctype/crm_call_log/crm_call_log.json -#: crm/fcrm/doctype/crm_communication_status/crm_communication_status.json -#: crm/fcrm/doctype/crm_dashboard/crm_dashboard.json -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_deal_status/crm_deal_status.json -#: crm/fcrm/doctype/crm_exotel_settings/crm_exotel_settings.json -#: crm/fcrm/doctype/crm_form_script/crm_form_script.json -#: crm/fcrm/doctype/crm_global_settings/crm_global_settings.json -#: crm/fcrm/doctype/crm_holiday_list/crm_holiday_list.json -#: crm/fcrm/doctype/crm_industry/crm_industry.json -#: crm/fcrm/doctype/crm_invitation/crm_invitation.json -#: crm/fcrm/doctype/crm_lead/crm_lead.json -#: crm/fcrm/doctype/crm_lead_source/crm_lead_source.json -#: crm/fcrm/doctype/crm_lead_status/crm_lead_status.json -#: crm/fcrm/doctype/crm_lost_reason/crm_lost_reason.json -#: crm/fcrm/doctype/crm_notification/crm_notification.json -#: crm/fcrm/doctype/crm_organization/crm_organization.json -#: crm/fcrm/doctype/crm_service_level_agreement/crm_service_level_agreement.json -#: crm/fcrm/doctype/crm_task/crm_task.json -#: crm/fcrm/doctype/crm_territory/crm_territory.json -#: crm/fcrm/doctype/crm_twilio_settings/crm_twilio_settings.json -#: crm/fcrm/doctype/crm_view_settings/crm_view_settings.json -#: crm/fcrm/doctype/erpnext_crm_settings/erpnext_crm_settings.json -#: crm/fcrm/doctype/fcrm_note/fcrm_note.json -#: crm/fcrm/doctype/fcrm_settings/fcrm_settings.json -#: crm/fcrm/doctype/helpdesk_crm_settings/helpdesk_crm_settings.json +#. Option for the 'Role' (Select) field in PageType 'CRM Invitation' +#: crm/fcrm/pagetype/crm_call_log/crm_call_log.json +#: crm/fcrm/pagetype/crm_communication_status/crm_communication_status.json +#: crm/fcrm/pagetype/crm_dashboard/crm_dashboard.json +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_deal_status/crm_deal_status.json +#: crm/fcrm/pagetype/crm_exotel_settings/crm_exotel_settings.json +#: crm/fcrm/pagetype/crm_form_script/crm_form_script.json +#: crm/fcrm/pagetype/crm_global_settings/crm_global_settings.json +#: crm/fcrm/pagetype/crm_holiday_list/crm_holiday_list.json +#: crm/fcrm/pagetype/crm_industry/crm_industry.json +#: crm/fcrm/pagetype/crm_invitation/crm_invitation.json +#: crm/fcrm/pagetype/crm_lead/crm_lead.json +#: crm/fcrm/pagetype/crm_lead_source/crm_lead_source.json +#: crm/fcrm/pagetype/crm_lead_status/crm_lead_status.json +#: crm/fcrm/pagetype/crm_lost_reason/crm_lost_reason.json +#: crm/fcrm/pagetype/crm_notification/crm_notification.json +#: crm/fcrm/pagetype/crm_organization/crm_organization.json +#: crm/fcrm/pagetype/crm_service_level_agreement/crm_service_level_agreement.json +#: crm/fcrm/pagetype/crm_task/crm_task.json +#: crm/fcrm/pagetype/crm_territory/crm_territory.json +#: crm/fcrm/pagetype/crm_twilio_settings/crm_twilio_settings.json +#: crm/fcrm/pagetype/crm_view_settings/crm_view_settings.json +#: crm/fcrm/pagetype/erpnext_crm_settings/erpnext_crm_settings.json +#: crm/fcrm/pagetype/fcrm_note/fcrm_note.json +#: crm/fcrm/pagetype/fcrm_settings/fcrm_settings.json +#: crm/fcrm/pagetype/helpdesk_crm_settings/helpdesk_crm_settings.json msgid "Sales Manager" msgstr "Salgsleder" #. Name of a role -#. Option for the 'Role' (Select) field in DocType 'CRM Invitation' -#: crm/fcrm/doctype/crm_call_log/crm_call_log.json -#: crm/fcrm/doctype/crm_communication_status/crm_communication_status.json -#: crm/fcrm/doctype/crm_dashboard/crm_dashboard.json -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_deal_status/crm_deal_status.json -#: crm/fcrm/doctype/crm_global_settings/crm_global_settings.json -#: crm/fcrm/doctype/crm_holiday_list/crm_holiday_list.json -#: crm/fcrm/doctype/crm_industry/crm_industry.json -#: crm/fcrm/doctype/crm_invitation/crm_invitation.json -#: crm/fcrm/doctype/crm_lead/crm_lead.json -#: crm/fcrm/doctype/crm_lead_source/crm_lead_source.json -#: crm/fcrm/doctype/crm_lead_status/crm_lead_status.json -#: crm/fcrm/doctype/crm_lost_reason/crm_lost_reason.json -#: crm/fcrm/doctype/crm_notification/crm_notification.json -#: crm/fcrm/doctype/crm_organization/crm_organization.json -#: crm/fcrm/doctype/crm_task/crm_task.json -#: crm/fcrm/doctype/crm_territory/crm_territory.json -#: crm/fcrm/doctype/crm_view_settings/crm_view_settings.json -#: crm/fcrm/doctype/fcrm_note/fcrm_note.json +#. Option for the 'Role' (Select) field in PageType 'CRM Invitation' +#: crm/fcrm/pagetype/crm_call_log/crm_call_log.json +#: crm/fcrm/pagetype/crm_communication_status/crm_communication_status.json +#: crm/fcrm/pagetype/crm_dashboard/crm_dashboard.json +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_deal_status/crm_deal_status.json +#: crm/fcrm/pagetype/crm_global_settings/crm_global_settings.json +#: crm/fcrm/pagetype/crm_holiday_list/crm_holiday_list.json +#: crm/fcrm/pagetype/crm_industry/crm_industry.json +#: crm/fcrm/pagetype/crm_invitation/crm_invitation.json +#: crm/fcrm/pagetype/crm_lead/crm_lead.json +#: crm/fcrm/pagetype/crm_lead_source/crm_lead_source.json +#: crm/fcrm/pagetype/crm_lead_status/crm_lead_status.json +#: crm/fcrm/pagetype/crm_lost_reason/crm_lost_reason.json +#: crm/fcrm/pagetype/crm_notification/crm_notification.json +#: crm/fcrm/pagetype/crm_organization/crm_organization.json +#: crm/fcrm/pagetype/crm_task/crm_task.json +#: crm/fcrm/pagetype/crm_territory/crm_territory.json +#: crm/fcrm/pagetype/crm_view_settings/crm_view_settings.json +#: crm/fcrm/pagetype/fcrm_note/fcrm_note.json #: frontend/src/components/Modals/AddExistingUserModal.vue:92 #: frontend/src/components/Settings/InviteUserPage.vue:156 #: frontend/src/components/Settings/InviteUserPage.vue:163 @@ -4845,17 +4845,17 @@ msgstr "" msgid "Salesperson" msgstr "" -#. Label of the salutation (Link) field in DocType 'CRM Deal' -#. Label of the salutation (Link) field in DocType 'CRM Lead' -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_lead/crm_lead.json +#. Label of the salutation (Link) field in PageType 'CRM Deal' +#. Label of the salutation (Link) field in PageType 'CRM Lead' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_lead/crm_lead.json msgid "Salutation" msgstr "Hilsen" -#. Option for the 'Weekly Off' (Select) field in DocType 'CRM Holiday List' -#. Option for the 'Workday' (Select) field in DocType 'CRM Service Day' -#: crm/fcrm/doctype/crm_holiday_list/crm_holiday_list.json -#: crm/fcrm/doctype/crm_service_day/crm_service_day.json +#. Option for the 'Weekly Off' (Select) field in PageType 'CRM Holiday List' +#. Option for the 'Workday' (Select) field in PageType 'CRM Service Day' +#: crm/fcrm/pagetype/crm_holiday_list/crm_holiday_list.json +#: crm/fcrm/pagetype/crm_service_day/crm_service_day.json msgid "Saturday" msgstr "" @@ -4904,8 +4904,8 @@ msgstr "" msgid "Schedule an event" msgstr "" -#. Label of the script (Code) field in DocType 'CRM Form Script' -#: crm/fcrm/doctype/crm_form_script/crm_form_script.json +#. Label of the script (Code) field in PageType 'CRM Form Script' +#: crm/fcrm/pagetype/crm_form_script/crm_form_script.json msgid "Script" msgstr "" @@ -4973,18 +4973,18 @@ msgstr "" msgid "Send invites to" msgstr "" -#. Option for the 'Type' (Select) field in DocType 'CRM Dropdown Item' -#: crm/fcrm/doctype/crm_dropdown_item/crm_dropdown_item.json +#. Option for the 'Type' (Select) field in PageType 'CRM Dropdown Item' +#: crm/fcrm/pagetype/crm_dropdown_item/crm_dropdown_item.json msgid "Separator" msgstr "" -#. Label of the naming_series (Select) field in DocType 'CRM Lead' -#: crm/fcrm/doctype/crm_lead/crm_lead.json +#. Label of the naming_series (Select) field in PageType 'CRM Lead' +#: crm/fcrm/pagetype/crm_lead/crm_lead.json msgid "Series" msgstr "Nummerserie" -#. Label of the service_provider (Select) field in DocType 'FCRM Settings' -#: crm/fcrm/doctype/fcrm_settings/fcrm_settings.json +#. Label of the service_provider (Select) field in PageType 'FCRM Settings' +#: crm/fcrm/pagetype/fcrm_settings/fcrm_settings.json msgid "Service Provider" msgstr "" @@ -5029,7 +5029,7 @@ msgid "Setting up" msgstr "" #: frontend/src/components/Settings/emailConfig.js:145 -msgid "Setting up Frappe Mail requires you to have an API key and API Secret of your email account. Read more " +msgid "Setting up Jingrow Mail requires you to have an API key and API Secret of your email account. Read more " msgstr "" #: frontend/src/components/Settings/emailConfig.js:97 @@ -5062,8 +5062,8 @@ msgid "Setting up Yandex requires you to enable two factor authentication\n" "\t\t and app specific passwords. Read more " msgstr "" -#. Label of the defaults_tab (Tab Break) field in DocType 'FCRM Settings' -#: crm/fcrm/doctype/fcrm_settings/fcrm_settings.json +#. Label of the defaults_tab (Tab Break) field in PageType 'FCRM Settings' +#: crm/fcrm/pagetype/fcrm_settings/fcrm_settings.json #: frontend/src/components/Layouts/AppSidebar.vue:537 #: frontend/src/components/Settings/Settings.vue:12 msgid "Settings" @@ -5073,7 +5073,7 @@ msgstr "" msgid "Setup Email" msgstr "" -#: crm/fcrm/doctype/fcrm_settings/fcrm_settings.py:199 +#: crm/fcrm/pagetype/fcrm_settings/fcrm_settings.py:199 msgid "Setup the Exchange Rate Provider as 'Exchangerate Host' in settings, as default provider does not support currency conversion for {0} to {1}." msgstr "" @@ -5108,20 +5108,20 @@ msgstr "" msgid "Show preview" msgstr "" -#. Option for the 'Type' (Select) field in DocType 'CRM Fields Layout' -#: crm/fcrm/doctype/crm_fields_layout/crm_fields_layout.json +#. Option for the 'Type' (Select) field in PageType 'CRM Fields Layout' +#: crm/fcrm/pagetype/crm_fields_layout/crm_fields_layout.json msgid "Side Panel" msgstr "" -#. Option for the 'Type' (Select) field in DocType 'CRM Global Settings' -#: crm/fcrm/doctype/crm_global_settings/crm_global_settings.json +#. Option for the 'Type' (Select) field in PageType 'CRM Global Settings' +#: crm/fcrm/pagetype/crm_global_settings/crm_global_settings.json msgid "Sidebar Items" msgstr "" -#. Description of the 'Condition' (Code) field in DocType 'CRM Service Level +#. Description of the 'Condition' (Code) field in PageType 'CRM Service Level #. Agreement' -#: crm/fcrm/doctype/crm_service_level_agreement/crm_service_level_agreement.json -msgid "Simple Python Expression, Example: doc.status == 'Open' and doc.lead_source == 'Ads'" +#: crm/fcrm/pagetype/crm_service_level_agreement/crm_service_level_agreement.json +msgid "Simple Python Expression, Example: pg.status == 'Open' and pg.lead_source == 'Ads'" msgstr "" #: frontend/src/components/AssignTo.vue:83 @@ -5145,16 +5145,16 @@ msgstr "" msgid "Sort" msgstr "" -#. Label of the source (Link) field in DocType 'CRM Deal' -#. Label of the source (Link) field in DocType 'CRM Lead' -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_lead/crm_lead.json +#. Label of the source (Link) field in PageType 'CRM Deal' +#. Label of the source (Link) field in PageType 'CRM Lead' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_lead/crm_lead.json #: frontend/src/components/Modals/EditValueModal.vue:10 msgid "Source" msgstr "" -#. Label of the source_name (Data) field in DocType 'CRM Lead Source' -#: crm/fcrm/doctype/crm_lead_source/crm_lead_source.json +#. Label of the source_name (Data) field in PageType 'CRM Lead Source' +#: crm/fcrm/pagetype/crm_lead_source/crm_lead_source.json msgid "Source Name" msgstr "" @@ -5167,12 +5167,12 @@ msgstr "Avstandsstykke" msgid "Stage" msgstr "" -#: crm/fcrm/doctype/crm_form_script/crm_form_script.js:15 +#: crm/fcrm/pagetype/crm_form_script/crm_form_script.js:15 msgid "Standard Form Scripts can not be modified, duplicate the Form Script instead." msgstr "" -#. Label of the standard_rate (Currency) field in DocType 'CRM Product' -#: crm/fcrm/doctype/crm_product/crm_product.json +#. Label of the standard_rate (Currency) field in PageType 'CRM Product' +#: crm/fcrm/pagetype/crm_product/crm_product.json msgid "Standard Selling Rate" msgstr "" @@ -5180,18 +5180,18 @@ msgstr "" msgid "Standard Views" msgstr "" -#. Label of the start_date (Date) field in DocType 'CRM Service Level +#. Label of the start_date (Date) field in PageType 'CRM Service Level #. Agreement' -#. Label of the start_date (Date) field in DocType 'CRM Task' -#: crm/fcrm/doctype/crm_service_level_agreement/crm_service_level_agreement.json -#: crm/fcrm/doctype/crm_task/crm_task.json +#. Label of the start_date (Date) field in PageType 'CRM Task' +#: crm/fcrm/pagetype/crm_service_level_agreement/crm_service_level_agreement.json +#: crm/fcrm/pagetype/crm_task/crm_task.json msgid "Start Date" msgstr "" -#. Label of the start_time (Datetime) field in DocType 'CRM Call Log' -#. Label of the start_time (Time) field in DocType 'CRM Service Day' -#: crm/fcrm/doctype/crm_call_log/crm_call_log.json -#: crm/fcrm/doctype/crm_service_day/crm_service_day.json +#. Label of the start_time (Datetime) field in PageType 'CRM Call Log' +#. Label of the start_time (Time) field in PageType 'CRM Service Day' +#: crm/fcrm/pagetype/crm_call_log/crm_call_log.json +#: crm/fcrm/pagetype/crm_service_day/crm_service_day.json #: frontend/src/components/Calendar/CalendarEventPanel.vue:234 #: frontend/src/components/Modals/EventModal.vue:103 msgid "Start Time" @@ -5205,32 +5205,32 @@ msgstr "" msgid "Start with sample 10 leads" msgstr "" -#. Label of the status (Select) field in DocType 'CRM Call Log' -#. Label of the status (Data) field in DocType 'CRM Communication Status' -#. Label of the status (Link) field in DocType 'CRM Deal' -#. Label of the deal_status (Data) field in DocType 'CRM Deal Status' -#. Label of the status (Select) field in DocType 'CRM Invitation' -#. Label of the status (Link) field in DocType 'CRM Lead' -#. Label of the lead_status (Data) field in DocType 'CRM Lead Status' -#. Label of the status (Select) field in DocType 'CRM Task' -#: crm/fcrm/doctype/crm_call_log/crm_call_log.json -#: crm/fcrm/doctype/crm_communication_status/crm_communication_status.json -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_deal_status/crm_deal_status.json -#: crm/fcrm/doctype/crm_invitation/crm_invitation.json -#: crm/fcrm/doctype/crm_lead/crm_lead.json -#: crm/fcrm/doctype/crm_lead_status/crm_lead_status.json -#: crm/fcrm/doctype/crm_task/crm_task.json frontend/src/pages/Contact.vue:505 +#. Label of the status (Select) field in PageType 'CRM Call Log' +#. Label of the status (Data) field in PageType 'CRM Communication Status' +#. Label of the status (Link) field in PageType 'CRM Deal' +#. Label of the deal_status (Data) field in PageType 'CRM Deal Status' +#. Label of the status (Select) field in PageType 'CRM Invitation' +#. Label of the status (Link) field in PageType 'CRM Lead' +#. Label of the lead_status (Data) field in PageType 'CRM Lead Status' +#. Label of the status (Select) field in PageType 'CRM Task' +#: crm/fcrm/pagetype/crm_call_log/crm_call_log.json +#: crm/fcrm/pagetype/crm_communication_status/crm_communication_status.json +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_deal_status/crm_deal_status.json +#: crm/fcrm/pagetype/crm_invitation/crm_invitation.json +#: crm/fcrm/pagetype/crm_lead/crm_lead.json +#: crm/fcrm/pagetype/crm_lead_status/crm_lead_status.json +#: crm/fcrm/pagetype/crm_task/crm_task.json frontend/src/pages/Contact.vue:505 #: frontend/src/pages/MobileContact.vue:513 #: frontend/src/pages/MobileOrganization.vue:457 #: frontend/src/pages/Organization.vue:478 msgid "Status" msgstr "Status" -#. Label of the status_change_log (Table) field in DocType 'CRM Deal' -#. Label of the status_change_log (Table) field in DocType 'CRM Lead' -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_lead/crm_lead.json +#. Label of the status_change_log (Table) field in PageType 'CRM Deal' +#. Label of the status_change_log (Table) field in PageType 'CRM Lead' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_lead/crm_lead.json msgid "Status Change Log" msgstr "" @@ -5239,8 +5239,8 @@ msgstr "" msgid "Status is required" msgstr "" -#. Label of the subdomain (Data) field in DocType 'CRM Exotel Settings' -#: crm/fcrm/doctype/crm_exotel_settings/crm_exotel_settings.json +#. Label of the subdomain (Data) field in PageType 'CRM Exotel Settings' +#: crm/fcrm/pagetype/crm_exotel_settings/crm_exotel_settings.json msgid "Subdomain" msgstr "" @@ -5258,10 +5258,10 @@ msgstr "" msgid "Subject: {0}" msgstr "" -#. Option for the 'Weekly Off' (Select) field in DocType 'CRM Holiday List' -#. Option for the 'Workday' (Select) field in DocType 'CRM Service Day' -#: crm/fcrm/doctype/crm_holiday_list/crm_holiday_list.json -#: crm/fcrm/doctype/crm_service_day/crm_service_day.json +#. Option for the 'Weekly Off' (Select) field in PageType 'CRM Holiday List' +#. Option for the 'Workday' (Select) field in PageType 'CRM Service Day' +#: crm/fcrm/pagetype/crm_holiday_list/crm_holiday_list.json +#: crm/fcrm/pagetype/crm_service_day/crm_service_day.json msgid "Sunday" msgstr "" @@ -5282,21 +5282,21 @@ msgid "System Configuration" msgstr "" #. Name of a role -#. Option for the 'Role' (Select) field in DocType 'CRM Invitation' -#: crm/fcrm/doctype/crm_dashboard/crm_dashboard.json -#: crm/fcrm/doctype/crm_exotel_settings/crm_exotel_settings.json -#: crm/fcrm/doctype/crm_fields_layout/crm_fields_layout.json -#: crm/fcrm/doctype/crm_global_settings/crm_global_settings.json -#: crm/fcrm/doctype/crm_invitation/crm_invitation.json -#: crm/fcrm/doctype/crm_lead_source/crm_lead_source.json -#: crm/fcrm/doctype/crm_lost_reason/crm_lost_reason.json -#: crm/fcrm/doctype/crm_notification/crm_notification.json -#: crm/fcrm/doctype/crm_product/crm_product.json -#: crm/fcrm/doctype/crm_telephony_agent/crm_telephony_agent.json -#: crm/fcrm/doctype/crm_twilio_settings/crm_twilio_settings.json -#: crm/fcrm/doctype/erpnext_crm_settings/erpnext_crm_settings.json -#: crm/fcrm/doctype/fcrm_settings/fcrm_settings.json -#: crm/fcrm/doctype/helpdesk_crm_settings/helpdesk_crm_settings.json +#. Option for the 'Role' (Select) field in PageType 'CRM Invitation' +#: crm/fcrm/pagetype/crm_dashboard/crm_dashboard.json +#: crm/fcrm/pagetype/crm_exotel_settings/crm_exotel_settings.json +#: crm/fcrm/pagetype/crm_fields_layout/crm_fields_layout.json +#: crm/fcrm/pagetype/crm_global_settings/crm_global_settings.json +#: crm/fcrm/pagetype/crm_invitation/crm_invitation.json +#: crm/fcrm/pagetype/crm_lead_source/crm_lead_source.json +#: crm/fcrm/pagetype/crm_lost_reason/crm_lost_reason.json +#: crm/fcrm/pagetype/crm_notification/crm_notification.json +#: crm/fcrm/pagetype/crm_product/crm_product.json +#: crm/fcrm/pagetype/crm_telephony_agent/crm_telephony_agent.json +#: crm/fcrm/pagetype/crm_twilio_settings/crm_twilio_settings.json +#: crm/fcrm/pagetype/erpnext_crm_settings/erpnext_crm_settings.json +#: crm/fcrm/pagetype/fcrm_settings/fcrm_settings.json +#: crm/fcrm/pagetype/helpdesk_crm_settings/helpdesk_crm_settings.json msgid "System Manager" msgstr "Systemansvarlig" @@ -5308,8 +5308,8 @@ msgstr "" msgid "Take a note..." msgstr "" -#. Option for the 'Type' (Select) field in DocType 'CRM Notification' -#: crm/fcrm/doctype/crm_notification/crm_notification.json +#. Option for the 'Type' (Select) field in PageType 'CRM Notification' +#: crm/fcrm/pagetype/crm_notification/crm_notification.json #: frontend/src/components/Layouts/AppSidebar.vue:555 msgid "Task" msgstr "" @@ -5327,8 +5327,8 @@ msgstr "" msgid "Telephony" msgstr "" -#. Label of the telephony_medium (Select) field in DocType 'CRM Call Log' -#: crm/fcrm/doctype/crm_call_log/crm_call_log.json +#. Label of the telephony_medium (Select) field in PageType 'CRM Call Log' +#: crm/fcrm/pagetype/crm_call_log/crm_call_log.json msgid "Telephony Medium" msgstr "" @@ -5364,27 +5364,27 @@ msgstr "" msgid "Template updated successfully" msgstr "" -#. Label of a shortcut in the Frappe CRM Workspace -#: crm/fcrm/workspace/frappe_crm/frappe_crm.json +#. Label of a shortcut in the Jingrow CRM Workspace +#: crm/fcrm/workspace/jingrow_crm/jingrow_crm.json msgid "Territories" msgstr "" -#. Label of the territory (Link) field in DocType 'CRM Deal' -#. Label of the territory (Link) field in DocType 'CRM Lead' -#. Label of the territory (Link) field in DocType 'CRM Organization' -#: crm/api/dashboard.py:1022 crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_lead/crm_lead.json -#: crm/fcrm/doctype/crm_organization/crm_organization.json +#. Label of the territory (Link) field in PageType 'CRM Deal' +#. Label of the territory (Link) field in PageType 'CRM Lead' +#. Label of the territory (Link) field in PageType 'CRM Organization' +#: crm/api/dashboard.py:1022 crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_lead/crm_lead.json +#: crm/fcrm/pagetype/crm_organization/crm_organization.json msgid "Territory" msgstr "Territorium" -#. Label of the territory_manager (Link) field in DocType 'CRM Territory' -#: crm/fcrm/doctype/crm_territory/crm_territory.json +#. Label of the territory_manager (Link) field in PageType 'CRM Territory' +#: crm/fcrm/pagetype/crm_territory/crm_territory.json msgid "Territory Manager" msgstr "" -#. Label of the territory_name (Data) field in DocType 'CRM Territory' -#: crm/fcrm/doctype/crm_territory/crm_territory.json +#. Label of the territory_name (Data) field in PageType 'CRM Territory' +#: crm/fcrm/pagetype/crm_territory/crm_territory.json msgid "Territory Name" msgstr "" @@ -5392,22 +5392,22 @@ msgstr "" msgid "Thanks" msgstr "Takk" -#: crm/fcrm/doctype/crm_service_level_agreement/crm_service_level_agreement.py:46 +#: crm/fcrm/pagetype/crm_service_level_agreement/crm_service_level_agreement.py:46 msgid "The Condition '{0}' is invalid: {1}" msgstr "" -#. Description of the 'Exchange Rate' (Float) field in DocType 'CRM Deal' -#: crm/fcrm/doctype/crm_deal/crm_deal.json +#. Description of the 'Exchange Rate' (Float) field in PageType 'CRM Deal' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json msgid "The rate used to convert the deal’s currency to your crm's base currency (set in CRM Settings). It is set once when the currency is first added and doesn't change automatically." msgstr "" -#. Description of the 'Exchange Rate' (Float) field in DocType 'CRM +#. Description of the 'Exchange Rate' (Float) field in PageType 'CRM #. Organization' -#: crm/fcrm/doctype/crm_organization/crm_organization.json +#: crm/fcrm/pagetype/crm_organization/crm_organization.json msgid "The rate used to convert the organization’s currency to your crm's base currency (set in CRM Settings). It is set once when the currency is first added and doesn't change automatically." msgstr "" -#: crm/fcrm/doctype/crm_service_level_agreement/crm_service_level_agreement.js:14 +#: crm/fcrm/pagetype/crm_service_level_agreement/crm_service_level_agreement.js:14 msgid "There can only be one default priority in Priorities table" msgstr "" @@ -5444,14 +5444,14 @@ msgstr "" msgid "This will delete selected items and unlink linked items to it, are you sure?" msgstr "" -#: crm/fcrm/doctype/fcrm_settings/fcrm_settings.js:9 +#: crm/fcrm/pagetype/fcrm_settings/fcrm_settings.js:9 msgid "This will restore (if not exist) all the default statuses, custom fields and layouts. Delete & Restore will delete default layouts and then restore them." msgstr "" -#. Option for the 'Weekly Off' (Select) field in DocType 'CRM Holiday List' -#. Option for the 'Workday' (Select) field in DocType 'CRM Service Day' -#: crm/fcrm/doctype/crm_holiday_list/crm_holiday_list.json -#: crm/fcrm/doctype/crm_service_day/crm_service_day.json +#. Option for the 'Weekly Off' (Select) field in PageType 'CRM Holiday List' +#. Option for the 'Workday' (Select) field in PageType 'CRM Service Day' +#: crm/fcrm/pagetype/crm_holiday_list/crm_holiday_list.json +#: crm/fcrm/pagetype/crm_service_day/crm_service_day.json msgid "Thursday" msgstr "" @@ -5463,18 +5463,18 @@ msgstr "Tidspunkt" msgid "Timespan" msgstr "Tidsrom" -#. Label of the title (Data) field in DocType 'CRM Task' -#. Label of the title (Data) field in DocType 'FCRM Note' -#: crm/fcrm/doctype/crm_task/crm_task.json -#: crm/fcrm/doctype/fcrm_note/fcrm_note.json +#. Label of the title (Data) field in PageType 'CRM Task' +#. Label of the title (Data) field in PageType 'FCRM Note' +#: crm/fcrm/pagetype/crm_task/crm_task.json +#: crm/fcrm/pagetype/fcrm_note/fcrm_note.json #: frontend/src/components/Modals/EventModal.vue:43 #: frontend/src/components/Modals/NoteModal.vue:26 #: frontend/src/components/Modals/TaskModal.vue:25 msgid "Title" msgstr "" -#. Label of the title_field (Data) field in DocType 'CRM View Settings' -#: crm/fcrm/doctype/crm_view_settings/crm_view_settings.json +#. Label of the title_field (Data) field in PageType 'CRM View Settings' +#: crm/fcrm/pagetype/crm_view_settings/crm_view_settings.json #: frontend/src/components/Kanban/KanbanSettings.vue:29 msgid "Title Field" msgstr "" @@ -5484,28 +5484,28 @@ msgstr "" msgid "Title is required" msgstr "" -#. Label of the to (Data) field in DocType 'CRM Call Log' -#. Label of the to (Data) field in DocType 'CRM Status Change Log' -#: crm/fcrm/doctype/crm_call_log/crm_call_log.json -#: crm/fcrm/doctype/crm_status_change_log/crm_status_change_log.json +#. Label of the to (Data) field in PageType 'CRM Call Log' +#. Label of the to (Data) field in PageType 'CRM Status Change Log' +#: crm/fcrm/pagetype/crm_call_log/crm_call_log.json +#: crm/fcrm/pagetype/crm_status_change_log/crm_status_change_log.json #: frontend/src/components/Activities/EmailArea.vue:53 msgid "To" msgstr "" -#. Label of the to_date (Date) field in DocType 'CRM Holiday List' -#. Label of the to_date (Datetime) field in DocType 'CRM Status Change Log' -#: crm/fcrm/doctype/crm_holiday_list/crm_holiday_list.json -#: crm/fcrm/doctype/crm_status_change_log/crm_status_change_log.json +#. Label of the to_date (Date) field in PageType 'CRM Holiday List' +#. Label of the to_date (Datetime) field in PageType 'CRM Status Change Log' +#: crm/fcrm/pagetype/crm_holiday_list/crm_holiday_list.json +#: crm/fcrm/pagetype/crm_status_change_log/crm_status_change_log.json msgid "To Date" msgstr "" -#. Label of the to_type (Data) field in DocType 'CRM Status Change Log' -#: crm/fcrm/doctype/crm_status_change_log/crm_status_change_log.json +#. Label of the to_type (Data) field in PageType 'CRM Status Change Log' +#: crm/fcrm/pagetype/crm_status_change_log/crm_status_change_log.json msgid "To Type" msgstr "" -#. Label of the to_user (Link) field in DocType 'CRM Notification' -#: crm/fcrm/doctype/crm_notification/crm_notification.json +#. Label of the to_user (Link) field in PageType 'CRM Notification' +#: crm/fcrm/pagetype/crm_notification/crm_notification.json msgid "To User" msgstr "" @@ -5517,8 +5517,8 @@ msgstr "" msgid "Today" msgstr "I dag" -#. Option for the 'Status' (Select) field in DocType 'CRM Task' -#: crm/fcrm/doctype/crm_task/crm_task.json +#. Option for the 'Status' (Select) field in PageType 'CRM Task' +#: crm/fcrm/pagetype/crm_task/crm_task.json msgid "Todo" msgstr "Gjøremål" @@ -5535,22 +5535,22 @@ msgstr "" msgid "Took a call with John Doe and discussed the new project." msgstr "" -#. Label of the total (Currency) field in DocType 'CRM Deal' -#. Label of the total (Currency) field in DocType 'CRM Lead' -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_lead/crm_lead.json +#. Label of the total (Currency) field in PageType 'CRM Deal' +#. Label of the total (Currency) field in PageType 'CRM Lead' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_lead/crm_lead.json msgid "Total" msgstr "" -#. Label of the total_holidays (Int) field in DocType 'CRM Holiday List' -#: crm/fcrm/doctype/crm_holiday_list/crm_holiday_list.json +#. Label of the total_holidays (Int) field in PageType 'CRM Holiday List' +#: crm/fcrm/pagetype/crm_holiday_list/crm_holiday_list.json msgid "Total Holidays" msgstr "" -#. Description of the 'Net Total' (Currency) field in DocType 'CRM Deal' -#. Description of the 'Net Total' (Currency) field in DocType 'CRM Lead' -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_lead/crm_lead.json +#. Description of the 'Net Total' (Currency) field in PageType 'CRM Deal' +#. Description of the 'Net Total' (Currency) field in PageType 'CRM Lead' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_lead/crm_lead.json msgid "Total after discount" msgstr "" @@ -5571,10 +5571,10 @@ msgstr "" msgid "Total number of won deals based on its closure date" msgstr "" -#. Option for the 'Weekly Off' (Select) field in DocType 'CRM Holiday List' -#. Option for the 'Workday' (Select) field in DocType 'CRM Service Day' -#: crm/fcrm/doctype/crm_holiday_list/crm_holiday_list.json -#: crm/fcrm/doctype/crm_service_day/crm_service_day.json +#. Option for the 'Weekly Off' (Select) field in PageType 'CRM Holiday List' +#. Option for the 'Workday' (Select) field in PageType 'CRM Service Day' +#: crm/fcrm/pagetype/crm_holiday_list/crm_holiday_list.json +#: crm/fcrm/pagetype/crm_service_day/crm_service_day.json msgid "Tuesday" msgstr "" @@ -5582,30 +5582,30 @@ msgstr "" msgid "Turn into a group" msgstr "" -#. Label of the twiml_sid (Data) field in DocType 'CRM Twilio Settings' -#: crm/fcrm/doctype/crm_twilio_settings/crm_twilio_settings.json +#. Label of the twiml_sid (Data) field in PageType 'CRM Twilio Settings' +#: crm/fcrm/pagetype/crm_twilio_settings/crm_twilio_settings.json msgid "TwiML SID" msgstr "" -#. Option for the 'Telephony Medium' (Select) field in DocType 'CRM Call Log' -#. Label of the twilio (Check) field in DocType 'CRM Telephony Agent' -#. Option for the 'Default Medium' (Select) field in DocType 'CRM Telephony +#. Option for the 'Telephony Medium' (Select) field in PageType 'CRM Call Log' +#. Label of the twilio (Check) field in PageType 'CRM Telephony Agent' +#. Option for the 'Default Medium' (Select) field in PageType 'CRM Telephony #. Agent' -#: crm/fcrm/doctype/crm_call_log/crm_call_log.json -#: crm/fcrm/doctype/crm_telephony_agent/crm_telephony_agent.json +#: crm/fcrm/pagetype/crm_call_log/crm_call_log.json +#: crm/fcrm/pagetype/crm_telephony_agent/crm_telephony_agent.json #: frontend/src/components/Layouts/AppSidebar.vue:601 #: frontend/src/components/Settings/TelephonySettings.vue:40 #: frontend/src/components/Settings/TelephonySettings.vue:50 msgid "Twilio" msgstr "" -#: crm/fcrm/doctype/crm_twilio_settings/crm_twilio_settings.py:59 -#: crm/fcrm/doctype/crm_twilio_settings/crm_twilio_settings.py:60 +#: crm/fcrm/pagetype/crm_twilio_settings/crm_twilio_settings.py:59 +#: crm/fcrm/pagetype/crm_twilio_settings/crm_twilio_settings.py:60 msgid "Twilio API credential creation error." msgstr "" -#. Label of the twilio_number (Data) field in DocType 'CRM Telephony Agent' -#: crm/fcrm/doctype/crm_telephony_agent/crm_telephony_agent.json +#. Label of the twilio_number (Data) field in PageType 'CRM Telephony Agent' +#: crm/fcrm/pagetype/crm_telephony_agent/crm_telephony_agent.json msgid "Twilio Number" msgstr "" @@ -5617,20 +5617,20 @@ msgstr "" msgid "Twilio settings updated successfully" msgstr "" -#. Label of the type (Select) field in DocType 'CRM Call Log' -#. Label of the type (Select) field in DocType 'CRM Deal Status' -#. Label of the type (Select) field in DocType 'CRM Dropdown Item' -#. Label of the type (Select) field in DocType 'CRM Fields Layout' -#. Label of the type (Select) field in DocType 'CRM Global Settings' -#. Label of the type (Select) field in DocType 'CRM Notification' -#. Label of the type (Select) field in DocType 'CRM View Settings' -#: crm/fcrm/doctype/crm_call_log/crm_call_log.json -#: crm/fcrm/doctype/crm_deal_status/crm_deal_status.json -#: crm/fcrm/doctype/crm_dropdown_item/crm_dropdown_item.json -#: crm/fcrm/doctype/crm_fields_layout/crm_fields_layout.json -#: crm/fcrm/doctype/crm_global_settings/crm_global_settings.json -#: crm/fcrm/doctype/crm_notification/crm_notification.json -#: crm/fcrm/doctype/crm_view_settings/crm_view_settings.json +#. Label of the type (Select) field in PageType 'CRM Call Log' +#. Label of the type (Select) field in PageType 'CRM Deal Status' +#. Label of the type (Select) field in PageType 'CRM Dropdown Item' +#. Label of the type (Select) field in PageType 'CRM Fields Layout' +#. Label of the type (Select) field in PageType 'CRM Global Settings' +#. Label of the type (Select) field in PageType 'CRM Notification' +#. Label of the type (Select) field in PageType 'CRM View Settings' +#: crm/fcrm/pagetype/crm_call_log/crm_call_log.json +#: crm/fcrm/pagetype/crm_deal_status/crm_deal_status.json +#: crm/fcrm/pagetype/crm_dropdown_item/crm_dropdown_item.json +#: crm/fcrm/pagetype/crm_fields_layout/crm_fields_layout.json +#: crm/fcrm/pagetype/crm_global_settings/crm_global_settings.json +#: crm/fcrm/pagetype/crm_notification/crm_notification.json +#: crm/fcrm/pagetype/crm_view_settings/crm_view_settings.json msgid "Type" msgstr "" @@ -5772,12 +5772,12 @@ msgstr "" msgid "Uploading {0}%" msgstr "" -#. Label of the user (Link) field in DocType 'CRM Dashboard' -#. Label of the user (Link) field in DocType 'CRM Telephony Agent' -#. Label of the user (Link) field in DocType 'CRM View Settings' -#: crm/fcrm/doctype/crm_dashboard/crm_dashboard.json -#: crm/fcrm/doctype/crm_telephony_agent/crm_telephony_agent.json -#: crm/fcrm/doctype/crm_view_settings/crm_view_settings.json +#. Label of the user (Link) field in PageType 'CRM Dashboard' +#. Label of the user (Link) field in PageType 'CRM Telephony Agent' +#. Label of the user (Link) field in PageType 'CRM View Settings' +#: crm/fcrm/pagetype/crm_dashboard/crm_dashboard.json +#: crm/fcrm/pagetype/crm_telephony_agent/crm_telephony_agent.json +#: crm/fcrm/pagetype/crm_view_settings/crm_view_settings.json msgid "User" msgstr "Bruker" @@ -5785,8 +5785,8 @@ msgstr "Bruker" msgid "User Management" msgstr "" -#. Label of the user_name (Data) field in DocType 'CRM Telephony Agent' -#: crm/fcrm/doctype/crm_telephony_agent/crm_telephony_agent.json +#. Label of the user_name (Data) field in PageType 'CRM Telephony Agent' +#: crm/fcrm/pagetype/crm_telephony_agent/crm_telephony_agent.json msgid "User Name" msgstr "" @@ -5808,9 +5808,9 @@ msgstr "" msgid "Users are required" msgstr "" -#. Label of the section_break_nevd (Section Break) field in DocType 'CRM +#. Label of the section_break_nevd (Section Break) field in PageType 'CRM #. Service Level Agreement' -#: crm/fcrm/doctype/crm_service_level_agreement/crm_service_level_agreement.json +#: crm/fcrm/pagetype/crm_service_level_agreement/crm_service_level_agreement.json msgid "Validity" msgstr "" @@ -5834,33 +5834,33 @@ msgstr "" msgid "Web form" msgstr "" -#. Label of the webhook_verify_token (Data) field in DocType 'CRM Exotel +#. Label of the webhook_verify_token (Data) field in PageType 'CRM Exotel #. Settings' -#: crm/fcrm/doctype/crm_exotel_settings/crm_exotel_settings.json +#: crm/fcrm/pagetype/crm_exotel_settings/crm_exotel_settings.json msgid "Webhook Verify Token" msgstr "Webhook-verifiseringstoken" -#. Label of the website (Data) field in DocType 'CRM Deal' -#. Label of the website (Data) field in DocType 'CRM Lead' -#. Label of the website (Data) field in DocType 'CRM Organization' -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_lead/crm_lead.json -#: crm/fcrm/doctype/crm_organization/crm_organization.json +#. Label of the website (Data) field in PageType 'CRM Deal' +#. Label of the website (Data) field in PageType 'CRM Lead' +#. Label of the website (Data) field in PageType 'CRM Organization' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_lead/crm_lead.json +#: crm/fcrm/pagetype/crm_organization/crm_organization.json #: frontend/src/components/Modals/AboutModal.vue:52 msgid "Website" msgstr "Nettsted" -#. Option for the 'Weekly Off' (Select) field in DocType 'CRM Holiday List' -#. Option for the 'Workday' (Select) field in DocType 'CRM Service Day' -#: crm/fcrm/doctype/crm_holiday_list/crm_holiday_list.json -#: crm/fcrm/doctype/crm_service_day/crm_service_day.json +#. Option for the 'Weekly Off' (Select) field in PageType 'CRM Holiday List' +#. Option for the 'Workday' (Select) field in PageType 'CRM Service Day' +#: crm/fcrm/pagetype/crm_holiday_list/crm_holiday_list.json +#: crm/fcrm/pagetype/crm_service_day/crm_service_day.json msgid "Wednesday" msgstr "" -#. Label of the weekly_off (Check) field in DocType 'CRM Holiday' -#. Label of the weekly_off (Select) field in DocType 'CRM Holiday List' -#: crm/fcrm/doctype/crm_holiday/crm_holiday.json -#: crm/fcrm/doctype/crm_holiday_list/crm_holiday_list.json +#. Label of the weekly_off (Check) field in PageType 'CRM Holiday' +#. Label of the weekly_off (Select) field in PageType 'CRM Holiday List' +#: crm/fcrm/pagetype/crm_holiday/crm_holiday.json +#: crm/fcrm/pagetype/crm_holiday_list/crm_holiday_list.json msgid "Weekly Off" msgstr "Ukentlig fri" @@ -5868,7 +5868,7 @@ msgstr "Ukentlig fri" msgid "Welcome Message" msgstr "" -#: crm/fcrm/doctype/helpdesk_crm_settings/helpdesk_crm_settings.py:155 +#: crm/fcrm/pagetype/helpdesk_crm_settings/helpdesk_crm_settings.py:155 msgid "Welcome to Helpdesk" msgstr "" @@ -5876,8 +5876,8 @@ msgstr "" msgid "Welcome {0}, lets add your first lead" msgstr "" -#. Option for the 'Type' (Select) field in DocType 'CRM Notification' -#: crm/fcrm/doctype/crm_notification/crm_notification.json +#. Option for the 'Type' (Select) field in PageType 'CRM Notification' +#: crm/fcrm/pagetype/crm_notification/crm_notification.json #: frontend/src/components/Layouts/AppSidebar.vue:603 #: frontend/src/components/Settings/Settings.vue:190 #: frontend/src/pages/Deal.vue:572 frontend/src/pages/Lead.vue:429 @@ -5902,8 +5902,8 @@ msgstr "Bredde" msgid "Width can be in number, pixel or rem (eg. 3, 30px, 10rem)" msgstr "" -#. Option for the 'Type' (Select) field in DocType 'CRM Deal Status' -#: crm/fcrm/doctype/crm_deal_status/crm_deal_status.json +#. Option for the 'Type' (Select) field in PageType 'CRM Deal Status' +#: crm/fcrm/pagetype/crm_deal_status/crm_deal_status.json msgid "Won" msgstr "" @@ -5912,16 +5912,16 @@ msgstr "" msgid "Won deals" msgstr "" -#. Label of the workday (Select) field in DocType 'CRM Service Day' -#: crm/fcrm/doctype/crm_service_day/crm_service_day.json +#. Label of the workday (Select) field in PageType 'CRM Service Day' +#: crm/fcrm/pagetype/crm_service_day/crm_service_day.json msgid "Workday" msgstr "" -#. Label of the section_break_rmgo (Section Break) field in DocType 'CRM +#. Label of the section_break_rmgo (Section Break) field in PageType 'CRM #. Service Level Agreement' -#. Label of the working_hours (Table) field in DocType 'CRM Service Level +#. Label of the working_hours (Table) field in PageType 'CRM Service Level #. Agreement' -#: crm/fcrm/doctype/crm_service_level_agreement/crm_service_level_agreement.json +#: crm/fcrm/pagetype/crm_service_level_agreement/crm_service_level_agreement.json msgid "Working Hours" msgstr "" @@ -5967,7 +5967,7 @@ msgstr "" msgid "You do not have permission to access this document" msgstr "" -#: crm/fcrm/doctype/crm_form_script/crm_form_script.py:24 +#: crm/fcrm/pagetype/crm_form_script/crm_form_script.py:24 msgid "You need to be in developer mode to edit a Standard Form Script" msgstr "" @@ -5995,10 +5995,10 @@ msgstr "" msgid "added a" msgstr "" -#. Option for the 'Color' (Select) field in DocType 'CRM Deal Status' -#. Option for the 'Color' (Select) field in DocType 'CRM Lead Status' -#: crm/fcrm/doctype/crm_deal_status/crm_deal_status.json -#: crm/fcrm/doctype/crm_lead_status/crm_lead_status.json +#. Option for the 'Color' (Select) field in PageType 'CRM Deal Status' +#. Option for the 'Color' (Select) field in PageType 'CRM Lead Status' +#: crm/fcrm/pagetype/crm_deal_status/crm_deal_status.json +#: crm/fcrm/pagetype/crm_lead_status/crm_lead_status.json msgid "amber" msgstr "" @@ -6010,17 +6010,17 @@ msgstr "" msgid "assigned a {0} {1} to you" msgstr "" -#. Option for the 'Color' (Select) field in DocType 'CRM Deal Status' -#. Option for the 'Color' (Select) field in DocType 'CRM Lead Status' -#: crm/fcrm/doctype/crm_deal_status/crm_deal_status.json -#: crm/fcrm/doctype/crm_lead_status/crm_lead_status.json +#. Option for the 'Color' (Select) field in PageType 'CRM Deal Status' +#. Option for the 'Color' (Select) field in PageType 'CRM Lead Status' +#: crm/fcrm/pagetype/crm_deal_status/crm_deal_status.json +#: crm/fcrm/pagetype/crm_lead_status/crm_lead_status.json msgid "black" msgstr "" -#. Option for the 'Color' (Select) field in DocType 'CRM Deal Status' -#. Option for the 'Color' (Select) field in DocType 'CRM Lead Status' -#: crm/fcrm/doctype/crm_deal_status/crm_deal_status.json -#: crm/fcrm/doctype/crm_lead_status/crm_lead_status.json +#. Option for the 'Color' (Select) field in PageType 'CRM Deal Status' +#. Option for the 'Color' (Select) field in PageType 'CRM Lead Status' +#: crm/fcrm/pagetype/crm_deal_status/crm_deal_status.json +#: crm/fcrm/pagetype/crm_lead_status/crm_lead_status.json msgid "blue" msgstr "" @@ -6037,10 +6037,10 @@ msgstr "" msgid "condition" msgstr "betingelse" -#. Option for the 'Color' (Select) field in DocType 'CRM Deal Status' -#. Option for the 'Color' (Select) field in DocType 'CRM Lead Status' -#: crm/fcrm/doctype/crm_deal_status/crm_deal_status.json -#: crm/fcrm/doctype/crm_lead_status/crm_lead_status.json +#. Option for the 'Color' (Select) field in PageType 'CRM Deal Status' +#. Option for the 'Color' (Select) field in PageType 'CRM Lead Status' +#: crm/fcrm/pagetype/crm_deal_status/crm_deal_status.json +#: crm/fcrm/pagetype/crm_lead_status/crm_lead_status.json msgid "cyan" msgstr "" @@ -6059,33 +6059,33 @@ msgstr "" msgid "email already exists" msgstr "" -#. Option for the 'Service Provider' (Select) field in DocType 'FCRM Settings' -#: crm/fcrm/doctype/fcrm_settings/fcrm_settings.json +#. Option for the 'Service Provider' (Select) field in PageType 'FCRM Settings' +#: crm/fcrm/pagetype/fcrm_settings/fcrm_settings.json #: frontend/src/components/Settings/CurrencySettings.vue:106 msgid "exchangerate.host" msgstr "" -#. Option for the 'Service Provider' (Select) field in DocType 'FCRM Settings' -#: crm/fcrm/doctype/fcrm_settings/fcrm_settings.json +#. Option for the 'Service Provider' (Select) field in PageType 'FCRM Settings' +#: crm/fcrm/pagetype/fcrm_settings/fcrm_settings.json msgid "frankfurter.app" msgstr "" -#. Option for the 'Color' (Select) field in DocType 'CRM Deal Status' -#. Option for the 'Color' (Select) field in DocType 'CRM Lead Status' -#: crm/fcrm/doctype/crm_deal_status/crm_deal_status.json -#: crm/fcrm/doctype/crm_lead_status/crm_lead_status.json +#. Option for the 'Color' (Select) field in PageType 'CRM Deal Status' +#. Option for the 'Color' (Select) field in PageType 'CRM Lead Status' +#: crm/fcrm/pagetype/crm_deal_status/crm_deal_status.json +#: crm/fcrm/pagetype/crm_lead_status/crm_lead_status.json msgid "gray" msgstr "" -#. Option for the 'Color' (Select) field in DocType 'CRM Deal Status' -#. Option for the 'Color' (Select) field in DocType 'CRM Lead Status' -#: crm/fcrm/doctype/crm_deal_status/crm_deal_status.json -#: crm/fcrm/doctype/crm_lead_status/crm_lead_status.json +#. Option for the 'Color' (Select) field in PageType 'CRM Deal Status' +#. Option for the 'Color' (Select) field in PageType 'CRM Lead Status' +#: crm/fcrm/pagetype/crm_deal_status/crm_deal_status.json +#: crm/fcrm/pagetype/crm_lead_status/crm_lead_status.json msgid "green" msgstr "" -#. Option for the 'Type' (Select) field in DocType 'CRM View Settings' -#: crm/fcrm/doctype/crm_view_settings/crm_view_settings.json +#. Option for the 'Type' (Select) field in PageType 'CRM View Settings' +#: crm/fcrm/pagetype/crm_view_settings/crm_view_settings.json msgid "group_by" msgstr "" @@ -6170,12 +6170,12 @@ msgstr "" msgid "just now" msgstr "" -#. Option for the 'Type' (Select) field in DocType 'CRM View Settings' -#: crm/fcrm/doctype/crm_view_settings/crm_view_settings.json +#. Option for the 'Type' (Select) field in PageType 'CRM View Settings' +#: crm/fcrm/pagetype/crm_view_settings/crm_view_settings.json msgid "kanban" msgstr "" -#: crm/api/doc.py:40 crm/api/doc.py:158 crm/api/doc.py:503 +#: crm/api/pg.py:40 crm/api/pg.py:158 crm/api/pg.py:503 msgid "label" msgstr "" @@ -6184,8 +6184,8 @@ msgstr "" msgid "leads" msgstr "" -#. Option for the 'Type' (Select) field in DocType 'CRM View Settings' -#: crm/fcrm/doctype/crm_view_settings/crm_view_settings.json +#. Option for the 'Type' (Select) field in PageType 'CRM View Settings' +#: crm/fcrm/pagetype/crm_view_settings/crm_view_settings.json msgid "list" msgstr "" @@ -6206,17 +6206,17 @@ msgstr "" msgid "operator" msgstr "" -#. Option for the 'Color' (Select) field in DocType 'CRM Deal Status' -#. Option for the 'Color' (Select) field in DocType 'CRM Lead Status' -#: crm/fcrm/doctype/crm_deal_status/crm_deal_status.json -#: crm/fcrm/doctype/crm_lead_status/crm_lead_status.json +#. Option for the 'Color' (Select) field in PageType 'CRM Deal Status' +#. Option for the 'Color' (Select) field in PageType 'CRM Lead Status' +#: crm/fcrm/pagetype/crm_deal_status/crm_deal_status.json +#: crm/fcrm/pagetype/crm_lead_status/crm_lead_status.json msgid "orange" msgstr "" -#. Option for the 'Color' (Select) field in DocType 'CRM Deal Status' -#. Option for the 'Color' (Select) field in DocType 'CRM Lead Status' -#: crm/fcrm/doctype/crm_deal_status/crm_deal_status.json -#: crm/fcrm/doctype/crm_lead_status/crm_lead_status.json +#. Option for the 'Color' (Select) field in PageType 'CRM Deal Status' +#. Option for the 'Color' (Select) field in PageType 'CRM Lead Status' +#: crm/fcrm/pagetype/crm_deal_status/crm_deal_status.json +#: crm/fcrm/pagetype/crm_lead_status/crm_lead_status.json msgid "pink" msgstr "" @@ -6232,10 +6232,10 @@ msgstr "" msgid "public" msgstr "" -#. Option for the 'Color' (Select) field in DocType 'CRM Deal Status' -#. Option for the 'Color' (Select) field in DocType 'CRM Lead Status' -#: crm/fcrm/doctype/crm_deal_status/crm_deal_status.json -#: crm/fcrm/doctype/crm_lead_status/crm_lead_status.json +#. Option for the 'Color' (Select) field in PageType 'CRM Deal Status' +#. Option for the 'Color' (Select) field in PageType 'CRM Lead Status' +#: crm/fcrm/pagetype/crm_deal_status/crm_deal_status.json +#: crm/fcrm/pagetype/crm_lead_status/crm_lead_status.json msgid "purple" msgstr "" @@ -6243,17 +6243,17 @@ msgstr "" msgid "received a whatsapp message in {0}" msgstr "" -#. Option for the 'Color' (Select) field in DocType 'CRM Deal Status' -#. Option for the 'Color' (Select) field in DocType 'CRM Lead Status' -#: crm/fcrm/doctype/crm_deal_status/crm_deal_status.json -#: crm/fcrm/doctype/crm_lead_status/crm_lead_status.json +#. Option for the 'Color' (Select) field in PageType 'CRM Deal Status' +#. Option for the 'Color' (Select) field in PageType 'CRM Lead Status' +#: crm/fcrm/pagetype/crm_deal_status/crm_deal_status.json +#: crm/fcrm/pagetype/crm_lead_status/crm_lead_status.json msgid "red" msgstr "" -#. Option for the 'Color' (Select) field in DocType 'CRM Deal Status' -#. Option for the 'Color' (Select) field in DocType 'CRM Lead Status' -#: crm/fcrm/doctype/crm_deal_status/crm_deal_status.json -#: crm/fcrm/doctype/crm_lead_status/crm_lead_status.json +#. Option for the 'Color' (Select) field in PageType 'CRM Deal Status' +#. Option for the 'Color' (Select) field in PageType 'CRM Lead Status' +#: crm/fcrm/pagetype/crm_deal_status/crm_deal_status.json +#: crm/fcrm/pagetype/crm_lead_status/crm_lead_status.json msgid "teal" msgstr "" @@ -6266,10 +6266,10 @@ msgstr "" msgid "tomorrow" msgstr "" -#. Option for the 'Color' (Select) field in DocType 'CRM Deal Status' -#. Option for the 'Color' (Select) field in DocType 'CRM Lead Status' -#: crm/fcrm/doctype/crm_deal_status/crm_deal_status.json -#: crm/fcrm/doctype/crm_lead_status/crm_lead_status.json +#. Option for the 'Color' (Select) field in PageType 'CRM Deal Status' +#. Option for the 'Color' (Select) field in PageType 'CRM Lead Status' +#: crm/fcrm/pagetype/crm_deal_status/crm_deal_status.json +#: crm/fcrm/pagetype/crm_lead_status/crm_lead_status.json msgid "violet" msgstr "" @@ -6278,10 +6278,10 @@ msgstr "" msgid "which are not compatible with this UI, you will need to recreate the conditions here if you want to manage and add new conditions from this UI." msgstr "" -#. Option for the 'Color' (Select) field in DocType 'CRM Deal Status' -#. Option for the 'Color' (Select) field in DocType 'CRM Lead Status' -#: crm/fcrm/doctype/crm_deal_status/crm_deal_status.json -#: crm/fcrm/doctype/crm_lead_status/crm_lead_status.json +#. Option for the 'Color' (Select) field in PageType 'CRM Deal Status' +#. Option for the 'Color' (Select) field in PageType 'CRM Lead Status' +#: crm/fcrm/pagetype/crm_deal_status/crm_deal_status.json +#: crm/fcrm/pagetype/crm_lead_status/crm_lead_status.json msgid "yellow" msgstr "" @@ -6379,8 +6379,8 @@ msgid "⚠️ Method \"{0}\" not found in class." msgstr "" #: frontend/src/data/script.js:83 -msgid "⚠️ No class found for doctype: {0}, it is mandatory to have a class for the parent doctype. it can be empty, but it should be present." -msgstr "⚠️ Ingen klasse funnet for dokumenttype (DocType): {0}. Det er obligatorisk å ha en klasse for overordnet dokumenttype (DocType). Klassen kan være tom, men må være til stede." +msgid "⚠️ No class found for pagetype: {0}, it is mandatory to have a class for the parent pagetype. it can be empty, but it should be present." +msgstr "⚠️ Ingen klasse funnet for dokumenttype (PageType): {0}. Det er obligatorisk å ha en klasse for overordnet dokumenttype (PageType). Klassen kan være tom, men må være til stede." #: frontend/src/data/script.js:180 msgid "⚠️ No data found for parent field: {0}" diff --git a/crm/locale/nl.po b/crm/locale/nl.po index 2cbba8f2..d2b1de25 100644 --- a/crm/locale/nl.po +++ b/crm/locale/nl.po @@ -1,6 +1,6 @@ msgid "" msgstr "" -"Project-Id-Version: frappe\n" +"Project-Id-Version: jingrow\n" "Report-Msgid-Bugs-To: shariq@jingrow.com\n" "POT-Creation-Date: 2025-09-21 09:35+0000\n" "PO-Revision-Date: 2025-09-22 20:42\n" @@ -11,10 +11,10 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Generated-By: Babel 2.16.0\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -"X-Crowdin-Project: frappe\n" +"X-Crowdin-Project: jingrow\n" "X-Crowdin-Project-ID: 639578\n" "X-Crowdin-Language: nl\n" -"X-Crowdin-File: /[frappe.crm] develop/crm/locale/main.pot\n" +"X-Crowdin-File: /[jingrow.crm] develop/crm/locale/main.pot\n" "X-Crowdin-File-ID: 97\n" "Language: nl_NL\n" @@ -55,73 +55,73 @@ msgstr "1 week geleden" msgid "1 year ago" msgstr "1 jaar geleden" -#. Option for the 'No. of Employees' (Select) field in DocType 'CRM Deal' -#. Option for the 'No. of Employees' (Select) field in DocType 'CRM Lead' -#. Option for the 'No. of Employees' (Select) field in DocType 'CRM +#. Option for the 'No. of Employees' (Select) field in PageType 'CRM Deal' +#. Option for the 'No. of Employees' (Select) field in PageType 'CRM Lead' +#. Option for the 'No. of Employees' (Select) field in PageType 'CRM #. Organization' -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_lead/crm_lead.json -#: crm/fcrm/doctype/crm_organization/crm_organization.json +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_lead/crm_lead.json +#: crm/fcrm/pagetype/crm_organization/crm_organization.json msgid "1-10" msgstr "" -#. Option for the 'No. of Employees' (Select) field in DocType 'CRM Deal' -#. Option for the 'No. of Employees' (Select) field in DocType 'CRM Lead' -#. Option for the 'No. of Employees' (Select) field in DocType 'CRM +#. Option for the 'No. of Employees' (Select) field in PageType 'CRM Deal' +#. Option for the 'No. of Employees' (Select) field in PageType 'CRM Lead' +#. Option for the 'No. of Employees' (Select) field in PageType 'CRM #. Organization' -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_lead/crm_lead.json -#: crm/fcrm/doctype/crm_organization/crm_organization.json +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_lead/crm_lead.json +#: crm/fcrm/pagetype/crm_organization/crm_organization.json msgid "1000+" msgstr "" -#. Option for the 'No. of Employees' (Select) field in DocType 'CRM Deal' -#. Option for the 'No. of Employees' (Select) field in DocType 'CRM Lead' -#. Option for the 'No. of Employees' (Select) field in DocType 'CRM +#. Option for the 'No. of Employees' (Select) field in PageType 'CRM Deal' +#. Option for the 'No. of Employees' (Select) field in PageType 'CRM Lead' +#. Option for the 'No. of Employees' (Select) field in PageType 'CRM #. Organization' -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_lead/crm_lead.json -#: crm/fcrm/doctype/crm_organization/crm_organization.json +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_lead/crm_lead.json +#: crm/fcrm/pagetype/crm_organization/crm_organization.json msgid "11-50" msgstr "" -#. Option for the 'No. of Employees' (Select) field in DocType 'CRM Deal' -#. Option for the 'No. of Employees' (Select) field in DocType 'CRM Lead' -#. Option for the 'No. of Employees' (Select) field in DocType 'CRM +#. Option for the 'No. of Employees' (Select) field in PageType 'CRM Deal' +#. Option for the 'No. of Employees' (Select) field in PageType 'CRM Lead' +#. Option for the 'No. of Employees' (Select) field in PageType 'CRM #. Organization' -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_lead/crm_lead.json -#: crm/fcrm/doctype/crm_organization/crm_organization.json +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_lead/crm_lead.json +#: crm/fcrm/pagetype/crm_organization/crm_organization.json msgid "201-500" msgstr "" -#. Option for the 'No. of Employees' (Select) field in DocType 'CRM Deal' -#. Option for the 'No. of Employees' (Select) field in DocType 'CRM Lead' -#. Option for the 'No. of Employees' (Select) field in DocType 'CRM +#. Option for the 'No. of Employees' (Select) field in PageType 'CRM Deal' +#. Option for the 'No. of Employees' (Select) field in PageType 'CRM Lead' +#. Option for the 'No. of Employees' (Select) field in PageType 'CRM #. Organization' -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_lead/crm_lead.json -#: crm/fcrm/doctype/crm_organization/crm_organization.json +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_lead/crm_lead.json +#: crm/fcrm/pagetype/crm_organization/crm_organization.json msgid "501-1000" msgstr "" -#. Option for the 'No. of Employees' (Select) field in DocType 'CRM Deal' -#. Option for the 'No. of Employees' (Select) field in DocType 'CRM Lead' -#. Option for the 'No. of Employees' (Select) field in DocType 'CRM +#. Option for the 'No. of Employees' (Select) field in PageType 'CRM Deal' +#. Option for the 'No. of Employees' (Select) field in PageType 'CRM Lead' +#. Option for the 'No. of Employees' (Select) field in PageType 'CRM #. Organization' -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_lead/crm_lead.json -#: crm/fcrm/doctype/crm_organization/crm_organization.json +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_lead/crm_lead.json +#: crm/fcrm/pagetype/crm_organization/crm_organization.json msgid "51-200" msgstr "" -#. Paragraph text in the Frappe CRM Workspace -#: crm/fcrm/workspace/frappe_crm/frappe_crm.json +#. Paragraph text in the Jingrow CRM Workspace +#: crm/fcrm/workspace/jingrow_crm/jingrow_crm.json msgid "META" msgstr "" -#. Paragraph text in the Frappe CRM Workspace -#: crm/fcrm/workspace/frappe_crm/frappe_crm.json +#. Paragraph text in the Jingrow CRM Workspace +#: crm/fcrm/workspace/jingrow_crm/jingrow_crm.json msgid "SHORTCUTS" msgstr "" @@ -130,8 +130,8 @@ msgstr "" msgid "

Dear {{ lead_name }},

\\n\\n

This is a reminder for the payment of {{ grand_total }}.

\\n\\n

Thanks,

\\n

Frappé

" msgstr "" -#. Header text in the Frappe CRM Workspace -#: crm/fcrm/workspace/frappe_crm/frappe_crm.json +#. Header text in the Jingrow CRM Workspace +#: crm/fcrm/workspace/jingrow_crm/jingrow_crm.json msgid "PORTAL" msgstr "" @@ -139,7 +139,7 @@ msgstr "" msgid "@John, can you please check this?" msgstr "" -#: crm/fcrm/doctype/crm_lead/crm_lead.py:56 +#: crm/fcrm/pagetype/crm_lead/crm_lead.py:56 msgid "A Lead requires either a person's name or an organization's name" msgstr "" @@ -147,14 +147,14 @@ msgstr "" msgid "A new account has been created for you at {0}" msgstr "Een nieuw account is aangemaakt voor u op {0}" -#. Label of the api_key (Data) field in DocType 'CRM Exotel Settings' -#. Label of the api_key (Data) field in DocType 'CRM Twilio Settings' -#. Label of the api_key (Data) field in DocType 'ERPNext CRM Settings' -#. Label of the api_key (Data) field in DocType 'Helpdesk CRM Settings' -#: crm/fcrm/doctype/crm_exotel_settings/crm_exotel_settings.json -#: crm/fcrm/doctype/crm_twilio_settings/crm_twilio_settings.json -#: crm/fcrm/doctype/erpnext_crm_settings/erpnext_crm_settings.json -#: crm/fcrm/doctype/helpdesk_crm_settings/helpdesk_crm_settings.json +#. Label of the api_key (Data) field in PageType 'CRM Exotel Settings' +#. Label of the api_key (Data) field in PageType 'CRM Twilio Settings' +#. Label of the api_key (Data) field in PageType 'ERPNext CRM Settings' +#. Label of the api_key (Data) field in PageType 'Helpdesk CRM Settings' +#: crm/fcrm/pagetype/crm_exotel_settings/crm_exotel_settings.json +#: crm/fcrm/pagetype/crm_twilio_settings/crm_twilio_settings.json +#: crm/fcrm/pagetype/erpnext_crm_settings/erpnext_crm_settings.json +#: crm/fcrm/pagetype/helpdesk_crm_settings/helpdesk_crm_settings.json msgid "API Key" msgstr "" @@ -162,17 +162,17 @@ msgstr "" msgid "API Key is required" msgstr "" -#. Label of the api_secret (Password) field in DocType 'CRM Twilio Settings' -#. Label of the api_secret (Password) field in DocType 'ERPNext CRM Settings' -#. Label of the api_secret (Password) field in DocType 'Helpdesk CRM Settings' -#: crm/fcrm/doctype/crm_twilio_settings/crm_twilio_settings.json -#: crm/fcrm/doctype/erpnext_crm_settings/erpnext_crm_settings.json -#: crm/fcrm/doctype/helpdesk_crm_settings/helpdesk_crm_settings.json +#. Label of the api_secret (Password) field in PageType 'CRM Twilio Settings' +#. Label of the api_secret (Password) field in PageType 'ERPNext CRM Settings' +#. Label of the api_secret (Password) field in PageType 'Helpdesk CRM Settings' +#: crm/fcrm/pagetype/crm_twilio_settings/crm_twilio_settings.json +#: crm/fcrm/pagetype/erpnext_crm_settings/erpnext_crm_settings.json +#: crm/fcrm/pagetype/helpdesk_crm_settings/helpdesk_crm_settings.json msgid "API Secret" msgstr "" -#. Label of the api_token (Password) field in DocType 'CRM Exotel Settings' -#: crm/fcrm/doctype/crm_exotel_settings/crm_exotel_settings.json +#. Label of the api_token (Password) field in PageType 'CRM Exotel Settings' +#: crm/fcrm/pagetype/crm_exotel_settings/crm_exotel_settings.json msgid "API Token" msgstr "" @@ -180,7 +180,7 @@ msgstr "" msgid "Accept" msgstr "" -#: crm/fcrm/doctype/crm_invitation/crm_invitation.js:7 +#: crm/fcrm/pagetype/crm_invitation/crm_invitation.js:7 msgid "Accept Invitation" msgstr "" @@ -188,22 +188,22 @@ msgstr "" msgid "Accept call" msgstr "" -#. Option for the 'Status' (Select) field in DocType 'CRM Invitation' -#: crm/fcrm/doctype/crm_invitation/crm_invitation.json +#. Option for the 'Status' (Select) field in PageType 'CRM Invitation' +#: crm/fcrm/pagetype/crm_invitation/crm_invitation.json msgid "Accepted" msgstr "" -#. Label of the accepted_at (Datetime) field in DocType 'CRM Invitation' -#: crm/fcrm/doctype/crm_invitation/crm_invitation.json +#. Label of the accepted_at (Datetime) field in PageType 'CRM Invitation' +#: crm/fcrm/pagetype/crm_invitation/crm_invitation.json msgid "Accepted At" msgstr "" -#. Label of the access_key (Data) field in DocType 'FCRM Settings' -#: crm/fcrm/doctype/fcrm_settings/fcrm_settings.json +#. Label of the access_key (Data) field in PageType 'FCRM Settings' +#: crm/fcrm/pagetype/fcrm_settings/fcrm_settings.json msgid "Access Key" msgstr "" -#: crm/fcrm/doctype/fcrm_settings/fcrm_settings.py:156 +#: crm/fcrm/pagetype/fcrm_settings/fcrm_settings.py:156 msgid "Access Key is required for Service Provider: {0}" msgstr "" @@ -219,10 +219,10 @@ msgstr "" msgid "Account Name" msgstr "" -#. Label of the account_sid (Data) field in DocType 'CRM Exotel Settings' -#. Label of the account_sid (Data) field in DocType 'CRM Twilio Settings' -#: crm/fcrm/doctype/crm_exotel_settings/crm_exotel_settings.json -#: crm/fcrm/doctype/crm_twilio_settings/crm_twilio_settings.json +#. Label of the account_sid (Data) field in PageType 'CRM Exotel Settings' +#. Label of the account_sid (Data) field in PageType 'CRM Twilio Settings' +#: crm/fcrm/pagetype/crm_exotel_settings/crm_exotel_settings.json +#: crm/fcrm/pagetype/crm_twilio_settings/crm_twilio_settings.json msgid "Account SID" msgstr "" @@ -296,9 +296,9 @@ msgstr "" msgid "Add Tab" msgstr "" -#. Label of the add_weekly_holidays_section (Section Break) field in DocType +#. Label of the add_weekly_holidays_section (Section Break) field in PageType #. 'CRM Holiday List' -#: crm/fcrm/doctype/crm_holiday_list/crm_holiday_list.json +#: crm/fcrm/pagetype/crm_holiday_list/crm_holiday_list.json msgid "Add Weekly Holidays" msgstr "" @@ -363,8 +363,8 @@ msgstr "" msgid "Add sample data" msgstr "" -#. Description of the 'Icon' (Code) field in DocType 'CRM Dropdown Item' -#: crm/fcrm/doctype/crm_dropdown_item/crm_dropdown_item.json +#. Description of the 'Icon' (Code) field in PageType 'CRM Dropdown Item' +#: crm/fcrm/pagetype/crm_dropdown_item/crm_dropdown_item.json msgid "Add svg code or use feather icons e.g 'settings'" msgstr "" @@ -372,8 +372,8 @@ msgstr "" msgid "Add task" msgstr "" -#. Label of the add_to_holidays (Button) field in DocType 'CRM Holiday List' -#: crm/fcrm/doctype/crm_holiday_list/crm_holiday_list.json +#. Label of the add_to_holidays (Button) field in PageType 'CRM Holiday List' +#: crm/fcrm/pagetype/crm_holiday_list/crm_holiday_list.json msgid "Add to Holidays" msgstr "" @@ -385,8 +385,8 @@ msgstr "" msgid "Add, edit, and manage email templates for various CRM communications" msgstr "" -#. Label of the address (Link) field in DocType 'CRM Organization' -#: crm/fcrm/doctype/crm_organization/crm_organization.json +#. Label of the address (Link) field in PageType 'CRM Organization' +#: crm/fcrm/pagetype/crm_organization/crm_organization.json msgid "Address" msgstr "" @@ -406,14 +406,14 @@ msgid "Agent is unavailable to take the call, please call after some time." msgstr "" #. Name of a role -#: crm/fcrm/doctype/crm_exotel_settings/crm_exotel_settings.json -#: crm/fcrm/doctype/crm_fields_layout/crm_fields_layout.json -#: crm/fcrm/doctype/crm_form_script/crm_form_script.json -#: crm/fcrm/doctype/crm_industry/crm_industry.json -#: crm/fcrm/doctype/crm_lead/crm_lead.json -#: crm/fcrm/doctype/crm_lead_source/crm_lead_source.json -#: crm/fcrm/doctype/crm_lead_status/crm_lead_status.json -#: crm/fcrm/doctype/fcrm_settings/fcrm_settings.json +#: crm/fcrm/pagetype/crm_exotel_settings/crm_exotel_settings.json +#: crm/fcrm/pagetype/crm_fields_layout/crm_fields_layout.json +#: crm/fcrm/pagetype/crm_form_script/crm_form_script.json +#: crm/fcrm/pagetype/crm_industry/crm_industry.json +#: crm/fcrm/pagetype/crm_lead/crm_lead.json +#: crm/fcrm/pagetype/crm_lead_source/crm_lead_source.json +#: crm/fcrm/pagetype/crm_lead_status/crm_lead_status.json +#: crm/fcrm/pagetype/fcrm_settings/fcrm_settings.json #: frontend/src/components/Settings/EmailTemplate/EmailTemplates.vue:76 #: frontend/src/components/Settings/Users.vue:85 msgid "All" @@ -426,16 +426,16 @@ msgstr "" msgid "All day" msgstr "" -#. Label of the amount (Currency) field in DocType 'CRM Products' -#: crm/fcrm/doctype/crm_products/crm_products.json +#. Label of the amount (Currency) field in PageType 'CRM Products' +#: crm/fcrm/pagetype/crm_products/crm_products.json #: frontend/src/pages/Contact.vue:499 frontend/src/pages/MobileContact.vue:507 #: frontend/src/pages/MobileOrganization.vue:451 #: frontend/src/pages/Organization.vue:472 msgid "Amount" msgstr "" -#. Description of the 'Net Amount' (Currency) field in DocType 'CRM Products' -#: crm/fcrm/doctype/crm_products/crm_products.json +#. Description of the 'Net Amount' (Currency) field in PageType 'CRM Products' +#: crm/fcrm/pagetype/crm_products/crm_products.json msgid "Amount after discount" msgstr "" @@ -447,13 +447,13 @@ msgstr "" msgid "An error occurred while updating the document" msgstr "" -#. Description of the 'Favicon' (Attach) field in DocType 'FCRM Settings' -#: crm/fcrm/doctype/fcrm_settings/fcrm_settings.json +#. Description of the 'Favicon' (Attach) field in PageType 'FCRM Settings' +#: crm/fcrm/pagetype/fcrm_settings/fcrm_settings.json msgid "An icon file with .ico extension. Should be 16 x 16 px. Generated using a favicon generator. [favicon-generator.org]" msgstr "" -#. Description of the 'Logo' (Attach) field in DocType 'FCRM Settings' -#: crm/fcrm/doctype/fcrm_settings/fcrm_settings.json +#. Description of the 'Logo' (Attach) field in PageType 'FCRM Settings' +#: crm/fcrm/pagetype/fcrm_settings/fcrm_settings.json msgid "An image with 1:1 & 2:1 ratio is preferred" msgstr "" @@ -461,12 +461,12 @@ msgstr "" msgid "And" msgstr "" -#. Label of the annual_revenue (Currency) field in DocType 'CRM Deal' -#. Label of the annual_revenue (Currency) field in DocType 'CRM Lead' -#. Label of the annual_revenue (Currency) field in DocType 'CRM Organization' -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_lead/crm_lead.json -#: crm/fcrm/doctype/crm_organization/crm_organization.json +#. Label of the annual_revenue (Currency) field in PageType 'CRM Deal' +#. Label of the annual_revenue (Currency) field in PageType 'CRM Lead' +#. Label of the annual_revenue (Currency) field in PageType 'CRM Organization' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_lead/crm_lead.json +#: crm/fcrm/pagetype/crm_organization/crm_organization.json msgid "Annual Revenue" msgstr "" @@ -488,13 +488,13 @@ msgstr "" msgid "Apply" msgstr "" -#. Label of the apply_on (Link) field in DocType 'CRM Service Level Agreement' -#: crm/fcrm/doctype/crm_service_level_agreement/crm_service_level_agreement.json +#. Label of the apply_on (Link) field in PageType 'CRM Service Level Agreement' +#: crm/fcrm/pagetype/crm_service_level_agreement/crm_service_level_agreement.json msgid "Apply On" msgstr "" -#. Label of the view (Select) field in DocType 'CRM Form Script' -#: crm/fcrm/doctype/crm_form_script/crm_form_script.json +#. Label of the view (Select) field in PageType 'CRM Form Script' +#: crm/fcrm/pagetype/crm_form_script/crm_form_script.json msgid "Apply To" msgstr "" @@ -540,10 +540,10 @@ msgid "Are you sure you want to go back? Unsaved changes will be lost." msgstr "" #: frontend/src/composables/frappecloud.js:24 -msgid "Are you sure you want to login to your Frappe Cloud dashboard?" +msgid "Are you sure you want to login to your Jingrow Cloud dashboard?" msgstr "" -#: crm/fcrm/doctype/erpnext_crm_settings/erpnext_crm_settings.js:9 +#: crm/fcrm/pagetype/erpnext_crm_settings/erpnext_crm_settings.js:9 msgid "Are you sure you want to reset 'Create Quotation from CRM Deal' Form Script?" msgstr "" @@ -555,7 +555,7 @@ msgstr "" msgid "Are you sure you want to unlink {0} linked item(s)?" msgstr "" -#: crm/fcrm/doctype/fcrm_settings/fcrm_settings.py:193 +#: crm/fcrm/pagetype/fcrm_settings/fcrm_settings.py:193 msgid "Ask your manager to set up the Exchange Rate Provider, as default provider does not support currency conversion for {0} to {1}." msgstr "" @@ -581,8 +581,8 @@ msgstr "" msgid "Assign to me" msgstr "" -#. Label of the assigned_to (Link) field in DocType 'CRM Task' -#: crm/fcrm/doctype/crm_task/crm_task.json +#. Label of the assigned_to (Link) field in PageType 'CRM Task' +#: crm/fcrm/pagetype/crm_task/crm_task.json msgid "Assigned To" msgstr "" @@ -594,13 +594,13 @@ msgstr "" msgid "Assignees" msgstr "" -#. Option for the 'Type' (Select) field in DocType 'CRM Notification' -#: crm/fcrm/doctype/crm_notification/crm_notification.json +#. Option for the 'Type' (Select) field in PageType 'CRM Notification' +#: crm/fcrm/pagetype/crm_notification/crm_notification.json msgid "Assignment" msgstr "" -#. Label of a shortcut in the Frappe CRM Workspace -#: crm/fcrm/workspace/frappe_crm/frappe_crm.json +#. Label of a shortcut in the Jingrow CRM Workspace +#: crm/fcrm/workspace/jingrow_crm/jingrow_crm.json msgid "Assignment Rule" msgstr "" @@ -678,14 +678,14 @@ msgstr "" msgid "Attendees" msgstr "" -#. Label of the auth_token (Password) field in DocType 'CRM Twilio Settings' -#: crm/fcrm/doctype/crm_twilio_settings/crm_twilio_settings.json +#. Label of the auth_token (Password) field in PageType 'CRM Twilio Settings' +#: crm/fcrm/pagetype/crm_twilio_settings/crm_twilio_settings.json msgid "Auth Token" msgstr "" -#. Label of the auto_update_expected_deal_value (Check) field in DocType 'FCRM +#. Label of the auto_update_expected_deal_value (Check) field in PageType 'FCRM #. Settings' -#: crm/fcrm/doctype/fcrm_settings/fcrm_settings.json +#: crm/fcrm/pagetype/fcrm_settings/fcrm_settings.json msgid "Auto Update Expected Deal Value" msgstr "" @@ -702,8 +702,8 @@ msgid "Auto update of expected deal value enabled" msgstr "" #. Description of the 'Auto Update Expected Deal Value' (Check) field in -#. DocType 'FCRM Settings' -#: crm/fcrm/doctype/fcrm_settings/fcrm_settings.json +#. PageType 'FCRM Settings' +#: crm/fcrm/pagetype/fcrm_settings/fcrm_settings.json #: frontend/src/components/Settings/ForecastingSettings.vue:46 msgid "Automatically update \"Expected Deal Value\" based on the total value of associated products in a deal" msgstr "" @@ -793,8 +793,8 @@ msgstr "" msgid "Back to file upload" msgstr "" -#. Option for the 'Status' (Select) field in DocType 'CRM Task' -#: crm/fcrm/doctype/crm_task/crm_task.json +#. Option for the 'Status' (Select) field in PageType 'CRM Task' +#: crm/fcrm/pagetype/crm_task/crm_task.json msgid "Backlog" msgstr "" @@ -818,8 +818,8 @@ msgstr "" msgid "Brand settings" msgstr "" -#. Label of the branding_tab (Tab Break) field in DocType 'FCRM Settings' -#: crm/fcrm/doctype/fcrm_settings/fcrm_settings.json +#. Label of the branding_tab (Tab Break) field in PageType 'FCRM Settings' +#: crm/fcrm/pagetype/fcrm_settings/fcrm_settings.json msgid "Branding" msgstr "" @@ -827,8 +827,8 @@ msgstr "" msgid "Bulk Edit" msgstr "" -#. Option for the 'Status' (Select) field in DocType 'CRM Call Log' -#: crm/fcrm/doctype/crm_call_log/crm_call_log.json +#. Option for the 'Status' (Select) field in PageType 'CRM Call Log' +#: crm/fcrm/pagetype/crm_call_log/crm_call_log.json msgid "Busy" msgstr "" @@ -838,174 +838,174 @@ msgstr "" msgid "CC" msgstr "" -#. Name of a DocType -#: crm/fcrm/doctype/crm_call_log/crm_call_log.json +#. Name of a PageType +#: crm/fcrm/pagetype/crm_call_log/crm_call_log.json msgid "CRM Call Log" msgstr "" -#. Name of a DocType -#: crm/fcrm/doctype/crm_communication_status/crm_communication_status.json +#. Name of a PageType +#: crm/fcrm/pagetype/crm_communication_status/crm_communication_status.json msgid "CRM Communication Status" msgstr "" -#. Name of a DocType -#: crm/fcrm/doctype/crm_contacts/crm_contacts.json +#. Name of a PageType +#: crm/fcrm/pagetype/crm_contacts/crm_contacts.json msgid "CRM Contacts" msgstr "" -#. Name of a DocType -#: crm/fcrm/doctype/crm_dashboard/crm_dashboard.json +#. Name of a PageType +#: crm/fcrm/pagetype/crm_dashboard/crm_dashboard.json #: frontend/src/pages/Dashboard.vue:304 msgid "CRM Dashboard" msgstr "" -#. Name of a DocType -#: crm/fcrm/doctype/crm_deal/crm_deal.json +#. Name of a PageType +#: crm/fcrm/pagetype/crm_deal/crm_deal.json msgid "CRM Deal" msgstr "" -#. Name of a DocType -#: crm/fcrm/doctype/crm_deal_status/crm_deal_status.json +#. Name of a PageType +#: crm/fcrm/pagetype/crm_deal_status/crm_deal_status.json msgid "CRM Deal Status" msgstr "" -#. Name of a DocType -#: crm/fcrm/doctype/crm_dropdown_item/crm_dropdown_item.json +#. Name of a PageType +#: crm/fcrm/pagetype/crm_dropdown_item/crm_dropdown_item.json msgid "CRM Dropdown Item" msgstr "" -#. Name of a DocType -#: crm/fcrm/doctype/crm_exotel_settings/crm_exotel_settings.json +#. Name of a PageType +#: crm/fcrm/pagetype/crm_exotel_settings/crm_exotel_settings.json msgid "CRM Exotel Settings" msgstr "" -#. Name of a DocType -#: crm/fcrm/doctype/crm_fields_layout/crm_fields_layout.json +#. Name of a PageType +#: crm/fcrm/pagetype/crm_fields_layout/crm_fields_layout.json msgid "CRM Fields Layout" msgstr "" -#. Name of a DocType -#: crm/fcrm/doctype/crm_form_script/crm_form_script.json +#. Name of a PageType +#: crm/fcrm/pagetype/crm_form_script/crm_form_script.json msgid "CRM Form Script" msgstr "" -#. Name of a DocType -#: crm/fcrm/doctype/crm_global_settings/crm_global_settings.json +#. Name of a PageType +#: crm/fcrm/pagetype/crm_global_settings/crm_global_settings.json msgid "CRM Global Settings" msgstr "" -#. Name of a DocType -#: crm/fcrm/doctype/crm_holiday/crm_holiday.json +#. Name of a PageType +#: crm/fcrm/pagetype/crm_holiday/crm_holiday.json msgid "CRM Holiday" msgstr "" -#. Name of a DocType -#: crm/fcrm/doctype/crm_holiday_list/crm_holiday_list.json +#. Name of a PageType +#: crm/fcrm/pagetype/crm_holiday_list/crm_holiday_list.json msgid "CRM Holiday List" msgstr "" -#. Name of a DocType -#: crm/fcrm/doctype/crm_industry/crm_industry.json +#. Name of a PageType +#: crm/fcrm/pagetype/crm_industry/crm_industry.json msgid "CRM Industry" msgstr "" -#. Name of a DocType -#: crm/fcrm/doctype/crm_invitation/crm_invitation.json +#. Name of a PageType +#: crm/fcrm/pagetype/crm_invitation/crm_invitation.json msgid "CRM Invitation" msgstr "" -#. Name of a DocType -#: crm/fcrm/doctype/crm_lead/crm_lead.json +#. Name of a PageType +#: crm/fcrm/pagetype/crm_lead/crm_lead.json msgid "CRM Lead" msgstr "" -#. Name of a DocType -#: crm/fcrm/doctype/crm_lead_source/crm_lead_source.json +#. Name of a PageType +#: crm/fcrm/pagetype/crm_lead_source/crm_lead_source.json msgid "CRM Lead Source" msgstr "" -#. Name of a DocType -#: crm/fcrm/doctype/crm_lead_status/crm_lead_status.json +#. Name of a PageType +#: crm/fcrm/pagetype/crm_lead_status/crm_lead_status.json msgid "CRM Lead Status" msgstr "" -#. Name of a DocType -#: crm/fcrm/doctype/crm_lost_reason/crm_lost_reason.json +#. Name of a PageType +#: crm/fcrm/pagetype/crm_lost_reason/crm_lost_reason.json msgid "CRM Lost Reason" msgstr "" -#. Name of a DocType -#: crm/fcrm/doctype/crm_notification/crm_notification.json +#. Name of a PageType +#: crm/fcrm/pagetype/crm_notification/crm_notification.json msgid "CRM Notification" msgstr "" -#. Name of a DocType -#: crm/fcrm/doctype/crm_organization/crm_organization.json +#. Name of a PageType +#: crm/fcrm/pagetype/crm_organization/crm_organization.json msgid "CRM Organization" msgstr "" -#. Label of a shortcut in the Frappe CRM Workspace -#: crm/fcrm/workspace/frappe_crm/frappe_crm.json +#. Label of a shortcut in the Jingrow CRM Workspace +#: crm/fcrm/workspace/jingrow_crm/jingrow_crm.json msgid "CRM Portal Page" msgstr "" -#. Name of a DocType -#: crm/fcrm/doctype/crm_product/crm_product.json +#. Name of a PageType +#: crm/fcrm/pagetype/crm_product/crm_product.json msgid "CRM Product" msgstr "" -#. Name of a DocType -#: crm/fcrm/doctype/crm_products/crm_products.json +#. Name of a PageType +#: crm/fcrm/pagetype/crm_products/crm_products.json msgid "CRM Products" msgstr "" -#. Name of a DocType -#: crm/fcrm/doctype/crm_service_day/crm_service_day.json +#. Name of a PageType +#: crm/fcrm/pagetype/crm_service_day/crm_service_day.json msgid "CRM Service Day" msgstr "" -#. Name of a DocType -#: crm/fcrm/doctype/crm_service_level_agreement/crm_service_level_agreement.json +#. Name of a PageType +#: crm/fcrm/pagetype/crm_service_level_agreement/crm_service_level_agreement.json msgid "CRM Service Level Agreement" msgstr "" -#. Name of a DocType -#: crm/fcrm/doctype/crm_service_level_priority/crm_service_level_priority.json +#. Name of a PageType +#: crm/fcrm/pagetype/crm_service_level_priority/crm_service_level_priority.json msgid "CRM Service Level Priority" msgstr "" -#. Name of a DocType -#: crm/fcrm/doctype/crm_status_change_log/crm_status_change_log.json +#. Name of a PageType +#: crm/fcrm/pagetype/crm_status_change_log/crm_status_change_log.json msgid "CRM Status Change Log" msgstr "" -#. Name of a DocType -#: crm/fcrm/doctype/crm_task/crm_task.json +#. Name of a PageType +#: crm/fcrm/pagetype/crm_task/crm_task.json msgid "CRM Task" msgstr "" -#. Name of a DocType -#: crm/fcrm/doctype/crm_telephony_agent/crm_telephony_agent.json +#. Name of a PageType +#: crm/fcrm/pagetype/crm_telephony_agent/crm_telephony_agent.json msgid "CRM Telephony Agent" msgstr "" -#. Name of a DocType -#: crm/fcrm/doctype/crm_telephony_phone/crm_telephony_phone.json +#. Name of a PageType +#: crm/fcrm/pagetype/crm_telephony_phone/crm_telephony_phone.json msgid "CRM Telephony Phone" msgstr "" -#. Name of a DocType -#: crm/fcrm/doctype/crm_territory/crm_territory.json +#. Name of a PageType +#: crm/fcrm/pagetype/crm_territory/crm_territory.json msgid "CRM Territory" msgstr "" -#. Name of a DocType -#: crm/fcrm/doctype/crm_twilio_settings/crm_twilio_settings.json +#. Name of a PageType +#: crm/fcrm/pagetype/crm_twilio_settings/crm_twilio_settings.json msgid "CRM Twilio Settings" msgstr "" -#. Name of a DocType -#: crm/fcrm/doctype/crm_view_settings/crm_view_settings.json +#. Name of a PageType +#: crm/fcrm/pagetype/crm_view_settings/crm_view_settings.json msgid "CRM View Settings" msgstr "" @@ -1021,13 +1021,13 @@ msgstr "" msgid "Call Details" msgstr "" -#. Label of the receiver (Link) field in DocType 'CRM Call Log' -#: crm/fcrm/doctype/crm_call_log/crm_call_log.json +#. Label of the receiver (Link) field in PageType 'CRM Call Log' +#: crm/fcrm/pagetype/crm_call_log/crm_call_log.json msgid "Call Received By" msgstr "" -#. Description of the 'Duration' (Duration) field in DocType 'CRM Call Log' -#: crm/fcrm/doctype/crm_call_log/crm_call_log.json +#. Description of the 'Duration' (Duration) field in PageType 'CRM Call Log' +#: crm/fcrm/pagetype/crm_call_log/crm_call_log.json msgid "Call duration in seconds" msgstr "" @@ -1045,8 +1045,8 @@ msgstr "" msgid "Call with John Doe" msgstr "" -#. Label of the caller (Link) field in DocType 'CRM Call Log' -#: crm/fcrm/doctype/crm_call_log/crm_call_log.json +#. Label of the caller (Link) field in PageType 'CRM Call Log' +#: crm/fcrm/pagetype/crm_call_log/crm_call_log.json msgid "Caller" msgstr "" @@ -1083,10 +1083,10 @@ msgstr "" msgid "Cancel" msgstr "" -#. Option for the 'Status' (Select) field in DocType 'CRM Call Log' -#. Option for the 'Status' (Select) field in DocType 'CRM Task' -#: crm/fcrm/doctype/crm_call_log/crm_call_log.json -#: crm/fcrm/doctype/crm_task/crm_task.json +#. Option for the 'Status' (Select) field in PageType 'CRM Call Log' +#. Option for the 'Status' (Select) field in PageType 'CRM Task' +#: crm/fcrm/pagetype/crm_call_log/crm_call_log.json +#: crm/fcrm/pagetype/crm_task/crm_task.json msgid "Canceled" msgstr "" @@ -1094,7 +1094,7 @@ msgstr "" msgid "Cannot change role of user with Admin access" msgstr "" -#: crm/fcrm/doctype/fcrm_settings/fcrm_settings.py:34 +#: crm/fcrm/pagetype/fcrm_settings/fcrm_settings.py:34 msgid "Cannot delete standard items {0}" msgstr "" @@ -1189,8 +1189,8 @@ msgstr "" msgid "Clear Sort" msgstr "" -#. Label of the clear_table (Button) field in DocType 'CRM Holiday List' -#: crm/fcrm/doctype/crm_holiday_list/crm_holiday_list.json +#. Label of the clear_table (Button) field in PageType 'CRM Holiday List' +#: crm/fcrm/pagetype/crm_holiday_list/crm_holiday_list.json msgid "Clear Table" msgstr "" @@ -1211,8 +1211,8 @@ msgstr "" msgid "Close panel" msgstr "" -#. Label of the closed_date (Date) field in DocType 'CRM Deal' -#: crm/fcrm/doctype/crm_deal/crm_deal.json +#. Label of the closed_date (Date) field in PageType 'CRM Deal' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json msgid "Closed Date" msgstr "" @@ -1224,10 +1224,10 @@ msgstr "" msgid "Collapsible" msgstr "" -#. Label of the color (Select) field in DocType 'CRM Deal Status' -#. Label of the color (Select) field in DocType 'CRM Lead Status' -#: crm/fcrm/doctype/crm_deal_status/crm_deal_status.json -#: crm/fcrm/doctype/crm_lead_status/crm_lead_status.json +#. Label of the color (Select) field in PageType 'CRM Deal Status' +#. Label of the color (Select) field in PageType 'CRM Lead Status' +#: crm/fcrm/pagetype/crm_deal_status/crm_deal_status.json +#: crm/fcrm/pagetype/crm_lead_status/crm_lead_status.json msgid "Color" msgstr "" @@ -1235,20 +1235,20 @@ msgstr "" msgid "Column" msgstr "" -#. Label of the column_field (Data) field in DocType 'CRM View Settings' -#: crm/fcrm/doctype/crm_view_settings/crm_view_settings.json +#. Label of the column_field (Data) field in PageType 'CRM View Settings' +#: crm/fcrm/pagetype/crm_view_settings/crm_view_settings.json #: frontend/src/components/Kanban/KanbanSettings.vue:12 msgid "Column Field" msgstr "" -#. Label of the columns (Code) field in DocType 'CRM View Settings' -#: crm/fcrm/doctype/crm_view_settings/crm_view_settings.json +#. Label of the columns (Code) field in PageType 'CRM View Settings' +#: crm/fcrm/pagetype/crm_view_settings/crm_view_settings.json #: frontend/src/components/ColumnSettings.vue:4 msgid "Columns" msgstr "" -#. Label of the comment (Link) field in DocType 'CRM Notification' -#: crm/fcrm/doctype/crm_notification/crm_notification.json +#. Label of the comment (Link) field in PageType 'CRM Notification' +#: crm/fcrm/pagetype/crm_notification/crm_notification.json #: frontend/src/components/CommentBox.vue:78 #: frontend/src/components/CommunicationArea.vue:16 #: frontend/src/components/Layouts/AppSidebar.vue:579 @@ -1264,20 +1264,20 @@ msgstr "" msgid "Common reasons for losing deals" msgstr "" -#. Label of the communication_status (Link) field in DocType 'CRM Deal' -#. Label of the communication_status (Link) field in DocType 'CRM Lead' -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_lead/crm_lead.json +#. Label of the communication_status (Link) field in PageType 'CRM Deal' +#. Label of the communication_status (Link) field in PageType 'CRM Lead' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_lead/crm_lead.json msgid "Communication Status" msgstr "" -#. Label of a shortcut in the Frappe CRM Workspace -#: crm/fcrm/workspace/frappe_crm/frappe_crm.json +#. Label of a shortcut in the Jingrow CRM Workspace +#: crm/fcrm/workspace/jingrow_crm/jingrow_crm.json msgid "Communication Statuses" msgstr "" -#. Label of the erpnext_company (Data) field in DocType 'ERPNext CRM Settings' -#: crm/fcrm/doctype/erpnext_crm_settings/erpnext_crm_settings.json +#. Label of the erpnext_company (Data) field in PageType 'ERPNext CRM Settings' +#: crm/fcrm/pagetype/erpnext_crm_settings/erpnext_crm_settings.json msgid "Company in ERPNext Site" msgstr "" @@ -1285,18 +1285,18 @@ msgstr "" msgid "Complete Registration" msgstr "" -#. Option for the 'Status' (Select) field in DocType 'CRM Call Log' -#: crm/fcrm/doctype/crm_call_log/crm_call_log.json +#. Option for the 'Status' (Select) field in PageType 'CRM Call Log' +#: crm/fcrm/pagetype/crm_call_log/crm_call_log.json msgid "Completed" msgstr "" -#. Option for the 'Device' (Select) field in DocType 'CRM Telephony Agent' -#: crm/fcrm/doctype/crm_telephony_agent/crm_telephony_agent.json +#. Option for the 'Device' (Select) field in PageType 'CRM Telephony Agent' +#: crm/fcrm/pagetype/crm_telephony_agent/crm_telephony_agent.json msgid "Computer" msgstr "" -#. Label of the condition (Code) field in DocType 'CRM Service Level Agreement' -#: crm/fcrm/doctype/crm_service_level_agreement/crm_service_level_agreement.json +#. Label of the condition (Code) field in PageType 'CRM Service Level Agreement' +#: crm/fcrm/pagetype/crm_service_level_agreement/crm_service_level_agreement.json msgid "Condition" msgstr "" @@ -1354,17 +1354,17 @@ msgstr "" msgid "Connect your email" msgstr "" -#. Label of the contact (Link) field in DocType 'CRM Contacts' -#. Label of the contact (Link) field in DocType 'CRM Deal' -#: crm/fcrm/doctype/crm_contacts/crm_contacts.json -#: crm/fcrm/doctype/crm_deal/crm_deal.json +#. Label of the contact (Link) field in PageType 'CRM Contacts' +#. Label of the contact (Link) field in PageType 'CRM Deal' +#: crm/fcrm/pagetype/crm_contacts/crm_contacts.json +#: crm/fcrm/pagetype/crm_deal/crm_deal.json #: frontend/src/components/Layouts/AppSidebar.vue:552 #: frontend/src/components/Modals/ConvertToDealModal.vue:51 #: frontend/src/pages/MobileLead.vue:145 msgid "Contact" msgstr "" -#: crm/fcrm/doctype/crm_lead/crm_lead.py:212 +#: crm/fcrm/pagetype/crm_lead/crm_lead.py:212 msgid "Contact Already Exists" msgstr "" @@ -1384,7 +1384,7 @@ msgstr "" msgid "Contact already added" msgstr "" -#: crm/fcrm/doctype/crm_lead/crm_lead.py:211 +#: crm/fcrm/pagetype/crm_lead/crm_lead.py:211 msgid "Contact already exists with {0}" msgstr "" @@ -1405,18 +1405,18 @@ msgstr "" msgid "Contact updated" msgstr "" -#. Label of the contacts_tab (Tab Break) field in DocType 'CRM Deal' -#. Label of the contacts (Table) field in DocType 'CRM Deal' -#. Label of a shortcut in the Frappe CRM Workspace -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/workspace/frappe_crm/frappe_crm.json +#. Label of the contacts_tab (Tab Break) field in PageType 'CRM Deal' +#. Label of the contacts (Table) field in PageType 'CRM Deal' +#. Label of a shortcut in the Jingrow CRM Workspace +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/workspace/jingrow_crm/jingrow_crm.json #: frontend/src/pages/Contact.vue:234 frontend/src/pages/MobileContact.vue:212 #: frontend/src/pages/MobileOrganization.vue:331 msgid "Contacts" msgstr "" -#. Label of the content (Text Editor) field in DocType 'FCRM Note' -#: crm/fcrm/doctype/fcrm_note/fcrm_note.json +#. Label of the content (Text Editor) field in PageType 'FCRM Note' +#: crm/fcrm/pagetype/fcrm_note/fcrm_note.json #: frontend/src/components/Modals/NoteModal.vue:33 #: frontend/src/components/Settings/EmailTemplate/EditEmailTemplate.vue:89 #: frontend/src/components/Settings/EmailTemplate/EditEmailTemplate.vue:102 @@ -1456,8 +1456,8 @@ msgstr "" msgid "Convert to Deal" msgstr "" -#. Label of the converted (Check) field in DocType 'CRM Lead' -#: crm/fcrm/doctype/crm_lead/crm_lead.json +#. Label of the converted (Check) field in PageType 'CRM Lead' +#: crm/fcrm/pagetype/crm_lead/crm_lead.json msgid "Converted" msgstr "" @@ -1533,9 +1533,9 @@ msgstr "" msgid "Create an event" msgstr "" -#. Label of the create_customer_on_status_change (Check) field in DocType +#. Label of the create_customer_on_status_change (Check) field in PageType #. 'ERPNext CRM Settings' -#: crm/fcrm/doctype/erpnext_crm_settings/erpnext_crm_settings.json +#: crm/fcrm/pagetype/erpnext_crm_settings/erpnext_crm_settings.json msgid "Create customer on status change" msgstr "" @@ -1560,13 +1560,13 @@ msgstr "" msgid "Create your first task" msgstr "" -#. Label of the currency (Link) field in DocType 'CRM Deal' -#. Label of the currency (Link) field in DocType 'CRM Organization' -#. Label of the currency (Link) field in DocType 'FCRM Settings' -#. Label of the currency_tab (Tab Break) field in DocType 'FCRM Settings' -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_organization/crm_organization.json -#: crm/fcrm/doctype/fcrm_settings/fcrm_settings.json +#. Label of the currency (Link) field in PageType 'CRM Deal' +#. Label of the currency (Link) field in PageType 'CRM Organization' +#. Label of the currency (Link) field in PageType 'FCRM Settings' +#. Label of the currency_tab (Tab Break) field in PageType 'FCRM Settings' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_organization/crm_organization.json +#: crm/fcrm/pagetype/fcrm_settings/fcrm_settings.json #: frontend/src/components/Settings/CurrencySettings.vue:31 msgid "Currency" msgstr "" @@ -1631,13 +1631,13 @@ msgstr "" msgid "Data" msgstr "" -#. Option for the 'Type' (Select) field in DocType 'CRM Fields Layout' -#: crm/fcrm/doctype/crm_fields_layout/crm_fields_layout.json +#. Option for the 'Type' (Select) field in PageType 'CRM Fields Layout' +#: crm/fcrm/pagetype/crm_fields_layout/crm_fields_layout.json msgid "Data Fields" msgstr "" -#. Label of the date (Date) field in DocType 'CRM Holiday' -#: crm/api/dashboard.py:601 crm/fcrm/doctype/crm_holiday/crm_holiday.json +#. Label of the date (Date) field in PageType 'CRM Holiday' +#: crm/api/dashboard.py:601 crm/fcrm/pagetype/crm_holiday/crm_holiday.json #: frontend/src/components/Calendar/CalendarEventPanel.vue:202 msgid "Date" msgstr "" @@ -1660,23 +1660,23 @@ msgstr "" msgid "Deal" msgstr "" -#. Label of the deal_owner (Link) field in DocType 'CRM Deal' -#: crm/fcrm/doctype/crm_deal/crm_deal.json +#. Label of the deal_owner (Link) field in PageType 'CRM Deal' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json msgid "Deal Owner" msgstr "" -#. Label of the deal_status (Link) field in DocType 'ERPNext CRM Settings' -#: crm/fcrm/doctype/erpnext_crm_settings/erpnext_crm_settings.json +#. Label of the deal_status (Link) field in PageType 'ERPNext CRM Settings' +#: crm/fcrm/pagetype/erpnext_crm_settings/erpnext_crm_settings.json msgid "Deal Status" msgstr "" -#. Label of a shortcut in the Frappe CRM Workspace -#: crm/fcrm/workspace/frappe_crm/frappe_crm.json +#. Label of a shortcut in the Jingrow CRM Workspace +#: crm/fcrm/workspace/jingrow_crm/jingrow_crm.json msgid "Deal Statuses" msgstr "" -#. Label of the deal_value (Currency) field in DocType 'CRM Deal' -#: crm/fcrm/doctype/crm_deal/crm_deal.json +#. Label of the deal_value (Currency) field in PageType 'CRM Deal' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json msgid "Deal Value" msgstr "" @@ -1694,8 +1694,8 @@ msgstr "" msgid "Deal value" msgstr "" -#. Label of a shortcut in the Frappe CRM Workspace -#: crm/fcrm/workspace/frappe_crm/frappe_crm.json +#. Label of a shortcut in the Jingrow CRM Workspace +#: crm/fcrm/workspace/jingrow_crm/jingrow_crm.json #: frontend/src/pages/Deal.vue:480 frontend/src/pages/MobileContact.vue:288 #: frontend/src/pages/MobileDeal.vue:384 #: frontend/src/pages/MobileOrganization.vue:325 @@ -1732,8 +1732,8 @@ msgstr "" msgid "Dear {{ lead_name }}, \\n\\nThis is a reminder for the payment of {{ grand_total }}. \\n\\nThanks, \\nFrappé" msgstr "" -#. Label of the default (Check) field in DocType 'CRM Service Level Agreement' -#: crm/fcrm/doctype/crm_service_level_agreement/crm_service_level_agreement.json +#. Label of the default (Check) field in PageType 'CRM Service Level Agreement' +#: crm/fcrm/pagetype/crm_service_level_agreement/crm_service_level_agreement.json msgid "Default" msgstr "" @@ -1745,8 +1745,8 @@ msgstr "" msgid "Default Incoming" msgstr "" -#. Label of the default_medium (Select) field in DocType 'CRM Telephony Agent' -#: crm/fcrm/doctype/crm_telephony_agent/crm_telephony_agent.json +#. Label of the default_medium (Select) field in PageType 'CRM Telephony Agent' +#: crm/fcrm/pagetype/crm_telephony_agent/crm_telephony_agent.json msgid "Default Medium" msgstr "" @@ -1754,9 +1754,9 @@ msgstr "" msgid "Default Outgoing" msgstr "" -#. Label of the default_priority (Check) field in DocType 'CRM Service Level +#. Label of the default_priority (Check) field in PageType 'CRM Service Level #. Priority' -#: crm/fcrm/doctype/crm_service_level_priority/crm_service_level_priority.json +#: crm/fcrm/pagetype/crm_service_level_priority/crm_service_level_priority.json msgid "Default Priority" msgstr "" @@ -1768,7 +1768,7 @@ msgstr "" msgid "Default Sending and Inbox" msgstr "" -#: crm/fcrm/doctype/crm_service_level_agreement/crm_service_level_agreement.py:33 +#: crm/fcrm/pagetype/crm_service_level_agreement/crm_service_level_agreement.py:33 msgid "Default Service Level Agreement already exists for {0}" msgstr "" @@ -1788,8 +1788,8 @@ msgstr "" msgid "Default medium" msgstr "" -#: crm/fcrm/doctype/fcrm_settings/fcrm_settings.js:18 -#: crm/fcrm/doctype/fcrm_settings/fcrm_settings.js:30 +#: crm/fcrm/pagetype/fcrm_settings/fcrm_settings.js:18 +#: crm/fcrm/pagetype/fcrm_settings/fcrm_settings.js:30 msgid "Default statuses, custom fields and layouts restored successfully." msgstr "" @@ -1825,7 +1825,7 @@ msgstr "" msgid "Delete" msgstr "" -#: crm/fcrm/doctype/fcrm_settings/fcrm_settings.js:26 +#: crm/fcrm/pagetype/fcrm_settings/fcrm_settings.js:26 msgid "Delete & Restore" msgstr "" @@ -1883,14 +1883,14 @@ msgstr "" msgid "Delete {0} items" msgstr "" -#. Label of the description (Text Editor) field in DocType 'CRM Holiday' -#. Label of the description (Text Editor) field in DocType 'CRM Lost Reason' -#. Label of the description (Text Editor) field in DocType 'CRM Product' -#. Label of the description (Text Editor) field in DocType 'CRM Task' -#: crm/fcrm/doctype/crm_holiday/crm_holiday.json -#: crm/fcrm/doctype/crm_lost_reason/crm_lost_reason.json -#: crm/fcrm/doctype/crm_product/crm_product.json -#: crm/fcrm/doctype/crm_task/crm_task.json +#. Label of the description (Text Editor) field in PageType 'CRM Holiday' +#. Label of the description (Text Editor) field in PageType 'CRM Lost Reason' +#. Label of the description (Text Editor) field in PageType 'CRM Product' +#. Label of the description (Text Editor) field in PageType 'CRM Task' +#: crm/fcrm/pagetype/crm_holiday/crm_holiday.json +#: crm/fcrm/pagetype/crm_lost_reason/crm_lost_reason.json +#: crm/fcrm/pagetype/crm_product/crm_product.json +#: crm/fcrm/pagetype/crm_task/crm_task.json #: frontend/src/components/Calendar/CalendarEventPanel.vue:152 #: frontend/src/components/Modals/EventModal.vue:134 #: frontend/src/components/Modals/TaskModal.vue:36 @@ -1907,29 +1907,29 @@ msgstr "" msgid "Desk" msgstr "" -#. Label of the details (Tab Break) field in DocType 'CRM Lead' -#. Label of the details (Text Editor) field in DocType 'CRM Lead Source' -#: crm/fcrm/doctype/crm_lead/crm_lead.json -#: crm/fcrm/doctype/crm_lead_source/crm_lead_source.json +#. Label of the details (Tab Break) field in PageType 'CRM Lead' +#. Label of the details (Text Editor) field in PageType 'CRM Lead Source' +#: crm/fcrm/pagetype/crm_lead/crm_lead.json +#: crm/fcrm/pagetype/crm_lead_source/crm_lead_source.json #: frontend/src/pages/MobileContact.vue:283 #: frontend/src/pages/MobileDeal.vue:424 frontend/src/pages/MobileLead.vue:331 #: frontend/src/pages/MobileOrganization.vue:320 msgid "Details" msgstr "" -#. Label of the call_receiving_device (Select) field in DocType 'CRM Telephony +#. Label of the call_receiving_device (Select) field in PageType 'CRM Telephony #. Agent' -#: crm/fcrm/doctype/crm_telephony_agent/crm_telephony_agent.json +#: crm/fcrm/pagetype/crm_telephony_agent/crm_telephony_agent.json #: frontend/src/components/FilesUploader/FilesUploaderArea.vue:39 msgid "Device" msgstr "" -#: crm/fcrm/doctype/crm_form_script/crm_form_script.js:30 +#: crm/fcrm/pagetype/crm_form_script/crm_form_script.js:30 msgid "Disable" msgstr "" -#. Label of the disabled (Check) field in DocType 'CRM Product' -#: crm/fcrm/doctype/crm_product/crm_product.json +#. Label of the disabled (Check) field in PageType 'CRM Product' +#: crm/fcrm/pagetype/crm_product/crm_product.json msgid "Disabled" msgstr "" @@ -1943,27 +1943,27 @@ msgstr "" msgid "Discard unsaved changes?" msgstr "" -#. Label of the discount_percentage (Percent) field in DocType 'CRM Products' -#: crm/fcrm/doctype/crm_products/crm_products.json +#. Label of the discount_percentage (Percent) field in PageType 'CRM Products' +#: crm/fcrm/pagetype/crm_products/crm_products.json msgid "Discount %" msgstr "Korting %" -#. Label of the discount_amount (Currency) field in DocType 'CRM Products' -#: crm/fcrm/doctype/crm_products/crm_products.json +#. Label of the discount_amount (Currency) field in PageType 'CRM Products' +#: crm/fcrm/pagetype/crm_products/crm_products.json msgid "Discount Amount" msgstr "" -#. Label of the dt (Link) field in DocType 'CRM Form Script' -#. Label of the dt (Link) field in DocType 'CRM Global Settings' -#. Label of the dt (Link) field in DocType 'CRM View Settings' -#: crm/fcrm/doctype/crm_form_script/crm_form_script.json -#: crm/fcrm/doctype/crm_global_settings/crm_global_settings.json -#: crm/fcrm/doctype/crm_view_settings/crm_view_settings.json -msgid "DocType" +#. Label of the dt (Link) field in PageType 'CRM Form Script' +#. Label of the dt (Link) field in PageType 'CRM Global Settings' +#. Label of the dt (Link) field in PageType 'CRM View Settings' +#: crm/fcrm/pagetype/crm_form_script/crm_form_script.json +#: crm/fcrm/pagetype/crm_global_settings/crm_global_settings.json +#: crm/fcrm/pagetype/crm_view_settings/crm_view_settings.json +msgid "PageType" msgstr "" -#. Label of the dt (Link) field in DocType 'CRM Fields Layout' -#: crm/fcrm/doctype/crm_fields_layout/crm_fields_layout.json +#. Label of the dt (Link) field in PageType 'CRM Fields Layout' +#: crm/fcrm/pagetype/crm_fields_layout/crm_fields_layout.json msgid "Document Type" msgstr "" @@ -1983,8 +1983,8 @@ msgstr "" msgid "Documentation" msgstr "" -#. Option for the 'Status' (Select) field in DocType 'CRM Task' -#: crm/fcrm/doctype/crm_task/crm_task.json +#. Option for the 'Status' (Select) field in PageType 'CRM Task' +#: crm/fcrm/pagetype/crm_task/crm_task.json msgid "Done" msgstr "" @@ -2006,13 +2006,13 @@ msgstr "" msgid "Drop files here" msgstr "" -#. Label of the dropdown_items_tab (Tab Break) field in DocType 'FCRM Settings' -#: crm/fcrm/doctype/fcrm_settings/fcrm_settings.json +#. Label of the dropdown_items_tab (Tab Break) field in PageType 'FCRM Settings' +#: crm/fcrm/pagetype/fcrm_settings/fcrm_settings.json msgid "Dropdown Items" msgstr "" -#. Label of the due_date (Datetime) field in DocType 'CRM Task' -#: crm/fcrm/doctype/crm_task/crm_task.json +#. Label of the due_date (Datetime) field in PageType 'CRM Task' +#: crm/fcrm/pagetype/crm_task/crm_task.json msgid "Due Date" msgstr "" @@ -2048,10 +2048,10 @@ msgstr "" msgid "Duplicate template" msgstr "" -#. Label of the duration (Duration) field in DocType 'CRM Call Log' -#. Label of the duration (Duration) field in DocType 'CRM Status Change Log' -#: crm/fcrm/doctype/crm_call_log/crm_call_log.json -#: crm/fcrm/doctype/crm_status_change_log/crm_status_change_log.json +#. Label of the duration (Duration) field in PageType 'CRM Call Log' +#. Label of the duration (Duration) field in PageType 'CRM Status Change Log' +#: crm/fcrm/pagetype/crm_call_log/crm_call_log.json +#: crm/fcrm/pagetype/crm_status_change_log/crm_status_change_log.json msgid "Duration" msgstr "" @@ -2060,28 +2060,28 @@ msgstr "" msgid "ERPNext" msgstr "" -#. Name of a DocType -#: crm/fcrm/doctype/erpnext_crm_settings/erpnext_crm_settings.json +#. Name of a PageType +#: crm/fcrm/pagetype/erpnext_crm_settings/erpnext_crm_settings.json msgid "ERPNext CRM Settings" msgstr "" -#. Label of the section_break_oubd (Section Break) field in DocType 'ERPNext +#. Label of the section_break_oubd (Section Break) field in PageType 'ERPNext #. CRM Settings' -#: crm/fcrm/doctype/erpnext_crm_settings/erpnext_crm_settings.json +#: crm/fcrm/pagetype/erpnext_crm_settings/erpnext_crm_settings.json msgid "ERPNext Site API's" msgstr "" -#. Label of the erpnext_site_url (Data) field in DocType 'ERPNext CRM Settings' -#: crm/fcrm/doctype/erpnext_crm_settings/erpnext_crm_settings.json +#. Label of the erpnext_site_url (Data) field in PageType 'ERPNext CRM Settings' +#: crm/fcrm/pagetype/erpnext_crm_settings/erpnext_crm_settings.json msgid "ERPNext Site URL" msgstr "" -#: crm/fcrm/doctype/erpnext_crm_settings/erpnext_crm_settings.py:25 +#: crm/fcrm/pagetype/erpnext_crm_settings/erpnext_crm_settings.py:25 msgid "ERPNext is not installed in the current site" msgstr "" -#: crm/fcrm/doctype/erpnext_crm_settings/erpnext_crm_settings.py:98 -#: crm/fcrm/doctype/erpnext_crm_settings/erpnext_crm_settings.py:124 +#: crm/fcrm/pagetype/erpnext_crm_settings/erpnext_crm_settings.py:98 +#: crm/fcrm/pagetype/erpnext_crm_settings/erpnext_crm_settings.py:124 msgid "ERPNext is not integrated with the CRM" msgstr "" @@ -2191,12 +2191,12 @@ msgstr "" msgid "Editing event" msgstr "" -#. Label of the email (Data) field in DocType 'CRM Contacts' -#. Label of the email (Data) field in DocType 'CRM Invitation' -#. Label of the email (Data) field in DocType 'CRM Lead' -#: crm/fcrm/doctype/crm_contacts/crm_contacts.json -#: crm/fcrm/doctype/crm_invitation/crm_invitation.json -#: crm/fcrm/doctype/crm_lead/crm_lead.json frontend/src/pages/Contact.vue:510 +#. Label of the email (Data) field in PageType 'CRM Contacts' +#. Label of the email (Data) field in PageType 'CRM Invitation' +#. Label of the email (Data) field in PageType 'CRM Lead' +#: crm/fcrm/pagetype/crm_contacts/crm_contacts.json +#: crm/fcrm/pagetype/crm_invitation/crm_invitation.json +#: crm/fcrm/pagetype/crm_lead/crm_lead.json frontend/src/pages/Contact.vue:510 #: frontend/src/pages/MobileContact.vue:518 #: frontend/src/pages/MobileOrganization.vue:462 #: frontend/src/pages/MobileOrganization.vue:490 @@ -2213,8 +2213,8 @@ msgstr "" msgid "Email ID is required" msgstr "" -#. Label of the email_sent_at (Datetime) field in DocType 'CRM Invitation' -#: crm/fcrm/doctype/crm_invitation/crm_invitation.json +#. Label of the email_sent_at (Datetime) field in PageType 'CRM Invitation' +#: crm/fcrm/pagetype/crm_invitation/crm_invitation.json msgid "Email Sent At" msgstr "" @@ -2272,12 +2272,12 @@ msgstr "" msgid "Empty - Choose a field to sort by" msgstr "" -#: crm/fcrm/doctype/crm_form_script/crm_form_script.js:30 +#: crm/fcrm/pagetype/crm_form_script/crm_form_script.js:30 msgid "Enable" msgstr "" -#. Label of the enable_forecasting (Check) field in DocType 'FCRM Settings' -#: crm/fcrm/doctype/fcrm_settings/fcrm_settings.json +#. Label of the enable_forecasting (Check) field in PageType 'FCRM Settings' +#: crm/fcrm/pagetype/fcrm_settings/fcrm_settings.json msgid "Enable Forecasting" msgstr "" @@ -2293,18 +2293,18 @@ msgstr "" msgid "Enable forecasting" msgstr "" -#. Label of the enabled (Check) field in DocType 'CRM Exotel Settings' -#. Label of the enabled (Check) field in DocType 'CRM Form Script' -#. Label of the enabled (Check) field in DocType 'CRM Service Level Agreement' -#. Label of the enabled (Check) field in DocType 'CRM Twilio Settings' -#. Label of the enabled (Check) field in DocType 'ERPNext CRM Settings' -#. Label of the enabled (Check) field in DocType 'Helpdesk CRM Settings' -#: crm/fcrm/doctype/crm_exotel_settings/crm_exotel_settings.json -#: crm/fcrm/doctype/crm_form_script/crm_form_script.json -#: crm/fcrm/doctype/crm_service_level_agreement/crm_service_level_agreement.json -#: crm/fcrm/doctype/crm_twilio_settings/crm_twilio_settings.json -#: crm/fcrm/doctype/erpnext_crm_settings/erpnext_crm_settings.json -#: crm/fcrm/doctype/helpdesk_crm_settings/helpdesk_crm_settings.json +#. Label of the enabled (Check) field in PageType 'CRM Exotel Settings' +#. Label of the enabled (Check) field in PageType 'CRM Form Script' +#. Label of the enabled (Check) field in PageType 'CRM Service Level Agreement' +#. Label of the enabled (Check) field in PageType 'CRM Twilio Settings' +#. Label of the enabled (Check) field in PageType 'ERPNext CRM Settings' +#. Label of the enabled (Check) field in PageType 'Helpdesk CRM Settings' +#: crm/fcrm/pagetype/crm_exotel_settings/crm_exotel_settings.json +#: crm/fcrm/pagetype/crm_form_script/crm_form_script.json +#: crm/fcrm/pagetype/crm_service_level_agreement/crm_service_level_agreement.json +#: crm/fcrm/pagetype/crm_twilio_settings/crm_twilio_settings.json +#: crm/fcrm/pagetype/erpnext_crm_settings/erpnext_crm_settings.json +#: crm/fcrm/pagetype/helpdesk_crm_settings/helpdesk_crm_settings.json #: frontend/src/components/Settings/AssignmentRules/AssignmentRuleView.vue:32 #: frontend/src/components/Settings/AssignmentRules/AssignmentRulesList.vue:21 #: frontend/src/components/Settings/EmailTemplate/EditEmailTemplate.vue:18 @@ -2313,15 +2313,15 @@ msgstr "" msgid "Enabled" msgstr "" -#. Label of the end_date (Date) field in DocType 'CRM Service Level Agreement' -#: crm/fcrm/doctype/crm_service_level_agreement/crm_service_level_agreement.json +#. Label of the end_date (Date) field in PageType 'CRM Service Level Agreement' +#: crm/fcrm/pagetype/crm_service_level_agreement/crm_service_level_agreement.json msgid "End Date" msgstr "" -#. Label of the end_time (Datetime) field in DocType 'CRM Call Log' -#. Label of the end_time (Time) field in DocType 'CRM Service Day' -#: crm/fcrm/doctype/crm_call_log/crm_call_log.json -#: crm/fcrm/doctype/crm_service_day/crm_service_day.json +#. Label of the end_time (Datetime) field in PageType 'CRM Call Log' +#. Label of the end_time (Time) field in PageType 'CRM Service Day' +#: crm/fcrm/pagetype/crm_call_log/crm_call_log.json +#: crm/fcrm/pagetype/crm_service_day/crm_service_day.json #: frontend/src/components/Calendar/CalendarEventPanel.vue:242 #: frontend/src/components/Modals/EventModal.vue:112 msgid "End Time" @@ -2362,15 +2362,15 @@ msgstr "" msgid "Error updating field" msgstr "" -#: crm/fcrm/doctype/erpnext_crm_settings/erpnext_crm_settings.py:279 +#: crm/fcrm/pagetype/erpnext_crm_settings/erpnext_crm_settings.py:279 msgid "Error while creating customer in ERPNext, check error log for more details" msgstr "" -#: crm/fcrm/doctype/erpnext_crm_settings/erpnext_crm_settings.py:191 +#: crm/fcrm/pagetype/erpnext_crm_settings/erpnext_crm_settings.py:191 msgid "Error while creating prospect in ERPNext, check error log for more details" msgstr "" -#: crm/fcrm/doctype/erpnext_crm_settings/erpnext_crm_settings.py:117 +#: crm/fcrm/pagetype/erpnext_crm_settings/erpnext_crm_settings.py:117 msgid "Error while fetching customer in ERPNext, check error log for more details" msgstr "" @@ -2395,16 +2395,16 @@ msgstr "" msgid "Excel" msgstr "" -#. Label of the exchange_rate (Float) field in DocType 'CRM Deal' -#. Label of the exchange_rate (Float) field in DocType 'CRM Organization' -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_organization/crm_organization.json +#. Label of the exchange_rate (Float) field in PageType 'CRM Deal' +#. Label of the exchange_rate (Float) field in PageType 'CRM Organization' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_organization/crm_organization.json msgid "Exchange Rate" msgstr "" -#. Label of the exchange_rate_provider_section (Section Break) field in DocType +#. Label of the exchange_rate_provider_section (Section Break) field in PageType #. 'FCRM Settings' -#: crm/fcrm/doctype/fcrm_settings/fcrm_settings.json +#: crm/fcrm/pagetype/fcrm_settings/fcrm_settings.json msgid "Exchange Rate Provider" msgstr "" @@ -2412,12 +2412,12 @@ msgstr "" msgid "Exchange rate provider" msgstr "" -#. Option for the 'Telephony Medium' (Select) field in DocType 'CRM Call Log' -#. Label of the exotel (Check) field in DocType 'CRM Telephony Agent' -#. Option for the 'Default Medium' (Select) field in DocType 'CRM Telephony +#. Option for the 'Telephony Medium' (Select) field in PageType 'CRM Call Log' +#. Label of the exotel (Check) field in PageType 'CRM Telephony Agent' +#. Option for the 'Default Medium' (Select) field in PageType 'CRM Telephony #. Agent' -#: crm/fcrm/doctype/crm_call_log/crm_call_log.json -#: crm/fcrm/doctype/crm_telephony_agent/crm_telephony_agent.json +#: crm/fcrm/pagetype/crm_call_log/crm_call_log.json +#: crm/fcrm/pagetype/crm_telephony_agent/crm_telephony_agent.json #: frontend/src/components/Layouts/AppSidebar.vue:602 #: frontend/src/components/Settings/TelephonySettings.vue:41 #: frontend/src/components/Settings/TelephonySettings.vue:63 @@ -2428,8 +2428,8 @@ msgstr "" msgid "Exotel Exception" msgstr "" -#. Label of the exotel_number (Data) field in DocType 'CRM Telephony Agent' -#: crm/fcrm/doctype/crm_telephony_agent/crm_telephony_agent.json +#. Label of the exotel_number (Data) field in PageType 'CRM Telephony Agent' +#: crm/fcrm/pagetype/crm_telephony_agent/crm_telephony_agent.json msgid "Exotel Number" msgstr "" @@ -2453,26 +2453,26 @@ msgstr "" msgid "Expand" msgstr "" -#. Label of the expected_closure_date (Date) field in DocType 'CRM Deal' -#: crm/fcrm/doctype/crm_deal/crm_deal.json +#. Label of the expected_closure_date (Date) field in PageType 'CRM Deal' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json msgid "Expected Closure Date" msgstr "" -#: crm/fcrm/doctype/crm_deal/crm_deal.py:173 +#: crm/fcrm/pagetype/crm_deal/crm_deal.py:173 msgid "Expected Closure Date is required." msgstr "" -#. Label of the expected_deal_value (Currency) field in DocType 'CRM Deal' -#: crm/fcrm/doctype/crm_deal/crm_deal.json +#. Label of the expected_deal_value (Currency) field in PageType 'CRM Deal' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json msgid "Expected Deal Value" msgstr "" -#: crm/fcrm/doctype/crm_deal/crm_deal.py:171 +#: crm/fcrm/pagetype/crm_deal/crm_deal.py:171 msgid "Expected Deal Value is required." msgstr "" -#. Option for the 'Status' (Select) field in DocType 'CRM Invitation' -#: crm/fcrm/doctype/crm_invitation/crm_invitation.json +#. Option for the 'Status' (Select) field in PageType 'CRM Invitation' +#: crm/fcrm/pagetype/crm_invitation/crm_invitation.json msgid "Expired" msgstr "" @@ -2489,22 +2489,22 @@ msgstr "" msgid "Export Type" msgstr "" -#. Name of a DocType -#: crm/fcrm/doctype/fcrm_note/fcrm_note.json +#. Name of a PageType +#: crm/fcrm/pagetype/fcrm_note/fcrm_note.json msgid "FCRM Note" msgstr "" -#. Name of a DocType -#: crm/fcrm/doctype/fcrm_settings/fcrm_settings.json +#. Name of a PageType +#: crm/fcrm/pagetype/fcrm_settings/fcrm_settings.json msgid "FCRM Settings" msgstr "" -#. Option for the 'Status' (Select) field in DocType 'CRM Call Log' -#. Option for the 'SLA Status' (Select) field in DocType 'CRM Deal' -#. Option for the 'SLA Status' (Select) field in DocType 'CRM Lead' -#: crm/fcrm/doctype/crm_call_log/crm_call_log.json -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_lead/crm_lead.json +#. Option for the 'Status' (Select) field in PageType 'CRM Call Log' +#. Option for the 'SLA Status' (Select) field in PageType 'CRM Deal' +#. Option for the 'SLA Status' (Select) field in PageType 'CRM Lead' +#: crm/fcrm/pagetype/crm_call_log/crm_call_log.json +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_lead/crm_lead.json msgid "Failed" msgstr "" @@ -2528,7 +2528,7 @@ msgstr "" msgid "Failed to delete template" msgstr "" -#: crm/fcrm/doctype/fcrm_settings/fcrm_settings.py:205 +#: crm/fcrm/pagetype/fcrm_settings/fcrm_settings.py:205 msgid "Failed to fetch exchange rate from {0} to {1} on {2}. Please check your internet connection or try again later." msgstr "" @@ -2561,8 +2561,8 @@ msgstr "" msgid "Failed to update template" msgstr "" -#. Label of the favicon (Attach) field in DocType 'FCRM Settings' -#: crm/fcrm/doctype/fcrm_settings/fcrm_settings.json +#. Label of the favicon (Attach) field in PageType 'FCRM Settings' +#: crm/fcrm/pagetype/fcrm_settings/fcrm_settings.json #: frontend/src/components/Settings/BrandSettings.vue:87 msgid "Favicon" msgstr "" @@ -2586,23 +2586,23 @@ msgid "File \"{0}\" was skipped because only {1} uploads are allowed" msgstr "" #: frontend/src/components/FilesUploader/FilesUploaderArea.vue:359 -msgid "File \"{0}\" was skipped because only {1} uploads are allowed for DocType \"{2}\"" +msgid "File \"{0}\" was skipped because only {1} uploads are allowed for PageType \"{2}\"" msgstr "" #: frontend/src/components/Filter.vue:6 msgid "Filter" msgstr "" -#. Label of the filters (Code) field in DocType 'CRM View Settings' -#. Label of the filters_tab (Tab Break) field in DocType 'CRM View Settings' -#: crm/fcrm/doctype/crm_view_settings/crm_view_settings.json +#. Label of the filters (Code) field in PageType 'CRM View Settings' +#. Label of the filters_tab (Tab Break) field in PageType 'CRM View Settings' +#: crm/fcrm/pagetype/crm_view_settings/crm_view_settings.json msgid "Filters" msgstr "" -#. Label of the first_name (Data) field in DocType 'CRM Deal' -#. Label of the first_name (Data) field in DocType 'CRM Lead' -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_lead/crm_lead.json +#. Label of the first_name (Data) field in PageType 'CRM Deal' +#. Label of the first_name (Data) field in PageType 'CRM Lead' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_lead/crm_lead.json #: frontend/src/components/ColumnSettings.vue:103 #: frontend/src/components/Filter.vue:57 frontend/src/components/Filter.vue:88 #: frontend/src/components/SortBy.vue:6 frontend/src/components/SortBy.vue:103 @@ -2614,30 +2614,30 @@ msgstr "" msgid "First Name is mandatory" msgstr "" -#. Label of the first_responded_on (Datetime) field in DocType 'CRM Deal' -#. Label of the first_responded_on (Datetime) field in DocType 'CRM Lead' -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_lead/crm_lead.json +#. Label of the first_responded_on (Datetime) field in PageType 'CRM Deal' +#. Label of the first_responded_on (Datetime) field in PageType 'CRM Lead' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_lead/crm_lead.json msgid "First Responded On" msgstr "" -#. Option for the 'SLA Status' (Select) field in DocType 'CRM Deal' -#. Option for the 'SLA Status' (Select) field in DocType 'CRM Lead' -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_lead/crm_lead.json +#. Option for the 'SLA Status' (Select) field in PageType 'CRM Deal' +#. Option for the 'SLA Status' (Select) field in PageType 'CRM Lead' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_lead/crm_lead.json msgid "First Response Due" msgstr "" -#. Label of the first_response_time (Duration) field in DocType 'CRM Service +#. Label of the first_response_time (Duration) field in PageType 'CRM Service #. Level Priority' -#: crm/fcrm/doctype/crm_service_level_priority/crm_service_level_priority.json +#: crm/fcrm/pagetype/crm_service_level_priority/crm_service_level_priority.json msgid "First Response TIme" msgstr "" -#. Label of the first_response_time (Duration) field in DocType 'CRM Deal' -#. Label of the first_response_time (Duration) field in DocType 'CRM Lead' -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_lead/crm_lead.json +#. Label of the first_response_time (Duration) field in PageType 'CRM Deal' +#. Label of the first_response_time (Duration) field in PageType 'CRM Lead' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_lead/crm_lead.json msgid "First Response Time" msgstr "" @@ -2670,66 +2670,66 @@ msgstr "" msgid "Forecasting enabled successfully" msgstr "" -#. Option for the 'Apply To' (Select) field in DocType 'CRM Form Script' -#: crm/fcrm/doctype/crm_form_script/crm_form_script.json +#. Option for the 'Apply To' (Select) field in PageType 'CRM Form Script' +#: crm/fcrm/pagetype/crm_form_script/crm_form_script.json msgid "Form" msgstr "" -#: crm/fcrm/doctype/erpnext_crm_settings/erpnext_crm_settings.js:19 +#: crm/fcrm/pagetype/erpnext_crm_settings/erpnext_crm_settings.js:19 msgid "Form Script updated successfully" msgstr "" #. Name of a Workspace -#: crm/fcrm/workspace/frappe_crm/frappe_crm.json -msgid "Frappe CRM" +#: crm/fcrm/workspace/jingrow_crm/jingrow_crm.json +msgid "Jingrow CRM" msgstr "" #: frontend/src/components/Layouts/AppSidebar.vue:608 -msgid "Frappe CRM mobile" +msgid "Jingrow CRM mobile" msgstr "" -#. Option for the 'Weekly Off' (Select) field in DocType 'CRM Holiday List' -#. Option for the 'Workday' (Select) field in DocType 'CRM Service Day' -#: crm/fcrm/doctype/crm_holiday_list/crm_holiday_list.json -#: crm/fcrm/doctype/crm_service_day/crm_service_day.json +#. Option for the 'Weekly Off' (Select) field in PageType 'CRM Holiday List' +#. Option for the 'Workday' (Select) field in PageType 'CRM Service Day' +#: crm/fcrm/pagetype/crm_holiday_list/crm_holiday_list.json +#: crm/fcrm/pagetype/crm_service_day/crm_service_day.json msgid "Friday" msgstr "" -#. Label of the from (Data) field in DocType 'CRM Call Log' -#. Label of the from (Data) field in DocType 'CRM Status Change Log' -#: crm/fcrm/doctype/crm_call_log/crm_call_log.json -#: crm/fcrm/doctype/crm_status_change_log/crm_status_change_log.json +#. Label of the from (Data) field in PageType 'CRM Call Log' +#. Label of the from (Data) field in PageType 'CRM Status Change Log' +#: crm/fcrm/pagetype/crm_call_log/crm_call_log.json +#: crm/fcrm/pagetype/crm_status_change_log/crm_status_change_log.json msgid "From" msgstr "" -#. Label of the from_date (Date) field in DocType 'CRM Holiday List' -#. Label of the from_date (Datetime) field in DocType 'CRM Status Change Log' -#: crm/fcrm/doctype/crm_holiday_list/crm_holiday_list.json -#: crm/fcrm/doctype/crm_status_change_log/crm_status_change_log.json +#. Label of the from_date (Date) field in PageType 'CRM Holiday List' +#. Label of the from_date (Datetime) field in PageType 'CRM Status Change Log' +#: crm/fcrm/pagetype/crm_holiday_list/crm_holiday_list.json +#: crm/fcrm/pagetype/crm_status_change_log/crm_status_change_log.json msgid "From Date" msgstr "" -#. Label of the from_type (Data) field in DocType 'CRM Status Change Log' -#: crm/fcrm/doctype/crm_status_change_log/crm_status_change_log.json +#. Label of the from_type (Data) field in PageType 'CRM Status Change Log' +#: crm/fcrm/pagetype/crm_status_change_log/crm_status_change_log.json msgid "From Type" msgstr "" -#. Label of the from_user (Link) field in DocType 'CRM Notification' -#: crm/fcrm/doctype/crm_notification/crm_notification.json +#. Label of the from_user (Link) field in PageType 'CRM Notification' +#: crm/fcrm/pagetype/crm_notification/crm_notification.json msgid "From User" msgstr "" -#. Option for the 'SLA Status' (Select) field in DocType 'CRM Deal' -#. Option for the 'SLA Status' (Select) field in DocType 'CRM Lead' -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_lead/crm_lead.json +#. Option for the 'SLA Status' (Select) field in PageType 'CRM Deal' +#. Option for the 'SLA Status' (Select) field in PageType 'CRM Lead' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_lead/crm_lead.json msgid "Fulfilled" msgstr "" -#. Label of the full_name (Data) field in DocType 'CRM Contacts' -#. Label of the lead_name (Data) field in DocType 'CRM Lead' -#: crm/fcrm/doctype/crm_contacts/crm_contacts.json -#: crm/fcrm/doctype/crm_lead/crm_lead.json +#. Label of the full_name (Data) field in PageType 'CRM Contacts' +#. Label of the lead_name (Data) field in PageType 'CRM Lead' +#: crm/fcrm/pagetype/crm_contacts/crm_contacts.json +#: crm/fcrm/pagetype/crm_lead/crm_lead.json msgid "Full Name" msgstr "" @@ -2742,12 +2742,12 @@ msgstr "" msgid "GMT+5:30" msgstr "" -#. Label of the gender (Link) field in DocType 'CRM Contacts' -#. Label of the gender (Link) field in DocType 'CRM Deal' -#. Label of the gender (Link) field in DocType 'CRM Lead' -#: crm/fcrm/doctype/crm_contacts/crm_contacts.json -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_lead/crm_lead.json +#. Label of the gender (Link) field in PageType 'CRM Contacts' +#. Label of the gender (Link) field in PageType 'CRM Deal' +#. Label of the gender (Link) field in PageType 'CRM Lead' +#: crm/fcrm/pagetype/crm_contacts/crm_contacts.json +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_lead/crm_lead.json msgid "Gender" msgstr "" @@ -2771,20 +2771,20 @@ msgstr "" msgid "Go to website" msgstr "" -#. Option for the 'Type' (Select) field in DocType 'CRM Fields Layout' -#: crm/fcrm/doctype/crm_fields_layout/crm_fields_layout.json +#. Option for the 'Type' (Select) field in PageType 'CRM Fields Layout' +#: crm/fcrm/pagetype/crm_fields_layout/crm_fields_layout.json msgid "Grid Row" msgstr "" -#. Label of the group_by_tab (Tab Break) field in DocType 'CRM View Settings' -#: crm/fcrm/doctype/crm_view_settings/crm_view_settings.json +#. Label of the group_by_tab (Tab Break) field in PageType 'CRM View Settings' +#: crm/fcrm/pagetype/crm_view_settings/crm_view_settings.json #: frontend/src/components/ViewControls.vue:379 #: frontend/src/components/ViewControls.vue:611 frontend/src/utils/view.js:16 msgid "Group By" msgstr "" -#. Label of the group_by_field (Data) field in DocType 'CRM View Settings' -#: crm/fcrm/doctype/crm_view_settings/crm_view_settings.json +#. Label of the group_by_field (Data) field in PageType 'CRM View Settings' +#: crm/fcrm/pagetype/crm_view_settings/crm_view_settings.json msgid "Group By Field" msgstr "" @@ -2808,28 +2808,28 @@ msgstr "" msgid "Helpdesk" msgstr "" -#. Name of a DocType -#: crm/fcrm/doctype/helpdesk_crm_settings/helpdesk_crm_settings.json +#. Name of a PageType +#: crm/fcrm/pagetype/helpdesk_crm_settings/helpdesk_crm_settings.json msgid "Helpdesk CRM Settings" msgstr "" -#. Label of the helpdesk_site_apis_section (Section Break) field in DocType +#. Label of the helpdesk_site_apis_section (Section Break) field in PageType #. 'Helpdesk CRM Settings' -#: crm/fcrm/doctype/helpdesk_crm_settings/helpdesk_crm_settings.json +#: crm/fcrm/pagetype/helpdesk_crm_settings/helpdesk_crm_settings.json msgid "Helpdesk Site API's" msgstr "" -#. Label of the helpdesk_site_url (Data) field in DocType 'Helpdesk CRM +#. Label of the helpdesk_site_url (Data) field in PageType 'Helpdesk CRM #. Settings' -#: crm/fcrm/doctype/helpdesk_crm_settings/helpdesk_crm_settings.json +#: crm/fcrm/pagetype/helpdesk_crm_settings/helpdesk_crm_settings.json msgid "Helpdesk Site URL" msgstr "" -#: crm/fcrm/doctype/helpdesk_crm_settings/helpdesk_crm_settings.py:18 +#: crm/fcrm/pagetype/helpdesk_crm_settings/helpdesk_crm_settings.py:18 msgid "Helpdesk is not installed in the current site" msgstr "" -#: crm/fcrm/doctype/helpdesk_crm_settings/helpdesk_crm_settings.py:40 +#: crm/fcrm/pagetype/helpdesk_crm_settings/helpdesk_crm_settings.py:40 msgid "Helpdesk is not integrated with the CRM" msgstr "" @@ -2845,8 +2845,8 @@ msgstr "" msgid "Hi John, \\n\\nCan you please provide more details on this..." msgstr "" -#. Label of the hidden (Check) field in DocType 'CRM Dropdown Item' -#: crm/fcrm/doctype/crm_dropdown_item/crm_dropdown_item.json +#. Label of the hidden (Check) field in PageType 'CRM Dropdown Item' +#: crm/fcrm/pagetype/crm_dropdown_item/crm_dropdown_item.json msgid "Hidden" msgstr "" @@ -2877,26 +2877,26 @@ msgstr "" msgid "Hide preview" msgstr "" -#. Option for the 'Priority' (Select) field in DocType 'CRM Task' -#: crm/fcrm/doctype/crm_task/crm_task.json +#. Option for the 'Priority' (Select) field in PageType 'CRM Task' +#: crm/fcrm/pagetype/crm_task/crm_task.json msgid "High" msgstr "" -#. Label of the holiday_list (Link) field in DocType 'CRM Service Level +#. Label of the holiday_list (Link) field in PageType 'CRM Service Level #. Agreement' -#: crm/fcrm/doctype/crm_service_level_agreement/crm_service_level_agreement.json +#: crm/fcrm/pagetype/crm_service_level_agreement/crm_service_level_agreement.json msgid "Holiday List" msgstr "" -#. Label of the holiday_list_name (Data) field in DocType 'CRM Holiday List' -#: crm/fcrm/doctype/crm_holiday_list/crm_holiday_list.json +#. Label of the holiday_list_name (Data) field in PageType 'CRM Holiday List' +#: crm/fcrm/pagetype/crm_holiday_list/crm_holiday_list.json msgid "Holiday List Name" msgstr "" -#. Label of the holidays_section (Section Break) field in DocType 'CRM Holiday +#. Label of the holidays_section (Section Break) field in PageType 'CRM Holiday #. List' -#. Label of the holidays (Table) field in DocType 'CRM Holiday List' -#: crm/fcrm/doctype/crm_holiday_list/crm_holiday_list.json +#. Label of the holidays (Table) field in PageType 'CRM Holiday List' +#: crm/fcrm/pagetype/crm_holiday_list/crm_holiday_list.json msgid "Holidays" msgstr "" @@ -2914,15 +2914,15 @@ msgstr "" msgid "I understand, add conditions" msgstr "" -#. Label of the id (Data) field in DocType 'CRM Call Log' -#: crm/fcrm/doctype/crm_call_log/crm_call_log.json +#. Label of the id (Data) field in PageType 'CRM Call Log' +#: crm/fcrm/pagetype/crm_call_log/crm_call_log.json msgid "ID" msgstr "" -#. Label of the icon (Code) field in DocType 'CRM Dropdown Item' -#. Label of the icon (Data) field in DocType 'CRM View Settings' -#: crm/fcrm/doctype/crm_dropdown_item/crm_dropdown_item.json -#: crm/fcrm/doctype/crm_view_settings/crm_view_settings.json +#. Label of the icon (Code) field in PageType 'CRM Dropdown Item' +#. Label of the icon (Data) field in PageType 'CRM View Settings' +#: crm/fcrm/pagetype/crm_dropdown_item/crm_dropdown_item.json +#: crm/fcrm/pagetype/crm_view_settings/crm_view_settings.json msgid "Icon" msgstr "" @@ -2942,10 +2942,10 @@ msgstr "" msgid "If enabled, records can be created from the incoming emails on this account." msgstr "" -#. Label of the image (Attach Image) field in DocType 'CRM Lead' -#. Label of the image (Attach Image) field in DocType 'CRM Product' -#: crm/fcrm/doctype/crm_lead/crm_lead.json -#: crm/fcrm/doctype/crm_product/crm_product.json +#. Label of the image (Attach Image) field in PageType 'CRM Lead' +#. Label of the image (Attach Image) field in PageType 'CRM Product' +#: crm/fcrm/pagetype/crm_lead/crm_lead.json +#: crm/fcrm/pagetype/crm_product/crm_product.json msgid "Image" msgstr "" @@ -2957,10 +2957,10 @@ msgstr "" msgid "In" msgstr "" -#. Option for the 'Status' (Select) field in DocType 'CRM Call Log' -#. Option for the 'Status' (Select) field in DocType 'CRM Task' -#: crm/fcrm/doctype/crm_call_log/crm_call_log.json -#: crm/fcrm/doctype/crm_task/crm_task.json +#. Option for the 'Status' (Select) field in PageType 'CRM Call Log' +#. Option for the 'Status' (Select) field in PageType 'CRM Task' +#: crm/fcrm/pagetype/crm_call_log/crm_call_log.json +#: crm/fcrm/pagetype/crm_task/crm_task.json msgid "In Progress" msgstr "" @@ -2976,8 +2976,8 @@ msgstr "" msgid "Inbox" msgstr "" -#. Option for the 'Type' (Select) field in DocType 'CRM Call Log' -#: crm/fcrm/doctype/crm_call_log/crm_call_log.json +#. Option for the 'Type' (Select) field in PageType 'CRM Call Log' +#: crm/fcrm/pagetype/crm_call_log/crm_call_log.json msgid "Incoming" msgstr "" @@ -2985,24 +2985,24 @@ msgstr "" msgid "Incoming call..." msgstr "" -#. Label of a shortcut in the Frappe CRM Workspace -#: crm/fcrm/workspace/frappe_crm/frappe_crm.json +#. Label of a shortcut in the Jingrow CRM Workspace +#: crm/fcrm/workspace/jingrow_crm/jingrow_crm.json msgid "Industries" msgstr "" -#. Label of the industry (Link) field in DocType 'CRM Deal' -#. Label of the industry (Data) field in DocType 'CRM Industry' -#. Label of the industry (Link) field in DocType 'CRM Lead' -#. Label of the industry (Link) field in DocType 'CRM Organization' -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_industry/crm_industry.json -#: crm/fcrm/doctype/crm_lead/crm_lead.json -#: crm/fcrm/doctype/crm_organization/crm_organization.json +#. Label of the industry (Link) field in PageType 'CRM Deal' +#. Label of the industry (Data) field in PageType 'CRM Industry' +#. Label of the industry (Link) field in PageType 'CRM Lead' +#. Label of the industry (Link) field in PageType 'CRM Organization' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_industry/crm_industry.json +#: crm/fcrm/pagetype/crm_lead/crm_lead.json +#: crm/fcrm/pagetype/crm_organization/crm_organization.json msgid "Industry" msgstr "" -#. Option for the 'Status' (Select) field in DocType 'CRM Call Log' -#: crm/fcrm/doctype/crm_call_log/crm_call_log.json +#. Option for the 'Status' (Select) field in PageType 'CRM Call Log' +#: crm/fcrm/pagetype/crm_call_log/crm_call_log.json msgid "Initiated" msgstr "" @@ -3037,7 +3037,7 @@ msgstr "" msgid "Introduction" msgstr "" -#: crm/fcrm/doctype/crm_twilio_settings/crm_twilio_settings.py:33 +#: crm/fcrm/pagetype/crm_twilio_settings/crm_twilio_settings.py:33 msgid "Invalid Account SID or Auth Token." msgstr "" @@ -3054,7 +3054,7 @@ msgstr "" msgid "Invalid chart name" msgstr "" -#: crm/fcrm/doctype/crm_exotel_settings/crm_exotel_settings.py:25 +#: crm/fcrm/pagetype/crm_exotel_settings/crm_exotel_settings.py:25 msgid "Invalid credentials" msgstr "" @@ -3103,8 +3103,8 @@ msgstr "" msgid "Invite your team" msgstr "" -#. Label of the invited_by (Link) field in DocType 'CRM Invitation' -#: crm/fcrm/doctype/crm_invitation/crm_invitation.json +#. Label of the invited_by (Link) field in PageType 'CRM Invitation' +#: crm/fcrm/pagetype/crm_invitation/crm_invitation.json msgid "Invited By" msgstr "" @@ -3118,59 +3118,59 @@ msgstr "" msgid "Is" msgstr "" -#. Label of the is_default (Check) field in DocType 'CRM View Settings' -#: crm/fcrm/doctype/crm_view_settings/crm_view_settings.json +#. Label of the is_default (Check) field in PageType 'CRM View Settings' +#: crm/fcrm/pagetype/crm_view_settings/crm_view_settings.json msgid "Is Default" msgstr "" -#. Label of the is_erpnext_in_different_site (Check) field in DocType 'ERPNext +#. Label of the is_erpnext_in_different_site (Check) field in PageType 'ERPNext #. CRM Settings' -#: crm/fcrm/doctype/erpnext_crm_settings/erpnext_crm_settings.json +#: crm/fcrm/pagetype/erpnext_crm_settings/erpnext_crm_settings.json msgid "Is ERPNext installed on a different site?" msgstr "" -#. Label of the is_group (Check) field in DocType 'CRM Territory' -#: crm/fcrm/doctype/crm_territory/crm_territory.json +#. Label of the is_group (Check) field in PageType 'CRM Territory' +#: crm/fcrm/pagetype/crm_territory/crm_territory.json msgid "Is Group" msgstr "" -#. Label of the is_helpdesk_in_different_site (Check) field in DocType +#. Label of the is_helpdesk_in_different_site (Check) field in PageType #. 'Helpdesk CRM Settings' -#: crm/fcrm/doctype/helpdesk_crm_settings/helpdesk_crm_settings.json +#: crm/fcrm/pagetype/helpdesk_crm_settings/helpdesk_crm_settings.json msgid "Is Helpdesk installed on a different site?" msgstr "" -#. Label of the is_primary (Check) field in DocType 'CRM Contacts' -#. Label of the is_primary (Check) field in DocType 'CRM Telephony Phone' -#: crm/fcrm/doctype/crm_contacts/crm_contacts.json -#: crm/fcrm/doctype/crm_telephony_phone/crm_telephony_phone.json +#. Label of the is_primary (Check) field in PageType 'CRM Contacts' +#. Label of the is_primary (Check) field in PageType 'CRM Telephony Phone' +#: crm/fcrm/pagetype/crm_contacts/crm_contacts.json +#: crm/fcrm/pagetype/crm_telephony_phone/crm_telephony_phone.json msgid "Is Primary" msgstr "" -#. Label of the is_standard (Check) field in DocType 'CRM Dropdown Item' -#. Label of the is_standard (Check) field in DocType 'CRM Form Script' -#. Label of the is_standard (Check) field in DocType 'CRM View Settings' -#: crm/fcrm/doctype/crm_dropdown_item/crm_dropdown_item.json -#: crm/fcrm/doctype/crm_form_script/crm_form_script.json -#: crm/fcrm/doctype/crm_view_settings/crm_view_settings.json +#. Label of the is_standard (Check) field in PageType 'CRM Dropdown Item' +#. Label of the is_standard (Check) field in PageType 'CRM Form Script' +#. Label of the is_standard (Check) field in PageType 'CRM View Settings' +#: crm/fcrm/pagetype/crm_dropdown_item/crm_dropdown_item.json +#: crm/fcrm/pagetype/crm_form_script/crm_form_script.json +#: crm/fcrm/pagetype/crm_view_settings/crm_view_settings.json msgid "Is Standard" msgstr "" -#. Description of the 'Enable Forecasting' (Check) field in DocType 'FCRM +#. Description of the 'Enable Forecasting' (Check) field in PageType 'FCRM #. Settings' -#: crm/fcrm/doctype/fcrm_settings/fcrm_settings.json +#: crm/fcrm/pagetype/fcrm_settings/fcrm_settings.json msgid "It will make deal's \"Expected Closure Date\" & \"Expected Deal Value\" mandatory to get accurate forecasting insights" msgstr "" -#. Label of the json (JSON) field in DocType 'CRM Global Settings' -#: crm/fcrm/doctype/crm_global_settings/crm_global_settings.json +#. Label of the json (JSON) field in PageType 'CRM Global Settings' +#: crm/fcrm/pagetype/crm_global_settings/crm_global_settings.json msgid "JSON" msgstr "" -#. Label of the job_title (Data) field in DocType 'CRM Deal' -#. Label of the job_title (Data) field in DocType 'CRM Lead' -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_lead/crm_lead.json +#. Label of the job_title (Data) field in PageType 'CRM Deal' +#. Label of the job_title (Data) field in PageType 'CRM Lead' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_lead/crm_lead.json msgid "Job Title" msgstr "" @@ -3182,20 +3182,20 @@ msgstr "" msgid "John Doe" msgstr "" -#. Label of the kanban_tab (Tab Break) field in DocType 'CRM View Settings' -#: crm/fcrm/doctype/crm_view_settings/crm_view_settings.json +#. Label of the kanban_tab (Tab Break) field in PageType 'CRM View Settings' +#: crm/fcrm/pagetype/crm_view_settings/crm_view_settings.json #: frontend/src/components/ViewControls.vue:384 #: frontend/src/components/ViewControls.vue:600 frontend/src/utils/view.js:20 msgid "Kanban" msgstr "" -#. Label of the kanban_columns (Code) field in DocType 'CRM View Settings' -#: crm/fcrm/doctype/crm_view_settings/crm_view_settings.json +#. Label of the kanban_columns (Code) field in PageType 'CRM View Settings' +#: crm/fcrm/pagetype/crm_view_settings/crm_view_settings.json msgid "Kanban Columns" msgstr "" -#. Label of the kanban_fields (Code) field in DocType 'CRM View Settings' -#: crm/fcrm/doctype/crm_view_settings/crm_view_settings.json +#. Label of the kanban_fields (Code) field in PageType 'CRM View Settings' +#: crm/fcrm/pagetype/crm_view_settings/crm_view_settings.json msgid "Kanban Fields" msgstr "" @@ -3204,15 +3204,15 @@ msgstr "" msgid "Kanban Settings" msgstr "" -#. Label of the key (Data) field in DocType 'CRM Invitation' -#: crm/fcrm/doctype/crm_invitation/crm_invitation.json +#. Label of the key (Data) field in PageType 'CRM Invitation' +#: crm/fcrm/pagetype/crm_invitation/crm_invitation.json msgid "Key" msgstr "" -#. Label of the label (Data) field in DocType 'CRM Dropdown Item' -#. Label of the label (Data) field in DocType 'CRM View Settings' -#: crm/fcrm/doctype/crm_dropdown_item/crm_dropdown_item.json -#: crm/fcrm/doctype/crm_view_settings/crm_view_settings.json +#. Label of the label (Data) field in PageType 'CRM Dropdown Item' +#. Label of the label (Data) field in PageType 'CRM View Settings' +#: crm/fcrm/pagetype/crm_dropdown_item/crm_dropdown_item.json +#: crm/fcrm/pagetype/crm_view_settings/crm_view_settings.json #: frontend/src/components/ColumnSettings.vue:100 msgid "Label" msgstr "" @@ -3229,10 +3229,10 @@ msgstr "" msgid "Last Month" msgstr "" -#. Label of the last_name (Data) field in DocType 'CRM Deal' -#. Label of the last_name (Data) field in DocType 'CRM Lead' -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_lead/crm_lead.json +#. Label of the last_name (Data) field in PageType 'CRM Deal' +#. Label of the last_name (Data) field in PageType 'CRM Lead' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_lead/crm_lead.json msgid "Last Name" msgstr "" @@ -3240,9 +3240,9 @@ msgstr "" msgid "Last Quarter" msgstr "" -#. Label of the last_status_change_log (Link) field in DocType 'CRM Status +#. Label of the last_status_change_log (Link) field in PageType 'CRM Status #. Change Log' -#: crm/fcrm/doctype/crm_status_change_log/crm_status_change_log.json +#: crm/fcrm/pagetype/crm_status_change_log/crm_status_change_log.json msgid "Last Status Change Log" msgstr "" @@ -3270,15 +3270,15 @@ msgstr "" msgid "Last user assigned by this rule" msgstr "" -#. Label of the layout (Code) field in DocType 'CRM Dashboard' -#. Label of the layout (Code) field in DocType 'CRM Fields Layout' -#: crm/fcrm/doctype/crm_dashboard/crm_dashboard.json -#: crm/fcrm/doctype/crm_fields_layout/crm_fields_layout.json +#. Label of the layout (Code) field in PageType 'CRM Dashboard' +#. Label of the layout (Code) field in PageType 'CRM Fields Layout' +#: crm/fcrm/pagetype/crm_dashboard/crm_dashboard.json +#: crm/fcrm/pagetype/crm_fields_layout/crm_fields_layout.json msgid "Layout" msgstr "" -#. Label of the lead (Link) field in DocType 'CRM Deal' -#: crm/fcrm/doctype/crm_deal/crm_deal.json +#. Label of the lead (Link) field in PageType 'CRM Deal' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json #: frontend/src/components/Calendar/CalendarEventPanel.vue:263 #: frontend/src/components/Calendar/CalendarEventPanel.vue:288 #: frontend/src/components/Layouts/AppSidebar.vue:550 @@ -3291,32 +3291,32 @@ msgstr "" msgid "Lead" msgstr "" -#. Label of the lead_details_tab (Tab Break) field in DocType 'CRM Deal' -#: crm/fcrm/doctype/crm_deal/crm_deal.json +#. Label of the lead_details_tab (Tab Break) field in PageType 'CRM Deal' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json msgid "Lead Details" msgstr "" -#. Label of the lead_name (Data) field in DocType 'CRM Deal' -#: crm/fcrm/doctype/crm_deal/crm_deal.json +#. Label of the lead_name (Data) field in PageType 'CRM Deal' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json msgid "Lead Name" msgstr "" -#. Label of the lead_owner (Link) field in DocType 'CRM Lead' -#: crm/fcrm/doctype/crm_lead/crm_lead.json +#. Label of the lead_owner (Link) field in PageType 'CRM Lead' +#: crm/fcrm/pagetype/crm_lead/crm_lead.json msgid "Lead Owner" msgstr "" -#: crm/fcrm/doctype/crm_lead/crm_lead.py:73 +#: crm/fcrm/pagetype/crm_lead/crm_lead.py:73 msgid "Lead Owner cannot be same as the Lead Email Address" msgstr "" -#. Label of a shortcut in the Frappe CRM Workspace -#: crm/fcrm/workspace/frappe_crm/frappe_crm.json +#. Label of a shortcut in the Jingrow CRM Workspace +#: crm/fcrm/workspace/jingrow_crm/jingrow_crm.json msgid "Lead Sources" msgstr "" -#. Label of a shortcut in the Frappe CRM Workspace -#: crm/fcrm/workspace/frappe_crm/frappe_crm.json +#. Label of a shortcut in the Jingrow CRM Workspace +#: crm/fcrm/workspace/jingrow_crm/jingrow_crm.json msgid "Lead Statuses" msgstr "" @@ -3328,8 +3328,8 @@ msgstr "" msgid "Lead to deal conversion pipeline" msgstr "" -#. Label of a shortcut in the Frappe CRM Workspace -#: crm/fcrm/workspace/frappe_crm/frappe_crm.json +#. Label of a shortcut in the Jingrow CRM Workspace +#: crm/fcrm/workspace/jingrow_crm/jingrow_crm.json #: frontend/src/pages/InvalidPage.vue:9 frontend/src/pages/Lead.vue:340 #: frontend/src/pages/MobileLead.vue:291 msgid "Leads" @@ -3345,8 +3345,8 @@ msgstr "" msgid "Learn about conditions" msgstr "" -#. Label of the lft (Int) field in DocType 'CRM Territory' -#: crm/fcrm/doctype/crm_territory/crm_territory.json +#. Label of the lft (Int) field in PageType 'CRM Territory' +#: crm/fcrm/pagetype/crm_territory/crm_territory.json msgid "Left" msgstr "" @@ -3367,15 +3367,15 @@ msgstr "" msgid "Link" msgstr "" -#. Label of the links (Table) field in DocType 'CRM Call Log' -#: crm/fcrm/doctype/crm_call_log/crm_call_log.json +#. Label of the links (Table) field in PageType 'CRM Call Log' +#: crm/fcrm/pagetype/crm_call_log/crm_call_log.json msgid "Links" msgstr "" -#. Option for the 'Apply To' (Select) field in DocType 'CRM Form Script' -#. Label of the list_tab (Tab Break) field in DocType 'CRM View Settings' -#: crm/fcrm/doctype/crm_form_script/crm_form_script.json -#: crm/fcrm/doctype/crm_view_settings/crm_view_settings.json +#. Option for the 'Apply To' (Select) field in PageType 'CRM Form Script' +#. Label of the list_tab (Tab Break) field in PageType 'CRM View Settings' +#: crm/fcrm/pagetype/crm_form_script/crm_form_script.json +#: crm/fcrm/pagetype/crm_view_settings/crm_view_settings.json #: frontend/src/components/ViewControls.vue:374 #: frontend/src/components/ViewControls.vue:589 frontend/src/utils/view.js:12 msgid "List" @@ -3385,9 +3385,9 @@ msgstr "" msgid "Listen" msgstr "" -#. Label of the load_default_columns (Check) field in DocType 'CRM View +#. Label of the load_default_columns (Check) field in PageType 'CRM View #. Settings' -#: crm/fcrm/doctype/crm_view_settings/crm_view_settings.json +#: crm/fcrm/pagetype/crm_view_settings/crm_view_settings.json msgid "Load Default Columns" msgstr "" @@ -3403,10 +3403,10 @@ msgstr "" msgid "Loading..." msgstr "" -#. Label of the log_tab (Tab Break) field in DocType 'CRM Deal' -#. Label of the log_tab (Tab Break) field in DocType 'CRM Lead' -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_lead/crm_lead.json +#. Label of the log_tab (Tab Break) field in PageType 'CRM Deal' +#. Label of the log_tab (Tab Break) field in PageType 'CRM Lead' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_lead/crm_lead.json msgid "Log" msgstr "" @@ -3417,28 +3417,28 @@ msgid "Log a Call" msgstr "" #: frontend/src/composables/frappecloud.js:23 -msgid "Login to Frappe Cloud?" +msgid "Login to Jingrow Cloud?" msgstr "" -#. Label of the brand_logo (Attach) field in DocType 'FCRM Settings' -#: crm/fcrm/doctype/fcrm_settings/fcrm_settings.json +#. Label of the brand_logo (Attach) field in PageType 'FCRM Settings' +#: crm/fcrm/pagetype/fcrm_settings/fcrm_settings.json msgid "Logo" msgstr "" -#. Option for the 'Type' (Select) field in DocType 'CRM Deal Status' -#: crm/fcrm/doctype/crm_deal_status/crm_deal_status.json +#. Option for the 'Type' (Select) field in PageType 'CRM Deal Status' +#: crm/fcrm/pagetype/crm_deal_status/crm_deal_status.json msgid "Lost" msgstr "" -#. Label of the lost_notes (Text) field in DocType 'CRM Deal' -#: crm/fcrm/doctype/crm_deal/crm_deal.json +#. Label of the lost_notes (Text) field in PageType 'CRM Deal' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json msgid "Lost Notes" msgstr "" -#. Label of the lost_reason (Link) field in DocType 'CRM Deal' -#. Label of the lost_reason (Data) field in DocType 'CRM Lost Reason' -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_lost_reason/crm_lost_reason.json +#. Label of the lost_reason (Link) field in PageType 'CRM Deal' +#. Label of the lost_reason (Data) field in PageType 'CRM Lost Reason' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_lost_reason/crm_lost_reason.json msgid "Lost Reason" msgstr "" @@ -3464,8 +3464,8 @@ msgstr "" msgid "Lost reason is required" msgstr "" -#. Option for the 'Priority' (Select) field in DocType 'CRM Task' -#: crm/fcrm/doctype/crm_task/crm_task.json +#. Option for the 'Priority' (Select) field in PageType 'CRM Task' +#: crm/fcrm/pagetype/crm_task/crm_task.json msgid "Low" msgstr "" @@ -3542,8 +3542,8 @@ msgstr "" msgid "Mandatory field error: {0}" msgstr "" -#. Option for the 'Telephony Medium' (Select) field in DocType 'CRM Call Log' -#: crm/fcrm/doctype/crm_call_log/crm_call_log.json +#. Option for the 'Telephony Medium' (Select) field in PageType 'CRM Call Log' +#: crm/fcrm/pagetype/crm_call_log/crm_call_log.json msgid "Manual" msgstr "" @@ -3562,25 +3562,25 @@ msgstr "" msgid "May 1, 2025" msgstr "" -#. Label of the medium (Data) field in DocType 'CRM Call Log' -#. Option for the 'Priority' (Select) field in DocType 'CRM Task' -#: crm/fcrm/doctype/crm_call_log/crm_call_log.json -#: crm/fcrm/doctype/crm_task/crm_task.json +#. Label of the medium (Data) field in PageType 'CRM Call Log' +#. Option for the 'Priority' (Select) field in PageType 'CRM Task' +#: crm/fcrm/pagetype/crm_call_log/crm_call_log.json +#: crm/fcrm/pagetype/crm_task/crm_task.json msgid "Medium" msgstr "" -#. Option for the 'Type' (Select) field in DocType 'CRM Notification' -#: crm/fcrm/doctype/crm_notification/crm_notification.json +#. Option for the 'Type' (Select) field in PageType 'CRM Notification' +#: crm/fcrm/pagetype/crm_notification/crm_notification.json msgid "Mention" msgstr "" -#. Label of the message (HTML Editor) field in DocType 'CRM Notification' -#: crm/fcrm/doctype/crm_notification/crm_notification.json +#. Label of the message (HTML Editor) field in PageType 'CRM Notification' +#: crm/fcrm/pagetype/crm_notification/crm_notification.json msgid "Message" msgstr "" -#. Label of the middle_name (Data) field in DocType 'CRM Lead' -#: crm/fcrm/doctype/crm_lead/crm_lead.json +#. Label of the middle_name (Data) field in PageType 'CRM Lead' +#: crm/fcrm/pagetype/crm_lead/crm_lead.json msgid "Middle Name" msgstr "" @@ -3588,10 +3588,10 @@ msgstr "" msgid "Minimize" msgstr "" -#. Label of the mobile_no (Data) field in DocType 'CRM Contacts' -#. Label of the mobile_no (Data) field in DocType 'CRM Lead' -#: crm/fcrm/doctype/crm_contacts/crm_contacts.json -#: crm/fcrm/doctype/crm_lead/crm_lead.json +#. Label of the mobile_no (Data) field in PageType 'CRM Contacts' +#. Label of the mobile_no (Data) field in PageType 'CRM Lead' +#: crm/fcrm/pagetype/crm_contacts/crm_contacts.json +#: crm/fcrm/pagetype/crm_lead/crm_lead.json msgid "Mobile No" msgstr "" @@ -3600,8 +3600,8 @@ msgstr "" msgid "Mobile No should be a number" msgstr "" -#. Label of the mobile_no (Data) field in DocType 'CRM Telephony Agent' -#: crm/fcrm/doctype/crm_telephony_agent/crm_telephony_agent.json +#. Label of the mobile_no (Data) field in PageType 'CRM Telephony Agent' +#: crm/fcrm/pagetype/crm_telephony_agent/crm_telephony_agent.json msgid "Mobile No." msgstr "" @@ -3623,10 +3623,10 @@ msgstr "" msgid "Mobile no" msgstr "" -#. Option for the 'Weekly Off' (Select) field in DocType 'CRM Holiday List' -#. Option for the 'Workday' (Select) field in DocType 'CRM Service Day' -#: crm/fcrm/doctype/crm_holiday_list/crm_holiday_list.json -#: crm/fcrm/doctype/crm_service_day/crm_service_day.json +#. Option for the 'Weekly Off' (Select) field in PageType 'CRM Holiday List' +#. Option for the 'Workday' (Select) field in PageType 'CRM Service Day' +#: crm/fcrm/pagetype/crm_holiday_list/crm_holiday_list.json +#: crm/fcrm/pagetype/crm_service_day/crm_service_day.json msgid "Monday" msgstr "" @@ -3658,12 +3658,12 @@ msgstr "" msgid "My Open Deals" msgstr "" -#. Label of the title (Data) field in DocType 'CRM Dashboard' -#. Label of the name1 (Data) field in DocType 'CRM Dropdown Item' -#. Label of the brand_name (Data) field in DocType 'FCRM Settings' -#: crm/fcrm/doctype/crm_dashboard/crm_dashboard.json -#: crm/fcrm/doctype/crm_dropdown_item/crm_dropdown_item.json -#: crm/fcrm/doctype/fcrm_settings/fcrm_settings.json +#. Label of the title (Data) field in PageType 'CRM Dashboard' +#. Label of the name1 (Data) field in PageType 'CRM Dropdown Item' +#. Label of the brand_name (Data) field in PageType 'FCRM Settings' +#: crm/fcrm/pagetype/crm_dashboard/crm_dashboard.json +#: crm/fcrm/pagetype/crm_dropdown_item/crm_dropdown_item.json +#: crm/fcrm/pagetype/fcrm_settings/fcrm_settings.json #: frontend/src/components/Settings/AssignmentRules/AssignmentRuleView.vue:51 #: frontend/src/components/Settings/AssignmentRules/AssignmentRuleView.vue:52 #: frontend/src/components/Settings/EmailTemplate/EditEmailTemplate.vue:39 @@ -3680,10 +3680,10 @@ msgstr "" msgid "Name is required" msgstr "" -#. Label of the naming_series (Select) field in DocType 'CRM Deal' -#. Label of the naming_series (Select) field in DocType 'CRM Product' -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_product/crm_product.json +#. Label of the naming_series (Select) field in PageType 'CRM Deal' +#. Label of the naming_series (Select) field in PageType 'CRM Product' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_product/crm_product.json msgid "Naming Series" msgstr "" @@ -3691,15 +3691,15 @@ msgstr "" msgid "Nested conditions" msgstr "" -#. Label of the net_amount (Currency) field in DocType 'CRM Products' -#: crm/fcrm/doctype/crm_products/crm_products.json +#. Label of the net_amount (Currency) field in PageType 'CRM Products' +#: crm/fcrm/pagetype/crm_products/crm_products.json msgid "Net Amount" msgstr "" -#. Label of the net_total (Currency) field in DocType 'CRM Deal' -#. Label of the net_total (Currency) field in DocType 'CRM Lead' -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_lead/crm_lead.json +#. Label of the net_total (Currency) field in PageType 'CRM Deal' +#. Label of the net_total (Currency) field in PageType 'CRM Lead' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_lead/crm_lead.json msgid "Net Total" msgstr "" @@ -3814,8 +3814,8 @@ msgstr "" msgid "Next Quarter" msgstr "" -#. Label of the next_step (Data) field in DocType 'CRM Deal' -#: crm/fcrm/doctype/crm_deal/crm_deal.json +#. Label of the next_step (Data) field in PageType 'CRM Deal' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json msgid "Next Step" msgstr "" @@ -3831,8 +3831,8 @@ msgstr "" msgid "No" msgstr "" -#. Option for the 'Status' (Select) field in DocType 'CRM Call Log' -#: crm/fcrm/doctype/crm_call_log/crm_call_log.json +#. Option for the 'Status' (Select) field in PageType 'CRM Call Log' +#: crm/fcrm/pagetype/crm_call_log/crm_call_log.json msgid "No Answer" msgstr "" @@ -3930,12 +3930,12 @@ msgstr "" msgid "No {0} Found" msgstr "" -#. Label of the no_of_employees (Select) field in DocType 'CRM Deal' -#. Label of the no_of_employees (Select) field in DocType 'CRM Lead' -#. Label of the no_of_employees (Select) field in DocType 'CRM Organization' -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_lead/crm_lead.json -#: crm/fcrm/doctype/crm_organization/crm_organization.json +#. Label of the no_of_employees (Select) field in PageType 'CRM Deal' +#. Label of the no_of_employees (Select) field in PageType 'CRM Lead' +#. Label of the no_of_employees (Select) field in PageType 'CRM Organization' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_lead/crm_lead.json +#: crm/fcrm/pagetype/crm_organization/crm_organization.json msgid "No. of Employees" msgstr "" @@ -3981,24 +3981,24 @@ msgstr "" msgid "Not Saved" msgstr "" -#: crm/fcrm/doctype/crm_deal/crm_deal.py:272 +#: crm/fcrm/pagetype/crm_deal/crm_deal.py:272 msgid "Not allowed to add contact to Deal" msgstr "" -#: crm/fcrm/doctype/crm_lead/crm_lead.py:408 +#: crm/fcrm/pagetype/crm_lead/crm_lead.py:408 msgid "Not allowed to convert Lead to Deal" msgstr "" -#: crm/fcrm/doctype/crm_deal/crm_deal.py:283 +#: crm/fcrm/pagetype/crm_deal/crm_deal.py:283 msgid "Not allowed to remove contact from Deal" msgstr "" -#: crm/fcrm/doctype/crm_deal/crm_deal.py:294 +#: crm/fcrm/pagetype/crm_deal/crm_deal.py:294 msgid "Not allowed to set primary contact for Deal" msgstr "" -#. Label of the note (Link) field in DocType 'CRM Call Log' -#: crm/fcrm/doctype/crm_call_log/crm_call_log.json +#. Label of the note (Link) field in PageType 'CRM Call Log' +#: crm/fcrm/pagetype/crm_call_log/crm_call_log.json #: frontend/src/components/Layouts/AppSidebar.vue:554 msgid "Note" msgstr "" @@ -4017,21 +4017,21 @@ msgstr "" msgid "Notification" msgstr "" -#. Label of the notification_text (Text) field in DocType 'CRM Notification' -#: crm/fcrm/doctype/crm_notification/crm_notification.json +#. Label of the notification_text (Text) field in PageType 'CRM Notification' +#: crm/fcrm/pagetype/crm_notification/crm_notification.json msgid "Notification Text" msgstr "" -#. Label of the notification_type_doc (Dynamic Link) field in DocType 'CRM +#. Label of the notification_type_pg (Dynamic Link) field in PageType 'CRM #. Notification' -#: crm/fcrm/doctype/crm_notification/crm_notification.json -msgid "Notification Type Doc" +#: crm/fcrm/pagetype/crm_notification/crm_notification.json +msgid "Notification Type Pg" msgstr "" -#. Label of the notification_type_doctype (Link) field in DocType 'CRM +#. Label of the notification_type_pagetype (Link) field in PageType 'CRM #. Notification' -#: crm/fcrm/doctype/crm_notification/crm_notification.json -msgid "Notification Type Doctype" +#: crm/fcrm/pagetype/crm_notification/crm_notification.json +msgid "Notification Type Pagetype" msgstr "" #: frontend/src/components/Layouts/AppSidebar.vue:13 @@ -4041,8 +4041,8 @@ msgstr "" msgid "Notifications" msgstr "" -#. Label of the number (Data) field in DocType 'CRM Telephony Phone' -#: crm/fcrm/doctype/crm_telephony_phone/crm_telephony_phone.json +#. Label of the number (Data) field in PageType 'CRM Telephony Phone' +#: crm/fcrm/pagetype/crm_telephony_phone/crm_telephony_phone.json msgid "Number" msgstr "" @@ -4064,18 +4064,18 @@ msgstr "" msgid "Old Condition" msgstr "" -#. Label of the old_parent (Link) field in DocType 'CRM Territory' -#: crm/fcrm/doctype/crm_territory/crm_territory.json +#. Label of the old_parent (Link) field in PageType 'CRM Territory' +#: crm/fcrm/pagetype/crm_territory/crm_territory.json msgid "Old Parent" msgstr "" -#. Option for the 'Type' (Select) field in DocType 'CRM Deal Status' -#: crm/fcrm/doctype/crm_deal_status/crm_deal_status.json +#. Option for the 'Type' (Select) field in PageType 'CRM Deal Status' +#: crm/fcrm/pagetype/crm_deal_status/crm_deal_status.json msgid "On Hold" msgstr "" -#. Option for the 'Type' (Select) field in DocType 'CRM Deal Status' -#: crm/fcrm/doctype/crm_deal_status/crm_deal_status.json +#. Option for the 'Type' (Select) field in PageType 'CRM Deal Status' +#: crm/fcrm/pagetype/crm_deal_status/crm_deal_status.json msgid "Ongoing" msgstr "" @@ -4088,13 +4088,13 @@ msgstr "" msgid "Only image files are allowed" msgstr "" -#: crm/fcrm/doctype/crm_deal/crm_deal.py:60 -#: crm/fcrm/doctype/crm_telephony_agent/crm_telephony_agent.py:23 +#: crm/fcrm/pagetype/crm_deal/crm_deal.py:60 +#: crm/fcrm/pagetype/crm_telephony_agent/crm_telephony_agent.py:23 msgid "Only one {0} can be set as primary." msgstr "" -#. Option for the 'Type' (Select) field in DocType 'CRM Deal Status' -#: crm/fcrm/doctype/crm_deal_status/crm_deal_status.json +#. Option for the 'Type' (Select) field in PageType 'CRM Deal Status' +#: crm/fcrm/pagetype/crm_deal_status/crm_deal_status.json msgid "Open" msgstr "" @@ -4108,13 +4108,13 @@ msgstr "" msgid "Open Lead" msgstr "" -#: crm/fcrm/doctype/crm_deal/crm_deal.js:6 -#: crm/fcrm/doctype/crm_lead/crm_lead.js:6 +#: crm/fcrm/pagetype/crm_deal/crm_deal.js:6 +#: crm/fcrm/pagetype/crm_lead/crm_lead.js:6 msgid "Open in Portal" msgstr "" -#. Label of the open_in_new_window (Check) field in DocType 'CRM Dropdown Item' -#: crm/fcrm/doctype/crm_dropdown_item/crm_dropdown_item.json +#. Label of the open_in_new_window (Check) field in PageType 'CRM Dropdown Item' +#: crm/fcrm/pagetype/crm_dropdown_item/crm_dropdown_item.json msgid "Open in new window" msgstr "" @@ -4136,17 +4136,17 @@ msgstr "" msgid "Or create leads manually" msgstr "" -#. Label of the order_by_tab (Tab Break) field in DocType 'CRM View Settings' -#. Label of the order_by (Code) field in DocType 'CRM View Settings' -#: crm/fcrm/doctype/crm_view_settings/crm_view_settings.json +#. Label of the order_by_tab (Tab Break) field in PageType 'CRM View Settings' +#. Label of the order_by (Code) field in PageType 'CRM View Settings' +#: crm/fcrm/pagetype/crm_view_settings/crm_view_settings.json msgid "Order By" msgstr "" -#. Label of the organization (Link) field in DocType 'CRM Deal' -#. Label of the organization_tab (Tab Break) field in DocType 'CRM Deal' -#. Label of the organization (Data) field in DocType 'CRM Lead' -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_lead/crm_lead.json +#. Label of the organization (Link) field in PageType 'CRM Deal' +#. Label of the organization_tab (Tab Break) field in PageType 'CRM Deal' +#. Label of the organization (Data) field in PageType 'CRM Lead' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_lead/crm_lead.json #: frontend/src/components/Layouts/AppSidebar.vue:553 #: frontend/src/components/Modals/ConvertToDealModal.vue:25 #: frontend/src/pages/Contact.vue:494 frontend/src/pages/MobileContact.vue:502 @@ -4158,22 +4158,22 @@ msgstr "" msgid "Organization" msgstr "" -#. Label of the organization_details_section (Section Break) field in DocType +#. Label of the organization_details_section (Section Break) field in PageType #. 'CRM Deal' -#: crm/fcrm/doctype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_deal/crm_deal.json msgid "Organization Details" msgstr "" -#. Label of the organization_logo (Attach Image) field in DocType 'CRM +#. Label of the organization_logo (Attach Image) field in PageType 'CRM #. Organization' -#: crm/fcrm/doctype/crm_organization/crm_organization.json +#: crm/fcrm/pagetype/crm_organization/crm_organization.json msgid "Organization Logo" msgstr "" -#. Label of the organization_name (Data) field in DocType 'CRM Deal' -#. Label of the organization_name (Data) field in DocType 'CRM Organization' -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_organization/crm_organization.json +#. Label of the organization_name (Data) field in PageType 'CRM Deal' +#. Label of the organization_name (Data) field in PageType 'CRM Organization' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_organization/crm_organization.json msgid "Organization Name" msgstr "" @@ -4181,8 +4181,8 @@ msgstr "" msgid "Organization logo" msgstr "" -#. Label of a shortcut in the Frappe CRM Workspace -#: crm/fcrm/workspace/frappe_crm/frappe_crm.json +#. Label of a shortcut in the Jingrow CRM Workspace +#: crm/fcrm/workspace/jingrow_crm/jingrow_crm.json #: frontend/src/pages/MobileOrganization.vue:205 #: frontend/src/pages/Organization.vue:234 msgid "Organizations" @@ -4196,8 +4196,8 @@ msgstr "" msgid "Other features" msgstr "" -#. Label of the organization_tab (Tab Break) field in DocType 'CRM Lead' -#: crm/fcrm/doctype/crm_lead/crm_lead.json +#. Label of the organization_tab (Tab Break) field in PageType 'CRM Lead' +#: crm/fcrm/pagetype/crm_lead/crm_lead.json msgid "Others" msgstr "" @@ -4205,13 +4205,13 @@ msgstr "" msgid "Outbound Call" msgstr "" -#. Option for the 'Type' (Select) field in DocType 'CRM Call Log' -#: crm/fcrm/doctype/crm_call_log/crm_call_log.json +#. Option for the 'Type' (Select) field in PageType 'CRM Call Log' +#: crm/fcrm/pagetype/crm_call_log/crm_call_log.json msgid "Outgoing" msgstr "" -#. Label of the log_owner (Link) field in DocType 'CRM Status Change Log' -#: crm/fcrm/doctype/crm_status_change_log/crm_status_change_log.json +#. Label of the log_owner (Link) field in PageType 'CRM Status Change Log' +#: crm/fcrm/pagetype/crm_status_change_log/crm_status_change_log.json msgid "Owner" msgstr "" @@ -4219,8 +4219,8 @@ msgstr "" msgid "Owner: {0}" msgstr "" -#. Label of the parent_crm_territory (Link) field in DocType 'CRM Territory' -#: crm/fcrm/doctype/crm_territory/crm_territory.json +#. Label of the parent_crm_territory (Link) field in PageType 'CRM Territory' +#: crm/fcrm/pagetype/crm_territory/crm_territory.json msgid "Parent CRM Territory" msgstr "" @@ -4251,8 +4251,8 @@ msgstr "" msgid "Payment Reminder from Frappé - (#{{ name }})" msgstr "" -#. Option for the 'Status' (Select) field in DocType 'CRM Invitation' -#: crm/fcrm/doctype/crm_invitation/crm_invitation.json +#. Option for the 'Status' (Select) field in PageType 'CRM Invitation' +#: crm/fcrm/pagetype/crm_invitation/crm_invitation.json msgid "Pending" msgstr "" @@ -4264,10 +4264,10 @@ msgstr "" msgid "Period" msgstr "" -#. Label of the person_section (Section Break) field in DocType 'CRM Deal' -#. Label of the person_tab (Tab Break) field in DocType 'CRM Lead' -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_lead/crm_lead.json +#. Label of the person_section (Section Break) field in PageType 'CRM Deal' +#. Label of the person_tab (Tab Break) field in PageType 'CRM Lead' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_lead/crm_lead.json msgid "Person" msgstr "" @@ -4275,19 +4275,19 @@ msgstr "" msgid "Personal Settings" msgstr "" -#. Label of the phone (Data) field in DocType 'CRM Contacts' -#. Label of the phone (Data) field in DocType 'CRM Lead' -#. Option for the 'Device' (Select) field in DocType 'CRM Telephony Agent' -#: crm/fcrm/doctype/crm_contacts/crm_contacts.json -#: crm/fcrm/doctype/crm_lead/crm_lead.json -#: crm/fcrm/doctype/crm_telephony_agent/crm_telephony_agent.json +#. Label of the phone (Data) field in PageType 'CRM Contacts' +#. Label of the phone (Data) field in PageType 'CRM Lead' +#. Option for the 'Device' (Select) field in PageType 'CRM Telephony Agent' +#: crm/fcrm/pagetype/crm_contacts/crm_contacts.json +#: crm/fcrm/pagetype/crm_lead/crm_lead.json +#: crm/fcrm/pagetype/crm_telephony_agent/crm_telephony_agent.json #: frontend/src/pages/MobileOrganization.vue:495 #: frontend/src/pages/Organization.vue:516 msgid "Phone" msgstr "" -#. Label of the phone_nos (Table) field in DocType 'CRM Telephony Agent' -#: crm/fcrm/doctype/crm_telephony_agent/crm_telephony_agent.json +#. Label of the phone_nos (Table) field in PageType 'CRM Telephony Agent' +#: crm/fcrm/pagetype/crm_telephony_agent/crm_telephony_agent.json msgid "Phone Numbers" msgstr "" @@ -4295,8 +4295,8 @@ msgstr "" msgid "Pin View" msgstr "" -#. Label of the pinned (Check) field in DocType 'CRM View Settings' -#: crm/fcrm/doctype/crm_view_settings/crm_view_settings.json +#. Label of the pinned (Check) field in PageType 'CRM View Settings' +#: crm/fcrm/pagetype/crm_view_settings/crm_view_settings.json msgid "Pinned" msgstr "" @@ -4346,7 +4346,7 @@ msgstr "" msgid "Please select an existing organization" msgstr "" -#: crm/fcrm/doctype/helpdesk_crm_settings/helpdesk_crm_settings.py:126 +#: crm/fcrm/pagetype/helpdesk_crm_settings/helpdesk_crm_settings.py:126 msgid "Please set Email Address" msgstr "" @@ -4354,18 +4354,18 @@ msgstr "" msgid "Please setup Exotel intergration" msgstr "" -#: crm/fcrm/doctype/crm_deal/crm_deal.py:181 +#: crm/fcrm/pagetype/crm_deal/crm_deal.py:181 msgid "Please specify a reason for losing the deal." msgstr "" -#: crm/fcrm/doctype/crm_deal/crm_deal.py:183 +#: crm/fcrm/pagetype/crm_deal/crm_deal.py:183 msgid "Please specify the reason for losing the deal." msgstr "" -#. Label of the position (Int) field in DocType 'CRM Deal Status' -#. Label of the position (Int) field in DocType 'CRM Lead Status' -#: crm/fcrm/doctype/crm_deal_status/crm_deal_status.json -#: crm/fcrm/doctype/crm_lead_status/crm_lead_status.json +#. Label of the position (Int) field in PageType 'CRM Deal Status' +#. Label of the position (Int) field in PageType 'CRM Lead Status' +#: crm/fcrm/pagetype/crm_deal_status/crm_deal_status.json +#: crm/fcrm/pagetype/crm_lead_status/crm_lead_status.json msgid "Position" msgstr "" @@ -4373,18 +4373,18 @@ msgstr "" msgid "Primary" msgstr "" -#. Label of the email (Data) field in DocType 'CRM Deal' -#: crm/fcrm/doctype/crm_deal/crm_deal.json +#. Label of the email (Data) field in PageType 'CRM Deal' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json msgid "Primary Email" msgstr "" -#. Label of the mobile_no (Data) field in DocType 'CRM Deal' -#: crm/fcrm/doctype/crm_deal/crm_deal.json +#. Label of the mobile_no (Data) field in PageType 'CRM Deal' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json msgid "Primary Mobile No" msgstr "" -#. Label of the phone (Data) field in DocType 'CRM Deal' -#: crm/fcrm/doctype/crm_deal/crm_deal.json +#. Label of the phone (Data) field in PageType 'CRM Deal' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json msgid "Primary Phone" msgstr "" @@ -4392,57 +4392,57 @@ msgstr "" msgid "Primary contact set" msgstr "" -#. Label of the priorities (Table) field in DocType 'CRM Service Level +#. Label of the priorities (Table) field in PageType 'CRM Service Level #. Agreement' -#: crm/fcrm/doctype/crm_service_level_agreement/crm_service_level_agreement.json +#: crm/fcrm/pagetype/crm_service_level_agreement/crm_service_level_agreement.json msgid "Priorities" msgstr "" -#. Label of the priority (Link) field in DocType 'CRM Service Level Priority' -#. Label of the priority (Select) field in DocType 'CRM Task' -#: crm/fcrm/doctype/crm_service_level_priority/crm_service_level_priority.json -#: crm/fcrm/doctype/crm_task/crm_task.json +#. Label of the priority (Link) field in PageType 'CRM Service Level Priority' +#. Label of the priority (Select) field in PageType 'CRM Task' +#: crm/fcrm/pagetype/crm_service_level_priority/crm_service_level_priority.json +#: crm/fcrm/pagetype/crm_task/crm_task.json #: frontend/src/components/Settings/AssignmentRules/AssignmentRuleView.vue:64 #: frontend/src/components/Settings/AssignmentRules/AssignmentRulesList.vue:20 msgid "Priority" msgstr "" -#. Label of the private (Check) field in DocType 'CRM Dashboard' -#: crm/fcrm/doctype/crm_dashboard/crm_dashboard.json +#. Label of the private (Check) field in PageType 'CRM Dashboard' +#: crm/fcrm/pagetype/crm_dashboard/crm_dashboard.json #: frontend/src/components/FilesUploader/FilesUploaderArea.vue:89 msgid "Private" msgstr "" -#. Label of the probability (Percent) field in DocType 'CRM Deal' -#. Label of the probability (Percent) field in DocType 'CRM Deal Status' -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_deal_status/crm_deal_status.json +#. Label of the probability (Percent) field in PageType 'CRM Deal' +#. Label of the probability (Percent) field in PageType 'CRM Deal Status' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_deal_status/crm_deal_status.json msgid "Probability" msgstr "" -#. Label of the product_code (Link) field in DocType 'CRM Products' -#: crm/fcrm/doctype/crm_products/crm_products.json +#. Label of the product_code (Link) field in PageType 'CRM Products' +#: crm/fcrm/pagetype/crm_products/crm_products.json msgid "Product" msgstr "" -#. Label of the product_code (Data) field in DocType 'CRM Product' -#: crm/fcrm/doctype/crm_product/crm_product.json +#. Label of the product_code (Data) field in PageType 'CRM Product' +#: crm/fcrm/pagetype/crm_product/crm_product.json msgid "Product Code" msgstr "" -#. Label of the product_name (Data) field in DocType 'CRM Product' -#. Label of the product_name (Data) field in DocType 'CRM Products' -#: crm/fcrm/doctype/crm_product/crm_product.json -#: crm/fcrm/doctype/crm_products/crm_products.json +#. Label of the product_name (Data) field in PageType 'CRM Product' +#. Label of the product_name (Data) field in PageType 'CRM Products' +#: crm/fcrm/pagetype/crm_product/crm_product.json +#: crm/fcrm/pagetype/crm_products/crm_products.json msgid "Product Name" msgstr "" -#. Label of the products_tab (Tab Break) field in DocType 'CRM Deal' -#. Label of the products (Table) field in DocType 'CRM Deal' -#. Label of the products_tab (Tab Break) field in DocType 'CRM Lead' -#. Label of the products (Table) field in DocType 'CRM Lead' -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_lead/crm_lead.json +#. Label of the products_tab (Tab Break) field in PageType 'CRM Deal' +#. Label of the products (Table) field in PageType 'CRM Deal' +#. Label of the products_tab (Tab Break) field in PageType 'CRM Lead' +#. Label of the products (Table) field in PageType 'CRM Lead' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_lead/crm_lead.json msgid "Products" msgstr "" @@ -4459,8 +4459,8 @@ msgstr "" msgid "Projected vs actual revenue based on deal probability" msgstr "" -#. Label of the public (Check) field in DocType 'CRM View Settings' -#: crm/fcrm/doctype/crm_view_settings/crm_view_settings.json +#. Label of the public (Check) field in PageType 'CRM View Settings' +#: crm/fcrm/pagetype/crm_view_settings/crm_view_settings.json msgid "Public" msgstr "" @@ -4472,23 +4472,23 @@ msgstr "" msgid "Public view" msgstr "" -#. Label of the qty (Float) field in DocType 'CRM Products' -#: crm/fcrm/doctype/crm_products/crm_products.json +#. Label of the qty (Float) field in PageType 'CRM Products' +#: crm/fcrm/pagetype/crm_products/crm_products.json msgid "Quantity" msgstr "" -#. Option for the 'Status' (Select) field in DocType 'CRM Call Log' -#: crm/fcrm/doctype/crm_call_log/crm_call_log.json +#. Option for the 'Status' (Select) field in PageType 'CRM Call Log' +#: crm/fcrm/pagetype/crm_call_log/crm_call_log.json msgid "Queued" msgstr "" -#. Option for the 'Type' (Select) field in DocType 'CRM Fields Layout' -#: crm/fcrm/doctype/crm_fields_layout/crm_fields_layout.json +#. Option for the 'Type' (Select) field in PageType 'CRM Fields Layout' +#: crm/fcrm/pagetype/crm_fields_layout/crm_fields_layout.json msgid "Quick Entry" msgstr "" -#. Option for the 'Type' (Select) field in DocType 'CRM Global Settings' -#: crm/fcrm/doctype/crm_global_settings/crm_global_settings.json +#. Option for the 'Type' (Select) field in PageType 'CRM Global Settings' +#: crm/fcrm/pagetype/crm_global_settings/crm_global_settings.json msgid "Quick Filters" msgstr "" @@ -4500,13 +4500,13 @@ msgstr "" msgid "Quick entry layout" msgstr "" -#. Label of the rate (Currency) field in DocType 'CRM Products' -#: crm/fcrm/doctype/crm_products/crm_products.json +#. Label of the rate (Currency) field in PageType 'CRM Products' +#: crm/fcrm/pagetype/crm_products/crm_products.json msgid "Rate" msgstr "" -#. Label of the read (Check) field in DocType 'CRM Notification' -#: crm/fcrm/doctype/crm_notification/crm_notification.json +#. Label of the read (Check) field in PageType 'CRM Notification' +#: crm/fcrm/pagetype/crm_notification/crm_notification.json msgid "Read" msgstr "" @@ -4514,48 +4514,48 @@ msgstr "" msgid "Reason" msgstr "" -#. Label of the record_calls (Check) field in DocType 'CRM Twilio Settings' -#: crm/fcrm/doctype/crm_twilio_settings/crm_twilio_settings.json +#. Label of the record_calls (Check) field in PageType 'CRM Twilio Settings' +#: crm/fcrm/pagetype/crm_twilio_settings/crm_twilio_settings.json msgid "Record Calls" msgstr "" -#. Label of the record_call (Check) field in DocType 'CRM Exotel Settings' -#: crm/fcrm/doctype/crm_exotel_settings/crm_exotel_settings.json +#. Label of the record_call (Check) field in PageType 'CRM Exotel Settings' +#: crm/fcrm/pagetype/crm_exotel_settings/crm_exotel_settings.json msgid "Record Outgoing Calls" msgstr "" -#. Label of the recording_url (Data) field in DocType 'CRM Call Log' -#: crm/fcrm/doctype/crm_call_log/crm_call_log.json +#. Label of the recording_url (Data) field in PageType 'CRM Call Log' +#: crm/fcrm/pagetype/crm_call_log/crm_call_log.json msgid "Recording URL" msgstr "" -#. Label of the reference_name (Dynamic Link) field in DocType 'CRM +#. Label of the reference_name (Dynamic Link) field in PageType 'CRM #. Notification' -#. Label of the reference_docname (Dynamic Link) field in DocType 'CRM Task' -#. Label of the reference_docname (Dynamic Link) field in DocType 'FCRM Note' -#: crm/fcrm/doctype/crm_notification/crm_notification.json -#: crm/fcrm/doctype/crm_task/crm_task.json -#: crm/fcrm/doctype/fcrm_note/fcrm_note.json -msgid "Reference Doc" +#. Label of the reference_docname (Dynamic Link) field in PageType 'CRM Task' +#. Label of the reference_docname (Dynamic Link) field in PageType 'FCRM Note' +#: crm/fcrm/pagetype/crm_notification/crm_notification.json +#: crm/fcrm/pagetype/crm_task/crm_task.json +#: crm/fcrm/pagetype/fcrm_note/fcrm_note.json +msgid "Reference Pg" msgstr "" -#. Label of the reference_doctype (Link) field in DocType 'CRM Notification' -#: crm/fcrm/doctype/crm_notification/crm_notification.json -msgid "Reference Doctype" +#. Label of the reference_pagetype (Link) field in PageType 'CRM Notification' +#: crm/fcrm/pagetype/crm_notification/crm_notification.json +msgid "Reference Pagetype" msgstr "" -#. Label of the reference_doctype (Link) field in DocType 'CRM Call Log' -#. Label of the reference_doctype (Link) field in DocType 'CRM Task' -#. Label of the reference_doctype (Link) field in DocType 'FCRM Note' -#: crm/fcrm/doctype/crm_call_log/crm_call_log.json -#: crm/fcrm/doctype/crm_task/crm_task.json -#: crm/fcrm/doctype/fcrm_note/fcrm_note.json +#. Label of the reference_pagetype (Link) field in PageType 'CRM Call Log' +#. Label of the reference_pagetype (Link) field in PageType 'CRM Task' +#. Label of the reference_pagetype (Link) field in PageType 'FCRM Note' +#: crm/fcrm/pagetype/crm_call_log/crm_call_log.json +#: crm/fcrm/pagetype/crm_task/crm_task.json +#: crm/fcrm/pagetype/fcrm_note/fcrm_note.json msgid "Reference Document Type" msgstr "" -#. Label of the reference_docname (Dynamic Link) field in DocType 'CRM Call +#. Label of the reference_docname (Dynamic Link) field in PageType 'CRM Call #. Log' -#: crm/fcrm/doctype/crm_call_log/crm_call_log.json +#: crm/fcrm/pagetype/crm_call_log/crm_call_log.json msgid "Reference Name" msgstr "" @@ -4625,8 +4625,8 @@ msgstr "" msgid "Report an Issue" msgstr "" -#. Option for the 'Type' (Select) field in DocType 'CRM Fields Layout' -#: crm/fcrm/doctype/crm_fields_layout/crm_fields_layout.json +#. Option for the 'Type' (Select) field in PageType 'CRM Fields Layout' +#: crm/fcrm/pagetype/crm_fields_layout/crm_fields_layout.json msgid "Required Fields" msgstr "" @@ -4642,7 +4642,7 @@ msgstr "" msgid "Reset Changes" msgstr "" -#: crm/fcrm/doctype/erpnext_crm_settings/erpnext_crm_settings.js:7 +#: crm/fcrm/pagetype/erpnext_crm_settings/erpnext_crm_settings.js:7 msgid "Reset ERPNext Form Script" msgstr "" @@ -4654,35 +4654,35 @@ msgstr "" msgid "Reset to default" msgstr "" -#. Label of the response_by (Datetime) field in DocType 'CRM Deal' -#. Label of the response_by (Datetime) field in DocType 'CRM Lead' -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_lead/crm_lead.json +#. Label of the response_by (Datetime) field in PageType 'CRM Deal' +#. Label of the response_by (Datetime) field in PageType 'CRM Lead' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_lead/crm_lead.json msgid "Response By" msgstr "" -#. Label of the response_details_section (Section Break) field in DocType 'CRM +#. Label of the response_details_section (Section Break) field in PageType 'CRM #. Deal' -#. Label of the response_details_section (Section Break) field in DocType 'CRM +#. Label of the response_details_section (Section Break) field in PageType 'CRM #. Lead' -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_lead/crm_lead.json +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_lead/crm_lead.json msgid "Response Details" msgstr "" -#. Label of the section_break_ufaf (Section Break) field in DocType 'CRM +#. Label of the section_break_ufaf (Section Break) field in PageType 'CRM #. Service Level Agreement' -#: crm/fcrm/doctype/crm_service_level_agreement/crm_service_level_agreement.json +#: crm/fcrm/pagetype/crm_service_level_agreement/crm_service_level_agreement.json msgid "Response and Follow Up" msgstr "" -#: crm/fcrm/doctype/fcrm_settings/fcrm_settings.js:14 +#: crm/fcrm/pagetype/fcrm_settings/fcrm_settings.js:14 msgid "Restore" msgstr "" -#. Label of the restore_defaults (Button) field in DocType 'FCRM Settings' -#: crm/fcrm/doctype/fcrm_settings/fcrm_settings.js:13 -#: crm/fcrm/doctype/fcrm_settings/fcrm_settings.json +#. Label of the restore_defaults (Button) field in PageType 'FCRM Settings' +#: crm/fcrm/pagetype/fcrm_settings/fcrm_settings.js:13 +#: crm/fcrm/pagetype/fcrm_settings/fcrm_settings.json msgid "Restore Defaults" msgstr "" @@ -4699,13 +4699,13 @@ msgstr "" msgid "Rich Text" msgstr "" -#. Label of the rgt (Int) field in DocType 'CRM Territory' -#: crm/fcrm/doctype/crm_territory/crm_territory.json +#. Label of the rgt (Int) field in PageType 'CRM Territory' +#: crm/fcrm/pagetype/crm_territory/crm_territory.json msgid "Right" msgstr "" -#. Option for the 'Status' (Select) field in DocType 'CRM Call Log' -#: crm/fcrm/doctype/crm_call_log/crm_call_log.json +#. Option for the 'Status' (Select) field in PageType 'CRM Call Log' +#: crm/fcrm/pagetype/crm_call_log/crm_call_log.json msgid "Ringing" msgstr "" @@ -4714,55 +4714,55 @@ msgstr "" msgid "Ringing..." msgstr "" -#. Label of the role (Select) field in DocType 'CRM Invitation' -#: crm/fcrm/doctype/crm_invitation/crm_invitation.json +#. Label of the role (Select) field in PageType 'CRM Invitation' +#: crm/fcrm/pagetype/crm_invitation/crm_invitation.json #: frontend/src/components/Modals/AddExistingUserModal.vue:46 msgid "Role" msgstr "" -#. Option for the 'Type' (Select) field in DocType 'CRM Dropdown Item' -#. Label of the route (Data) field in DocType 'CRM Dropdown Item' -#: crm/fcrm/doctype/crm_dropdown_item/crm_dropdown_item.json +#. Option for the 'Type' (Select) field in PageType 'CRM Dropdown Item' +#. Label of the route (Data) field in PageType 'CRM Dropdown Item' +#: crm/fcrm/pagetype/crm_dropdown_item/crm_dropdown_item.json msgid "Route" msgstr "" -#. Label of the route_name (Data) field in DocType 'CRM View Settings' -#: crm/fcrm/doctype/crm_view_settings/crm_view_settings.json +#. Label of the route_name (Data) field in PageType 'CRM View Settings' +#: crm/fcrm/pagetype/crm_view_settings/crm_view_settings.json msgid "Route Name" msgstr "" -#. Label of the rows (Code) field in DocType 'CRM View Settings' -#: crm/fcrm/doctype/crm_view_settings/crm_view_settings.json +#. Label of the rows (Code) field in PageType 'CRM View Settings' +#: crm/fcrm/pagetype/crm_view_settings/crm_view_settings.json msgid "Rows" msgstr "" -#. Label of the sla_tab (Tab Break) field in DocType 'CRM Deal' -#. Label of the sla (Link) field in DocType 'CRM Deal' -#. Label of the sla_tab (Tab Break) field in DocType 'CRM Lead' -#. Label of the sla (Link) field in DocType 'CRM Lead' -#. Label of a shortcut in the Frappe CRM Workspace -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_lead/crm_lead.json -#: crm/fcrm/workspace/frappe_crm/frappe_crm.json +#. Label of the sla_tab (Tab Break) field in PageType 'CRM Deal' +#. Label of the sla (Link) field in PageType 'CRM Deal' +#. Label of the sla_tab (Tab Break) field in PageType 'CRM Lead' +#. Label of the sla (Link) field in PageType 'CRM Lead' +#. Label of a shortcut in the Jingrow CRM Workspace +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_lead/crm_lead.json +#: crm/fcrm/workspace/jingrow_crm/jingrow_crm.json msgid "SLA" msgstr "" -#. Label of the sla_creation (Datetime) field in DocType 'CRM Deal' -#. Label of the sla_creation (Datetime) field in DocType 'CRM Lead' -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_lead/crm_lead.json +#. Label of the sla_creation (Datetime) field in PageType 'CRM Deal' +#. Label of the sla_creation (Datetime) field in PageType 'CRM Lead' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_lead/crm_lead.json msgid "SLA Creation" msgstr "" -#. Label of the sla_name (Data) field in DocType 'CRM Service Level Agreement' -#: crm/fcrm/doctype/crm_service_level_agreement/crm_service_level_agreement.json +#. Label of the sla_name (Data) field in PageType 'CRM Service Level Agreement' +#: crm/fcrm/pagetype/crm_service_level_agreement/crm_service_level_agreement.json msgid "SLA Name" msgstr "" -#. Label of the sla_status (Select) field in DocType 'CRM Deal' -#. Label of the sla_status (Select) field in DocType 'CRM Lead' -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_lead/crm_lead.json +#. Label of the sla_status (Select) field in PageType 'CRM Deal' +#. Label of the sla_status (Select) field in PageType 'CRM Lead' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_lead/crm_lead.json msgid "SLA Status" msgstr "" @@ -4771,57 +4771,57 @@ msgid "SUBJECT" msgstr "" #. Name of a role -#. Option for the 'Role' (Select) field in DocType 'CRM Invitation' -#: crm/fcrm/doctype/crm_call_log/crm_call_log.json -#: crm/fcrm/doctype/crm_communication_status/crm_communication_status.json -#: crm/fcrm/doctype/crm_dashboard/crm_dashboard.json -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_deal_status/crm_deal_status.json -#: crm/fcrm/doctype/crm_exotel_settings/crm_exotel_settings.json -#: crm/fcrm/doctype/crm_form_script/crm_form_script.json -#: crm/fcrm/doctype/crm_global_settings/crm_global_settings.json -#: crm/fcrm/doctype/crm_holiday_list/crm_holiday_list.json -#: crm/fcrm/doctype/crm_industry/crm_industry.json -#: crm/fcrm/doctype/crm_invitation/crm_invitation.json -#: crm/fcrm/doctype/crm_lead/crm_lead.json -#: crm/fcrm/doctype/crm_lead_source/crm_lead_source.json -#: crm/fcrm/doctype/crm_lead_status/crm_lead_status.json -#: crm/fcrm/doctype/crm_lost_reason/crm_lost_reason.json -#: crm/fcrm/doctype/crm_notification/crm_notification.json -#: crm/fcrm/doctype/crm_organization/crm_organization.json -#: crm/fcrm/doctype/crm_service_level_agreement/crm_service_level_agreement.json -#: crm/fcrm/doctype/crm_task/crm_task.json -#: crm/fcrm/doctype/crm_territory/crm_territory.json -#: crm/fcrm/doctype/crm_twilio_settings/crm_twilio_settings.json -#: crm/fcrm/doctype/crm_view_settings/crm_view_settings.json -#: crm/fcrm/doctype/erpnext_crm_settings/erpnext_crm_settings.json -#: crm/fcrm/doctype/fcrm_note/fcrm_note.json -#: crm/fcrm/doctype/fcrm_settings/fcrm_settings.json -#: crm/fcrm/doctype/helpdesk_crm_settings/helpdesk_crm_settings.json +#. Option for the 'Role' (Select) field in PageType 'CRM Invitation' +#: crm/fcrm/pagetype/crm_call_log/crm_call_log.json +#: crm/fcrm/pagetype/crm_communication_status/crm_communication_status.json +#: crm/fcrm/pagetype/crm_dashboard/crm_dashboard.json +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_deal_status/crm_deal_status.json +#: crm/fcrm/pagetype/crm_exotel_settings/crm_exotel_settings.json +#: crm/fcrm/pagetype/crm_form_script/crm_form_script.json +#: crm/fcrm/pagetype/crm_global_settings/crm_global_settings.json +#: crm/fcrm/pagetype/crm_holiday_list/crm_holiday_list.json +#: crm/fcrm/pagetype/crm_industry/crm_industry.json +#: crm/fcrm/pagetype/crm_invitation/crm_invitation.json +#: crm/fcrm/pagetype/crm_lead/crm_lead.json +#: crm/fcrm/pagetype/crm_lead_source/crm_lead_source.json +#: crm/fcrm/pagetype/crm_lead_status/crm_lead_status.json +#: crm/fcrm/pagetype/crm_lost_reason/crm_lost_reason.json +#: crm/fcrm/pagetype/crm_notification/crm_notification.json +#: crm/fcrm/pagetype/crm_organization/crm_organization.json +#: crm/fcrm/pagetype/crm_service_level_agreement/crm_service_level_agreement.json +#: crm/fcrm/pagetype/crm_task/crm_task.json +#: crm/fcrm/pagetype/crm_territory/crm_territory.json +#: crm/fcrm/pagetype/crm_twilio_settings/crm_twilio_settings.json +#: crm/fcrm/pagetype/crm_view_settings/crm_view_settings.json +#: crm/fcrm/pagetype/erpnext_crm_settings/erpnext_crm_settings.json +#: crm/fcrm/pagetype/fcrm_note/fcrm_note.json +#: crm/fcrm/pagetype/fcrm_settings/fcrm_settings.json +#: crm/fcrm/pagetype/helpdesk_crm_settings/helpdesk_crm_settings.json msgid "Sales Manager" msgstr "" #. Name of a role -#. Option for the 'Role' (Select) field in DocType 'CRM Invitation' -#: crm/fcrm/doctype/crm_call_log/crm_call_log.json -#: crm/fcrm/doctype/crm_communication_status/crm_communication_status.json -#: crm/fcrm/doctype/crm_dashboard/crm_dashboard.json -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_deal_status/crm_deal_status.json -#: crm/fcrm/doctype/crm_global_settings/crm_global_settings.json -#: crm/fcrm/doctype/crm_holiday_list/crm_holiday_list.json -#: crm/fcrm/doctype/crm_industry/crm_industry.json -#: crm/fcrm/doctype/crm_invitation/crm_invitation.json -#: crm/fcrm/doctype/crm_lead/crm_lead.json -#: crm/fcrm/doctype/crm_lead_source/crm_lead_source.json -#: crm/fcrm/doctype/crm_lead_status/crm_lead_status.json -#: crm/fcrm/doctype/crm_lost_reason/crm_lost_reason.json -#: crm/fcrm/doctype/crm_notification/crm_notification.json -#: crm/fcrm/doctype/crm_organization/crm_organization.json -#: crm/fcrm/doctype/crm_task/crm_task.json -#: crm/fcrm/doctype/crm_territory/crm_territory.json -#: crm/fcrm/doctype/crm_view_settings/crm_view_settings.json -#: crm/fcrm/doctype/fcrm_note/fcrm_note.json +#. Option for the 'Role' (Select) field in PageType 'CRM Invitation' +#: crm/fcrm/pagetype/crm_call_log/crm_call_log.json +#: crm/fcrm/pagetype/crm_communication_status/crm_communication_status.json +#: crm/fcrm/pagetype/crm_dashboard/crm_dashboard.json +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_deal_status/crm_deal_status.json +#: crm/fcrm/pagetype/crm_global_settings/crm_global_settings.json +#: crm/fcrm/pagetype/crm_holiday_list/crm_holiday_list.json +#: crm/fcrm/pagetype/crm_industry/crm_industry.json +#: crm/fcrm/pagetype/crm_invitation/crm_invitation.json +#: crm/fcrm/pagetype/crm_lead/crm_lead.json +#: crm/fcrm/pagetype/crm_lead_source/crm_lead_source.json +#: crm/fcrm/pagetype/crm_lead_status/crm_lead_status.json +#: crm/fcrm/pagetype/crm_lost_reason/crm_lost_reason.json +#: crm/fcrm/pagetype/crm_notification/crm_notification.json +#: crm/fcrm/pagetype/crm_organization/crm_organization.json +#: crm/fcrm/pagetype/crm_task/crm_task.json +#: crm/fcrm/pagetype/crm_territory/crm_territory.json +#: crm/fcrm/pagetype/crm_view_settings/crm_view_settings.json +#: crm/fcrm/pagetype/fcrm_note/fcrm_note.json #: frontend/src/components/Modals/AddExistingUserModal.vue:92 #: frontend/src/components/Settings/InviteUserPage.vue:156 #: frontend/src/components/Settings/InviteUserPage.vue:163 @@ -4845,17 +4845,17 @@ msgstr "" msgid "Salesperson" msgstr "" -#. Label of the salutation (Link) field in DocType 'CRM Deal' -#. Label of the salutation (Link) field in DocType 'CRM Lead' -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_lead/crm_lead.json +#. Label of the salutation (Link) field in PageType 'CRM Deal' +#. Label of the salutation (Link) field in PageType 'CRM Lead' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_lead/crm_lead.json msgid "Salutation" msgstr "" -#. Option for the 'Weekly Off' (Select) field in DocType 'CRM Holiday List' -#. Option for the 'Workday' (Select) field in DocType 'CRM Service Day' -#: crm/fcrm/doctype/crm_holiday_list/crm_holiday_list.json -#: crm/fcrm/doctype/crm_service_day/crm_service_day.json +#. Option for the 'Weekly Off' (Select) field in PageType 'CRM Holiday List' +#. Option for the 'Workday' (Select) field in PageType 'CRM Service Day' +#: crm/fcrm/pagetype/crm_holiday_list/crm_holiday_list.json +#: crm/fcrm/pagetype/crm_service_day/crm_service_day.json msgid "Saturday" msgstr "" @@ -4904,8 +4904,8 @@ msgstr "" msgid "Schedule an event" msgstr "" -#. Label of the script (Code) field in DocType 'CRM Form Script' -#: crm/fcrm/doctype/crm_form_script/crm_form_script.json +#. Label of the script (Code) field in PageType 'CRM Form Script' +#: crm/fcrm/pagetype/crm_form_script/crm_form_script.json msgid "Script" msgstr "" @@ -4973,18 +4973,18 @@ msgstr "" msgid "Send invites to" msgstr "" -#. Option for the 'Type' (Select) field in DocType 'CRM Dropdown Item' -#: crm/fcrm/doctype/crm_dropdown_item/crm_dropdown_item.json +#. Option for the 'Type' (Select) field in PageType 'CRM Dropdown Item' +#: crm/fcrm/pagetype/crm_dropdown_item/crm_dropdown_item.json msgid "Separator" msgstr "" -#. Label of the naming_series (Select) field in DocType 'CRM Lead' -#: crm/fcrm/doctype/crm_lead/crm_lead.json +#. Label of the naming_series (Select) field in PageType 'CRM Lead' +#: crm/fcrm/pagetype/crm_lead/crm_lead.json msgid "Series" msgstr "" -#. Label of the service_provider (Select) field in DocType 'FCRM Settings' -#: crm/fcrm/doctype/fcrm_settings/fcrm_settings.json +#. Label of the service_provider (Select) field in PageType 'FCRM Settings' +#: crm/fcrm/pagetype/fcrm_settings/fcrm_settings.json msgid "Service Provider" msgstr "" @@ -5029,7 +5029,7 @@ msgid "Setting up" msgstr "" #: frontend/src/components/Settings/emailConfig.js:145 -msgid "Setting up Frappe Mail requires you to have an API key and API Secret of your email account. Read more " +msgid "Setting up Jingrow Mail requires you to have an API key and API Secret of your email account. Read more " msgstr "" #: frontend/src/components/Settings/emailConfig.js:97 @@ -5062,8 +5062,8 @@ msgid "Setting up Yandex requires you to enable two factor authentication\n" "\t\t and app specific passwords. Read more " msgstr "" -#. Label of the defaults_tab (Tab Break) field in DocType 'FCRM Settings' -#: crm/fcrm/doctype/fcrm_settings/fcrm_settings.json +#. Label of the defaults_tab (Tab Break) field in PageType 'FCRM Settings' +#: crm/fcrm/pagetype/fcrm_settings/fcrm_settings.json #: frontend/src/components/Layouts/AppSidebar.vue:537 #: frontend/src/components/Settings/Settings.vue:12 msgid "Settings" @@ -5073,7 +5073,7 @@ msgstr "" msgid "Setup Email" msgstr "" -#: crm/fcrm/doctype/fcrm_settings/fcrm_settings.py:199 +#: crm/fcrm/pagetype/fcrm_settings/fcrm_settings.py:199 msgid "Setup the Exchange Rate Provider as 'Exchangerate Host' in settings, as default provider does not support currency conversion for {0} to {1}." msgstr "" @@ -5108,20 +5108,20 @@ msgstr "" msgid "Show preview" msgstr "" -#. Option for the 'Type' (Select) field in DocType 'CRM Fields Layout' -#: crm/fcrm/doctype/crm_fields_layout/crm_fields_layout.json +#. Option for the 'Type' (Select) field in PageType 'CRM Fields Layout' +#: crm/fcrm/pagetype/crm_fields_layout/crm_fields_layout.json msgid "Side Panel" msgstr "" -#. Option for the 'Type' (Select) field in DocType 'CRM Global Settings' -#: crm/fcrm/doctype/crm_global_settings/crm_global_settings.json +#. Option for the 'Type' (Select) field in PageType 'CRM Global Settings' +#: crm/fcrm/pagetype/crm_global_settings/crm_global_settings.json msgid "Sidebar Items" msgstr "" -#. Description of the 'Condition' (Code) field in DocType 'CRM Service Level +#. Description of the 'Condition' (Code) field in PageType 'CRM Service Level #. Agreement' -#: crm/fcrm/doctype/crm_service_level_agreement/crm_service_level_agreement.json -msgid "Simple Python Expression, Example: doc.status == 'Open' and doc.lead_source == 'Ads'" +#: crm/fcrm/pagetype/crm_service_level_agreement/crm_service_level_agreement.json +msgid "Simple Python Expression, Example: pg.status == 'Open' and pg.lead_source == 'Ads'" msgstr "" #: frontend/src/components/AssignTo.vue:83 @@ -5145,16 +5145,16 @@ msgstr "" msgid "Sort" msgstr "" -#. Label of the source (Link) field in DocType 'CRM Deal' -#. Label of the source (Link) field in DocType 'CRM Lead' -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_lead/crm_lead.json +#. Label of the source (Link) field in PageType 'CRM Deal' +#. Label of the source (Link) field in PageType 'CRM Lead' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_lead/crm_lead.json #: frontend/src/components/Modals/EditValueModal.vue:10 msgid "Source" msgstr "" -#. Label of the source_name (Data) field in DocType 'CRM Lead Source' -#: crm/fcrm/doctype/crm_lead_source/crm_lead_source.json +#. Label of the source_name (Data) field in PageType 'CRM Lead Source' +#: crm/fcrm/pagetype/crm_lead_source/crm_lead_source.json msgid "Source Name" msgstr "" @@ -5167,12 +5167,12 @@ msgstr "" msgid "Stage" msgstr "" -#: crm/fcrm/doctype/crm_form_script/crm_form_script.js:15 +#: crm/fcrm/pagetype/crm_form_script/crm_form_script.js:15 msgid "Standard Form Scripts can not be modified, duplicate the Form Script instead." msgstr "" -#. Label of the standard_rate (Currency) field in DocType 'CRM Product' -#: crm/fcrm/doctype/crm_product/crm_product.json +#. Label of the standard_rate (Currency) field in PageType 'CRM Product' +#: crm/fcrm/pagetype/crm_product/crm_product.json msgid "Standard Selling Rate" msgstr "" @@ -5180,18 +5180,18 @@ msgstr "" msgid "Standard Views" msgstr "" -#. Label of the start_date (Date) field in DocType 'CRM Service Level +#. Label of the start_date (Date) field in PageType 'CRM Service Level #. Agreement' -#. Label of the start_date (Date) field in DocType 'CRM Task' -#: crm/fcrm/doctype/crm_service_level_agreement/crm_service_level_agreement.json -#: crm/fcrm/doctype/crm_task/crm_task.json +#. Label of the start_date (Date) field in PageType 'CRM Task' +#: crm/fcrm/pagetype/crm_service_level_agreement/crm_service_level_agreement.json +#: crm/fcrm/pagetype/crm_task/crm_task.json msgid "Start Date" msgstr "" -#. Label of the start_time (Datetime) field in DocType 'CRM Call Log' -#. Label of the start_time (Time) field in DocType 'CRM Service Day' -#: crm/fcrm/doctype/crm_call_log/crm_call_log.json -#: crm/fcrm/doctype/crm_service_day/crm_service_day.json +#. Label of the start_time (Datetime) field in PageType 'CRM Call Log' +#. Label of the start_time (Time) field in PageType 'CRM Service Day' +#: crm/fcrm/pagetype/crm_call_log/crm_call_log.json +#: crm/fcrm/pagetype/crm_service_day/crm_service_day.json #: frontend/src/components/Calendar/CalendarEventPanel.vue:234 #: frontend/src/components/Modals/EventModal.vue:103 msgid "Start Time" @@ -5205,32 +5205,32 @@ msgstr "" msgid "Start with sample 10 leads" msgstr "" -#. Label of the status (Select) field in DocType 'CRM Call Log' -#. Label of the status (Data) field in DocType 'CRM Communication Status' -#. Label of the status (Link) field in DocType 'CRM Deal' -#. Label of the deal_status (Data) field in DocType 'CRM Deal Status' -#. Label of the status (Select) field in DocType 'CRM Invitation' -#. Label of the status (Link) field in DocType 'CRM Lead' -#. Label of the lead_status (Data) field in DocType 'CRM Lead Status' -#. Label of the status (Select) field in DocType 'CRM Task' -#: crm/fcrm/doctype/crm_call_log/crm_call_log.json -#: crm/fcrm/doctype/crm_communication_status/crm_communication_status.json -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_deal_status/crm_deal_status.json -#: crm/fcrm/doctype/crm_invitation/crm_invitation.json -#: crm/fcrm/doctype/crm_lead/crm_lead.json -#: crm/fcrm/doctype/crm_lead_status/crm_lead_status.json -#: crm/fcrm/doctype/crm_task/crm_task.json frontend/src/pages/Contact.vue:505 +#. Label of the status (Select) field in PageType 'CRM Call Log' +#. Label of the status (Data) field in PageType 'CRM Communication Status' +#. Label of the status (Link) field in PageType 'CRM Deal' +#. Label of the deal_status (Data) field in PageType 'CRM Deal Status' +#. Label of the status (Select) field in PageType 'CRM Invitation' +#. Label of the status (Link) field in PageType 'CRM Lead' +#. Label of the lead_status (Data) field in PageType 'CRM Lead Status' +#. Label of the status (Select) field in PageType 'CRM Task' +#: crm/fcrm/pagetype/crm_call_log/crm_call_log.json +#: crm/fcrm/pagetype/crm_communication_status/crm_communication_status.json +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_deal_status/crm_deal_status.json +#: crm/fcrm/pagetype/crm_invitation/crm_invitation.json +#: crm/fcrm/pagetype/crm_lead/crm_lead.json +#: crm/fcrm/pagetype/crm_lead_status/crm_lead_status.json +#: crm/fcrm/pagetype/crm_task/crm_task.json frontend/src/pages/Contact.vue:505 #: frontend/src/pages/MobileContact.vue:513 #: frontend/src/pages/MobileOrganization.vue:457 #: frontend/src/pages/Organization.vue:478 msgid "Status" msgstr "" -#. Label of the status_change_log (Table) field in DocType 'CRM Deal' -#. Label of the status_change_log (Table) field in DocType 'CRM Lead' -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_lead/crm_lead.json +#. Label of the status_change_log (Table) field in PageType 'CRM Deal' +#. Label of the status_change_log (Table) field in PageType 'CRM Lead' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_lead/crm_lead.json msgid "Status Change Log" msgstr "" @@ -5239,8 +5239,8 @@ msgstr "" msgid "Status is required" msgstr "" -#. Label of the subdomain (Data) field in DocType 'CRM Exotel Settings' -#: crm/fcrm/doctype/crm_exotel_settings/crm_exotel_settings.json +#. Label of the subdomain (Data) field in PageType 'CRM Exotel Settings' +#: crm/fcrm/pagetype/crm_exotel_settings/crm_exotel_settings.json msgid "Subdomain" msgstr "" @@ -5258,10 +5258,10 @@ msgstr "" msgid "Subject: {0}" msgstr "" -#. Option for the 'Weekly Off' (Select) field in DocType 'CRM Holiday List' -#. Option for the 'Workday' (Select) field in DocType 'CRM Service Day' -#: crm/fcrm/doctype/crm_holiday_list/crm_holiday_list.json -#: crm/fcrm/doctype/crm_service_day/crm_service_day.json +#. Option for the 'Weekly Off' (Select) field in PageType 'CRM Holiday List' +#. Option for the 'Workday' (Select) field in PageType 'CRM Service Day' +#: crm/fcrm/pagetype/crm_holiday_list/crm_holiday_list.json +#: crm/fcrm/pagetype/crm_service_day/crm_service_day.json msgid "Sunday" msgstr "" @@ -5282,21 +5282,21 @@ msgid "System Configuration" msgstr "" #. Name of a role -#. Option for the 'Role' (Select) field in DocType 'CRM Invitation' -#: crm/fcrm/doctype/crm_dashboard/crm_dashboard.json -#: crm/fcrm/doctype/crm_exotel_settings/crm_exotel_settings.json -#: crm/fcrm/doctype/crm_fields_layout/crm_fields_layout.json -#: crm/fcrm/doctype/crm_global_settings/crm_global_settings.json -#: crm/fcrm/doctype/crm_invitation/crm_invitation.json -#: crm/fcrm/doctype/crm_lead_source/crm_lead_source.json -#: crm/fcrm/doctype/crm_lost_reason/crm_lost_reason.json -#: crm/fcrm/doctype/crm_notification/crm_notification.json -#: crm/fcrm/doctype/crm_product/crm_product.json -#: crm/fcrm/doctype/crm_telephony_agent/crm_telephony_agent.json -#: crm/fcrm/doctype/crm_twilio_settings/crm_twilio_settings.json -#: crm/fcrm/doctype/erpnext_crm_settings/erpnext_crm_settings.json -#: crm/fcrm/doctype/fcrm_settings/fcrm_settings.json -#: crm/fcrm/doctype/helpdesk_crm_settings/helpdesk_crm_settings.json +#. Option for the 'Role' (Select) field in PageType 'CRM Invitation' +#: crm/fcrm/pagetype/crm_dashboard/crm_dashboard.json +#: crm/fcrm/pagetype/crm_exotel_settings/crm_exotel_settings.json +#: crm/fcrm/pagetype/crm_fields_layout/crm_fields_layout.json +#: crm/fcrm/pagetype/crm_global_settings/crm_global_settings.json +#: crm/fcrm/pagetype/crm_invitation/crm_invitation.json +#: crm/fcrm/pagetype/crm_lead_source/crm_lead_source.json +#: crm/fcrm/pagetype/crm_lost_reason/crm_lost_reason.json +#: crm/fcrm/pagetype/crm_notification/crm_notification.json +#: crm/fcrm/pagetype/crm_product/crm_product.json +#: crm/fcrm/pagetype/crm_telephony_agent/crm_telephony_agent.json +#: crm/fcrm/pagetype/crm_twilio_settings/crm_twilio_settings.json +#: crm/fcrm/pagetype/erpnext_crm_settings/erpnext_crm_settings.json +#: crm/fcrm/pagetype/fcrm_settings/fcrm_settings.json +#: crm/fcrm/pagetype/helpdesk_crm_settings/helpdesk_crm_settings.json msgid "System Manager" msgstr "" @@ -5308,8 +5308,8 @@ msgstr "" msgid "Take a note..." msgstr "" -#. Option for the 'Type' (Select) field in DocType 'CRM Notification' -#: crm/fcrm/doctype/crm_notification/crm_notification.json +#. Option for the 'Type' (Select) field in PageType 'CRM Notification' +#: crm/fcrm/pagetype/crm_notification/crm_notification.json #: frontend/src/components/Layouts/AppSidebar.vue:555 msgid "Task" msgstr "" @@ -5327,8 +5327,8 @@ msgstr "" msgid "Telephony" msgstr "" -#. Label of the telephony_medium (Select) field in DocType 'CRM Call Log' -#: crm/fcrm/doctype/crm_call_log/crm_call_log.json +#. Label of the telephony_medium (Select) field in PageType 'CRM Call Log' +#: crm/fcrm/pagetype/crm_call_log/crm_call_log.json msgid "Telephony Medium" msgstr "" @@ -5364,27 +5364,27 @@ msgstr "" msgid "Template updated successfully" msgstr "" -#. Label of a shortcut in the Frappe CRM Workspace -#: crm/fcrm/workspace/frappe_crm/frappe_crm.json +#. Label of a shortcut in the Jingrow CRM Workspace +#: crm/fcrm/workspace/jingrow_crm/jingrow_crm.json msgid "Territories" msgstr "" -#. Label of the territory (Link) field in DocType 'CRM Deal' -#. Label of the territory (Link) field in DocType 'CRM Lead' -#. Label of the territory (Link) field in DocType 'CRM Organization' -#: crm/api/dashboard.py:1022 crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_lead/crm_lead.json -#: crm/fcrm/doctype/crm_organization/crm_organization.json +#. Label of the territory (Link) field in PageType 'CRM Deal' +#. Label of the territory (Link) field in PageType 'CRM Lead' +#. Label of the territory (Link) field in PageType 'CRM Organization' +#: crm/api/dashboard.py:1022 crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_lead/crm_lead.json +#: crm/fcrm/pagetype/crm_organization/crm_organization.json msgid "Territory" msgstr "" -#. Label of the territory_manager (Link) field in DocType 'CRM Territory' -#: crm/fcrm/doctype/crm_territory/crm_territory.json +#. Label of the territory_manager (Link) field in PageType 'CRM Territory' +#: crm/fcrm/pagetype/crm_territory/crm_territory.json msgid "Territory Manager" msgstr "" -#. Label of the territory_name (Data) field in DocType 'CRM Territory' -#: crm/fcrm/doctype/crm_territory/crm_territory.json +#. Label of the territory_name (Data) field in PageType 'CRM Territory' +#: crm/fcrm/pagetype/crm_territory/crm_territory.json msgid "Territory Name" msgstr "" @@ -5392,22 +5392,22 @@ msgstr "" msgid "Thanks" msgstr "" -#: crm/fcrm/doctype/crm_service_level_agreement/crm_service_level_agreement.py:46 +#: crm/fcrm/pagetype/crm_service_level_agreement/crm_service_level_agreement.py:46 msgid "The Condition '{0}' is invalid: {1}" msgstr "" -#. Description of the 'Exchange Rate' (Float) field in DocType 'CRM Deal' -#: crm/fcrm/doctype/crm_deal/crm_deal.json +#. Description of the 'Exchange Rate' (Float) field in PageType 'CRM Deal' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json msgid "The rate used to convert the deal’s currency to your crm's base currency (set in CRM Settings). It is set once when the currency is first added and doesn't change automatically." msgstr "" -#. Description of the 'Exchange Rate' (Float) field in DocType 'CRM +#. Description of the 'Exchange Rate' (Float) field in PageType 'CRM #. Organization' -#: crm/fcrm/doctype/crm_organization/crm_organization.json +#: crm/fcrm/pagetype/crm_organization/crm_organization.json msgid "The rate used to convert the organization’s currency to your crm's base currency (set in CRM Settings). It is set once when the currency is first added and doesn't change automatically." msgstr "" -#: crm/fcrm/doctype/crm_service_level_agreement/crm_service_level_agreement.js:14 +#: crm/fcrm/pagetype/crm_service_level_agreement/crm_service_level_agreement.js:14 msgid "There can only be one default priority in Priorities table" msgstr "" @@ -5444,14 +5444,14 @@ msgstr "" msgid "This will delete selected items and unlink linked items to it, are you sure?" msgstr "" -#: crm/fcrm/doctype/fcrm_settings/fcrm_settings.js:9 +#: crm/fcrm/pagetype/fcrm_settings/fcrm_settings.js:9 msgid "This will restore (if not exist) all the default statuses, custom fields and layouts. Delete & Restore will delete default layouts and then restore them." msgstr "" -#. Option for the 'Weekly Off' (Select) field in DocType 'CRM Holiday List' -#. Option for the 'Workday' (Select) field in DocType 'CRM Service Day' -#: crm/fcrm/doctype/crm_holiday_list/crm_holiday_list.json -#: crm/fcrm/doctype/crm_service_day/crm_service_day.json +#. Option for the 'Weekly Off' (Select) field in PageType 'CRM Holiday List' +#. Option for the 'Workday' (Select) field in PageType 'CRM Service Day' +#: crm/fcrm/pagetype/crm_holiday_list/crm_holiday_list.json +#: crm/fcrm/pagetype/crm_service_day/crm_service_day.json msgid "Thursday" msgstr "" @@ -5463,18 +5463,18 @@ msgstr "" msgid "Timespan" msgstr "" -#. Label of the title (Data) field in DocType 'CRM Task' -#. Label of the title (Data) field in DocType 'FCRM Note' -#: crm/fcrm/doctype/crm_task/crm_task.json -#: crm/fcrm/doctype/fcrm_note/fcrm_note.json +#. Label of the title (Data) field in PageType 'CRM Task' +#. Label of the title (Data) field in PageType 'FCRM Note' +#: crm/fcrm/pagetype/crm_task/crm_task.json +#: crm/fcrm/pagetype/fcrm_note/fcrm_note.json #: frontend/src/components/Modals/EventModal.vue:43 #: frontend/src/components/Modals/NoteModal.vue:26 #: frontend/src/components/Modals/TaskModal.vue:25 msgid "Title" msgstr "" -#. Label of the title_field (Data) field in DocType 'CRM View Settings' -#: crm/fcrm/doctype/crm_view_settings/crm_view_settings.json +#. Label of the title_field (Data) field in PageType 'CRM View Settings' +#: crm/fcrm/pagetype/crm_view_settings/crm_view_settings.json #: frontend/src/components/Kanban/KanbanSettings.vue:29 msgid "Title Field" msgstr "" @@ -5484,28 +5484,28 @@ msgstr "" msgid "Title is required" msgstr "" -#. Label of the to (Data) field in DocType 'CRM Call Log' -#. Label of the to (Data) field in DocType 'CRM Status Change Log' -#: crm/fcrm/doctype/crm_call_log/crm_call_log.json -#: crm/fcrm/doctype/crm_status_change_log/crm_status_change_log.json +#. Label of the to (Data) field in PageType 'CRM Call Log' +#. Label of the to (Data) field in PageType 'CRM Status Change Log' +#: crm/fcrm/pagetype/crm_call_log/crm_call_log.json +#: crm/fcrm/pagetype/crm_status_change_log/crm_status_change_log.json #: frontend/src/components/Activities/EmailArea.vue:53 msgid "To" msgstr "" -#. Label of the to_date (Date) field in DocType 'CRM Holiday List' -#. Label of the to_date (Datetime) field in DocType 'CRM Status Change Log' -#: crm/fcrm/doctype/crm_holiday_list/crm_holiday_list.json -#: crm/fcrm/doctype/crm_status_change_log/crm_status_change_log.json +#. Label of the to_date (Date) field in PageType 'CRM Holiday List' +#. Label of the to_date (Datetime) field in PageType 'CRM Status Change Log' +#: crm/fcrm/pagetype/crm_holiday_list/crm_holiday_list.json +#: crm/fcrm/pagetype/crm_status_change_log/crm_status_change_log.json msgid "To Date" msgstr "" -#. Label of the to_type (Data) field in DocType 'CRM Status Change Log' -#: crm/fcrm/doctype/crm_status_change_log/crm_status_change_log.json +#. Label of the to_type (Data) field in PageType 'CRM Status Change Log' +#: crm/fcrm/pagetype/crm_status_change_log/crm_status_change_log.json msgid "To Type" msgstr "" -#. Label of the to_user (Link) field in DocType 'CRM Notification' -#: crm/fcrm/doctype/crm_notification/crm_notification.json +#. Label of the to_user (Link) field in PageType 'CRM Notification' +#: crm/fcrm/pagetype/crm_notification/crm_notification.json msgid "To User" msgstr "" @@ -5517,8 +5517,8 @@ msgstr "" msgid "Today" msgstr "" -#. Option for the 'Status' (Select) field in DocType 'CRM Task' -#: crm/fcrm/doctype/crm_task/crm_task.json +#. Option for the 'Status' (Select) field in PageType 'CRM Task' +#: crm/fcrm/pagetype/crm_task/crm_task.json msgid "Todo" msgstr "" @@ -5535,22 +5535,22 @@ msgstr "" msgid "Took a call with John Doe and discussed the new project." msgstr "" -#. Label of the total (Currency) field in DocType 'CRM Deal' -#. Label of the total (Currency) field in DocType 'CRM Lead' -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_lead/crm_lead.json +#. Label of the total (Currency) field in PageType 'CRM Deal' +#. Label of the total (Currency) field in PageType 'CRM Lead' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_lead/crm_lead.json msgid "Total" msgstr "" -#. Label of the total_holidays (Int) field in DocType 'CRM Holiday List' -#: crm/fcrm/doctype/crm_holiday_list/crm_holiday_list.json +#. Label of the total_holidays (Int) field in PageType 'CRM Holiday List' +#: crm/fcrm/pagetype/crm_holiday_list/crm_holiday_list.json msgid "Total Holidays" msgstr "" -#. Description of the 'Net Total' (Currency) field in DocType 'CRM Deal' -#. Description of the 'Net Total' (Currency) field in DocType 'CRM Lead' -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_lead/crm_lead.json +#. Description of the 'Net Total' (Currency) field in PageType 'CRM Deal' +#. Description of the 'Net Total' (Currency) field in PageType 'CRM Lead' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_lead/crm_lead.json msgid "Total after discount" msgstr "" @@ -5571,10 +5571,10 @@ msgstr "" msgid "Total number of won deals based on its closure date" msgstr "" -#. Option for the 'Weekly Off' (Select) field in DocType 'CRM Holiday List' -#. Option for the 'Workday' (Select) field in DocType 'CRM Service Day' -#: crm/fcrm/doctype/crm_holiday_list/crm_holiday_list.json -#: crm/fcrm/doctype/crm_service_day/crm_service_day.json +#. Option for the 'Weekly Off' (Select) field in PageType 'CRM Holiday List' +#. Option for the 'Workday' (Select) field in PageType 'CRM Service Day' +#: crm/fcrm/pagetype/crm_holiday_list/crm_holiday_list.json +#: crm/fcrm/pagetype/crm_service_day/crm_service_day.json msgid "Tuesday" msgstr "" @@ -5582,30 +5582,30 @@ msgstr "" msgid "Turn into a group" msgstr "" -#. Label of the twiml_sid (Data) field in DocType 'CRM Twilio Settings' -#: crm/fcrm/doctype/crm_twilio_settings/crm_twilio_settings.json +#. Label of the twiml_sid (Data) field in PageType 'CRM Twilio Settings' +#: crm/fcrm/pagetype/crm_twilio_settings/crm_twilio_settings.json msgid "TwiML SID" msgstr "" -#. Option for the 'Telephony Medium' (Select) field in DocType 'CRM Call Log' -#. Label of the twilio (Check) field in DocType 'CRM Telephony Agent' -#. Option for the 'Default Medium' (Select) field in DocType 'CRM Telephony +#. Option for the 'Telephony Medium' (Select) field in PageType 'CRM Call Log' +#. Label of the twilio (Check) field in PageType 'CRM Telephony Agent' +#. Option for the 'Default Medium' (Select) field in PageType 'CRM Telephony #. Agent' -#: crm/fcrm/doctype/crm_call_log/crm_call_log.json -#: crm/fcrm/doctype/crm_telephony_agent/crm_telephony_agent.json +#: crm/fcrm/pagetype/crm_call_log/crm_call_log.json +#: crm/fcrm/pagetype/crm_telephony_agent/crm_telephony_agent.json #: frontend/src/components/Layouts/AppSidebar.vue:601 #: frontend/src/components/Settings/TelephonySettings.vue:40 #: frontend/src/components/Settings/TelephonySettings.vue:50 msgid "Twilio" msgstr "" -#: crm/fcrm/doctype/crm_twilio_settings/crm_twilio_settings.py:59 -#: crm/fcrm/doctype/crm_twilio_settings/crm_twilio_settings.py:60 +#: crm/fcrm/pagetype/crm_twilio_settings/crm_twilio_settings.py:59 +#: crm/fcrm/pagetype/crm_twilio_settings/crm_twilio_settings.py:60 msgid "Twilio API credential creation error." msgstr "" -#. Label of the twilio_number (Data) field in DocType 'CRM Telephony Agent' -#: crm/fcrm/doctype/crm_telephony_agent/crm_telephony_agent.json +#. Label of the twilio_number (Data) field in PageType 'CRM Telephony Agent' +#: crm/fcrm/pagetype/crm_telephony_agent/crm_telephony_agent.json msgid "Twilio Number" msgstr "" @@ -5617,20 +5617,20 @@ msgstr "" msgid "Twilio settings updated successfully" msgstr "" -#. Label of the type (Select) field in DocType 'CRM Call Log' -#. Label of the type (Select) field in DocType 'CRM Deal Status' -#. Label of the type (Select) field in DocType 'CRM Dropdown Item' -#. Label of the type (Select) field in DocType 'CRM Fields Layout' -#. Label of the type (Select) field in DocType 'CRM Global Settings' -#. Label of the type (Select) field in DocType 'CRM Notification' -#. Label of the type (Select) field in DocType 'CRM View Settings' -#: crm/fcrm/doctype/crm_call_log/crm_call_log.json -#: crm/fcrm/doctype/crm_deal_status/crm_deal_status.json -#: crm/fcrm/doctype/crm_dropdown_item/crm_dropdown_item.json -#: crm/fcrm/doctype/crm_fields_layout/crm_fields_layout.json -#: crm/fcrm/doctype/crm_global_settings/crm_global_settings.json -#: crm/fcrm/doctype/crm_notification/crm_notification.json -#: crm/fcrm/doctype/crm_view_settings/crm_view_settings.json +#. Label of the type (Select) field in PageType 'CRM Call Log' +#. Label of the type (Select) field in PageType 'CRM Deal Status' +#. Label of the type (Select) field in PageType 'CRM Dropdown Item' +#. Label of the type (Select) field in PageType 'CRM Fields Layout' +#. Label of the type (Select) field in PageType 'CRM Global Settings' +#. Label of the type (Select) field in PageType 'CRM Notification' +#. Label of the type (Select) field in PageType 'CRM View Settings' +#: crm/fcrm/pagetype/crm_call_log/crm_call_log.json +#: crm/fcrm/pagetype/crm_deal_status/crm_deal_status.json +#: crm/fcrm/pagetype/crm_dropdown_item/crm_dropdown_item.json +#: crm/fcrm/pagetype/crm_fields_layout/crm_fields_layout.json +#: crm/fcrm/pagetype/crm_global_settings/crm_global_settings.json +#: crm/fcrm/pagetype/crm_notification/crm_notification.json +#: crm/fcrm/pagetype/crm_view_settings/crm_view_settings.json msgid "Type" msgstr "" @@ -5772,12 +5772,12 @@ msgstr "" msgid "Uploading {0}%" msgstr "" -#. Label of the user (Link) field in DocType 'CRM Dashboard' -#. Label of the user (Link) field in DocType 'CRM Telephony Agent' -#. Label of the user (Link) field in DocType 'CRM View Settings' -#: crm/fcrm/doctype/crm_dashboard/crm_dashboard.json -#: crm/fcrm/doctype/crm_telephony_agent/crm_telephony_agent.json -#: crm/fcrm/doctype/crm_view_settings/crm_view_settings.json +#. Label of the user (Link) field in PageType 'CRM Dashboard' +#. Label of the user (Link) field in PageType 'CRM Telephony Agent' +#. Label of the user (Link) field in PageType 'CRM View Settings' +#: crm/fcrm/pagetype/crm_dashboard/crm_dashboard.json +#: crm/fcrm/pagetype/crm_telephony_agent/crm_telephony_agent.json +#: crm/fcrm/pagetype/crm_view_settings/crm_view_settings.json msgid "User" msgstr "" @@ -5785,8 +5785,8 @@ msgstr "" msgid "User Management" msgstr "" -#. Label of the user_name (Data) field in DocType 'CRM Telephony Agent' -#: crm/fcrm/doctype/crm_telephony_agent/crm_telephony_agent.json +#. Label of the user_name (Data) field in PageType 'CRM Telephony Agent' +#: crm/fcrm/pagetype/crm_telephony_agent/crm_telephony_agent.json msgid "User Name" msgstr "" @@ -5808,9 +5808,9 @@ msgstr "" msgid "Users are required" msgstr "" -#. Label of the section_break_nevd (Section Break) field in DocType 'CRM +#. Label of the section_break_nevd (Section Break) field in PageType 'CRM #. Service Level Agreement' -#: crm/fcrm/doctype/crm_service_level_agreement/crm_service_level_agreement.json +#: crm/fcrm/pagetype/crm_service_level_agreement/crm_service_level_agreement.json msgid "Validity" msgstr "" @@ -5834,33 +5834,33 @@ msgstr "" msgid "Web form" msgstr "" -#. Label of the webhook_verify_token (Data) field in DocType 'CRM Exotel +#. Label of the webhook_verify_token (Data) field in PageType 'CRM Exotel #. Settings' -#: crm/fcrm/doctype/crm_exotel_settings/crm_exotel_settings.json +#: crm/fcrm/pagetype/crm_exotel_settings/crm_exotel_settings.json msgid "Webhook Verify Token" msgstr "" -#. Label of the website (Data) field in DocType 'CRM Deal' -#. Label of the website (Data) field in DocType 'CRM Lead' -#. Label of the website (Data) field in DocType 'CRM Organization' -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_lead/crm_lead.json -#: crm/fcrm/doctype/crm_organization/crm_organization.json +#. Label of the website (Data) field in PageType 'CRM Deal' +#. Label of the website (Data) field in PageType 'CRM Lead' +#. Label of the website (Data) field in PageType 'CRM Organization' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_lead/crm_lead.json +#: crm/fcrm/pagetype/crm_organization/crm_organization.json #: frontend/src/components/Modals/AboutModal.vue:52 msgid "Website" msgstr "" -#. Option for the 'Weekly Off' (Select) field in DocType 'CRM Holiday List' -#. Option for the 'Workday' (Select) field in DocType 'CRM Service Day' -#: crm/fcrm/doctype/crm_holiday_list/crm_holiday_list.json -#: crm/fcrm/doctype/crm_service_day/crm_service_day.json +#. Option for the 'Weekly Off' (Select) field in PageType 'CRM Holiday List' +#. Option for the 'Workday' (Select) field in PageType 'CRM Service Day' +#: crm/fcrm/pagetype/crm_holiday_list/crm_holiday_list.json +#: crm/fcrm/pagetype/crm_service_day/crm_service_day.json msgid "Wednesday" msgstr "" -#. Label of the weekly_off (Check) field in DocType 'CRM Holiday' -#. Label of the weekly_off (Select) field in DocType 'CRM Holiday List' -#: crm/fcrm/doctype/crm_holiday/crm_holiday.json -#: crm/fcrm/doctype/crm_holiday_list/crm_holiday_list.json +#. Label of the weekly_off (Check) field in PageType 'CRM Holiday' +#. Label of the weekly_off (Select) field in PageType 'CRM Holiday List' +#: crm/fcrm/pagetype/crm_holiday/crm_holiday.json +#: crm/fcrm/pagetype/crm_holiday_list/crm_holiday_list.json msgid "Weekly Off" msgstr "" @@ -5868,7 +5868,7 @@ msgstr "" msgid "Welcome Message" msgstr "" -#: crm/fcrm/doctype/helpdesk_crm_settings/helpdesk_crm_settings.py:155 +#: crm/fcrm/pagetype/helpdesk_crm_settings/helpdesk_crm_settings.py:155 msgid "Welcome to Helpdesk" msgstr "" @@ -5876,8 +5876,8 @@ msgstr "" msgid "Welcome {0}, lets add your first lead" msgstr "" -#. Option for the 'Type' (Select) field in DocType 'CRM Notification' -#: crm/fcrm/doctype/crm_notification/crm_notification.json +#. Option for the 'Type' (Select) field in PageType 'CRM Notification' +#: crm/fcrm/pagetype/crm_notification/crm_notification.json #: frontend/src/components/Layouts/AppSidebar.vue:603 #: frontend/src/components/Settings/Settings.vue:190 #: frontend/src/pages/Deal.vue:572 frontend/src/pages/Lead.vue:429 @@ -5902,8 +5902,8 @@ msgstr "" msgid "Width can be in number, pixel or rem (eg. 3, 30px, 10rem)" msgstr "" -#. Option for the 'Type' (Select) field in DocType 'CRM Deal Status' -#: crm/fcrm/doctype/crm_deal_status/crm_deal_status.json +#. Option for the 'Type' (Select) field in PageType 'CRM Deal Status' +#: crm/fcrm/pagetype/crm_deal_status/crm_deal_status.json msgid "Won" msgstr "" @@ -5912,16 +5912,16 @@ msgstr "" msgid "Won deals" msgstr "" -#. Label of the workday (Select) field in DocType 'CRM Service Day' -#: crm/fcrm/doctype/crm_service_day/crm_service_day.json +#. Label of the workday (Select) field in PageType 'CRM Service Day' +#: crm/fcrm/pagetype/crm_service_day/crm_service_day.json msgid "Workday" msgstr "" -#. Label of the section_break_rmgo (Section Break) field in DocType 'CRM +#. Label of the section_break_rmgo (Section Break) field in PageType 'CRM #. Service Level Agreement' -#. Label of the working_hours (Table) field in DocType 'CRM Service Level +#. Label of the working_hours (Table) field in PageType 'CRM Service Level #. Agreement' -#: crm/fcrm/doctype/crm_service_level_agreement/crm_service_level_agreement.json +#: crm/fcrm/pagetype/crm_service_level_agreement/crm_service_level_agreement.json msgid "Working Hours" msgstr "" @@ -5967,7 +5967,7 @@ msgstr "" msgid "You do not have permission to access this document" msgstr "" -#: crm/fcrm/doctype/crm_form_script/crm_form_script.py:24 +#: crm/fcrm/pagetype/crm_form_script/crm_form_script.py:24 msgid "You need to be in developer mode to edit a Standard Form Script" msgstr "" @@ -5995,10 +5995,10 @@ msgstr "" msgid "added a" msgstr "" -#. Option for the 'Color' (Select) field in DocType 'CRM Deal Status' -#. Option for the 'Color' (Select) field in DocType 'CRM Lead Status' -#: crm/fcrm/doctype/crm_deal_status/crm_deal_status.json -#: crm/fcrm/doctype/crm_lead_status/crm_lead_status.json +#. Option for the 'Color' (Select) field in PageType 'CRM Deal Status' +#. Option for the 'Color' (Select) field in PageType 'CRM Lead Status' +#: crm/fcrm/pagetype/crm_deal_status/crm_deal_status.json +#: crm/fcrm/pagetype/crm_lead_status/crm_lead_status.json msgid "amber" msgstr "" @@ -6010,17 +6010,17 @@ msgstr "" msgid "assigned a {0} {1} to you" msgstr "" -#. Option for the 'Color' (Select) field in DocType 'CRM Deal Status' -#. Option for the 'Color' (Select) field in DocType 'CRM Lead Status' -#: crm/fcrm/doctype/crm_deal_status/crm_deal_status.json -#: crm/fcrm/doctype/crm_lead_status/crm_lead_status.json +#. Option for the 'Color' (Select) field in PageType 'CRM Deal Status' +#. Option for the 'Color' (Select) field in PageType 'CRM Lead Status' +#: crm/fcrm/pagetype/crm_deal_status/crm_deal_status.json +#: crm/fcrm/pagetype/crm_lead_status/crm_lead_status.json msgid "black" msgstr "" -#. Option for the 'Color' (Select) field in DocType 'CRM Deal Status' -#. Option for the 'Color' (Select) field in DocType 'CRM Lead Status' -#: crm/fcrm/doctype/crm_deal_status/crm_deal_status.json -#: crm/fcrm/doctype/crm_lead_status/crm_lead_status.json +#. Option for the 'Color' (Select) field in PageType 'CRM Deal Status' +#. Option for the 'Color' (Select) field in PageType 'CRM Lead Status' +#: crm/fcrm/pagetype/crm_deal_status/crm_deal_status.json +#: crm/fcrm/pagetype/crm_lead_status/crm_lead_status.json msgid "blue" msgstr "" @@ -6037,10 +6037,10 @@ msgstr "" msgid "condition" msgstr "" -#. Option for the 'Color' (Select) field in DocType 'CRM Deal Status' -#. Option for the 'Color' (Select) field in DocType 'CRM Lead Status' -#: crm/fcrm/doctype/crm_deal_status/crm_deal_status.json -#: crm/fcrm/doctype/crm_lead_status/crm_lead_status.json +#. Option for the 'Color' (Select) field in PageType 'CRM Deal Status' +#. Option for the 'Color' (Select) field in PageType 'CRM Lead Status' +#: crm/fcrm/pagetype/crm_deal_status/crm_deal_status.json +#: crm/fcrm/pagetype/crm_lead_status/crm_lead_status.json msgid "cyan" msgstr "" @@ -6059,33 +6059,33 @@ msgstr "" msgid "email already exists" msgstr "" -#. Option for the 'Service Provider' (Select) field in DocType 'FCRM Settings' -#: crm/fcrm/doctype/fcrm_settings/fcrm_settings.json +#. Option for the 'Service Provider' (Select) field in PageType 'FCRM Settings' +#: crm/fcrm/pagetype/fcrm_settings/fcrm_settings.json #: frontend/src/components/Settings/CurrencySettings.vue:106 msgid "exchangerate.host" msgstr "" -#. Option for the 'Service Provider' (Select) field in DocType 'FCRM Settings' -#: crm/fcrm/doctype/fcrm_settings/fcrm_settings.json +#. Option for the 'Service Provider' (Select) field in PageType 'FCRM Settings' +#: crm/fcrm/pagetype/fcrm_settings/fcrm_settings.json msgid "frankfurter.app" msgstr "" -#. Option for the 'Color' (Select) field in DocType 'CRM Deal Status' -#. Option for the 'Color' (Select) field in DocType 'CRM Lead Status' -#: crm/fcrm/doctype/crm_deal_status/crm_deal_status.json -#: crm/fcrm/doctype/crm_lead_status/crm_lead_status.json +#. Option for the 'Color' (Select) field in PageType 'CRM Deal Status' +#. Option for the 'Color' (Select) field in PageType 'CRM Lead Status' +#: crm/fcrm/pagetype/crm_deal_status/crm_deal_status.json +#: crm/fcrm/pagetype/crm_lead_status/crm_lead_status.json msgid "gray" msgstr "" -#. Option for the 'Color' (Select) field in DocType 'CRM Deal Status' -#. Option for the 'Color' (Select) field in DocType 'CRM Lead Status' -#: crm/fcrm/doctype/crm_deal_status/crm_deal_status.json -#: crm/fcrm/doctype/crm_lead_status/crm_lead_status.json +#. Option for the 'Color' (Select) field in PageType 'CRM Deal Status' +#. Option for the 'Color' (Select) field in PageType 'CRM Lead Status' +#: crm/fcrm/pagetype/crm_deal_status/crm_deal_status.json +#: crm/fcrm/pagetype/crm_lead_status/crm_lead_status.json msgid "green" msgstr "" -#. Option for the 'Type' (Select) field in DocType 'CRM View Settings' -#: crm/fcrm/doctype/crm_view_settings/crm_view_settings.json +#. Option for the 'Type' (Select) field in PageType 'CRM View Settings' +#: crm/fcrm/pagetype/crm_view_settings/crm_view_settings.json msgid "group_by" msgstr "" @@ -6170,12 +6170,12 @@ msgstr "" msgid "just now" msgstr "" -#. Option for the 'Type' (Select) field in DocType 'CRM View Settings' -#: crm/fcrm/doctype/crm_view_settings/crm_view_settings.json +#. Option for the 'Type' (Select) field in PageType 'CRM View Settings' +#: crm/fcrm/pagetype/crm_view_settings/crm_view_settings.json msgid "kanban" msgstr "" -#: crm/api/doc.py:40 crm/api/doc.py:158 crm/api/doc.py:503 +#: crm/api/pg.py:40 crm/api/pg.py:158 crm/api/pg.py:503 msgid "label" msgstr "" @@ -6184,8 +6184,8 @@ msgstr "" msgid "leads" msgstr "" -#. Option for the 'Type' (Select) field in DocType 'CRM View Settings' -#: crm/fcrm/doctype/crm_view_settings/crm_view_settings.json +#. Option for the 'Type' (Select) field in PageType 'CRM View Settings' +#: crm/fcrm/pagetype/crm_view_settings/crm_view_settings.json msgid "list" msgstr "" @@ -6206,17 +6206,17 @@ msgstr "" msgid "operator" msgstr "" -#. Option for the 'Color' (Select) field in DocType 'CRM Deal Status' -#. Option for the 'Color' (Select) field in DocType 'CRM Lead Status' -#: crm/fcrm/doctype/crm_deal_status/crm_deal_status.json -#: crm/fcrm/doctype/crm_lead_status/crm_lead_status.json +#. Option for the 'Color' (Select) field in PageType 'CRM Deal Status' +#. Option for the 'Color' (Select) field in PageType 'CRM Lead Status' +#: crm/fcrm/pagetype/crm_deal_status/crm_deal_status.json +#: crm/fcrm/pagetype/crm_lead_status/crm_lead_status.json msgid "orange" msgstr "" -#. Option for the 'Color' (Select) field in DocType 'CRM Deal Status' -#. Option for the 'Color' (Select) field in DocType 'CRM Lead Status' -#: crm/fcrm/doctype/crm_deal_status/crm_deal_status.json -#: crm/fcrm/doctype/crm_lead_status/crm_lead_status.json +#. Option for the 'Color' (Select) field in PageType 'CRM Deal Status' +#. Option for the 'Color' (Select) field in PageType 'CRM Lead Status' +#: crm/fcrm/pagetype/crm_deal_status/crm_deal_status.json +#: crm/fcrm/pagetype/crm_lead_status/crm_lead_status.json msgid "pink" msgstr "" @@ -6232,10 +6232,10 @@ msgstr "" msgid "public" msgstr "" -#. Option for the 'Color' (Select) field in DocType 'CRM Deal Status' -#. Option for the 'Color' (Select) field in DocType 'CRM Lead Status' -#: crm/fcrm/doctype/crm_deal_status/crm_deal_status.json -#: crm/fcrm/doctype/crm_lead_status/crm_lead_status.json +#. Option for the 'Color' (Select) field in PageType 'CRM Deal Status' +#. Option for the 'Color' (Select) field in PageType 'CRM Lead Status' +#: crm/fcrm/pagetype/crm_deal_status/crm_deal_status.json +#: crm/fcrm/pagetype/crm_lead_status/crm_lead_status.json msgid "purple" msgstr "" @@ -6243,17 +6243,17 @@ msgstr "" msgid "received a whatsapp message in {0}" msgstr "" -#. Option for the 'Color' (Select) field in DocType 'CRM Deal Status' -#. Option for the 'Color' (Select) field in DocType 'CRM Lead Status' -#: crm/fcrm/doctype/crm_deal_status/crm_deal_status.json -#: crm/fcrm/doctype/crm_lead_status/crm_lead_status.json +#. Option for the 'Color' (Select) field in PageType 'CRM Deal Status' +#. Option for the 'Color' (Select) field in PageType 'CRM Lead Status' +#: crm/fcrm/pagetype/crm_deal_status/crm_deal_status.json +#: crm/fcrm/pagetype/crm_lead_status/crm_lead_status.json msgid "red" msgstr "" -#. Option for the 'Color' (Select) field in DocType 'CRM Deal Status' -#. Option for the 'Color' (Select) field in DocType 'CRM Lead Status' -#: crm/fcrm/doctype/crm_deal_status/crm_deal_status.json -#: crm/fcrm/doctype/crm_lead_status/crm_lead_status.json +#. Option for the 'Color' (Select) field in PageType 'CRM Deal Status' +#. Option for the 'Color' (Select) field in PageType 'CRM Lead Status' +#: crm/fcrm/pagetype/crm_deal_status/crm_deal_status.json +#: crm/fcrm/pagetype/crm_lead_status/crm_lead_status.json msgid "teal" msgstr "" @@ -6266,10 +6266,10 @@ msgstr "" msgid "tomorrow" msgstr "" -#. Option for the 'Color' (Select) field in DocType 'CRM Deal Status' -#. Option for the 'Color' (Select) field in DocType 'CRM Lead Status' -#: crm/fcrm/doctype/crm_deal_status/crm_deal_status.json -#: crm/fcrm/doctype/crm_lead_status/crm_lead_status.json +#. Option for the 'Color' (Select) field in PageType 'CRM Deal Status' +#. Option for the 'Color' (Select) field in PageType 'CRM Lead Status' +#: crm/fcrm/pagetype/crm_deal_status/crm_deal_status.json +#: crm/fcrm/pagetype/crm_lead_status/crm_lead_status.json msgid "violet" msgstr "" @@ -6278,10 +6278,10 @@ msgstr "" msgid "which are not compatible with this UI, you will need to recreate the conditions here if you want to manage and add new conditions from this UI." msgstr "" -#. Option for the 'Color' (Select) field in DocType 'CRM Deal Status' -#. Option for the 'Color' (Select) field in DocType 'CRM Lead Status' -#: crm/fcrm/doctype/crm_deal_status/crm_deal_status.json -#: crm/fcrm/doctype/crm_lead_status/crm_lead_status.json +#. Option for the 'Color' (Select) field in PageType 'CRM Deal Status' +#. Option for the 'Color' (Select) field in PageType 'CRM Lead Status' +#: crm/fcrm/pagetype/crm_deal_status/crm_deal_status.json +#: crm/fcrm/pagetype/crm_lead_status/crm_lead_status.json msgid "yellow" msgstr "" @@ -6379,7 +6379,7 @@ msgid "⚠️ Method \"{0}\" not found in class." msgstr "" #: frontend/src/data/script.js:83 -msgid "⚠️ No class found for doctype: {0}, it is mandatory to have a class for the parent doctype. it can be empty, but it should be present." +msgid "⚠️ No class found for pagetype: {0}, it is mandatory to have a class for the parent pagetype. it can be empty, but it should be present." msgstr "" #: frontend/src/data/script.js:180 diff --git a/crm/locale/pl.po b/crm/locale/pl.po index bf953a31..8e7d0f28 100644 --- a/crm/locale/pl.po +++ b/crm/locale/pl.po @@ -1,6 +1,6 @@ msgid "" msgstr "" -"Project-Id-Version: frappe\n" +"Project-Id-Version: jingrow\n" "Report-Msgid-Bugs-To: shariq@jingrow.com\n" "POT-Creation-Date: 2025-09-21 09:35+0000\n" "PO-Revision-Date: 2025-09-22 20:42\n" @@ -11,10 +11,10 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Generated-By: Babel 2.16.0\n" "Plural-Forms: nplurals=4; plural=(n==1 ? 0 : (n%10>=2 && n%10<=4) && (n%100<12 || n%100>14) ? 1 : n!=1 && (n%10>=0 && n%10<=1) || (n%10>=5 && n%10<=9) || (n%100>=12 && n%100<=14) ? 2 : 3);\n" -"X-Crowdin-Project: frappe\n" +"X-Crowdin-Project: jingrow\n" "X-Crowdin-Project-ID: 639578\n" "X-Crowdin-Language: pl\n" -"X-Crowdin-File: /[frappe.crm] develop/crm/locale/main.pot\n" +"X-Crowdin-File: /[jingrow.crm] develop/crm/locale/main.pot\n" "X-Crowdin-File-ID: 97\n" "Language: pl_PL\n" @@ -55,73 +55,73 @@ msgstr "" msgid "1 year ago" msgstr "" -#. Option for the 'No. of Employees' (Select) field in DocType 'CRM Deal' -#. Option for the 'No. of Employees' (Select) field in DocType 'CRM Lead' -#. Option for the 'No. of Employees' (Select) field in DocType 'CRM +#. Option for the 'No. of Employees' (Select) field in PageType 'CRM Deal' +#. Option for the 'No. of Employees' (Select) field in PageType 'CRM Lead' +#. Option for the 'No. of Employees' (Select) field in PageType 'CRM #. Organization' -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_lead/crm_lead.json -#: crm/fcrm/doctype/crm_organization/crm_organization.json +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_lead/crm_lead.json +#: crm/fcrm/pagetype/crm_organization/crm_organization.json msgid "1-10" msgstr "" -#. Option for the 'No. of Employees' (Select) field in DocType 'CRM Deal' -#. Option for the 'No. of Employees' (Select) field in DocType 'CRM Lead' -#. Option for the 'No. of Employees' (Select) field in DocType 'CRM +#. Option for the 'No. of Employees' (Select) field in PageType 'CRM Deal' +#. Option for the 'No. of Employees' (Select) field in PageType 'CRM Lead' +#. Option for the 'No. of Employees' (Select) field in PageType 'CRM #. Organization' -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_lead/crm_lead.json -#: crm/fcrm/doctype/crm_organization/crm_organization.json +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_lead/crm_lead.json +#: crm/fcrm/pagetype/crm_organization/crm_organization.json msgid "1000+" msgstr "" -#. Option for the 'No. of Employees' (Select) field in DocType 'CRM Deal' -#. Option for the 'No. of Employees' (Select) field in DocType 'CRM Lead' -#. Option for the 'No. of Employees' (Select) field in DocType 'CRM +#. Option for the 'No. of Employees' (Select) field in PageType 'CRM Deal' +#. Option for the 'No. of Employees' (Select) field in PageType 'CRM Lead' +#. Option for the 'No. of Employees' (Select) field in PageType 'CRM #. Organization' -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_lead/crm_lead.json -#: crm/fcrm/doctype/crm_organization/crm_organization.json +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_lead/crm_lead.json +#: crm/fcrm/pagetype/crm_organization/crm_organization.json msgid "11-50" msgstr "" -#. Option for the 'No. of Employees' (Select) field in DocType 'CRM Deal' -#. Option for the 'No. of Employees' (Select) field in DocType 'CRM Lead' -#. Option for the 'No. of Employees' (Select) field in DocType 'CRM +#. Option for the 'No. of Employees' (Select) field in PageType 'CRM Deal' +#. Option for the 'No. of Employees' (Select) field in PageType 'CRM Lead' +#. Option for the 'No. of Employees' (Select) field in PageType 'CRM #. Organization' -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_lead/crm_lead.json -#: crm/fcrm/doctype/crm_organization/crm_organization.json +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_lead/crm_lead.json +#: crm/fcrm/pagetype/crm_organization/crm_organization.json msgid "201-500" msgstr "" -#. Option for the 'No. of Employees' (Select) field in DocType 'CRM Deal' -#. Option for the 'No. of Employees' (Select) field in DocType 'CRM Lead' -#. Option for the 'No. of Employees' (Select) field in DocType 'CRM +#. Option for the 'No. of Employees' (Select) field in PageType 'CRM Deal' +#. Option for the 'No. of Employees' (Select) field in PageType 'CRM Lead' +#. Option for the 'No. of Employees' (Select) field in PageType 'CRM #. Organization' -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_lead/crm_lead.json -#: crm/fcrm/doctype/crm_organization/crm_organization.json +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_lead/crm_lead.json +#: crm/fcrm/pagetype/crm_organization/crm_organization.json msgid "501-1000" msgstr "" -#. Option for the 'No. of Employees' (Select) field in DocType 'CRM Deal' -#. Option for the 'No. of Employees' (Select) field in DocType 'CRM Lead' -#. Option for the 'No. of Employees' (Select) field in DocType 'CRM +#. Option for the 'No. of Employees' (Select) field in PageType 'CRM Deal' +#. Option for the 'No. of Employees' (Select) field in PageType 'CRM Lead' +#. Option for the 'No. of Employees' (Select) field in PageType 'CRM #. Organization' -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_lead/crm_lead.json -#: crm/fcrm/doctype/crm_organization/crm_organization.json +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_lead/crm_lead.json +#: crm/fcrm/pagetype/crm_organization/crm_organization.json msgid "51-200" msgstr "" -#. Paragraph text in the Frappe CRM Workspace -#: crm/fcrm/workspace/frappe_crm/frappe_crm.json +#. Paragraph text in the Jingrow CRM Workspace +#: crm/fcrm/workspace/jingrow_crm/jingrow_crm.json msgid "META" msgstr "" -#. Paragraph text in the Frappe CRM Workspace -#: crm/fcrm/workspace/frappe_crm/frappe_crm.json +#. Paragraph text in the Jingrow CRM Workspace +#: crm/fcrm/workspace/jingrow_crm/jingrow_crm.json msgid "SHORTCUTS" msgstr "" @@ -130,8 +130,8 @@ msgstr "" msgid "

Dear {{ lead_name }},

\\n\\n

This is a reminder for the payment of {{ grand_total }}.

\\n\\n

Thanks,

\\n

Frappé

" msgstr "

Drogi {{ lead_name }},

\\n\\n

Przypominamy o zapłacie {{ grand_total }}.

\\n\\n

Dziękuję,

\\n

Frappé

" -#. Header text in the Frappe CRM Workspace -#: crm/fcrm/workspace/frappe_crm/frappe_crm.json +#. Header text in the Jingrow CRM Workspace +#: crm/fcrm/workspace/jingrow_crm/jingrow_crm.json msgid "PORTAL" msgstr "" @@ -139,7 +139,7 @@ msgstr "" msgid "@John, can you please check this?" msgstr "@John, czy możesz to sprawdzić?" -#: crm/fcrm/doctype/crm_lead/crm_lead.py:56 +#: crm/fcrm/pagetype/crm_lead/crm_lead.py:56 msgid "A Lead requires either a person's name or an organization's name" msgstr "" @@ -147,14 +147,14 @@ msgstr "" msgid "A new account has been created for you at {0}" msgstr "" -#. Label of the api_key (Data) field in DocType 'CRM Exotel Settings' -#. Label of the api_key (Data) field in DocType 'CRM Twilio Settings' -#. Label of the api_key (Data) field in DocType 'ERPNext CRM Settings' -#. Label of the api_key (Data) field in DocType 'Helpdesk CRM Settings' -#: crm/fcrm/doctype/crm_exotel_settings/crm_exotel_settings.json -#: crm/fcrm/doctype/crm_twilio_settings/crm_twilio_settings.json -#: crm/fcrm/doctype/erpnext_crm_settings/erpnext_crm_settings.json -#: crm/fcrm/doctype/helpdesk_crm_settings/helpdesk_crm_settings.json +#. Label of the api_key (Data) field in PageType 'CRM Exotel Settings' +#. Label of the api_key (Data) field in PageType 'CRM Twilio Settings' +#. Label of the api_key (Data) field in PageType 'ERPNext CRM Settings' +#. Label of the api_key (Data) field in PageType 'Helpdesk CRM Settings' +#: crm/fcrm/pagetype/crm_exotel_settings/crm_exotel_settings.json +#: crm/fcrm/pagetype/crm_twilio_settings/crm_twilio_settings.json +#: crm/fcrm/pagetype/erpnext_crm_settings/erpnext_crm_settings.json +#: crm/fcrm/pagetype/helpdesk_crm_settings/helpdesk_crm_settings.json msgid "API Key" msgstr "Klucz API" @@ -162,17 +162,17 @@ msgstr "Klucz API" msgid "API Key is required" msgstr "" -#. Label of the api_secret (Password) field in DocType 'CRM Twilio Settings' -#. Label of the api_secret (Password) field in DocType 'ERPNext CRM Settings' -#. Label of the api_secret (Password) field in DocType 'Helpdesk CRM Settings' -#: crm/fcrm/doctype/crm_twilio_settings/crm_twilio_settings.json -#: crm/fcrm/doctype/erpnext_crm_settings/erpnext_crm_settings.json -#: crm/fcrm/doctype/helpdesk_crm_settings/helpdesk_crm_settings.json +#. Label of the api_secret (Password) field in PageType 'CRM Twilio Settings' +#. Label of the api_secret (Password) field in PageType 'ERPNext CRM Settings' +#. Label of the api_secret (Password) field in PageType 'Helpdesk CRM Settings' +#: crm/fcrm/pagetype/crm_twilio_settings/crm_twilio_settings.json +#: crm/fcrm/pagetype/erpnext_crm_settings/erpnext_crm_settings.json +#: crm/fcrm/pagetype/helpdesk_crm_settings/helpdesk_crm_settings.json msgid "API Secret" msgstr "Tajny API" -#. Label of the api_token (Password) field in DocType 'CRM Exotel Settings' -#: crm/fcrm/doctype/crm_exotel_settings/crm_exotel_settings.json +#. Label of the api_token (Password) field in PageType 'CRM Exotel Settings' +#: crm/fcrm/pagetype/crm_exotel_settings/crm_exotel_settings.json msgid "API Token" msgstr "" @@ -180,7 +180,7 @@ msgstr "" msgid "Accept" msgstr "" -#: crm/fcrm/doctype/crm_invitation/crm_invitation.js:7 +#: crm/fcrm/pagetype/crm_invitation/crm_invitation.js:7 msgid "Accept Invitation" msgstr "" @@ -188,22 +188,22 @@ msgstr "" msgid "Accept call" msgstr "" -#. Option for the 'Status' (Select) field in DocType 'CRM Invitation' -#: crm/fcrm/doctype/crm_invitation/crm_invitation.json +#. Option for the 'Status' (Select) field in PageType 'CRM Invitation' +#: crm/fcrm/pagetype/crm_invitation/crm_invitation.json msgid "Accepted" msgstr "" -#. Label of the accepted_at (Datetime) field in DocType 'CRM Invitation' -#: crm/fcrm/doctype/crm_invitation/crm_invitation.json +#. Label of the accepted_at (Datetime) field in PageType 'CRM Invitation' +#: crm/fcrm/pagetype/crm_invitation/crm_invitation.json msgid "Accepted At" msgstr "" -#. Label of the access_key (Data) field in DocType 'FCRM Settings' -#: crm/fcrm/doctype/fcrm_settings/fcrm_settings.json +#. Label of the access_key (Data) field in PageType 'FCRM Settings' +#: crm/fcrm/pagetype/fcrm_settings/fcrm_settings.json msgid "Access Key" msgstr "" -#: crm/fcrm/doctype/fcrm_settings/fcrm_settings.py:156 +#: crm/fcrm/pagetype/fcrm_settings/fcrm_settings.py:156 msgid "Access Key is required for Service Provider: {0}" msgstr "" @@ -219,10 +219,10 @@ msgstr "" msgid "Account Name" msgstr "" -#. Label of the account_sid (Data) field in DocType 'CRM Exotel Settings' -#. Label of the account_sid (Data) field in DocType 'CRM Twilio Settings' -#: crm/fcrm/doctype/crm_exotel_settings/crm_exotel_settings.json -#: crm/fcrm/doctype/crm_twilio_settings/crm_twilio_settings.json +#. Label of the account_sid (Data) field in PageType 'CRM Exotel Settings' +#. Label of the account_sid (Data) field in PageType 'CRM Twilio Settings' +#: crm/fcrm/pagetype/crm_exotel_settings/crm_exotel_settings.json +#: crm/fcrm/pagetype/crm_twilio_settings/crm_twilio_settings.json msgid "Account SID" msgstr "" @@ -296,9 +296,9 @@ msgstr "" msgid "Add Tab" msgstr "" -#. Label of the add_weekly_holidays_section (Section Break) field in DocType +#. Label of the add_weekly_holidays_section (Section Break) field in PageType #. 'CRM Holiday List' -#: crm/fcrm/doctype/crm_holiday_list/crm_holiday_list.json +#: crm/fcrm/pagetype/crm_holiday_list/crm_holiday_list.json msgid "Add Weekly Holidays" msgstr "Dodaj cotygodniowe święta" @@ -363,8 +363,8 @@ msgstr "" msgid "Add sample data" msgstr "" -#. Description of the 'Icon' (Code) field in DocType 'CRM Dropdown Item' -#: crm/fcrm/doctype/crm_dropdown_item/crm_dropdown_item.json +#. Description of the 'Icon' (Code) field in PageType 'CRM Dropdown Item' +#: crm/fcrm/pagetype/crm_dropdown_item/crm_dropdown_item.json msgid "Add svg code or use feather icons e.g 'settings'" msgstr "" @@ -372,8 +372,8 @@ msgstr "" msgid "Add task" msgstr "" -#. Label of the add_to_holidays (Button) field in DocType 'CRM Holiday List' -#: crm/fcrm/doctype/crm_holiday_list/crm_holiday_list.json +#. Label of the add_to_holidays (Button) field in PageType 'CRM Holiday List' +#: crm/fcrm/pagetype/crm_holiday_list/crm_holiday_list.json msgid "Add to Holidays" msgstr "" @@ -385,8 +385,8 @@ msgstr "" msgid "Add, edit, and manage email templates for various CRM communications" msgstr "" -#. Label of the address (Link) field in DocType 'CRM Organization' -#: crm/fcrm/doctype/crm_organization/crm_organization.json +#. Label of the address (Link) field in PageType 'CRM Organization' +#: crm/fcrm/pagetype/crm_organization/crm_organization.json msgid "Address" msgstr "" @@ -406,14 +406,14 @@ msgid "Agent is unavailable to take the call, please call after some time." msgstr "" #. Name of a role -#: crm/fcrm/doctype/crm_exotel_settings/crm_exotel_settings.json -#: crm/fcrm/doctype/crm_fields_layout/crm_fields_layout.json -#: crm/fcrm/doctype/crm_form_script/crm_form_script.json -#: crm/fcrm/doctype/crm_industry/crm_industry.json -#: crm/fcrm/doctype/crm_lead/crm_lead.json -#: crm/fcrm/doctype/crm_lead_source/crm_lead_source.json -#: crm/fcrm/doctype/crm_lead_status/crm_lead_status.json -#: crm/fcrm/doctype/fcrm_settings/fcrm_settings.json +#: crm/fcrm/pagetype/crm_exotel_settings/crm_exotel_settings.json +#: crm/fcrm/pagetype/crm_fields_layout/crm_fields_layout.json +#: crm/fcrm/pagetype/crm_form_script/crm_form_script.json +#: crm/fcrm/pagetype/crm_industry/crm_industry.json +#: crm/fcrm/pagetype/crm_lead/crm_lead.json +#: crm/fcrm/pagetype/crm_lead_source/crm_lead_source.json +#: crm/fcrm/pagetype/crm_lead_status/crm_lead_status.json +#: crm/fcrm/pagetype/fcrm_settings/fcrm_settings.json #: frontend/src/components/Settings/EmailTemplate/EmailTemplates.vue:76 #: frontend/src/components/Settings/Users.vue:85 msgid "All" @@ -426,16 +426,16 @@ msgstr "" msgid "All day" msgstr "" -#. Label of the amount (Currency) field in DocType 'CRM Products' -#: crm/fcrm/doctype/crm_products/crm_products.json +#. Label of the amount (Currency) field in PageType 'CRM Products' +#: crm/fcrm/pagetype/crm_products/crm_products.json #: frontend/src/pages/Contact.vue:499 frontend/src/pages/MobileContact.vue:507 #: frontend/src/pages/MobileOrganization.vue:451 #: frontend/src/pages/Organization.vue:472 msgid "Amount" msgstr "" -#. Description of the 'Net Amount' (Currency) field in DocType 'CRM Products' -#: crm/fcrm/doctype/crm_products/crm_products.json +#. Description of the 'Net Amount' (Currency) field in PageType 'CRM Products' +#: crm/fcrm/pagetype/crm_products/crm_products.json msgid "Amount after discount" msgstr "" @@ -447,13 +447,13 @@ msgstr "" msgid "An error occurred while updating the document" msgstr "" -#. Description of the 'Favicon' (Attach) field in DocType 'FCRM Settings' -#: crm/fcrm/doctype/fcrm_settings/fcrm_settings.json +#. Description of the 'Favicon' (Attach) field in PageType 'FCRM Settings' +#: crm/fcrm/pagetype/fcrm_settings/fcrm_settings.json msgid "An icon file with .ico extension. Should be 16 x 16 px. Generated using a favicon generator. [favicon-generator.org]" msgstr "Plik ikona z .ico rozszerzenia. Powinno być 16 x 16 px. Generowane przy użyciu generator favicon. [favicon-generator.org]" -#. Description of the 'Logo' (Attach) field in DocType 'FCRM Settings' -#: crm/fcrm/doctype/fcrm_settings/fcrm_settings.json +#. Description of the 'Logo' (Attach) field in PageType 'FCRM Settings' +#: crm/fcrm/pagetype/fcrm_settings/fcrm_settings.json msgid "An image with 1:1 & 2:1 ratio is preferred" msgstr "" @@ -461,12 +461,12 @@ msgstr "" msgid "And" msgstr "" -#. Label of the annual_revenue (Currency) field in DocType 'CRM Deal' -#. Label of the annual_revenue (Currency) field in DocType 'CRM Lead' -#. Label of the annual_revenue (Currency) field in DocType 'CRM Organization' -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_lead/crm_lead.json -#: crm/fcrm/doctype/crm_organization/crm_organization.json +#. Label of the annual_revenue (Currency) field in PageType 'CRM Deal' +#. Label of the annual_revenue (Currency) field in PageType 'CRM Lead' +#. Label of the annual_revenue (Currency) field in PageType 'CRM Organization' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_lead/crm_lead.json +#: crm/fcrm/pagetype/crm_organization/crm_organization.json msgid "Annual Revenue" msgstr "" @@ -488,13 +488,13 @@ msgstr "" msgid "Apply" msgstr "" -#. Label of the apply_on (Link) field in DocType 'CRM Service Level Agreement' -#: crm/fcrm/doctype/crm_service_level_agreement/crm_service_level_agreement.json +#. Label of the apply_on (Link) field in PageType 'CRM Service Level Agreement' +#: crm/fcrm/pagetype/crm_service_level_agreement/crm_service_level_agreement.json msgid "Apply On" msgstr "Zastosuj Na" -#. Label of the view (Select) field in DocType 'CRM Form Script' -#: crm/fcrm/doctype/crm_form_script/crm_form_script.json +#. Label of the view (Select) field in PageType 'CRM Form Script' +#: crm/fcrm/pagetype/crm_form_script/crm_form_script.json msgid "Apply To" msgstr "" @@ -540,10 +540,10 @@ msgid "Are you sure you want to go back? Unsaved changes will be lost." msgstr "" #: frontend/src/composables/frappecloud.js:24 -msgid "Are you sure you want to login to your Frappe Cloud dashboard?" -msgstr "Czy na pewno chcesz zalogować się do panelu Frappe Cloud?" +msgid "Are you sure you want to login to your Jingrow Cloud dashboard?" +msgstr "Czy na pewno chcesz zalogować się do panelu Jingrow Cloud?" -#: crm/fcrm/doctype/erpnext_crm_settings/erpnext_crm_settings.js:9 +#: crm/fcrm/pagetype/erpnext_crm_settings/erpnext_crm_settings.js:9 msgid "Are you sure you want to reset 'Create Quotation from CRM Deal' Form Script?" msgstr "" @@ -555,7 +555,7 @@ msgstr "" msgid "Are you sure you want to unlink {0} linked item(s)?" msgstr "" -#: crm/fcrm/doctype/fcrm_settings/fcrm_settings.py:193 +#: crm/fcrm/pagetype/fcrm_settings/fcrm_settings.py:193 msgid "Ask your manager to set up the Exchange Rate Provider, as default provider does not support currency conversion for {0} to {1}." msgstr "" @@ -581,8 +581,8 @@ msgstr "" msgid "Assign to me" msgstr "Przypisanie do mnie" -#. Label of the assigned_to (Link) field in DocType 'CRM Task' -#: crm/fcrm/doctype/crm_task/crm_task.json +#. Label of the assigned_to (Link) field in PageType 'CRM Task' +#: crm/fcrm/pagetype/crm_task/crm_task.json msgid "Assigned To" msgstr "" @@ -594,13 +594,13 @@ msgstr "" msgid "Assignees" msgstr "" -#. Option for the 'Type' (Select) field in DocType 'CRM Notification' -#: crm/fcrm/doctype/crm_notification/crm_notification.json +#. Option for the 'Type' (Select) field in PageType 'CRM Notification' +#: crm/fcrm/pagetype/crm_notification/crm_notification.json msgid "Assignment" msgstr "" -#. Label of a shortcut in the Frappe CRM Workspace -#: crm/fcrm/workspace/frappe_crm/frappe_crm.json +#. Label of a shortcut in the Jingrow CRM Workspace +#: crm/fcrm/workspace/jingrow_crm/jingrow_crm.json msgid "Assignment Rule" msgstr "" @@ -678,14 +678,14 @@ msgstr "" msgid "Attendees" msgstr "" -#. Label of the auth_token (Password) field in DocType 'CRM Twilio Settings' -#: crm/fcrm/doctype/crm_twilio_settings/crm_twilio_settings.json +#. Label of the auth_token (Password) field in PageType 'CRM Twilio Settings' +#: crm/fcrm/pagetype/crm_twilio_settings/crm_twilio_settings.json msgid "Auth Token" msgstr "" -#. Label of the auto_update_expected_deal_value (Check) field in DocType 'FCRM +#. Label of the auto_update_expected_deal_value (Check) field in PageType 'FCRM #. Settings' -#: crm/fcrm/doctype/fcrm_settings/fcrm_settings.json +#: crm/fcrm/pagetype/fcrm_settings/fcrm_settings.json msgid "Auto Update Expected Deal Value" msgstr "" @@ -702,8 +702,8 @@ msgid "Auto update of expected deal value enabled" msgstr "" #. Description of the 'Auto Update Expected Deal Value' (Check) field in -#. DocType 'FCRM Settings' -#: crm/fcrm/doctype/fcrm_settings/fcrm_settings.json +#. PageType 'FCRM Settings' +#: crm/fcrm/pagetype/fcrm_settings/fcrm_settings.json #: frontend/src/components/Settings/ForecastingSettings.vue:46 msgid "Automatically update \"Expected Deal Value\" based on the total value of associated products in a deal" msgstr "" @@ -793,8 +793,8 @@ msgstr "" msgid "Back to file upload" msgstr "" -#. Option for the 'Status' (Select) field in DocType 'CRM Task' -#: crm/fcrm/doctype/crm_task/crm_task.json +#. Option for the 'Status' (Select) field in PageType 'CRM Task' +#: crm/fcrm/pagetype/crm_task/crm_task.json msgid "Backlog" msgstr "" @@ -818,8 +818,8 @@ msgstr "" msgid "Brand settings" msgstr "" -#. Label of the branding_tab (Tab Break) field in DocType 'FCRM Settings' -#: crm/fcrm/doctype/fcrm_settings/fcrm_settings.json +#. Label of the branding_tab (Tab Break) field in PageType 'FCRM Settings' +#: crm/fcrm/pagetype/fcrm_settings/fcrm_settings.json msgid "Branding" msgstr "" @@ -827,8 +827,8 @@ msgstr "" msgid "Bulk Edit" msgstr "" -#. Option for the 'Status' (Select) field in DocType 'CRM Call Log' -#: crm/fcrm/doctype/crm_call_log/crm_call_log.json +#. Option for the 'Status' (Select) field in PageType 'CRM Call Log' +#: crm/fcrm/pagetype/crm_call_log/crm_call_log.json msgid "Busy" msgstr "" @@ -838,174 +838,174 @@ msgstr "" msgid "CC" msgstr "DW" -#. Name of a DocType -#: crm/fcrm/doctype/crm_call_log/crm_call_log.json +#. Name of a PageType +#: crm/fcrm/pagetype/crm_call_log/crm_call_log.json msgid "CRM Call Log" msgstr "" -#. Name of a DocType -#: crm/fcrm/doctype/crm_communication_status/crm_communication_status.json +#. Name of a PageType +#: crm/fcrm/pagetype/crm_communication_status/crm_communication_status.json msgid "CRM Communication Status" msgstr "" -#. Name of a DocType -#: crm/fcrm/doctype/crm_contacts/crm_contacts.json +#. Name of a PageType +#: crm/fcrm/pagetype/crm_contacts/crm_contacts.json msgid "CRM Contacts" msgstr "" -#. Name of a DocType -#: crm/fcrm/doctype/crm_dashboard/crm_dashboard.json +#. Name of a PageType +#: crm/fcrm/pagetype/crm_dashboard/crm_dashboard.json #: frontend/src/pages/Dashboard.vue:304 msgid "CRM Dashboard" msgstr "" -#. Name of a DocType -#: crm/fcrm/doctype/crm_deal/crm_deal.json +#. Name of a PageType +#: crm/fcrm/pagetype/crm_deal/crm_deal.json msgid "CRM Deal" msgstr "" -#. Name of a DocType -#: crm/fcrm/doctype/crm_deal_status/crm_deal_status.json +#. Name of a PageType +#: crm/fcrm/pagetype/crm_deal_status/crm_deal_status.json msgid "CRM Deal Status" msgstr "" -#. Name of a DocType -#: crm/fcrm/doctype/crm_dropdown_item/crm_dropdown_item.json +#. Name of a PageType +#: crm/fcrm/pagetype/crm_dropdown_item/crm_dropdown_item.json msgid "CRM Dropdown Item" msgstr "" -#. Name of a DocType -#: crm/fcrm/doctype/crm_exotel_settings/crm_exotel_settings.json +#. Name of a PageType +#: crm/fcrm/pagetype/crm_exotel_settings/crm_exotel_settings.json msgid "CRM Exotel Settings" msgstr "" -#. Name of a DocType -#: crm/fcrm/doctype/crm_fields_layout/crm_fields_layout.json +#. Name of a PageType +#: crm/fcrm/pagetype/crm_fields_layout/crm_fields_layout.json msgid "CRM Fields Layout" msgstr "" -#. Name of a DocType -#: crm/fcrm/doctype/crm_form_script/crm_form_script.json +#. Name of a PageType +#: crm/fcrm/pagetype/crm_form_script/crm_form_script.json msgid "CRM Form Script" msgstr "" -#. Name of a DocType -#: crm/fcrm/doctype/crm_global_settings/crm_global_settings.json +#. Name of a PageType +#: crm/fcrm/pagetype/crm_global_settings/crm_global_settings.json msgid "CRM Global Settings" msgstr "" -#. Name of a DocType -#: crm/fcrm/doctype/crm_holiday/crm_holiday.json +#. Name of a PageType +#: crm/fcrm/pagetype/crm_holiday/crm_holiday.json msgid "CRM Holiday" msgstr "" -#. Name of a DocType -#: crm/fcrm/doctype/crm_holiday_list/crm_holiday_list.json +#. Name of a PageType +#: crm/fcrm/pagetype/crm_holiday_list/crm_holiday_list.json msgid "CRM Holiday List" msgstr "" -#. Name of a DocType -#: crm/fcrm/doctype/crm_industry/crm_industry.json +#. Name of a PageType +#: crm/fcrm/pagetype/crm_industry/crm_industry.json msgid "CRM Industry" msgstr "" -#. Name of a DocType -#: crm/fcrm/doctype/crm_invitation/crm_invitation.json +#. Name of a PageType +#: crm/fcrm/pagetype/crm_invitation/crm_invitation.json msgid "CRM Invitation" msgstr "" -#. Name of a DocType -#: crm/fcrm/doctype/crm_lead/crm_lead.json +#. Name of a PageType +#: crm/fcrm/pagetype/crm_lead/crm_lead.json msgid "CRM Lead" msgstr "" -#. Name of a DocType -#: crm/fcrm/doctype/crm_lead_source/crm_lead_source.json +#. Name of a PageType +#: crm/fcrm/pagetype/crm_lead_source/crm_lead_source.json msgid "CRM Lead Source" msgstr "" -#. Name of a DocType -#: crm/fcrm/doctype/crm_lead_status/crm_lead_status.json +#. Name of a PageType +#: crm/fcrm/pagetype/crm_lead_status/crm_lead_status.json msgid "CRM Lead Status" msgstr "" -#. Name of a DocType -#: crm/fcrm/doctype/crm_lost_reason/crm_lost_reason.json +#. Name of a PageType +#: crm/fcrm/pagetype/crm_lost_reason/crm_lost_reason.json msgid "CRM Lost Reason" msgstr "" -#. Name of a DocType -#: crm/fcrm/doctype/crm_notification/crm_notification.json +#. Name of a PageType +#: crm/fcrm/pagetype/crm_notification/crm_notification.json msgid "CRM Notification" msgstr "" -#. Name of a DocType -#: crm/fcrm/doctype/crm_organization/crm_organization.json +#. Name of a PageType +#: crm/fcrm/pagetype/crm_organization/crm_organization.json msgid "CRM Organization" msgstr "" -#. Label of a shortcut in the Frappe CRM Workspace -#: crm/fcrm/workspace/frappe_crm/frappe_crm.json +#. Label of a shortcut in the Jingrow CRM Workspace +#: crm/fcrm/workspace/jingrow_crm/jingrow_crm.json msgid "CRM Portal Page" msgstr "" -#. Name of a DocType -#: crm/fcrm/doctype/crm_product/crm_product.json +#. Name of a PageType +#: crm/fcrm/pagetype/crm_product/crm_product.json msgid "CRM Product" msgstr "" -#. Name of a DocType -#: crm/fcrm/doctype/crm_products/crm_products.json +#. Name of a PageType +#: crm/fcrm/pagetype/crm_products/crm_products.json msgid "CRM Products" msgstr "" -#. Name of a DocType -#: crm/fcrm/doctype/crm_service_day/crm_service_day.json +#. Name of a PageType +#: crm/fcrm/pagetype/crm_service_day/crm_service_day.json msgid "CRM Service Day" msgstr "" -#. Name of a DocType -#: crm/fcrm/doctype/crm_service_level_agreement/crm_service_level_agreement.json +#. Name of a PageType +#: crm/fcrm/pagetype/crm_service_level_agreement/crm_service_level_agreement.json msgid "CRM Service Level Agreement" msgstr "" -#. Name of a DocType -#: crm/fcrm/doctype/crm_service_level_priority/crm_service_level_priority.json +#. Name of a PageType +#: crm/fcrm/pagetype/crm_service_level_priority/crm_service_level_priority.json msgid "CRM Service Level Priority" msgstr "" -#. Name of a DocType -#: crm/fcrm/doctype/crm_status_change_log/crm_status_change_log.json +#. Name of a PageType +#: crm/fcrm/pagetype/crm_status_change_log/crm_status_change_log.json msgid "CRM Status Change Log" msgstr "" -#. Name of a DocType -#: crm/fcrm/doctype/crm_task/crm_task.json +#. Name of a PageType +#: crm/fcrm/pagetype/crm_task/crm_task.json msgid "CRM Task" msgstr "" -#. Name of a DocType -#: crm/fcrm/doctype/crm_telephony_agent/crm_telephony_agent.json +#. Name of a PageType +#: crm/fcrm/pagetype/crm_telephony_agent/crm_telephony_agent.json msgid "CRM Telephony Agent" msgstr "" -#. Name of a DocType -#: crm/fcrm/doctype/crm_telephony_phone/crm_telephony_phone.json +#. Name of a PageType +#: crm/fcrm/pagetype/crm_telephony_phone/crm_telephony_phone.json msgid "CRM Telephony Phone" msgstr "" -#. Name of a DocType -#: crm/fcrm/doctype/crm_territory/crm_territory.json +#. Name of a PageType +#: crm/fcrm/pagetype/crm_territory/crm_territory.json msgid "CRM Territory" msgstr "" -#. Name of a DocType -#: crm/fcrm/doctype/crm_twilio_settings/crm_twilio_settings.json +#. Name of a PageType +#: crm/fcrm/pagetype/crm_twilio_settings/crm_twilio_settings.json msgid "CRM Twilio Settings" msgstr "" -#. Name of a DocType -#: crm/fcrm/doctype/crm_view_settings/crm_view_settings.json +#. Name of a PageType +#: crm/fcrm/pagetype/crm_view_settings/crm_view_settings.json msgid "CRM View Settings" msgstr "" @@ -1021,13 +1021,13 @@ msgstr "" msgid "Call Details" msgstr "Szczegóły połączenia" -#. Label of the receiver (Link) field in DocType 'CRM Call Log' -#: crm/fcrm/doctype/crm_call_log/crm_call_log.json +#. Label of the receiver (Link) field in PageType 'CRM Call Log' +#: crm/fcrm/pagetype/crm_call_log/crm_call_log.json msgid "Call Received By" msgstr "" -#. Description of the 'Duration' (Duration) field in DocType 'CRM Call Log' -#: crm/fcrm/doctype/crm_call_log/crm_call_log.json +#. Description of the 'Duration' (Duration) field in PageType 'CRM Call Log' +#: crm/fcrm/pagetype/crm_call_log/crm_call_log.json msgid "Call duration in seconds" msgstr "" @@ -1045,8 +1045,8 @@ msgstr "" msgid "Call with John Doe" msgstr "" -#. Label of the caller (Link) field in DocType 'CRM Call Log' -#: crm/fcrm/doctype/crm_call_log/crm_call_log.json +#. Label of the caller (Link) field in PageType 'CRM Call Log' +#: crm/fcrm/pagetype/crm_call_log/crm_call_log.json msgid "Caller" msgstr "" @@ -1083,10 +1083,10 @@ msgstr "" msgid "Cancel" msgstr "Anuluj" -#. Option for the 'Status' (Select) field in DocType 'CRM Call Log' -#. Option for the 'Status' (Select) field in DocType 'CRM Task' -#: crm/fcrm/doctype/crm_call_log/crm_call_log.json -#: crm/fcrm/doctype/crm_task/crm_task.json +#. Option for the 'Status' (Select) field in PageType 'CRM Call Log' +#. Option for the 'Status' (Select) field in PageType 'CRM Task' +#: crm/fcrm/pagetype/crm_call_log/crm_call_log.json +#: crm/fcrm/pagetype/crm_task/crm_task.json msgid "Canceled" msgstr "" @@ -1094,7 +1094,7 @@ msgstr "" msgid "Cannot change role of user with Admin access" msgstr "" -#: crm/fcrm/doctype/fcrm_settings/fcrm_settings.py:34 +#: crm/fcrm/pagetype/fcrm_settings/fcrm_settings.py:34 msgid "Cannot delete standard items {0}" msgstr "" @@ -1189,8 +1189,8 @@ msgstr "" msgid "Clear Sort" msgstr "" -#. Label of the clear_table (Button) field in DocType 'CRM Holiday List' -#: crm/fcrm/doctype/crm_holiday_list/crm_holiday_list.json +#. Label of the clear_table (Button) field in PageType 'CRM Holiday List' +#: crm/fcrm/pagetype/crm_holiday_list/crm_holiday_list.json msgid "Clear Table" msgstr "Wyczyść tabelę" @@ -1211,8 +1211,8 @@ msgstr "" msgid "Close panel" msgstr "" -#. Label of the closed_date (Date) field in DocType 'CRM Deal' -#: crm/fcrm/doctype/crm_deal/crm_deal.json +#. Label of the closed_date (Date) field in PageType 'CRM Deal' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json msgid "Closed Date" msgstr "" @@ -1224,10 +1224,10 @@ msgstr "Zawalić się" msgid "Collapsible" msgstr "Składany" -#. Label of the color (Select) field in DocType 'CRM Deal Status' -#. Label of the color (Select) field in DocType 'CRM Lead Status' -#: crm/fcrm/doctype/crm_deal_status/crm_deal_status.json -#: crm/fcrm/doctype/crm_lead_status/crm_lead_status.json +#. Label of the color (Select) field in PageType 'CRM Deal Status' +#. Label of the color (Select) field in PageType 'CRM Lead Status' +#: crm/fcrm/pagetype/crm_deal_status/crm_deal_status.json +#: crm/fcrm/pagetype/crm_lead_status/crm_lead_status.json msgid "Color" msgstr "Kolor" @@ -1235,20 +1235,20 @@ msgstr "Kolor" msgid "Column" msgstr "Kolumna" -#. Label of the column_field (Data) field in DocType 'CRM View Settings' -#: crm/fcrm/doctype/crm_view_settings/crm_view_settings.json +#. Label of the column_field (Data) field in PageType 'CRM View Settings' +#: crm/fcrm/pagetype/crm_view_settings/crm_view_settings.json #: frontend/src/components/Kanban/KanbanSettings.vue:12 msgid "Column Field" msgstr "" -#. Label of the columns (Code) field in DocType 'CRM View Settings' -#: crm/fcrm/doctype/crm_view_settings/crm_view_settings.json +#. Label of the columns (Code) field in PageType 'CRM View Settings' +#: crm/fcrm/pagetype/crm_view_settings/crm_view_settings.json #: frontend/src/components/ColumnSettings.vue:4 msgid "Columns" msgstr "" -#. Label of the comment (Link) field in DocType 'CRM Notification' -#: crm/fcrm/doctype/crm_notification/crm_notification.json +#. Label of the comment (Link) field in PageType 'CRM Notification' +#: crm/fcrm/pagetype/crm_notification/crm_notification.json #: frontend/src/components/CommentBox.vue:78 #: frontend/src/components/CommunicationArea.vue:16 #: frontend/src/components/Layouts/AppSidebar.vue:579 @@ -1264,20 +1264,20 @@ msgstr "" msgid "Common reasons for losing deals" msgstr "" -#. Label of the communication_status (Link) field in DocType 'CRM Deal' -#. Label of the communication_status (Link) field in DocType 'CRM Lead' -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_lead/crm_lead.json +#. Label of the communication_status (Link) field in PageType 'CRM Deal' +#. Label of the communication_status (Link) field in PageType 'CRM Lead' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_lead/crm_lead.json msgid "Communication Status" msgstr "" -#. Label of a shortcut in the Frappe CRM Workspace -#: crm/fcrm/workspace/frappe_crm/frappe_crm.json +#. Label of a shortcut in the Jingrow CRM Workspace +#: crm/fcrm/workspace/jingrow_crm/jingrow_crm.json msgid "Communication Statuses" msgstr "" -#. Label of the erpnext_company (Data) field in DocType 'ERPNext CRM Settings' -#: crm/fcrm/doctype/erpnext_crm_settings/erpnext_crm_settings.json +#. Label of the erpnext_company (Data) field in PageType 'ERPNext CRM Settings' +#: crm/fcrm/pagetype/erpnext_crm_settings/erpnext_crm_settings.json msgid "Company in ERPNext Site" msgstr "" @@ -1285,18 +1285,18 @@ msgstr "" msgid "Complete Registration" msgstr "Zakończ rejestrację" -#. Option for the 'Status' (Select) field in DocType 'CRM Call Log' -#: crm/fcrm/doctype/crm_call_log/crm_call_log.json +#. Option for the 'Status' (Select) field in PageType 'CRM Call Log' +#: crm/fcrm/pagetype/crm_call_log/crm_call_log.json msgid "Completed" msgstr "" -#. Option for the 'Device' (Select) field in DocType 'CRM Telephony Agent' -#: crm/fcrm/doctype/crm_telephony_agent/crm_telephony_agent.json +#. Option for the 'Device' (Select) field in PageType 'CRM Telephony Agent' +#: crm/fcrm/pagetype/crm_telephony_agent/crm_telephony_agent.json msgid "Computer" msgstr "" -#. Label of the condition (Code) field in DocType 'CRM Service Level Agreement' -#: crm/fcrm/doctype/crm_service_level_agreement/crm_service_level_agreement.json +#. Label of the condition (Code) field in PageType 'CRM Service Level Agreement' +#: crm/fcrm/pagetype/crm_service_level_agreement/crm_service_level_agreement.json msgid "Condition" msgstr "Warunek " @@ -1354,17 +1354,17 @@ msgstr "" msgid "Connect your email" msgstr "" -#. Label of the contact (Link) field in DocType 'CRM Contacts' -#. Label of the contact (Link) field in DocType 'CRM Deal' -#: crm/fcrm/doctype/crm_contacts/crm_contacts.json -#: crm/fcrm/doctype/crm_deal/crm_deal.json +#. Label of the contact (Link) field in PageType 'CRM Contacts' +#. Label of the contact (Link) field in PageType 'CRM Deal' +#: crm/fcrm/pagetype/crm_contacts/crm_contacts.json +#: crm/fcrm/pagetype/crm_deal/crm_deal.json #: frontend/src/components/Layouts/AppSidebar.vue:552 #: frontend/src/components/Modals/ConvertToDealModal.vue:51 #: frontend/src/pages/MobileLead.vue:145 msgid "Contact" msgstr "Kontakt " -#: crm/fcrm/doctype/crm_lead/crm_lead.py:212 +#: crm/fcrm/pagetype/crm_lead/crm_lead.py:212 msgid "Contact Already Exists" msgstr "" @@ -1384,7 +1384,7 @@ msgstr "" msgid "Contact already added" msgstr "" -#: crm/fcrm/doctype/crm_lead/crm_lead.py:211 +#: crm/fcrm/pagetype/crm_lead/crm_lead.py:211 msgid "Contact already exists with {0}" msgstr "" @@ -1405,18 +1405,18 @@ msgstr "" msgid "Contact updated" msgstr "" -#. Label of the contacts_tab (Tab Break) field in DocType 'CRM Deal' -#. Label of the contacts (Table) field in DocType 'CRM Deal' -#. Label of a shortcut in the Frappe CRM Workspace -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/workspace/frappe_crm/frappe_crm.json +#. Label of the contacts_tab (Tab Break) field in PageType 'CRM Deal' +#. Label of the contacts (Table) field in PageType 'CRM Deal' +#. Label of a shortcut in the Jingrow CRM Workspace +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/workspace/jingrow_crm/jingrow_crm.json #: frontend/src/pages/Contact.vue:234 frontend/src/pages/MobileContact.vue:212 #: frontend/src/pages/MobileOrganization.vue:331 msgid "Contacts" msgstr "" -#. Label of the content (Text Editor) field in DocType 'FCRM Note' -#: crm/fcrm/doctype/fcrm_note/fcrm_note.json +#. Label of the content (Text Editor) field in PageType 'FCRM Note' +#: crm/fcrm/pagetype/fcrm_note/fcrm_note.json #: frontend/src/components/Modals/NoteModal.vue:33 #: frontend/src/components/Settings/EmailTemplate/EditEmailTemplate.vue:89 #: frontend/src/components/Settings/EmailTemplate/EditEmailTemplate.vue:102 @@ -1456,8 +1456,8 @@ msgstr "" msgid "Convert to Deal" msgstr "" -#. Label of the converted (Check) field in DocType 'CRM Lead' -#: crm/fcrm/doctype/crm_lead/crm_lead.json +#. Label of the converted (Check) field in PageType 'CRM Lead' +#: crm/fcrm/pagetype/crm_lead/crm_lead.json msgid "Converted" msgstr "" @@ -1533,9 +1533,9 @@ msgstr "" msgid "Create an event" msgstr "" -#. Label of the create_customer_on_status_change (Check) field in DocType +#. Label of the create_customer_on_status_change (Check) field in PageType #. 'ERPNext CRM Settings' -#: crm/fcrm/doctype/erpnext_crm_settings/erpnext_crm_settings.json +#: crm/fcrm/pagetype/erpnext_crm_settings/erpnext_crm_settings.json msgid "Create customer on status change" msgstr "" @@ -1560,13 +1560,13 @@ msgstr "" msgid "Create your first task" msgstr "" -#. Label of the currency (Link) field in DocType 'CRM Deal' -#. Label of the currency (Link) field in DocType 'CRM Organization' -#. Label of the currency (Link) field in DocType 'FCRM Settings' -#. Label of the currency_tab (Tab Break) field in DocType 'FCRM Settings' -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_organization/crm_organization.json -#: crm/fcrm/doctype/fcrm_settings/fcrm_settings.json +#. Label of the currency (Link) field in PageType 'CRM Deal' +#. Label of the currency (Link) field in PageType 'CRM Organization' +#. Label of the currency (Link) field in PageType 'FCRM Settings' +#. Label of the currency_tab (Tab Break) field in PageType 'FCRM Settings' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_organization/crm_organization.json +#: crm/fcrm/pagetype/fcrm_settings/fcrm_settings.json #: frontend/src/components/Settings/CurrencySettings.vue:31 msgid "Currency" msgstr "" @@ -1631,13 +1631,13 @@ msgstr "" msgid "Data" msgstr "Dane" -#. Option for the 'Type' (Select) field in DocType 'CRM Fields Layout' -#: crm/fcrm/doctype/crm_fields_layout/crm_fields_layout.json +#. Option for the 'Type' (Select) field in PageType 'CRM Fields Layout' +#: crm/fcrm/pagetype/crm_fields_layout/crm_fields_layout.json msgid "Data Fields" msgstr "" -#. Label of the date (Date) field in DocType 'CRM Holiday' -#: crm/api/dashboard.py:601 crm/fcrm/doctype/crm_holiday/crm_holiday.json +#. Label of the date (Date) field in PageType 'CRM Holiday' +#: crm/api/dashboard.py:601 crm/fcrm/pagetype/crm_holiday/crm_holiday.json #: frontend/src/components/Calendar/CalendarEventPanel.vue:202 msgid "Date" msgstr "" @@ -1660,23 +1660,23 @@ msgstr "" msgid "Deal" msgstr "" -#. Label of the deal_owner (Link) field in DocType 'CRM Deal' -#: crm/fcrm/doctype/crm_deal/crm_deal.json +#. Label of the deal_owner (Link) field in PageType 'CRM Deal' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json msgid "Deal Owner" msgstr "" -#. Label of the deal_status (Link) field in DocType 'ERPNext CRM Settings' -#: crm/fcrm/doctype/erpnext_crm_settings/erpnext_crm_settings.json +#. Label of the deal_status (Link) field in PageType 'ERPNext CRM Settings' +#: crm/fcrm/pagetype/erpnext_crm_settings/erpnext_crm_settings.json msgid "Deal Status" msgstr "" -#. Label of a shortcut in the Frappe CRM Workspace -#: crm/fcrm/workspace/frappe_crm/frappe_crm.json +#. Label of a shortcut in the Jingrow CRM Workspace +#: crm/fcrm/workspace/jingrow_crm/jingrow_crm.json msgid "Deal Statuses" msgstr "" -#. Label of the deal_value (Currency) field in DocType 'CRM Deal' -#: crm/fcrm/doctype/crm_deal/crm_deal.json +#. Label of the deal_value (Currency) field in PageType 'CRM Deal' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json msgid "Deal Value" msgstr "" @@ -1694,8 +1694,8 @@ msgstr "" msgid "Deal value" msgstr "" -#. Label of a shortcut in the Frappe CRM Workspace -#: crm/fcrm/workspace/frappe_crm/frappe_crm.json +#. Label of a shortcut in the Jingrow CRM Workspace +#: crm/fcrm/workspace/jingrow_crm/jingrow_crm.json #: frontend/src/pages/Deal.vue:480 frontend/src/pages/MobileContact.vue:288 #: frontend/src/pages/MobileDeal.vue:384 #: frontend/src/pages/MobileOrganization.vue:325 @@ -1732,8 +1732,8 @@ msgstr "" msgid "Dear {{ lead_name }}, \\n\\nThis is a reminder for the payment of {{ grand_total }}. \\n\\nThanks, \\nFrappé" msgstr "" -#. Label of the default (Check) field in DocType 'CRM Service Level Agreement' -#: crm/fcrm/doctype/crm_service_level_agreement/crm_service_level_agreement.json +#. Label of the default (Check) field in PageType 'CRM Service Level Agreement' +#: crm/fcrm/pagetype/crm_service_level_agreement/crm_service_level_agreement.json msgid "Default" msgstr "" @@ -1745,8 +1745,8 @@ msgstr "" msgid "Default Incoming" msgstr "" -#. Label of the default_medium (Select) field in DocType 'CRM Telephony Agent' -#: crm/fcrm/doctype/crm_telephony_agent/crm_telephony_agent.json +#. Label of the default_medium (Select) field in PageType 'CRM Telephony Agent' +#: crm/fcrm/pagetype/crm_telephony_agent/crm_telephony_agent.json msgid "Default Medium" msgstr "" @@ -1754,9 +1754,9 @@ msgstr "" msgid "Default Outgoing" msgstr "" -#. Label of the default_priority (Check) field in DocType 'CRM Service Level +#. Label of the default_priority (Check) field in PageType 'CRM Service Level #. Priority' -#: crm/fcrm/doctype/crm_service_level_priority/crm_service_level_priority.json +#: crm/fcrm/pagetype/crm_service_level_priority/crm_service_level_priority.json msgid "Default Priority" msgstr "Domyślny priorytet" @@ -1768,7 +1768,7 @@ msgstr "" msgid "Default Sending and Inbox" msgstr "" -#: crm/fcrm/doctype/crm_service_level_agreement/crm_service_level_agreement.py:33 +#: crm/fcrm/pagetype/crm_service_level_agreement/crm_service_level_agreement.py:33 msgid "Default Service Level Agreement already exists for {0}" msgstr "" @@ -1788,8 +1788,8 @@ msgstr "" msgid "Default medium" msgstr "" -#: crm/fcrm/doctype/fcrm_settings/fcrm_settings.js:18 -#: crm/fcrm/doctype/fcrm_settings/fcrm_settings.js:30 +#: crm/fcrm/pagetype/fcrm_settings/fcrm_settings.js:18 +#: crm/fcrm/pagetype/fcrm_settings/fcrm_settings.js:30 msgid "Default statuses, custom fields and layouts restored successfully." msgstr "" @@ -1825,7 +1825,7 @@ msgstr "" msgid "Delete" msgstr "" -#: crm/fcrm/doctype/fcrm_settings/fcrm_settings.js:26 +#: crm/fcrm/pagetype/fcrm_settings/fcrm_settings.js:26 msgid "Delete & Restore" msgstr "" @@ -1883,14 +1883,14 @@ msgstr "" msgid "Delete {0} items" msgstr "" -#. Label of the description (Text Editor) field in DocType 'CRM Holiday' -#. Label of the description (Text Editor) field in DocType 'CRM Lost Reason' -#. Label of the description (Text Editor) field in DocType 'CRM Product' -#. Label of the description (Text Editor) field in DocType 'CRM Task' -#: crm/fcrm/doctype/crm_holiday/crm_holiday.json -#: crm/fcrm/doctype/crm_lost_reason/crm_lost_reason.json -#: crm/fcrm/doctype/crm_product/crm_product.json -#: crm/fcrm/doctype/crm_task/crm_task.json +#. Label of the description (Text Editor) field in PageType 'CRM Holiday' +#. Label of the description (Text Editor) field in PageType 'CRM Lost Reason' +#. Label of the description (Text Editor) field in PageType 'CRM Product' +#. Label of the description (Text Editor) field in PageType 'CRM Task' +#: crm/fcrm/pagetype/crm_holiday/crm_holiday.json +#: crm/fcrm/pagetype/crm_lost_reason/crm_lost_reason.json +#: crm/fcrm/pagetype/crm_product/crm_product.json +#: crm/fcrm/pagetype/crm_task/crm_task.json #: frontend/src/components/Calendar/CalendarEventPanel.vue:152 #: frontend/src/components/Modals/EventModal.vue:134 #: frontend/src/components/Modals/TaskModal.vue:36 @@ -1907,29 +1907,29 @@ msgstr "" msgid "Desk" msgstr "Biurko" -#. Label of the details (Tab Break) field in DocType 'CRM Lead' -#. Label of the details (Text Editor) field in DocType 'CRM Lead Source' -#: crm/fcrm/doctype/crm_lead/crm_lead.json -#: crm/fcrm/doctype/crm_lead_source/crm_lead_source.json +#. Label of the details (Tab Break) field in PageType 'CRM Lead' +#. Label of the details (Text Editor) field in PageType 'CRM Lead Source' +#: crm/fcrm/pagetype/crm_lead/crm_lead.json +#: crm/fcrm/pagetype/crm_lead_source/crm_lead_source.json #: frontend/src/pages/MobileContact.vue:283 #: frontend/src/pages/MobileDeal.vue:424 frontend/src/pages/MobileLead.vue:331 #: frontend/src/pages/MobileOrganization.vue:320 msgid "Details" msgstr "Szczegóły" -#. Label of the call_receiving_device (Select) field in DocType 'CRM Telephony +#. Label of the call_receiving_device (Select) field in PageType 'CRM Telephony #. Agent' -#: crm/fcrm/doctype/crm_telephony_agent/crm_telephony_agent.json +#: crm/fcrm/pagetype/crm_telephony_agent/crm_telephony_agent.json #: frontend/src/components/FilesUploader/FilesUploaderArea.vue:39 msgid "Device" msgstr "" -#: crm/fcrm/doctype/crm_form_script/crm_form_script.js:30 +#: crm/fcrm/pagetype/crm_form_script/crm_form_script.js:30 msgid "Disable" msgstr "Wyłącz" -#. Label of the disabled (Check) field in DocType 'CRM Product' -#: crm/fcrm/doctype/crm_product/crm_product.json +#. Label of the disabled (Check) field in PageType 'CRM Product' +#: crm/fcrm/pagetype/crm_product/crm_product.json msgid "Disabled" msgstr "" @@ -1943,27 +1943,27 @@ msgstr "Odrzucać" msgid "Discard unsaved changes?" msgstr "" -#. Label of the discount_percentage (Percent) field in DocType 'CRM Products' -#: crm/fcrm/doctype/crm_products/crm_products.json +#. Label of the discount_percentage (Percent) field in PageType 'CRM Products' +#: crm/fcrm/pagetype/crm_products/crm_products.json msgid "Discount %" msgstr "Zniżka %" -#. Label of the discount_amount (Currency) field in DocType 'CRM Products' -#: crm/fcrm/doctype/crm_products/crm_products.json +#. Label of the discount_amount (Currency) field in PageType 'CRM Products' +#: crm/fcrm/pagetype/crm_products/crm_products.json msgid "Discount Amount" msgstr "Wartość zniżki" -#. Label of the dt (Link) field in DocType 'CRM Form Script' -#. Label of the dt (Link) field in DocType 'CRM Global Settings' -#. Label of the dt (Link) field in DocType 'CRM View Settings' -#: crm/fcrm/doctype/crm_form_script/crm_form_script.json -#: crm/fcrm/doctype/crm_global_settings/crm_global_settings.json -#: crm/fcrm/doctype/crm_view_settings/crm_view_settings.json -msgid "DocType" +#. Label of the dt (Link) field in PageType 'CRM Form Script' +#. Label of the dt (Link) field in PageType 'CRM Global Settings' +#. Label of the dt (Link) field in PageType 'CRM View Settings' +#: crm/fcrm/pagetype/crm_form_script/crm_form_script.json +#: crm/fcrm/pagetype/crm_global_settings/crm_global_settings.json +#: crm/fcrm/pagetype/crm_view_settings/crm_view_settings.json +msgid "PageType" msgstr "Typ dokumentu" -#. Label of the dt (Link) field in DocType 'CRM Fields Layout' -#: crm/fcrm/doctype/crm_fields_layout/crm_fields_layout.json +#. Label of the dt (Link) field in PageType 'CRM Fields Layout' +#: crm/fcrm/pagetype/crm_fields_layout/crm_fields_layout.json msgid "Document Type" msgstr "" @@ -1983,8 +1983,8 @@ msgstr "" msgid "Documentation" msgstr "" -#. Option for the 'Status' (Select) field in DocType 'CRM Task' -#: crm/fcrm/doctype/crm_task/crm_task.json +#. Option for the 'Status' (Select) field in PageType 'CRM Task' +#: crm/fcrm/pagetype/crm_task/crm_task.json msgid "Done" msgstr "" @@ -2006,13 +2006,13 @@ msgstr "" msgid "Drop files here" msgstr "Upuść pliki tutaj" -#. Label of the dropdown_items_tab (Tab Break) field in DocType 'FCRM Settings' -#: crm/fcrm/doctype/fcrm_settings/fcrm_settings.json +#. Label of the dropdown_items_tab (Tab Break) field in PageType 'FCRM Settings' +#: crm/fcrm/pagetype/fcrm_settings/fcrm_settings.json msgid "Dropdown Items" msgstr "" -#. Label of the due_date (Datetime) field in DocType 'CRM Task' -#: crm/fcrm/doctype/crm_task/crm_task.json +#. Label of the due_date (Datetime) field in PageType 'CRM Task' +#: crm/fcrm/pagetype/crm_task/crm_task.json msgid "Due Date" msgstr "" @@ -2048,10 +2048,10 @@ msgstr "" msgid "Duplicate template" msgstr "" -#. Label of the duration (Duration) field in DocType 'CRM Call Log' -#. Label of the duration (Duration) field in DocType 'CRM Status Change Log' -#: crm/fcrm/doctype/crm_call_log/crm_call_log.json -#: crm/fcrm/doctype/crm_status_change_log/crm_status_change_log.json +#. Label of the duration (Duration) field in PageType 'CRM Call Log' +#. Label of the duration (Duration) field in PageType 'CRM Status Change Log' +#: crm/fcrm/pagetype/crm_call_log/crm_call_log.json +#: crm/fcrm/pagetype/crm_status_change_log/crm_status_change_log.json msgid "Duration" msgstr "" @@ -2060,28 +2060,28 @@ msgstr "" msgid "ERPNext" msgstr "" -#. Name of a DocType -#: crm/fcrm/doctype/erpnext_crm_settings/erpnext_crm_settings.json +#. Name of a PageType +#: crm/fcrm/pagetype/erpnext_crm_settings/erpnext_crm_settings.json msgid "ERPNext CRM Settings" msgstr "" -#. Label of the section_break_oubd (Section Break) field in DocType 'ERPNext +#. Label of the section_break_oubd (Section Break) field in PageType 'ERPNext #. CRM Settings' -#: crm/fcrm/doctype/erpnext_crm_settings/erpnext_crm_settings.json +#: crm/fcrm/pagetype/erpnext_crm_settings/erpnext_crm_settings.json msgid "ERPNext Site API's" msgstr "" -#. Label of the erpnext_site_url (Data) field in DocType 'ERPNext CRM Settings' -#: crm/fcrm/doctype/erpnext_crm_settings/erpnext_crm_settings.json +#. Label of the erpnext_site_url (Data) field in PageType 'ERPNext CRM Settings' +#: crm/fcrm/pagetype/erpnext_crm_settings/erpnext_crm_settings.json msgid "ERPNext Site URL" msgstr "" -#: crm/fcrm/doctype/erpnext_crm_settings/erpnext_crm_settings.py:25 +#: crm/fcrm/pagetype/erpnext_crm_settings/erpnext_crm_settings.py:25 msgid "ERPNext is not installed in the current site" msgstr "" -#: crm/fcrm/doctype/erpnext_crm_settings/erpnext_crm_settings.py:98 -#: crm/fcrm/doctype/erpnext_crm_settings/erpnext_crm_settings.py:124 +#: crm/fcrm/pagetype/erpnext_crm_settings/erpnext_crm_settings.py:98 +#: crm/fcrm/pagetype/erpnext_crm_settings/erpnext_crm_settings.py:124 msgid "ERPNext is not integrated with the CRM" msgstr "" @@ -2191,12 +2191,12 @@ msgstr "" msgid "Editing event" msgstr "" -#. Label of the email (Data) field in DocType 'CRM Contacts' -#. Label of the email (Data) field in DocType 'CRM Invitation' -#. Label of the email (Data) field in DocType 'CRM Lead' -#: crm/fcrm/doctype/crm_contacts/crm_contacts.json -#: crm/fcrm/doctype/crm_invitation/crm_invitation.json -#: crm/fcrm/doctype/crm_lead/crm_lead.json frontend/src/pages/Contact.vue:510 +#. Label of the email (Data) field in PageType 'CRM Contacts' +#. Label of the email (Data) field in PageType 'CRM Invitation' +#. Label of the email (Data) field in PageType 'CRM Lead' +#: crm/fcrm/pagetype/crm_contacts/crm_contacts.json +#: crm/fcrm/pagetype/crm_invitation/crm_invitation.json +#: crm/fcrm/pagetype/crm_lead/crm_lead.json frontend/src/pages/Contact.vue:510 #: frontend/src/pages/MobileContact.vue:518 #: frontend/src/pages/MobileOrganization.vue:462 #: frontend/src/pages/MobileOrganization.vue:490 @@ -2213,8 +2213,8 @@ msgstr "" msgid "Email ID is required" msgstr "" -#. Label of the email_sent_at (Datetime) field in DocType 'CRM Invitation' -#: crm/fcrm/doctype/crm_invitation/crm_invitation.json +#. Label of the email_sent_at (Datetime) field in PageType 'CRM Invitation' +#: crm/fcrm/pagetype/crm_invitation/crm_invitation.json msgid "Email Sent At" msgstr "" @@ -2272,12 +2272,12 @@ msgstr "" msgid "Empty - Choose a field to sort by" msgstr "" -#: crm/fcrm/doctype/crm_form_script/crm_form_script.js:30 +#: crm/fcrm/pagetype/crm_form_script/crm_form_script.js:30 msgid "Enable" msgstr "Włączyć" -#. Label of the enable_forecasting (Check) field in DocType 'FCRM Settings' -#: crm/fcrm/doctype/fcrm_settings/fcrm_settings.json +#. Label of the enable_forecasting (Check) field in PageType 'FCRM Settings' +#: crm/fcrm/pagetype/fcrm_settings/fcrm_settings.json msgid "Enable Forecasting" msgstr "" @@ -2293,18 +2293,18 @@ msgstr "" msgid "Enable forecasting" msgstr "" -#. Label of the enabled (Check) field in DocType 'CRM Exotel Settings' -#. Label of the enabled (Check) field in DocType 'CRM Form Script' -#. Label of the enabled (Check) field in DocType 'CRM Service Level Agreement' -#. Label of the enabled (Check) field in DocType 'CRM Twilio Settings' -#. Label of the enabled (Check) field in DocType 'ERPNext CRM Settings' -#. Label of the enabled (Check) field in DocType 'Helpdesk CRM Settings' -#: crm/fcrm/doctype/crm_exotel_settings/crm_exotel_settings.json -#: crm/fcrm/doctype/crm_form_script/crm_form_script.json -#: crm/fcrm/doctype/crm_service_level_agreement/crm_service_level_agreement.json -#: crm/fcrm/doctype/crm_twilio_settings/crm_twilio_settings.json -#: crm/fcrm/doctype/erpnext_crm_settings/erpnext_crm_settings.json -#: crm/fcrm/doctype/helpdesk_crm_settings/helpdesk_crm_settings.json +#. Label of the enabled (Check) field in PageType 'CRM Exotel Settings' +#. Label of the enabled (Check) field in PageType 'CRM Form Script' +#. Label of the enabled (Check) field in PageType 'CRM Service Level Agreement' +#. Label of the enabled (Check) field in PageType 'CRM Twilio Settings' +#. Label of the enabled (Check) field in PageType 'ERPNext CRM Settings' +#. Label of the enabled (Check) field in PageType 'Helpdesk CRM Settings' +#: crm/fcrm/pagetype/crm_exotel_settings/crm_exotel_settings.json +#: crm/fcrm/pagetype/crm_form_script/crm_form_script.json +#: crm/fcrm/pagetype/crm_service_level_agreement/crm_service_level_agreement.json +#: crm/fcrm/pagetype/crm_twilio_settings/crm_twilio_settings.json +#: crm/fcrm/pagetype/erpnext_crm_settings/erpnext_crm_settings.json +#: crm/fcrm/pagetype/helpdesk_crm_settings/helpdesk_crm_settings.json #: frontend/src/components/Settings/AssignmentRules/AssignmentRuleView.vue:32 #: frontend/src/components/Settings/AssignmentRules/AssignmentRulesList.vue:21 #: frontend/src/components/Settings/EmailTemplate/EditEmailTemplate.vue:18 @@ -2313,15 +2313,15 @@ msgstr "" msgid "Enabled" msgstr "Włączone" -#. Label of the end_date (Date) field in DocType 'CRM Service Level Agreement' -#: crm/fcrm/doctype/crm_service_level_agreement/crm_service_level_agreement.json +#. Label of the end_date (Date) field in PageType 'CRM Service Level Agreement' +#: crm/fcrm/pagetype/crm_service_level_agreement/crm_service_level_agreement.json msgid "End Date" msgstr "" -#. Label of the end_time (Datetime) field in DocType 'CRM Call Log' -#. Label of the end_time (Time) field in DocType 'CRM Service Day' -#: crm/fcrm/doctype/crm_call_log/crm_call_log.json -#: crm/fcrm/doctype/crm_service_day/crm_service_day.json +#. Label of the end_time (Datetime) field in PageType 'CRM Call Log' +#. Label of the end_time (Time) field in PageType 'CRM Service Day' +#: crm/fcrm/pagetype/crm_call_log/crm_call_log.json +#: crm/fcrm/pagetype/crm_service_day/crm_service_day.json #: frontend/src/components/Calendar/CalendarEventPanel.vue:242 #: frontend/src/components/Modals/EventModal.vue:112 msgid "End Time" @@ -2362,15 +2362,15 @@ msgstr "" msgid "Error updating field" msgstr "" -#: crm/fcrm/doctype/erpnext_crm_settings/erpnext_crm_settings.py:279 +#: crm/fcrm/pagetype/erpnext_crm_settings/erpnext_crm_settings.py:279 msgid "Error while creating customer in ERPNext, check error log for more details" msgstr "" -#: crm/fcrm/doctype/erpnext_crm_settings/erpnext_crm_settings.py:191 +#: crm/fcrm/pagetype/erpnext_crm_settings/erpnext_crm_settings.py:191 msgid "Error while creating prospect in ERPNext, check error log for more details" msgstr "" -#: crm/fcrm/doctype/erpnext_crm_settings/erpnext_crm_settings.py:117 +#: crm/fcrm/pagetype/erpnext_crm_settings/erpnext_crm_settings.py:117 msgid "Error while fetching customer in ERPNext, check error log for more details" msgstr "" @@ -2395,16 +2395,16 @@ msgstr "" msgid "Excel" msgstr "Przewyższać" -#. Label of the exchange_rate (Float) field in DocType 'CRM Deal' -#. Label of the exchange_rate (Float) field in DocType 'CRM Organization' -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_organization/crm_organization.json +#. Label of the exchange_rate (Float) field in PageType 'CRM Deal' +#. Label of the exchange_rate (Float) field in PageType 'CRM Organization' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_organization/crm_organization.json msgid "Exchange Rate" msgstr "Kurs wymiany" -#. Label of the exchange_rate_provider_section (Section Break) field in DocType +#. Label of the exchange_rate_provider_section (Section Break) field in PageType #. 'FCRM Settings' -#: crm/fcrm/doctype/fcrm_settings/fcrm_settings.json +#: crm/fcrm/pagetype/fcrm_settings/fcrm_settings.json msgid "Exchange Rate Provider" msgstr "" @@ -2412,12 +2412,12 @@ msgstr "" msgid "Exchange rate provider" msgstr "" -#. Option for the 'Telephony Medium' (Select) field in DocType 'CRM Call Log' -#. Label of the exotel (Check) field in DocType 'CRM Telephony Agent' -#. Option for the 'Default Medium' (Select) field in DocType 'CRM Telephony +#. Option for the 'Telephony Medium' (Select) field in PageType 'CRM Call Log' +#. Label of the exotel (Check) field in PageType 'CRM Telephony Agent' +#. Option for the 'Default Medium' (Select) field in PageType 'CRM Telephony #. Agent' -#: crm/fcrm/doctype/crm_call_log/crm_call_log.json -#: crm/fcrm/doctype/crm_telephony_agent/crm_telephony_agent.json +#: crm/fcrm/pagetype/crm_call_log/crm_call_log.json +#: crm/fcrm/pagetype/crm_telephony_agent/crm_telephony_agent.json #: frontend/src/components/Layouts/AppSidebar.vue:602 #: frontend/src/components/Settings/TelephonySettings.vue:41 #: frontend/src/components/Settings/TelephonySettings.vue:63 @@ -2428,8 +2428,8 @@ msgstr "" msgid "Exotel Exception" msgstr "" -#. Label of the exotel_number (Data) field in DocType 'CRM Telephony Agent' -#: crm/fcrm/doctype/crm_telephony_agent/crm_telephony_agent.json +#. Label of the exotel_number (Data) field in PageType 'CRM Telephony Agent' +#: crm/fcrm/pagetype/crm_telephony_agent/crm_telephony_agent.json msgid "Exotel Number" msgstr "" @@ -2453,26 +2453,26 @@ msgstr "" msgid "Expand" msgstr "Rozszerzać" -#. Label of the expected_closure_date (Date) field in DocType 'CRM Deal' -#: crm/fcrm/doctype/crm_deal/crm_deal.json +#. Label of the expected_closure_date (Date) field in PageType 'CRM Deal' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json msgid "Expected Closure Date" msgstr "" -#: crm/fcrm/doctype/crm_deal/crm_deal.py:173 +#: crm/fcrm/pagetype/crm_deal/crm_deal.py:173 msgid "Expected Closure Date is required." msgstr "" -#. Label of the expected_deal_value (Currency) field in DocType 'CRM Deal' -#: crm/fcrm/doctype/crm_deal/crm_deal.json +#. Label of the expected_deal_value (Currency) field in PageType 'CRM Deal' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json msgid "Expected Deal Value" msgstr "" -#: crm/fcrm/doctype/crm_deal/crm_deal.py:171 +#: crm/fcrm/pagetype/crm_deal/crm_deal.py:171 msgid "Expected Deal Value is required." msgstr "" -#. Option for the 'Status' (Select) field in DocType 'CRM Invitation' -#: crm/fcrm/doctype/crm_invitation/crm_invitation.json +#. Option for the 'Status' (Select) field in PageType 'CRM Invitation' +#: crm/fcrm/pagetype/crm_invitation/crm_invitation.json msgid "Expired" msgstr "" @@ -2489,22 +2489,22 @@ msgstr "" msgid "Export Type" msgstr "Typ eksportu" -#. Name of a DocType -#: crm/fcrm/doctype/fcrm_note/fcrm_note.json +#. Name of a PageType +#: crm/fcrm/pagetype/fcrm_note/fcrm_note.json msgid "FCRM Note" msgstr "" -#. Name of a DocType -#: crm/fcrm/doctype/fcrm_settings/fcrm_settings.json +#. Name of a PageType +#: crm/fcrm/pagetype/fcrm_settings/fcrm_settings.json msgid "FCRM Settings" msgstr "" -#. Option for the 'Status' (Select) field in DocType 'CRM Call Log' -#. Option for the 'SLA Status' (Select) field in DocType 'CRM Deal' -#. Option for the 'SLA Status' (Select) field in DocType 'CRM Lead' -#: crm/fcrm/doctype/crm_call_log/crm_call_log.json -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_lead/crm_lead.json +#. Option for the 'Status' (Select) field in PageType 'CRM Call Log' +#. Option for the 'SLA Status' (Select) field in PageType 'CRM Deal' +#. Option for the 'SLA Status' (Select) field in PageType 'CRM Lead' +#: crm/fcrm/pagetype/crm_call_log/crm_call_log.json +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_lead/crm_lead.json msgid "Failed" msgstr "" @@ -2528,7 +2528,7 @@ msgstr "" msgid "Failed to delete template" msgstr "" -#: crm/fcrm/doctype/fcrm_settings/fcrm_settings.py:205 +#: crm/fcrm/pagetype/fcrm_settings/fcrm_settings.py:205 msgid "Failed to fetch exchange rate from {0} to {1} on {2}. Please check your internet connection or try again later." msgstr "" @@ -2561,8 +2561,8 @@ msgstr "" msgid "Failed to update template" msgstr "" -#. Label of the favicon (Attach) field in DocType 'FCRM Settings' -#: crm/fcrm/doctype/fcrm_settings/fcrm_settings.json +#. Label of the favicon (Attach) field in PageType 'FCRM Settings' +#: crm/fcrm/pagetype/fcrm_settings/fcrm_settings.json #: frontend/src/components/Settings/BrandSettings.vue:87 msgid "Favicon" msgstr "" @@ -2586,23 +2586,23 @@ msgid "File \"{0}\" was skipped because only {1} uploads are allowed" msgstr "" #: frontend/src/components/FilesUploader/FilesUploaderArea.vue:359 -msgid "File \"{0}\" was skipped because only {1} uploads are allowed for DocType \"{2}\"" +msgid "File \"{0}\" was skipped because only {1} uploads are allowed for PageType \"{2}\"" msgstr "" #: frontend/src/components/Filter.vue:6 msgid "Filter" msgstr "Filtr" -#. Label of the filters (Code) field in DocType 'CRM View Settings' -#. Label of the filters_tab (Tab Break) field in DocType 'CRM View Settings' -#: crm/fcrm/doctype/crm_view_settings/crm_view_settings.json +#. Label of the filters (Code) field in PageType 'CRM View Settings' +#. Label of the filters_tab (Tab Break) field in PageType 'CRM View Settings' +#: crm/fcrm/pagetype/crm_view_settings/crm_view_settings.json msgid "Filters" msgstr "" -#. Label of the first_name (Data) field in DocType 'CRM Deal' -#. Label of the first_name (Data) field in DocType 'CRM Lead' -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_lead/crm_lead.json +#. Label of the first_name (Data) field in PageType 'CRM Deal' +#. Label of the first_name (Data) field in PageType 'CRM Lead' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_lead/crm_lead.json #: frontend/src/components/ColumnSettings.vue:103 #: frontend/src/components/Filter.vue:57 frontend/src/components/Filter.vue:88 #: frontend/src/components/SortBy.vue:6 frontend/src/components/SortBy.vue:103 @@ -2614,30 +2614,30 @@ msgstr "Imię" msgid "First Name is mandatory" msgstr "" -#. Label of the first_responded_on (Datetime) field in DocType 'CRM Deal' -#. Label of the first_responded_on (Datetime) field in DocType 'CRM Lead' -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_lead/crm_lead.json +#. Label of the first_responded_on (Datetime) field in PageType 'CRM Deal' +#. Label of the first_responded_on (Datetime) field in PageType 'CRM Lead' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_lead/crm_lead.json msgid "First Responded On" msgstr "Data pierwszej odpowiedzi" -#. Option for the 'SLA Status' (Select) field in DocType 'CRM Deal' -#. Option for the 'SLA Status' (Select) field in DocType 'CRM Lead' -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_lead/crm_lead.json +#. Option for the 'SLA Status' (Select) field in PageType 'CRM Deal' +#. Option for the 'SLA Status' (Select) field in PageType 'CRM Lead' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_lead/crm_lead.json msgid "First Response Due" msgstr "" -#. Label of the first_response_time (Duration) field in DocType 'CRM Service +#. Label of the first_response_time (Duration) field in PageType 'CRM Service #. Level Priority' -#: crm/fcrm/doctype/crm_service_level_priority/crm_service_level_priority.json +#: crm/fcrm/pagetype/crm_service_level_priority/crm_service_level_priority.json msgid "First Response TIme" msgstr "" -#. Label of the first_response_time (Duration) field in DocType 'CRM Deal' -#. Label of the first_response_time (Duration) field in DocType 'CRM Lead' -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_lead/crm_lead.json +#. Label of the first_response_time (Duration) field in PageType 'CRM Deal' +#. Label of the first_response_time (Duration) field in PageType 'CRM Lead' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_lead/crm_lead.json msgid "First Response Time" msgstr "" @@ -2670,66 +2670,66 @@ msgstr "" msgid "Forecasting enabled successfully" msgstr "" -#. Option for the 'Apply To' (Select) field in DocType 'CRM Form Script' -#: crm/fcrm/doctype/crm_form_script/crm_form_script.json +#. Option for the 'Apply To' (Select) field in PageType 'CRM Form Script' +#: crm/fcrm/pagetype/crm_form_script/crm_form_script.json msgid "Form" msgstr "" -#: crm/fcrm/doctype/erpnext_crm_settings/erpnext_crm_settings.js:19 +#: crm/fcrm/pagetype/erpnext_crm_settings/erpnext_crm_settings.js:19 msgid "Form Script updated successfully" msgstr "" #. Name of a Workspace -#: crm/fcrm/workspace/frappe_crm/frappe_crm.json -msgid "Frappe CRM" +#: crm/fcrm/workspace/jingrow_crm/jingrow_crm.json +msgid "Jingrow CRM" msgstr "" #: frontend/src/components/Layouts/AppSidebar.vue:608 -msgid "Frappe CRM mobile" +msgid "Jingrow CRM mobile" msgstr "" -#. Option for the 'Weekly Off' (Select) field in DocType 'CRM Holiday List' -#. Option for the 'Workday' (Select) field in DocType 'CRM Service Day' -#: crm/fcrm/doctype/crm_holiday_list/crm_holiday_list.json -#: crm/fcrm/doctype/crm_service_day/crm_service_day.json +#. Option for the 'Weekly Off' (Select) field in PageType 'CRM Holiday List' +#. Option for the 'Workday' (Select) field in PageType 'CRM Service Day' +#: crm/fcrm/pagetype/crm_holiday_list/crm_holiday_list.json +#: crm/fcrm/pagetype/crm_service_day/crm_service_day.json msgid "Friday" msgstr "Piątek" -#. Label of the from (Data) field in DocType 'CRM Call Log' -#. Label of the from (Data) field in DocType 'CRM Status Change Log' -#: crm/fcrm/doctype/crm_call_log/crm_call_log.json -#: crm/fcrm/doctype/crm_status_change_log/crm_status_change_log.json +#. Label of the from (Data) field in PageType 'CRM Call Log' +#. Label of the from (Data) field in PageType 'CRM Status Change Log' +#: crm/fcrm/pagetype/crm_call_log/crm_call_log.json +#: crm/fcrm/pagetype/crm_status_change_log/crm_status_change_log.json msgid "From" msgstr "" -#. Label of the from_date (Date) field in DocType 'CRM Holiday List' -#. Label of the from_date (Datetime) field in DocType 'CRM Status Change Log' -#: crm/fcrm/doctype/crm_holiday_list/crm_holiday_list.json -#: crm/fcrm/doctype/crm_status_change_log/crm_status_change_log.json +#. Label of the from_date (Date) field in PageType 'CRM Holiday List' +#. Label of the from_date (Datetime) field in PageType 'CRM Status Change Log' +#: crm/fcrm/pagetype/crm_holiday_list/crm_holiday_list.json +#: crm/fcrm/pagetype/crm_status_change_log/crm_status_change_log.json msgid "From Date" msgstr "" -#. Label of the from_type (Data) field in DocType 'CRM Status Change Log' -#: crm/fcrm/doctype/crm_status_change_log/crm_status_change_log.json +#. Label of the from_type (Data) field in PageType 'CRM Status Change Log' +#: crm/fcrm/pagetype/crm_status_change_log/crm_status_change_log.json msgid "From Type" msgstr "" -#. Label of the from_user (Link) field in DocType 'CRM Notification' -#: crm/fcrm/doctype/crm_notification/crm_notification.json +#. Label of the from_user (Link) field in PageType 'CRM Notification' +#: crm/fcrm/pagetype/crm_notification/crm_notification.json msgid "From User" msgstr "Od użytkownika" -#. Option for the 'SLA Status' (Select) field in DocType 'CRM Deal' -#. Option for the 'SLA Status' (Select) field in DocType 'CRM Lead' -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_lead/crm_lead.json +#. Option for the 'SLA Status' (Select) field in PageType 'CRM Deal' +#. Option for the 'SLA Status' (Select) field in PageType 'CRM Lead' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_lead/crm_lead.json msgid "Fulfilled" msgstr "Spełniony" -#. Label of the full_name (Data) field in DocType 'CRM Contacts' -#. Label of the lead_name (Data) field in DocType 'CRM Lead' -#: crm/fcrm/doctype/crm_contacts/crm_contacts.json -#: crm/fcrm/doctype/crm_lead/crm_lead.json +#. Label of the full_name (Data) field in PageType 'CRM Contacts' +#. Label of the lead_name (Data) field in PageType 'CRM Lead' +#: crm/fcrm/pagetype/crm_contacts/crm_contacts.json +#: crm/fcrm/pagetype/crm_lead/crm_lead.json msgid "Full Name" msgstr "Pełne imię i nazwisko" @@ -2742,12 +2742,12 @@ msgstr "" msgid "GMT+5:30" msgstr "" -#. Label of the gender (Link) field in DocType 'CRM Contacts' -#. Label of the gender (Link) field in DocType 'CRM Deal' -#. Label of the gender (Link) field in DocType 'CRM Lead' -#: crm/fcrm/doctype/crm_contacts/crm_contacts.json -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_lead/crm_lead.json +#. Label of the gender (Link) field in PageType 'CRM Contacts' +#. Label of the gender (Link) field in PageType 'CRM Deal' +#. Label of the gender (Link) field in PageType 'CRM Lead' +#: crm/fcrm/pagetype/crm_contacts/crm_contacts.json +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_lead/crm_lead.json msgid "Gender" msgstr "Płeć" @@ -2771,20 +2771,20 @@ msgstr "" msgid "Go to website" msgstr "" -#. Option for the 'Type' (Select) field in DocType 'CRM Fields Layout' -#: crm/fcrm/doctype/crm_fields_layout/crm_fields_layout.json +#. Option for the 'Type' (Select) field in PageType 'CRM Fields Layout' +#: crm/fcrm/pagetype/crm_fields_layout/crm_fields_layout.json msgid "Grid Row" msgstr "" -#. Label of the group_by_tab (Tab Break) field in DocType 'CRM View Settings' -#: crm/fcrm/doctype/crm_view_settings/crm_view_settings.json +#. Label of the group_by_tab (Tab Break) field in PageType 'CRM View Settings' +#: crm/fcrm/pagetype/crm_view_settings/crm_view_settings.json #: frontend/src/components/ViewControls.vue:379 #: frontend/src/components/ViewControls.vue:611 frontend/src/utils/view.js:16 msgid "Group By" msgstr "" -#. Label of the group_by_field (Data) field in DocType 'CRM View Settings' -#: crm/fcrm/doctype/crm_view_settings/crm_view_settings.json +#. Label of the group_by_field (Data) field in PageType 'CRM View Settings' +#: crm/fcrm/pagetype/crm_view_settings/crm_view_settings.json msgid "Group By Field" msgstr "" @@ -2808,28 +2808,28 @@ msgstr "" msgid "Helpdesk" msgstr "" -#. Name of a DocType -#: crm/fcrm/doctype/helpdesk_crm_settings/helpdesk_crm_settings.json +#. Name of a PageType +#: crm/fcrm/pagetype/helpdesk_crm_settings/helpdesk_crm_settings.json msgid "Helpdesk CRM Settings" msgstr "" -#. Label of the helpdesk_site_apis_section (Section Break) field in DocType +#. Label of the helpdesk_site_apis_section (Section Break) field in PageType #. 'Helpdesk CRM Settings' -#: crm/fcrm/doctype/helpdesk_crm_settings/helpdesk_crm_settings.json +#: crm/fcrm/pagetype/helpdesk_crm_settings/helpdesk_crm_settings.json msgid "Helpdesk Site API's" msgstr "" -#. Label of the helpdesk_site_url (Data) field in DocType 'Helpdesk CRM +#. Label of the helpdesk_site_url (Data) field in PageType 'Helpdesk CRM #. Settings' -#: crm/fcrm/doctype/helpdesk_crm_settings/helpdesk_crm_settings.json +#: crm/fcrm/pagetype/helpdesk_crm_settings/helpdesk_crm_settings.json msgid "Helpdesk Site URL" msgstr "" -#: crm/fcrm/doctype/helpdesk_crm_settings/helpdesk_crm_settings.py:18 +#: crm/fcrm/pagetype/helpdesk_crm_settings/helpdesk_crm_settings.py:18 msgid "Helpdesk is not installed in the current site" msgstr "" -#: crm/fcrm/doctype/helpdesk_crm_settings/helpdesk_crm_settings.py:40 +#: crm/fcrm/pagetype/helpdesk_crm_settings/helpdesk_crm_settings.py:40 msgid "Helpdesk is not integrated with the CRM" msgstr "" @@ -2845,8 +2845,8 @@ msgstr "" msgid "Hi John, \\n\\nCan you please provide more details on this..." msgstr "" -#. Label of the hidden (Check) field in DocType 'CRM Dropdown Item' -#: crm/fcrm/doctype/crm_dropdown_item/crm_dropdown_item.json +#. Label of the hidden (Check) field in PageType 'CRM Dropdown Item' +#: crm/fcrm/pagetype/crm_dropdown_item/crm_dropdown_item.json msgid "Hidden" msgstr "Ukryty" @@ -2877,26 +2877,26 @@ msgstr "" msgid "Hide preview" msgstr "" -#. Option for the 'Priority' (Select) field in DocType 'CRM Task' -#: crm/fcrm/doctype/crm_task/crm_task.json +#. Option for the 'Priority' (Select) field in PageType 'CRM Task' +#: crm/fcrm/pagetype/crm_task/crm_task.json msgid "High" msgstr "" -#. Label of the holiday_list (Link) field in DocType 'CRM Service Level +#. Label of the holiday_list (Link) field in PageType 'CRM Service Level #. Agreement' -#: crm/fcrm/doctype/crm_service_level_agreement/crm_service_level_agreement.json +#: crm/fcrm/pagetype/crm_service_level_agreement/crm_service_level_agreement.json msgid "Holiday List" msgstr "" -#. Label of the holiday_list_name (Data) field in DocType 'CRM Holiday List' -#: crm/fcrm/doctype/crm_holiday_list/crm_holiday_list.json +#. Label of the holiday_list_name (Data) field in PageType 'CRM Holiday List' +#: crm/fcrm/pagetype/crm_holiday_list/crm_holiday_list.json msgid "Holiday List Name" msgstr "Nazwa dla Listy Świąt" -#. Label of the holidays_section (Section Break) field in DocType 'CRM Holiday +#. Label of the holidays_section (Section Break) field in PageType 'CRM Holiday #. List' -#. Label of the holidays (Table) field in DocType 'CRM Holiday List' -#: crm/fcrm/doctype/crm_holiday_list/crm_holiday_list.json +#. Label of the holidays (Table) field in PageType 'CRM Holiday List' +#: crm/fcrm/pagetype/crm_holiday_list/crm_holiday_list.json msgid "Holidays" msgstr "Święta" @@ -2914,15 +2914,15 @@ msgstr "" msgid "I understand, add conditions" msgstr "" -#. Label of the id (Data) field in DocType 'CRM Call Log' -#: crm/fcrm/doctype/crm_call_log/crm_call_log.json +#. Label of the id (Data) field in PageType 'CRM Call Log' +#: crm/fcrm/pagetype/crm_call_log/crm_call_log.json msgid "ID" msgstr "" -#. Label of the icon (Code) field in DocType 'CRM Dropdown Item' -#. Label of the icon (Data) field in DocType 'CRM View Settings' -#: crm/fcrm/doctype/crm_dropdown_item/crm_dropdown_item.json -#: crm/fcrm/doctype/crm_view_settings/crm_view_settings.json +#. Label of the icon (Code) field in PageType 'CRM Dropdown Item' +#. Label of the icon (Data) field in PageType 'CRM View Settings' +#: crm/fcrm/pagetype/crm_dropdown_item/crm_dropdown_item.json +#: crm/fcrm/pagetype/crm_view_settings/crm_view_settings.json msgid "Icon" msgstr "Ikona" @@ -2942,10 +2942,10 @@ msgstr "" msgid "If enabled, records can be created from the incoming emails on this account." msgstr "" -#. Label of the image (Attach Image) field in DocType 'CRM Lead' -#. Label of the image (Attach Image) field in DocType 'CRM Product' -#: crm/fcrm/doctype/crm_lead/crm_lead.json -#: crm/fcrm/doctype/crm_product/crm_product.json +#. Label of the image (Attach Image) field in PageType 'CRM Lead' +#. Label of the image (Attach Image) field in PageType 'CRM Product' +#: crm/fcrm/pagetype/crm_lead/crm_lead.json +#: crm/fcrm/pagetype/crm_product/crm_product.json msgid "Image" msgstr "Obraz" @@ -2957,10 +2957,10 @@ msgstr "Obraz" msgid "In" msgstr "jest w" -#. Option for the 'Status' (Select) field in DocType 'CRM Call Log' -#. Option for the 'Status' (Select) field in DocType 'CRM Task' -#: crm/fcrm/doctype/crm_call_log/crm_call_log.json -#: crm/fcrm/doctype/crm_task/crm_task.json +#. Option for the 'Status' (Select) field in PageType 'CRM Call Log' +#. Option for the 'Status' (Select) field in PageType 'CRM Task' +#: crm/fcrm/pagetype/crm_call_log/crm_call_log.json +#: crm/fcrm/pagetype/crm_task/crm_task.json msgid "In Progress" msgstr "" @@ -2976,8 +2976,8 @@ msgstr "" msgid "Inbox" msgstr "W pudełku" -#. Option for the 'Type' (Select) field in DocType 'CRM Call Log' -#: crm/fcrm/doctype/crm_call_log/crm_call_log.json +#. Option for the 'Type' (Select) field in PageType 'CRM Call Log' +#: crm/fcrm/pagetype/crm_call_log/crm_call_log.json msgid "Incoming" msgstr "" @@ -2985,24 +2985,24 @@ msgstr "" msgid "Incoming call..." msgstr "" -#. Label of a shortcut in the Frappe CRM Workspace -#: crm/fcrm/workspace/frappe_crm/frappe_crm.json +#. Label of a shortcut in the Jingrow CRM Workspace +#: crm/fcrm/workspace/jingrow_crm/jingrow_crm.json msgid "Industries" msgstr "" -#. Label of the industry (Link) field in DocType 'CRM Deal' -#. Label of the industry (Data) field in DocType 'CRM Industry' -#. Label of the industry (Link) field in DocType 'CRM Lead' -#. Label of the industry (Link) field in DocType 'CRM Organization' -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_industry/crm_industry.json -#: crm/fcrm/doctype/crm_lead/crm_lead.json -#: crm/fcrm/doctype/crm_organization/crm_organization.json +#. Label of the industry (Link) field in PageType 'CRM Deal' +#. Label of the industry (Data) field in PageType 'CRM Industry' +#. Label of the industry (Link) field in PageType 'CRM Lead' +#. Label of the industry (Link) field in PageType 'CRM Organization' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_industry/crm_industry.json +#: crm/fcrm/pagetype/crm_lead/crm_lead.json +#: crm/fcrm/pagetype/crm_organization/crm_organization.json msgid "Industry" msgstr "Przedsiębiorstwo" -#. Option for the 'Status' (Select) field in DocType 'CRM Call Log' -#: crm/fcrm/doctype/crm_call_log/crm_call_log.json +#. Option for the 'Status' (Select) field in PageType 'CRM Call Log' +#: crm/fcrm/pagetype/crm_call_log/crm_call_log.json msgid "Initiated" msgstr "" @@ -3037,7 +3037,7 @@ msgstr "Integracje" msgid "Introduction" msgstr "Wprowadzenie" -#: crm/fcrm/doctype/crm_twilio_settings/crm_twilio_settings.py:33 +#: crm/fcrm/pagetype/crm_twilio_settings/crm_twilio_settings.py:33 msgid "Invalid Account SID or Auth Token." msgstr "" @@ -3054,7 +3054,7 @@ msgstr "" msgid "Invalid chart name" msgstr "" -#: crm/fcrm/doctype/crm_exotel_settings/crm_exotel_settings.py:25 +#: crm/fcrm/pagetype/crm_exotel_settings/crm_exotel_settings.py:25 msgid "Invalid credentials" msgstr "" @@ -3103,8 +3103,8 @@ msgstr "" msgid "Invite your team" msgstr "" -#. Label of the invited_by (Link) field in DocType 'CRM Invitation' -#: crm/fcrm/doctype/crm_invitation/crm_invitation.json +#. Label of the invited_by (Link) field in PageType 'CRM Invitation' +#: crm/fcrm/pagetype/crm_invitation/crm_invitation.json msgid "Invited By" msgstr "" @@ -3118,59 +3118,59 @@ msgstr "" msgid "Is" msgstr "Czy" -#. Label of the is_default (Check) field in DocType 'CRM View Settings' -#: crm/fcrm/doctype/crm_view_settings/crm_view_settings.json +#. Label of the is_default (Check) field in PageType 'CRM View Settings' +#: crm/fcrm/pagetype/crm_view_settings/crm_view_settings.json msgid "Is Default" msgstr "Jest domyślne" -#. Label of the is_erpnext_in_different_site (Check) field in DocType 'ERPNext +#. Label of the is_erpnext_in_different_site (Check) field in PageType 'ERPNext #. CRM Settings' -#: crm/fcrm/doctype/erpnext_crm_settings/erpnext_crm_settings.json +#: crm/fcrm/pagetype/erpnext_crm_settings/erpnext_crm_settings.json msgid "Is ERPNext installed on a different site?" msgstr "" -#. Label of the is_group (Check) field in DocType 'CRM Territory' -#: crm/fcrm/doctype/crm_territory/crm_territory.json +#. Label of the is_group (Check) field in PageType 'CRM Territory' +#: crm/fcrm/pagetype/crm_territory/crm_territory.json msgid "Is Group" msgstr "" -#. Label of the is_helpdesk_in_different_site (Check) field in DocType +#. Label of the is_helpdesk_in_different_site (Check) field in PageType #. 'Helpdesk CRM Settings' -#: crm/fcrm/doctype/helpdesk_crm_settings/helpdesk_crm_settings.json +#: crm/fcrm/pagetype/helpdesk_crm_settings/helpdesk_crm_settings.json msgid "Is Helpdesk installed on a different site?" msgstr "" -#. Label of the is_primary (Check) field in DocType 'CRM Contacts' -#. Label of the is_primary (Check) field in DocType 'CRM Telephony Phone' -#: crm/fcrm/doctype/crm_contacts/crm_contacts.json -#: crm/fcrm/doctype/crm_telephony_phone/crm_telephony_phone.json +#. Label of the is_primary (Check) field in PageType 'CRM Contacts' +#. Label of the is_primary (Check) field in PageType 'CRM Telephony Phone' +#: crm/fcrm/pagetype/crm_contacts/crm_contacts.json +#: crm/fcrm/pagetype/crm_telephony_phone/crm_telephony_phone.json msgid "Is Primary" msgstr "Jest podstawowa" -#. Label of the is_standard (Check) field in DocType 'CRM Dropdown Item' -#. Label of the is_standard (Check) field in DocType 'CRM Form Script' -#. Label of the is_standard (Check) field in DocType 'CRM View Settings' -#: crm/fcrm/doctype/crm_dropdown_item/crm_dropdown_item.json -#: crm/fcrm/doctype/crm_form_script/crm_form_script.json -#: crm/fcrm/doctype/crm_view_settings/crm_view_settings.json +#. Label of the is_standard (Check) field in PageType 'CRM Dropdown Item' +#. Label of the is_standard (Check) field in PageType 'CRM Form Script' +#. Label of the is_standard (Check) field in PageType 'CRM View Settings' +#: crm/fcrm/pagetype/crm_dropdown_item/crm_dropdown_item.json +#: crm/fcrm/pagetype/crm_form_script/crm_form_script.json +#: crm/fcrm/pagetype/crm_view_settings/crm_view_settings.json msgid "Is Standard" msgstr "Jest standardowe" -#. Description of the 'Enable Forecasting' (Check) field in DocType 'FCRM +#. Description of the 'Enable Forecasting' (Check) field in PageType 'FCRM #. Settings' -#: crm/fcrm/doctype/fcrm_settings/fcrm_settings.json +#: crm/fcrm/pagetype/fcrm_settings/fcrm_settings.json msgid "It will make deal's \"Expected Closure Date\" & \"Expected Deal Value\" mandatory to get accurate forecasting insights" msgstr "" -#. Label of the json (JSON) field in DocType 'CRM Global Settings' -#: crm/fcrm/doctype/crm_global_settings/crm_global_settings.json +#. Label of the json (JSON) field in PageType 'CRM Global Settings' +#: crm/fcrm/pagetype/crm_global_settings/crm_global_settings.json msgid "JSON" msgstr "" -#. Label of the job_title (Data) field in DocType 'CRM Deal' -#. Label of the job_title (Data) field in DocType 'CRM Lead' -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_lead/crm_lead.json +#. Label of the job_title (Data) field in PageType 'CRM Deal' +#. Label of the job_title (Data) field in PageType 'CRM Lead' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_lead/crm_lead.json msgid "Job Title" msgstr "Tytuł zadania" @@ -3182,20 +3182,20 @@ msgstr "Tytuł zadania" msgid "John Doe" msgstr "" -#. Label of the kanban_tab (Tab Break) field in DocType 'CRM View Settings' -#: crm/fcrm/doctype/crm_view_settings/crm_view_settings.json +#. Label of the kanban_tab (Tab Break) field in PageType 'CRM View Settings' +#: crm/fcrm/pagetype/crm_view_settings/crm_view_settings.json #: frontend/src/components/ViewControls.vue:384 #: frontend/src/components/ViewControls.vue:600 frontend/src/utils/view.js:20 msgid "Kanban" msgstr "" -#. Label of the kanban_columns (Code) field in DocType 'CRM View Settings' -#: crm/fcrm/doctype/crm_view_settings/crm_view_settings.json +#. Label of the kanban_columns (Code) field in PageType 'CRM View Settings' +#: crm/fcrm/pagetype/crm_view_settings/crm_view_settings.json msgid "Kanban Columns" msgstr "" -#. Label of the kanban_fields (Code) field in DocType 'CRM View Settings' -#: crm/fcrm/doctype/crm_view_settings/crm_view_settings.json +#. Label of the kanban_fields (Code) field in PageType 'CRM View Settings' +#: crm/fcrm/pagetype/crm_view_settings/crm_view_settings.json msgid "Kanban Fields" msgstr "" @@ -3204,15 +3204,15 @@ msgstr "" msgid "Kanban Settings" msgstr "" -#. Label of the key (Data) field in DocType 'CRM Invitation' -#: crm/fcrm/doctype/crm_invitation/crm_invitation.json +#. Label of the key (Data) field in PageType 'CRM Invitation' +#: crm/fcrm/pagetype/crm_invitation/crm_invitation.json msgid "Key" msgstr "Klucz" -#. Label of the label (Data) field in DocType 'CRM Dropdown Item' -#. Label of the label (Data) field in DocType 'CRM View Settings' -#: crm/fcrm/doctype/crm_dropdown_item/crm_dropdown_item.json -#: crm/fcrm/doctype/crm_view_settings/crm_view_settings.json +#. Label of the label (Data) field in PageType 'CRM Dropdown Item' +#. Label of the label (Data) field in PageType 'CRM View Settings' +#: crm/fcrm/pagetype/crm_dropdown_item/crm_dropdown_item.json +#: crm/fcrm/pagetype/crm_view_settings/crm_view_settings.json #: frontend/src/components/ColumnSettings.vue:100 msgid "Label" msgstr "Etykieta" @@ -3229,10 +3229,10 @@ msgstr "" msgid "Last Month" msgstr "W zeszłym miesiącu" -#. Label of the last_name (Data) field in DocType 'CRM Deal' -#. Label of the last_name (Data) field in DocType 'CRM Lead' -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_lead/crm_lead.json +#. Label of the last_name (Data) field in PageType 'CRM Deal' +#. Label of the last_name (Data) field in PageType 'CRM Lead' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_lead/crm_lead.json msgid "Last Name" msgstr "Nazwisko" @@ -3240,9 +3240,9 @@ msgstr "Nazwisko" msgid "Last Quarter" msgstr "Ostatni kwartał" -#. Label of the last_status_change_log (Link) field in DocType 'CRM Status +#. Label of the last_status_change_log (Link) field in PageType 'CRM Status #. Change Log' -#: crm/fcrm/doctype/crm_status_change_log/crm_status_change_log.json +#: crm/fcrm/pagetype/crm_status_change_log/crm_status_change_log.json msgid "Last Status Change Log" msgstr "" @@ -3270,15 +3270,15 @@ msgstr "" msgid "Last user assigned by this rule" msgstr "" -#. Label of the layout (Code) field in DocType 'CRM Dashboard' -#. Label of the layout (Code) field in DocType 'CRM Fields Layout' -#: crm/fcrm/doctype/crm_dashboard/crm_dashboard.json -#: crm/fcrm/doctype/crm_fields_layout/crm_fields_layout.json +#. Label of the layout (Code) field in PageType 'CRM Dashboard' +#. Label of the layout (Code) field in PageType 'CRM Fields Layout' +#: crm/fcrm/pagetype/crm_dashboard/crm_dashboard.json +#: crm/fcrm/pagetype/crm_fields_layout/crm_fields_layout.json msgid "Layout" msgstr "" -#. Label of the lead (Link) field in DocType 'CRM Deal' -#: crm/fcrm/doctype/crm_deal/crm_deal.json +#. Label of the lead (Link) field in PageType 'CRM Deal' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json #: frontend/src/components/Calendar/CalendarEventPanel.vue:263 #: frontend/src/components/Calendar/CalendarEventPanel.vue:288 #: frontend/src/components/Layouts/AppSidebar.vue:550 @@ -3291,32 +3291,32 @@ msgstr "" msgid "Lead" msgstr "" -#. Label of the lead_details_tab (Tab Break) field in DocType 'CRM Deal' -#: crm/fcrm/doctype/crm_deal/crm_deal.json +#. Label of the lead_details_tab (Tab Break) field in PageType 'CRM Deal' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json msgid "Lead Details" msgstr "" -#. Label of the lead_name (Data) field in DocType 'CRM Deal' -#: crm/fcrm/doctype/crm_deal/crm_deal.json +#. Label of the lead_name (Data) field in PageType 'CRM Deal' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json msgid "Lead Name" msgstr "" -#. Label of the lead_owner (Link) field in DocType 'CRM Lead' -#: crm/fcrm/doctype/crm_lead/crm_lead.json +#. Label of the lead_owner (Link) field in PageType 'CRM Lead' +#: crm/fcrm/pagetype/crm_lead/crm_lead.json msgid "Lead Owner" msgstr "" -#: crm/fcrm/doctype/crm_lead/crm_lead.py:73 +#: crm/fcrm/pagetype/crm_lead/crm_lead.py:73 msgid "Lead Owner cannot be same as the Lead Email Address" msgstr "" -#. Label of a shortcut in the Frappe CRM Workspace -#: crm/fcrm/workspace/frappe_crm/frappe_crm.json +#. Label of a shortcut in the Jingrow CRM Workspace +#: crm/fcrm/workspace/jingrow_crm/jingrow_crm.json msgid "Lead Sources" msgstr "" -#. Label of a shortcut in the Frappe CRM Workspace -#: crm/fcrm/workspace/frappe_crm/frappe_crm.json +#. Label of a shortcut in the Jingrow CRM Workspace +#: crm/fcrm/workspace/jingrow_crm/jingrow_crm.json msgid "Lead Statuses" msgstr "" @@ -3328,8 +3328,8 @@ msgstr "" msgid "Lead to deal conversion pipeline" msgstr "" -#. Label of a shortcut in the Frappe CRM Workspace -#: crm/fcrm/workspace/frappe_crm/frappe_crm.json +#. Label of a shortcut in the Jingrow CRM Workspace +#: crm/fcrm/workspace/jingrow_crm/jingrow_crm.json #: frontend/src/pages/InvalidPage.vue:9 frontend/src/pages/Lead.vue:340 #: frontend/src/pages/MobileLead.vue:291 msgid "Leads" @@ -3345,8 +3345,8 @@ msgstr "" msgid "Learn about conditions" msgstr "" -#. Label of the lft (Int) field in DocType 'CRM Territory' -#: crm/fcrm/doctype/crm_territory/crm_territory.json +#. Label of the lft (Int) field in PageType 'CRM Territory' +#: crm/fcrm/pagetype/crm_territory/crm_territory.json msgid "Left" msgstr "" @@ -3367,15 +3367,15 @@ msgstr "Lubić" msgid "Link" msgstr "Połączyć" -#. Label of the links (Table) field in DocType 'CRM Call Log' -#: crm/fcrm/doctype/crm_call_log/crm_call_log.json +#. Label of the links (Table) field in PageType 'CRM Call Log' +#: crm/fcrm/pagetype/crm_call_log/crm_call_log.json msgid "Links" msgstr "Linki" -#. Option for the 'Apply To' (Select) field in DocType 'CRM Form Script' -#. Label of the list_tab (Tab Break) field in DocType 'CRM View Settings' -#: crm/fcrm/doctype/crm_form_script/crm_form_script.json -#: crm/fcrm/doctype/crm_view_settings/crm_view_settings.json +#. Option for the 'Apply To' (Select) field in PageType 'CRM Form Script' +#. Label of the list_tab (Tab Break) field in PageType 'CRM View Settings' +#: crm/fcrm/pagetype/crm_form_script/crm_form_script.json +#: crm/fcrm/pagetype/crm_view_settings/crm_view_settings.json #: frontend/src/components/ViewControls.vue:374 #: frontend/src/components/ViewControls.vue:589 frontend/src/utils/view.js:12 msgid "List" @@ -3385,9 +3385,9 @@ msgstr "Lista" msgid "Listen" msgstr "" -#. Label of the load_default_columns (Check) field in DocType 'CRM View +#. Label of the load_default_columns (Check) field in PageType 'CRM View #. Settings' -#: crm/fcrm/doctype/crm_view_settings/crm_view_settings.json +#: crm/fcrm/pagetype/crm_view_settings/crm_view_settings.json msgid "Load Default Columns" msgstr "" @@ -3403,10 +3403,10 @@ msgstr "Załaduj więcej" msgid "Loading..." msgstr "" -#. Label of the log_tab (Tab Break) field in DocType 'CRM Deal' -#. Label of the log_tab (Tab Break) field in DocType 'CRM Lead' -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_lead/crm_lead.json +#. Label of the log_tab (Tab Break) field in PageType 'CRM Deal' +#. Label of the log_tab (Tab Break) field in PageType 'CRM Lead' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_lead/crm_lead.json msgid "Log" msgstr "" @@ -3417,28 +3417,28 @@ msgid "Log a Call" msgstr "" #: frontend/src/composables/frappecloud.js:23 -msgid "Login to Frappe Cloud?" +msgid "Login to Jingrow Cloud?" msgstr "" -#. Label of the brand_logo (Attach) field in DocType 'FCRM Settings' -#: crm/fcrm/doctype/fcrm_settings/fcrm_settings.json +#. Label of the brand_logo (Attach) field in PageType 'FCRM Settings' +#: crm/fcrm/pagetype/fcrm_settings/fcrm_settings.json msgid "Logo" msgstr "" -#. Option for the 'Type' (Select) field in DocType 'CRM Deal Status' -#: crm/fcrm/doctype/crm_deal_status/crm_deal_status.json +#. Option for the 'Type' (Select) field in PageType 'CRM Deal Status' +#: crm/fcrm/pagetype/crm_deal_status/crm_deal_status.json msgid "Lost" msgstr "" -#. Label of the lost_notes (Text) field in DocType 'CRM Deal' -#: crm/fcrm/doctype/crm_deal/crm_deal.json +#. Label of the lost_notes (Text) field in PageType 'CRM Deal' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json msgid "Lost Notes" msgstr "" -#. Label of the lost_reason (Link) field in DocType 'CRM Deal' -#. Label of the lost_reason (Data) field in DocType 'CRM Lost Reason' -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_lost_reason/crm_lost_reason.json +#. Label of the lost_reason (Link) field in PageType 'CRM Deal' +#. Label of the lost_reason (Data) field in PageType 'CRM Lost Reason' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_lost_reason/crm_lost_reason.json msgid "Lost Reason" msgstr "" @@ -3464,8 +3464,8 @@ msgstr "" msgid "Lost reason is required" msgstr "" -#. Option for the 'Priority' (Select) field in DocType 'CRM Task' -#: crm/fcrm/doctype/crm_task/crm_task.json +#. Option for the 'Priority' (Select) field in PageType 'CRM Task' +#: crm/fcrm/pagetype/crm_task/crm_task.json msgid "Low" msgstr "" @@ -3542,8 +3542,8 @@ msgstr "Menager" msgid "Mandatory field error: {0}" msgstr "" -#. Option for the 'Telephony Medium' (Select) field in DocType 'CRM Call Log' -#: crm/fcrm/doctype/crm_call_log/crm_call_log.json +#. Option for the 'Telephony Medium' (Select) field in PageType 'CRM Call Log' +#: crm/fcrm/pagetype/crm_call_log/crm_call_log.json msgid "Manual" msgstr "" @@ -3562,25 +3562,25 @@ msgstr "" msgid "May 1, 2025" msgstr "" -#. Label of the medium (Data) field in DocType 'CRM Call Log' -#. Option for the 'Priority' (Select) field in DocType 'CRM Task' -#: crm/fcrm/doctype/crm_call_log/crm_call_log.json -#: crm/fcrm/doctype/crm_task/crm_task.json +#. Label of the medium (Data) field in PageType 'CRM Call Log' +#. Option for the 'Priority' (Select) field in PageType 'CRM Task' +#: crm/fcrm/pagetype/crm_call_log/crm_call_log.json +#: crm/fcrm/pagetype/crm_task/crm_task.json msgid "Medium" msgstr "" -#. Option for the 'Type' (Select) field in DocType 'CRM Notification' -#: crm/fcrm/doctype/crm_notification/crm_notification.json +#. Option for the 'Type' (Select) field in PageType 'CRM Notification' +#: crm/fcrm/pagetype/crm_notification/crm_notification.json msgid "Mention" msgstr "Wzmianka" -#. Label of the message (HTML Editor) field in DocType 'CRM Notification' -#: crm/fcrm/doctype/crm_notification/crm_notification.json +#. Label of the message (HTML Editor) field in PageType 'CRM Notification' +#: crm/fcrm/pagetype/crm_notification/crm_notification.json msgid "Message" msgstr "Wiadomość" -#. Label of the middle_name (Data) field in DocType 'CRM Lead' -#: crm/fcrm/doctype/crm_lead/crm_lead.json +#. Label of the middle_name (Data) field in PageType 'CRM Lead' +#: crm/fcrm/pagetype/crm_lead/crm_lead.json msgid "Middle Name" msgstr "Drugie imię" @@ -3588,10 +3588,10 @@ msgstr "Drugie imię" msgid "Minimize" msgstr "" -#. Label of the mobile_no (Data) field in DocType 'CRM Contacts' -#. Label of the mobile_no (Data) field in DocType 'CRM Lead' -#: crm/fcrm/doctype/crm_contacts/crm_contacts.json -#: crm/fcrm/doctype/crm_lead/crm_lead.json +#. Label of the mobile_no (Data) field in PageType 'CRM Contacts' +#. Label of the mobile_no (Data) field in PageType 'CRM Lead' +#: crm/fcrm/pagetype/crm_contacts/crm_contacts.json +#: crm/fcrm/pagetype/crm_lead/crm_lead.json msgid "Mobile No" msgstr "Numer komórkowy" @@ -3600,8 +3600,8 @@ msgstr "Numer komórkowy" msgid "Mobile No should be a number" msgstr "" -#. Label of the mobile_no (Data) field in DocType 'CRM Telephony Agent' -#: crm/fcrm/doctype/crm_telephony_agent/crm_telephony_agent.json +#. Label of the mobile_no (Data) field in PageType 'CRM Telephony Agent' +#: crm/fcrm/pagetype/crm_telephony_agent/crm_telephony_agent.json msgid "Mobile No." msgstr "Numer komórkowy." @@ -3623,10 +3623,10 @@ msgstr "" msgid "Mobile no" msgstr "" -#. Option for the 'Weekly Off' (Select) field in DocType 'CRM Holiday List' -#. Option for the 'Workday' (Select) field in DocType 'CRM Service Day' -#: crm/fcrm/doctype/crm_holiday_list/crm_holiday_list.json -#: crm/fcrm/doctype/crm_service_day/crm_service_day.json +#. Option for the 'Weekly Off' (Select) field in PageType 'CRM Holiday List' +#. Option for the 'Workday' (Select) field in PageType 'CRM Service Day' +#: crm/fcrm/pagetype/crm_holiday_list/crm_holiday_list.json +#: crm/fcrm/pagetype/crm_service_day/crm_service_day.json msgid "Monday" msgstr "Poniedziałek" @@ -3658,12 +3658,12 @@ msgstr "" msgid "My Open Deals" msgstr "" -#. Label of the title (Data) field in DocType 'CRM Dashboard' -#. Label of the name1 (Data) field in DocType 'CRM Dropdown Item' -#. Label of the brand_name (Data) field in DocType 'FCRM Settings' -#: crm/fcrm/doctype/crm_dashboard/crm_dashboard.json -#: crm/fcrm/doctype/crm_dropdown_item/crm_dropdown_item.json -#: crm/fcrm/doctype/fcrm_settings/fcrm_settings.json +#. Label of the title (Data) field in PageType 'CRM Dashboard' +#. Label of the name1 (Data) field in PageType 'CRM Dropdown Item' +#. Label of the brand_name (Data) field in PageType 'FCRM Settings' +#: crm/fcrm/pagetype/crm_dashboard/crm_dashboard.json +#: crm/fcrm/pagetype/crm_dropdown_item/crm_dropdown_item.json +#: crm/fcrm/pagetype/fcrm_settings/fcrm_settings.json #: frontend/src/components/Settings/AssignmentRules/AssignmentRuleView.vue:51 #: frontend/src/components/Settings/AssignmentRules/AssignmentRuleView.vue:52 #: frontend/src/components/Settings/EmailTemplate/EditEmailTemplate.vue:39 @@ -3680,10 +3680,10 @@ msgstr "" msgid "Name is required" msgstr "" -#. Label of the naming_series (Select) field in DocType 'CRM Deal' -#. Label of the naming_series (Select) field in DocType 'CRM Product' -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_product/crm_product.json +#. Label of the naming_series (Select) field in PageType 'CRM Deal' +#. Label of the naming_series (Select) field in PageType 'CRM Product' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_product/crm_product.json msgid "Naming Series" msgstr "Seria nazw" @@ -3691,15 +3691,15 @@ msgstr "Seria nazw" msgid "Nested conditions" msgstr "" -#. Label of the net_amount (Currency) field in DocType 'CRM Products' -#: crm/fcrm/doctype/crm_products/crm_products.json +#. Label of the net_amount (Currency) field in PageType 'CRM Products' +#: crm/fcrm/pagetype/crm_products/crm_products.json msgid "Net Amount" msgstr "" -#. Label of the net_total (Currency) field in DocType 'CRM Deal' -#. Label of the net_total (Currency) field in DocType 'CRM Lead' -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_lead/crm_lead.json +#. Label of the net_total (Currency) field in PageType 'CRM Deal' +#. Label of the net_total (Currency) field in PageType 'CRM Lead' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_lead/crm_lead.json msgid "Net Total" msgstr "" @@ -3814,8 +3814,8 @@ msgstr "" msgid "Next Quarter" msgstr "" -#. Label of the next_step (Data) field in DocType 'CRM Deal' -#: crm/fcrm/doctype/crm_deal/crm_deal.json +#. Label of the next_step (Data) field in PageType 'CRM Deal' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json msgid "Next Step" msgstr "" @@ -3831,8 +3831,8 @@ msgstr "" msgid "No" msgstr "" -#. Option for the 'Status' (Select) field in DocType 'CRM Call Log' -#: crm/fcrm/doctype/crm_call_log/crm_call_log.json +#. Option for the 'Status' (Select) field in PageType 'CRM Call Log' +#: crm/fcrm/pagetype/crm_call_log/crm_call_log.json msgid "No Answer" msgstr "" @@ -3930,12 +3930,12 @@ msgstr "" msgid "No {0} Found" msgstr "" -#. Label of the no_of_employees (Select) field in DocType 'CRM Deal' -#. Label of the no_of_employees (Select) field in DocType 'CRM Lead' -#. Label of the no_of_employees (Select) field in DocType 'CRM Organization' -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_lead/crm_lead.json -#: crm/fcrm/doctype/crm_organization/crm_organization.json +#. Label of the no_of_employees (Select) field in PageType 'CRM Deal' +#. Label of the no_of_employees (Select) field in PageType 'CRM Lead' +#. Label of the no_of_employees (Select) field in PageType 'CRM Organization' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_lead/crm_lead.json +#: crm/fcrm/pagetype/crm_organization/crm_organization.json msgid "No. of Employees" msgstr "" @@ -3981,24 +3981,24 @@ msgstr "nie jest podobne" msgid "Not Saved" msgstr "Niezapisany" -#: crm/fcrm/doctype/crm_deal/crm_deal.py:272 +#: crm/fcrm/pagetype/crm_deal/crm_deal.py:272 msgid "Not allowed to add contact to Deal" msgstr "" -#: crm/fcrm/doctype/crm_lead/crm_lead.py:408 +#: crm/fcrm/pagetype/crm_lead/crm_lead.py:408 msgid "Not allowed to convert Lead to Deal" msgstr "" -#: crm/fcrm/doctype/crm_deal/crm_deal.py:283 +#: crm/fcrm/pagetype/crm_deal/crm_deal.py:283 msgid "Not allowed to remove contact from Deal" msgstr "" -#: crm/fcrm/doctype/crm_deal/crm_deal.py:294 +#: crm/fcrm/pagetype/crm_deal/crm_deal.py:294 msgid "Not allowed to set primary contact for Deal" msgstr "" -#. Label of the note (Link) field in DocType 'CRM Call Log' -#: crm/fcrm/doctype/crm_call_log/crm_call_log.json +#. Label of the note (Link) field in PageType 'CRM Call Log' +#: crm/fcrm/pagetype/crm_call_log/crm_call_log.json #: frontend/src/components/Layouts/AppSidebar.vue:554 msgid "Note" msgstr "" @@ -4017,21 +4017,21 @@ msgstr "" msgid "Notification" msgstr "" -#. Label of the notification_text (Text) field in DocType 'CRM Notification' -#: crm/fcrm/doctype/crm_notification/crm_notification.json +#. Label of the notification_text (Text) field in PageType 'CRM Notification' +#: crm/fcrm/pagetype/crm_notification/crm_notification.json msgid "Notification Text" msgstr "" -#. Label of the notification_type_doc (Dynamic Link) field in DocType 'CRM +#. Label of the notification_type_pg (Dynamic Link) field in PageType 'CRM #. Notification' -#: crm/fcrm/doctype/crm_notification/crm_notification.json -msgid "Notification Type Doc" +#: crm/fcrm/pagetype/crm_notification/crm_notification.json +msgid "Notification Type Pg" msgstr "" -#. Label of the notification_type_doctype (Link) field in DocType 'CRM +#. Label of the notification_type_pagetype (Link) field in PageType 'CRM #. Notification' -#: crm/fcrm/doctype/crm_notification/crm_notification.json -msgid "Notification Type Doctype" +#: crm/fcrm/pagetype/crm_notification/crm_notification.json +msgid "Notification Type Pagetype" msgstr "" #: frontend/src/components/Layouts/AppSidebar.vue:13 @@ -4041,8 +4041,8 @@ msgstr "" msgid "Notifications" msgstr "Powiadomienia" -#. Label of the number (Data) field in DocType 'CRM Telephony Phone' -#: crm/fcrm/doctype/crm_telephony_phone/crm_telephony_phone.json +#. Label of the number (Data) field in PageType 'CRM Telephony Phone' +#: crm/fcrm/pagetype/crm_telephony_phone/crm_telephony_phone.json msgid "Number" msgstr "Numer" @@ -4064,18 +4064,18 @@ msgstr "" msgid "Old Condition" msgstr "" -#. Label of the old_parent (Link) field in DocType 'CRM Territory' -#: crm/fcrm/doctype/crm_territory/crm_territory.json +#. Label of the old_parent (Link) field in PageType 'CRM Territory' +#: crm/fcrm/pagetype/crm_territory/crm_territory.json msgid "Old Parent" msgstr "Dawny rodzic" -#. Option for the 'Type' (Select) field in DocType 'CRM Deal Status' -#: crm/fcrm/doctype/crm_deal_status/crm_deal_status.json +#. Option for the 'Type' (Select) field in PageType 'CRM Deal Status' +#: crm/fcrm/pagetype/crm_deal_status/crm_deal_status.json msgid "On Hold" msgstr "" -#. Option for the 'Type' (Select) field in DocType 'CRM Deal Status' -#: crm/fcrm/doctype/crm_deal_status/crm_deal_status.json +#. Option for the 'Type' (Select) field in PageType 'CRM Deal Status' +#: crm/fcrm/pagetype/crm_deal_status/crm_deal_status.json msgid "Ongoing" msgstr "" @@ -4088,13 +4088,13 @@ msgstr "" msgid "Only image files are allowed" msgstr "" -#: crm/fcrm/doctype/crm_deal/crm_deal.py:60 -#: crm/fcrm/doctype/crm_telephony_agent/crm_telephony_agent.py:23 +#: crm/fcrm/pagetype/crm_deal/crm_deal.py:60 +#: crm/fcrm/pagetype/crm_telephony_agent/crm_telephony_agent.py:23 msgid "Only one {0} can be set as primary." msgstr "" -#. Option for the 'Type' (Select) field in DocType 'CRM Deal Status' -#: crm/fcrm/doctype/crm_deal_status/crm_deal_status.json +#. Option for the 'Type' (Select) field in PageType 'CRM Deal Status' +#: crm/fcrm/pagetype/crm_deal_status/crm_deal_status.json msgid "Open" msgstr "" @@ -4108,13 +4108,13 @@ msgstr "" msgid "Open Lead" msgstr "" -#: crm/fcrm/doctype/crm_deal/crm_deal.js:6 -#: crm/fcrm/doctype/crm_lead/crm_lead.js:6 +#: crm/fcrm/pagetype/crm_deal/crm_deal.js:6 +#: crm/fcrm/pagetype/crm_lead/crm_lead.js:6 msgid "Open in Portal" msgstr "" -#. Label of the open_in_new_window (Check) field in DocType 'CRM Dropdown Item' -#: crm/fcrm/doctype/crm_dropdown_item/crm_dropdown_item.json +#. Label of the open_in_new_window (Check) field in PageType 'CRM Dropdown Item' +#: crm/fcrm/pagetype/crm_dropdown_item/crm_dropdown_item.json msgid "Open in new window" msgstr "" @@ -4136,17 +4136,17 @@ msgstr "Opcje" msgid "Or create leads manually" msgstr "" -#. Label of the order_by_tab (Tab Break) field in DocType 'CRM View Settings' -#. Label of the order_by (Code) field in DocType 'CRM View Settings' -#: crm/fcrm/doctype/crm_view_settings/crm_view_settings.json +#. Label of the order_by_tab (Tab Break) field in PageType 'CRM View Settings' +#. Label of the order_by (Code) field in PageType 'CRM View Settings' +#: crm/fcrm/pagetype/crm_view_settings/crm_view_settings.json msgid "Order By" msgstr "" -#. Label of the organization (Link) field in DocType 'CRM Deal' -#. Label of the organization_tab (Tab Break) field in DocType 'CRM Deal' -#. Label of the organization (Data) field in DocType 'CRM Lead' -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_lead/crm_lead.json +#. Label of the organization (Link) field in PageType 'CRM Deal' +#. Label of the organization_tab (Tab Break) field in PageType 'CRM Deal' +#. Label of the organization (Data) field in PageType 'CRM Lead' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_lead/crm_lead.json #: frontend/src/components/Layouts/AppSidebar.vue:553 #: frontend/src/components/Modals/ConvertToDealModal.vue:25 #: frontend/src/pages/Contact.vue:494 frontend/src/pages/MobileContact.vue:502 @@ -4158,22 +4158,22 @@ msgstr "" msgid "Organization" msgstr "" -#. Label of the organization_details_section (Section Break) field in DocType +#. Label of the organization_details_section (Section Break) field in PageType #. 'CRM Deal' -#: crm/fcrm/doctype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_deal/crm_deal.json msgid "Organization Details" msgstr "" -#. Label of the organization_logo (Attach Image) field in DocType 'CRM +#. Label of the organization_logo (Attach Image) field in PageType 'CRM #. Organization' -#: crm/fcrm/doctype/crm_organization/crm_organization.json +#: crm/fcrm/pagetype/crm_organization/crm_organization.json msgid "Organization Logo" msgstr "" -#. Label of the organization_name (Data) field in DocType 'CRM Deal' -#. Label of the organization_name (Data) field in DocType 'CRM Organization' -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_organization/crm_organization.json +#. Label of the organization_name (Data) field in PageType 'CRM Deal' +#. Label of the organization_name (Data) field in PageType 'CRM Organization' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_organization/crm_organization.json msgid "Organization Name" msgstr "" @@ -4181,8 +4181,8 @@ msgstr "" msgid "Organization logo" msgstr "" -#. Label of a shortcut in the Frappe CRM Workspace -#: crm/fcrm/workspace/frappe_crm/frappe_crm.json +#. Label of a shortcut in the Jingrow CRM Workspace +#: crm/fcrm/workspace/jingrow_crm/jingrow_crm.json #: frontend/src/pages/MobileOrganization.vue:205 #: frontend/src/pages/Organization.vue:234 msgid "Organizations" @@ -4196,8 +4196,8 @@ msgstr "" msgid "Other features" msgstr "" -#. Label of the organization_tab (Tab Break) field in DocType 'CRM Lead' -#: crm/fcrm/doctype/crm_lead/crm_lead.json +#. Label of the organization_tab (Tab Break) field in PageType 'CRM Lead' +#: crm/fcrm/pagetype/crm_lead/crm_lead.json msgid "Others" msgstr "" @@ -4205,13 +4205,13 @@ msgstr "" msgid "Outbound Call" msgstr "" -#. Option for the 'Type' (Select) field in DocType 'CRM Call Log' -#: crm/fcrm/doctype/crm_call_log/crm_call_log.json +#. Option for the 'Type' (Select) field in PageType 'CRM Call Log' +#: crm/fcrm/pagetype/crm_call_log/crm_call_log.json msgid "Outgoing" msgstr "" -#. Label of the log_owner (Link) field in DocType 'CRM Status Change Log' -#: crm/fcrm/doctype/crm_status_change_log/crm_status_change_log.json +#. Label of the log_owner (Link) field in PageType 'CRM Status Change Log' +#: crm/fcrm/pagetype/crm_status_change_log/crm_status_change_log.json msgid "Owner" msgstr "" @@ -4219,8 +4219,8 @@ msgstr "" msgid "Owner: {0}" msgstr "" -#. Label of the parent_crm_territory (Link) field in DocType 'CRM Territory' -#: crm/fcrm/doctype/crm_territory/crm_territory.json +#. Label of the parent_crm_territory (Link) field in PageType 'CRM Territory' +#: crm/fcrm/pagetype/crm_territory/crm_territory.json msgid "Parent CRM Territory" msgstr "" @@ -4251,8 +4251,8 @@ msgstr "" msgid "Payment Reminder from Frappé - (#{{ name }})" msgstr "" -#. Option for the 'Status' (Select) field in DocType 'CRM Invitation' -#: crm/fcrm/doctype/crm_invitation/crm_invitation.json +#. Option for the 'Status' (Select) field in PageType 'CRM Invitation' +#: crm/fcrm/pagetype/crm_invitation/crm_invitation.json msgid "Pending" msgstr "" @@ -4264,10 +4264,10 @@ msgstr "" msgid "Period" msgstr "" -#. Label of the person_section (Section Break) field in DocType 'CRM Deal' -#. Label of the person_tab (Tab Break) field in DocType 'CRM Lead' -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_lead/crm_lead.json +#. Label of the person_section (Section Break) field in PageType 'CRM Deal' +#. Label of the person_tab (Tab Break) field in PageType 'CRM Lead' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_lead/crm_lead.json msgid "Person" msgstr "" @@ -4275,19 +4275,19 @@ msgstr "" msgid "Personal Settings" msgstr "" -#. Label of the phone (Data) field in DocType 'CRM Contacts' -#. Label of the phone (Data) field in DocType 'CRM Lead' -#. Option for the 'Device' (Select) field in DocType 'CRM Telephony Agent' -#: crm/fcrm/doctype/crm_contacts/crm_contacts.json -#: crm/fcrm/doctype/crm_lead/crm_lead.json -#: crm/fcrm/doctype/crm_telephony_agent/crm_telephony_agent.json +#. Label of the phone (Data) field in PageType 'CRM Contacts' +#. Label of the phone (Data) field in PageType 'CRM Lead' +#. Option for the 'Device' (Select) field in PageType 'CRM Telephony Agent' +#: crm/fcrm/pagetype/crm_contacts/crm_contacts.json +#: crm/fcrm/pagetype/crm_lead/crm_lead.json +#: crm/fcrm/pagetype/crm_telephony_agent/crm_telephony_agent.json #: frontend/src/pages/MobileOrganization.vue:495 #: frontend/src/pages/Organization.vue:516 msgid "Phone" msgstr "" -#. Label of the phone_nos (Table) field in DocType 'CRM Telephony Agent' -#: crm/fcrm/doctype/crm_telephony_agent/crm_telephony_agent.json +#. Label of the phone_nos (Table) field in PageType 'CRM Telephony Agent' +#: crm/fcrm/pagetype/crm_telephony_agent/crm_telephony_agent.json msgid "Phone Numbers" msgstr "" @@ -4295,8 +4295,8 @@ msgstr "" msgid "Pin View" msgstr "" -#. Label of the pinned (Check) field in DocType 'CRM View Settings' -#: crm/fcrm/doctype/crm_view_settings/crm_view_settings.json +#. Label of the pinned (Check) field in PageType 'CRM View Settings' +#: crm/fcrm/pagetype/crm_view_settings/crm_view_settings.json msgid "Pinned" msgstr "" @@ -4346,7 +4346,7 @@ msgstr "" msgid "Please select an existing organization" msgstr "" -#: crm/fcrm/doctype/helpdesk_crm_settings/helpdesk_crm_settings.py:126 +#: crm/fcrm/pagetype/helpdesk_crm_settings/helpdesk_crm_settings.py:126 msgid "Please set Email Address" msgstr "Proszę ustawić adres e-mail" @@ -4354,18 +4354,18 @@ msgstr "Proszę ustawić adres e-mail" msgid "Please setup Exotel intergration" msgstr "" -#: crm/fcrm/doctype/crm_deal/crm_deal.py:181 +#: crm/fcrm/pagetype/crm_deal/crm_deal.py:181 msgid "Please specify a reason for losing the deal." msgstr "" -#: crm/fcrm/doctype/crm_deal/crm_deal.py:183 +#: crm/fcrm/pagetype/crm_deal/crm_deal.py:183 msgid "Please specify the reason for losing the deal." msgstr "" -#. Label of the position (Int) field in DocType 'CRM Deal Status' -#. Label of the position (Int) field in DocType 'CRM Lead Status' -#: crm/fcrm/doctype/crm_deal_status/crm_deal_status.json -#: crm/fcrm/doctype/crm_lead_status/crm_lead_status.json +#. Label of the position (Int) field in PageType 'CRM Deal Status' +#. Label of the position (Int) field in PageType 'CRM Lead Status' +#: crm/fcrm/pagetype/crm_deal_status/crm_deal_status.json +#: crm/fcrm/pagetype/crm_lead_status/crm_lead_status.json msgid "Position" msgstr "Pozycja" @@ -4373,18 +4373,18 @@ msgstr "Pozycja" msgid "Primary" msgstr "Główny" -#. Label of the email (Data) field in DocType 'CRM Deal' -#: crm/fcrm/doctype/crm_deal/crm_deal.json +#. Label of the email (Data) field in PageType 'CRM Deal' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json msgid "Primary Email" msgstr "" -#. Label of the mobile_no (Data) field in DocType 'CRM Deal' -#: crm/fcrm/doctype/crm_deal/crm_deal.json +#. Label of the mobile_no (Data) field in PageType 'CRM Deal' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json msgid "Primary Mobile No" msgstr "" -#. Label of the phone (Data) field in DocType 'CRM Deal' -#: crm/fcrm/doctype/crm_deal/crm_deal.json +#. Label of the phone (Data) field in PageType 'CRM Deal' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json msgid "Primary Phone" msgstr "" @@ -4392,57 +4392,57 @@ msgstr "" msgid "Primary contact set" msgstr "" -#. Label of the priorities (Table) field in DocType 'CRM Service Level +#. Label of the priorities (Table) field in PageType 'CRM Service Level #. Agreement' -#: crm/fcrm/doctype/crm_service_level_agreement/crm_service_level_agreement.json +#: crm/fcrm/pagetype/crm_service_level_agreement/crm_service_level_agreement.json msgid "Priorities" msgstr "" -#. Label of the priority (Link) field in DocType 'CRM Service Level Priority' -#. Label of the priority (Select) field in DocType 'CRM Task' -#: crm/fcrm/doctype/crm_service_level_priority/crm_service_level_priority.json -#: crm/fcrm/doctype/crm_task/crm_task.json +#. Label of the priority (Link) field in PageType 'CRM Service Level Priority' +#. Label of the priority (Select) field in PageType 'CRM Task' +#: crm/fcrm/pagetype/crm_service_level_priority/crm_service_level_priority.json +#: crm/fcrm/pagetype/crm_task/crm_task.json #: frontend/src/components/Settings/AssignmentRules/AssignmentRuleView.vue:64 #: frontend/src/components/Settings/AssignmentRules/AssignmentRulesList.vue:20 msgid "Priority" msgstr "" -#. Label of the private (Check) field in DocType 'CRM Dashboard' -#: crm/fcrm/doctype/crm_dashboard/crm_dashboard.json +#. Label of the private (Check) field in PageType 'CRM Dashboard' +#: crm/fcrm/pagetype/crm_dashboard/crm_dashboard.json #: frontend/src/components/FilesUploader/FilesUploaderArea.vue:89 msgid "Private" msgstr "Prywatny" -#. Label of the probability (Percent) field in DocType 'CRM Deal' -#. Label of the probability (Percent) field in DocType 'CRM Deal Status' -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_deal_status/crm_deal_status.json +#. Label of the probability (Percent) field in PageType 'CRM Deal' +#. Label of the probability (Percent) field in PageType 'CRM Deal Status' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_deal_status/crm_deal_status.json msgid "Probability" msgstr "" -#. Label of the product_code (Link) field in DocType 'CRM Products' -#: crm/fcrm/doctype/crm_products/crm_products.json +#. Label of the product_code (Link) field in PageType 'CRM Products' +#: crm/fcrm/pagetype/crm_products/crm_products.json msgid "Product" msgstr "" -#. Label of the product_code (Data) field in DocType 'CRM Product' -#: crm/fcrm/doctype/crm_product/crm_product.json +#. Label of the product_code (Data) field in PageType 'CRM Product' +#: crm/fcrm/pagetype/crm_product/crm_product.json msgid "Product Code" msgstr "" -#. Label of the product_name (Data) field in DocType 'CRM Product' -#. Label of the product_name (Data) field in DocType 'CRM Products' -#: crm/fcrm/doctype/crm_product/crm_product.json -#: crm/fcrm/doctype/crm_products/crm_products.json +#. Label of the product_name (Data) field in PageType 'CRM Product' +#. Label of the product_name (Data) field in PageType 'CRM Products' +#: crm/fcrm/pagetype/crm_product/crm_product.json +#: crm/fcrm/pagetype/crm_products/crm_products.json msgid "Product Name" msgstr "" -#. Label of the products_tab (Tab Break) field in DocType 'CRM Deal' -#. Label of the products (Table) field in DocType 'CRM Deal' -#. Label of the products_tab (Tab Break) field in DocType 'CRM Lead' -#. Label of the products (Table) field in DocType 'CRM Lead' -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_lead/crm_lead.json +#. Label of the products_tab (Tab Break) field in PageType 'CRM Deal' +#. Label of the products (Table) field in PageType 'CRM Deal' +#. Label of the products_tab (Tab Break) field in PageType 'CRM Lead' +#. Label of the products (Table) field in PageType 'CRM Lead' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_lead/crm_lead.json msgid "Products" msgstr "" @@ -4459,8 +4459,8 @@ msgstr "" msgid "Projected vs actual revenue based on deal probability" msgstr "" -#. Label of the public (Check) field in DocType 'CRM View Settings' -#: crm/fcrm/doctype/crm_view_settings/crm_view_settings.json +#. Label of the public (Check) field in PageType 'CRM View Settings' +#: crm/fcrm/pagetype/crm_view_settings/crm_view_settings.json msgid "Public" msgstr "Publiczny" @@ -4472,23 +4472,23 @@ msgstr "" msgid "Public view" msgstr "" -#. Label of the qty (Float) field in DocType 'CRM Products' -#: crm/fcrm/doctype/crm_products/crm_products.json +#. Label of the qty (Float) field in PageType 'CRM Products' +#: crm/fcrm/pagetype/crm_products/crm_products.json msgid "Quantity" msgstr "" -#. Option for the 'Status' (Select) field in DocType 'CRM Call Log' -#: crm/fcrm/doctype/crm_call_log/crm_call_log.json +#. Option for the 'Status' (Select) field in PageType 'CRM Call Log' +#: crm/fcrm/pagetype/crm_call_log/crm_call_log.json msgid "Queued" msgstr "W kolejce" -#. Option for the 'Type' (Select) field in DocType 'CRM Fields Layout' -#: crm/fcrm/doctype/crm_fields_layout/crm_fields_layout.json +#. Option for the 'Type' (Select) field in PageType 'CRM Fields Layout' +#: crm/fcrm/pagetype/crm_fields_layout/crm_fields_layout.json msgid "Quick Entry" msgstr "" -#. Option for the 'Type' (Select) field in DocType 'CRM Global Settings' -#: crm/fcrm/doctype/crm_global_settings/crm_global_settings.json +#. Option for the 'Type' (Select) field in PageType 'CRM Global Settings' +#: crm/fcrm/pagetype/crm_global_settings/crm_global_settings.json msgid "Quick Filters" msgstr "" @@ -4500,13 +4500,13 @@ msgstr "" msgid "Quick entry layout" msgstr "" -#. Label of the rate (Currency) field in DocType 'CRM Products' -#: crm/fcrm/doctype/crm_products/crm_products.json +#. Label of the rate (Currency) field in PageType 'CRM Products' +#: crm/fcrm/pagetype/crm_products/crm_products.json msgid "Rate" msgstr "" -#. Label of the read (Check) field in DocType 'CRM Notification' -#: crm/fcrm/doctype/crm_notification/crm_notification.json +#. Label of the read (Check) field in PageType 'CRM Notification' +#: crm/fcrm/pagetype/crm_notification/crm_notification.json msgid "Read" msgstr "Czytać" @@ -4514,48 +4514,48 @@ msgstr "Czytać" msgid "Reason" msgstr "" -#. Label of the record_calls (Check) field in DocType 'CRM Twilio Settings' -#: crm/fcrm/doctype/crm_twilio_settings/crm_twilio_settings.json +#. Label of the record_calls (Check) field in PageType 'CRM Twilio Settings' +#: crm/fcrm/pagetype/crm_twilio_settings/crm_twilio_settings.json msgid "Record Calls" msgstr "" -#. Label of the record_call (Check) field in DocType 'CRM Exotel Settings' -#: crm/fcrm/doctype/crm_exotel_settings/crm_exotel_settings.json +#. Label of the record_call (Check) field in PageType 'CRM Exotel Settings' +#: crm/fcrm/pagetype/crm_exotel_settings/crm_exotel_settings.json msgid "Record Outgoing Calls" msgstr "" -#. Label of the recording_url (Data) field in DocType 'CRM Call Log' -#: crm/fcrm/doctype/crm_call_log/crm_call_log.json +#. Label of the recording_url (Data) field in PageType 'CRM Call Log' +#: crm/fcrm/pagetype/crm_call_log/crm_call_log.json msgid "Recording URL" msgstr "Adres URL nagrywania" -#. Label of the reference_name (Dynamic Link) field in DocType 'CRM +#. Label of the reference_name (Dynamic Link) field in PageType 'CRM #. Notification' -#. Label of the reference_docname (Dynamic Link) field in DocType 'CRM Task' -#. Label of the reference_docname (Dynamic Link) field in DocType 'FCRM Note' -#: crm/fcrm/doctype/crm_notification/crm_notification.json -#: crm/fcrm/doctype/crm_task/crm_task.json -#: crm/fcrm/doctype/fcrm_note/fcrm_note.json -msgid "Reference Doc" +#. Label of the reference_docname (Dynamic Link) field in PageType 'CRM Task' +#. Label of the reference_docname (Dynamic Link) field in PageType 'FCRM Note' +#: crm/fcrm/pagetype/crm_notification/crm_notification.json +#: crm/fcrm/pagetype/crm_task/crm_task.json +#: crm/fcrm/pagetype/fcrm_note/fcrm_note.json +msgid "Reference Pg" msgstr "" -#. Label of the reference_doctype (Link) field in DocType 'CRM Notification' -#: crm/fcrm/doctype/crm_notification/crm_notification.json -msgid "Reference Doctype" +#. Label of the reference_pagetype (Link) field in PageType 'CRM Notification' +#: crm/fcrm/pagetype/crm_notification/crm_notification.json +msgid "Reference Pagetype" msgstr "Typ dokumentu referencji" -#. Label of the reference_doctype (Link) field in DocType 'CRM Call Log' -#. Label of the reference_doctype (Link) field in DocType 'CRM Task' -#. Label of the reference_doctype (Link) field in DocType 'FCRM Note' -#: crm/fcrm/doctype/crm_call_log/crm_call_log.json -#: crm/fcrm/doctype/crm_task/crm_task.json -#: crm/fcrm/doctype/fcrm_note/fcrm_note.json +#. Label of the reference_pagetype (Link) field in PageType 'CRM Call Log' +#. Label of the reference_pagetype (Link) field in PageType 'CRM Task' +#. Label of the reference_pagetype (Link) field in PageType 'FCRM Note' +#: crm/fcrm/pagetype/crm_call_log/crm_call_log.json +#: crm/fcrm/pagetype/crm_task/crm_task.json +#: crm/fcrm/pagetype/fcrm_note/fcrm_note.json msgid "Reference Document Type" msgstr "" -#. Label of the reference_docname (Dynamic Link) field in DocType 'CRM Call +#. Label of the reference_docname (Dynamic Link) field in PageType 'CRM Call #. Log' -#: crm/fcrm/doctype/crm_call_log/crm_call_log.json +#: crm/fcrm/pagetype/crm_call_log/crm_call_log.json msgid "Reference Name" msgstr "" @@ -4625,8 +4625,8 @@ msgstr "Odpowiedz wszystkim" msgid "Report an Issue" msgstr "" -#. Option for the 'Type' (Select) field in DocType 'CRM Fields Layout' -#: crm/fcrm/doctype/crm_fields_layout/crm_fields_layout.json +#. Option for the 'Type' (Select) field in PageType 'CRM Fields Layout' +#: crm/fcrm/pagetype/crm_fields_layout/crm_fields_layout.json msgid "Required Fields" msgstr "" @@ -4642,7 +4642,7 @@ msgstr "" msgid "Reset Changes" msgstr "" -#: crm/fcrm/doctype/erpnext_crm_settings/erpnext_crm_settings.js:7 +#: crm/fcrm/pagetype/erpnext_crm_settings/erpnext_crm_settings.js:7 msgid "Reset ERPNext Form Script" msgstr "" @@ -4654,35 +4654,35 @@ msgstr "" msgid "Reset to default" msgstr "" -#. Label of the response_by (Datetime) field in DocType 'CRM Deal' -#. Label of the response_by (Datetime) field in DocType 'CRM Lead' -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_lead/crm_lead.json +#. Label of the response_by (Datetime) field in PageType 'CRM Deal' +#. Label of the response_by (Datetime) field in PageType 'CRM Lead' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_lead/crm_lead.json msgid "Response By" msgstr "Odpowiedź wg" -#. Label of the response_details_section (Section Break) field in DocType 'CRM +#. Label of the response_details_section (Section Break) field in PageType 'CRM #. Deal' -#. Label of the response_details_section (Section Break) field in DocType 'CRM +#. Label of the response_details_section (Section Break) field in PageType 'CRM #. Lead' -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_lead/crm_lead.json +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_lead/crm_lead.json msgid "Response Details" msgstr "" -#. Label of the section_break_ufaf (Section Break) field in DocType 'CRM +#. Label of the section_break_ufaf (Section Break) field in PageType 'CRM #. Service Level Agreement' -#: crm/fcrm/doctype/crm_service_level_agreement/crm_service_level_agreement.json +#: crm/fcrm/pagetype/crm_service_level_agreement/crm_service_level_agreement.json msgid "Response and Follow Up" msgstr "" -#: crm/fcrm/doctype/fcrm_settings/fcrm_settings.js:14 +#: crm/fcrm/pagetype/fcrm_settings/fcrm_settings.js:14 msgid "Restore" msgstr "Przywracać" -#. Label of the restore_defaults (Button) field in DocType 'FCRM Settings' -#: crm/fcrm/doctype/fcrm_settings/fcrm_settings.js:13 -#: crm/fcrm/doctype/fcrm_settings/fcrm_settings.json +#. Label of the restore_defaults (Button) field in PageType 'FCRM Settings' +#: crm/fcrm/pagetype/fcrm_settings/fcrm_settings.js:13 +#: crm/fcrm/pagetype/fcrm_settings/fcrm_settings.json msgid "Restore Defaults" msgstr "" @@ -4699,13 +4699,13 @@ msgstr "" msgid "Rich Text" msgstr "" -#. Label of the rgt (Int) field in DocType 'CRM Territory' -#: crm/fcrm/doctype/crm_territory/crm_territory.json +#. Label of the rgt (Int) field in PageType 'CRM Territory' +#: crm/fcrm/pagetype/crm_territory/crm_territory.json msgid "Right" msgstr "Prawo" -#. Option for the 'Status' (Select) field in DocType 'CRM Call Log' -#: crm/fcrm/doctype/crm_call_log/crm_call_log.json +#. Option for the 'Status' (Select) field in PageType 'CRM Call Log' +#: crm/fcrm/pagetype/crm_call_log/crm_call_log.json msgid "Ringing" msgstr "" @@ -4714,55 +4714,55 @@ msgstr "" msgid "Ringing..." msgstr "" -#. Label of the role (Select) field in DocType 'CRM Invitation' -#: crm/fcrm/doctype/crm_invitation/crm_invitation.json +#. Label of the role (Select) field in PageType 'CRM Invitation' +#: crm/fcrm/pagetype/crm_invitation/crm_invitation.json #: frontend/src/components/Modals/AddExistingUserModal.vue:46 msgid "Role" msgstr "Rola" -#. Option for the 'Type' (Select) field in DocType 'CRM Dropdown Item' -#. Label of the route (Data) field in DocType 'CRM Dropdown Item' -#: crm/fcrm/doctype/crm_dropdown_item/crm_dropdown_item.json +#. Option for the 'Type' (Select) field in PageType 'CRM Dropdown Item' +#. Label of the route (Data) field in PageType 'CRM Dropdown Item' +#: crm/fcrm/pagetype/crm_dropdown_item/crm_dropdown_item.json msgid "Route" msgstr "Trasa" -#. Label of the route_name (Data) field in DocType 'CRM View Settings' -#: crm/fcrm/doctype/crm_view_settings/crm_view_settings.json +#. Label of the route_name (Data) field in PageType 'CRM View Settings' +#: crm/fcrm/pagetype/crm_view_settings/crm_view_settings.json msgid "Route Name" msgstr "" -#. Label of the rows (Code) field in DocType 'CRM View Settings' -#: crm/fcrm/doctype/crm_view_settings/crm_view_settings.json +#. Label of the rows (Code) field in PageType 'CRM View Settings' +#: crm/fcrm/pagetype/crm_view_settings/crm_view_settings.json msgid "Rows" msgstr "" -#. Label of the sla_tab (Tab Break) field in DocType 'CRM Deal' -#. Label of the sla (Link) field in DocType 'CRM Deal' -#. Label of the sla_tab (Tab Break) field in DocType 'CRM Lead' -#. Label of the sla (Link) field in DocType 'CRM Lead' -#. Label of a shortcut in the Frappe CRM Workspace -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_lead/crm_lead.json -#: crm/fcrm/workspace/frappe_crm/frappe_crm.json +#. Label of the sla_tab (Tab Break) field in PageType 'CRM Deal' +#. Label of the sla (Link) field in PageType 'CRM Deal' +#. Label of the sla_tab (Tab Break) field in PageType 'CRM Lead' +#. Label of the sla (Link) field in PageType 'CRM Lead' +#. Label of a shortcut in the Jingrow CRM Workspace +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_lead/crm_lead.json +#: crm/fcrm/workspace/jingrow_crm/jingrow_crm.json msgid "SLA" msgstr "" -#. Label of the sla_creation (Datetime) field in DocType 'CRM Deal' -#. Label of the sla_creation (Datetime) field in DocType 'CRM Lead' -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_lead/crm_lead.json +#. Label of the sla_creation (Datetime) field in PageType 'CRM Deal' +#. Label of the sla_creation (Datetime) field in PageType 'CRM Lead' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_lead/crm_lead.json msgid "SLA Creation" msgstr "" -#. Label of the sla_name (Data) field in DocType 'CRM Service Level Agreement' -#: crm/fcrm/doctype/crm_service_level_agreement/crm_service_level_agreement.json +#. Label of the sla_name (Data) field in PageType 'CRM Service Level Agreement' +#: crm/fcrm/pagetype/crm_service_level_agreement/crm_service_level_agreement.json msgid "SLA Name" msgstr "" -#. Label of the sla_status (Select) field in DocType 'CRM Deal' -#. Label of the sla_status (Select) field in DocType 'CRM Lead' -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_lead/crm_lead.json +#. Label of the sla_status (Select) field in PageType 'CRM Deal' +#. Label of the sla_status (Select) field in PageType 'CRM Lead' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_lead/crm_lead.json msgid "SLA Status" msgstr "" @@ -4771,57 +4771,57 @@ msgid "SUBJECT" msgstr "" #. Name of a role -#. Option for the 'Role' (Select) field in DocType 'CRM Invitation' -#: crm/fcrm/doctype/crm_call_log/crm_call_log.json -#: crm/fcrm/doctype/crm_communication_status/crm_communication_status.json -#: crm/fcrm/doctype/crm_dashboard/crm_dashboard.json -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_deal_status/crm_deal_status.json -#: crm/fcrm/doctype/crm_exotel_settings/crm_exotel_settings.json -#: crm/fcrm/doctype/crm_form_script/crm_form_script.json -#: crm/fcrm/doctype/crm_global_settings/crm_global_settings.json -#: crm/fcrm/doctype/crm_holiday_list/crm_holiday_list.json -#: crm/fcrm/doctype/crm_industry/crm_industry.json -#: crm/fcrm/doctype/crm_invitation/crm_invitation.json -#: crm/fcrm/doctype/crm_lead/crm_lead.json -#: crm/fcrm/doctype/crm_lead_source/crm_lead_source.json -#: crm/fcrm/doctype/crm_lead_status/crm_lead_status.json -#: crm/fcrm/doctype/crm_lost_reason/crm_lost_reason.json -#: crm/fcrm/doctype/crm_notification/crm_notification.json -#: crm/fcrm/doctype/crm_organization/crm_organization.json -#: crm/fcrm/doctype/crm_service_level_agreement/crm_service_level_agreement.json -#: crm/fcrm/doctype/crm_task/crm_task.json -#: crm/fcrm/doctype/crm_territory/crm_territory.json -#: crm/fcrm/doctype/crm_twilio_settings/crm_twilio_settings.json -#: crm/fcrm/doctype/crm_view_settings/crm_view_settings.json -#: crm/fcrm/doctype/erpnext_crm_settings/erpnext_crm_settings.json -#: crm/fcrm/doctype/fcrm_note/fcrm_note.json -#: crm/fcrm/doctype/fcrm_settings/fcrm_settings.json -#: crm/fcrm/doctype/helpdesk_crm_settings/helpdesk_crm_settings.json +#. Option for the 'Role' (Select) field in PageType 'CRM Invitation' +#: crm/fcrm/pagetype/crm_call_log/crm_call_log.json +#: crm/fcrm/pagetype/crm_communication_status/crm_communication_status.json +#: crm/fcrm/pagetype/crm_dashboard/crm_dashboard.json +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_deal_status/crm_deal_status.json +#: crm/fcrm/pagetype/crm_exotel_settings/crm_exotel_settings.json +#: crm/fcrm/pagetype/crm_form_script/crm_form_script.json +#: crm/fcrm/pagetype/crm_global_settings/crm_global_settings.json +#: crm/fcrm/pagetype/crm_holiday_list/crm_holiday_list.json +#: crm/fcrm/pagetype/crm_industry/crm_industry.json +#: crm/fcrm/pagetype/crm_invitation/crm_invitation.json +#: crm/fcrm/pagetype/crm_lead/crm_lead.json +#: crm/fcrm/pagetype/crm_lead_source/crm_lead_source.json +#: crm/fcrm/pagetype/crm_lead_status/crm_lead_status.json +#: crm/fcrm/pagetype/crm_lost_reason/crm_lost_reason.json +#: crm/fcrm/pagetype/crm_notification/crm_notification.json +#: crm/fcrm/pagetype/crm_organization/crm_organization.json +#: crm/fcrm/pagetype/crm_service_level_agreement/crm_service_level_agreement.json +#: crm/fcrm/pagetype/crm_task/crm_task.json +#: crm/fcrm/pagetype/crm_territory/crm_territory.json +#: crm/fcrm/pagetype/crm_twilio_settings/crm_twilio_settings.json +#: crm/fcrm/pagetype/crm_view_settings/crm_view_settings.json +#: crm/fcrm/pagetype/erpnext_crm_settings/erpnext_crm_settings.json +#: crm/fcrm/pagetype/fcrm_note/fcrm_note.json +#: crm/fcrm/pagetype/fcrm_settings/fcrm_settings.json +#: crm/fcrm/pagetype/helpdesk_crm_settings/helpdesk_crm_settings.json msgid "Sales Manager" msgstr "" #. Name of a role -#. Option for the 'Role' (Select) field in DocType 'CRM Invitation' -#: crm/fcrm/doctype/crm_call_log/crm_call_log.json -#: crm/fcrm/doctype/crm_communication_status/crm_communication_status.json -#: crm/fcrm/doctype/crm_dashboard/crm_dashboard.json -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_deal_status/crm_deal_status.json -#: crm/fcrm/doctype/crm_global_settings/crm_global_settings.json -#: crm/fcrm/doctype/crm_holiday_list/crm_holiday_list.json -#: crm/fcrm/doctype/crm_industry/crm_industry.json -#: crm/fcrm/doctype/crm_invitation/crm_invitation.json -#: crm/fcrm/doctype/crm_lead/crm_lead.json -#: crm/fcrm/doctype/crm_lead_source/crm_lead_source.json -#: crm/fcrm/doctype/crm_lead_status/crm_lead_status.json -#: crm/fcrm/doctype/crm_lost_reason/crm_lost_reason.json -#: crm/fcrm/doctype/crm_notification/crm_notification.json -#: crm/fcrm/doctype/crm_organization/crm_organization.json -#: crm/fcrm/doctype/crm_task/crm_task.json -#: crm/fcrm/doctype/crm_territory/crm_territory.json -#: crm/fcrm/doctype/crm_view_settings/crm_view_settings.json -#: crm/fcrm/doctype/fcrm_note/fcrm_note.json +#. Option for the 'Role' (Select) field in PageType 'CRM Invitation' +#: crm/fcrm/pagetype/crm_call_log/crm_call_log.json +#: crm/fcrm/pagetype/crm_communication_status/crm_communication_status.json +#: crm/fcrm/pagetype/crm_dashboard/crm_dashboard.json +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_deal_status/crm_deal_status.json +#: crm/fcrm/pagetype/crm_global_settings/crm_global_settings.json +#: crm/fcrm/pagetype/crm_holiday_list/crm_holiday_list.json +#: crm/fcrm/pagetype/crm_industry/crm_industry.json +#: crm/fcrm/pagetype/crm_invitation/crm_invitation.json +#: crm/fcrm/pagetype/crm_lead/crm_lead.json +#: crm/fcrm/pagetype/crm_lead_source/crm_lead_source.json +#: crm/fcrm/pagetype/crm_lead_status/crm_lead_status.json +#: crm/fcrm/pagetype/crm_lost_reason/crm_lost_reason.json +#: crm/fcrm/pagetype/crm_notification/crm_notification.json +#: crm/fcrm/pagetype/crm_organization/crm_organization.json +#: crm/fcrm/pagetype/crm_task/crm_task.json +#: crm/fcrm/pagetype/crm_territory/crm_territory.json +#: crm/fcrm/pagetype/crm_view_settings/crm_view_settings.json +#: crm/fcrm/pagetype/fcrm_note/fcrm_note.json #: frontend/src/components/Modals/AddExistingUserModal.vue:92 #: frontend/src/components/Settings/InviteUserPage.vue:156 #: frontend/src/components/Settings/InviteUserPage.vue:163 @@ -4845,17 +4845,17 @@ msgstr "" msgid "Salesperson" msgstr "" -#. Label of the salutation (Link) field in DocType 'CRM Deal' -#. Label of the salutation (Link) field in DocType 'CRM Lead' -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_lead/crm_lead.json +#. Label of the salutation (Link) field in PageType 'CRM Deal' +#. Label of the salutation (Link) field in PageType 'CRM Lead' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_lead/crm_lead.json msgid "Salutation" msgstr "Zwrot grzecznościowy" -#. Option for the 'Weekly Off' (Select) field in DocType 'CRM Holiday List' -#. Option for the 'Workday' (Select) field in DocType 'CRM Service Day' -#: crm/fcrm/doctype/crm_holiday_list/crm_holiday_list.json -#: crm/fcrm/doctype/crm_service_day/crm_service_day.json +#. Option for the 'Weekly Off' (Select) field in PageType 'CRM Holiday List' +#. Option for the 'Workday' (Select) field in PageType 'CRM Service Day' +#: crm/fcrm/pagetype/crm_holiday_list/crm_holiday_list.json +#: crm/fcrm/pagetype/crm_service_day/crm_service_day.json msgid "Saturday" msgstr "Sobota" @@ -4904,8 +4904,8 @@ msgstr "" msgid "Schedule an event" msgstr "" -#. Label of the script (Code) field in DocType 'CRM Form Script' -#: crm/fcrm/doctype/crm_form_script/crm_form_script.json +#. Label of the script (Code) field in PageType 'CRM Form Script' +#: crm/fcrm/pagetype/crm_form_script/crm_form_script.json msgid "Script" msgstr "Skrypt" @@ -4973,18 +4973,18 @@ msgstr "" msgid "Send invites to" msgstr "" -#. Option for the 'Type' (Select) field in DocType 'CRM Dropdown Item' -#: crm/fcrm/doctype/crm_dropdown_item/crm_dropdown_item.json +#. Option for the 'Type' (Select) field in PageType 'CRM Dropdown Item' +#: crm/fcrm/pagetype/crm_dropdown_item/crm_dropdown_item.json msgid "Separator" msgstr "" -#. Label of the naming_series (Select) field in DocType 'CRM Lead' -#: crm/fcrm/doctype/crm_lead/crm_lead.json +#. Label of the naming_series (Select) field in PageType 'CRM Lead' +#: crm/fcrm/pagetype/crm_lead/crm_lead.json msgid "Series" msgstr "" -#. Label of the service_provider (Select) field in DocType 'FCRM Settings' -#: crm/fcrm/doctype/fcrm_settings/fcrm_settings.json +#. Label of the service_provider (Select) field in PageType 'FCRM Settings' +#: crm/fcrm/pagetype/fcrm_settings/fcrm_settings.json msgid "Service Provider" msgstr "" @@ -5029,7 +5029,7 @@ msgid "Setting up" msgstr "" #: frontend/src/components/Settings/emailConfig.js:145 -msgid "Setting up Frappe Mail requires you to have an API key and API Secret of your email account. Read more " +msgid "Setting up Jingrow Mail requires you to have an API key and API Secret of your email account. Read more " msgstr "" #: frontend/src/components/Settings/emailConfig.js:97 @@ -5062,8 +5062,8 @@ msgid "Setting up Yandex requires you to enable two factor authentication\n" "\t\t and app specific passwords. Read more " msgstr "" -#. Label of the defaults_tab (Tab Break) field in DocType 'FCRM Settings' -#: crm/fcrm/doctype/fcrm_settings/fcrm_settings.json +#. Label of the defaults_tab (Tab Break) field in PageType 'FCRM Settings' +#: crm/fcrm/pagetype/fcrm_settings/fcrm_settings.json #: frontend/src/components/Layouts/AppSidebar.vue:537 #: frontend/src/components/Settings/Settings.vue:12 msgid "Settings" @@ -5073,7 +5073,7 @@ msgstr "" msgid "Setup Email" msgstr "" -#: crm/fcrm/doctype/fcrm_settings/fcrm_settings.py:199 +#: crm/fcrm/pagetype/fcrm_settings/fcrm_settings.py:199 msgid "Setup the Exchange Rate Provider as 'Exchangerate Host' in settings, as default provider does not support currency conversion for {0} to {1}." msgstr "" @@ -5108,20 +5108,20 @@ msgstr "" msgid "Show preview" msgstr "" -#. Option for the 'Type' (Select) field in DocType 'CRM Fields Layout' -#: crm/fcrm/doctype/crm_fields_layout/crm_fields_layout.json +#. Option for the 'Type' (Select) field in PageType 'CRM Fields Layout' +#: crm/fcrm/pagetype/crm_fields_layout/crm_fields_layout.json msgid "Side Panel" msgstr "" -#. Option for the 'Type' (Select) field in DocType 'CRM Global Settings' -#: crm/fcrm/doctype/crm_global_settings/crm_global_settings.json +#. Option for the 'Type' (Select) field in PageType 'CRM Global Settings' +#: crm/fcrm/pagetype/crm_global_settings/crm_global_settings.json msgid "Sidebar Items" msgstr "Elementy paska bocznego" -#. Description of the 'Condition' (Code) field in DocType 'CRM Service Level +#. Description of the 'Condition' (Code) field in PageType 'CRM Service Level #. Agreement' -#: crm/fcrm/doctype/crm_service_level_agreement/crm_service_level_agreement.json -msgid "Simple Python Expression, Example: doc.status == 'Open' and doc.lead_source == 'Ads'" +#: crm/fcrm/pagetype/crm_service_level_agreement/crm_service_level_agreement.json +msgid "Simple Python Expression, Example: pg.status == 'Open' and pg.lead_source == 'Ads'" msgstr "" #: frontend/src/components/AssignTo.vue:83 @@ -5145,16 +5145,16 @@ msgstr "" msgid "Sort" msgstr "" -#. Label of the source (Link) field in DocType 'CRM Deal' -#. Label of the source (Link) field in DocType 'CRM Lead' -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_lead/crm_lead.json +#. Label of the source (Link) field in PageType 'CRM Deal' +#. Label of the source (Link) field in PageType 'CRM Lead' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_lead/crm_lead.json #: frontend/src/components/Modals/EditValueModal.vue:10 msgid "Source" msgstr "" -#. Label of the source_name (Data) field in DocType 'CRM Lead Source' -#: crm/fcrm/doctype/crm_lead_source/crm_lead_source.json +#. Label of the source_name (Data) field in PageType 'CRM Lead Source' +#: crm/fcrm/pagetype/crm_lead_source/crm_lead_source.json msgid "Source Name" msgstr "Nazwa źródła" @@ -5167,12 +5167,12 @@ msgstr "Separator" msgid "Stage" msgstr "" -#: crm/fcrm/doctype/crm_form_script/crm_form_script.js:15 +#: crm/fcrm/pagetype/crm_form_script/crm_form_script.js:15 msgid "Standard Form Scripts can not be modified, duplicate the Form Script instead." msgstr "" -#. Label of the standard_rate (Currency) field in DocType 'CRM Product' -#: crm/fcrm/doctype/crm_product/crm_product.json +#. Label of the standard_rate (Currency) field in PageType 'CRM Product' +#: crm/fcrm/pagetype/crm_product/crm_product.json msgid "Standard Selling Rate" msgstr "Standardowy kurs sprzedaży" @@ -5180,18 +5180,18 @@ msgstr "Standardowy kurs sprzedaży" msgid "Standard Views" msgstr "" -#. Label of the start_date (Date) field in DocType 'CRM Service Level +#. Label of the start_date (Date) field in PageType 'CRM Service Level #. Agreement' -#. Label of the start_date (Date) field in DocType 'CRM Task' -#: crm/fcrm/doctype/crm_service_level_agreement/crm_service_level_agreement.json -#: crm/fcrm/doctype/crm_task/crm_task.json +#. Label of the start_date (Date) field in PageType 'CRM Task' +#: crm/fcrm/pagetype/crm_service_level_agreement/crm_service_level_agreement.json +#: crm/fcrm/pagetype/crm_task/crm_task.json msgid "Start Date" msgstr "" -#. Label of the start_time (Datetime) field in DocType 'CRM Call Log' -#. Label of the start_time (Time) field in DocType 'CRM Service Day' -#: crm/fcrm/doctype/crm_call_log/crm_call_log.json -#: crm/fcrm/doctype/crm_service_day/crm_service_day.json +#. Label of the start_time (Datetime) field in PageType 'CRM Call Log' +#. Label of the start_time (Time) field in PageType 'CRM Service Day' +#: crm/fcrm/pagetype/crm_call_log/crm_call_log.json +#: crm/fcrm/pagetype/crm_service_day/crm_service_day.json #: frontend/src/components/Calendar/CalendarEventPanel.vue:234 #: frontend/src/components/Modals/EventModal.vue:103 msgid "Start Time" @@ -5205,32 +5205,32 @@ msgstr "" msgid "Start with sample 10 leads" msgstr "" -#. Label of the status (Select) field in DocType 'CRM Call Log' -#. Label of the status (Data) field in DocType 'CRM Communication Status' -#. Label of the status (Link) field in DocType 'CRM Deal' -#. Label of the deal_status (Data) field in DocType 'CRM Deal Status' -#. Label of the status (Select) field in DocType 'CRM Invitation' -#. Label of the status (Link) field in DocType 'CRM Lead' -#. Label of the lead_status (Data) field in DocType 'CRM Lead Status' -#. Label of the status (Select) field in DocType 'CRM Task' -#: crm/fcrm/doctype/crm_call_log/crm_call_log.json -#: crm/fcrm/doctype/crm_communication_status/crm_communication_status.json -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_deal_status/crm_deal_status.json -#: crm/fcrm/doctype/crm_invitation/crm_invitation.json -#: crm/fcrm/doctype/crm_lead/crm_lead.json -#: crm/fcrm/doctype/crm_lead_status/crm_lead_status.json -#: crm/fcrm/doctype/crm_task/crm_task.json frontend/src/pages/Contact.vue:505 +#. Label of the status (Select) field in PageType 'CRM Call Log' +#. Label of the status (Data) field in PageType 'CRM Communication Status' +#. Label of the status (Link) field in PageType 'CRM Deal' +#. Label of the deal_status (Data) field in PageType 'CRM Deal Status' +#. Label of the status (Select) field in PageType 'CRM Invitation' +#. Label of the status (Link) field in PageType 'CRM Lead' +#. Label of the lead_status (Data) field in PageType 'CRM Lead Status' +#. Label of the status (Select) field in PageType 'CRM Task' +#: crm/fcrm/pagetype/crm_call_log/crm_call_log.json +#: crm/fcrm/pagetype/crm_communication_status/crm_communication_status.json +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_deal_status/crm_deal_status.json +#: crm/fcrm/pagetype/crm_invitation/crm_invitation.json +#: crm/fcrm/pagetype/crm_lead/crm_lead.json +#: crm/fcrm/pagetype/crm_lead_status/crm_lead_status.json +#: crm/fcrm/pagetype/crm_task/crm_task.json frontend/src/pages/Contact.vue:505 #: frontend/src/pages/MobileContact.vue:513 #: frontend/src/pages/MobileOrganization.vue:457 #: frontend/src/pages/Organization.vue:478 msgid "Status" msgstr "" -#. Label of the status_change_log (Table) field in DocType 'CRM Deal' -#. Label of the status_change_log (Table) field in DocType 'CRM Lead' -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_lead/crm_lead.json +#. Label of the status_change_log (Table) field in PageType 'CRM Deal' +#. Label of the status_change_log (Table) field in PageType 'CRM Lead' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_lead/crm_lead.json msgid "Status Change Log" msgstr "" @@ -5239,8 +5239,8 @@ msgstr "" msgid "Status is required" msgstr "" -#. Label of the subdomain (Data) field in DocType 'CRM Exotel Settings' -#: crm/fcrm/doctype/crm_exotel_settings/crm_exotel_settings.json +#. Label of the subdomain (Data) field in PageType 'CRM Exotel Settings' +#: crm/fcrm/pagetype/crm_exotel_settings/crm_exotel_settings.json msgid "Subdomain" msgstr "Subdomena" @@ -5258,10 +5258,10 @@ msgstr "" msgid "Subject: {0}" msgstr "" -#. Option for the 'Weekly Off' (Select) field in DocType 'CRM Holiday List' -#. Option for the 'Workday' (Select) field in DocType 'CRM Service Day' -#: crm/fcrm/doctype/crm_holiday_list/crm_holiday_list.json -#: crm/fcrm/doctype/crm_service_day/crm_service_day.json +#. Option for the 'Weekly Off' (Select) field in PageType 'CRM Holiday List' +#. Option for the 'Workday' (Select) field in PageType 'CRM Service Day' +#: crm/fcrm/pagetype/crm_holiday_list/crm_holiday_list.json +#: crm/fcrm/pagetype/crm_service_day/crm_service_day.json msgid "Sunday" msgstr "Niedziela" @@ -5282,21 +5282,21 @@ msgid "System Configuration" msgstr "" #. Name of a role -#. Option for the 'Role' (Select) field in DocType 'CRM Invitation' -#: crm/fcrm/doctype/crm_dashboard/crm_dashboard.json -#: crm/fcrm/doctype/crm_exotel_settings/crm_exotel_settings.json -#: crm/fcrm/doctype/crm_fields_layout/crm_fields_layout.json -#: crm/fcrm/doctype/crm_global_settings/crm_global_settings.json -#: crm/fcrm/doctype/crm_invitation/crm_invitation.json -#: crm/fcrm/doctype/crm_lead_source/crm_lead_source.json -#: crm/fcrm/doctype/crm_lost_reason/crm_lost_reason.json -#: crm/fcrm/doctype/crm_notification/crm_notification.json -#: crm/fcrm/doctype/crm_product/crm_product.json -#: crm/fcrm/doctype/crm_telephony_agent/crm_telephony_agent.json -#: crm/fcrm/doctype/crm_twilio_settings/crm_twilio_settings.json -#: crm/fcrm/doctype/erpnext_crm_settings/erpnext_crm_settings.json -#: crm/fcrm/doctype/fcrm_settings/fcrm_settings.json -#: crm/fcrm/doctype/helpdesk_crm_settings/helpdesk_crm_settings.json +#. Option for the 'Role' (Select) field in PageType 'CRM Invitation' +#: crm/fcrm/pagetype/crm_dashboard/crm_dashboard.json +#: crm/fcrm/pagetype/crm_exotel_settings/crm_exotel_settings.json +#: crm/fcrm/pagetype/crm_fields_layout/crm_fields_layout.json +#: crm/fcrm/pagetype/crm_global_settings/crm_global_settings.json +#: crm/fcrm/pagetype/crm_invitation/crm_invitation.json +#: crm/fcrm/pagetype/crm_lead_source/crm_lead_source.json +#: crm/fcrm/pagetype/crm_lost_reason/crm_lost_reason.json +#: crm/fcrm/pagetype/crm_notification/crm_notification.json +#: crm/fcrm/pagetype/crm_product/crm_product.json +#: crm/fcrm/pagetype/crm_telephony_agent/crm_telephony_agent.json +#: crm/fcrm/pagetype/crm_twilio_settings/crm_twilio_settings.json +#: crm/fcrm/pagetype/erpnext_crm_settings/erpnext_crm_settings.json +#: crm/fcrm/pagetype/fcrm_settings/fcrm_settings.json +#: crm/fcrm/pagetype/helpdesk_crm_settings/helpdesk_crm_settings.json msgid "System Manager" msgstr "" @@ -5308,8 +5308,8 @@ msgstr "" msgid "Take a note..." msgstr "" -#. Option for the 'Type' (Select) field in DocType 'CRM Notification' -#: crm/fcrm/doctype/crm_notification/crm_notification.json +#. Option for the 'Type' (Select) field in PageType 'CRM Notification' +#: crm/fcrm/pagetype/crm_notification/crm_notification.json #: frontend/src/components/Layouts/AppSidebar.vue:555 msgid "Task" msgstr "" @@ -5327,8 +5327,8 @@ msgstr "" msgid "Telephony" msgstr "" -#. Label of the telephony_medium (Select) field in DocType 'CRM Call Log' -#: crm/fcrm/doctype/crm_call_log/crm_call_log.json +#. Label of the telephony_medium (Select) field in PageType 'CRM Call Log' +#: crm/fcrm/pagetype/crm_call_log/crm_call_log.json msgid "Telephony Medium" msgstr "" @@ -5364,27 +5364,27 @@ msgstr "" msgid "Template updated successfully" msgstr "" -#. Label of a shortcut in the Frappe CRM Workspace -#: crm/fcrm/workspace/frappe_crm/frappe_crm.json +#. Label of a shortcut in the Jingrow CRM Workspace +#: crm/fcrm/workspace/jingrow_crm/jingrow_crm.json msgid "Territories" msgstr "" -#. Label of the territory (Link) field in DocType 'CRM Deal' -#. Label of the territory (Link) field in DocType 'CRM Lead' -#. Label of the territory (Link) field in DocType 'CRM Organization' -#: crm/api/dashboard.py:1022 crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_lead/crm_lead.json -#: crm/fcrm/doctype/crm_organization/crm_organization.json +#. Label of the territory (Link) field in PageType 'CRM Deal' +#. Label of the territory (Link) field in PageType 'CRM Lead' +#. Label of the territory (Link) field in PageType 'CRM Organization' +#: crm/api/dashboard.py:1022 crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_lead/crm_lead.json +#: crm/fcrm/pagetype/crm_organization/crm_organization.json msgid "Territory" msgstr "" -#. Label of the territory_manager (Link) field in DocType 'CRM Territory' -#: crm/fcrm/doctype/crm_territory/crm_territory.json +#. Label of the territory_manager (Link) field in PageType 'CRM Territory' +#: crm/fcrm/pagetype/crm_territory/crm_territory.json msgid "Territory Manager" msgstr "Kierownik Regionalny" -#. Label of the territory_name (Data) field in DocType 'CRM Territory' -#: crm/fcrm/doctype/crm_territory/crm_territory.json +#. Label of the territory_name (Data) field in PageType 'CRM Territory' +#: crm/fcrm/pagetype/crm_territory/crm_territory.json msgid "Territory Name" msgstr "Nazwa Regionu" @@ -5392,22 +5392,22 @@ msgstr "Nazwa Regionu" msgid "Thanks" msgstr "" -#: crm/fcrm/doctype/crm_service_level_agreement/crm_service_level_agreement.py:46 +#: crm/fcrm/pagetype/crm_service_level_agreement/crm_service_level_agreement.py:46 msgid "The Condition '{0}' is invalid: {1}" msgstr "" -#. Description of the 'Exchange Rate' (Float) field in DocType 'CRM Deal' -#: crm/fcrm/doctype/crm_deal/crm_deal.json +#. Description of the 'Exchange Rate' (Float) field in PageType 'CRM Deal' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json msgid "The rate used to convert the deal’s currency to your crm's base currency (set in CRM Settings). It is set once when the currency is first added and doesn't change automatically." msgstr "" -#. Description of the 'Exchange Rate' (Float) field in DocType 'CRM +#. Description of the 'Exchange Rate' (Float) field in PageType 'CRM #. Organization' -#: crm/fcrm/doctype/crm_organization/crm_organization.json +#: crm/fcrm/pagetype/crm_organization/crm_organization.json msgid "The rate used to convert the organization’s currency to your crm's base currency (set in CRM Settings). It is set once when the currency is first added and doesn't change automatically." msgstr "" -#: crm/fcrm/doctype/crm_service_level_agreement/crm_service_level_agreement.js:14 +#: crm/fcrm/pagetype/crm_service_level_agreement/crm_service_level_agreement.js:14 msgid "There can only be one default priority in Priorities table" msgstr "" @@ -5444,14 +5444,14 @@ msgstr "" msgid "This will delete selected items and unlink linked items to it, are you sure?" msgstr "" -#: crm/fcrm/doctype/fcrm_settings/fcrm_settings.js:9 +#: crm/fcrm/pagetype/fcrm_settings/fcrm_settings.js:9 msgid "This will restore (if not exist) all the default statuses, custom fields and layouts. Delete & Restore will delete default layouts and then restore them." msgstr "" -#. Option for the 'Weekly Off' (Select) field in DocType 'CRM Holiday List' -#. Option for the 'Workday' (Select) field in DocType 'CRM Service Day' -#: crm/fcrm/doctype/crm_holiday_list/crm_holiday_list.json -#: crm/fcrm/doctype/crm_service_day/crm_service_day.json +#. Option for the 'Weekly Off' (Select) field in PageType 'CRM Holiday List' +#. Option for the 'Workday' (Select) field in PageType 'CRM Service Day' +#: crm/fcrm/pagetype/crm_holiday_list/crm_holiday_list.json +#: crm/fcrm/pagetype/crm_service_day/crm_service_day.json msgid "Thursday" msgstr "Czwartek" @@ -5463,18 +5463,18 @@ msgstr "Czas" msgid "Timespan" msgstr "Okres" -#. Label of the title (Data) field in DocType 'CRM Task' -#. Label of the title (Data) field in DocType 'FCRM Note' -#: crm/fcrm/doctype/crm_task/crm_task.json -#: crm/fcrm/doctype/fcrm_note/fcrm_note.json +#. Label of the title (Data) field in PageType 'CRM Task' +#. Label of the title (Data) field in PageType 'FCRM Note' +#: crm/fcrm/pagetype/crm_task/crm_task.json +#: crm/fcrm/pagetype/fcrm_note/fcrm_note.json #: frontend/src/components/Modals/EventModal.vue:43 #: frontend/src/components/Modals/NoteModal.vue:26 #: frontend/src/components/Modals/TaskModal.vue:25 msgid "Title" msgstr "" -#. Label of the title_field (Data) field in DocType 'CRM View Settings' -#: crm/fcrm/doctype/crm_view_settings/crm_view_settings.json +#. Label of the title_field (Data) field in PageType 'CRM View Settings' +#: crm/fcrm/pagetype/crm_view_settings/crm_view_settings.json #: frontend/src/components/Kanban/KanbanSettings.vue:29 msgid "Title Field" msgstr "Pole tytułu" @@ -5484,28 +5484,28 @@ msgstr "Pole tytułu" msgid "Title is required" msgstr "" -#. Label of the to (Data) field in DocType 'CRM Call Log' -#. Label of the to (Data) field in DocType 'CRM Status Change Log' -#: crm/fcrm/doctype/crm_call_log/crm_call_log.json -#: crm/fcrm/doctype/crm_status_change_log/crm_status_change_log.json +#. Label of the to (Data) field in PageType 'CRM Call Log' +#. Label of the to (Data) field in PageType 'CRM Status Change Log' +#: crm/fcrm/pagetype/crm_call_log/crm_call_log.json +#: crm/fcrm/pagetype/crm_status_change_log/crm_status_change_log.json #: frontend/src/components/Activities/EmailArea.vue:53 msgid "To" msgstr "" -#. Label of the to_date (Date) field in DocType 'CRM Holiday List' -#. Label of the to_date (Datetime) field in DocType 'CRM Status Change Log' -#: crm/fcrm/doctype/crm_holiday_list/crm_holiday_list.json -#: crm/fcrm/doctype/crm_status_change_log/crm_status_change_log.json +#. Label of the to_date (Date) field in PageType 'CRM Holiday List' +#. Label of the to_date (Datetime) field in PageType 'CRM Status Change Log' +#: crm/fcrm/pagetype/crm_holiday_list/crm_holiday_list.json +#: crm/fcrm/pagetype/crm_status_change_log/crm_status_change_log.json msgid "To Date" msgstr "" -#. Label of the to_type (Data) field in DocType 'CRM Status Change Log' -#: crm/fcrm/doctype/crm_status_change_log/crm_status_change_log.json +#. Label of the to_type (Data) field in PageType 'CRM Status Change Log' +#: crm/fcrm/pagetype/crm_status_change_log/crm_status_change_log.json msgid "To Type" msgstr "" -#. Label of the to_user (Link) field in DocType 'CRM Notification' -#: crm/fcrm/doctype/crm_notification/crm_notification.json +#. Label of the to_user (Link) field in PageType 'CRM Notification' +#: crm/fcrm/pagetype/crm_notification/crm_notification.json msgid "To User" msgstr "Do użytkownika" @@ -5517,8 +5517,8 @@ msgstr "" msgid "Today" msgstr "Dzisiaj" -#. Option for the 'Status' (Select) field in DocType 'CRM Task' -#: crm/fcrm/doctype/crm_task/crm_task.json +#. Option for the 'Status' (Select) field in PageType 'CRM Task' +#: crm/fcrm/pagetype/crm_task/crm_task.json msgid "Todo" msgstr "" @@ -5535,22 +5535,22 @@ msgstr "" msgid "Took a call with John Doe and discussed the new project." msgstr "" -#. Label of the total (Currency) field in DocType 'CRM Deal' -#. Label of the total (Currency) field in DocType 'CRM Lead' -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_lead/crm_lead.json +#. Label of the total (Currency) field in PageType 'CRM Deal' +#. Label of the total (Currency) field in PageType 'CRM Lead' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_lead/crm_lead.json msgid "Total" msgstr "" -#. Label of the total_holidays (Int) field in DocType 'CRM Holiday List' -#: crm/fcrm/doctype/crm_holiday_list/crm_holiday_list.json +#. Label of the total_holidays (Int) field in PageType 'CRM Holiday List' +#: crm/fcrm/pagetype/crm_holiday_list/crm_holiday_list.json msgid "Total Holidays" msgstr "Całkowita liczba dni wolnych" -#. Description of the 'Net Total' (Currency) field in DocType 'CRM Deal' -#. Description of the 'Net Total' (Currency) field in DocType 'CRM Lead' -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_lead/crm_lead.json +#. Description of the 'Net Total' (Currency) field in PageType 'CRM Deal' +#. Description of the 'Net Total' (Currency) field in PageType 'CRM Lead' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_lead/crm_lead.json msgid "Total after discount" msgstr "" @@ -5571,10 +5571,10 @@ msgstr "" msgid "Total number of won deals based on its closure date" msgstr "" -#. Option for the 'Weekly Off' (Select) field in DocType 'CRM Holiday List' -#. Option for the 'Workday' (Select) field in DocType 'CRM Service Day' -#: crm/fcrm/doctype/crm_holiday_list/crm_holiday_list.json -#: crm/fcrm/doctype/crm_service_day/crm_service_day.json +#. Option for the 'Weekly Off' (Select) field in PageType 'CRM Holiday List' +#. Option for the 'Workday' (Select) field in PageType 'CRM Service Day' +#: crm/fcrm/pagetype/crm_holiday_list/crm_holiday_list.json +#: crm/fcrm/pagetype/crm_service_day/crm_service_day.json msgid "Tuesday" msgstr "Wtorek" @@ -5582,30 +5582,30 @@ msgstr "Wtorek" msgid "Turn into a group" msgstr "" -#. Label of the twiml_sid (Data) field in DocType 'CRM Twilio Settings' -#: crm/fcrm/doctype/crm_twilio_settings/crm_twilio_settings.json +#. Label of the twiml_sid (Data) field in PageType 'CRM Twilio Settings' +#: crm/fcrm/pagetype/crm_twilio_settings/crm_twilio_settings.json msgid "TwiML SID" msgstr "" -#. Option for the 'Telephony Medium' (Select) field in DocType 'CRM Call Log' -#. Label of the twilio (Check) field in DocType 'CRM Telephony Agent' -#. Option for the 'Default Medium' (Select) field in DocType 'CRM Telephony +#. Option for the 'Telephony Medium' (Select) field in PageType 'CRM Call Log' +#. Label of the twilio (Check) field in PageType 'CRM Telephony Agent' +#. Option for the 'Default Medium' (Select) field in PageType 'CRM Telephony #. Agent' -#: crm/fcrm/doctype/crm_call_log/crm_call_log.json -#: crm/fcrm/doctype/crm_telephony_agent/crm_telephony_agent.json +#: crm/fcrm/pagetype/crm_call_log/crm_call_log.json +#: crm/fcrm/pagetype/crm_telephony_agent/crm_telephony_agent.json #: frontend/src/components/Layouts/AppSidebar.vue:601 #: frontend/src/components/Settings/TelephonySettings.vue:40 #: frontend/src/components/Settings/TelephonySettings.vue:50 msgid "Twilio" msgstr "" -#: crm/fcrm/doctype/crm_twilio_settings/crm_twilio_settings.py:59 -#: crm/fcrm/doctype/crm_twilio_settings/crm_twilio_settings.py:60 +#: crm/fcrm/pagetype/crm_twilio_settings/crm_twilio_settings.py:59 +#: crm/fcrm/pagetype/crm_twilio_settings/crm_twilio_settings.py:60 msgid "Twilio API credential creation error." msgstr "" -#. Label of the twilio_number (Data) field in DocType 'CRM Telephony Agent' -#: crm/fcrm/doctype/crm_telephony_agent/crm_telephony_agent.json +#. Label of the twilio_number (Data) field in PageType 'CRM Telephony Agent' +#: crm/fcrm/pagetype/crm_telephony_agent/crm_telephony_agent.json msgid "Twilio Number" msgstr "" @@ -5617,20 +5617,20 @@ msgstr "" msgid "Twilio settings updated successfully" msgstr "" -#. Label of the type (Select) field in DocType 'CRM Call Log' -#. Label of the type (Select) field in DocType 'CRM Deal Status' -#. Label of the type (Select) field in DocType 'CRM Dropdown Item' -#. Label of the type (Select) field in DocType 'CRM Fields Layout' -#. Label of the type (Select) field in DocType 'CRM Global Settings' -#. Label of the type (Select) field in DocType 'CRM Notification' -#. Label of the type (Select) field in DocType 'CRM View Settings' -#: crm/fcrm/doctype/crm_call_log/crm_call_log.json -#: crm/fcrm/doctype/crm_deal_status/crm_deal_status.json -#: crm/fcrm/doctype/crm_dropdown_item/crm_dropdown_item.json -#: crm/fcrm/doctype/crm_fields_layout/crm_fields_layout.json -#: crm/fcrm/doctype/crm_global_settings/crm_global_settings.json -#: crm/fcrm/doctype/crm_notification/crm_notification.json -#: crm/fcrm/doctype/crm_view_settings/crm_view_settings.json +#. Label of the type (Select) field in PageType 'CRM Call Log' +#. Label of the type (Select) field in PageType 'CRM Deal Status' +#. Label of the type (Select) field in PageType 'CRM Dropdown Item' +#. Label of the type (Select) field in PageType 'CRM Fields Layout' +#. Label of the type (Select) field in PageType 'CRM Global Settings' +#. Label of the type (Select) field in PageType 'CRM Notification' +#. Label of the type (Select) field in PageType 'CRM View Settings' +#: crm/fcrm/pagetype/crm_call_log/crm_call_log.json +#: crm/fcrm/pagetype/crm_deal_status/crm_deal_status.json +#: crm/fcrm/pagetype/crm_dropdown_item/crm_dropdown_item.json +#: crm/fcrm/pagetype/crm_fields_layout/crm_fields_layout.json +#: crm/fcrm/pagetype/crm_global_settings/crm_global_settings.json +#: crm/fcrm/pagetype/crm_notification/crm_notification.json +#: crm/fcrm/pagetype/crm_view_settings/crm_view_settings.json msgid "Type" msgstr "" @@ -5772,12 +5772,12 @@ msgstr "" msgid "Uploading {0}%" msgstr "" -#. Label of the user (Link) field in DocType 'CRM Dashboard' -#. Label of the user (Link) field in DocType 'CRM Telephony Agent' -#. Label of the user (Link) field in DocType 'CRM View Settings' -#: crm/fcrm/doctype/crm_dashboard/crm_dashboard.json -#: crm/fcrm/doctype/crm_telephony_agent/crm_telephony_agent.json -#: crm/fcrm/doctype/crm_view_settings/crm_view_settings.json +#. Label of the user (Link) field in PageType 'CRM Dashboard' +#. Label of the user (Link) field in PageType 'CRM Telephony Agent' +#. Label of the user (Link) field in PageType 'CRM View Settings' +#: crm/fcrm/pagetype/crm_dashboard/crm_dashboard.json +#: crm/fcrm/pagetype/crm_telephony_agent/crm_telephony_agent.json +#: crm/fcrm/pagetype/crm_view_settings/crm_view_settings.json msgid "User" msgstr "" @@ -5785,8 +5785,8 @@ msgstr "" msgid "User Management" msgstr "" -#. Label of the user_name (Data) field in DocType 'CRM Telephony Agent' -#: crm/fcrm/doctype/crm_telephony_agent/crm_telephony_agent.json +#. Label of the user_name (Data) field in PageType 'CRM Telephony Agent' +#: crm/fcrm/pagetype/crm_telephony_agent/crm_telephony_agent.json msgid "User Name" msgstr "Nazwa Użytkownika" @@ -5808,9 +5808,9 @@ msgstr "" msgid "Users are required" msgstr "" -#. Label of the section_break_nevd (Section Break) field in DocType 'CRM +#. Label of the section_break_nevd (Section Break) field in PageType 'CRM #. Service Level Agreement' -#: crm/fcrm/doctype/crm_service_level_agreement/crm_service_level_agreement.json +#: crm/fcrm/pagetype/crm_service_level_agreement/crm_service_level_agreement.json msgid "Validity" msgstr "Ważność" @@ -5834,33 +5834,33 @@ msgstr "" msgid "Web form" msgstr "" -#. Label of the webhook_verify_token (Data) field in DocType 'CRM Exotel +#. Label of the webhook_verify_token (Data) field in PageType 'CRM Exotel #. Settings' -#: crm/fcrm/doctype/crm_exotel_settings/crm_exotel_settings.json +#: crm/fcrm/pagetype/crm_exotel_settings/crm_exotel_settings.json msgid "Webhook Verify Token" msgstr "" -#. Label of the website (Data) field in DocType 'CRM Deal' -#. Label of the website (Data) field in DocType 'CRM Lead' -#. Label of the website (Data) field in DocType 'CRM Organization' -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_lead/crm_lead.json -#: crm/fcrm/doctype/crm_organization/crm_organization.json +#. Label of the website (Data) field in PageType 'CRM Deal' +#. Label of the website (Data) field in PageType 'CRM Lead' +#. Label of the website (Data) field in PageType 'CRM Organization' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_lead/crm_lead.json +#: crm/fcrm/pagetype/crm_organization/crm_organization.json #: frontend/src/components/Modals/AboutModal.vue:52 msgid "Website" msgstr "" -#. Option for the 'Weekly Off' (Select) field in DocType 'CRM Holiday List' -#. Option for the 'Workday' (Select) field in DocType 'CRM Service Day' -#: crm/fcrm/doctype/crm_holiday_list/crm_holiday_list.json -#: crm/fcrm/doctype/crm_service_day/crm_service_day.json +#. Option for the 'Weekly Off' (Select) field in PageType 'CRM Holiday List' +#. Option for the 'Workday' (Select) field in PageType 'CRM Service Day' +#: crm/fcrm/pagetype/crm_holiday_list/crm_holiday_list.json +#: crm/fcrm/pagetype/crm_service_day/crm_service_day.json msgid "Wednesday" msgstr "Środa" -#. Label of the weekly_off (Check) field in DocType 'CRM Holiday' -#. Label of the weekly_off (Select) field in DocType 'CRM Holiday List' -#: crm/fcrm/doctype/crm_holiday/crm_holiday.json -#: crm/fcrm/doctype/crm_holiday_list/crm_holiday_list.json +#. Label of the weekly_off (Check) field in PageType 'CRM Holiday' +#. Label of the weekly_off (Select) field in PageType 'CRM Holiday List' +#: crm/fcrm/pagetype/crm_holiday/crm_holiday.json +#: crm/fcrm/pagetype/crm_holiday_list/crm_holiday_list.json msgid "Weekly Off" msgstr "Tygodniowy wyłączony" @@ -5868,7 +5868,7 @@ msgstr "Tygodniowy wyłączony" msgid "Welcome Message" msgstr "" -#: crm/fcrm/doctype/helpdesk_crm_settings/helpdesk_crm_settings.py:155 +#: crm/fcrm/pagetype/helpdesk_crm_settings/helpdesk_crm_settings.py:155 msgid "Welcome to Helpdesk" msgstr "" @@ -5876,8 +5876,8 @@ msgstr "" msgid "Welcome {0}, lets add your first lead" msgstr "" -#. Option for the 'Type' (Select) field in DocType 'CRM Notification' -#: crm/fcrm/doctype/crm_notification/crm_notification.json +#. Option for the 'Type' (Select) field in PageType 'CRM Notification' +#: crm/fcrm/pagetype/crm_notification/crm_notification.json #: frontend/src/components/Layouts/AppSidebar.vue:603 #: frontend/src/components/Settings/Settings.vue:190 #: frontend/src/pages/Deal.vue:572 frontend/src/pages/Lead.vue:429 @@ -5902,8 +5902,8 @@ msgstr "Szerokość" msgid "Width can be in number, pixel or rem (eg. 3, 30px, 10rem)" msgstr "" -#. Option for the 'Type' (Select) field in DocType 'CRM Deal Status' -#: crm/fcrm/doctype/crm_deal_status/crm_deal_status.json +#. Option for the 'Type' (Select) field in PageType 'CRM Deal Status' +#: crm/fcrm/pagetype/crm_deal_status/crm_deal_status.json msgid "Won" msgstr "" @@ -5912,16 +5912,16 @@ msgstr "" msgid "Won deals" msgstr "" -#. Label of the workday (Select) field in DocType 'CRM Service Day' -#: crm/fcrm/doctype/crm_service_day/crm_service_day.json +#. Label of the workday (Select) field in PageType 'CRM Service Day' +#: crm/fcrm/pagetype/crm_service_day/crm_service_day.json msgid "Workday" msgstr "" -#. Label of the section_break_rmgo (Section Break) field in DocType 'CRM +#. Label of the section_break_rmgo (Section Break) field in PageType 'CRM #. Service Level Agreement' -#. Label of the working_hours (Table) field in DocType 'CRM Service Level +#. Label of the working_hours (Table) field in PageType 'CRM Service Level #. Agreement' -#: crm/fcrm/doctype/crm_service_level_agreement/crm_service_level_agreement.json +#: crm/fcrm/pagetype/crm_service_level_agreement/crm_service_level_agreement.json msgid "Working Hours" msgstr "" @@ -5967,7 +5967,7 @@ msgstr "" msgid "You do not have permission to access this document" msgstr "" -#: crm/fcrm/doctype/crm_form_script/crm_form_script.py:24 +#: crm/fcrm/pagetype/crm_form_script/crm_form_script.py:24 msgid "You need to be in developer mode to edit a Standard Form Script" msgstr "" @@ -5995,10 +5995,10 @@ msgstr "" msgid "added a" msgstr "" -#. Option for the 'Color' (Select) field in DocType 'CRM Deal Status' -#. Option for the 'Color' (Select) field in DocType 'CRM Lead Status' -#: crm/fcrm/doctype/crm_deal_status/crm_deal_status.json -#: crm/fcrm/doctype/crm_lead_status/crm_lead_status.json +#. Option for the 'Color' (Select) field in PageType 'CRM Deal Status' +#. Option for the 'Color' (Select) field in PageType 'CRM Lead Status' +#: crm/fcrm/pagetype/crm_deal_status/crm_deal_status.json +#: crm/fcrm/pagetype/crm_lead_status/crm_lead_status.json msgid "amber" msgstr "" @@ -6010,17 +6010,17 @@ msgstr "" msgid "assigned a {0} {1} to you" msgstr "" -#. Option for the 'Color' (Select) field in DocType 'CRM Deal Status' -#. Option for the 'Color' (Select) field in DocType 'CRM Lead Status' -#: crm/fcrm/doctype/crm_deal_status/crm_deal_status.json -#: crm/fcrm/doctype/crm_lead_status/crm_lead_status.json +#. Option for the 'Color' (Select) field in PageType 'CRM Deal Status' +#. Option for the 'Color' (Select) field in PageType 'CRM Lead Status' +#: crm/fcrm/pagetype/crm_deal_status/crm_deal_status.json +#: crm/fcrm/pagetype/crm_lead_status/crm_lead_status.json msgid "black" msgstr "czarny" -#. Option for the 'Color' (Select) field in DocType 'CRM Deal Status' -#. Option for the 'Color' (Select) field in DocType 'CRM Lead Status' -#: crm/fcrm/doctype/crm_deal_status/crm_deal_status.json -#: crm/fcrm/doctype/crm_lead_status/crm_lead_status.json +#. Option for the 'Color' (Select) field in PageType 'CRM Deal Status' +#. Option for the 'Color' (Select) field in PageType 'CRM Lead Status' +#: crm/fcrm/pagetype/crm_deal_status/crm_deal_status.json +#: crm/fcrm/pagetype/crm_lead_status/crm_lead_status.json msgid "blue" msgstr "niebieski" @@ -6037,10 +6037,10 @@ msgstr "komentarz" msgid "condition" msgstr "stan" -#. Option for the 'Color' (Select) field in DocType 'CRM Deal Status' -#. Option for the 'Color' (Select) field in DocType 'CRM Lead Status' -#: crm/fcrm/doctype/crm_deal_status/crm_deal_status.json -#: crm/fcrm/doctype/crm_lead_status/crm_lead_status.json +#. Option for the 'Color' (Select) field in PageType 'CRM Deal Status' +#. Option for the 'Color' (Select) field in PageType 'CRM Lead Status' +#: crm/fcrm/pagetype/crm_deal_status/crm_deal_status.json +#: crm/fcrm/pagetype/crm_lead_status/crm_lead_status.json msgid "cyan" msgstr "" @@ -6059,33 +6059,33 @@ msgstr "biurko" msgid "email already exists" msgstr "" -#. Option for the 'Service Provider' (Select) field in DocType 'FCRM Settings' -#: crm/fcrm/doctype/fcrm_settings/fcrm_settings.json +#. Option for the 'Service Provider' (Select) field in PageType 'FCRM Settings' +#: crm/fcrm/pagetype/fcrm_settings/fcrm_settings.json #: frontend/src/components/Settings/CurrencySettings.vue:106 msgid "exchangerate.host" msgstr "" -#. Option for the 'Service Provider' (Select) field in DocType 'FCRM Settings' -#: crm/fcrm/doctype/fcrm_settings/fcrm_settings.json +#. Option for the 'Service Provider' (Select) field in PageType 'FCRM Settings' +#: crm/fcrm/pagetype/fcrm_settings/fcrm_settings.json msgid "frankfurter.app" msgstr "" -#. Option for the 'Color' (Select) field in DocType 'CRM Deal Status' -#. Option for the 'Color' (Select) field in DocType 'CRM Lead Status' -#: crm/fcrm/doctype/crm_deal_status/crm_deal_status.json -#: crm/fcrm/doctype/crm_lead_status/crm_lead_status.json +#. Option for the 'Color' (Select) field in PageType 'CRM Deal Status' +#. Option for the 'Color' (Select) field in PageType 'CRM Lead Status' +#: crm/fcrm/pagetype/crm_deal_status/crm_deal_status.json +#: crm/fcrm/pagetype/crm_lead_status/crm_lead_status.json msgid "gray" msgstr "" -#. Option for the 'Color' (Select) field in DocType 'CRM Deal Status' -#. Option for the 'Color' (Select) field in DocType 'CRM Lead Status' -#: crm/fcrm/doctype/crm_deal_status/crm_deal_status.json -#: crm/fcrm/doctype/crm_lead_status/crm_lead_status.json +#. Option for the 'Color' (Select) field in PageType 'CRM Deal Status' +#. Option for the 'Color' (Select) field in PageType 'CRM Lead Status' +#: crm/fcrm/pagetype/crm_deal_status/crm_deal_status.json +#: crm/fcrm/pagetype/crm_lead_status/crm_lead_status.json msgid "green" msgstr "zielony" -#. Option for the 'Type' (Select) field in DocType 'CRM View Settings' -#: crm/fcrm/doctype/crm_view_settings/crm_view_settings.json +#. Option for the 'Type' (Select) field in PageType 'CRM View Settings' +#: crm/fcrm/pagetype/crm_view_settings/crm_view_settings.json msgid "group_by" msgstr "" @@ -6170,12 +6170,12 @@ msgstr "" msgid "just now" msgstr "właśnie teraz" -#. Option for the 'Type' (Select) field in DocType 'CRM View Settings' -#: crm/fcrm/doctype/crm_view_settings/crm_view_settings.json +#. Option for the 'Type' (Select) field in PageType 'CRM View Settings' +#: crm/fcrm/pagetype/crm_view_settings/crm_view_settings.json msgid "kanban" msgstr "" -#: crm/api/doc.py:40 crm/api/doc.py:158 crm/api/doc.py:503 +#: crm/api/pg.py:40 crm/api/pg.py:158 crm/api/pg.py:503 msgid "label" msgstr "etykieta" @@ -6184,8 +6184,8 @@ msgstr "etykieta" msgid "leads" msgstr "lead" -#. Option for the 'Type' (Select) field in DocType 'CRM View Settings' -#: crm/fcrm/doctype/crm_view_settings/crm_view_settings.json +#. Option for the 'Type' (Select) field in PageType 'CRM View Settings' +#: crm/fcrm/pagetype/crm_view_settings/crm_view_settings.json msgid "list" msgstr "lista" @@ -6206,17 +6206,17 @@ msgstr "teraz" msgid "operator" msgstr "operator" -#. Option for the 'Color' (Select) field in DocType 'CRM Deal Status' -#. Option for the 'Color' (Select) field in DocType 'CRM Lead Status' -#: crm/fcrm/doctype/crm_deal_status/crm_deal_status.json -#: crm/fcrm/doctype/crm_lead_status/crm_lead_status.json +#. Option for the 'Color' (Select) field in PageType 'CRM Deal Status' +#. Option for the 'Color' (Select) field in PageType 'CRM Lead Status' +#: crm/fcrm/pagetype/crm_deal_status/crm_deal_status.json +#: crm/fcrm/pagetype/crm_lead_status/crm_lead_status.json msgid "orange" msgstr "pomarańczowy" -#. Option for the 'Color' (Select) field in DocType 'CRM Deal Status' -#. Option for the 'Color' (Select) field in DocType 'CRM Lead Status' -#: crm/fcrm/doctype/crm_deal_status/crm_deal_status.json -#: crm/fcrm/doctype/crm_lead_status/crm_lead_status.json +#. Option for the 'Color' (Select) field in PageType 'CRM Deal Status' +#. Option for the 'Color' (Select) field in PageType 'CRM Lead Status' +#: crm/fcrm/pagetype/crm_deal_status/crm_deal_status.json +#: crm/fcrm/pagetype/crm_lead_status/crm_lead_status.json msgid "pink" msgstr "" @@ -6232,10 +6232,10 @@ msgstr "prywatny" msgid "public" msgstr "publiczny" -#. Option for the 'Color' (Select) field in DocType 'CRM Deal Status' -#. Option for the 'Color' (Select) field in DocType 'CRM Lead Status' -#: crm/fcrm/doctype/crm_deal_status/crm_deal_status.json -#: crm/fcrm/doctype/crm_lead_status/crm_lead_status.json +#. Option for the 'Color' (Select) field in PageType 'CRM Deal Status' +#. Option for the 'Color' (Select) field in PageType 'CRM Lead Status' +#: crm/fcrm/pagetype/crm_deal_status/crm_deal_status.json +#: crm/fcrm/pagetype/crm_lead_status/crm_lead_status.json msgid "purple" msgstr "fioletowy" @@ -6243,17 +6243,17 @@ msgstr "fioletowy" msgid "received a whatsapp message in {0}" msgstr "" -#. Option for the 'Color' (Select) field in DocType 'CRM Deal Status' -#. Option for the 'Color' (Select) field in DocType 'CRM Lead Status' -#: crm/fcrm/doctype/crm_deal_status/crm_deal_status.json -#: crm/fcrm/doctype/crm_lead_status/crm_lead_status.json +#. Option for the 'Color' (Select) field in PageType 'CRM Deal Status' +#. Option for the 'Color' (Select) field in PageType 'CRM Lead Status' +#: crm/fcrm/pagetype/crm_deal_status/crm_deal_status.json +#: crm/fcrm/pagetype/crm_lead_status/crm_lead_status.json msgid "red" msgstr "czerwony" -#. Option for the 'Color' (Select) field in DocType 'CRM Deal Status' -#. Option for the 'Color' (Select) field in DocType 'CRM Lead Status' -#: crm/fcrm/doctype/crm_deal_status/crm_deal_status.json -#: crm/fcrm/doctype/crm_lead_status/crm_lead_status.json +#. Option for the 'Color' (Select) field in PageType 'CRM Deal Status' +#. Option for the 'Color' (Select) field in PageType 'CRM Lead Status' +#: crm/fcrm/pagetype/crm_deal_status/crm_deal_status.json +#: crm/fcrm/pagetype/crm_lead_status/crm_lead_status.json msgid "teal" msgstr "" @@ -6266,10 +6266,10 @@ msgstr "" msgid "tomorrow" msgstr "" -#. Option for the 'Color' (Select) field in DocType 'CRM Deal Status' -#. Option for the 'Color' (Select) field in DocType 'CRM Lead Status' -#: crm/fcrm/doctype/crm_deal_status/crm_deal_status.json -#: crm/fcrm/doctype/crm_lead_status/crm_lead_status.json +#. Option for the 'Color' (Select) field in PageType 'CRM Deal Status' +#. Option for the 'Color' (Select) field in PageType 'CRM Lead Status' +#: crm/fcrm/pagetype/crm_deal_status/crm_deal_status.json +#: crm/fcrm/pagetype/crm_lead_status/crm_lead_status.json msgid "violet" msgstr "" @@ -6278,10 +6278,10 @@ msgstr "" msgid "which are not compatible with this UI, you will need to recreate the conditions here if you want to manage and add new conditions from this UI." msgstr "" -#. Option for the 'Color' (Select) field in DocType 'CRM Deal Status' -#. Option for the 'Color' (Select) field in DocType 'CRM Lead Status' -#: crm/fcrm/doctype/crm_deal_status/crm_deal_status.json -#: crm/fcrm/doctype/crm_lead_status/crm_lead_status.json +#. Option for the 'Color' (Select) field in PageType 'CRM Deal Status' +#. Option for the 'Color' (Select) field in PageType 'CRM Lead Status' +#: crm/fcrm/pagetype/crm_deal_status/crm_deal_status.json +#: crm/fcrm/pagetype/crm_lead_status/crm_lead_status.json msgid "yellow" msgstr "żółty" @@ -6379,7 +6379,7 @@ msgid "⚠️ Method \"{0}\" not found in class." msgstr "" #: frontend/src/data/script.js:83 -msgid "⚠️ No class found for doctype: {0}, it is mandatory to have a class for the parent doctype. it can be empty, but it should be present." +msgid "⚠️ No class found for pagetype: {0}, it is mandatory to have a class for the parent pagetype. it can be empty, but it should be present." msgstr "" #: frontend/src/data/script.js:180 diff --git a/crm/locale/pt.po b/crm/locale/pt.po index f6435713..53364d4c 100644 --- a/crm/locale/pt.po +++ b/crm/locale/pt.po @@ -1,6 +1,6 @@ msgid "" msgstr "" -"Project-Id-Version: frappe\n" +"Project-Id-Version: jingrow\n" "Report-Msgid-Bugs-To: shariq@jingrow.com\n" "POT-Creation-Date: 2025-09-21 09:35+0000\n" "PO-Revision-Date: 2025-09-22 20:42\n" @@ -11,10 +11,10 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Generated-By: Babel 2.16.0\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -"X-Crowdin-Project: frappe\n" +"X-Crowdin-Project: jingrow\n" "X-Crowdin-Project-ID: 639578\n" "X-Crowdin-Language: pt-PT\n" -"X-Crowdin-File: /[frappe.crm] develop/crm/locale/main.pot\n" +"X-Crowdin-File: /[jingrow.crm] develop/crm/locale/main.pot\n" "X-Crowdin-File-ID: 97\n" "Language: pt_PT\n" @@ -55,73 +55,73 @@ msgstr "há 1 semana" msgid "1 year ago" msgstr "1 ano atrás" -#. Option for the 'No. of Employees' (Select) field in DocType 'CRM Deal' -#. Option for the 'No. of Employees' (Select) field in DocType 'CRM Lead' -#. Option for the 'No. of Employees' (Select) field in DocType 'CRM +#. Option for the 'No. of Employees' (Select) field in PageType 'CRM Deal' +#. Option for the 'No. of Employees' (Select) field in PageType 'CRM Lead' +#. Option for the 'No. of Employees' (Select) field in PageType 'CRM #. Organization' -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_lead/crm_lead.json -#: crm/fcrm/doctype/crm_organization/crm_organization.json +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_lead/crm_lead.json +#: crm/fcrm/pagetype/crm_organization/crm_organization.json msgid "1-10" msgstr "1-10" -#. Option for the 'No. of Employees' (Select) field in DocType 'CRM Deal' -#. Option for the 'No. of Employees' (Select) field in DocType 'CRM Lead' -#. Option for the 'No. of Employees' (Select) field in DocType 'CRM +#. Option for the 'No. of Employees' (Select) field in PageType 'CRM Deal' +#. Option for the 'No. of Employees' (Select) field in PageType 'CRM Lead' +#. Option for the 'No. of Employees' (Select) field in PageType 'CRM #. Organization' -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_lead/crm_lead.json -#: crm/fcrm/doctype/crm_organization/crm_organization.json +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_lead/crm_lead.json +#: crm/fcrm/pagetype/crm_organization/crm_organization.json msgid "1000+" msgstr "1000+" -#. Option for the 'No. of Employees' (Select) field in DocType 'CRM Deal' -#. Option for the 'No. of Employees' (Select) field in DocType 'CRM Lead' -#. Option for the 'No. of Employees' (Select) field in DocType 'CRM +#. Option for the 'No. of Employees' (Select) field in PageType 'CRM Deal' +#. Option for the 'No. of Employees' (Select) field in PageType 'CRM Lead' +#. Option for the 'No. of Employees' (Select) field in PageType 'CRM #. Organization' -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_lead/crm_lead.json -#: crm/fcrm/doctype/crm_organization/crm_organization.json +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_lead/crm_lead.json +#: crm/fcrm/pagetype/crm_organization/crm_organization.json msgid "11-50" msgstr "11-50" -#. Option for the 'No. of Employees' (Select) field in DocType 'CRM Deal' -#. Option for the 'No. of Employees' (Select) field in DocType 'CRM Lead' -#. Option for the 'No. of Employees' (Select) field in DocType 'CRM +#. Option for the 'No. of Employees' (Select) field in PageType 'CRM Deal' +#. Option for the 'No. of Employees' (Select) field in PageType 'CRM Lead' +#. Option for the 'No. of Employees' (Select) field in PageType 'CRM #. Organization' -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_lead/crm_lead.json -#: crm/fcrm/doctype/crm_organization/crm_organization.json +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_lead/crm_lead.json +#: crm/fcrm/pagetype/crm_organization/crm_organization.json msgid "201-500" msgstr "201-500" -#. Option for the 'No. of Employees' (Select) field in DocType 'CRM Deal' -#. Option for the 'No. of Employees' (Select) field in DocType 'CRM Lead' -#. Option for the 'No. of Employees' (Select) field in DocType 'CRM +#. Option for the 'No. of Employees' (Select) field in PageType 'CRM Deal' +#. Option for the 'No. of Employees' (Select) field in PageType 'CRM Lead' +#. Option for the 'No. of Employees' (Select) field in PageType 'CRM #. Organization' -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_lead/crm_lead.json -#: crm/fcrm/doctype/crm_organization/crm_organization.json +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_lead/crm_lead.json +#: crm/fcrm/pagetype/crm_organization/crm_organization.json msgid "501-1000" msgstr "501-1000" -#. Option for the 'No. of Employees' (Select) field in DocType 'CRM Deal' -#. Option for the 'No. of Employees' (Select) field in DocType 'CRM Lead' -#. Option for the 'No. of Employees' (Select) field in DocType 'CRM +#. Option for the 'No. of Employees' (Select) field in PageType 'CRM Deal' +#. Option for the 'No. of Employees' (Select) field in PageType 'CRM Lead' +#. Option for the 'No. of Employees' (Select) field in PageType 'CRM #. Organization' -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_lead/crm_lead.json -#: crm/fcrm/doctype/crm_organization/crm_organization.json +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_lead/crm_lead.json +#: crm/fcrm/pagetype/crm_organization/crm_organization.json msgid "51-200" msgstr "51-200" -#. Paragraph text in the Frappe CRM Workspace -#: crm/fcrm/workspace/frappe_crm/frappe_crm.json +#. Paragraph text in the Jingrow CRM Workspace +#: crm/fcrm/workspace/jingrow_crm/jingrow_crm.json msgid "META" msgstr "META" -#. Paragraph text in the Frappe CRM Workspace -#: crm/fcrm/workspace/frappe_crm/frappe_crm.json +#. Paragraph text in the Jingrow CRM Workspace +#: crm/fcrm/workspace/jingrow_crm/jingrow_crm.json msgid "SHORTCUTS" msgstr "ATALHOS" @@ -130,8 +130,8 @@ msgstr "ATALHOS" msgid "

Dear {{ lead_name }},

\\n\\n

This is a reminder for the payment of {{ grand_total }}.

\\n\\n

Thanks,

\\n

Frappé

" msgstr "

Caro {{ lead_name }},

\\n\\n

Este é um lembrete para o pagamento de {{ grand_total }}.

\\n\\n

Obrigado,

\\n

Frappé

" -#. Header text in the Frappe CRM Workspace -#: crm/fcrm/workspace/frappe_crm/frappe_crm.json +#. Header text in the Jingrow CRM Workspace +#: crm/fcrm/workspace/jingrow_crm/jingrow_crm.json msgid "PORTAL" msgstr "PORTAL" @@ -139,7 +139,7 @@ msgstr "PORTAL" msgid "@John, can you please check this?" msgstr "@John, podes verificar isto?" -#: crm/fcrm/doctype/crm_lead/crm_lead.py:56 +#: crm/fcrm/pagetype/crm_lead/crm_lead.py:56 msgid "A Lead requires either a person's name or an organization's name" msgstr "Um lead requer o nome de uma pessoa ou o nome de uma organização" @@ -147,14 +147,14 @@ msgstr "Um lead requer o nome de uma pessoa ou o nome de uma organização" msgid "A new account has been created for you at {0}" msgstr "Foi criada uma nova conta para si em {0}" -#. Label of the api_key (Data) field in DocType 'CRM Exotel Settings' -#. Label of the api_key (Data) field in DocType 'CRM Twilio Settings' -#. Label of the api_key (Data) field in DocType 'ERPNext CRM Settings' -#. Label of the api_key (Data) field in DocType 'Helpdesk CRM Settings' -#: crm/fcrm/doctype/crm_exotel_settings/crm_exotel_settings.json -#: crm/fcrm/doctype/crm_twilio_settings/crm_twilio_settings.json -#: crm/fcrm/doctype/erpnext_crm_settings/erpnext_crm_settings.json -#: crm/fcrm/doctype/helpdesk_crm_settings/helpdesk_crm_settings.json +#. Label of the api_key (Data) field in PageType 'CRM Exotel Settings' +#. Label of the api_key (Data) field in PageType 'CRM Twilio Settings' +#. Label of the api_key (Data) field in PageType 'ERPNext CRM Settings' +#. Label of the api_key (Data) field in PageType 'Helpdesk CRM Settings' +#: crm/fcrm/pagetype/crm_exotel_settings/crm_exotel_settings.json +#: crm/fcrm/pagetype/crm_twilio_settings/crm_twilio_settings.json +#: crm/fcrm/pagetype/erpnext_crm_settings/erpnext_crm_settings.json +#: crm/fcrm/pagetype/helpdesk_crm_settings/helpdesk_crm_settings.json msgid "API Key" msgstr "API Key" @@ -162,17 +162,17 @@ msgstr "API Key" msgid "API Key is required" msgstr "É necessária uma chave API" -#. Label of the api_secret (Password) field in DocType 'CRM Twilio Settings' -#. Label of the api_secret (Password) field in DocType 'ERPNext CRM Settings' -#. Label of the api_secret (Password) field in DocType 'Helpdesk CRM Settings' -#: crm/fcrm/doctype/crm_twilio_settings/crm_twilio_settings.json -#: crm/fcrm/doctype/erpnext_crm_settings/erpnext_crm_settings.json -#: crm/fcrm/doctype/helpdesk_crm_settings/helpdesk_crm_settings.json +#. Label of the api_secret (Password) field in PageType 'CRM Twilio Settings' +#. Label of the api_secret (Password) field in PageType 'ERPNext CRM Settings' +#. Label of the api_secret (Password) field in PageType 'Helpdesk CRM Settings' +#: crm/fcrm/pagetype/crm_twilio_settings/crm_twilio_settings.json +#: crm/fcrm/pagetype/erpnext_crm_settings/erpnext_crm_settings.json +#: crm/fcrm/pagetype/helpdesk_crm_settings/helpdesk_crm_settings.json msgid "API Secret" msgstr "API Secret" -#. Label of the api_token (Password) field in DocType 'CRM Exotel Settings' -#: crm/fcrm/doctype/crm_exotel_settings/crm_exotel_settings.json +#. Label of the api_token (Password) field in PageType 'CRM Exotel Settings' +#: crm/fcrm/pagetype/crm_exotel_settings/crm_exotel_settings.json msgid "API Token" msgstr "API Token" @@ -180,7 +180,7 @@ msgstr "API Token" msgid "Accept" msgstr "Aceitar" -#: crm/fcrm/doctype/crm_invitation/crm_invitation.js:7 +#: crm/fcrm/pagetype/crm_invitation/crm_invitation.js:7 msgid "Accept Invitation" msgstr "Aceitar Convite" @@ -188,22 +188,22 @@ msgstr "Aceitar Convite" msgid "Accept call" msgstr "Aceitar chamada" -#. Option for the 'Status' (Select) field in DocType 'CRM Invitation' -#: crm/fcrm/doctype/crm_invitation/crm_invitation.json +#. Option for the 'Status' (Select) field in PageType 'CRM Invitation' +#: crm/fcrm/pagetype/crm_invitation/crm_invitation.json msgid "Accepted" msgstr "Aceitado" -#. Label of the accepted_at (Datetime) field in DocType 'CRM Invitation' -#: crm/fcrm/doctype/crm_invitation/crm_invitation.json +#. Label of the accepted_at (Datetime) field in PageType 'CRM Invitation' +#: crm/fcrm/pagetype/crm_invitation/crm_invitation.json msgid "Accepted At" msgstr "Aceitado a" -#. Label of the access_key (Data) field in DocType 'FCRM Settings' -#: crm/fcrm/doctype/fcrm_settings/fcrm_settings.json +#. Label of the access_key (Data) field in PageType 'FCRM Settings' +#: crm/fcrm/pagetype/fcrm_settings/fcrm_settings.json msgid "Access Key" msgstr "Chave de Acesso" -#: crm/fcrm/doctype/fcrm_settings/fcrm_settings.py:156 +#: crm/fcrm/pagetype/fcrm_settings/fcrm_settings.py:156 msgid "Access Key is required for Service Provider: {0}" msgstr "A Chave de Acesso é necessária para o Provedor de Serviço: {0}" @@ -219,10 +219,10 @@ msgstr "Chave de acesso do Exchangerate Host. Obrigatória para obter taxas de c msgid "Account Name" msgstr "Nome da Conta" -#. Label of the account_sid (Data) field in DocType 'CRM Exotel Settings' -#. Label of the account_sid (Data) field in DocType 'CRM Twilio Settings' -#: crm/fcrm/doctype/crm_exotel_settings/crm_exotel_settings.json -#: crm/fcrm/doctype/crm_twilio_settings/crm_twilio_settings.json +#. Label of the account_sid (Data) field in PageType 'CRM Exotel Settings' +#. Label of the account_sid (Data) field in PageType 'CRM Twilio Settings' +#: crm/fcrm/pagetype/crm_exotel_settings/crm_exotel_settings.json +#: crm/fcrm/pagetype/crm_twilio_settings/crm_twilio_settings.json msgid "Account SID" msgstr "SID da conta" @@ -296,9 +296,9 @@ msgstr "Adicionar Ordenação" msgid "Add Tab" msgstr "Adicionar Aba" -#. Label of the add_weekly_holidays_section (Section Break) field in DocType +#. Label of the add_weekly_holidays_section (Section Break) field in PageType #. 'CRM Holiday List' -#: crm/fcrm/doctype/crm_holiday_list/crm_holiday_list.json +#: crm/fcrm/pagetype/crm_holiday_list/crm_holiday_list.json msgid "Add Weekly Holidays" msgstr "Adicionar Feriados Semanais" @@ -363,8 +363,8 @@ msgstr "Adicionar nota" msgid "Add sample data" msgstr "" -#. Description of the 'Icon' (Code) field in DocType 'CRM Dropdown Item' -#: crm/fcrm/doctype/crm_dropdown_item/crm_dropdown_item.json +#. Description of the 'Icon' (Code) field in PageType 'CRM Dropdown Item' +#: crm/fcrm/pagetype/crm_dropdown_item/crm_dropdown_item.json msgid "Add svg code or use feather icons e.g 'settings'" msgstr "Adicione código svg ou utilize ícones de penas, ex. 'definições'" @@ -372,8 +372,8 @@ msgstr "Adicione código svg ou utilize ícones de penas, ex. 'definições'" msgid "Add task" msgstr "Adicionar tarefa" -#. Label of the add_to_holidays (Button) field in DocType 'CRM Holiday List' -#: crm/fcrm/doctype/crm_holiday_list/crm_holiday_list.json +#. Label of the add_to_holidays (Button) field in PageType 'CRM Holiday List' +#: crm/fcrm/pagetype/crm_holiday_list/crm_holiday_list.json msgid "Add to Holidays" msgstr "Adicionar às Férias" @@ -385,8 +385,8 @@ msgstr "Adicione o seu primeiro comentário" msgid "Add, edit, and manage email templates for various CRM communications" msgstr "Adicione, edite e gerencie modelos de e-mail para diversas comunicações de CRM" -#. Label of the address (Link) field in DocType 'CRM Organization' -#: crm/fcrm/doctype/crm_organization/crm_organization.json +#. Label of the address (Link) field in PageType 'CRM Organization' +#: crm/fcrm/pagetype/crm_organization/crm_organization.json msgid "Address" msgstr "Endereço" @@ -406,14 +406,14 @@ msgid "Agent is unavailable to take the call, please call after some time." msgstr "O agente não está disponível para atender a chamada, ligue mais tarde." #. Name of a role -#: crm/fcrm/doctype/crm_exotel_settings/crm_exotel_settings.json -#: crm/fcrm/doctype/crm_fields_layout/crm_fields_layout.json -#: crm/fcrm/doctype/crm_form_script/crm_form_script.json -#: crm/fcrm/doctype/crm_industry/crm_industry.json -#: crm/fcrm/doctype/crm_lead/crm_lead.json -#: crm/fcrm/doctype/crm_lead_source/crm_lead_source.json -#: crm/fcrm/doctype/crm_lead_status/crm_lead_status.json -#: crm/fcrm/doctype/fcrm_settings/fcrm_settings.json +#: crm/fcrm/pagetype/crm_exotel_settings/crm_exotel_settings.json +#: crm/fcrm/pagetype/crm_fields_layout/crm_fields_layout.json +#: crm/fcrm/pagetype/crm_form_script/crm_form_script.json +#: crm/fcrm/pagetype/crm_industry/crm_industry.json +#: crm/fcrm/pagetype/crm_lead/crm_lead.json +#: crm/fcrm/pagetype/crm_lead_source/crm_lead_source.json +#: crm/fcrm/pagetype/crm_lead_status/crm_lead_status.json +#: crm/fcrm/pagetype/fcrm_settings/fcrm_settings.json #: frontend/src/components/Settings/EmailTemplate/EmailTemplates.vue:76 #: frontend/src/components/Settings/Users.vue:85 msgid "All" @@ -426,16 +426,16 @@ msgstr "Todos" msgid "All day" msgstr "" -#. Label of the amount (Currency) field in DocType 'CRM Products' -#: crm/fcrm/doctype/crm_products/crm_products.json +#. Label of the amount (Currency) field in PageType 'CRM Products' +#: crm/fcrm/pagetype/crm_products/crm_products.json #: frontend/src/pages/Contact.vue:499 frontend/src/pages/MobileContact.vue:507 #: frontend/src/pages/MobileOrganization.vue:451 #: frontend/src/pages/Organization.vue:472 msgid "Amount" msgstr "Montante" -#. Description of the 'Net Amount' (Currency) field in DocType 'CRM Products' -#: crm/fcrm/doctype/crm_products/crm_products.json +#. Description of the 'Net Amount' (Currency) field in PageType 'CRM Products' +#: crm/fcrm/pagetype/crm_products/crm_products.json msgid "Amount after discount" msgstr "Montante após desconto" @@ -447,13 +447,13 @@ msgstr "Ocorreu um erro" msgid "An error occurred while updating the document" msgstr "Ocorreu um erro ao atualizar o documento" -#. Description of the 'Favicon' (Attach) field in DocType 'FCRM Settings' -#: crm/fcrm/doctype/fcrm_settings/fcrm_settings.json +#. Description of the 'Favicon' (Attach) field in PageType 'FCRM Settings' +#: crm/fcrm/pagetype/fcrm_settings/fcrm_settings.json msgid "An icon file with .ico extension. Should be 16 x 16 px. Generated using a favicon generator. [favicon-generator.org]" msgstr "Um ficheiro de ícone com extensão .ico. Deve ter 16 x 16 px. Gerado com um gerador de favicon. [favicon-generator.org]" -#. Description of the 'Logo' (Attach) field in DocType 'FCRM Settings' -#: crm/fcrm/doctype/fcrm_settings/fcrm_settings.json +#. Description of the 'Logo' (Attach) field in PageType 'FCRM Settings' +#: crm/fcrm/pagetype/fcrm_settings/fcrm_settings.json msgid "An image with 1:1 & 2:1 ratio is preferred" msgstr "É preferível uma imagem com rácio 1:1 e 2:1" @@ -461,12 +461,12 @@ msgstr "É preferível uma imagem com rácio 1:1 e 2:1" msgid "And" msgstr "E" -#. Label of the annual_revenue (Currency) field in DocType 'CRM Deal' -#. Label of the annual_revenue (Currency) field in DocType 'CRM Lead' -#. Label of the annual_revenue (Currency) field in DocType 'CRM Organization' -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_lead/crm_lead.json -#: crm/fcrm/doctype/crm_organization/crm_organization.json +#. Label of the annual_revenue (Currency) field in PageType 'CRM Deal' +#. Label of the annual_revenue (Currency) field in PageType 'CRM Lead' +#. Label of the annual_revenue (Currency) field in PageType 'CRM Organization' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_lead/crm_lead.json +#: crm/fcrm/pagetype/crm_organization/crm_organization.json msgid "Annual Revenue" msgstr "Receita anual" @@ -488,13 +488,13 @@ msgstr "" msgid "Apply" msgstr "Aplicar" -#. Label of the apply_on (Link) field in DocType 'CRM Service Level Agreement' -#: crm/fcrm/doctype/crm_service_level_agreement/crm_service_level_agreement.json +#. Label of the apply_on (Link) field in PageType 'CRM Service Level Agreement' +#: crm/fcrm/pagetype/crm_service_level_agreement/crm_service_level_agreement.json msgid "Apply On" msgstr "Aplicar em" -#. Label of the view (Select) field in DocType 'CRM Form Script' -#: crm/fcrm/doctype/crm_form_script/crm_form_script.json +#. Label of the view (Select) field in PageType 'CRM Form Script' +#: crm/fcrm/pagetype/crm_form_script/crm_form_script.json msgid "Apply To" msgstr "Aplicar a" @@ -540,10 +540,10 @@ msgid "Are you sure you want to go back? Unsaved changes will be lost." msgstr "" #: frontend/src/composables/frappecloud.js:24 -msgid "Are you sure you want to login to your Frappe Cloud dashboard?" -msgstr "Tem a certeza de que pretende iniciar sessão no seu dashboard da Frappe Cloud?" +msgid "Are you sure you want to login to your Jingrow Cloud dashboard?" +msgstr "Tem a certeza de que pretende iniciar sessão no seu dashboard da Jingrow Cloud?" -#: crm/fcrm/doctype/erpnext_crm_settings/erpnext_crm_settings.js:9 +#: crm/fcrm/pagetype/erpnext_crm_settings/erpnext_crm_settings.js:9 msgid "Are you sure you want to reset 'Create Quotation from CRM Deal' Form Script?" msgstr "" @@ -555,7 +555,7 @@ msgstr "" msgid "Are you sure you want to unlink {0} linked item(s)?" msgstr "" -#: crm/fcrm/doctype/fcrm_settings/fcrm_settings.py:193 +#: crm/fcrm/pagetype/fcrm_settings/fcrm_settings.py:193 msgid "Ask your manager to set up the Exchange Rate Provider, as default provider does not support currency conversion for {0} to {1}." msgstr "" @@ -581,8 +581,8 @@ msgstr "Atribuir a" msgid "Assign to me" msgstr "Atribuir a mim" -#. Label of the assigned_to (Link) field in DocType 'CRM Task' -#: crm/fcrm/doctype/crm_task/crm_task.json +#. Label of the assigned_to (Link) field in PageType 'CRM Task' +#: crm/fcrm/pagetype/crm_task/crm_task.json msgid "Assigned To" msgstr "Atribuído a" @@ -594,13 +594,13 @@ msgstr "Regras de Atribuição" msgid "Assignees" msgstr "" -#. Option for the 'Type' (Select) field in DocType 'CRM Notification' -#: crm/fcrm/doctype/crm_notification/crm_notification.json +#. Option for the 'Type' (Select) field in PageType 'CRM Notification' +#: crm/fcrm/pagetype/crm_notification/crm_notification.json msgid "Assignment" msgstr "Atribuição" -#. Label of a shortcut in the Frappe CRM Workspace -#: crm/fcrm/workspace/frappe_crm/frappe_crm.json +#. Label of a shortcut in the Jingrow CRM Workspace +#: crm/fcrm/workspace/jingrow_crm/jingrow_crm.json msgid "Assignment Rule" msgstr "Regra de atribuição" @@ -678,14 +678,14 @@ msgstr "Anexos" msgid "Attendees" msgstr "Participantes" -#. Label of the auth_token (Password) field in DocType 'CRM Twilio Settings' -#: crm/fcrm/doctype/crm_twilio_settings/crm_twilio_settings.json +#. Label of the auth_token (Password) field in PageType 'CRM Twilio Settings' +#: crm/fcrm/pagetype/crm_twilio_settings/crm_twilio_settings.json msgid "Auth Token" msgstr "Auth Token" -#. Label of the auto_update_expected_deal_value (Check) field in DocType 'FCRM +#. Label of the auto_update_expected_deal_value (Check) field in PageType 'FCRM #. Settings' -#: crm/fcrm/doctype/fcrm_settings/fcrm_settings.json +#: crm/fcrm/pagetype/fcrm_settings/fcrm_settings.json msgid "Auto Update Expected Deal Value" msgstr "" @@ -702,8 +702,8 @@ msgid "Auto update of expected deal value enabled" msgstr "" #. Description of the 'Auto Update Expected Deal Value' (Check) field in -#. DocType 'FCRM Settings' -#: crm/fcrm/doctype/fcrm_settings/fcrm_settings.json +#. PageType 'FCRM Settings' +#: crm/fcrm/pagetype/fcrm_settings/fcrm_settings.json #: frontend/src/components/Settings/ForecastingSettings.vue:46 msgid "Automatically update \"Expected Deal Value\" based on the total value of associated products in a deal" msgstr "" @@ -793,8 +793,8 @@ msgstr "" msgid "Back to file upload" msgstr "" -#. Option for the 'Status' (Select) field in DocType 'CRM Task' -#: crm/fcrm/doctype/crm_task/crm_task.json +#. Option for the 'Status' (Select) field in PageType 'CRM Task' +#: crm/fcrm/pagetype/crm_task/crm_task.json msgid "Backlog" msgstr "" @@ -818,8 +818,8 @@ msgstr "" msgid "Brand settings" msgstr "" -#. Label of the branding_tab (Tab Break) field in DocType 'FCRM Settings' -#: crm/fcrm/doctype/fcrm_settings/fcrm_settings.json +#. Label of the branding_tab (Tab Break) field in PageType 'FCRM Settings' +#: crm/fcrm/pagetype/fcrm_settings/fcrm_settings.json msgid "Branding" msgstr "" @@ -827,8 +827,8 @@ msgstr "" msgid "Bulk Edit" msgstr "" -#. Option for the 'Status' (Select) field in DocType 'CRM Call Log' -#: crm/fcrm/doctype/crm_call_log/crm_call_log.json +#. Option for the 'Status' (Select) field in PageType 'CRM Call Log' +#: crm/fcrm/pagetype/crm_call_log/crm_call_log.json msgid "Busy" msgstr "Ocupado" @@ -838,174 +838,174 @@ msgstr "Ocupado" msgid "CC" msgstr "" -#. Name of a DocType -#: crm/fcrm/doctype/crm_call_log/crm_call_log.json +#. Name of a PageType +#: crm/fcrm/pagetype/crm_call_log/crm_call_log.json msgid "CRM Call Log" msgstr "" -#. Name of a DocType -#: crm/fcrm/doctype/crm_communication_status/crm_communication_status.json +#. Name of a PageType +#: crm/fcrm/pagetype/crm_communication_status/crm_communication_status.json msgid "CRM Communication Status" msgstr "" -#. Name of a DocType -#: crm/fcrm/doctype/crm_contacts/crm_contacts.json +#. Name of a PageType +#: crm/fcrm/pagetype/crm_contacts/crm_contacts.json msgid "CRM Contacts" msgstr "" -#. Name of a DocType -#: crm/fcrm/doctype/crm_dashboard/crm_dashboard.json +#. Name of a PageType +#: crm/fcrm/pagetype/crm_dashboard/crm_dashboard.json #: frontend/src/pages/Dashboard.vue:304 msgid "CRM Dashboard" msgstr "" -#. Name of a DocType -#: crm/fcrm/doctype/crm_deal/crm_deal.json +#. Name of a PageType +#: crm/fcrm/pagetype/crm_deal/crm_deal.json msgid "CRM Deal" msgstr "" -#. Name of a DocType -#: crm/fcrm/doctype/crm_deal_status/crm_deal_status.json +#. Name of a PageType +#: crm/fcrm/pagetype/crm_deal_status/crm_deal_status.json msgid "CRM Deal Status" msgstr "" -#. Name of a DocType -#: crm/fcrm/doctype/crm_dropdown_item/crm_dropdown_item.json +#. Name of a PageType +#: crm/fcrm/pagetype/crm_dropdown_item/crm_dropdown_item.json msgid "CRM Dropdown Item" msgstr "" -#. Name of a DocType -#: crm/fcrm/doctype/crm_exotel_settings/crm_exotel_settings.json +#. Name of a PageType +#: crm/fcrm/pagetype/crm_exotel_settings/crm_exotel_settings.json msgid "CRM Exotel Settings" msgstr "" -#. Name of a DocType -#: crm/fcrm/doctype/crm_fields_layout/crm_fields_layout.json +#. Name of a PageType +#: crm/fcrm/pagetype/crm_fields_layout/crm_fields_layout.json msgid "CRM Fields Layout" msgstr "" -#. Name of a DocType -#: crm/fcrm/doctype/crm_form_script/crm_form_script.json +#. Name of a PageType +#: crm/fcrm/pagetype/crm_form_script/crm_form_script.json msgid "CRM Form Script" msgstr "" -#. Name of a DocType -#: crm/fcrm/doctype/crm_global_settings/crm_global_settings.json +#. Name of a PageType +#: crm/fcrm/pagetype/crm_global_settings/crm_global_settings.json msgid "CRM Global Settings" msgstr "" -#. Name of a DocType -#: crm/fcrm/doctype/crm_holiday/crm_holiday.json +#. Name of a PageType +#: crm/fcrm/pagetype/crm_holiday/crm_holiday.json msgid "CRM Holiday" msgstr "" -#. Name of a DocType -#: crm/fcrm/doctype/crm_holiday_list/crm_holiday_list.json +#. Name of a PageType +#: crm/fcrm/pagetype/crm_holiday_list/crm_holiday_list.json msgid "CRM Holiday List" msgstr "" -#. Name of a DocType -#: crm/fcrm/doctype/crm_industry/crm_industry.json +#. Name of a PageType +#: crm/fcrm/pagetype/crm_industry/crm_industry.json msgid "CRM Industry" msgstr "" -#. Name of a DocType -#: crm/fcrm/doctype/crm_invitation/crm_invitation.json +#. Name of a PageType +#: crm/fcrm/pagetype/crm_invitation/crm_invitation.json msgid "CRM Invitation" msgstr "" -#. Name of a DocType -#: crm/fcrm/doctype/crm_lead/crm_lead.json +#. Name of a PageType +#: crm/fcrm/pagetype/crm_lead/crm_lead.json msgid "CRM Lead" msgstr "" -#. Name of a DocType -#: crm/fcrm/doctype/crm_lead_source/crm_lead_source.json +#. Name of a PageType +#: crm/fcrm/pagetype/crm_lead_source/crm_lead_source.json msgid "CRM Lead Source" msgstr "" -#. Name of a DocType -#: crm/fcrm/doctype/crm_lead_status/crm_lead_status.json +#. Name of a PageType +#: crm/fcrm/pagetype/crm_lead_status/crm_lead_status.json msgid "CRM Lead Status" msgstr "" -#. Name of a DocType -#: crm/fcrm/doctype/crm_lost_reason/crm_lost_reason.json +#. Name of a PageType +#: crm/fcrm/pagetype/crm_lost_reason/crm_lost_reason.json msgid "CRM Lost Reason" msgstr "" -#. Name of a DocType -#: crm/fcrm/doctype/crm_notification/crm_notification.json +#. Name of a PageType +#: crm/fcrm/pagetype/crm_notification/crm_notification.json msgid "CRM Notification" msgstr "" -#. Name of a DocType -#: crm/fcrm/doctype/crm_organization/crm_organization.json +#. Name of a PageType +#: crm/fcrm/pagetype/crm_organization/crm_organization.json msgid "CRM Organization" msgstr "" -#. Label of a shortcut in the Frappe CRM Workspace -#: crm/fcrm/workspace/frappe_crm/frappe_crm.json +#. Label of a shortcut in the Jingrow CRM Workspace +#: crm/fcrm/workspace/jingrow_crm/jingrow_crm.json msgid "CRM Portal Page" msgstr "" -#. Name of a DocType -#: crm/fcrm/doctype/crm_product/crm_product.json +#. Name of a PageType +#: crm/fcrm/pagetype/crm_product/crm_product.json msgid "CRM Product" msgstr "" -#. Name of a DocType -#: crm/fcrm/doctype/crm_products/crm_products.json +#. Name of a PageType +#: crm/fcrm/pagetype/crm_products/crm_products.json msgid "CRM Products" msgstr "" -#. Name of a DocType -#: crm/fcrm/doctype/crm_service_day/crm_service_day.json +#. Name of a PageType +#: crm/fcrm/pagetype/crm_service_day/crm_service_day.json msgid "CRM Service Day" msgstr "" -#. Name of a DocType -#: crm/fcrm/doctype/crm_service_level_agreement/crm_service_level_agreement.json +#. Name of a PageType +#: crm/fcrm/pagetype/crm_service_level_agreement/crm_service_level_agreement.json msgid "CRM Service Level Agreement" msgstr "" -#. Name of a DocType -#: crm/fcrm/doctype/crm_service_level_priority/crm_service_level_priority.json +#. Name of a PageType +#: crm/fcrm/pagetype/crm_service_level_priority/crm_service_level_priority.json msgid "CRM Service Level Priority" msgstr "" -#. Name of a DocType -#: crm/fcrm/doctype/crm_status_change_log/crm_status_change_log.json +#. Name of a PageType +#: crm/fcrm/pagetype/crm_status_change_log/crm_status_change_log.json msgid "CRM Status Change Log" msgstr "" -#. Name of a DocType -#: crm/fcrm/doctype/crm_task/crm_task.json +#. Name of a PageType +#: crm/fcrm/pagetype/crm_task/crm_task.json msgid "CRM Task" msgstr "" -#. Name of a DocType -#: crm/fcrm/doctype/crm_telephony_agent/crm_telephony_agent.json +#. Name of a PageType +#: crm/fcrm/pagetype/crm_telephony_agent/crm_telephony_agent.json msgid "CRM Telephony Agent" msgstr "" -#. Name of a DocType -#: crm/fcrm/doctype/crm_telephony_phone/crm_telephony_phone.json +#. Name of a PageType +#: crm/fcrm/pagetype/crm_telephony_phone/crm_telephony_phone.json msgid "CRM Telephony Phone" msgstr "" -#. Name of a DocType -#: crm/fcrm/doctype/crm_territory/crm_territory.json +#. Name of a PageType +#: crm/fcrm/pagetype/crm_territory/crm_territory.json msgid "CRM Territory" msgstr "" -#. Name of a DocType -#: crm/fcrm/doctype/crm_twilio_settings/crm_twilio_settings.json +#. Name of a PageType +#: crm/fcrm/pagetype/crm_twilio_settings/crm_twilio_settings.json msgid "CRM Twilio Settings" msgstr "" -#. Name of a DocType -#: crm/fcrm/doctype/crm_view_settings/crm_view_settings.json +#. Name of a PageType +#: crm/fcrm/pagetype/crm_view_settings/crm_view_settings.json msgid "CRM View Settings" msgstr "" @@ -1021,13 +1021,13 @@ msgstr "CSV" msgid "Call Details" msgstr "" -#. Label of the receiver (Link) field in DocType 'CRM Call Log' -#: crm/fcrm/doctype/crm_call_log/crm_call_log.json +#. Label of the receiver (Link) field in PageType 'CRM Call Log' +#: crm/fcrm/pagetype/crm_call_log/crm_call_log.json msgid "Call Received By" msgstr "" -#. Description of the 'Duration' (Duration) field in DocType 'CRM Call Log' -#: crm/fcrm/doctype/crm_call_log/crm_call_log.json +#. Description of the 'Duration' (Duration) field in PageType 'CRM Call Log' +#: crm/fcrm/pagetype/crm_call_log/crm_call_log.json msgid "Call duration in seconds" msgstr "" @@ -1045,8 +1045,8 @@ msgstr "" msgid "Call with John Doe" msgstr "" -#. Label of the caller (Link) field in DocType 'CRM Call Log' -#: crm/fcrm/doctype/crm_call_log/crm_call_log.json +#. Label of the caller (Link) field in PageType 'CRM Call Log' +#: crm/fcrm/pagetype/crm_call_log/crm_call_log.json msgid "Caller" msgstr "" @@ -1083,10 +1083,10 @@ msgstr "Câmera" msgid "Cancel" msgstr "Cancelar" -#. Option for the 'Status' (Select) field in DocType 'CRM Call Log' -#. Option for the 'Status' (Select) field in DocType 'CRM Task' -#: crm/fcrm/doctype/crm_call_log/crm_call_log.json -#: crm/fcrm/doctype/crm_task/crm_task.json +#. Option for the 'Status' (Select) field in PageType 'CRM Call Log' +#. Option for the 'Status' (Select) field in PageType 'CRM Task' +#: crm/fcrm/pagetype/crm_call_log/crm_call_log.json +#: crm/fcrm/pagetype/crm_task/crm_task.json msgid "Canceled" msgstr "Cancelado" @@ -1094,7 +1094,7 @@ msgstr "Cancelado" msgid "Cannot change role of user with Admin access" msgstr "" -#: crm/fcrm/doctype/fcrm_settings/fcrm_settings.py:34 +#: crm/fcrm/pagetype/fcrm_settings/fcrm_settings.py:34 msgid "Cannot delete standard items {0}" msgstr "" @@ -1189,8 +1189,8 @@ msgstr "" msgid "Clear Sort" msgstr "" -#. Label of the clear_table (Button) field in DocType 'CRM Holiday List' -#: crm/fcrm/doctype/crm_holiday_list/crm_holiday_list.json +#. Label of the clear_table (Button) field in PageType 'CRM Holiday List' +#: crm/fcrm/pagetype/crm_holiday_list/crm_holiday_list.json msgid "Clear Table" msgstr "" @@ -1211,8 +1211,8 @@ msgstr "Fechar" msgid "Close panel" msgstr "" -#. Label of the closed_date (Date) field in DocType 'CRM Deal' -#: crm/fcrm/doctype/crm_deal/crm_deal.json +#. Label of the closed_date (Date) field in PageType 'CRM Deal' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json msgid "Closed Date" msgstr "" @@ -1224,10 +1224,10 @@ msgstr "" msgid "Collapsible" msgstr "" -#. Label of the color (Select) field in DocType 'CRM Deal Status' -#. Label of the color (Select) field in DocType 'CRM Lead Status' -#: crm/fcrm/doctype/crm_deal_status/crm_deal_status.json -#: crm/fcrm/doctype/crm_lead_status/crm_lead_status.json +#. Label of the color (Select) field in PageType 'CRM Deal Status' +#. Label of the color (Select) field in PageType 'CRM Lead Status' +#: crm/fcrm/pagetype/crm_deal_status/crm_deal_status.json +#: crm/fcrm/pagetype/crm_lead_status/crm_lead_status.json msgid "Color" msgstr "Cor" @@ -1235,20 +1235,20 @@ msgstr "Cor" msgid "Column" msgstr "Coluna" -#. Label of the column_field (Data) field in DocType 'CRM View Settings' -#: crm/fcrm/doctype/crm_view_settings/crm_view_settings.json +#. Label of the column_field (Data) field in PageType 'CRM View Settings' +#: crm/fcrm/pagetype/crm_view_settings/crm_view_settings.json #: frontend/src/components/Kanban/KanbanSettings.vue:12 msgid "Column Field" msgstr "" -#. Label of the columns (Code) field in DocType 'CRM View Settings' -#: crm/fcrm/doctype/crm_view_settings/crm_view_settings.json +#. Label of the columns (Code) field in PageType 'CRM View Settings' +#: crm/fcrm/pagetype/crm_view_settings/crm_view_settings.json #: frontend/src/components/ColumnSettings.vue:4 msgid "Columns" msgstr "Colunas" -#. Label of the comment (Link) field in DocType 'CRM Notification' -#: crm/fcrm/doctype/crm_notification/crm_notification.json +#. Label of the comment (Link) field in PageType 'CRM Notification' +#: crm/fcrm/pagetype/crm_notification/crm_notification.json #: frontend/src/components/CommentBox.vue:78 #: frontend/src/components/CommunicationArea.vue:16 #: frontend/src/components/Layouts/AppSidebar.vue:579 @@ -1264,20 +1264,20 @@ msgstr "Comentários" msgid "Common reasons for losing deals" msgstr "" -#. Label of the communication_status (Link) field in DocType 'CRM Deal' -#. Label of the communication_status (Link) field in DocType 'CRM Lead' -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_lead/crm_lead.json +#. Label of the communication_status (Link) field in PageType 'CRM Deal' +#. Label of the communication_status (Link) field in PageType 'CRM Lead' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_lead/crm_lead.json msgid "Communication Status" msgstr "" -#. Label of a shortcut in the Frappe CRM Workspace -#: crm/fcrm/workspace/frappe_crm/frappe_crm.json +#. Label of a shortcut in the Jingrow CRM Workspace +#: crm/fcrm/workspace/jingrow_crm/jingrow_crm.json msgid "Communication Statuses" msgstr "" -#. Label of the erpnext_company (Data) field in DocType 'ERPNext CRM Settings' -#: crm/fcrm/doctype/erpnext_crm_settings/erpnext_crm_settings.json +#. Label of the erpnext_company (Data) field in PageType 'ERPNext CRM Settings' +#: crm/fcrm/pagetype/erpnext_crm_settings/erpnext_crm_settings.json msgid "Company in ERPNext Site" msgstr "" @@ -1285,18 +1285,18 @@ msgstr "" msgid "Complete Registration" msgstr "" -#. Option for the 'Status' (Select) field in DocType 'CRM Call Log' -#: crm/fcrm/doctype/crm_call_log/crm_call_log.json +#. Option for the 'Status' (Select) field in PageType 'CRM Call Log' +#: crm/fcrm/pagetype/crm_call_log/crm_call_log.json msgid "Completed" msgstr "Concluído" -#. Option for the 'Device' (Select) field in DocType 'CRM Telephony Agent' -#: crm/fcrm/doctype/crm_telephony_agent/crm_telephony_agent.json +#. Option for the 'Device' (Select) field in PageType 'CRM Telephony Agent' +#: crm/fcrm/pagetype/crm_telephony_agent/crm_telephony_agent.json msgid "Computer" msgstr "Computador" -#. Label of the condition (Code) field in DocType 'CRM Service Level Agreement' -#: crm/fcrm/doctype/crm_service_level_agreement/crm_service_level_agreement.json +#. Label of the condition (Code) field in PageType 'CRM Service Level Agreement' +#: crm/fcrm/pagetype/crm_service_level_agreement/crm_service_level_agreement.json msgid "Condition" msgstr "Condição" @@ -1354,17 +1354,17 @@ msgstr "" msgid "Connect your email" msgstr "" -#. Label of the contact (Link) field in DocType 'CRM Contacts' -#. Label of the contact (Link) field in DocType 'CRM Deal' -#: crm/fcrm/doctype/crm_contacts/crm_contacts.json -#: crm/fcrm/doctype/crm_deal/crm_deal.json +#. Label of the contact (Link) field in PageType 'CRM Contacts' +#. Label of the contact (Link) field in PageType 'CRM Deal' +#: crm/fcrm/pagetype/crm_contacts/crm_contacts.json +#: crm/fcrm/pagetype/crm_deal/crm_deal.json #: frontend/src/components/Layouts/AppSidebar.vue:552 #: frontend/src/components/Modals/ConvertToDealModal.vue:51 #: frontend/src/pages/MobileLead.vue:145 msgid "Contact" msgstr "Contacto" -#: crm/fcrm/doctype/crm_lead/crm_lead.py:212 +#: crm/fcrm/pagetype/crm_lead/crm_lead.py:212 msgid "Contact Already Exists" msgstr "Contacto já existe" @@ -1384,7 +1384,7 @@ msgstr "Contacto adicionado" msgid "Contact already added" msgstr "Contacto já adicionado" -#: crm/fcrm/doctype/crm_lead/crm_lead.py:211 +#: crm/fcrm/pagetype/crm_lead/crm_lead.py:211 msgid "Contact already exists with {0}" msgstr "Contacto já existe com {0}" @@ -1405,18 +1405,18 @@ msgstr "" msgid "Contact updated" msgstr "" -#. Label of the contacts_tab (Tab Break) field in DocType 'CRM Deal' -#. Label of the contacts (Table) field in DocType 'CRM Deal' -#. Label of a shortcut in the Frappe CRM Workspace -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/workspace/frappe_crm/frappe_crm.json +#. Label of the contacts_tab (Tab Break) field in PageType 'CRM Deal' +#. Label of the contacts (Table) field in PageType 'CRM Deal' +#. Label of a shortcut in the Jingrow CRM Workspace +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/workspace/jingrow_crm/jingrow_crm.json #: frontend/src/pages/Contact.vue:234 frontend/src/pages/MobileContact.vue:212 #: frontend/src/pages/MobileOrganization.vue:331 msgid "Contacts" msgstr "Contactos" -#. Label of the content (Text Editor) field in DocType 'FCRM Note' -#: crm/fcrm/doctype/fcrm_note/fcrm_note.json +#. Label of the content (Text Editor) field in PageType 'FCRM Note' +#: crm/fcrm/pagetype/fcrm_note/fcrm_note.json #: frontend/src/components/Modals/NoteModal.vue:33 #: frontend/src/components/Settings/EmailTemplate/EditEmailTemplate.vue:89 #: frontend/src/components/Settings/EmailTemplate/EditEmailTemplate.vue:102 @@ -1456,8 +1456,8 @@ msgstr "" msgid "Convert to Deal" msgstr "" -#. Label of the converted (Check) field in DocType 'CRM Lead' -#: crm/fcrm/doctype/crm_lead/crm_lead.json +#. Label of the converted (Check) field in PageType 'CRM Lead' +#: crm/fcrm/pagetype/crm_lead/crm_lead.json msgid "Converted" msgstr "Convertido" @@ -1533,9 +1533,9 @@ msgstr "" msgid "Create an event" msgstr "" -#. Label of the create_customer_on_status_change (Check) field in DocType +#. Label of the create_customer_on_status_change (Check) field in PageType #. 'ERPNext CRM Settings' -#: crm/fcrm/doctype/erpnext_crm_settings/erpnext_crm_settings.json +#: crm/fcrm/pagetype/erpnext_crm_settings/erpnext_crm_settings.json msgid "Create customer on status change" msgstr "" @@ -1560,13 +1560,13 @@ msgstr "" msgid "Create your first task" msgstr "" -#. Label of the currency (Link) field in DocType 'CRM Deal' -#. Label of the currency (Link) field in DocType 'CRM Organization' -#. Label of the currency (Link) field in DocType 'FCRM Settings' -#. Label of the currency_tab (Tab Break) field in DocType 'FCRM Settings' -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_organization/crm_organization.json -#: crm/fcrm/doctype/fcrm_settings/fcrm_settings.json +#. Label of the currency (Link) field in PageType 'CRM Deal' +#. Label of the currency (Link) field in PageType 'CRM Organization' +#. Label of the currency (Link) field in PageType 'FCRM Settings' +#. Label of the currency_tab (Tab Break) field in PageType 'FCRM Settings' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_organization/crm_organization.json +#: crm/fcrm/pagetype/fcrm_settings/fcrm_settings.json #: frontend/src/components/Settings/CurrencySettings.vue:31 msgid "Currency" msgstr "Moeda" @@ -1631,13 +1631,13 @@ msgstr "" msgid "Data" msgstr "Dados" -#. Option for the 'Type' (Select) field in DocType 'CRM Fields Layout' -#: crm/fcrm/doctype/crm_fields_layout/crm_fields_layout.json +#. Option for the 'Type' (Select) field in PageType 'CRM Fields Layout' +#: crm/fcrm/pagetype/crm_fields_layout/crm_fields_layout.json msgid "Data Fields" msgstr "" -#. Label of the date (Date) field in DocType 'CRM Holiday' -#: crm/api/dashboard.py:601 crm/fcrm/doctype/crm_holiday/crm_holiday.json +#. Label of the date (Date) field in PageType 'CRM Holiday' +#: crm/api/dashboard.py:601 crm/fcrm/pagetype/crm_holiday/crm_holiday.json #: frontend/src/components/Calendar/CalendarEventPanel.vue:202 msgid "Date" msgstr "Data" @@ -1660,23 +1660,23 @@ msgstr "" msgid "Deal" msgstr "" -#. Label of the deal_owner (Link) field in DocType 'CRM Deal' -#: crm/fcrm/doctype/crm_deal/crm_deal.json +#. Label of the deal_owner (Link) field in PageType 'CRM Deal' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json msgid "Deal Owner" msgstr "" -#. Label of the deal_status (Link) field in DocType 'ERPNext CRM Settings' -#: crm/fcrm/doctype/erpnext_crm_settings/erpnext_crm_settings.json +#. Label of the deal_status (Link) field in PageType 'ERPNext CRM Settings' +#: crm/fcrm/pagetype/erpnext_crm_settings/erpnext_crm_settings.json msgid "Deal Status" msgstr "" -#. Label of a shortcut in the Frappe CRM Workspace -#: crm/fcrm/workspace/frappe_crm/frappe_crm.json +#. Label of a shortcut in the Jingrow CRM Workspace +#: crm/fcrm/workspace/jingrow_crm/jingrow_crm.json msgid "Deal Statuses" msgstr "" -#. Label of the deal_value (Currency) field in DocType 'CRM Deal' -#: crm/fcrm/doctype/crm_deal/crm_deal.json +#. Label of the deal_value (Currency) field in PageType 'CRM Deal' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json msgid "Deal Value" msgstr "" @@ -1694,8 +1694,8 @@ msgstr "" msgid "Deal value" msgstr "" -#. Label of a shortcut in the Frappe CRM Workspace -#: crm/fcrm/workspace/frappe_crm/frappe_crm.json +#. Label of a shortcut in the Jingrow CRM Workspace +#: crm/fcrm/workspace/jingrow_crm/jingrow_crm.json #: frontend/src/pages/Deal.vue:480 frontend/src/pages/MobileContact.vue:288 #: frontend/src/pages/MobileDeal.vue:384 #: frontend/src/pages/MobileOrganization.vue:325 @@ -1732,8 +1732,8 @@ msgstr "" msgid "Dear {{ lead_name }}, \\n\\nThis is a reminder for the payment of {{ grand_total }}. \\n\\nThanks, \\nFrappé" msgstr "" -#. Label of the default (Check) field in DocType 'CRM Service Level Agreement' -#: crm/fcrm/doctype/crm_service_level_agreement/crm_service_level_agreement.json +#. Label of the default (Check) field in PageType 'CRM Service Level Agreement' +#: crm/fcrm/pagetype/crm_service_level_agreement/crm_service_level_agreement.json msgid "Default" msgstr "Padrão" @@ -1745,8 +1745,8 @@ msgstr "" msgid "Default Incoming" msgstr "" -#. Label of the default_medium (Select) field in DocType 'CRM Telephony Agent' -#: crm/fcrm/doctype/crm_telephony_agent/crm_telephony_agent.json +#. Label of the default_medium (Select) field in PageType 'CRM Telephony Agent' +#: crm/fcrm/pagetype/crm_telephony_agent/crm_telephony_agent.json msgid "Default Medium" msgstr "" @@ -1754,9 +1754,9 @@ msgstr "" msgid "Default Outgoing" msgstr "" -#. Label of the default_priority (Check) field in DocType 'CRM Service Level +#. Label of the default_priority (Check) field in PageType 'CRM Service Level #. Priority' -#: crm/fcrm/doctype/crm_service_level_priority/crm_service_level_priority.json +#: crm/fcrm/pagetype/crm_service_level_priority/crm_service_level_priority.json msgid "Default Priority" msgstr "" @@ -1768,7 +1768,7 @@ msgstr "" msgid "Default Sending and Inbox" msgstr "" -#: crm/fcrm/doctype/crm_service_level_agreement/crm_service_level_agreement.py:33 +#: crm/fcrm/pagetype/crm_service_level_agreement/crm_service_level_agreement.py:33 msgid "Default Service Level Agreement already exists for {0}" msgstr "" @@ -1788,8 +1788,8 @@ msgstr "" msgid "Default medium" msgstr "" -#: crm/fcrm/doctype/fcrm_settings/fcrm_settings.js:18 -#: crm/fcrm/doctype/fcrm_settings/fcrm_settings.js:30 +#: crm/fcrm/pagetype/fcrm_settings/fcrm_settings.js:18 +#: crm/fcrm/pagetype/fcrm_settings/fcrm_settings.js:30 msgid "Default statuses, custom fields and layouts restored successfully." msgstr "" @@ -1825,7 +1825,7 @@ msgstr "" msgid "Delete" msgstr "Eliminar" -#: crm/fcrm/doctype/fcrm_settings/fcrm_settings.js:26 +#: crm/fcrm/pagetype/fcrm_settings/fcrm_settings.js:26 msgid "Delete & Restore" msgstr "Eliminar & Restaurar" @@ -1883,14 +1883,14 @@ msgstr "" msgid "Delete {0} items" msgstr "" -#. Label of the description (Text Editor) field in DocType 'CRM Holiday' -#. Label of the description (Text Editor) field in DocType 'CRM Lost Reason' -#. Label of the description (Text Editor) field in DocType 'CRM Product' -#. Label of the description (Text Editor) field in DocType 'CRM Task' -#: crm/fcrm/doctype/crm_holiday/crm_holiday.json -#: crm/fcrm/doctype/crm_lost_reason/crm_lost_reason.json -#: crm/fcrm/doctype/crm_product/crm_product.json -#: crm/fcrm/doctype/crm_task/crm_task.json +#. Label of the description (Text Editor) field in PageType 'CRM Holiday' +#. Label of the description (Text Editor) field in PageType 'CRM Lost Reason' +#. Label of the description (Text Editor) field in PageType 'CRM Product' +#. Label of the description (Text Editor) field in PageType 'CRM Task' +#: crm/fcrm/pagetype/crm_holiday/crm_holiday.json +#: crm/fcrm/pagetype/crm_lost_reason/crm_lost_reason.json +#: crm/fcrm/pagetype/crm_product/crm_product.json +#: crm/fcrm/pagetype/crm_task/crm_task.json #: frontend/src/components/Calendar/CalendarEventPanel.vue:152 #: frontend/src/components/Modals/EventModal.vue:134 #: frontend/src/components/Modals/TaskModal.vue:36 @@ -1907,29 +1907,29 @@ msgstr "" msgid "Desk" msgstr "" -#. Label of the details (Tab Break) field in DocType 'CRM Lead' -#. Label of the details (Text Editor) field in DocType 'CRM Lead Source' -#: crm/fcrm/doctype/crm_lead/crm_lead.json -#: crm/fcrm/doctype/crm_lead_source/crm_lead_source.json +#. Label of the details (Tab Break) field in PageType 'CRM Lead' +#. Label of the details (Text Editor) field in PageType 'CRM Lead Source' +#: crm/fcrm/pagetype/crm_lead/crm_lead.json +#: crm/fcrm/pagetype/crm_lead_source/crm_lead_source.json #: frontend/src/pages/MobileContact.vue:283 #: frontend/src/pages/MobileDeal.vue:424 frontend/src/pages/MobileLead.vue:331 #: frontend/src/pages/MobileOrganization.vue:320 msgid "Details" msgstr "Detalhes" -#. Label of the call_receiving_device (Select) field in DocType 'CRM Telephony +#. Label of the call_receiving_device (Select) field in PageType 'CRM Telephony #. Agent' -#: crm/fcrm/doctype/crm_telephony_agent/crm_telephony_agent.json +#: crm/fcrm/pagetype/crm_telephony_agent/crm_telephony_agent.json #: frontend/src/components/FilesUploader/FilesUploaderArea.vue:39 msgid "Device" msgstr "Dispositivo" -#: crm/fcrm/doctype/crm_form_script/crm_form_script.js:30 +#: crm/fcrm/pagetype/crm_form_script/crm_form_script.js:30 msgid "Disable" msgstr "" -#. Label of the disabled (Check) field in DocType 'CRM Product' -#: crm/fcrm/doctype/crm_product/crm_product.json +#. Label of the disabled (Check) field in PageType 'CRM Product' +#: crm/fcrm/pagetype/crm_product/crm_product.json msgid "Disabled" msgstr "" @@ -1943,27 +1943,27 @@ msgstr "Descartar" msgid "Discard unsaved changes?" msgstr "" -#. Label of the discount_percentage (Percent) field in DocType 'CRM Products' -#: crm/fcrm/doctype/crm_products/crm_products.json +#. Label of the discount_percentage (Percent) field in PageType 'CRM Products' +#: crm/fcrm/pagetype/crm_products/crm_products.json msgid "Discount %" msgstr "Desconto %" -#. Label of the discount_amount (Currency) field in DocType 'CRM Products' -#: crm/fcrm/doctype/crm_products/crm_products.json +#. Label of the discount_amount (Currency) field in PageType 'CRM Products' +#: crm/fcrm/pagetype/crm_products/crm_products.json msgid "Discount Amount" msgstr "" -#. Label of the dt (Link) field in DocType 'CRM Form Script' -#. Label of the dt (Link) field in DocType 'CRM Global Settings' -#. Label of the dt (Link) field in DocType 'CRM View Settings' -#: crm/fcrm/doctype/crm_form_script/crm_form_script.json -#: crm/fcrm/doctype/crm_global_settings/crm_global_settings.json -#: crm/fcrm/doctype/crm_view_settings/crm_view_settings.json -msgid "DocType" +#. Label of the dt (Link) field in PageType 'CRM Form Script' +#. Label of the dt (Link) field in PageType 'CRM Global Settings' +#. Label of the dt (Link) field in PageType 'CRM View Settings' +#: crm/fcrm/pagetype/crm_form_script/crm_form_script.json +#: crm/fcrm/pagetype/crm_global_settings/crm_global_settings.json +#: crm/fcrm/pagetype/crm_view_settings/crm_view_settings.json +msgid "PageType" msgstr "" -#. Label of the dt (Link) field in DocType 'CRM Fields Layout' -#: crm/fcrm/doctype/crm_fields_layout/crm_fields_layout.json +#. Label of the dt (Link) field in PageType 'CRM Fields Layout' +#: crm/fcrm/pagetype/crm_fields_layout/crm_fields_layout.json msgid "Document Type" msgstr "Tipo de Documento" @@ -1983,8 +1983,8 @@ msgstr "" msgid "Documentation" msgstr "" -#. Option for the 'Status' (Select) field in DocType 'CRM Task' -#: crm/fcrm/doctype/crm_task/crm_task.json +#. Option for the 'Status' (Select) field in PageType 'CRM Task' +#: crm/fcrm/pagetype/crm_task/crm_task.json msgid "Done" msgstr "Feito" @@ -2006,13 +2006,13 @@ msgstr "" msgid "Drop files here" msgstr "" -#. Label of the dropdown_items_tab (Tab Break) field in DocType 'FCRM Settings' -#: crm/fcrm/doctype/fcrm_settings/fcrm_settings.json +#. Label of the dropdown_items_tab (Tab Break) field in PageType 'FCRM Settings' +#: crm/fcrm/pagetype/fcrm_settings/fcrm_settings.json msgid "Dropdown Items" msgstr "" -#. Label of the due_date (Datetime) field in DocType 'CRM Task' -#: crm/fcrm/doctype/crm_task/crm_task.json +#. Label of the due_date (Datetime) field in PageType 'CRM Task' +#: crm/fcrm/pagetype/crm_task/crm_task.json msgid "Due Date" msgstr "Data de Vencimento" @@ -2048,10 +2048,10 @@ msgstr "" msgid "Duplicate template" msgstr "" -#. Label of the duration (Duration) field in DocType 'CRM Call Log' -#. Label of the duration (Duration) field in DocType 'CRM Status Change Log' -#: crm/fcrm/doctype/crm_call_log/crm_call_log.json -#: crm/fcrm/doctype/crm_status_change_log/crm_status_change_log.json +#. Label of the duration (Duration) field in PageType 'CRM Call Log' +#. Label of the duration (Duration) field in PageType 'CRM Status Change Log' +#: crm/fcrm/pagetype/crm_call_log/crm_call_log.json +#: crm/fcrm/pagetype/crm_status_change_log/crm_status_change_log.json msgid "Duration" msgstr "Duração" @@ -2060,28 +2060,28 @@ msgstr "Duração" msgid "ERPNext" msgstr "ERPNext" -#. Name of a DocType -#: crm/fcrm/doctype/erpnext_crm_settings/erpnext_crm_settings.json +#. Name of a PageType +#: crm/fcrm/pagetype/erpnext_crm_settings/erpnext_crm_settings.json msgid "ERPNext CRM Settings" msgstr "Definições de ERPNext CRM" -#. Label of the section_break_oubd (Section Break) field in DocType 'ERPNext +#. Label of the section_break_oubd (Section Break) field in PageType 'ERPNext #. CRM Settings' -#: crm/fcrm/doctype/erpnext_crm_settings/erpnext_crm_settings.json +#: crm/fcrm/pagetype/erpnext_crm_settings/erpnext_crm_settings.json msgid "ERPNext Site API's" msgstr "ERPNext Site API's" -#. Label of the erpnext_site_url (Data) field in DocType 'ERPNext CRM Settings' -#: crm/fcrm/doctype/erpnext_crm_settings/erpnext_crm_settings.json +#. Label of the erpnext_site_url (Data) field in PageType 'ERPNext CRM Settings' +#: crm/fcrm/pagetype/erpnext_crm_settings/erpnext_crm_settings.json msgid "ERPNext Site URL" msgstr "ERPNext Site URL" -#: crm/fcrm/doctype/erpnext_crm_settings/erpnext_crm_settings.py:25 +#: crm/fcrm/pagetype/erpnext_crm_settings/erpnext_crm_settings.py:25 msgid "ERPNext is not installed in the current site" msgstr "O ERPNext não está instalado neste site" -#: crm/fcrm/doctype/erpnext_crm_settings/erpnext_crm_settings.py:98 -#: crm/fcrm/doctype/erpnext_crm_settings/erpnext_crm_settings.py:124 +#: crm/fcrm/pagetype/erpnext_crm_settings/erpnext_crm_settings.py:98 +#: crm/fcrm/pagetype/erpnext_crm_settings/erpnext_crm_settings.py:124 msgid "ERPNext is not integrated with the CRM" msgstr "O ERPNext não está integrado com o CRM" @@ -2191,12 +2191,12 @@ msgstr "" msgid "Editing event" msgstr "" -#. Label of the email (Data) field in DocType 'CRM Contacts' -#. Label of the email (Data) field in DocType 'CRM Invitation' -#. Label of the email (Data) field in DocType 'CRM Lead' -#: crm/fcrm/doctype/crm_contacts/crm_contacts.json -#: crm/fcrm/doctype/crm_invitation/crm_invitation.json -#: crm/fcrm/doctype/crm_lead/crm_lead.json frontend/src/pages/Contact.vue:510 +#. Label of the email (Data) field in PageType 'CRM Contacts' +#. Label of the email (Data) field in PageType 'CRM Invitation' +#. Label of the email (Data) field in PageType 'CRM Lead' +#: crm/fcrm/pagetype/crm_contacts/crm_contacts.json +#: crm/fcrm/pagetype/crm_invitation/crm_invitation.json +#: crm/fcrm/pagetype/crm_lead/crm_lead.json frontend/src/pages/Contact.vue:510 #: frontend/src/pages/MobileContact.vue:518 #: frontend/src/pages/MobileOrganization.vue:462 #: frontend/src/pages/MobileOrganization.vue:490 @@ -2213,8 +2213,8 @@ msgstr "" msgid "Email ID is required" msgstr "" -#. Label of the email_sent_at (Datetime) field in DocType 'CRM Invitation' -#: crm/fcrm/doctype/crm_invitation/crm_invitation.json +#. Label of the email_sent_at (Datetime) field in PageType 'CRM Invitation' +#: crm/fcrm/pagetype/crm_invitation/crm_invitation.json msgid "Email Sent At" msgstr "Email enviado a" @@ -2272,12 +2272,12 @@ msgstr "" msgid "Empty - Choose a field to sort by" msgstr "" -#: crm/fcrm/doctype/crm_form_script/crm_form_script.js:30 +#: crm/fcrm/pagetype/crm_form_script/crm_form_script.js:30 msgid "Enable" msgstr "Ativar" -#. Label of the enable_forecasting (Check) field in DocType 'FCRM Settings' -#: crm/fcrm/doctype/fcrm_settings/fcrm_settings.json +#. Label of the enable_forecasting (Check) field in PageType 'FCRM Settings' +#: crm/fcrm/pagetype/fcrm_settings/fcrm_settings.json msgid "Enable Forecasting" msgstr "" @@ -2293,18 +2293,18 @@ msgstr "" msgid "Enable forecasting" msgstr "" -#. Label of the enabled (Check) field in DocType 'CRM Exotel Settings' -#. Label of the enabled (Check) field in DocType 'CRM Form Script' -#. Label of the enabled (Check) field in DocType 'CRM Service Level Agreement' -#. Label of the enabled (Check) field in DocType 'CRM Twilio Settings' -#. Label of the enabled (Check) field in DocType 'ERPNext CRM Settings' -#. Label of the enabled (Check) field in DocType 'Helpdesk CRM Settings' -#: crm/fcrm/doctype/crm_exotel_settings/crm_exotel_settings.json -#: crm/fcrm/doctype/crm_form_script/crm_form_script.json -#: crm/fcrm/doctype/crm_service_level_agreement/crm_service_level_agreement.json -#: crm/fcrm/doctype/crm_twilio_settings/crm_twilio_settings.json -#: crm/fcrm/doctype/erpnext_crm_settings/erpnext_crm_settings.json -#: crm/fcrm/doctype/helpdesk_crm_settings/helpdesk_crm_settings.json +#. Label of the enabled (Check) field in PageType 'CRM Exotel Settings' +#. Label of the enabled (Check) field in PageType 'CRM Form Script' +#. Label of the enabled (Check) field in PageType 'CRM Service Level Agreement' +#. Label of the enabled (Check) field in PageType 'CRM Twilio Settings' +#. Label of the enabled (Check) field in PageType 'ERPNext CRM Settings' +#. Label of the enabled (Check) field in PageType 'Helpdesk CRM Settings' +#: crm/fcrm/pagetype/crm_exotel_settings/crm_exotel_settings.json +#: crm/fcrm/pagetype/crm_form_script/crm_form_script.json +#: crm/fcrm/pagetype/crm_service_level_agreement/crm_service_level_agreement.json +#: crm/fcrm/pagetype/crm_twilio_settings/crm_twilio_settings.json +#: crm/fcrm/pagetype/erpnext_crm_settings/erpnext_crm_settings.json +#: crm/fcrm/pagetype/helpdesk_crm_settings/helpdesk_crm_settings.json #: frontend/src/components/Settings/AssignmentRules/AssignmentRuleView.vue:32 #: frontend/src/components/Settings/AssignmentRules/AssignmentRulesList.vue:21 #: frontend/src/components/Settings/EmailTemplate/EditEmailTemplate.vue:18 @@ -2313,15 +2313,15 @@ msgstr "" msgid "Enabled" msgstr "Ativado" -#. Label of the end_date (Date) field in DocType 'CRM Service Level Agreement' -#: crm/fcrm/doctype/crm_service_level_agreement/crm_service_level_agreement.json +#. Label of the end_date (Date) field in PageType 'CRM Service Level Agreement' +#: crm/fcrm/pagetype/crm_service_level_agreement/crm_service_level_agreement.json msgid "End Date" msgstr "Data Fim" -#. Label of the end_time (Datetime) field in DocType 'CRM Call Log' -#. Label of the end_time (Time) field in DocType 'CRM Service Day' -#: crm/fcrm/doctype/crm_call_log/crm_call_log.json -#: crm/fcrm/doctype/crm_service_day/crm_service_day.json +#. Label of the end_time (Datetime) field in PageType 'CRM Call Log' +#. Label of the end_time (Time) field in PageType 'CRM Service Day' +#: crm/fcrm/pagetype/crm_call_log/crm_call_log.json +#: crm/fcrm/pagetype/crm_service_day/crm_service_day.json #: frontend/src/components/Calendar/CalendarEventPanel.vue:242 #: frontend/src/components/Modals/EventModal.vue:112 msgid "End Time" @@ -2362,15 +2362,15 @@ msgstr "" msgid "Error updating field" msgstr "" -#: crm/fcrm/doctype/erpnext_crm_settings/erpnext_crm_settings.py:279 +#: crm/fcrm/pagetype/erpnext_crm_settings/erpnext_crm_settings.py:279 msgid "Error while creating customer in ERPNext, check error log for more details" msgstr "" -#: crm/fcrm/doctype/erpnext_crm_settings/erpnext_crm_settings.py:191 +#: crm/fcrm/pagetype/erpnext_crm_settings/erpnext_crm_settings.py:191 msgid "Error while creating prospect in ERPNext, check error log for more details" msgstr "" -#: crm/fcrm/doctype/erpnext_crm_settings/erpnext_crm_settings.py:117 +#: crm/fcrm/pagetype/erpnext_crm_settings/erpnext_crm_settings.py:117 msgid "Error while fetching customer in ERPNext, check error log for more details" msgstr "" @@ -2395,16 +2395,16 @@ msgstr "" msgid "Excel" msgstr "Excel" -#. Label of the exchange_rate (Float) field in DocType 'CRM Deal' -#. Label of the exchange_rate (Float) field in DocType 'CRM Organization' -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_organization/crm_organization.json +#. Label of the exchange_rate (Float) field in PageType 'CRM Deal' +#. Label of the exchange_rate (Float) field in PageType 'CRM Organization' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_organization/crm_organization.json msgid "Exchange Rate" msgstr "" -#. Label of the exchange_rate_provider_section (Section Break) field in DocType +#. Label of the exchange_rate_provider_section (Section Break) field in PageType #. 'FCRM Settings' -#: crm/fcrm/doctype/fcrm_settings/fcrm_settings.json +#: crm/fcrm/pagetype/fcrm_settings/fcrm_settings.json msgid "Exchange Rate Provider" msgstr "" @@ -2412,12 +2412,12 @@ msgstr "" msgid "Exchange rate provider" msgstr "" -#. Option for the 'Telephony Medium' (Select) field in DocType 'CRM Call Log' -#. Label of the exotel (Check) field in DocType 'CRM Telephony Agent' -#. Option for the 'Default Medium' (Select) field in DocType 'CRM Telephony +#. Option for the 'Telephony Medium' (Select) field in PageType 'CRM Call Log' +#. Label of the exotel (Check) field in PageType 'CRM Telephony Agent' +#. Option for the 'Default Medium' (Select) field in PageType 'CRM Telephony #. Agent' -#: crm/fcrm/doctype/crm_call_log/crm_call_log.json -#: crm/fcrm/doctype/crm_telephony_agent/crm_telephony_agent.json +#: crm/fcrm/pagetype/crm_call_log/crm_call_log.json +#: crm/fcrm/pagetype/crm_telephony_agent/crm_telephony_agent.json #: frontend/src/components/Layouts/AppSidebar.vue:602 #: frontend/src/components/Settings/TelephonySettings.vue:41 #: frontend/src/components/Settings/TelephonySettings.vue:63 @@ -2428,8 +2428,8 @@ msgstr "" msgid "Exotel Exception" msgstr "" -#. Label of the exotel_number (Data) field in DocType 'CRM Telephony Agent' -#: crm/fcrm/doctype/crm_telephony_agent/crm_telephony_agent.json +#. Label of the exotel_number (Data) field in PageType 'CRM Telephony Agent' +#: crm/fcrm/pagetype/crm_telephony_agent/crm_telephony_agent.json msgid "Exotel Number" msgstr "" @@ -2453,26 +2453,26 @@ msgstr "" msgid "Expand" msgstr "Expandir" -#. Label of the expected_closure_date (Date) field in DocType 'CRM Deal' -#: crm/fcrm/doctype/crm_deal/crm_deal.json +#. Label of the expected_closure_date (Date) field in PageType 'CRM Deal' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json msgid "Expected Closure Date" msgstr "" -#: crm/fcrm/doctype/crm_deal/crm_deal.py:173 +#: crm/fcrm/pagetype/crm_deal/crm_deal.py:173 msgid "Expected Closure Date is required." msgstr "" -#. Label of the expected_deal_value (Currency) field in DocType 'CRM Deal' -#: crm/fcrm/doctype/crm_deal/crm_deal.json +#. Label of the expected_deal_value (Currency) field in PageType 'CRM Deal' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json msgid "Expected Deal Value" msgstr "" -#: crm/fcrm/doctype/crm_deal/crm_deal.py:171 +#: crm/fcrm/pagetype/crm_deal/crm_deal.py:171 msgid "Expected Deal Value is required." msgstr "" -#. Option for the 'Status' (Select) field in DocType 'CRM Invitation' -#: crm/fcrm/doctype/crm_invitation/crm_invitation.json +#. Option for the 'Status' (Select) field in PageType 'CRM Invitation' +#: crm/fcrm/pagetype/crm_invitation/crm_invitation.json msgid "Expired" msgstr "Expirado" @@ -2489,22 +2489,22 @@ msgstr "" msgid "Export Type" msgstr "Tipo de exportação" -#. Name of a DocType -#: crm/fcrm/doctype/fcrm_note/fcrm_note.json +#. Name of a PageType +#: crm/fcrm/pagetype/fcrm_note/fcrm_note.json msgid "FCRM Note" msgstr "" -#. Name of a DocType -#: crm/fcrm/doctype/fcrm_settings/fcrm_settings.json +#. Name of a PageType +#: crm/fcrm/pagetype/fcrm_settings/fcrm_settings.json msgid "FCRM Settings" msgstr "" -#. Option for the 'Status' (Select) field in DocType 'CRM Call Log' -#. Option for the 'SLA Status' (Select) field in DocType 'CRM Deal' -#. Option for the 'SLA Status' (Select) field in DocType 'CRM Lead' -#: crm/fcrm/doctype/crm_call_log/crm_call_log.json -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_lead/crm_lead.json +#. Option for the 'Status' (Select) field in PageType 'CRM Call Log' +#. Option for the 'SLA Status' (Select) field in PageType 'CRM Deal' +#. Option for the 'SLA Status' (Select) field in PageType 'CRM Lead' +#: crm/fcrm/pagetype/crm_call_log/crm_call_log.json +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_lead/crm_lead.json msgid "Failed" msgstr "Falhou" @@ -2528,7 +2528,7 @@ msgstr "" msgid "Failed to delete template" msgstr "" -#: crm/fcrm/doctype/fcrm_settings/fcrm_settings.py:205 +#: crm/fcrm/pagetype/fcrm_settings/fcrm_settings.py:205 msgid "Failed to fetch exchange rate from {0} to {1} on {2}. Please check your internet connection or try again later." msgstr "" @@ -2561,8 +2561,8 @@ msgstr "" msgid "Failed to update template" msgstr "" -#. Label of the favicon (Attach) field in DocType 'FCRM Settings' -#: crm/fcrm/doctype/fcrm_settings/fcrm_settings.json +#. Label of the favicon (Attach) field in PageType 'FCRM Settings' +#: crm/fcrm/pagetype/fcrm_settings/fcrm_settings.json #: frontend/src/components/Settings/BrandSettings.vue:87 msgid "Favicon" msgstr "" @@ -2586,23 +2586,23 @@ msgid "File \"{0}\" was skipped because only {1} uploads are allowed" msgstr "" #: frontend/src/components/FilesUploader/FilesUploaderArea.vue:359 -msgid "File \"{0}\" was skipped because only {1} uploads are allowed for DocType \"{2}\"" +msgid "File \"{0}\" was skipped because only {1} uploads are allowed for PageType \"{2}\"" msgstr "" #: frontend/src/components/Filter.vue:6 msgid "Filter" msgstr "Filtro" -#. Label of the filters (Code) field in DocType 'CRM View Settings' -#. Label of the filters_tab (Tab Break) field in DocType 'CRM View Settings' -#: crm/fcrm/doctype/crm_view_settings/crm_view_settings.json +#. Label of the filters (Code) field in PageType 'CRM View Settings' +#. Label of the filters_tab (Tab Break) field in PageType 'CRM View Settings' +#: crm/fcrm/pagetype/crm_view_settings/crm_view_settings.json msgid "Filters" msgstr "Filtros" -#. Label of the first_name (Data) field in DocType 'CRM Deal' -#. Label of the first_name (Data) field in DocType 'CRM Lead' -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_lead/crm_lead.json +#. Label of the first_name (Data) field in PageType 'CRM Deal' +#. Label of the first_name (Data) field in PageType 'CRM Lead' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_lead/crm_lead.json #: frontend/src/components/ColumnSettings.vue:103 #: frontend/src/components/Filter.vue:57 frontend/src/components/Filter.vue:88 #: frontend/src/components/SortBy.vue:6 frontend/src/components/SortBy.vue:103 @@ -2614,30 +2614,30 @@ msgstr "Primeiro nome" msgid "First Name is mandatory" msgstr "" -#. Label of the first_responded_on (Datetime) field in DocType 'CRM Deal' -#. Label of the first_responded_on (Datetime) field in DocType 'CRM Lead' -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_lead/crm_lead.json +#. Label of the first_responded_on (Datetime) field in PageType 'CRM Deal' +#. Label of the first_responded_on (Datetime) field in PageType 'CRM Lead' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_lead/crm_lead.json msgid "First Responded On" msgstr "" -#. Option for the 'SLA Status' (Select) field in DocType 'CRM Deal' -#. Option for the 'SLA Status' (Select) field in DocType 'CRM Lead' -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_lead/crm_lead.json +#. Option for the 'SLA Status' (Select) field in PageType 'CRM Deal' +#. Option for the 'SLA Status' (Select) field in PageType 'CRM Lead' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_lead/crm_lead.json msgid "First Response Due" msgstr "" -#. Label of the first_response_time (Duration) field in DocType 'CRM Service +#. Label of the first_response_time (Duration) field in PageType 'CRM Service #. Level Priority' -#: crm/fcrm/doctype/crm_service_level_priority/crm_service_level_priority.json +#: crm/fcrm/pagetype/crm_service_level_priority/crm_service_level_priority.json msgid "First Response TIme" msgstr "" -#. Label of the first_response_time (Duration) field in DocType 'CRM Deal' -#. Label of the first_response_time (Duration) field in DocType 'CRM Lead' -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_lead/crm_lead.json +#. Label of the first_response_time (Duration) field in PageType 'CRM Deal' +#. Label of the first_response_time (Duration) field in PageType 'CRM Lead' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_lead/crm_lead.json msgid "First Response Time" msgstr "Tempo da primeira resposta" @@ -2670,66 +2670,66 @@ msgstr "" msgid "Forecasting enabled successfully" msgstr "" -#. Option for the 'Apply To' (Select) field in DocType 'CRM Form Script' -#: crm/fcrm/doctype/crm_form_script/crm_form_script.json +#. Option for the 'Apply To' (Select) field in PageType 'CRM Form Script' +#: crm/fcrm/pagetype/crm_form_script/crm_form_script.json msgid "Form" msgstr "" -#: crm/fcrm/doctype/erpnext_crm_settings/erpnext_crm_settings.js:19 +#: crm/fcrm/pagetype/erpnext_crm_settings/erpnext_crm_settings.js:19 msgid "Form Script updated successfully" msgstr "" #. Name of a Workspace -#: crm/fcrm/workspace/frappe_crm/frappe_crm.json -msgid "Frappe CRM" -msgstr "Frappe CRM" +#: crm/fcrm/workspace/jingrow_crm/jingrow_crm.json +msgid "Jingrow CRM" +msgstr "Jingrow CRM" #: frontend/src/components/Layouts/AppSidebar.vue:608 -msgid "Frappe CRM mobile" +msgid "Jingrow CRM mobile" msgstr "" -#. Option for the 'Weekly Off' (Select) field in DocType 'CRM Holiday List' -#. Option for the 'Workday' (Select) field in DocType 'CRM Service Day' -#: crm/fcrm/doctype/crm_holiday_list/crm_holiday_list.json -#: crm/fcrm/doctype/crm_service_day/crm_service_day.json +#. Option for the 'Weekly Off' (Select) field in PageType 'CRM Holiday List' +#. Option for the 'Workday' (Select) field in PageType 'CRM Service Day' +#: crm/fcrm/pagetype/crm_holiday_list/crm_holiday_list.json +#: crm/fcrm/pagetype/crm_service_day/crm_service_day.json msgid "Friday" msgstr "Sexta-feira" -#. Label of the from (Data) field in DocType 'CRM Call Log' -#. Label of the from (Data) field in DocType 'CRM Status Change Log' -#: crm/fcrm/doctype/crm_call_log/crm_call_log.json -#: crm/fcrm/doctype/crm_status_change_log/crm_status_change_log.json +#. Label of the from (Data) field in PageType 'CRM Call Log' +#. Label of the from (Data) field in PageType 'CRM Status Change Log' +#: crm/fcrm/pagetype/crm_call_log/crm_call_log.json +#: crm/fcrm/pagetype/crm_status_change_log/crm_status_change_log.json msgid "From" msgstr "De" -#. Label of the from_date (Date) field in DocType 'CRM Holiday List' -#. Label of the from_date (Datetime) field in DocType 'CRM Status Change Log' -#: crm/fcrm/doctype/crm_holiday_list/crm_holiday_list.json -#: crm/fcrm/doctype/crm_status_change_log/crm_status_change_log.json +#. Label of the from_date (Date) field in PageType 'CRM Holiday List' +#. Label of the from_date (Datetime) field in PageType 'CRM Status Change Log' +#: crm/fcrm/pagetype/crm_holiday_list/crm_holiday_list.json +#: crm/fcrm/pagetype/crm_status_change_log/crm_status_change_log.json msgid "From Date" msgstr "Data desde" -#. Label of the from_type (Data) field in DocType 'CRM Status Change Log' -#: crm/fcrm/doctype/crm_status_change_log/crm_status_change_log.json +#. Label of the from_type (Data) field in PageType 'CRM Status Change Log' +#: crm/fcrm/pagetype/crm_status_change_log/crm_status_change_log.json msgid "From Type" msgstr "" -#. Label of the from_user (Link) field in DocType 'CRM Notification' -#: crm/fcrm/doctype/crm_notification/crm_notification.json +#. Label of the from_user (Link) field in PageType 'CRM Notification' +#: crm/fcrm/pagetype/crm_notification/crm_notification.json msgid "From User" msgstr "De usuário" -#. Option for the 'SLA Status' (Select) field in DocType 'CRM Deal' -#. Option for the 'SLA Status' (Select) field in DocType 'CRM Lead' -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_lead/crm_lead.json +#. Option for the 'SLA Status' (Select) field in PageType 'CRM Deal' +#. Option for the 'SLA Status' (Select) field in PageType 'CRM Lead' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_lead/crm_lead.json msgid "Fulfilled" msgstr "" -#. Label of the full_name (Data) field in DocType 'CRM Contacts' -#. Label of the lead_name (Data) field in DocType 'CRM Lead' -#: crm/fcrm/doctype/crm_contacts/crm_contacts.json -#: crm/fcrm/doctype/crm_lead/crm_lead.json +#. Label of the full_name (Data) field in PageType 'CRM Contacts' +#. Label of the lead_name (Data) field in PageType 'CRM Lead' +#: crm/fcrm/pagetype/crm_contacts/crm_contacts.json +#: crm/fcrm/pagetype/crm_lead/crm_lead.json msgid "Full Name" msgstr "Nome completo" @@ -2742,12 +2742,12 @@ msgstr "" msgid "GMT+5:30" msgstr "" -#. Label of the gender (Link) field in DocType 'CRM Contacts' -#. Label of the gender (Link) field in DocType 'CRM Deal' -#. Label of the gender (Link) field in DocType 'CRM Lead' -#: crm/fcrm/doctype/crm_contacts/crm_contacts.json -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_lead/crm_lead.json +#. Label of the gender (Link) field in PageType 'CRM Contacts' +#. Label of the gender (Link) field in PageType 'CRM Deal' +#. Label of the gender (Link) field in PageType 'CRM Lead' +#: crm/fcrm/pagetype/crm_contacts/crm_contacts.json +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_lead/crm_lead.json msgid "Gender" msgstr "Sexo" @@ -2771,20 +2771,20 @@ msgstr "" msgid "Go to website" msgstr "Ir para o website" -#. Option for the 'Type' (Select) field in DocType 'CRM Fields Layout' -#: crm/fcrm/doctype/crm_fields_layout/crm_fields_layout.json +#. Option for the 'Type' (Select) field in PageType 'CRM Fields Layout' +#: crm/fcrm/pagetype/crm_fields_layout/crm_fields_layout.json msgid "Grid Row" msgstr "" -#. Label of the group_by_tab (Tab Break) field in DocType 'CRM View Settings' -#: crm/fcrm/doctype/crm_view_settings/crm_view_settings.json +#. Label of the group_by_tab (Tab Break) field in PageType 'CRM View Settings' +#: crm/fcrm/pagetype/crm_view_settings/crm_view_settings.json #: frontend/src/components/ViewControls.vue:379 #: frontend/src/components/ViewControls.vue:611 frontend/src/utils/view.js:16 msgid "Group By" msgstr "Agrupar por" -#. Label of the group_by_field (Data) field in DocType 'CRM View Settings' -#: crm/fcrm/doctype/crm_view_settings/crm_view_settings.json +#. Label of the group_by_field (Data) field in PageType 'CRM View Settings' +#: crm/fcrm/pagetype/crm_view_settings/crm_view_settings.json msgid "Group By Field" msgstr "" @@ -2808,28 +2808,28 @@ msgstr "" msgid "Helpdesk" msgstr "" -#. Name of a DocType -#: crm/fcrm/doctype/helpdesk_crm_settings/helpdesk_crm_settings.json +#. Name of a PageType +#: crm/fcrm/pagetype/helpdesk_crm_settings/helpdesk_crm_settings.json msgid "Helpdesk CRM Settings" msgstr "" -#. Label of the helpdesk_site_apis_section (Section Break) field in DocType +#. Label of the helpdesk_site_apis_section (Section Break) field in PageType #. 'Helpdesk CRM Settings' -#: crm/fcrm/doctype/helpdesk_crm_settings/helpdesk_crm_settings.json +#: crm/fcrm/pagetype/helpdesk_crm_settings/helpdesk_crm_settings.json msgid "Helpdesk Site API's" msgstr "" -#. Label of the helpdesk_site_url (Data) field in DocType 'Helpdesk CRM +#. Label of the helpdesk_site_url (Data) field in PageType 'Helpdesk CRM #. Settings' -#: crm/fcrm/doctype/helpdesk_crm_settings/helpdesk_crm_settings.json +#: crm/fcrm/pagetype/helpdesk_crm_settings/helpdesk_crm_settings.json msgid "Helpdesk Site URL" msgstr "" -#: crm/fcrm/doctype/helpdesk_crm_settings/helpdesk_crm_settings.py:18 +#: crm/fcrm/pagetype/helpdesk_crm_settings/helpdesk_crm_settings.py:18 msgid "Helpdesk is not installed in the current site" msgstr "" -#: crm/fcrm/doctype/helpdesk_crm_settings/helpdesk_crm_settings.py:40 +#: crm/fcrm/pagetype/helpdesk_crm_settings/helpdesk_crm_settings.py:40 msgid "Helpdesk is not integrated with the CRM" msgstr "" @@ -2845,8 +2845,8 @@ msgstr "" msgid "Hi John, \\n\\nCan you please provide more details on this..." msgstr "Olá John, \\n\\nPode fornecer mais detalhes sobre isto..." -#. Label of the hidden (Check) field in DocType 'CRM Dropdown Item' -#: crm/fcrm/doctype/crm_dropdown_item/crm_dropdown_item.json +#. Label of the hidden (Check) field in PageType 'CRM Dropdown Item' +#: crm/fcrm/pagetype/crm_dropdown_item/crm_dropdown_item.json msgid "Hidden" msgstr "Oculto" @@ -2877,26 +2877,26 @@ msgstr "Ocultar etiqueta" msgid "Hide preview" msgstr "Ocultar pré-visualização" -#. Option for the 'Priority' (Select) field in DocType 'CRM Task' -#: crm/fcrm/doctype/crm_task/crm_task.json +#. Option for the 'Priority' (Select) field in PageType 'CRM Task' +#: crm/fcrm/pagetype/crm_task/crm_task.json msgid "High" msgstr "" -#. Label of the holiday_list (Link) field in DocType 'CRM Service Level +#. Label of the holiday_list (Link) field in PageType 'CRM Service Level #. Agreement' -#: crm/fcrm/doctype/crm_service_level_agreement/crm_service_level_agreement.json +#: crm/fcrm/pagetype/crm_service_level_agreement/crm_service_level_agreement.json msgid "Holiday List" msgstr "" -#. Label of the holiday_list_name (Data) field in DocType 'CRM Holiday List' -#: crm/fcrm/doctype/crm_holiday_list/crm_holiday_list.json +#. Label of the holiday_list_name (Data) field in PageType 'CRM Holiday List' +#: crm/fcrm/pagetype/crm_holiday_list/crm_holiday_list.json msgid "Holiday List Name" msgstr "" -#. Label of the holidays_section (Section Break) field in DocType 'CRM Holiday +#. Label of the holidays_section (Section Break) field in PageType 'CRM Holiday #. List' -#. Label of the holidays (Table) field in DocType 'CRM Holiday List' -#: crm/fcrm/doctype/crm_holiday_list/crm_holiday_list.json +#. Label of the holidays (Table) field in PageType 'CRM Holiday List' +#: crm/fcrm/pagetype/crm_holiday_list/crm_holiday_list.json msgid "Holidays" msgstr "" @@ -2914,15 +2914,15 @@ msgstr "" msgid "I understand, add conditions" msgstr "" -#. Label of the id (Data) field in DocType 'CRM Call Log' -#: crm/fcrm/doctype/crm_call_log/crm_call_log.json +#. Label of the id (Data) field in PageType 'CRM Call Log' +#: crm/fcrm/pagetype/crm_call_log/crm_call_log.json msgid "ID" msgstr "ID" -#. Label of the icon (Code) field in DocType 'CRM Dropdown Item' -#. Label of the icon (Data) field in DocType 'CRM View Settings' -#: crm/fcrm/doctype/crm_dropdown_item/crm_dropdown_item.json -#: crm/fcrm/doctype/crm_view_settings/crm_view_settings.json +#. Label of the icon (Code) field in PageType 'CRM Dropdown Item' +#. Label of the icon (Data) field in PageType 'CRM View Settings' +#: crm/fcrm/pagetype/crm_dropdown_item/crm_dropdown_item.json +#: crm/fcrm/pagetype/crm_view_settings/crm_view_settings.json msgid "Icon" msgstr "Ícone" @@ -2942,10 +2942,10 @@ msgstr "" msgid "If enabled, records can be created from the incoming emails on this account." msgstr "" -#. Label of the image (Attach Image) field in DocType 'CRM Lead' -#. Label of the image (Attach Image) field in DocType 'CRM Product' -#: crm/fcrm/doctype/crm_lead/crm_lead.json -#: crm/fcrm/doctype/crm_product/crm_product.json +#. Label of the image (Attach Image) field in PageType 'CRM Lead' +#. Label of the image (Attach Image) field in PageType 'CRM Product' +#: crm/fcrm/pagetype/crm_lead/crm_lead.json +#: crm/fcrm/pagetype/crm_product/crm_product.json msgid "Image" msgstr "Imagem" @@ -2957,10 +2957,10 @@ msgstr "Imagem" msgid "In" msgstr "" -#. Option for the 'Status' (Select) field in DocType 'CRM Call Log' -#. Option for the 'Status' (Select) field in DocType 'CRM Task' -#: crm/fcrm/doctype/crm_call_log/crm_call_log.json -#: crm/fcrm/doctype/crm_task/crm_task.json +#. Option for the 'Status' (Select) field in PageType 'CRM Call Log' +#. Option for the 'Status' (Select) field in PageType 'CRM Task' +#: crm/fcrm/pagetype/crm_call_log/crm_call_log.json +#: crm/fcrm/pagetype/crm_task/crm_task.json msgid "In Progress" msgstr "Em progresso" @@ -2976,8 +2976,8 @@ msgstr "" msgid "Inbox" msgstr "" -#. Option for the 'Type' (Select) field in DocType 'CRM Call Log' -#: crm/fcrm/doctype/crm_call_log/crm_call_log.json +#. Option for the 'Type' (Select) field in PageType 'CRM Call Log' +#: crm/fcrm/pagetype/crm_call_log/crm_call_log.json msgid "Incoming" msgstr "" @@ -2985,24 +2985,24 @@ msgstr "" msgid "Incoming call..." msgstr "" -#. Label of a shortcut in the Frappe CRM Workspace -#: crm/fcrm/workspace/frappe_crm/frappe_crm.json +#. Label of a shortcut in the Jingrow CRM Workspace +#: crm/fcrm/workspace/jingrow_crm/jingrow_crm.json msgid "Industries" msgstr "Indústrias" -#. Label of the industry (Link) field in DocType 'CRM Deal' -#. Label of the industry (Data) field in DocType 'CRM Industry' -#. Label of the industry (Link) field in DocType 'CRM Lead' -#. Label of the industry (Link) field in DocType 'CRM Organization' -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_industry/crm_industry.json -#: crm/fcrm/doctype/crm_lead/crm_lead.json -#: crm/fcrm/doctype/crm_organization/crm_organization.json +#. Label of the industry (Link) field in PageType 'CRM Deal' +#. Label of the industry (Data) field in PageType 'CRM Industry' +#. Label of the industry (Link) field in PageType 'CRM Lead' +#. Label of the industry (Link) field in PageType 'CRM Organization' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_industry/crm_industry.json +#: crm/fcrm/pagetype/crm_lead/crm_lead.json +#: crm/fcrm/pagetype/crm_organization/crm_organization.json msgid "Industry" msgstr "Indústria" -#. Option for the 'Status' (Select) field in DocType 'CRM Call Log' -#: crm/fcrm/doctype/crm_call_log/crm_call_log.json +#. Option for the 'Status' (Select) field in PageType 'CRM Call Log' +#: crm/fcrm/pagetype/crm_call_log/crm_call_log.json msgid "Initiated" msgstr "Iniciado" @@ -3037,7 +3037,7 @@ msgstr "Integrações" msgid "Introduction" msgstr "" -#: crm/fcrm/doctype/crm_twilio_settings/crm_twilio_settings.py:33 +#: crm/fcrm/pagetype/crm_twilio_settings/crm_twilio_settings.py:33 msgid "Invalid Account SID or Auth Token." msgstr "" @@ -3054,7 +3054,7 @@ msgstr "" msgid "Invalid chart name" msgstr "" -#: crm/fcrm/doctype/crm_exotel_settings/crm_exotel_settings.py:25 +#: crm/fcrm/pagetype/crm_exotel_settings/crm_exotel_settings.py:25 msgid "Invalid credentials" msgstr "Credenciais inválidas" @@ -3103,8 +3103,8 @@ msgstr "" msgid "Invite your team" msgstr "" -#. Label of the invited_by (Link) field in DocType 'CRM Invitation' -#: crm/fcrm/doctype/crm_invitation/crm_invitation.json +#. Label of the invited_by (Link) field in PageType 'CRM Invitation' +#: crm/fcrm/pagetype/crm_invitation/crm_invitation.json msgid "Invited By" msgstr "Convidado por" @@ -3118,59 +3118,59 @@ msgstr "Convidado por" msgid "Is" msgstr "É" -#. Label of the is_default (Check) field in DocType 'CRM View Settings' -#: crm/fcrm/doctype/crm_view_settings/crm_view_settings.json +#. Label of the is_default (Check) field in PageType 'CRM View Settings' +#: crm/fcrm/pagetype/crm_view_settings/crm_view_settings.json msgid "Is Default" msgstr "É Padrão" -#. Label of the is_erpnext_in_different_site (Check) field in DocType 'ERPNext +#. Label of the is_erpnext_in_different_site (Check) field in PageType 'ERPNext #. CRM Settings' -#: crm/fcrm/doctype/erpnext_crm_settings/erpnext_crm_settings.json +#: crm/fcrm/pagetype/erpnext_crm_settings/erpnext_crm_settings.json msgid "Is ERPNext installed on a different site?" msgstr "O ERPNext está instalado num site diferente?" -#. Label of the is_group (Check) field in DocType 'CRM Territory' -#: crm/fcrm/doctype/crm_territory/crm_territory.json +#. Label of the is_group (Check) field in PageType 'CRM Territory' +#: crm/fcrm/pagetype/crm_territory/crm_territory.json msgid "Is Group" msgstr "É grupo" -#. Label of the is_helpdesk_in_different_site (Check) field in DocType +#. Label of the is_helpdesk_in_different_site (Check) field in PageType #. 'Helpdesk CRM Settings' -#: crm/fcrm/doctype/helpdesk_crm_settings/helpdesk_crm_settings.json +#: crm/fcrm/pagetype/helpdesk_crm_settings/helpdesk_crm_settings.json msgid "Is Helpdesk installed on a different site?" msgstr "" -#. Label of the is_primary (Check) field in DocType 'CRM Contacts' -#. Label of the is_primary (Check) field in DocType 'CRM Telephony Phone' -#: crm/fcrm/doctype/crm_contacts/crm_contacts.json -#: crm/fcrm/doctype/crm_telephony_phone/crm_telephony_phone.json +#. Label of the is_primary (Check) field in PageType 'CRM Contacts' +#. Label of the is_primary (Check) field in PageType 'CRM Telephony Phone' +#: crm/fcrm/pagetype/crm_contacts/crm_contacts.json +#: crm/fcrm/pagetype/crm_telephony_phone/crm_telephony_phone.json msgid "Is Primary" msgstr "É principal" -#. Label of the is_standard (Check) field in DocType 'CRM Dropdown Item' -#. Label of the is_standard (Check) field in DocType 'CRM Form Script' -#. Label of the is_standard (Check) field in DocType 'CRM View Settings' -#: crm/fcrm/doctype/crm_dropdown_item/crm_dropdown_item.json -#: crm/fcrm/doctype/crm_form_script/crm_form_script.json -#: crm/fcrm/doctype/crm_view_settings/crm_view_settings.json +#. Label of the is_standard (Check) field in PageType 'CRM Dropdown Item' +#. Label of the is_standard (Check) field in PageType 'CRM Form Script' +#. Label of the is_standard (Check) field in PageType 'CRM View Settings' +#: crm/fcrm/pagetype/crm_dropdown_item/crm_dropdown_item.json +#: crm/fcrm/pagetype/crm_form_script/crm_form_script.json +#: crm/fcrm/pagetype/crm_view_settings/crm_view_settings.json msgid "Is Standard" msgstr "É standard" -#. Description of the 'Enable Forecasting' (Check) field in DocType 'FCRM +#. Description of the 'Enable Forecasting' (Check) field in PageType 'FCRM #. Settings' -#: crm/fcrm/doctype/fcrm_settings/fcrm_settings.json +#: crm/fcrm/pagetype/fcrm_settings/fcrm_settings.json msgid "It will make deal's \"Expected Closure Date\" & \"Expected Deal Value\" mandatory to get accurate forecasting insights" msgstr "" -#. Label of the json (JSON) field in DocType 'CRM Global Settings' -#: crm/fcrm/doctype/crm_global_settings/crm_global_settings.json +#. Label of the json (JSON) field in PageType 'CRM Global Settings' +#: crm/fcrm/pagetype/crm_global_settings/crm_global_settings.json msgid "JSON" msgstr "JSON" -#. Label of the job_title (Data) field in DocType 'CRM Deal' -#. Label of the job_title (Data) field in DocType 'CRM Lead' -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_lead/crm_lead.json +#. Label of the job_title (Data) field in PageType 'CRM Deal' +#. Label of the job_title (Data) field in PageType 'CRM Lead' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_lead/crm_lead.json msgid "Job Title" msgstr "" @@ -3182,20 +3182,20 @@ msgstr "" msgid "John Doe" msgstr "John Doe" -#. Label of the kanban_tab (Tab Break) field in DocType 'CRM View Settings' -#: crm/fcrm/doctype/crm_view_settings/crm_view_settings.json +#. Label of the kanban_tab (Tab Break) field in PageType 'CRM View Settings' +#: crm/fcrm/pagetype/crm_view_settings/crm_view_settings.json #: frontend/src/components/ViewControls.vue:384 #: frontend/src/components/ViewControls.vue:600 frontend/src/utils/view.js:20 msgid "Kanban" msgstr "Kanban" -#. Label of the kanban_columns (Code) field in DocType 'CRM View Settings' -#: crm/fcrm/doctype/crm_view_settings/crm_view_settings.json +#. Label of the kanban_columns (Code) field in PageType 'CRM View Settings' +#: crm/fcrm/pagetype/crm_view_settings/crm_view_settings.json msgid "Kanban Columns" msgstr "Colunas Kanban" -#. Label of the kanban_fields (Code) field in DocType 'CRM View Settings' -#: crm/fcrm/doctype/crm_view_settings/crm_view_settings.json +#. Label of the kanban_fields (Code) field in PageType 'CRM View Settings' +#: crm/fcrm/pagetype/crm_view_settings/crm_view_settings.json msgid "Kanban Fields" msgstr "Campos Kanban" @@ -3204,15 +3204,15 @@ msgstr "Campos Kanban" msgid "Kanban Settings" msgstr "Configurações Kanban" -#. Label of the key (Data) field in DocType 'CRM Invitation' -#: crm/fcrm/doctype/crm_invitation/crm_invitation.json +#. Label of the key (Data) field in PageType 'CRM Invitation' +#: crm/fcrm/pagetype/crm_invitation/crm_invitation.json msgid "Key" msgstr "Chave" -#. Label of the label (Data) field in DocType 'CRM Dropdown Item' -#. Label of the label (Data) field in DocType 'CRM View Settings' -#: crm/fcrm/doctype/crm_dropdown_item/crm_dropdown_item.json -#: crm/fcrm/doctype/crm_view_settings/crm_view_settings.json +#. Label of the label (Data) field in PageType 'CRM Dropdown Item' +#. Label of the label (Data) field in PageType 'CRM View Settings' +#: crm/fcrm/pagetype/crm_dropdown_item/crm_dropdown_item.json +#: crm/fcrm/pagetype/crm_view_settings/crm_view_settings.json #: frontend/src/components/ColumnSettings.vue:100 msgid "Label" msgstr "Rótulo" @@ -3229,10 +3229,10 @@ msgstr "Últimos 6 meses" msgid "Last Month" msgstr "Último mês" -#. Label of the last_name (Data) field in DocType 'CRM Deal' -#. Label of the last_name (Data) field in DocType 'CRM Lead' -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_lead/crm_lead.json +#. Label of the last_name (Data) field in PageType 'CRM Deal' +#. Label of the last_name (Data) field in PageType 'CRM Lead' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_lead/crm_lead.json msgid "Last Name" msgstr "" @@ -3240,9 +3240,9 @@ msgstr "" msgid "Last Quarter" msgstr "Último trimestre" -#. Label of the last_status_change_log (Link) field in DocType 'CRM Status +#. Label of the last_status_change_log (Link) field in PageType 'CRM Status #. Change Log' -#: crm/fcrm/doctype/crm_status_change_log/crm_status_change_log.json +#: crm/fcrm/pagetype/crm_status_change_log/crm_status_change_log.json msgid "Last Status Change Log" msgstr "" @@ -3270,15 +3270,15 @@ msgstr "" msgid "Last user assigned by this rule" msgstr "" -#. Label of the layout (Code) field in DocType 'CRM Dashboard' -#. Label of the layout (Code) field in DocType 'CRM Fields Layout' -#: crm/fcrm/doctype/crm_dashboard/crm_dashboard.json -#: crm/fcrm/doctype/crm_fields_layout/crm_fields_layout.json +#. Label of the layout (Code) field in PageType 'CRM Dashboard' +#. Label of the layout (Code) field in PageType 'CRM Fields Layout' +#: crm/fcrm/pagetype/crm_dashboard/crm_dashboard.json +#: crm/fcrm/pagetype/crm_fields_layout/crm_fields_layout.json msgid "Layout" msgstr "Layout" -#. Label of the lead (Link) field in DocType 'CRM Deal' -#: crm/fcrm/doctype/crm_deal/crm_deal.json +#. Label of the lead (Link) field in PageType 'CRM Deal' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json #: frontend/src/components/Calendar/CalendarEventPanel.vue:263 #: frontend/src/components/Calendar/CalendarEventPanel.vue:288 #: frontend/src/components/Layouts/AppSidebar.vue:550 @@ -3291,32 +3291,32 @@ msgstr "Layout" msgid "Lead" msgstr "" -#. Label of the lead_details_tab (Tab Break) field in DocType 'CRM Deal' -#: crm/fcrm/doctype/crm_deal/crm_deal.json +#. Label of the lead_details_tab (Tab Break) field in PageType 'CRM Deal' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json msgid "Lead Details" msgstr "" -#. Label of the lead_name (Data) field in DocType 'CRM Deal' -#: crm/fcrm/doctype/crm_deal/crm_deal.json +#. Label of the lead_name (Data) field in PageType 'CRM Deal' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json msgid "Lead Name" msgstr "" -#. Label of the lead_owner (Link) field in DocType 'CRM Lead' -#: crm/fcrm/doctype/crm_lead/crm_lead.json +#. Label of the lead_owner (Link) field in PageType 'CRM Lead' +#: crm/fcrm/pagetype/crm_lead/crm_lead.json msgid "Lead Owner" msgstr "" -#: crm/fcrm/doctype/crm_lead/crm_lead.py:73 +#: crm/fcrm/pagetype/crm_lead/crm_lead.py:73 msgid "Lead Owner cannot be same as the Lead Email Address" msgstr "" -#. Label of a shortcut in the Frappe CRM Workspace -#: crm/fcrm/workspace/frappe_crm/frappe_crm.json +#. Label of a shortcut in the Jingrow CRM Workspace +#: crm/fcrm/workspace/jingrow_crm/jingrow_crm.json msgid "Lead Sources" msgstr "" -#. Label of a shortcut in the Frappe CRM Workspace -#: crm/fcrm/workspace/frappe_crm/frappe_crm.json +#. Label of a shortcut in the Jingrow CRM Workspace +#: crm/fcrm/workspace/jingrow_crm/jingrow_crm.json msgid "Lead Statuses" msgstr "" @@ -3328,8 +3328,8 @@ msgstr "" msgid "Lead to deal conversion pipeline" msgstr "" -#. Label of a shortcut in the Frappe CRM Workspace -#: crm/fcrm/workspace/frappe_crm/frappe_crm.json +#. Label of a shortcut in the Jingrow CRM Workspace +#: crm/fcrm/workspace/jingrow_crm/jingrow_crm.json #: frontend/src/pages/InvalidPage.vue:9 frontend/src/pages/Lead.vue:340 #: frontend/src/pages/MobileLead.vue:291 msgid "Leads" @@ -3345,8 +3345,8 @@ msgstr "" msgid "Learn about conditions" msgstr "" -#. Label of the lft (Int) field in DocType 'CRM Territory' -#: crm/fcrm/doctype/crm_territory/crm_territory.json +#. Label of the lft (Int) field in PageType 'CRM Territory' +#: crm/fcrm/pagetype/crm_territory/crm_territory.json msgid "Left" msgstr "Esquerda" @@ -3367,15 +3367,15 @@ msgstr "Gostar" msgid "Link" msgstr "Link" -#. Label of the links (Table) field in DocType 'CRM Call Log' -#: crm/fcrm/doctype/crm_call_log/crm_call_log.json +#. Label of the links (Table) field in PageType 'CRM Call Log' +#: crm/fcrm/pagetype/crm_call_log/crm_call_log.json msgid "Links" msgstr "Links" -#. Option for the 'Apply To' (Select) field in DocType 'CRM Form Script' -#. Label of the list_tab (Tab Break) field in DocType 'CRM View Settings' -#: crm/fcrm/doctype/crm_form_script/crm_form_script.json -#: crm/fcrm/doctype/crm_view_settings/crm_view_settings.json +#. Option for the 'Apply To' (Select) field in PageType 'CRM Form Script' +#. Label of the list_tab (Tab Break) field in PageType 'CRM View Settings' +#: crm/fcrm/pagetype/crm_form_script/crm_form_script.json +#: crm/fcrm/pagetype/crm_view_settings/crm_view_settings.json #: frontend/src/components/ViewControls.vue:374 #: frontend/src/components/ViewControls.vue:589 frontend/src/utils/view.js:12 msgid "List" @@ -3385,9 +3385,9 @@ msgstr "Lista" msgid "Listen" msgstr "" -#. Label of the load_default_columns (Check) field in DocType 'CRM View +#. Label of the load_default_columns (Check) field in PageType 'CRM View #. Settings' -#: crm/fcrm/doctype/crm_view_settings/crm_view_settings.json +#: crm/fcrm/pagetype/crm_view_settings/crm_view_settings.json msgid "Load Default Columns" msgstr "" @@ -3403,10 +3403,10 @@ msgstr "Carregue mais" msgid "Loading..." msgstr "A carregar..." -#. Label of the log_tab (Tab Break) field in DocType 'CRM Deal' -#. Label of the log_tab (Tab Break) field in DocType 'CRM Lead' -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_lead/crm_lead.json +#. Label of the log_tab (Tab Break) field in PageType 'CRM Deal' +#. Label of the log_tab (Tab Break) field in PageType 'CRM Lead' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_lead/crm_lead.json msgid "Log" msgstr "Log" @@ -3417,28 +3417,28 @@ msgid "Log a Call" msgstr "" #: frontend/src/composables/frappecloud.js:23 -msgid "Login to Frappe Cloud?" -msgstr "Iniciar sessão no Frappe Cloud?" +msgid "Login to Jingrow Cloud?" +msgstr "Iniciar sessão no Jingrow Cloud?" -#. Label of the brand_logo (Attach) field in DocType 'FCRM Settings' -#: crm/fcrm/doctype/fcrm_settings/fcrm_settings.json +#. Label of the brand_logo (Attach) field in PageType 'FCRM Settings' +#: crm/fcrm/pagetype/fcrm_settings/fcrm_settings.json msgid "Logo" msgstr "Logótipo" -#. Option for the 'Type' (Select) field in DocType 'CRM Deal Status' -#: crm/fcrm/doctype/crm_deal_status/crm_deal_status.json +#. Option for the 'Type' (Select) field in PageType 'CRM Deal Status' +#: crm/fcrm/pagetype/crm_deal_status/crm_deal_status.json msgid "Lost" msgstr "" -#. Label of the lost_notes (Text) field in DocType 'CRM Deal' -#: crm/fcrm/doctype/crm_deal/crm_deal.json +#. Label of the lost_notes (Text) field in PageType 'CRM Deal' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json msgid "Lost Notes" msgstr "" -#. Label of the lost_reason (Link) field in DocType 'CRM Deal' -#. Label of the lost_reason (Data) field in DocType 'CRM Lost Reason' -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_lost_reason/crm_lost_reason.json +#. Label of the lost_reason (Link) field in PageType 'CRM Deal' +#. Label of the lost_reason (Data) field in PageType 'CRM Lost Reason' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_lost_reason/crm_lost_reason.json msgid "Lost Reason" msgstr "" @@ -3464,8 +3464,8 @@ msgstr "" msgid "Lost reason is required" msgstr "" -#. Option for the 'Priority' (Select) field in DocType 'CRM Task' -#: crm/fcrm/doctype/crm_task/crm_task.json +#. Option for the 'Priority' (Select) field in PageType 'CRM Task' +#: crm/fcrm/pagetype/crm_task/crm_task.json msgid "Low" msgstr "" @@ -3542,8 +3542,8 @@ msgstr "" msgid "Mandatory field error: {0}" msgstr "" -#. Option for the 'Telephony Medium' (Select) field in DocType 'CRM Call Log' -#: crm/fcrm/doctype/crm_call_log/crm_call_log.json +#. Option for the 'Telephony Medium' (Select) field in PageType 'CRM Call Log' +#: crm/fcrm/pagetype/crm_call_log/crm_call_log.json msgid "Manual" msgstr "Manual" @@ -3562,25 +3562,25 @@ msgstr "" msgid "May 1, 2025" msgstr "" -#. Label of the medium (Data) field in DocType 'CRM Call Log' -#. Option for the 'Priority' (Select) field in DocType 'CRM Task' -#: crm/fcrm/doctype/crm_call_log/crm_call_log.json -#: crm/fcrm/doctype/crm_task/crm_task.json +#. Label of the medium (Data) field in PageType 'CRM Call Log' +#. Option for the 'Priority' (Select) field in PageType 'CRM Task' +#: crm/fcrm/pagetype/crm_call_log/crm_call_log.json +#: crm/fcrm/pagetype/crm_task/crm_task.json msgid "Medium" msgstr "Médio" -#. Option for the 'Type' (Select) field in DocType 'CRM Notification' -#: crm/fcrm/doctype/crm_notification/crm_notification.json +#. Option for the 'Type' (Select) field in PageType 'CRM Notification' +#: crm/fcrm/pagetype/crm_notification/crm_notification.json msgid "Mention" msgstr "Menção" -#. Label of the message (HTML Editor) field in DocType 'CRM Notification' -#: crm/fcrm/doctype/crm_notification/crm_notification.json +#. Label of the message (HTML Editor) field in PageType 'CRM Notification' +#: crm/fcrm/pagetype/crm_notification/crm_notification.json msgid "Message" msgstr "Mensagem" -#. Label of the middle_name (Data) field in DocType 'CRM Lead' -#: crm/fcrm/doctype/crm_lead/crm_lead.json +#. Label of the middle_name (Data) field in PageType 'CRM Lead' +#: crm/fcrm/pagetype/crm_lead/crm_lead.json msgid "Middle Name" msgstr "Nome do meio" @@ -3588,10 +3588,10 @@ msgstr "Nome do meio" msgid "Minimize" msgstr "" -#. Label of the mobile_no (Data) field in DocType 'CRM Contacts' -#. Label of the mobile_no (Data) field in DocType 'CRM Lead' -#: crm/fcrm/doctype/crm_contacts/crm_contacts.json -#: crm/fcrm/doctype/crm_lead/crm_lead.json +#. Label of the mobile_no (Data) field in PageType 'CRM Contacts' +#. Label of the mobile_no (Data) field in PageType 'CRM Lead' +#: crm/fcrm/pagetype/crm_contacts/crm_contacts.json +#: crm/fcrm/pagetype/crm_lead/crm_lead.json msgid "Mobile No" msgstr "Nr. de Telemóvel" @@ -3600,8 +3600,8 @@ msgstr "Nr. de Telemóvel" msgid "Mobile No should be a number" msgstr "" -#. Label of the mobile_no (Data) field in DocType 'CRM Telephony Agent' -#: crm/fcrm/doctype/crm_telephony_agent/crm_telephony_agent.json +#. Label of the mobile_no (Data) field in PageType 'CRM Telephony Agent' +#: crm/fcrm/pagetype/crm_telephony_agent/crm_telephony_agent.json msgid "Mobile No." msgstr "N.º de telemóvel." @@ -3623,10 +3623,10 @@ msgstr "" msgid "Mobile no" msgstr "Nr. de Telemóvel" -#. Option for the 'Weekly Off' (Select) field in DocType 'CRM Holiday List' -#. Option for the 'Workday' (Select) field in DocType 'CRM Service Day' -#: crm/fcrm/doctype/crm_holiday_list/crm_holiday_list.json -#: crm/fcrm/doctype/crm_service_day/crm_service_day.json +#. Option for the 'Weekly Off' (Select) field in PageType 'CRM Holiday List' +#. Option for the 'Workday' (Select) field in PageType 'CRM Service Day' +#: crm/fcrm/pagetype/crm_holiday_list/crm_holiday_list.json +#: crm/fcrm/pagetype/crm_service_day/crm_service_day.json msgid "Monday" msgstr "Segunda-feira" @@ -3658,12 +3658,12 @@ msgstr "Mover para a aba anterior" msgid "My Open Deals" msgstr "" -#. Label of the title (Data) field in DocType 'CRM Dashboard' -#. Label of the name1 (Data) field in DocType 'CRM Dropdown Item' -#. Label of the brand_name (Data) field in DocType 'FCRM Settings' -#: crm/fcrm/doctype/crm_dashboard/crm_dashboard.json -#: crm/fcrm/doctype/crm_dropdown_item/crm_dropdown_item.json -#: crm/fcrm/doctype/fcrm_settings/fcrm_settings.json +#. Label of the title (Data) field in PageType 'CRM Dashboard' +#. Label of the name1 (Data) field in PageType 'CRM Dropdown Item' +#. Label of the brand_name (Data) field in PageType 'FCRM Settings' +#: crm/fcrm/pagetype/crm_dashboard/crm_dashboard.json +#: crm/fcrm/pagetype/crm_dropdown_item/crm_dropdown_item.json +#: crm/fcrm/pagetype/fcrm_settings/fcrm_settings.json #: frontend/src/components/Settings/AssignmentRules/AssignmentRuleView.vue:51 #: frontend/src/components/Settings/AssignmentRules/AssignmentRuleView.vue:52 #: frontend/src/components/Settings/EmailTemplate/EditEmailTemplate.vue:39 @@ -3680,10 +3680,10 @@ msgstr "Nome" msgid "Name is required" msgstr "" -#. Label of the naming_series (Select) field in DocType 'CRM Deal' -#. Label of the naming_series (Select) field in DocType 'CRM Product' -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_product/crm_product.json +#. Label of the naming_series (Select) field in PageType 'CRM Deal' +#. Label of the naming_series (Select) field in PageType 'CRM Product' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_product/crm_product.json msgid "Naming Series" msgstr "" @@ -3691,15 +3691,15 @@ msgstr "" msgid "Nested conditions" msgstr "" -#. Label of the net_amount (Currency) field in DocType 'CRM Products' -#: crm/fcrm/doctype/crm_products/crm_products.json +#. Label of the net_amount (Currency) field in PageType 'CRM Products' +#: crm/fcrm/pagetype/crm_products/crm_products.json msgid "Net Amount" msgstr "" -#. Label of the net_total (Currency) field in DocType 'CRM Deal' -#. Label of the net_total (Currency) field in DocType 'CRM Lead' -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_lead/crm_lead.json +#. Label of the net_total (Currency) field in PageType 'CRM Deal' +#. Label of the net_total (Currency) field in PageType 'CRM Lead' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_lead/crm_lead.json msgid "Net Total" msgstr "" @@ -3814,8 +3814,8 @@ msgstr "Próximo mês" msgid "Next Quarter" msgstr "Próximo trimestre" -#. Label of the next_step (Data) field in DocType 'CRM Deal' -#: crm/fcrm/doctype/crm_deal/crm_deal.json +#. Label of the next_step (Data) field in PageType 'CRM Deal' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json msgid "Next Step" msgstr "Próximo passo" @@ -3831,8 +3831,8 @@ msgstr "Próximo ano" msgid "No" msgstr "Não" -#. Option for the 'Status' (Select) field in DocType 'CRM Call Log' -#: crm/fcrm/doctype/crm_call_log/crm_call_log.json +#. Option for the 'Status' (Select) field in PageType 'CRM Call Log' +#: crm/fcrm/pagetype/crm_call_log/crm_call_log.json msgid "No Answer" msgstr " Sem resposta" @@ -3930,12 +3930,12 @@ msgstr "{0} não disponível" msgid "No {0} Found" msgstr "{0} não encontrado" -#. Label of the no_of_employees (Select) field in DocType 'CRM Deal' -#. Label of the no_of_employees (Select) field in DocType 'CRM Lead' -#. Label of the no_of_employees (Select) field in DocType 'CRM Organization' -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_lead/crm_lead.json -#: crm/fcrm/doctype/crm_organization/crm_organization.json +#. Label of the no_of_employees (Select) field in PageType 'CRM Deal' +#. Label of the no_of_employees (Select) field in PageType 'CRM Lead' +#. Label of the no_of_employees (Select) field in PageType 'CRM Organization' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_lead/crm_lead.json +#: crm/fcrm/pagetype/crm_organization/crm_organization.json msgid "No. of Employees" msgstr "N.º de funcionários" @@ -3981,24 +3981,24 @@ msgstr "Não Gostar" msgid "Not Saved" msgstr "Não Guardado" -#: crm/fcrm/doctype/crm_deal/crm_deal.py:272 +#: crm/fcrm/pagetype/crm_deal/crm_deal.py:272 msgid "Not allowed to add contact to Deal" msgstr "" -#: crm/fcrm/doctype/crm_lead/crm_lead.py:408 +#: crm/fcrm/pagetype/crm_lead/crm_lead.py:408 msgid "Not allowed to convert Lead to Deal" msgstr "" -#: crm/fcrm/doctype/crm_deal/crm_deal.py:283 +#: crm/fcrm/pagetype/crm_deal/crm_deal.py:283 msgid "Not allowed to remove contact from Deal" msgstr "" -#: crm/fcrm/doctype/crm_deal/crm_deal.py:294 +#: crm/fcrm/pagetype/crm_deal/crm_deal.py:294 msgid "Not allowed to set primary contact for Deal" msgstr "" -#. Label of the note (Link) field in DocType 'CRM Call Log' -#: crm/fcrm/doctype/crm_call_log/crm_call_log.json +#. Label of the note (Link) field in PageType 'CRM Call Log' +#: crm/fcrm/pagetype/crm_call_log/crm_call_log.json #: frontend/src/components/Layouts/AppSidebar.vue:554 msgid "Note" msgstr "Nota" @@ -4017,21 +4017,21 @@ msgstr "" msgid "Notification" msgstr "Notificação" -#. Label of the notification_text (Text) field in DocType 'CRM Notification' -#: crm/fcrm/doctype/crm_notification/crm_notification.json +#. Label of the notification_text (Text) field in PageType 'CRM Notification' +#: crm/fcrm/pagetype/crm_notification/crm_notification.json msgid "Notification Text" msgstr "Texto da notificação" -#. Label of the notification_type_doc (Dynamic Link) field in DocType 'CRM +#. Label of the notification_type_pg (Dynamic Link) field in PageType 'CRM #. Notification' -#: crm/fcrm/doctype/crm_notification/crm_notification.json -msgid "Notification Type Doc" +#: crm/fcrm/pagetype/crm_notification/crm_notification.json +msgid "Notification Type Pg" msgstr "" -#. Label of the notification_type_doctype (Link) field in DocType 'CRM +#. Label of the notification_type_pagetype (Link) field in PageType 'CRM #. Notification' -#: crm/fcrm/doctype/crm_notification/crm_notification.json -msgid "Notification Type Doctype" +#: crm/fcrm/pagetype/crm_notification/crm_notification.json +msgid "Notification Type Pagetype" msgstr "" #: frontend/src/components/Layouts/AppSidebar.vue:13 @@ -4041,8 +4041,8 @@ msgstr "" msgid "Notifications" msgstr "Notificações" -#. Label of the number (Data) field in DocType 'CRM Telephony Phone' -#: crm/fcrm/doctype/crm_telephony_phone/crm_telephony_phone.json +#. Label of the number (Data) field in PageType 'CRM Telephony Phone' +#: crm/fcrm/pagetype/crm_telephony_phone/crm_telephony_phone.json msgid "Number" msgstr "Número" @@ -4064,18 +4064,18 @@ msgstr "" msgid "Old Condition" msgstr "" -#. Label of the old_parent (Link) field in DocType 'CRM Territory' -#: crm/fcrm/doctype/crm_territory/crm_territory.json +#. Label of the old_parent (Link) field in PageType 'CRM Territory' +#: crm/fcrm/pagetype/crm_territory/crm_territory.json msgid "Old Parent" msgstr "" -#. Option for the 'Type' (Select) field in DocType 'CRM Deal Status' -#: crm/fcrm/doctype/crm_deal_status/crm_deal_status.json +#. Option for the 'Type' (Select) field in PageType 'CRM Deal Status' +#: crm/fcrm/pagetype/crm_deal_status/crm_deal_status.json msgid "On Hold" msgstr "" -#. Option for the 'Type' (Select) field in DocType 'CRM Deal Status' -#: crm/fcrm/doctype/crm_deal_status/crm_deal_status.json +#. Option for the 'Type' (Select) field in PageType 'CRM Deal Status' +#: crm/fcrm/pagetype/crm_deal_status/crm_deal_status.json msgid "Ongoing" msgstr "" @@ -4088,13 +4088,13 @@ msgstr "" msgid "Only image files are allowed" msgstr "" -#: crm/fcrm/doctype/crm_deal/crm_deal.py:60 -#: crm/fcrm/doctype/crm_telephony_agent/crm_telephony_agent.py:23 +#: crm/fcrm/pagetype/crm_deal/crm_deal.py:60 +#: crm/fcrm/pagetype/crm_telephony_agent/crm_telephony_agent.py:23 msgid "Only one {0} can be set as primary." msgstr "Somente um {0} pode ser definido como primário." -#. Option for the 'Type' (Select) field in DocType 'CRM Deal Status' -#: crm/fcrm/doctype/crm_deal_status/crm_deal_status.json +#. Option for the 'Type' (Select) field in PageType 'CRM Deal Status' +#: crm/fcrm/pagetype/crm_deal_status/crm_deal_status.json msgid "Open" msgstr "" @@ -4108,13 +4108,13 @@ msgstr "" msgid "Open Lead" msgstr "" -#: crm/fcrm/doctype/crm_deal/crm_deal.js:6 -#: crm/fcrm/doctype/crm_lead/crm_lead.js:6 +#: crm/fcrm/pagetype/crm_deal/crm_deal.js:6 +#: crm/fcrm/pagetype/crm_lead/crm_lead.js:6 msgid "Open in Portal" msgstr "" -#. Label of the open_in_new_window (Check) field in DocType 'CRM Dropdown Item' -#: crm/fcrm/doctype/crm_dropdown_item/crm_dropdown_item.json +#. Label of the open_in_new_window (Check) field in PageType 'CRM Dropdown Item' +#: crm/fcrm/pagetype/crm_dropdown_item/crm_dropdown_item.json msgid "Open in new window" msgstr "Abrir numa nova janela" @@ -4136,17 +4136,17 @@ msgstr "Opções" msgid "Or create leads manually" msgstr "" -#. Label of the order_by_tab (Tab Break) field in DocType 'CRM View Settings' -#. Label of the order_by (Code) field in DocType 'CRM View Settings' -#: crm/fcrm/doctype/crm_view_settings/crm_view_settings.json +#. Label of the order_by_tab (Tab Break) field in PageType 'CRM View Settings' +#. Label of the order_by (Code) field in PageType 'CRM View Settings' +#: crm/fcrm/pagetype/crm_view_settings/crm_view_settings.json msgid "Order By" msgstr "Ordenar por" -#. Label of the organization (Link) field in DocType 'CRM Deal' -#. Label of the organization_tab (Tab Break) field in DocType 'CRM Deal' -#. Label of the organization (Data) field in DocType 'CRM Lead' -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_lead/crm_lead.json +#. Label of the organization (Link) field in PageType 'CRM Deal' +#. Label of the organization_tab (Tab Break) field in PageType 'CRM Deal' +#. Label of the organization (Data) field in PageType 'CRM Lead' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_lead/crm_lead.json #: frontend/src/components/Layouts/AppSidebar.vue:553 #: frontend/src/components/Modals/ConvertToDealModal.vue:25 #: frontend/src/pages/Contact.vue:494 frontend/src/pages/MobileContact.vue:502 @@ -4158,22 +4158,22 @@ msgstr "Ordenar por" msgid "Organization" msgstr "Organização" -#. Label of the organization_details_section (Section Break) field in DocType +#. Label of the organization_details_section (Section Break) field in PageType #. 'CRM Deal' -#: crm/fcrm/doctype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_deal/crm_deal.json msgid "Organization Details" msgstr "" -#. Label of the organization_logo (Attach Image) field in DocType 'CRM +#. Label of the organization_logo (Attach Image) field in PageType 'CRM #. Organization' -#: crm/fcrm/doctype/crm_organization/crm_organization.json +#: crm/fcrm/pagetype/crm_organization/crm_organization.json msgid "Organization Logo" msgstr "Logótipo da Organização" -#. Label of the organization_name (Data) field in DocType 'CRM Deal' -#. Label of the organization_name (Data) field in DocType 'CRM Organization' -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_organization/crm_organization.json +#. Label of the organization_name (Data) field in PageType 'CRM Deal' +#. Label of the organization_name (Data) field in PageType 'CRM Organization' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_organization/crm_organization.json msgid "Organization Name" msgstr "Nome da Organização" @@ -4181,8 +4181,8 @@ msgstr "Nome da Organização" msgid "Organization logo" msgstr "Logótipo da organização" -#. Label of a shortcut in the Frappe CRM Workspace -#: crm/fcrm/workspace/frappe_crm/frappe_crm.json +#. Label of a shortcut in the Jingrow CRM Workspace +#: crm/fcrm/workspace/jingrow_crm/jingrow_crm.json #: frontend/src/pages/MobileOrganization.vue:205 #: frontend/src/pages/Organization.vue:234 msgid "Organizations" @@ -4196,8 +4196,8 @@ msgstr "" msgid "Other features" msgstr "" -#. Label of the organization_tab (Tab Break) field in DocType 'CRM Lead' -#: crm/fcrm/doctype/crm_lead/crm_lead.json +#. Label of the organization_tab (Tab Break) field in PageType 'CRM Lead' +#: crm/fcrm/pagetype/crm_lead/crm_lead.json msgid "Others" msgstr "Outros" @@ -4205,13 +4205,13 @@ msgstr "Outros" msgid "Outbound Call" msgstr "Chamada de saída" -#. Option for the 'Type' (Select) field in DocType 'CRM Call Log' -#: crm/fcrm/doctype/crm_call_log/crm_call_log.json +#. Option for the 'Type' (Select) field in PageType 'CRM Call Log' +#: crm/fcrm/pagetype/crm_call_log/crm_call_log.json msgid "Outgoing" msgstr "Saída" -#. Label of the log_owner (Link) field in DocType 'CRM Status Change Log' -#: crm/fcrm/doctype/crm_status_change_log/crm_status_change_log.json +#. Label of the log_owner (Link) field in PageType 'CRM Status Change Log' +#: crm/fcrm/pagetype/crm_status_change_log/crm_status_change_log.json msgid "Owner" msgstr "Dono" @@ -4219,8 +4219,8 @@ msgstr "Dono" msgid "Owner: {0}" msgstr "" -#. Label of the parent_crm_territory (Link) field in DocType 'CRM Territory' -#: crm/fcrm/doctype/crm_territory/crm_territory.json +#. Label of the parent_crm_territory (Link) field in PageType 'CRM Territory' +#: crm/fcrm/pagetype/crm_territory/crm_territory.json msgid "Parent CRM Territory" msgstr "" @@ -4251,8 +4251,8 @@ msgstr "" msgid "Payment Reminder from Frappé - (#{{ name }})" msgstr "" -#. Option for the 'Status' (Select) field in DocType 'CRM Invitation' -#: crm/fcrm/doctype/crm_invitation/crm_invitation.json +#. Option for the 'Status' (Select) field in PageType 'CRM Invitation' +#: crm/fcrm/pagetype/crm_invitation/crm_invitation.json msgid "Pending" msgstr "Pendente" @@ -4264,10 +4264,10 @@ msgstr "" msgid "Period" msgstr "" -#. Label of the person_section (Section Break) field in DocType 'CRM Deal' -#. Label of the person_tab (Tab Break) field in DocType 'CRM Lead' -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_lead/crm_lead.json +#. Label of the person_section (Section Break) field in PageType 'CRM Deal' +#. Label of the person_tab (Tab Break) field in PageType 'CRM Lead' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_lead/crm_lead.json msgid "Person" msgstr "Pessoa" @@ -4275,19 +4275,19 @@ msgstr "Pessoa" msgid "Personal Settings" msgstr "" -#. Label of the phone (Data) field in DocType 'CRM Contacts' -#. Label of the phone (Data) field in DocType 'CRM Lead' -#. Option for the 'Device' (Select) field in DocType 'CRM Telephony Agent' -#: crm/fcrm/doctype/crm_contacts/crm_contacts.json -#: crm/fcrm/doctype/crm_lead/crm_lead.json -#: crm/fcrm/doctype/crm_telephony_agent/crm_telephony_agent.json +#. Label of the phone (Data) field in PageType 'CRM Contacts' +#. Label of the phone (Data) field in PageType 'CRM Lead' +#. Option for the 'Device' (Select) field in PageType 'CRM Telephony Agent' +#: crm/fcrm/pagetype/crm_contacts/crm_contacts.json +#: crm/fcrm/pagetype/crm_lead/crm_lead.json +#: crm/fcrm/pagetype/crm_telephony_agent/crm_telephony_agent.json #: frontend/src/pages/MobileOrganization.vue:495 #: frontend/src/pages/Organization.vue:516 msgid "Phone" msgstr "Telefone" -#. Label of the phone_nos (Table) field in DocType 'CRM Telephony Agent' -#: crm/fcrm/doctype/crm_telephony_agent/crm_telephony_agent.json +#. Label of the phone_nos (Table) field in PageType 'CRM Telephony Agent' +#: crm/fcrm/pagetype/crm_telephony_agent/crm_telephony_agent.json msgid "Phone Numbers" msgstr "Números de Telefone" @@ -4295,8 +4295,8 @@ msgstr "Números de Telefone" msgid "Pin View" msgstr "" -#. Label of the pinned (Check) field in DocType 'CRM View Settings' -#: crm/fcrm/doctype/crm_view_settings/crm_view_settings.json +#. Label of the pinned (Check) field in PageType 'CRM View Settings' +#: crm/fcrm/pagetype/crm_view_settings/crm_view_settings.json msgid "Pinned" msgstr "" @@ -4346,7 +4346,7 @@ msgstr "Por favor, selecione um contacto existente" msgid "Please select an existing organization" msgstr "Por favor, selecione uma organização existente" -#: crm/fcrm/doctype/helpdesk_crm_settings/helpdesk_crm_settings.py:126 +#: crm/fcrm/pagetype/helpdesk_crm_settings/helpdesk_crm_settings.py:126 msgid "Please set Email Address" msgstr "" @@ -4354,18 +4354,18 @@ msgstr "" msgid "Please setup Exotel intergration" msgstr "" -#: crm/fcrm/doctype/crm_deal/crm_deal.py:181 +#: crm/fcrm/pagetype/crm_deal/crm_deal.py:181 msgid "Please specify a reason for losing the deal." msgstr "" -#: crm/fcrm/doctype/crm_deal/crm_deal.py:183 +#: crm/fcrm/pagetype/crm_deal/crm_deal.py:183 msgid "Please specify the reason for losing the deal." msgstr "" -#. Label of the position (Int) field in DocType 'CRM Deal Status' -#. Label of the position (Int) field in DocType 'CRM Lead Status' -#: crm/fcrm/doctype/crm_deal_status/crm_deal_status.json -#: crm/fcrm/doctype/crm_lead_status/crm_lead_status.json +#. Label of the position (Int) field in PageType 'CRM Deal Status' +#. Label of the position (Int) field in PageType 'CRM Lead Status' +#: crm/fcrm/pagetype/crm_deal_status/crm_deal_status.json +#: crm/fcrm/pagetype/crm_lead_status/crm_lead_status.json msgid "Position" msgstr "Posição" @@ -4373,18 +4373,18 @@ msgstr "Posição" msgid "Primary" msgstr "Principal" -#. Label of the email (Data) field in DocType 'CRM Deal' -#: crm/fcrm/doctype/crm_deal/crm_deal.json +#. Label of the email (Data) field in PageType 'CRM Deal' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json msgid "Primary Email" msgstr "" -#. Label of the mobile_no (Data) field in DocType 'CRM Deal' -#: crm/fcrm/doctype/crm_deal/crm_deal.json +#. Label of the mobile_no (Data) field in PageType 'CRM Deal' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json msgid "Primary Mobile No" msgstr "" -#. Label of the phone (Data) field in DocType 'CRM Deal' -#: crm/fcrm/doctype/crm_deal/crm_deal.json +#. Label of the phone (Data) field in PageType 'CRM Deal' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json msgid "Primary Phone" msgstr "" @@ -4392,57 +4392,57 @@ msgstr "" msgid "Primary contact set" msgstr "Contacto principal definido" -#. Label of the priorities (Table) field in DocType 'CRM Service Level +#. Label of the priorities (Table) field in PageType 'CRM Service Level #. Agreement' -#: crm/fcrm/doctype/crm_service_level_agreement/crm_service_level_agreement.json +#: crm/fcrm/pagetype/crm_service_level_agreement/crm_service_level_agreement.json msgid "Priorities" msgstr "Prioridades" -#. Label of the priority (Link) field in DocType 'CRM Service Level Priority' -#. Label of the priority (Select) field in DocType 'CRM Task' -#: crm/fcrm/doctype/crm_service_level_priority/crm_service_level_priority.json -#: crm/fcrm/doctype/crm_task/crm_task.json +#. Label of the priority (Link) field in PageType 'CRM Service Level Priority' +#. Label of the priority (Select) field in PageType 'CRM Task' +#: crm/fcrm/pagetype/crm_service_level_priority/crm_service_level_priority.json +#: crm/fcrm/pagetype/crm_task/crm_task.json #: frontend/src/components/Settings/AssignmentRules/AssignmentRuleView.vue:64 #: frontend/src/components/Settings/AssignmentRules/AssignmentRulesList.vue:20 msgid "Priority" msgstr "Prioridade" -#. Label of the private (Check) field in DocType 'CRM Dashboard' -#: crm/fcrm/doctype/crm_dashboard/crm_dashboard.json +#. Label of the private (Check) field in PageType 'CRM Dashboard' +#: crm/fcrm/pagetype/crm_dashboard/crm_dashboard.json #: frontend/src/components/FilesUploader/FilesUploaderArea.vue:89 msgid "Private" msgstr "Privado" -#. Label of the probability (Percent) field in DocType 'CRM Deal' -#. Label of the probability (Percent) field in DocType 'CRM Deal Status' -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_deal_status/crm_deal_status.json +#. Label of the probability (Percent) field in PageType 'CRM Deal' +#. Label of the probability (Percent) field in PageType 'CRM Deal Status' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_deal_status/crm_deal_status.json msgid "Probability" msgstr "Probabilidade" -#. Label of the product_code (Link) field in DocType 'CRM Products' -#: crm/fcrm/doctype/crm_products/crm_products.json +#. Label of the product_code (Link) field in PageType 'CRM Products' +#: crm/fcrm/pagetype/crm_products/crm_products.json msgid "Product" msgstr "" -#. Label of the product_code (Data) field in DocType 'CRM Product' -#: crm/fcrm/doctype/crm_product/crm_product.json +#. Label of the product_code (Data) field in PageType 'CRM Product' +#: crm/fcrm/pagetype/crm_product/crm_product.json msgid "Product Code" msgstr "" -#. Label of the product_name (Data) field in DocType 'CRM Product' -#. Label of the product_name (Data) field in DocType 'CRM Products' -#: crm/fcrm/doctype/crm_product/crm_product.json -#: crm/fcrm/doctype/crm_products/crm_products.json +#. Label of the product_name (Data) field in PageType 'CRM Product' +#. Label of the product_name (Data) field in PageType 'CRM Products' +#: crm/fcrm/pagetype/crm_product/crm_product.json +#: crm/fcrm/pagetype/crm_products/crm_products.json msgid "Product Name" msgstr "" -#. Label of the products_tab (Tab Break) field in DocType 'CRM Deal' -#. Label of the products (Table) field in DocType 'CRM Deal' -#. Label of the products_tab (Tab Break) field in DocType 'CRM Lead' -#. Label of the products (Table) field in DocType 'CRM Lead' -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_lead/crm_lead.json +#. Label of the products_tab (Tab Break) field in PageType 'CRM Deal' +#. Label of the products (Table) field in PageType 'CRM Deal' +#. Label of the products_tab (Tab Break) field in PageType 'CRM Lead' +#. Label of the products (Table) field in PageType 'CRM Lead' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_lead/crm_lead.json msgid "Products" msgstr "" @@ -4459,8 +4459,8 @@ msgstr "" msgid "Projected vs actual revenue based on deal probability" msgstr "" -#. Label of the public (Check) field in DocType 'CRM View Settings' -#: crm/fcrm/doctype/crm_view_settings/crm_view_settings.json +#. Label of the public (Check) field in PageType 'CRM View Settings' +#: crm/fcrm/pagetype/crm_view_settings/crm_view_settings.json msgid "Public" msgstr "Público" @@ -4472,23 +4472,23 @@ msgstr "" msgid "Public view" msgstr "" -#. Label of the qty (Float) field in DocType 'CRM Products' -#: crm/fcrm/doctype/crm_products/crm_products.json +#. Label of the qty (Float) field in PageType 'CRM Products' +#: crm/fcrm/pagetype/crm_products/crm_products.json msgid "Quantity" msgstr "" -#. Option for the 'Status' (Select) field in DocType 'CRM Call Log' -#: crm/fcrm/doctype/crm_call_log/crm_call_log.json +#. Option for the 'Status' (Select) field in PageType 'CRM Call Log' +#: crm/fcrm/pagetype/crm_call_log/crm_call_log.json msgid "Queued" msgstr "Em Fila" -#. Option for the 'Type' (Select) field in DocType 'CRM Fields Layout' -#: crm/fcrm/doctype/crm_fields_layout/crm_fields_layout.json +#. Option for the 'Type' (Select) field in PageType 'CRM Fields Layout' +#: crm/fcrm/pagetype/crm_fields_layout/crm_fields_layout.json msgid "Quick Entry" msgstr "Registo Rápido" -#. Option for the 'Type' (Select) field in DocType 'CRM Global Settings' -#: crm/fcrm/doctype/crm_global_settings/crm_global_settings.json +#. Option for the 'Type' (Select) field in PageType 'CRM Global Settings' +#: crm/fcrm/pagetype/crm_global_settings/crm_global_settings.json msgid "Quick Filters" msgstr "" @@ -4500,13 +4500,13 @@ msgstr "" msgid "Quick entry layout" msgstr "" -#. Label of the rate (Currency) field in DocType 'CRM Products' -#: crm/fcrm/doctype/crm_products/crm_products.json +#. Label of the rate (Currency) field in PageType 'CRM Products' +#: crm/fcrm/pagetype/crm_products/crm_products.json msgid "Rate" msgstr "" -#. Label of the read (Check) field in DocType 'CRM Notification' -#: crm/fcrm/doctype/crm_notification/crm_notification.json +#. Label of the read (Check) field in PageType 'CRM Notification' +#: crm/fcrm/pagetype/crm_notification/crm_notification.json msgid "Read" msgstr "Ler" @@ -4514,48 +4514,48 @@ msgstr "Ler" msgid "Reason" msgstr "" -#. Label of the record_calls (Check) field in DocType 'CRM Twilio Settings' -#: crm/fcrm/doctype/crm_twilio_settings/crm_twilio_settings.json +#. Label of the record_calls (Check) field in PageType 'CRM Twilio Settings' +#: crm/fcrm/pagetype/crm_twilio_settings/crm_twilio_settings.json msgid "Record Calls" msgstr "" -#. Label of the record_call (Check) field in DocType 'CRM Exotel Settings' -#: crm/fcrm/doctype/crm_exotel_settings/crm_exotel_settings.json +#. Label of the record_call (Check) field in PageType 'CRM Exotel Settings' +#: crm/fcrm/pagetype/crm_exotel_settings/crm_exotel_settings.json msgid "Record Outgoing Calls" msgstr "" -#. Label of the recording_url (Data) field in DocType 'CRM Call Log' -#: crm/fcrm/doctype/crm_call_log/crm_call_log.json +#. Label of the recording_url (Data) field in PageType 'CRM Call Log' +#: crm/fcrm/pagetype/crm_call_log/crm_call_log.json msgid "Recording URL" msgstr "" -#. Label of the reference_name (Dynamic Link) field in DocType 'CRM +#. Label of the reference_name (Dynamic Link) field in PageType 'CRM #. Notification' -#. Label of the reference_docname (Dynamic Link) field in DocType 'CRM Task' -#. Label of the reference_docname (Dynamic Link) field in DocType 'FCRM Note' -#: crm/fcrm/doctype/crm_notification/crm_notification.json -#: crm/fcrm/doctype/crm_task/crm_task.json -#: crm/fcrm/doctype/fcrm_note/fcrm_note.json -msgid "Reference Doc" +#. Label of the reference_docname (Dynamic Link) field in PageType 'CRM Task' +#. Label of the reference_docname (Dynamic Link) field in PageType 'FCRM Note' +#: crm/fcrm/pagetype/crm_notification/crm_notification.json +#: crm/fcrm/pagetype/crm_task/crm_task.json +#: crm/fcrm/pagetype/fcrm_note/fcrm_note.json +msgid "Reference Pg" msgstr "" -#. Label of the reference_doctype (Link) field in DocType 'CRM Notification' -#: crm/fcrm/doctype/crm_notification/crm_notification.json -msgid "Reference Doctype" -msgstr "DocType de Referência" +#. Label of the reference_pagetype (Link) field in PageType 'CRM Notification' +#: crm/fcrm/pagetype/crm_notification/crm_notification.json +msgid "Reference Pagetype" +msgstr "PageType de Referência" -#. Label of the reference_doctype (Link) field in DocType 'CRM Call Log' -#. Label of the reference_doctype (Link) field in DocType 'CRM Task' -#. Label of the reference_doctype (Link) field in DocType 'FCRM Note' -#: crm/fcrm/doctype/crm_call_log/crm_call_log.json -#: crm/fcrm/doctype/crm_task/crm_task.json -#: crm/fcrm/doctype/fcrm_note/fcrm_note.json +#. Label of the reference_pagetype (Link) field in PageType 'CRM Call Log' +#. Label of the reference_pagetype (Link) field in PageType 'CRM Task' +#. Label of the reference_pagetype (Link) field in PageType 'FCRM Note' +#: crm/fcrm/pagetype/crm_call_log/crm_call_log.json +#: crm/fcrm/pagetype/crm_task/crm_task.json +#: crm/fcrm/pagetype/fcrm_note/fcrm_note.json msgid "Reference Document Type" msgstr "Tipo de documento de referência" -#. Label of the reference_docname (Dynamic Link) field in DocType 'CRM Call +#. Label of the reference_docname (Dynamic Link) field in PageType 'CRM Call #. Log' -#: crm/fcrm/doctype/crm_call_log/crm_call_log.json +#: crm/fcrm/pagetype/crm_call_log/crm_call_log.json msgid "Reference Name" msgstr "Nome de referência" @@ -4625,8 +4625,8 @@ msgstr "" msgid "Report an Issue" msgstr "" -#. Option for the 'Type' (Select) field in DocType 'CRM Fields Layout' -#: crm/fcrm/doctype/crm_fields_layout/crm_fields_layout.json +#. Option for the 'Type' (Select) field in PageType 'CRM Fields Layout' +#: crm/fcrm/pagetype/crm_fields_layout/crm_fields_layout.json msgid "Required Fields" msgstr "Campos obrigatórios" @@ -4642,7 +4642,7 @@ msgstr "Redefinir" msgid "Reset Changes" msgstr "Redefinir alterações" -#: crm/fcrm/doctype/erpnext_crm_settings/erpnext_crm_settings.js:7 +#: crm/fcrm/pagetype/erpnext_crm_settings/erpnext_crm_settings.js:7 msgid "Reset ERPNext Form Script" msgstr "Redefinir Form Script ERPNext" @@ -4654,35 +4654,35 @@ msgstr "" msgid "Reset to default" msgstr "" -#. Label of the response_by (Datetime) field in DocType 'CRM Deal' -#. Label of the response_by (Datetime) field in DocType 'CRM Lead' -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_lead/crm_lead.json +#. Label of the response_by (Datetime) field in PageType 'CRM Deal' +#. Label of the response_by (Datetime) field in PageType 'CRM Lead' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_lead/crm_lead.json msgid "Response By" msgstr "" -#. Label of the response_details_section (Section Break) field in DocType 'CRM +#. Label of the response_details_section (Section Break) field in PageType 'CRM #. Deal' -#. Label of the response_details_section (Section Break) field in DocType 'CRM +#. Label of the response_details_section (Section Break) field in PageType 'CRM #. Lead' -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_lead/crm_lead.json +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_lead/crm_lead.json msgid "Response Details" msgstr "" -#. Label of the section_break_ufaf (Section Break) field in DocType 'CRM +#. Label of the section_break_ufaf (Section Break) field in PageType 'CRM #. Service Level Agreement' -#: crm/fcrm/doctype/crm_service_level_agreement/crm_service_level_agreement.json +#: crm/fcrm/pagetype/crm_service_level_agreement/crm_service_level_agreement.json msgid "Response and Follow Up" msgstr "" -#: crm/fcrm/doctype/fcrm_settings/fcrm_settings.js:14 +#: crm/fcrm/pagetype/fcrm_settings/fcrm_settings.js:14 msgid "Restore" msgstr "Restaurar" -#. Label of the restore_defaults (Button) field in DocType 'FCRM Settings' -#: crm/fcrm/doctype/fcrm_settings/fcrm_settings.js:13 -#: crm/fcrm/doctype/fcrm_settings/fcrm_settings.json +#. Label of the restore_defaults (Button) field in PageType 'FCRM Settings' +#: crm/fcrm/pagetype/fcrm_settings/fcrm_settings.js:13 +#: crm/fcrm/pagetype/fcrm_settings/fcrm_settings.json msgid "Restore Defaults" msgstr "" @@ -4699,13 +4699,13 @@ msgstr "" msgid "Rich Text" msgstr "" -#. Label of the rgt (Int) field in DocType 'CRM Territory' -#: crm/fcrm/doctype/crm_territory/crm_territory.json +#. Label of the rgt (Int) field in PageType 'CRM Territory' +#: crm/fcrm/pagetype/crm_territory/crm_territory.json msgid "Right" msgstr "Direita" -#. Option for the 'Status' (Select) field in DocType 'CRM Call Log' -#: crm/fcrm/doctype/crm_call_log/crm_call_log.json +#. Option for the 'Status' (Select) field in PageType 'CRM Call Log' +#: crm/fcrm/pagetype/crm_call_log/crm_call_log.json msgid "Ringing" msgstr "A tocar" @@ -4714,55 +4714,55 @@ msgstr "A tocar" msgid "Ringing..." msgstr "A tocar..." -#. Label of the role (Select) field in DocType 'CRM Invitation' -#: crm/fcrm/doctype/crm_invitation/crm_invitation.json +#. Label of the role (Select) field in PageType 'CRM Invitation' +#: crm/fcrm/pagetype/crm_invitation/crm_invitation.json #: frontend/src/components/Modals/AddExistingUserModal.vue:46 msgid "Role" msgstr "Função" -#. Option for the 'Type' (Select) field in DocType 'CRM Dropdown Item' -#. Label of the route (Data) field in DocType 'CRM Dropdown Item' -#: crm/fcrm/doctype/crm_dropdown_item/crm_dropdown_item.json +#. Option for the 'Type' (Select) field in PageType 'CRM Dropdown Item' +#. Label of the route (Data) field in PageType 'CRM Dropdown Item' +#: crm/fcrm/pagetype/crm_dropdown_item/crm_dropdown_item.json msgid "Route" msgstr "" -#. Label of the route_name (Data) field in DocType 'CRM View Settings' -#: crm/fcrm/doctype/crm_view_settings/crm_view_settings.json +#. Label of the route_name (Data) field in PageType 'CRM View Settings' +#: crm/fcrm/pagetype/crm_view_settings/crm_view_settings.json msgid "Route Name" msgstr "" -#. Label of the rows (Code) field in DocType 'CRM View Settings' -#: crm/fcrm/doctype/crm_view_settings/crm_view_settings.json +#. Label of the rows (Code) field in PageType 'CRM View Settings' +#: crm/fcrm/pagetype/crm_view_settings/crm_view_settings.json msgid "Rows" msgstr "Linhas" -#. Label of the sla_tab (Tab Break) field in DocType 'CRM Deal' -#. Label of the sla (Link) field in DocType 'CRM Deal' -#. Label of the sla_tab (Tab Break) field in DocType 'CRM Lead' -#. Label of the sla (Link) field in DocType 'CRM Lead' -#. Label of a shortcut in the Frappe CRM Workspace -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_lead/crm_lead.json -#: crm/fcrm/workspace/frappe_crm/frappe_crm.json +#. Label of the sla_tab (Tab Break) field in PageType 'CRM Deal' +#. Label of the sla (Link) field in PageType 'CRM Deal' +#. Label of the sla_tab (Tab Break) field in PageType 'CRM Lead' +#. Label of the sla (Link) field in PageType 'CRM Lead' +#. Label of a shortcut in the Jingrow CRM Workspace +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_lead/crm_lead.json +#: crm/fcrm/workspace/jingrow_crm/jingrow_crm.json msgid "SLA" msgstr "" -#. Label of the sla_creation (Datetime) field in DocType 'CRM Deal' -#. Label of the sla_creation (Datetime) field in DocType 'CRM Lead' -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_lead/crm_lead.json +#. Label of the sla_creation (Datetime) field in PageType 'CRM Deal' +#. Label of the sla_creation (Datetime) field in PageType 'CRM Lead' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_lead/crm_lead.json msgid "SLA Creation" msgstr "" -#. Label of the sla_name (Data) field in DocType 'CRM Service Level Agreement' -#: crm/fcrm/doctype/crm_service_level_agreement/crm_service_level_agreement.json +#. Label of the sla_name (Data) field in PageType 'CRM Service Level Agreement' +#: crm/fcrm/pagetype/crm_service_level_agreement/crm_service_level_agreement.json msgid "SLA Name" msgstr "" -#. Label of the sla_status (Select) field in DocType 'CRM Deal' -#. Label of the sla_status (Select) field in DocType 'CRM Lead' -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_lead/crm_lead.json +#. Label of the sla_status (Select) field in PageType 'CRM Deal' +#. Label of the sla_status (Select) field in PageType 'CRM Lead' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_lead/crm_lead.json msgid "SLA Status" msgstr "" @@ -4771,57 +4771,57 @@ msgid "SUBJECT" msgstr "" #. Name of a role -#. Option for the 'Role' (Select) field in DocType 'CRM Invitation' -#: crm/fcrm/doctype/crm_call_log/crm_call_log.json -#: crm/fcrm/doctype/crm_communication_status/crm_communication_status.json -#: crm/fcrm/doctype/crm_dashboard/crm_dashboard.json -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_deal_status/crm_deal_status.json -#: crm/fcrm/doctype/crm_exotel_settings/crm_exotel_settings.json -#: crm/fcrm/doctype/crm_form_script/crm_form_script.json -#: crm/fcrm/doctype/crm_global_settings/crm_global_settings.json -#: crm/fcrm/doctype/crm_holiday_list/crm_holiday_list.json -#: crm/fcrm/doctype/crm_industry/crm_industry.json -#: crm/fcrm/doctype/crm_invitation/crm_invitation.json -#: crm/fcrm/doctype/crm_lead/crm_lead.json -#: crm/fcrm/doctype/crm_lead_source/crm_lead_source.json -#: crm/fcrm/doctype/crm_lead_status/crm_lead_status.json -#: crm/fcrm/doctype/crm_lost_reason/crm_lost_reason.json -#: crm/fcrm/doctype/crm_notification/crm_notification.json -#: crm/fcrm/doctype/crm_organization/crm_organization.json -#: crm/fcrm/doctype/crm_service_level_agreement/crm_service_level_agreement.json -#: crm/fcrm/doctype/crm_task/crm_task.json -#: crm/fcrm/doctype/crm_territory/crm_territory.json -#: crm/fcrm/doctype/crm_twilio_settings/crm_twilio_settings.json -#: crm/fcrm/doctype/crm_view_settings/crm_view_settings.json -#: crm/fcrm/doctype/erpnext_crm_settings/erpnext_crm_settings.json -#: crm/fcrm/doctype/fcrm_note/fcrm_note.json -#: crm/fcrm/doctype/fcrm_settings/fcrm_settings.json -#: crm/fcrm/doctype/helpdesk_crm_settings/helpdesk_crm_settings.json +#. Option for the 'Role' (Select) field in PageType 'CRM Invitation' +#: crm/fcrm/pagetype/crm_call_log/crm_call_log.json +#: crm/fcrm/pagetype/crm_communication_status/crm_communication_status.json +#: crm/fcrm/pagetype/crm_dashboard/crm_dashboard.json +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_deal_status/crm_deal_status.json +#: crm/fcrm/pagetype/crm_exotel_settings/crm_exotel_settings.json +#: crm/fcrm/pagetype/crm_form_script/crm_form_script.json +#: crm/fcrm/pagetype/crm_global_settings/crm_global_settings.json +#: crm/fcrm/pagetype/crm_holiday_list/crm_holiday_list.json +#: crm/fcrm/pagetype/crm_industry/crm_industry.json +#: crm/fcrm/pagetype/crm_invitation/crm_invitation.json +#: crm/fcrm/pagetype/crm_lead/crm_lead.json +#: crm/fcrm/pagetype/crm_lead_source/crm_lead_source.json +#: crm/fcrm/pagetype/crm_lead_status/crm_lead_status.json +#: crm/fcrm/pagetype/crm_lost_reason/crm_lost_reason.json +#: crm/fcrm/pagetype/crm_notification/crm_notification.json +#: crm/fcrm/pagetype/crm_organization/crm_organization.json +#: crm/fcrm/pagetype/crm_service_level_agreement/crm_service_level_agreement.json +#: crm/fcrm/pagetype/crm_task/crm_task.json +#: crm/fcrm/pagetype/crm_territory/crm_territory.json +#: crm/fcrm/pagetype/crm_twilio_settings/crm_twilio_settings.json +#: crm/fcrm/pagetype/crm_view_settings/crm_view_settings.json +#: crm/fcrm/pagetype/erpnext_crm_settings/erpnext_crm_settings.json +#: crm/fcrm/pagetype/fcrm_note/fcrm_note.json +#: crm/fcrm/pagetype/fcrm_settings/fcrm_settings.json +#: crm/fcrm/pagetype/helpdesk_crm_settings/helpdesk_crm_settings.json msgid "Sales Manager" msgstr "Gestor de vendas" #. Name of a role -#. Option for the 'Role' (Select) field in DocType 'CRM Invitation' -#: crm/fcrm/doctype/crm_call_log/crm_call_log.json -#: crm/fcrm/doctype/crm_communication_status/crm_communication_status.json -#: crm/fcrm/doctype/crm_dashboard/crm_dashboard.json -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_deal_status/crm_deal_status.json -#: crm/fcrm/doctype/crm_global_settings/crm_global_settings.json -#: crm/fcrm/doctype/crm_holiday_list/crm_holiday_list.json -#: crm/fcrm/doctype/crm_industry/crm_industry.json -#: crm/fcrm/doctype/crm_invitation/crm_invitation.json -#: crm/fcrm/doctype/crm_lead/crm_lead.json -#: crm/fcrm/doctype/crm_lead_source/crm_lead_source.json -#: crm/fcrm/doctype/crm_lead_status/crm_lead_status.json -#: crm/fcrm/doctype/crm_lost_reason/crm_lost_reason.json -#: crm/fcrm/doctype/crm_notification/crm_notification.json -#: crm/fcrm/doctype/crm_organization/crm_organization.json -#: crm/fcrm/doctype/crm_task/crm_task.json -#: crm/fcrm/doctype/crm_territory/crm_territory.json -#: crm/fcrm/doctype/crm_view_settings/crm_view_settings.json -#: crm/fcrm/doctype/fcrm_note/fcrm_note.json +#. Option for the 'Role' (Select) field in PageType 'CRM Invitation' +#: crm/fcrm/pagetype/crm_call_log/crm_call_log.json +#: crm/fcrm/pagetype/crm_communication_status/crm_communication_status.json +#: crm/fcrm/pagetype/crm_dashboard/crm_dashboard.json +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_deal_status/crm_deal_status.json +#: crm/fcrm/pagetype/crm_global_settings/crm_global_settings.json +#: crm/fcrm/pagetype/crm_holiday_list/crm_holiday_list.json +#: crm/fcrm/pagetype/crm_industry/crm_industry.json +#: crm/fcrm/pagetype/crm_invitation/crm_invitation.json +#: crm/fcrm/pagetype/crm_lead/crm_lead.json +#: crm/fcrm/pagetype/crm_lead_source/crm_lead_source.json +#: crm/fcrm/pagetype/crm_lead_status/crm_lead_status.json +#: crm/fcrm/pagetype/crm_lost_reason/crm_lost_reason.json +#: crm/fcrm/pagetype/crm_notification/crm_notification.json +#: crm/fcrm/pagetype/crm_organization/crm_organization.json +#: crm/fcrm/pagetype/crm_task/crm_task.json +#: crm/fcrm/pagetype/crm_territory/crm_territory.json +#: crm/fcrm/pagetype/crm_view_settings/crm_view_settings.json +#: crm/fcrm/pagetype/fcrm_note/fcrm_note.json #: frontend/src/components/Modals/AddExistingUserModal.vue:92 #: frontend/src/components/Settings/InviteUserPage.vue:156 #: frontend/src/components/Settings/InviteUserPage.vue:163 @@ -4845,17 +4845,17 @@ msgstr "" msgid "Salesperson" msgstr "" -#. Label of the salutation (Link) field in DocType 'CRM Deal' -#. Label of the salutation (Link) field in DocType 'CRM Lead' -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_lead/crm_lead.json +#. Label of the salutation (Link) field in PageType 'CRM Deal' +#. Label of the salutation (Link) field in PageType 'CRM Lead' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_lead/crm_lead.json msgid "Salutation" msgstr "Saudação" -#. Option for the 'Weekly Off' (Select) field in DocType 'CRM Holiday List' -#. Option for the 'Workday' (Select) field in DocType 'CRM Service Day' -#: crm/fcrm/doctype/crm_holiday_list/crm_holiday_list.json -#: crm/fcrm/doctype/crm_service_day/crm_service_day.json +#. Option for the 'Weekly Off' (Select) field in PageType 'CRM Holiday List' +#. Option for the 'Workday' (Select) field in PageType 'CRM Service Day' +#: crm/fcrm/pagetype/crm_holiday_list/crm_holiday_list.json +#: crm/fcrm/pagetype/crm_service_day/crm_service_day.json msgid "Saturday" msgstr "Sábado" @@ -4904,8 +4904,8 @@ msgstr "" msgid "Schedule an event" msgstr "" -#. Label of the script (Code) field in DocType 'CRM Form Script' -#: crm/fcrm/doctype/crm_form_script/crm_form_script.json +#. Label of the script (Code) field in PageType 'CRM Form Script' +#: crm/fcrm/pagetype/crm_form_script/crm_form_script.json msgid "Script" msgstr "Script" @@ -4973,18 +4973,18 @@ msgstr "" msgid "Send invites to" msgstr "" -#. Option for the 'Type' (Select) field in DocType 'CRM Dropdown Item' -#: crm/fcrm/doctype/crm_dropdown_item/crm_dropdown_item.json +#. Option for the 'Type' (Select) field in PageType 'CRM Dropdown Item' +#: crm/fcrm/pagetype/crm_dropdown_item/crm_dropdown_item.json msgid "Separator" msgstr "Separador" -#. Label of the naming_series (Select) field in DocType 'CRM Lead' -#: crm/fcrm/doctype/crm_lead/crm_lead.json +#. Label of the naming_series (Select) field in PageType 'CRM Lead' +#: crm/fcrm/pagetype/crm_lead/crm_lead.json msgid "Series" msgstr "Série" -#. Label of the service_provider (Select) field in DocType 'FCRM Settings' -#: crm/fcrm/doctype/fcrm_settings/fcrm_settings.json +#. Label of the service_provider (Select) field in PageType 'FCRM Settings' +#: crm/fcrm/pagetype/fcrm_settings/fcrm_settings.json msgid "Service Provider" msgstr "" @@ -5029,7 +5029,7 @@ msgid "Setting up" msgstr "" #: frontend/src/components/Settings/emailConfig.js:145 -msgid "Setting up Frappe Mail requires you to have an API key and API Secret of your email account. Read more " +msgid "Setting up Jingrow Mail requires you to have an API key and API Secret of your email account. Read more " msgstr "" #: frontend/src/components/Settings/emailConfig.js:97 @@ -5062,8 +5062,8 @@ msgid "Setting up Yandex requires you to enable two factor authentication\n" "\t\t and app specific passwords. Read more " msgstr "" -#. Label of the defaults_tab (Tab Break) field in DocType 'FCRM Settings' -#: crm/fcrm/doctype/fcrm_settings/fcrm_settings.json +#. Label of the defaults_tab (Tab Break) field in PageType 'FCRM Settings' +#: crm/fcrm/pagetype/fcrm_settings/fcrm_settings.json #: frontend/src/components/Layouts/AppSidebar.vue:537 #: frontend/src/components/Settings/Settings.vue:12 msgid "Settings" @@ -5073,7 +5073,7 @@ msgstr "Configurações" msgid "Setup Email" msgstr "" -#: crm/fcrm/doctype/fcrm_settings/fcrm_settings.py:199 +#: crm/fcrm/pagetype/fcrm_settings/fcrm_settings.py:199 msgid "Setup the Exchange Rate Provider as 'Exchangerate Host' in settings, as default provider does not support currency conversion for {0} to {1}." msgstr "" @@ -5108,20 +5108,20 @@ msgstr "" msgid "Show preview" msgstr "Mostrar pré-visualização" -#. Option for the 'Type' (Select) field in DocType 'CRM Fields Layout' -#: crm/fcrm/doctype/crm_fields_layout/crm_fields_layout.json +#. Option for the 'Type' (Select) field in PageType 'CRM Fields Layout' +#: crm/fcrm/pagetype/crm_fields_layout/crm_fields_layout.json msgid "Side Panel" msgstr "Barra Lateral" -#. Option for the 'Type' (Select) field in DocType 'CRM Global Settings' -#: crm/fcrm/doctype/crm_global_settings/crm_global_settings.json +#. Option for the 'Type' (Select) field in PageType 'CRM Global Settings' +#: crm/fcrm/pagetype/crm_global_settings/crm_global_settings.json msgid "Sidebar Items" msgstr "Itens da Barra Lateral" -#. Description of the 'Condition' (Code) field in DocType 'CRM Service Level +#. Description of the 'Condition' (Code) field in PageType 'CRM Service Level #. Agreement' -#: crm/fcrm/doctype/crm_service_level_agreement/crm_service_level_agreement.json -msgid "Simple Python Expression, Example: doc.status == 'Open' and doc.lead_source == 'Ads'" +#: crm/fcrm/pagetype/crm_service_level_agreement/crm_service_level_agreement.json +msgid "Simple Python Expression, Example: pg.status == 'Open' and pg.lead_source == 'Ads'" msgstr "" #: frontend/src/components/AssignTo.vue:83 @@ -5145,16 +5145,16 @@ msgstr "" msgid "Sort" msgstr "Ordenar" -#. Label of the source (Link) field in DocType 'CRM Deal' -#. Label of the source (Link) field in DocType 'CRM Lead' -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_lead/crm_lead.json +#. Label of the source (Link) field in PageType 'CRM Deal' +#. Label of the source (Link) field in PageType 'CRM Lead' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_lead/crm_lead.json #: frontend/src/components/Modals/EditValueModal.vue:10 msgid "Source" msgstr "Fonte" -#. Label of the source_name (Data) field in DocType 'CRM Lead Source' -#: crm/fcrm/doctype/crm_lead_source/crm_lead_source.json +#. Label of the source_name (Data) field in PageType 'CRM Lead Source' +#: crm/fcrm/pagetype/crm_lead_source/crm_lead_source.json msgid "Source Name" msgstr "" @@ -5167,12 +5167,12 @@ msgstr "" msgid "Stage" msgstr "" -#: crm/fcrm/doctype/crm_form_script/crm_form_script.js:15 +#: crm/fcrm/pagetype/crm_form_script/crm_form_script.js:15 msgid "Standard Form Scripts can not be modified, duplicate the Form Script instead." msgstr "" -#. Label of the standard_rate (Currency) field in DocType 'CRM Product' -#: crm/fcrm/doctype/crm_product/crm_product.json +#. Label of the standard_rate (Currency) field in PageType 'CRM Product' +#: crm/fcrm/pagetype/crm_product/crm_product.json msgid "Standard Selling Rate" msgstr "" @@ -5180,18 +5180,18 @@ msgstr "" msgid "Standard Views" msgstr "Vistas standard" -#. Label of the start_date (Date) field in DocType 'CRM Service Level +#. Label of the start_date (Date) field in PageType 'CRM Service Level #. Agreement' -#. Label of the start_date (Date) field in DocType 'CRM Task' -#: crm/fcrm/doctype/crm_service_level_agreement/crm_service_level_agreement.json -#: crm/fcrm/doctype/crm_task/crm_task.json +#. Label of the start_date (Date) field in PageType 'CRM Task' +#: crm/fcrm/pagetype/crm_service_level_agreement/crm_service_level_agreement.json +#: crm/fcrm/pagetype/crm_task/crm_task.json msgid "Start Date" msgstr "Data início" -#. Label of the start_time (Datetime) field in DocType 'CRM Call Log' -#. Label of the start_time (Time) field in DocType 'CRM Service Day' -#: crm/fcrm/doctype/crm_call_log/crm_call_log.json -#: crm/fcrm/doctype/crm_service_day/crm_service_day.json +#. Label of the start_time (Datetime) field in PageType 'CRM Call Log' +#. Label of the start_time (Time) field in PageType 'CRM Service Day' +#: crm/fcrm/pagetype/crm_call_log/crm_call_log.json +#: crm/fcrm/pagetype/crm_service_day/crm_service_day.json #: frontend/src/components/Calendar/CalendarEventPanel.vue:234 #: frontend/src/components/Modals/EventModal.vue:103 msgid "Start Time" @@ -5205,32 +5205,32 @@ msgstr "" msgid "Start with sample 10 leads" msgstr "" -#. Label of the status (Select) field in DocType 'CRM Call Log' -#. Label of the status (Data) field in DocType 'CRM Communication Status' -#. Label of the status (Link) field in DocType 'CRM Deal' -#. Label of the deal_status (Data) field in DocType 'CRM Deal Status' -#. Label of the status (Select) field in DocType 'CRM Invitation' -#. Label of the status (Link) field in DocType 'CRM Lead' -#. Label of the lead_status (Data) field in DocType 'CRM Lead Status' -#. Label of the status (Select) field in DocType 'CRM Task' -#: crm/fcrm/doctype/crm_call_log/crm_call_log.json -#: crm/fcrm/doctype/crm_communication_status/crm_communication_status.json -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_deal_status/crm_deal_status.json -#: crm/fcrm/doctype/crm_invitation/crm_invitation.json -#: crm/fcrm/doctype/crm_lead/crm_lead.json -#: crm/fcrm/doctype/crm_lead_status/crm_lead_status.json -#: crm/fcrm/doctype/crm_task/crm_task.json frontend/src/pages/Contact.vue:505 +#. Label of the status (Select) field in PageType 'CRM Call Log' +#. Label of the status (Data) field in PageType 'CRM Communication Status' +#. Label of the status (Link) field in PageType 'CRM Deal' +#. Label of the deal_status (Data) field in PageType 'CRM Deal Status' +#. Label of the status (Select) field in PageType 'CRM Invitation' +#. Label of the status (Link) field in PageType 'CRM Lead' +#. Label of the lead_status (Data) field in PageType 'CRM Lead Status' +#. Label of the status (Select) field in PageType 'CRM Task' +#: crm/fcrm/pagetype/crm_call_log/crm_call_log.json +#: crm/fcrm/pagetype/crm_communication_status/crm_communication_status.json +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_deal_status/crm_deal_status.json +#: crm/fcrm/pagetype/crm_invitation/crm_invitation.json +#: crm/fcrm/pagetype/crm_lead/crm_lead.json +#: crm/fcrm/pagetype/crm_lead_status/crm_lead_status.json +#: crm/fcrm/pagetype/crm_task/crm_task.json frontend/src/pages/Contact.vue:505 #: frontend/src/pages/MobileContact.vue:513 #: frontend/src/pages/MobileOrganization.vue:457 #: frontend/src/pages/Organization.vue:478 msgid "Status" msgstr "Estado" -#. Label of the status_change_log (Table) field in DocType 'CRM Deal' -#. Label of the status_change_log (Table) field in DocType 'CRM Lead' -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_lead/crm_lead.json +#. Label of the status_change_log (Table) field in PageType 'CRM Deal' +#. Label of the status_change_log (Table) field in PageType 'CRM Lead' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_lead/crm_lead.json msgid "Status Change Log" msgstr "" @@ -5239,8 +5239,8 @@ msgstr "" msgid "Status is required" msgstr "Estado é obrigatório" -#. Label of the subdomain (Data) field in DocType 'CRM Exotel Settings' -#: crm/fcrm/doctype/crm_exotel_settings/crm_exotel_settings.json +#. Label of the subdomain (Data) field in PageType 'CRM Exotel Settings' +#: crm/fcrm/pagetype/crm_exotel_settings/crm_exotel_settings.json msgid "Subdomain" msgstr "" @@ -5258,10 +5258,10 @@ msgstr "" msgid "Subject: {0}" msgstr "" -#. Option for the 'Weekly Off' (Select) field in DocType 'CRM Holiday List' -#. Option for the 'Workday' (Select) field in DocType 'CRM Service Day' -#: crm/fcrm/doctype/crm_holiday_list/crm_holiday_list.json -#: crm/fcrm/doctype/crm_service_day/crm_service_day.json +#. Option for the 'Weekly Off' (Select) field in PageType 'CRM Holiday List' +#. Option for the 'Workday' (Select) field in PageType 'CRM Service Day' +#: crm/fcrm/pagetype/crm_holiday_list/crm_holiday_list.json +#: crm/fcrm/pagetype/crm_service_day/crm_service_day.json msgid "Sunday" msgstr "Domingo" @@ -5282,21 +5282,21 @@ msgid "System Configuration" msgstr "" #. Name of a role -#. Option for the 'Role' (Select) field in DocType 'CRM Invitation' -#: crm/fcrm/doctype/crm_dashboard/crm_dashboard.json -#: crm/fcrm/doctype/crm_exotel_settings/crm_exotel_settings.json -#: crm/fcrm/doctype/crm_fields_layout/crm_fields_layout.json -#: crm/fcrm/doctype/crm_global_settings/crm_global_settings.json -#: crm/fcrm/doctype/crm_invitation/crm_invitation.json -#: crm/fcrm/doctype/crm_lead_source/crm_lead_source.json -#: crm/fcrm/doctype/crm_lost_reason/crm_lost_reason.json -#: crm/fcrm/doctype/crm_notification/crm_notification.json -#: crm/fcrm/doctype/crm_product/crm_product.json -#: crm/fcrm/doctype/crm_telephony_agent/crm_telephony_agent.json -#: crm/fcrm/doctype/crm_twilio_settings/crm_twilio_settings.json -#: crm/fcrm/doctype/erpnext_crm_settings/erpnext_crm_settings.json -#: crm/fcrm/doctype/fcrm_settings/fcrm_settings.json -#: crm/fcrm/doctype/helpdesk_crm_settings/helpdesk_crm_settings.json +#. Option for the 'Role' (Select) field in PageType 'CRM Invitation' +#: crm/fcrm/pagetype/crm_dashboard/crm_dashboard.json +#: crm/fcrm/pagetype/crm_exotel_settings/crm_exotel_settings.json +#: crm/fcrm/pagetype/crm_fields_layout/crm_fields_layout.json +#: crm/fcrm/pagetype/crm_global_settings/crm_global_settings.json +#: crm/fcrm/pagetype/crm_invitation/crm_invitation.json +#: crm/fcrm/pagetype/crm_lead_source/crm_lead_source.json +#: crm/fcrm/pagetype/crm_lost_reason/crm_lost_reason.json +#: crm/fcrm/pagetype/crm_notification/crm_notification.json +#: crm/fcrm/pagetype/crm_product/crm_product.json +#: crm/fcrm/pagetype/crm_telephony_agent/crm_telephony_agent.json +#: crm/fcrm/pagetype/crm_twilio_settings/crm_twilio_settings.json +#: crm/fcrm/pagetype/erpnext_crm_settings/erpnext_crm_settings.json +#: crm/fcrm/pagetype/fcrm_settings/fcrm_settings.json +#: crm/fcrm/pagetype/helpdesk_crm_settings/helpdesk_crm_settings.json msgid "System Manager" msgstr "" @@ -5308,8 +5308,8 @@ msgstr "" msgid "Take a note..." msgstr "Tome nota..." -#. Option for the 'Type' (Select) field in DocType 'CRM Notification' -#: crm/fcrm/doctype/crm_notification/crm_notification.json +#. Option for the 'Type' (Select) field in PageType 'CRM Notification' +#: crm/fcrm/pagetype/crm_notification/crm_notification.json #: frontend/src/components/Layouts/AppSidebar.vue:555 msgid "Task" msgstr "Tarefa" @@ -5327,8 +5327,8 @@ msgstr "" msgid "Telephony" msgstr "" -#. Label of the telephony_medium (Select) field in DocType 'CRM Call Log' -#: crm/fcrm/doctype/crm_call_log/crm_call_log.json +#. Label of the telephony_medium (Select) field in PageType 'CRM Call Log' +#: crm/fcrm/pagetype/crm_call_log/crm_call_log.json msgid "Telephony Medium" msgstr "" @@ -5364,27 +5364,27 @@ msgstr "" msgid "Template updated successfully" msgstr "" -#. Label of a shortcut in the Frappe CRM Workspace -#: crm/fcrm/workspace/frappe_crm/frappe_crm.json +#. Label of a shortcut in the Jingrow CRM Workspace +#: crm/fcrm/workspace/jingrow_crm/jingrow_crm.json msgid "Territories" msgstr "" -#. Label of the territory (Link) field in DocType 'CRM Deal' -#. Label of the territory (Link) field in DocType 'CRM Lead' -#. Label of the territory (Link) field in DocType 'CRM Organization' -#: crm/api/dashboard.py:1022 crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_lead/crm_lead.json -#: crm/fcrm/doctype/crm_organization/crm_organization.json +#. Label of the territory (Link) field in PageType 'CRM Deal' +#. Label of the territory (Link) field in PageType 'CRM Lead' +#. Label of the territory (Link) field in PageType 'CRM Organization' +#: crm/api/dashboard.py:1022 crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_lead/crm_lead.json +#: crm/fcrm/pagetype/crm_organization/crm_organization.json msgid "Territory" msgstr "Território" -#. Label of the territory_manager (Link) field in DocType 'CRM Territory' -#: crm/fcrm/doctype/crm_territory/crm_territory.json +#. Label of the territory_manager (Link) field in PageType 'CRM Territory' +#: crm/fcrm/pagetype/crm_territory/crm_territory.json msgid "Territory Manager" msgstr "" -#. Label of the territory_name (Data) field in DocType 'CRM Territory' -#: crm/fcrm/doctype/crm_territory/crm_territory.json +#. Label of the territory_name (Data) field in PageType 'CRM Territory' +#: crm/fcrm/pagetype/crm_territory/crm_territory.json msgid "Territory Name" msgstr "" @@ -5392,22 +5392,22 @@ msgstr "" msgid "Thanks" msgstr "" -#: crm/fcrm/doctype/crm_service_level_agreement/crm_service_level_agreement.py:46 +#: crm/fcrm/pagetype/crm_service_level_agreement/crm_service_level_agreement.py:46 msgid "The Condition '{0}' is invalid: {1}" msgstr "" -#. Description of the 'Exchange Rate' (Float) field in DocType 'CRM Deal' -#: crm/fcrm/doctype/crm_deal/crm_deal.json +#. Description of the 'Exchange Rate' (Float) field in PageType 'CRM Deal' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json msgid "The rate used to convert the deal’s currency to your crm's base currency (set in CRM Settings). It is set once when the currency is first added and doesn't change automatically." msgstr "" -#. Description of the 'Exchange Rate' (Float) field in DocType 'CRM +#. Description of the 'Exchange Rate' (Float) field in PageType 'CRM #. Organization' -#: crm/fcrm/doctype/crm_organization/crm_organization.json +#: crm/fcrm/pagetype/crm_organization/crm_organization.json msgid "The rate used to convert the organization’s currency to your crm's base currency (set in CRM Settings). It is set once when the currency is first added and doesn't change automatically." msgstr "" -#: crm/fcrm/doctype/crm_service_level_agreement/crm_service_level_agreement.js:14 +#: crm/fcrm/pagetype/crm_service_level_agreement/crm_service_level_agreement.js:14 msgid "There can only be one default priority in Priorities table" msgstr "" @@ -5444,14 +5444,14 @@ msgstr "" msgid "This will delete selected items and unlink linked items to it, are you sure?" msgstr "" -#: crm/fcrm/doctype/fcrm_settings/fcrm_settings.js:9 +#: crm/fcrm/pagetype/fcrm_settings/fcrm_settings.js:9 msgid "This will restore (if not exist) all the default statuses, custom fields and layouts. Delete & Restore will delete default layouts and then restore them." msgstr "" -#. Option for the 'Weekly Off' (Select) field in DocType 'CRM Holiday List' -#. Option for the 'Workday' (Select) field in DocType 'CRM Service Day' -#: crm/fcrm/doctype/crm_holiday_list/crm_holiday_list.json -#: crm/fcrm/doctype/crm_service_day/crm_service_day.json +#. Option for the 'Weekly Off' (Select) field in PageType 'CRM Holiday List' +#. Option for the 'Workday' (Select) field in PageType 'CRM Service Day' +#: crm/fcrm/pagetype/crm_holiday_list/crm_holiday_list.json +#: crm/fcrm/pagetype/crm_service_day/crm_service_day.json msgid "Thursday" msgstr "Quinta-feira" @@ -5463,18 +5463,18 @@ msgstr "" msgid "Timespan" msgstr "" -#. Label of the title (Data) field in DocType 'CRM Task' -#. Label of the title (Data) field in DocType 'FCRM Note' -#: crm/fcrm/doctype/crm_task/crm_task.json -#: crm/fcrm/doctype/fcrm_note/fcrm_note.json +#. Label of the title (Data) field in PageType 'CRM Task' +#. Label of the title (Data) field in PageType 'FCRM Note' +#: crm/fcrm/pagetype/crm_task/crm_task.json +#: crm/fcrm/pagetype/fcrm_note/fcrm_note.json #: frontend/src/components/Modals/EventModal.vue:43 #: frontend/src/components/Modals/NoteModal.vue:26 #: frontend/src/components/Modals/TaskModal.vue:25 msgid "Title" msgstr "Título" -#. Label of the title_field (Data) field in DocType 'CRM View Settings' -#: crm/fcrm/doctype/crm_view_settings/crm_view_settings.json +#. Label of the title_field (Data) field in PageType 'CRM View Settings' +#: crm/fcrm/pagetype/crm_view_settings/crm_view_settings.json #: frontend/src/components/Kanban/KanbanSettings.vue:29 msgid "Title Field" msgstr "" @@ -5484,28 +5484,28 @@ msgstr "" msgid "Title is required" msgstr "" -#. Label of the to (Data) field in DocType 'CRM Call Log' -#. Label of the to (Data) field in DocType 'CRM Status Change Log' -#: crm/fcrm/doctype/crm_call_log/crm_call_log.json -#: crm/fcrm/doctype/crm_status_change_log/crm_status_change_log.json +#. Label of the to (Data) field in PageType 'CRM Call Log' +#. Label of the to (Data) field in PageType 'CRM Status Change Log' +#: crm/fcrm/pagetype/crm_call_log/crm_call_log.json +#: crm/fcrm/pagetype/crm_status_change_log/crm_status_change_log.json #: frontend/src/components/Activities/EmailArea.vue:53 msgid "To" msgstr "" -#. Label of the to_date (Date) field in DocType 'CRM Holiday List' -#. Label of the to_date (Datetime) field in DocType 'CRM Status Change Log' -#: crm/fcrm/doctype/crm_holiday_list/crm_holiday_list.json -#: crm/fcrm/doctype/crm_status_change_log/crm_status_change_log.json +#. Label of the to_date (Date) field in PageType 'CRM Holiday List' +#. Label of the to_date (Datetime) field in PageType 'CRM Status Change Log' +#: crm/fcrm/pagetype/crm_holiday_list/crm_holiday_list.json +#: crm/fcrm/pagetype/crm_status_change_log/crm_status_change_log.json msgid "To Date" msgstr "" -#. Label of the to_type (Data) field in DocType 'CRM Status Change Log' -#: crm/fcrm/doctype/crm_status_change_log/crm_status_change_log.json +#. Label of the to_type (Data) field in PageType 'CRM Status Change Log' +#: crm/fcrm/pagetype/crm_status_change_log/crm_status_change_log.json msgid "To Type" msgstr "" -#. Label of the to_user (Link) field in DocType 'CRM Notification' -#: crm/fcrm/doctype/crm_notification/crm_notification.json +#. Label of the to_user (Link) field in PageType 'CRM Notification' +#: crm/fcrm/pagetype/crm_notification/crm_notification.json msgid "To User" msgstr "" @@ -5517,8 +5517,8 @@ msgstr "" msgid "Today" msgstr "Hoje" -#. Option for the 'Status' (Select) field in DocType 'CRM Task' -#: crm/fcrm/doctype/crm_task/crm_task.json +#. Option for the 'Status' (Select) field in PageType 'CRM Task' +#: crm/fcrm/pagetype/crm_task/crm_task.json msgid "Todo" msgstr "" @@ -5535,22 +5535,22 @@ msgstr "Amanhã" msgid "Took a call with John Doe and discussed the new project." msgstr "" -#. Label of the total (Currency) field in DocType 'CRM Deal' -#. Label of the total (Currency) field in DocType 'CRM Lead' -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_lead/crm_lead.json +#. Label of the total (Currency) field in PageType 'CRM Deal' +#. Label of the total (Currency) field in PageType 'CRM Lead' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_lead/crm_lead.json msgid "Total" msgstr "" -#. Label of the total_holidays (Int) field in DocType 'CRM Holiday List' -#: crm/fcrm/doctype/crm_holiday_list/crm_holiday_list.json +#. Label of the total_holidays (Int) field in PageType 'CRM Holiday List' +#: crm/fcrm/pagetype/crm_holiday_list/crm_holiday_list.json msgid "Total Holidays" msgstr "" -#. Description of the 'Net Total' (Currency) field in DocType 'CRM Deal' -#. Description of the 'Net Total' (Currency) field in DocType 'CRM Lead' -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_lead/crm_lead.json +#. Description of the 'Net Total' (Currency) field in PageType 'CRM Deal' +#. Description of the 'Net Total' (Currency) field in PageType 'CRM Lead' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_lead/crm_lead.json msgid "Total after discount" msgstr "" @@ -5571,10 +5571,10 @@ msgstr "" msgid "Total number of won deals based on its closure date" msgstr "" -#. Option for the 'Weekly Off' (Select) field in DocType 'CRM Holiday List' -#. Option for the 'Workday' (Select) field in DocType 'CRM Service Day' -#: crm/fcrm/doctype/crm_holiday_list/crm_holiday_list.json -#: crm/fcrm/doctype/crm_service_day/crm_service_day.json +#. Option for the 'Weekly Off' (Select) field in PageType 'CRM Holiday List' +#. Option for the 'Workday' (Select) field in PageType 'CRM Service Day' +#: crm/fcrm/pagetype/crm_holiday_list/crm_holiday_list.json +#: crm/fcrm/pagetype/crm_service_day/crm_service_day.json msgid "Tuesday" msgstr "Terça-feira" @@ -5582,30 +5582,30 @@ msgstr "Terça-feira" msgid "Turn into a group" msgstr "" -#. Label of the twiml_sid (Data) field in DocType 'CRM Twilio Settings' -#: crm/fcrm/doctype/crm_twilio_settings/crm_twilio_settings.json +#. Label of the twiml_sid (Data) field in PageType 'CRM Twilio Settings' +#: crm/fcrm/pagetype/crm_twilio_settings/crm_twilio_settings.json msgid "TwiML SID" msgstr "" -#. Option for the 'Telephony Medium' (Select) field in DocType 'CRM Call Log' -#. Label of the twilio (Check) field in DocType 'CRM Telephony Agent' -#. Option for the 'Default Medium' (Select) field in DocType 'CRM Telephony +#. Option for the 'Telephony Medium' (Select) field in PageType 'CRM Call Log' +#. Label of the twilio (Check) field in PageType 'CRM Telephony Agent' +#. Option for the 'Default Medium' (Select) field in PageType 'CRM Telephony #. Agent' -#: crm/fcrm/doctype/crm_call_log/crm_call_log.json -#: crm/fcrm/doctype/crm_telephony_agent/crm_telephony_agent.json +#: crm/fcrm/pagetype/crm_call_log/crm_call_log.json +#: crm/fcrm/pagetype/crm_telephony_agent/crm_telephony_agent.json #: frontend/src/components/Layouts/AppSidebar.vue:601 #: frontend/src/components/Settings/TelephonySettings.vue:40 #: frontend/src/components/Settings/TelephonySettings.vue:50 msgid "Twilio" msgstr "Twilio" -#: crm/fcrm/doctype/crm_twilio_settings/crm_twilio_settings.py:59 -#: crm/fcrm/doctype/crm_twilio_settings/crm_twilio_settings.py:60 +#: crm/fcrm/pagetype/crm_twilio_settings/crm_twilio_settings.py:59 +#: crm/fcrm/pagetype/crm_twilio_settings/crm_twilio_settings.py:60 msgid "Twilio API credential creation error." msgstr "" -#. Label of the twilio_number (Data) field in DocType 'CRM Telephony Agent' -#: crm/fcrm/doctype/crm_telephony_agent/crm_telephony_agent.json +#. Label of the twilio_number (Data) field in PageType 'CRM Telephony Agent' +#: crm/fcrm/pagetype/crm_telephony_agent/crm_telephony_agent.json msgid "Twilio Number" msgstr "" @@ -5617,20 +5617,20 @@ msgstr "Twilio não está ativado" msgid "Twilio settings updated successfully" msgstr "" -#. Label of the type (Select) field in DocType 'CRM Call Log' -#. Label of the type (Select) field in DocType 'CRM Deal Status' -#. Label of the type (Select) field in DocType 'CRM Dropdown Item' -#. Label of the type (Select) field in DocType 'CRM Fields Layout' -#. Label of the type (Select) field in DocType 'CRM Global Settings' -#. Label of the type (Select) field in DocType 'CRM Notification' -#. Label of the type (Select) field in DocType 'CRM View Settings' -#: crm/fcrm/doctype/crm_call_log/crm_call_log.json -#: crm/fcrm/doctype/crm_deal_status/crm_deal_status.json -#: crm/fcrm/doctype/crm_dropdown_item/crm_dropdown_item.json -#: crm/fcrm/doctype/crm_fields_layout/crm_fields_layout.json -#: crm/fcrm/doctype/crm_global_settings/crm_global_settings.json -#: crm/fcrm/doctype/crm_notification/crm_notification.json -#: crm/fcrm/doctype/crm_view_settings/crm_view_settings.json +#. Label of the type (Select) field in PageType 'CRM Call Log' +#. Label of the type (Select) field in PageType 'CRM Deal Status' +#. Label of the type (Select) field in PageType 'CRM Dropdown Item' +#. Label of the type (Select) field in PageType 'CRM Fields Layout' +#. Label of the type (Select) field in PageType 'CRM Global Settings' +#. Label of the type (Select) field in PageType 'CRM Notification' +#. Label of the type (Select) field in PageType 'CRM View Settings' +#: crm/fcrm/pagetype/crm_call_log/crm_call_log.json +#: crm/fcrm/pagetype/crm_deal_status/crm_deal_status.json +#: crm/fcrm/pagetype/crm_dropdown_item/crm_dropdown_item.json +#: crm/fcrm/pagetype/crm_fields_layout/crm_fields_layout.json +#: crm/fcrm/pagetype/crm_global_settings/crm_global_settings.json +#: crm/fcrm/pagetype/crm_notification/crm_notification.json +#: crm/fcrm/pagetype/crm_view_settings/crm_view_settings.json msgid "Type" msgstr "Tipo" @@ -5772,12 +5772,12 @@ msgstr "Carregar imagem" msgid "Uploading {0}%" msgstr "" -#. Label of the user (Link) field in DocType 'CRM Dashboard' -#. Label of the user (Link) field in DocType 'CRM Telephony Agent' -#. Label of the user (Link) field in DocType 'CRM View Settings' -#: crm/fcrm/doctype/crm_dashboard/crm_dashboard.json -#: crm/fcrm/doctype/crm_telephony_agent/crm_telephony_agent.json -#: crm/fcrm/doctype/crm_view_settings/crm_view_settings.json +#. Label of the user (Link) field in PageType 'CRM Dashboard' +#. Label of the user (Link) field in PageType 'CRM Telephony Agent' +#. Label of the user (Link) field in PageType 'CRM View Settings' +#: crm/fcrm/pagetype/crm_dashboard/crm_dashboard.json +#: crm/fcrm/pagetype/crm_telephony_agent/crm_telephony_agent.json +#: crm/fcrm/pagetype/crm_view_settings/crm_view_settings.json msgid "User" msgstr "Utilizador" @@ -5785,8 +5785,8 @@ msgstr "Utilizador" msgid "User Management" msgstr "" -#. Label of the user_name (Data) field in DocType 'CRM Telephony Agent' -#: crm/fcrm/doctype/crm_telephony_agent/crm_telephony_agent.json +#. Label of the user_name (Data) field in PageType 'CRM Telephony Agent' +#: crm/fcrm/pagetype/crm_telephony_agent/crm_telephony_agent.json msgid "User Name" msgstr "" @@ -5808,9 +5808,9 @@ msgstr "" msgid "Users are required" msgstr "" -#. Label of the section_break_nevd (Section Break) field in DocType 'CRM +#. Label of the section_break_nevd (Section Break) field in PageType 'CRM #. Service Level Agreement' -#: crm/fcrm/doctype/crm_service_level_agreement/crm_service_level_agreement.json +#: crm/fcrm/pagetype/crm_service_level_agreement/crm_service_level_agreement.json msgid "Validity" msgstr "Validade" @@ -5834,33 +5834,33 @@ msgstr "" msgid "Web form" msgstr "" -#. Label of the webhook_verify_token (Data) field in DocType 'CRM Exotel +#. Label of the webhook_verify_token (Data) field in PageType 'CRM Exotel #. Settings' -#: crm/fcrm/doctype/crm_exotel_settings/crm_exotel_settings.json +#: crm/fcrm/pagetype/crm_exotel_settings/crm_exotel_settings.json msgid "Webhook Verify Token" msgstr "" -#. Label of the website (Data) field in DocType 'CRM Deal' -#. Label of the website (Data) field in DocType 'CRM Lead' -#. Label of the website (Data) field in DocType 'CRM Organization' -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_lead/crm_lead.json -#: crm/fcrm/doctype/crm_organization/crm_organization.json +#. Label of the website (Data) field in PageType 'CRM Deal' +#. Label of the website (Data) field in PageType 'CRM Lead' +#. Label of the website (Data) field in PageType 'CRM Organization' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_lead/crm_lead.json +#: crm/fcrm/pagetype/crm_organization/crm_organization.json #: frontend/src/components/Modals/AboutModal.vue:52 msgid "Website" msgstr "Website" -#. Option for the 'Weekly Off' (Select) field in DocType 'CRM Holiday List' -#. Option for the 'Workday' (Select) field in DocType 'CRM Service Day' -#: crm/fcrm/doctype/crm_holiday_list/crm_holiday_list.json -#: crm/fcrm/doctype/crm_service_day/crm_service_day.json +#. Option for the 'Weekly Off' (Select) field in PageType 'CRM Holiday List' +#. Option for the 'Workday' (Select) field in PageType 'CRM Service Day' +#: crm/fcrm/pagetype/crm_holiday_list/crm_holiday_list.json +#: crm/fcrm/pagetype/crm_service_day/crm_service_day.json msgid "Wednesday" msgstr "Quarta-feira" -#. Label of the weekly_off (Check) field in DocType 'CRM Holiday' -#. Label of the weekly_off (Select) field in DocType 'CRM Holiday List' -#: crm/fcrm/doctype/crm_holiday/crm_holiday.json -#: crm/fcrm/doctype/crm_holiday_list/crm_holiday_list.json +#. Label of the weekly_off (Check) field in PageType 'CRM Holiday' +#. Label of the weekly_off (Select) field in PageType 'CRM Holiday List' +#: crm/fcrm/pagetype/crm_holiday/crm_holiday.json +#: crm/fcrm/pagetype/crm_holiday_list/crm_holiday_list.json msgid "Weekly Off" msgstr "" @@ -5868,7 +5868,7 @@ msgstr "" msgid "Welcome Message" msgstr "" -#: crm/fcrm/doctype/helpdesk_crm_settings/helpdesk_crm_settings.py:155 +#: crm/fcrm/pagetype/helpdesk_crm_settings/helpdesk_crm_settings.py:155 msgid "Welcome to Helpdesk" msgstr "" @@ -5876,8 +5876,8 @@ msgstr "" msgid "Welcome {0}, lets add your first lead" msgstr "" -#. Option for the 'Type' (Select) field in DocType 'CRM Notification' -#: crm/fcrm/doctype/crm_notification/crm_notification.json +#. Option for the 'Type' (Select) field in PageType 'CRM Notification' +#: crm/fcrm/pagetype/crm_notification/crm_notification.json #: frontend/src/components/Layouts/AppSidebar.vue:603 #: frontend/src/components/Settings/Settings.vue:190 #: frontend/src/pages/Deal.vue:572 frontend/src/pages/Lead.vue:429 @@ -5902,8 +5902,8 @@ msgstr "Largura" msgid "Width can be in number, pixel or rem (eg. 3, 30px, 10rem)" msgstr "A largura pode ser em número, pixel ou rem (ex. 3, 30px, 10rem)" -#. Option for the 'Type' (Select) field in DocType 'CRM Deal Status' -#: crm/fcrm/doctype/crm_deal_status/crm_deal_status.json +#. Option for the 'Type' (Select) field in PageType 'CRM Deal Status' +#: crm/fcrm/pagetype/crm_deal_status/crm_deal_status.json msgid "Won" msgstr "" @@ -5912,16 +5912,16 @@ msgstr "" msgid "Won deals" msgstr "" -#. Label of the workday (Select) field in DocType 'CRM Service Day' -#: crm/fcrm/doctype/crm_service_day/crm_service_day.json +#. Label of the workday (Select) field in PageType 'CRM Service Day' +#: crm/fcrm/pagetype/crm_service_day/crm_service_day.json msgid "Workday" msgstr "" -#. Label of the section_break_rmgo (Section Break) field in DocType 'CRM +#. Label of the section_break_rmgo (Section Break) field in PageType 'CRM #. Service Level Agreement' -#. Label of the working_hours (Table) field in DocType 'CRM Service Level +#. Label of the working_hours (Table) field in PageType 'CRM Service Level #. Agreement' -#: crm/fcrm/doctype/crm_service_level_agreement/crm_service_level_agreement.json +#: crm/fcrm/pagetype/crm_service_level_agreement/crm_service_level_agreement.json msgid "Working Hours" msgstr "Horas de trabalho" @@ -5967,7 +5967,7 @@ msgstr "" msgid "You do not have permission to access this document" msgstr "" -#: crm/fcrm/doctype/crm_form_script/crm_form_script.py:24 +#: crm/fcrm/pagetype/crm_form_script/crm_form_script.py:24 msgid "You need to be in developer mode to edit a Standard Form Script" msgstr "" @@ -5995,10 +5995,10 @@ msgstr "" msgid "added a" msgstr "" -#. Option for the 'Color' (Select) field in DocType 'CRM Deal Status' -#. Option for the 'Color' (Select) field in DocType 'CRM Lead Status' -#: crm/fcrm/doctype/crm_deal_status/crm_deal_status.json -#: crm/fcrm/doctype/crm_lead_status/crm_lead_status.json +#. Option for the 'Color' (Select) field in PageType 'CRM Deal Status' +#. Option for the 'Color' (Select) field in PageType 'CRM Lead Status' +#: crm/fcrm/pagetype/crm_deal_status/crm_deal_status.json +#: crm/fcrm/pagetype/crm_lead_status/crm_lead_status.json msgid "amber" msgstr "âmbar" @@ -6010,17 +6010,17 @@ msgstr "" msgid "assigned a {0} {1} to you" msgstr "" -#. Option for the 'Color' (Select) field in DocType 'CRM Deal Status' -#. Option for the 'Color' (Select) field in DocType 'CRM Lead Status' -#: crm/fcrm/doctype/crm_deal_status/crm_deal_status.json -#: crm/fcrm/doctype/crm_lead_status/crm_lead_status.json +#. Option for the 'Color' (Select) field in PageType 'CRM Deal Status' +#. Option for the 'Color' (Select) field in PageType 'CRM Lead Status' +#: crm/fcrm/pagetype/crm_deal_status/crm_deal_status.json +#: crm/fcrm/pagetype/crm_lead_status/crm_lead_status.json msgid "black" msgstr "preto" -#. Option for the 'Color' (Select) field in DocType 'CRM Deal Status' -#. Option for the 'Color' (Select) field in DocType 'CRM Lead Status' -#: crm/fcrm/doctype/crm_deal_status/crm_deal_status.json -#: crm/fcrm/doctype/crm_lead_status/crm_lead_status.json +#. Option for the 'Color' (Select) field in PageType 'CRM Deal Status' +#. Option for the 'Color' (Select) field in PageType 'CRM Lead Status' +#: crm/fcrm/pagetype/crm_deal_status/crm_deal_status.json +#: crm/fcrm/pagetype/crm_lead_status/crm_lead_status.json msgid "blue" msgstr "azul" @@ -6037,10 +6037,10 @@ msgstr "comentário" msgid "condition" msgstr "condição" -#. Option for the 'Color' (Select) field in DocType 'CRM Deal Status' -#. Option for the 'Color' (Select) field in DocType 'CRM Lead Status' -#: crm/fcrm/doctype/crm_deal_status/crm_deal_status.json -#: crm/fcrm/doctype/crm_lead_status/crm_lead_status.json +#. Option for the 'Color' (Select) field in PageType 'CRM Deal Status' +#. Option for the 'Color' (Select) field in PageType 'CRM Lead Status' +#: crm/fcrm/pagetype/crm_deal_status/crm_deal_status.json +#: crm/fcrm/pagetype/crm_lead_status/crm_lead_status.json msgid "cyan" msgstr "ciano" @@ -6059,33 +6059,33 @@ msgstr "painel" msgid "email already exists" msgstr "" -#. Option for the 'Service Provider' (Select) field in DocType 'FCRM Settings' -#: crm/fcrm/doctype/fcrm_settings/fcrm_settings.json +#. Option for the 'Service Provider' (Select) field in PageType 'FCRM Settings' +#: crm/fcrm/pagetype/fcrm_settings/fcrm_settings.json #: frontend/src/components/Settings/CurrencySettings.vue:106 msgid "exchangerate.host" msgstr "" -#. Option for the 'Service Provider' (Select) field in DocType 'FCRM Settings' -#: crm/fcrm/doctype/fcrm_settings/fcrm_settings.json +#. Option for the 'Service Provider' (Select) field in PageType 'FCRM Settings' +#: crm/fcrm/pagetype/fcrm_settings/fcrm_settings.json msgid "frankfurter.app" msgstr "" -#. Option for the 'Color' (Select) field in DocType 'CRM Deal Status' -#. Option for the 'Color' (Select) field in DocType 'CRM Lead Status' -#: crm/fcrm/doctype/crm_deal_status/crm_deal_status.json -#: crm/fcrm/doctype/crm_lead_status/crm_lead_status.json +#. Option for the 'Color' (Select) field in PageType 'CRM Deal Status' +#. Option for the 'Color' (Select) field in PageType 'CRM Lead Status' +#: crm/fcrm/pagetype/crm_deal_status/crm_deal_status.json +#: crm/fcrm/pagetype/crm_lead_status/crm_lead_status.json msgid "gray" msgstr "cinzento" -#. Option for the 'Color' (Select) field in DocType 'CRM Deal Status' -#. Option for the 'Color' (Select) field in DocType 'CRM Lead Status' -#: crm/fcrm/doctype/crm_deal_status/crm_deal_status.json -#: crm/fcrm/doctype/crm_lead_status/crm_lead_status.json +#. Option for the 'Color' (Select) field in PageType 'CRM Deal Status' +#. Option for the 'Color' (Select) field in PageType 'CRM Lead Status' +#: crm/fcrm/pagetype/crm_deal_status/crm_deal_status.json +#: crm/fcrm/pagetype/crm_lead_status/crm_lead_status.json msgid "green" msgstr "verde" -#. Option for the 'Type' (Select) field in DocType 'CRM View Settings' -#: crm/fcrm/doctype/crm_view_settings/crm_view_settings.json +#. Option for the 'Type' (Select) field in PageType 'CRM View Settings' +#: crm/fcrm/pagetype/crm_view_settings/crm_view_settings.json msgid "group_by" msgstr "" @@ -6170,12 +6170,12 @@ msgstr "" msgid "just now" msgstr "" -#. Option for the 'Type' (Select) field in DocType 'CRM View Settings' -#: crm/fcrm/doctype/crm_view_settings/crm_view_settings.json +#. Option for the 'Type' (Select) field in PageType 'CRM View Settings' +#: crm/fcrm/pagetype/crm_view_settings/crm_view_settings.json msgid "kanban" msgstr "kanban" -#: crm/api/doc.py:40 crm/api/doc.py:158 crm/api/doc.py:503 +#: crm/api/pg.py:40 crm/api/pg.py:158 crm/api/pg.py:503 msgid "label" msgstr "etiqueta" @@ -6184,8 +6184,8 @@ msgstr "etiqueta" msgid "leads" msgstr "leads" -#. Option for the 'Type' (Select) field in DocType 'CRM View Settings' -#: crm/fcrm/doctype/crm_view_settings/crm_view_settings.json +#. Option for the 'Type' (Select) field in PageType 'CRM View Settings' +#: crm/fcrm/pagetype/crm_view_settings/crm_view_settings.json msgid "list" msgstr "lista" @@ -6206,17 +6206,17 @@ msgstr "agora" msgid "operator" msgstr "operador" -#. Option for the 'Color' (Select) field in DocType 'CRM Deal Status' -#. Option for the 'Color' (Select) field in DocType 'CRM Lead Status' -#: crm/fcrm/doctype/crm_deal_status/crm_deal_status.json -#: crm/fcrm/doctype/crm_lead_status/crm_lead_status.json +#. Option for the 'Color' (Select) field in PageType 'CRM Deal Status' +#. Option for the 'Color' (Select) field in PageType 'CRM Lead Status' +#: crm/fcrm/pagetype/crm_deal_status/crm_deal_status.json +#: crm/fcrm/pagetype/crm_lead_status/crm_lead_status.json msgid "orange" msgstr "laranja" -#. Option for the 'Color' (Select) field in DocType 'CRM Deal Status' -#. Option for the 'Color' (Select) field in DocType 'CRM Lead Status' -#: crm/fcrm/doctype/crm_deal_status/crm_deal_status.json -#: crm/fcrm/doctype/crm_lead_status/crm_lead_status.json +#. Option for the 'Color' (Select) field in PageType 'CRM Deal Status' +#. Option for the 'Color' (Select) field in PageType 'CRM Lead Status' +#: crm/fcrm/pagetype/crm_deal_status/crm_deal_status.json +#: crm/fcrm/pagetype/crm_lead_status/crm_lead_status.json msgid "pink" msgstr "rosa" @@ -6232,10 +6232,10 @@ msgstr "privado" msgid "public" msgstr "público" -#. Option for the 'Color' (Select) field in DocType 'CRM Deal Status' -#. Option for the 'Color' (Select) field in DocType 'CRM Lead Status' -#: crm/fcrm/doctype/crm_deal_status/crm_deal_status.json -#: crm/fcrm/doctype/crm_lead_status/crm_lead_status.json +#. Option for the 'Color' (Select) field in PageType 'CRM Deal Status' +#. Option for the 'Color' (Select) field in PageType 'CRM Lead Status' +#: crm/fcrm/pagetype/crm_deal_status/crm_deal_status.json +#: crm/fcrm/pagetype/crm_lead_status/crm_lead_status.json msgid "purple" msgstr "roxo" @@ -6243,17 +6243,17 @@ msgstr "roxo" msgid "received a whatsapp message in {0}" msgstr "" -#. Option for the 'Color' (Select) field in DocType 'CRM Deal Status' -#. Option for the 'Color' (Select) field in DocType 'CRM Lead Status' -#: crm/fcrm/doctype/crm_deal_status/crm_deal_status.json -#: crm/fcrm/doctype/crm_lead_status/crm_lead_status.json +#. Option for the 'Color' (Select) field in PageType 'CRM Deal Status' +#. Option for the 'Color' (Select) field in PageType 'CRM Lead Status' +#: crm/fcrm/pagetype/crm_deal_status/crm_deal_status.json +#: crm/fcrm/pagetype/crm_lead_status/crm_lead_status.json msgid "red" msgstr "vermelho" -#. Option for the 'Color' (Select) field in DocType 'CRM Deal Status' -#. Option for the 'Color' (Select) field in DocType 'CRM Lead Status' -#: crm/fcrm/doctype/crm_deal_status/crm_deal_status.json -#: crm/fcrm/doctype/crm_lead_status/crm_lead_status.json +#. Option for the 'Color' (Select) field in PageType 'CRM Deal Status' +#. Option for the 'Color' (Select) field in PageType 'CRM Lead Status' +#: crm/fcrm/pagetype/crm_deal_status/crm_deal_status.json +#: crm/fcrm/pagetype/crm_lead_status/crm_lead_status.json msgid "teal" msgstr "azul-petróleo" @@ -6266,10 +6266,10 @@ msgstr "" msgid "tomorrow" msgstr "amanhã" -#. Option for the 'Color' (Select) field in DocType 'CRM Deal Status' -#. Option for the 'Color' (Select) field in DocType 'CRM Lead Status' -#: crm/fcrm/doctype/crm_deal_status/crm_deal_status.json -#: crm/fcrm/doctype/crm_lead_status/crm_lead_status.json +#. Option for the 'Color' (Select) field in PageType 'CRM Deal Status' +#. Option for the 'Color' (Select) field in PageType 'CRM Lead Status' +#: crm/fcrm/pagetype/crm_deal_status/crm_deal_status.json +#: crm/fcrm/pagetype/crm_lead_status/crm_lead_status.json msgid "violet" msgstr "violeta" @@ -6278,10 +6278,10 @@ msgstr "violeta" msgid "which are not compatible with this UI, you will need to recreate the conditions here if you want to manage and add new conditions from this UI." msgstr "" -#. Option for the 'Color' (Select) field in DocType 'CRM Deal Status' -#. Option for the 'Color' (Select) field in DocType 'CRM Lead Status' -#: crm/fcrm/doctype/crm_deal_status/crm_deal_status.json -#: crm/fcrm/doctype/crm_lead_status/crm_lead_status.json +#. Option for the 'Color' (Select) field in PageType 'CRM Deal Status' +#. Option for the 'Color' (Select) field in PageType 'CRM Lead Status' +#: crm/fcrm/pagetype/crm_deal_status/crm_deal_status.json +#: crm/fcrm/pagetype/crm_lead_status/crm_lead_status.json msgid "yellow" msgstr "amarelo" @@ -6379,7 +6379,7 @@ msgid "⚠️ Method \"{0}\" not found in class." msgstr "" #: frontend/src/data/script.js:83 -msgid "⚠️ No class found for doctype: {0}, it is mandatory to have a class for the parent doctype. it can be empty, but it should be present." +msgid "⚠️ No class found for pagetype: {0}, it is mandatory to have a class for the parent pagetype. it can be empty, but it should be present." msgstr "" #: frontend/src/data/script.js:180 diff --git a/crm/locale/pt_BR.po b/crm/locale/pt_BR.po index 21c5f9da..6e560037 100644 --- a/crm/locale/pt_BR.po +++ b/crm/locale/pt_BR.po @@ -1,6 +1,6 @@ msgid "" msgstr "" -"Project-Id-Version: frappe\n" +"Project-Id-Version: jingrow\n" "Report-Msgid-Bugs-To: shariq@jingrow.com\n" "POT-Creation-Date: 2025-09-21 09:35+0000\n" "PO-Revision-Date: 2025-09-22 20:42\n" @@ -11,10 +11,10 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Generated-By: Babel 2.16.0\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -"X-Crowdin-Project: frappe\n" +"X-Crowdin-Project: jingrow\n" "X-Crowdin-Project-ID: 639578\n" "X-Crowdin-Language: pt-BR\n" -"X-Crowdin-File: /[frappe.crm] develop/crm/locale/main.pot\n" +"X-Crowdin-File: /[jingrow.crm] develop/crm/locale/main.pot\n" "X-Crowdin-File-ID: 97\n" "Language: pt_BR\n" @@ -55,73 +55,73 @@ msgstr "" msgid "1 year ago" msgstr "" -#. Option for the 'No. of Employees' (Select) field in DocType 'CRM Deal' -#. Option for the 'No. of Employees' (Select) field in DocType 'CRM Lead' -#. Option for the 'No. of Employees' (Select) field in DocType 'CRM +#. Option for the 'No. of Employees' (Select) field in PageType 'CRM Deal' +#. Option for the 'No. of Employees' (Select) field in PageType 'CRM Lead' +#. Option for the 'No. of Employees' (Select) field in PageType 'CRM #. Organization' -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_lead/crm_lead.json -#: crm/fcrm/doctype/crm_organization/crm_organization.json +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_lead/crm_lead.json +#: crm/fcrm/pagetype/crm_organization/crm_organization.json msgid "1-10" msgstr "" -#. Option for the 'No. of Employees' (Select) field in DocType 'CRM Deal' -#. Option for the 'No. of Employees' (Select) field in DocType 'CRM Lead' -#. Option for the 'No. of Employees' (Select) field in DocType 'CRM +#. Option for the 'No. of Employees' (Select) field in PageType 'CRM Deal' +#. Option for the 'No. of Employees' (Select) field in PageType 'CRM Lead' +#. Option for the 'No. of Employees' (Select) field in PageType 'CRM #. Organization' -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_lead/crm_lead.json -#: crm/fcrm/doctype/crm_organization/crm_organization.json +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_lead/crm_lead.json +#: crm/fcrm/pagetype/crm_organization/crm_organization.json msgid "1000+" msgstr "" -#. Option for the 'No. of Employees' (Select) field in DocType 'CRM Deal' -#. Option for the 'No. of Employees' (Select) field in DocType 'CRM Lead' -#. Option for the 'No. of Employees' (Select) field in DocType 'CRM +#. Option for the 'No. of Employees' (Select) field in PageType 'CRM Deal' +#. Option for the 'No. of Employees' (Select) field in PageType 'CRM Lead' +#. Option for the 'No. of Employees' (Select) field in PageType 'CRM #. Organization' -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_lead/crm_lead.json -#: crm/fcrm/doctype/crm_organization/crm_organization.json +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_lead/crm_lead.json +#: crm/fcrm/pagetype/crm_organization/crm_organization.json msgid "11-50" msgstr "" -#. Option for the 'No. of Employees' (Select) field in DocType 'CRM Deal' -#. Option for the 'No. of Employees' (Select) field in DocType 'CRM Lead' -#. Option for the 'No. of Employees' (Select) field in DocType 'CRM +#. Option for the 'No. of Employees' (Select) field in PageType 'CRM Deal' +#. Option for the 'No. of Employees' (Select) field in PageType 'CRM Lead' +#. Option for the 'No. of Employees' (Select) field in PageType 'CRM #. Organization' -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_lead/crm_lead.json -#: crm/fcrm/doctype/crm_organization/crm_organization.json +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_lead/crm_lead.json +#: crm/fcrm/pagetype/crm_organization/crm_organization.json msgid "201-500" msgstr "" -#. Option for the 'No. of Employees' (Select) field in DocType 'CRM Deal' -#. Option for the 'No. of Employees' (Select) field in DocType 'CRM Lead' -#. Option for the 'No. of Employees' (Select) field in DocType 'CRM +#. Option for the 'No. of Employees' (Select) field in PageType 'CRM Deal' +#. Option for the 'No. of Employees' (Select) field in PageType 'CRM Lead' +#. Option for the 'No. of Employees' (Select) field in PageType 'CRM #. Organization' -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_lead/crm_lead.json -#: crm/fcrm/doctype/crm_organization/crm_organization.json +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_lead/crm_lead.json +#: crm/fcrm/pagetype/crm_organization/crm_organization.json msgid "501-1000" msgstr "" -#. Option for the 'No. of Employees' (Select) field in DocType 'CRM Deal' -#. Option for the 'No. of Employees' (Select) field in DocType 'CRM Lead' -#. Option for the 'No. of Employees' (Select) field in DocType 'CRM +#. Option for the 'No. of Employees' (Select) field in PageType 'CRM Deal' +#. Option for the 'No. of Employees' (Select) field in PageType 'CRM Lead' +#. Option for the 'No. of Employees' (Select) field in PageType 'CRM #. Organization' -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_lead/crm_lead.json -#: crm/fcrm/doctype/crm_organization/crm_organization.json +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_lead/crm_lead.json +#: crm/fcrm/pagetype/crm_organization/crm_organization.json msgid "51-200" msgstr "" -#. Paragraph text in the Frappe CRM Workspace -#: crm/fcrm/workspace/frappe_crm/frappe_crm.json +#. Paragraph text in the Jingrow CRM Workspace +#: crm/fcrm/workspace/jingrow_crm/jingrow_crm.json msgid "META" msgstr "" -#. Paragraph text in the Frappe CRM Workspace -#: crm/fcrm/workspace/frappe_crm/frappe_crm.json +#. Paragraph text in the Jingrow CRM Workspace +#: crm/fcrm/workspace/jingrow_crm/jingrow_crm.json msgid "SHORTCUTS" msgstr "" @@ -130,8 +130,8 @@ msgstr "" msgid "

Dear {{ lead_name }},

\\n\\n

This is a reminder for the payment of {{ grand_total }}.

\\n\\n

Thanks,

\\n

Frappé

" msgstr "" -#. Header text in the Frappe CRM Workspace -#: crm/fcrm/workspace/frappe_crm/frappe_crm.json +#. Header text in the Jingrow CRM Workspace +#: crm/fcrm/workspace/jingrow_crm/jingrow_crm.json msgid "PORTAL" msgstr "" @@ -139,7 +139,7 @@ msgstr "" msgid "@John, can you please check this?" msgstr "" -#: crm/fcrm/doctype/crm_lead/crm_lead.py:56 +#: crm/fcrm/pagetype/crm_lead/crm_lead.py:56 msgid "A Lead requires either a person's name or an organization's name" msgstr "" @@ -147,14 +147,14 @@ msgstr "" msgid "A new account has been created for you at {0}" msgstr "" -#. Label of the api_key (Data) field in DocType 'CRM Exotel Settings' -#. Label of the api_key (Data) field in DocType 'CRM Twilio Settings' -#. Label of the api_key (Data) field in DocType 'ERPNext CRM Settings' -#. Label of the api_key (Data) field in DocType 'Helpdesk CRM Settings' -#: crm/fcrm/doctype/crm_exotel_settings/crm_exotel_settings.json -#: crm/fcrm/doctype/crm_twilio_settings/crm_twilio_settings.json -#: crm/fcrm/doctype/erpnext_crm_settings/erpnext_crm_settings.json -#: crm/fcrm/doctype/helpdesk_crm_settings/helpdesk_crm_settings.json +#. Label of the api_key (Data) field in PageType 'CRM Exotel Settings' +#. Label of the api_key (Data) field in PageType 'CRM Twilio Settings' +#. Label of the api_key (Data) field in PageType 'ERPNext CRM Settings' +#. Label of the api_key (Data) field in PageType 'Helpdesk CRM Settings' +#: crm/fcrm/pagetype/crm_exotel_settings/crm_exotel_settings.json +#: crm/fcrm/pagetype/crm_twilio_settings/crm_twilio_settings.json +#: crm/fcrm/pagetype/erpnext_crm_settings/erpnext_crm_settings.json +#: crm/fcrm/pagetype/helpdesk_crm_settings/helpdesk_crm_settings.json msgid "API Key" msgstr "Chave da API" @@ -162,17 +162,17 @@ msgstr "Chave da API" msgid "API Key is required" msgstr "" -#. Label of the api_secret (Password) field in DocType 'CRM Twilio Settings' -#. Label of the api_secret (Password) field in DocType 'ERPNext CRM Settings' -#. Label of the api_secret (Password) field in DocType 'Helpdesk CRM Settings' -#: crm/fcrm/doctype/crm_twilio_settings/crm_twilio_settings.json -#: crm/fcrm/doctype/erpnext_crm_settings/erpnext_crm_settings.json -#: crm/fcrm/doctype/helpdesk_crm_settings/helpdesk_crm_settings.json +#. Label of the api_secret (Password) field in PageType 'CRM Twilio Settings' +#. Label of the api_secret (Password) field in PageType 'ERPNext CRM Settings' +#. Label of the api_secret (Password) field in PageType 'Helpdesk CRM Settings' +#: crm/fcrm/pagetype/crm_twilio_settings/crm_twilio_settings.json +#: crm/fcrm/pagetype/erpnext_crm_settings/erpnext_crm_settings.json +#: crm/fcrm/pagetype/helpdesk_crm_settings/helpdesk_crm_settings.json msgid "API Secret" msgstr "Segredo da API" -#. Label of the api_token (Password) field in DocType 'CRM Exotel Settings' -#: crm/fcrm/doctype/crm_exotel_settings/crm_exotel_settings.json +#. Label of the api_token (Password) field in PageType 'CRM Exotel Settings' +#: crm/fcrm/pagetype/crm_exotel_settings/crm_exotel_settings.json msgid "API Token" msgstr "" @@ -180,7 +180,7 @@ msgstr "" msgid "Accept" msgstr "" -#: crm/fcrm/doctype/crm_invitation/crm_invitation.js:7 +#: crm/fcrm/pagetype/crm_invitation/crm_invitation.js:7 msgid "Accept Invitation" msgstr "" @@ -188,22 +188,22 @@ msgstr "" msgid "Accept call" msgstr "" -#. Option for the 'Status' (Select) field in DocType 'CRM Invitation' -#: crm/fcrm/doctype/crm_invitation/crm_invitation.json +#. Option for the 'Status' (Select) field in PageType 'CRM Invitation' +#: crm/fcrm/pagetype/crm_invitation/crm_invitation.json msgid "Accepted" msgstr "" -#. Label of the accepted_at (Datetime) field in DocType 'CRM Invitation' -#: crm/fcrm/doctype/crm_invitation/crm_invitation.json +#. Label of the accepted_at (Datetime) field in PageType 'CRM Invitation' +#: crm/fcrm/pagetype/crm_invitation/crm_invitation.json msgid "Accepted At" msgstr "" -#. Label of the access_key (Data) field in DocType 'FCRM Settings' -#: crm/fcrm/doctype/fcrm_settings/fcrm_settings.json +#. Label of the access_key (Data) field in PageType 'FCRM Settings' +#: crm/fcrm/pagetype/fcrm_settings/fcrm_settings.json msgid "Access Key" msgstr "" -#: crm/fcrm/doctype/fcrm_settings/fcrm_settings.py:156 +#: crm/fcrm/pagetype/fcrm_settings/fcrm_settings.py:156 msgid "Access Key is required for Service Provider: {0}" msgstr "" @@ -219,10 +219,10 @@ msgstr "" msgid "Account Name" msgstr "" -#. Label of the account_sid (Data) field in DocType 'CRM Exotel Settings' -#. Label of the account_sid (Data) field in DocType 'CRM Twilio Settings' -#: crm/fcrm/doctype/crm_exotel_settings/crm_exotel_settings.json -#: crm/fcrm/doctype/crm_twilio_settings/crm_twilio_settings.json +#. Label of the account_sid (Data) field in PageType 'CRM Exotel Settings' +#. Label of the account_sid (Data) field in PageType 'CRM Twilio Settings' +#: crm/fcrm/pagetype/crm_exotel_settings/crm_exotel_settings.json +#: crm/fcrm/pagetype/crm_twilio_settings/crm_twilio_settings.json msgid "Account SID" msgstr "" @@ -296,9 +296,9 @@ msgstr "" msgid "Add Tab" msgstr "" -#. Label of the add_weekly_holidays_section (Section Break) field in DocType +#. Label of the add_weekly_holidays_section (Section Break) field in PageType #. 'CRM Holiday List' -#: crm/fcrm/doctype/crm_holiday_list/crm_holiday_list.json +#: crm/fcrm/pagetype/crm_holiday_list/crm_holiday_list.json msgid "Add Weekly Holidays" msgstr "" @@ -363,8 +363,8 @@ msgstr "" msgid "Add sample data" msgstr "" -#. Description of the 'Icon' (Code) field in DocType 'CRM Dropdown Item' -#: crm/fcrm/doctype/crm_dropdown_item/crm_dropdown_item.json +#. Description of the 'Icon' (Code) field in PageType 'CRM Dropdown Item' +#: crm/fcrm/pagetype/crm_dropdown_item/crm_dropdown_item.json msgid "Add svg code or use feather icons e.g 'settings'" msgstr "" @@ -372,8 +372,8 @@ msgstr "" msgid "Add task" msgstr "" -#. Label of the add_to_holidays (Button) field in DocType 'CRM Holiday List' -#: crm/fcrm/doctype/crm_holiday_list/crm_holiday_list.json +#. Label of the add_to_holidays (Button) field in PageType 'CRM Holiday List' +#: crm/fcrm/pagetype/crm_holiday_list/crm_holiday_list.json msgid "Add to Holidays" msgstr "" @@ -385,8 +385,8 @@ msgstr "" msgid "Add, edit, and manage email templates for various CRM communications" msgstr "" -#. Label of the address (Link) field in DocType 'CRM Organization' -#: crm/fcrm/doctype/crm_organization/crm_organization.json +#. Label of the address (Link) field in PageType 'CRM Organization' +#: crm/fcrm/pagetype/crm_organization/crm_organization.json msgid "Address" msgstr "Endereço" @@ -406,14 +406,14 @@ msgid "Agent is unavailable to take the call, please call after some time." msgstr "" #. Name of a role -#: crm/fcrm/doctype/crm_exotel_settings/crm_exotel_settings.json -#: crm/fcrm/doctype/crm_fields_layout/crm_fields_layout.json -#: crm/fcrm/doctype/crm_form_script/crm_form_script.json -#: crm/fcrm/doctype/crm_industry/crm_industry.json -#: crm/fcrm/doctype/crm_lead/crm_lead.json -#: crm/fcrm/doctype/crm_lead_source/crm_lead_source.json -#: crm/fcrm/doctype/crm_lead_status/crm_lead_status.json -#: crm/fcrm/doctype/fcrm_settings/fcrm_settings.json +#: crm/fcrm/pagetype/crm_exotel_settings/crm_exotel_settings.json +#: crm/fcrm/pagetype/crm_fields_layout/crm_fields_layout.json +#: crm/fcrm/pagetype/crm_form_script/crm_form_script.json +#: crm/fcrm/pagetype/crm_industry/crm_industry.json +#: crm/fcrm/pagetype/crm_lead/crm_lead.json +#: crm/fcrm/pagetype/crm_lead_source/crm_lead_source.json +#: crm/fcrm/pagetype/crm_lead_status/crm_lead_status.json +#: crm/fcrm/pagetype/fcrm_settings/fcrm_settings.json #: frontend/src/components/Settings/EmailTemplate/EmailTemplates.vue:76 #: frontend/src/components/Settings/Users.vue:85 msgid "All" @@ -426,16 +426,16 @@ msgstr "Todos" msgid "All day" msgstr "" -#. Label of the amount (Currency) field in DocType 'CRM Products' -#: crm/fcrm/doctype/crm_products/crm_products.json +#. Label of the amount (Currency) field in PageType 'CRM Products' +#: crm/fcrm/pagetype/crm_products/crm_products.json #: frontend/src/pages/Contact.vue:499 frontend/src/pages/MobileContact.vue:507 #: frontend/src/pages/MobileOrganization.vue:451 #: frontend/src/pages/Organization.vue:472 msgid "Amount" msgstr "Montante" -#. Description of the 'Net Amount' (Currency) field in DocType 'CRM Products' -#: crm/fcrm/doctype/crm_products/crm_products.json +#. Description of the 'Net Amount' (Currency) field in PageType 'CRM Products' +#: crm/fcrm/pagetype/crm_products/crm_products.json msgid "Amount after discount" msgstr "" @@ -447,13 +447,13 @@ msgstr "" msgid "An error occurred while updating the document" msgstr "" -#. Description of the 'Favicon' (Attach) field in DocType 'FCRM Settings' -#: crm/fcrm/doctype/fcrm_settings/fcrm_settings.json +#. Description of the 'Favicon' (Attach) field in PageType 'FCRM Settings' +#: crm/fcrm/pagetype/fcrm_settings/fcrm_settings.json msgid "An icon file with .ico extension. Should be 16 x 16 px. Generated using a favicon generator. [favicon-generator.org]" msgstr "" -#. Description of the 'Logo' (Attach) field in DocType 'FCRM Settings' -#: crm/fcrm/doctype/fcrm_settings/fcrm_settings.json +#. Description of the 'Logo' (Attach) field in PageType 'FCRM Settings' +#: crm/fcrm/pagetype/fcrm_settings/fcrm_settings.json msgid "An image with 1:1 & 2:1 ratio is preferred" msgstr "" @@ -461,12 +461,12 @@ msgstr "" msgid "And" msgstr "" -#. Label of the annual_revenue (Currency) field in DocType 'CRM Deal' -#. Label of the annual_revenue (Currency) field in DocType 'CRM Lead' -#. Label of the annual_revenue (Currency) field in DocType 'CRM Organization' -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_lead/crm_lead.json -#: crm/fcrm/doctype/crm_organization/crm_organization.json +#. Label of the annual_revenue (Currency) field in PageType 'CRM Deal' +#. Label of the annual_revenue (Currency) field in PageType 'CRM Lead' +#. Label of the annual_revenue (Currency) field in PageType 'CRM Organization' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_lead/crm_lead.json +#: crm/fcrm/pagetype/crm_organization/crm_organization.json msgid "Annual Revenue" msgstr "" @@ -488,13 +488,13 @@ msgstr "" msgid "Apply" msgstr "Aplicar" -#. Label of the apply_on (Link) field in DocType 'CRM Service Level Agreement' -#: crm/fcrm/doctype/crm_service_level_agreement/crm_service_level_agreement.json +#. Label of the apply_on (Link) field in PageType 'CRM Service Level Agreement' +#: crm/fcrm/pagetype/crm_service_level_agreement/crm_service_level_agreement.json msgid "Apply On" msgstr "" -#. Label of the view (Select) field in DocType 'CRM Form Script' -#: crm/fcrm/doctype/crm_form_script/crm_form_script.json +#. Label of the view (Select) field in PageType 'CRM Form Script' +#: crm/fcrm/pagetype/crm_form_script/crm_form_script.json msgid "Apply To" msgstr "" @@ -540,10 +540,10 @@ msgid "Are you sure you want to go back? Unsaved changes will be lost." msgstr "" #: frontend/src/composables/frappecloud.js:24 -msgid "Are you sure you want to login to your Frappe Cloud dashboard?" +msgid "Are you sure you want to login to your Jingrow Cloud dashboard?" msgstr "" -#: crm/fcrm/doctype/erpnext_crm_settings/erpnext_crm_settings.js:9 +#: crm/fcrm/pagetype/erpnext_crm_settings/erpnext_crm_settings.js:9 msgid "Are you sure you want to reset 'Create Quotation from CRM Deal' Form Script?" msgstr "" @@ -555,7 +555,7 @@ msgstr "" msgid "Are you sure you want to unlink {0} linked item(s)?" msgstr "" -#: crm/fcrm/doctype/fcrm_settings/fcrm_settings.py:193 +#: crm/fcrm/pagetype/fcrm_settings/fcrm_settings.py:193 msgid "Ask your manager to set up the Exchange Rate Provider, as default provider does not support currency conversion for {0} to {1}." msgstr "" @@ -581,8 +581,8 @@ msgstr "" msgid "Assign to me" msgstr "" -#. Label of the assigned_to (Link) field in DocType 'CRM Task' -#: crm/fcrm/doctype/crm_task/crm_task.json +#. Label of the assigned_to (Link) field in PageType 'CRM Task' +#: crm/fcrm/pagetype/crm_task/crm_task.json msgid "Assigned To" msgstr "Atribuído A" @@ -594,13 +594,13 @@ msgstr "" msgid "Assignees" msgstr "" -#. Option for the 'Type' (Select) field in DocType 'CRM Notification' -#: crm/fcrm/doctype/crm_notification/crm_notification.json +#. Option for the 'Type' (Select) field in PageType 'CRM Notification' +#: crm/fcrm/pagetype/crm_notification/crm_notification.json msgid "Assignment" msgstr "Tarefa" -#. Label of a shortcut in the Frappe CRM Workspace -#: crm/fcrm/workspace/frappe_crm/frappe_crm.json +#. Label of a shortcut in the Jingrow CRM Workspace +#: crm/fcrm/workspace/jingrow_crm/jingrow_crm.json msgid "Assignment Rule" msgstr "" @@ -678,14 +678,14 @@ msgstr "Anexos" msgid "Attendees" msgstr "" -#. Label of the auth_token (Password) field in DocType 'CRM Twilio Settings' -#: crm/fcrm/doctype/crm_twilio_settings/crm_twilio_settings.json +#. Label of the auth_token (Password) field in PageType 'CRM Twilio Settings' +#: crm/fcrm/pagetype/crm_twilio_settings/crm_twilio_settings.json msgid "Auth Token" msgstr "" -#. Label of the auto_update_expected_deal_value (Check) field in DocType 'FCRM +#. Label of the auto_update_expected_deal_value (Check) field in PageType 'FCRM #. Settings' -#: crm/fcrm/doctype/fcrm_settings/fcrm_settings.json +#: crm/fcrm/pagetype/fcrm_settings/fcrm_settings.json msgid "Auto Update Expected Deal Value" msgstr "" @@ -702,8 +702,8 @@ msgid "Auto update of expected deal value enabled" msgstr "" #. Description of the 'Auto Update Expected Deal Value' (Check) field in -#. DocType 'FCRM Settings' -#: crm/fcrm/doctype/fcrm_settings/fcrm_settings.json +#. PageType 'FCRM Settings' +#: crm/fcrm/pagetype/fcrm_settings/fcrm_settings.json #: frontend/src/components/Settings/ForecastingSettings.vue:46 msgid "Automatically update \"Expected Deal Value\" based on the total value of associated products in a deal" msgstr "" @@ -793,8 +793,8 @@ msgstr "" msgid "Back to file upload" msgstr "" -#. Option for the 'Status' (Select) field in DocType 'CRM Task' -#: crm/fcrm/doctype/crm_task/crm_task.json +#. Option for the 'Status' (Select) field in PageType 'CRM Task' +#: crm/fcrm/pagetype/crm_task/crm_task.json msgid "Backlog" msgstr "" @@ -818,8 +818,8 @@ msgstr "" msgid "Brand settings" msgstr "" -#. Label of the branding_tab (Tab Break) field in DocType 'FCRM Settings' -#: crm/fcrm/doctype/fcrm_settings/fcrm_settings.json +#. Label of the branding_tab (Tab Break) field in PageType 'FCRM Settings' +#: crm/fcrm/pagetype/fcrm_settings/fcrm_settings.json msgid "Branding" msgstr "" @@ -827,8 +827,8 @@ msgstr "" msgid "Bulk Edit" msgstr "" -#. Option for the 'Status' (Select) field in DocType 'CRM Call Log' -#: crm/fcrm/doctype/crm_call_log/crm_call_log.json +#. Option for the 'Status' (Select) field in PageType 'CRM Call Log' +#: crm/fcrm/pagetype/crm_call_log/crm_call_log.json msgid "Busy" msgstr "" @@ -838,174 +838,174 @@ msgstr "" msgid "CC" msgstr "" -#. Name of a DocType -#: crm/fcrm/doctype/crm_call_log/crm_call_log.json +#. Name of a PageType +#: crm/fcrm/pagetype/crm_call_log/crm_call_log.json msgid "CRM Call Log" msgstr "" -#. Name of a DocType -#: crm/fcrm/doctype/crm_communication_status/crm_communication_status.json +#. Name of a PageType +#: crm/fcrm/pagetype/crm_communication_status/crm_communication_status.json msgid "CRM Communication Status" msgstr "" -#. Name of a DocType -#: crm/fcrm/doctype/crm_contacts/crm_contacts.json +#. Name of a PageType +#: crm/fcrm/pagetype/crm_contacts/crm_contacts.json msgid "CRM Contacts" msgstr "" -#. Name of a DocType -#: crm/fcrm/doctype/crm_dashboard/crm_dashboard.json +#. Name of a PageType +#: crm/fcrm/pagetype/crm_dashboard/crm_dashboard.json #: frontend/src/pages/Dashboard.vue:304 msgid "CRM Dashboard" msgstr "" -#. Name of a DocType -#: crm/fcrm/doctype/crm_deal/crm_deal.json +#. Name of a PageType +#: crm/fcrm/pagetype/crm_deal/crm_deal.json msgid "CRM Deal" msgstr "" -#. Name of a DocType -#: crm/fcrm/doctype/crm_deal_status/crm_deal_status.json +#. Name of a PageType +#: crm/fcrm/pagetype/crm_deal_status/crm_deal_status.json msgid "CRM Deal Status" msgstr "" -#. Name of a DocType -#: crm/fcrm/doctype/crm_dropdown_item/crm_dropdown_item.json +#. Name of a PageType +#: crm/fcrm/pagetype/crm_dropdown_item/crm_dropdown_item.json msgid "CRM Dropdown Item" msgstr "" -#. Name of a DocType -#: crm/fcrm/doctype/crm_exotel_settings/crm_exotel_settings.json +#. Name of a PageType +#: crm/fcrm/pagetype/crm_exotel_settings/crm_exotel_settings.json msgid "CRM Exotel Settings" msgstr "" -#. Name of a DocType -#: crm/fcrm/doctype/crm_fields_layout/crm_fields_layout.json +#. Name of a PageType +#: crm/fcrm/pagetype/crm_fields_layout/crm_fields_layout.json msgid "CRM Fields Layout" msgstr "" -#. Name of a DocType -#: crm/fcrm/doctype/crm_form_script/crm_form_script.json +#. Name of a PageType +#: crm/fcrm/pagetype/crm_form_script/crm_form_script.json msgid "CRM Form Script" msgstr "" -#. Name of a DocType -#: crm/fcrm/doctype/crm_global_settings/crm_global_settings.json +#. Name of a PageType +#: crm/fcrm/pagetype/crm_global_settings/crm_global_settings.json msgid "CRM Global Settings" msgstr "" -#. Name of a DocType -#: crm/fcrm/doctype/crm_holiday/crm_holiday.json +#. Name of a PageType +#: crm/fcrm/pagetype/crm_holiday/crm_holiday.json msgid "CRM Holiday" msgstr "" -#. Name of a DocType -#: crm/fcrm/doctype/crm_holiday_list/crm_holiday_list.json +#. Name of a PageType +#: crm/fcrm/pagetype/crm_holiday_list/crm_holiday_list.json msgid "CRM Holiday List" msgstr "" -#. Name of a DocType -#: crm/fcrm/doctype/crm_industry/crm_industry.json +#. Name of a PageType +#: crm/fcrm/pagetype/crm_industry/crm_industry.json msgid "CRM Industry" msgstr "" -#. Name of a DocType -#: crm/fcrm/doctype/crm_invitation/crm_invitation.json +#. Name of a PageType +#: crm/fcrm/pagetype/crm_invitation/crm_invitation.json msgid "CRM Invitation" msgstr "" -#. Name of a DocType -#: crm/fcrm/doctype/crm_lead/crm_lead.json +#. Name of a PageType +#: crm/fcrm/pagetype/crm_lead/crm_lead.json msgid "CRM Lead" msgstr "" -#. Name of a DocType -#: crm/fcrm/doctype/crm_lead_source/crm_lead_source.json +#. Name of a PageType +#: crm/fcrm/pagetype/crm_lead_source/crm_lead_source.json msgid "CRM Lead Source" msgstr "" -#. Name of a DocType -#: crm/fcrm/doctype/crm_lead_status/crm_lead_status.json +#. Name of a PageType +#: crm/fcrm/pagetype/crm_lead_status/crm_lead_status.json msgid "CRM Lead Status" msgstr "" -#. Name of a DocType -#: crm/fcrm/doctype/crm_lost_reason/crm_lost_reason.json +#. Name of a PageType +#: crm/fcrm/pagetype/crm_lost_reason/crm_lost_reason.json msgid "CRM Lost Reason" msgstr "" -#. Name of a DocType -#: crm/fcrm/doctype/crm_notification/crm_notification.json +#. Name of a PageType +#: crm/fcrm/pagetype/crm_notification/crm_notification.json msgid "CRM Notification" msgstr "" -#. Name of a DocType -#: crm/fcrm/doctype/crm_organization/crm_organization.json +#. Name of a PageType +#: crm/fcrm/pagetype/crm_organization/crm_organization.json msgid "CRM Organization" msgstr "" -#. Label of a shortcut in the Frappe CRM Workspace -#: crm/fcrm/workspace/frappe_crm/frappe_crm.json +#. Label of a shortcut in the Jingrow CRM Workspace +#: crm/fcrm/workspace/jingrow_crm/jingrow_crm.json msgid "CRM Portal Page" msgstr "" -#. Name of a DocType -#: crm/fcrm/doctype/crm_product/crm_product.json +#. Name of a PageType +#: crm/fcrm/pagetype/crm_product/crm_product.json msgid "CRM Product" msgstr "" -#. Name of a DocType -#: crm/fcrm/doctype/crm_products/crm_products.json +#. Name of a PageType +#: crm/fcrm/pagetype/crm_products/crm_products.json msgid "CRM Products" msgstr "" -#. Name of a DocType -#: crm/fcrm/doctype/crm_service_day/crm_service_day.json +#. Name of a PageType +#: crm/fcrm/pagetype/crm_service_day/crm_service_day.json msgid "CRM Service Day" msgstr "" -#. Name of a DocType -#: crm/fcrm/doctype/crm_service_level_agreement/crm_service_level_agreement.json +#. Name of a PageType +#: crm/fcrm/pagetype/crm_service_level_agreement/crm_service_level_agreement.json msgid "CRM Service Level Agreement" msgstr "" -#. Name of a DocType -#: crm/fcrm/doctype/crm_service_level_priority/crm_service_level_priority.json +#. Name of a PageType +#: crm/fcrm/pagetype/crm_service_level_priority/crm_service_level_priority.json msgid "CRM Service Level Priority" msgstr "" -#. Name of a DocType -#: crm/fcrm/doctype/crm_status_change_log/crm_status_change_log.json +#. Name of a PageType +#: crm/fcrm/pagetype/crm_status_change_log/crm_status_change_log.json msgid "CRM Status Change Log" msgstr "" -#. Name of a DocType -#: crm/fcrm/doctype/crm_task/crm_task.json +#. Name of a PageType +#: crm/fcrm/pagetype/crm_task/crm_task.json msgid "CRM Task" msgstr "" -#. Name of a DocType -#: crm/fcrm/doctype/crm_telephony_agent/crm_telephony_agent.json +#. Name of a PageType +#: crm/fcrm/pagetype/crm_telephony_agent/crm_telephony_agent.json msgid "CRM Telephony Agent" msgstr "" -#. Name of a DocType -#: crm/fcrm/doctype/crm_telephony_phone/crm_telephony_phone.json +#. Name of a PageType +#: crm/fcrm/pagetype/crm_telephony_phone/crm_telephony_phone.json msgid "CRM Telephony Phone" msgstr "" -#. Name of a DocType -#: crm/fcrm/doctype/crm_territory/crm_territory.json +#. Name of a PageType +#: crm/fcrm/pagetype/crm_territory/crm_territory.json msgid "CRM Territory" msgstr "" -#. Name of a DocType -#: crm/fcrm/doctype/crm_twilio_settings/crm_twilio_settings.json +#. Name of a PageType +#: crm/fcrm/pagetype/crm_twilio_settings/crm_twilio_settings.json msgid "CRM Twilio Settings" msgstr "" -#. Name of a DocType -#: crm/fcrm/doctype/crm_view_settings/crm_view_settings.json +#. Name of a PageType +#: crm/fcrm/pagetype/crm_view_settings/crm_view_settings.json msgid "CRM View Settings" msgstr "" @@ -1021,13 +1021,13 @@ msgstr "" msgid "Call Details" msgstr "" -#. Label of the receiver (Link) field in DocType 'CRM Call Log' -#: crm/fcrm/doctype/crm_call_log/crm_call_log.json +#. Label of the receiver (Link) field in PageType 'CRM Call Log' +#: crm/fcrm/pagetype/crm_call_log/crm_call_log.json msgid "Call Received By" msgstr "" -#. Description of the 'Duration' (Duration) field in DocType 'CRM Call Log' -#: crm/fcrm/doctype/crm_call_log/crm_call_log.json +#. Description of the 'Duration' (Duration) field in PageType 'CRM Call Log' +#: crm/fcrm/pagetype/crm_call_log/crm_call_log.json msgid "Call duration in seconds" msgstr "" @@ -1045,8 +1045,8 @@ msgstr "" msgid "Call with John Doe" msgstr "" -#. Label of the caller (Link) field in DocType 'CRM Call Log' -#: crm/fcrm/doctype/crm_call_log/crm_call_log.json +#. Label of the caller (Link) field in PageType 'CRM Call Log' +#: crm/fcrm/pagetype/crm_call_log/crm_call_log.json msgid "Caller" msgstr "" @@ -1083,10 +1083,10 @@ msgstr "" msgid "Cancel" msgstr "" -#. Option for the 'Status' (Select) field in DocType 'CRM Call Log' -#. Option for the 'Status' (Select) field in DocType 'CRM Task' -#: crm/fcrm/doctype/crm_call_log/crm_call_log.json -#: crm/fcrm/doctype/crm_task/crm_task.json +#. Option for the 'Status' (Select) field in PageType 'CRM Call Log' +#. Option for the 'Status' (Select) field in PageType 'CRM Task' +#: crm/fcrm/pagetype/crm_call_log/crm_call_log.json +#: crm/fcrm/pagetype/crm_task/crm_task.json msgid "Canceled" msgstr "Cancelado" @@ -1094,7 +1094,7 @@ msgstr "Cancelado" msgid "Cannot change role of user with Admin access" msgstr "" -#: crm/fcrm/doctype/fcrm_settings/fcrm_settings.py:34 +#: crm/fcrm/pagetype/fcrm_settings/fcrm_settings.py:34 msgid "Cannot delete standard items {0}" msgstr "" @@ -1189,8 +1189,8 @@ msgstr "" msgid "Clear Sort" msgstr "" -#. Label of the clear_table (Button) field in DocType 'CRM Holiday List' -#: crm/fcrm/doctype/crm_holiday_list/crm_holiday_list.json +#. Label of the clear_table (Button) field in PageType 'CRM Holiday List' +#: crm/fcrm/pagetype/crm_holiday_list/crm_holiday_list.json msgid "Clear Table" msgstr "" @@ -1211,8 +1211,8 @@ msgstr "Fechar" msgid "Close panel" msgstr "" -#. Label of the closed_date (Date) field in DocType 'CRM Deal' -#: crm/fcrm/doctype/crm_deal/crm_deal.json +#. Label of the closed_date (Date) field in PageType 'CRM Deal' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json msgid "Closed Date" msgstr "" @@ -1224,10 +1224,10 @@ msgstr "" msgid "Collapsible" msgstr "Desmontável" -#. Label of the color (Select) field in DocType 'CRM Deal Status' -#. Label of the color (Select) field in DocType 'CRM Lead Status' -#: crm/fcrm/doctype/crm_deal_status/crm_deal_status.json -#: crm/fcrm/doctype/crm_lead_status/crm_lead_status.json +#. Label of the color (Select) field in PageType 'CRM Deal Status' +#. Label of the color (Select) field in PageType 'CRM Lead Status' +#: crm/fcrm/pagetype/crm_deal_status/crm_deal_status.json +#: crm/fcrm/pagetype/crm_lead_status/crm_lead_status.json msgid "Color" msgstr "" @@ -1235,20 +1235,20 @@ msgstr "" msgid "Column" msgstr "Coluna" -#. Label of the column_field (Data) field in DocType 'CRM View Settings' -#: crm/fcrm/doctype/crm_view_settings/crm_view_settings.json +#. Label of the column_field (Data) field in PageType 'CRM View Settings' +#: crm/fcrm/pagetype/crm_view_settings/crm_view_settings.json #: frontend/src/components/Kanban/KanbanSettings.vue:12 msgid "Column Field" msgstr "" -#. Label of the columns (Code) field in DocType 'CRM View Settings' -#: crm/fcrm/doctype/crm_view_settings/crm_view_settings.json +#. Label of the columns (Code) field in PageType 'CRM View Settings' +#: crm/fcrm/pagetype/crm_view_settings/crm_view_settings.json #: frontend/src/components/ColumnSettings.vue:4 msgid "Columns" msgstr "Colunas" -#. Label of the comment (Link) field in DocType 'CRM Notification' -#: crm/fcrm/doctype/crm_notification/crm_notification.json +#. Label of the comment (Link) field in PageType 'CRM Notification' +#: crm/fcrm/pagetype/crm_notification/crm_notification.json #: frontend/src/components/CommentBox.vue:78 #: frontend/src/components/CommunicationArea.vue:16 #: frontend/src/components/Layouts/AppSidebar.vue:579 @@ -1264,20 +1264,20 @@ msgstr "Comentários" msgid "Common reasons for losing deals" msgstr "" -#. Label of the communication_status (Link) field in DocType 'CRM Deal' -#. Label of the communication_status (Link) field in DocType 'CRM Lead' -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_lead/crm_lead.json +#. Label of the communication_status (Link) field in PageType 'CRM Deal' +#. Label of the communication_status (Link) field in PageType 'CRM Lead' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_lead/crm_lead.json msgid "Communication Status" msgstr "" -#. Label of a shortcut in the Frappe CRM Workspace -#: crm/fcrm/workspace/frappe_crm/frappe_crm.json +#. Label of a shortcut in the Jingrow CRM Workspace +#: crm/fcrm/workspace/jingrow_crm/jingrow_crm.json msgid "Communication Statuses" msgstr "" -#. Label of the erpnext_company (Data) field in DocType 'ERPNext CRM Settings' -#: crm/fcrm/doctype/erpnext_crm_settings/erpnext_crm_settings.json +#. Label of the erpnext_company (Data) field in PageType 'ERPNext CRM Settings' +#: crm/fcrm/pagetype/erpnext_crm_settings/erpnext_crm_settings.json msgid "Company in ERPNext Site" msgstr "" @@ -1285,18 +1285,18 @@ msgstr "" msgid "Complete Registration" msgstr "" -#. Option for the 'Status' (Select) field in DocType 'CRM Call Log' -#: crm/fcrm/doctype/crm_call_log/crm_call_log.json +#. Option for the 'Status' (Select) field in PageType 'CRM Call Log' +#: crm/fcrm/pagetype/crm_call_log/crm_call_log.json msgid "Completed" msgstr "Concluído" -#. Option for the 'Device' (Select) field in DocType 'CRM Telephony Agent' -#: crm/fcrm/doctype/crm_telephony_agent/crm_telephony_agent.json +#. Option for the 'Device' (Select) field in PageType 'CRM Telephony Agent' +#: crm/fcrm/pagetype/crm_telephony_agent/crm_telephony_agent.json msgid "Computer" msgstr "" -#. Label of the condition (Code) field in DocType 'CRM Service Level Agreement' -#: crm/fcrm/doctype/crm_service_level_agreement/crm_service_level_agreement.json +#. Label of the condition (Code) field in PageType 'CRM Service Level Agreement' +#: crm/fcrm/pagetype/crm_service_level_agreement/crm_service_level_agreement.json msgid "Condition" msgstr "Condição" @@ -1354,17 +1354,17 @@ msgstr "" msgid "Connect your email" msgstr "" -#. Label of the contact (Link) field in DocType 'CRM Contacts' -#. Label of the contact (Link) field in DocType 'CRM Deal' -#: crm/fcrm/doctype/crm_contacts/crm_contacts.json -#: crm/fcrm/doctype/crm_deal/crm_deal.json +#. Label of the contact (Link) field in PageType 'CRM Contacts' +#. Label of the contact (Link) field in PageType 'CRM Deal' +#: crm/fcrm/pagetype/crm_contacts/crm_contacts.json +#: crm/fcrm/pagetype/crm_deal/crm_deal.json #: frontend/src/components/Layouts/AppSidebar.vue:552 #: frontend/src/components/Modals/ConvertToDealModal.vue:51 #: frontend/src/pages/MobileLead.vue:145 msgid "Contact" msgstr "" -#: crm/fcrm/doctype/crm_lead/crm_lead.py:212 +#: crm/fcrm/pagetype/crm_lead/crm_lead.py:212 msgid "Contact Already Exists" msgstr "" @@ -1384,7 +1384,7 @@ msgstr "" msgid "Contact already added" msgstr "" -#: crm/fcrm/doctype/crm_lead/crm_lead.py:211 +#: crm/fcrm/pagetype/crm_lead/crm_lead.py:211 msgid "Contact already exists with {0}" msgstr "" @@ -1405,18 +1405,18 @@ msgstr "" msgid "Contact updated" msgstr "" -#. Label of the contacts_tab (Tab Break) field in DocType 'CRM Deal' -#. Label of the contacts (Table) field in DocType 'CRM Deal' -#. Label of a shortcut in the Frappe CRM Workspace -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/workspace/frappe_crm/frappe_crm.json +#. Label of the contacts_tab (Tab Break) field in PageType 'CRM Deal' +#. Label of the contacts (Table) field in PageType 'CRM Deal' +#. Label of a shortcut in the Jingrow CRM Workspace +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/workspace/jingrow_crm/jingrow_crm.json #: frontend/src/pages/Contact.vue:234 frontend/src/pages/MobileContact.vue:212 #: frontend/src/pages/MobileOrganization.vue:331 msgid "Contacts" msgstr "" -#. Label of the content (Text Editor) field in DocType 'FCRM Note' -#: crm/fcrm/doctype/fcrm_note/fcrm_note.json +#. Label of the content (Text Editor) field in PageType 'FCRM Note' +#: crm/fcrm/pagetype/fcrm_note/fcrm_note.json #: frontend/src/components/Modals/NoteModal.vue:33 #: frontend/src/components/Settings/EmailTemplate/EditEmailTemplate.vue:89 #: frontend/src/components/Settings/EmailTemplate/EditEmailTemplate.vue:102 @@ -1456,8 +1456,8 @@ msgstr "" msgid "Convert to Deal" msgstr "" -#. Label of the converted (Check) field in DocType 'CRM Lead' -#: crm/fcrm/doctype/crm_lead/crm_lead.json +#. Label of the converted (Check) field in PageType 'CRM Lead' +#: crm/fcrm/pagetype/crm_lead/crm_lead.json msgid "Converted" msgstr "Convertido" @@ -1533,9 +1533,9 @@ msgstr "" msgid "Create an event" msgstr "" -#. Label of the create_customer_on_status_change (Check) field in DocType +#. Label of the create_customer_on_status_change (Check) field in PageType #. 'ERPNext CRM Settings' -#: crm/fcrm/doctype/erpnext_crm_settings/erpnext_crm_settings.json +#: crm/fcrm/pagetype/erpnext_crm_settings/erpnext_crm_settings.json msgid "Create customer on status change" msgstr "" @@ -1560,13 +1560,13 @@ msgstr "" msgid "Create your first task" msgstr "" -#. Label of the currency (Link) field in DocType 'CRM Deal' -#. Label of the currency (Link) field in DocType 'CRM Organization' -#. Label of the currency (Link) field in DocType 'FCRM Settings' -#. Label of the currency_tab (Tab Break) field in DocType 'FCRM Settings' -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_organization/crm_organization.json -#: crm/fcrm/doctype/fcrm_settings/fcrm_settings.json +#. Label of the currency (Link) field in PageType 'CRM Deal' +#. Label of the currency (Link) field in PageType 'CRM Organization' +#. Label of the currency (Link) field in PageType 'FCRM Settings' +#. Label of the currency_tab (Tab Break) field in PageType 'FCRM Settings' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_organization/crm_organization.json +#: crm/fcrm/pagetype/fcrm_settings/fcrm_settings.json #: frontend/src/components/Settings/CurrencySettings.vue:31 msgid "Currency" msgstr "Moeda" @@ -1631,13 +1631,13 @@ msgstr "" msgid "Data" msgstr "" -#. Option for the 'Type' (Select) field in DocType 'CRM Fields Layout' -#: crm/fcrm/doctype/crm_fields_layout/crm_fields_layout.json +#. Option for the 'Type' (Select) field in PageType 'CRM Fields Layout' +#: crm/fcrm/pagetype/crm_fields_layout/crm_fields_layout.json msgid "Data Fields" msgstr "" -#. Label of the date (Date) field in DocType 'CRM Holiday' -#: crm/api/dashboard.py:601 crm/fcrm/doctype/crm_holiday/crm_holiday.json +#. Label of the date (Date) field in PageType 'CRM Holiday' +#: crm/api/dashboard.py:601 crm/fcrm/pagetype/crm_holiday/crm_holiday.json #: frontend/src/components/Calendar/CalendarEventPanel.vue:202 msgid "Date" msgstr "Data" @@ -1660,23 +1660,23 @@ msgstr "" msgid "Deal" msgstr "" -#. Label of the deal_owner (Link) field in DocType 'CRM Deal' -#: crm/fcrm/doctype/crm_deal/crm_deal.json +#. Label of the deal_owner (Link) field in PageType 'CRM Deal' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json msgid "Deal Owner" msgstr "" -#. Label of the deal_status (Link) field in DocType 'ERPNext CRM Settings' -#: crm/fcrm/doctype/erpnext_crm_settings/erpnext_crm_settings.json +#. Label of the deal_status (Link) field in PageType 'ERPNext CRM Settings' +#: crm/fcrm/pagetype/erpnext_crm_settings/erpnext_crm_settings.json msgid "Deal Status" msgstr "" -#. Label of a shortcut in the Frappe CRM Workspace -#: crm/fcrm/workspace/frappe_crm/frappe_crm.json +#. Label of a shortcut in the Jingrow CRM Workspace +#: crm/fcrm/workspace/jingrow_crm/jingrow_crm.json msgid "Deal Statuses" msgstr "" -#. Label of the deal_value (Currency) field in DocType 'CRM Deal' -#: crm/fcrm/doctype/crm_deal/crm_deal.json +#. Label of the deal_value (Currency) field in PageType 'CRM Deal' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json msgid "Deal Value" msgstr "" @@ -1694,8 +1694,8 @@ msgstr "" msgid "Deal value" msgstr "" -#. Label of a shortcut in the Frappe CRM Workspace -#: crm/fcrm/workspace/frappe_crm/frappe_crm.json +#. Label of a shortcut in the Jingrow CRM Workspace +#: crm/fcrm/workspace/jingrow_crm/jingrow_crm.json #: frontend/src/pages/Deal.vue:480 frontend/src/pages/MobileContact.vue:288 #: frontend/src/pages/MobileDeal.vue:384 #: frontend/src/pages/MobileOrganization.vue:325 @@ -1732,8 +1732,8 @@ msgstr "" msgid "Dear {{ lead_name }}, \\n\\nThis is a reminder for the payment of {{ grand_total }}. \\n\\nThanks, \\nFrappé" msgstr "" -#. Label of the default (Check) field in DocType 'CRM Service Level Agreement' -#: crm/fcrm/doctype/crm_service_level_agreement/crm_service_level_agreement.json +#. Label of the default (Check) field in PageType 'CRM Service Level Agreement' +#: crm/fcrm/pagetype/crm_service_level_agreement/crm_service_level_agreement.json msgid "Default" msgstr "Padrão" @@ -1745,8 +1745,8 @@ msgstr "" msgid "Default Incoming" msgstr "" -#. Label of the default_medium (Select) field in DocType 'CRM Telephony Agent' -#: crm/fcrm/doctype/crm_telephony_agent/crm_telephony_agent.json +#. Label of the default_medium (Select) field in PageType 'CRM Telephony Agent' +#: crm/fcrm/pagetype/crm_telephony_agent/crm_telephony_agent.json msgid "Default Medium" msgstr "" @@ -1754,9 +1754,9 @@ msgstr "" msgid "Default Outgoing" msgstr "" -#. Label of the default_priority (Check) field in DocType 'CRM Service Level +#. Label of the default_priority (Check) field in PageType 'CRM Service Level #. Priority' -#: crm/fcrm/doctype/crm_service_level_priority/crm_service_level_priority.json +#: crm/fcrm/pagetype/crm_service_level_priority/crm_service_level_priority.json msgid "Default Priority" msgstr "" @@ -1768,7 +1768,7 @@ msgstr "" msgid "Default Sending and Inbox" msgstr "" -#: crm/fcrm/doctype/crm_service_level_agreement/crm_service_level_agreement.py:33 +#: crm/fcrm/pagetype/crm_service_level_agreement/crm_service_level_agreement.py:33 msgid "Default Service Level Agreement already exists for {0}" msgstr "" @@ -1788,8 +1788,8 @@ msgstr "" msgid "Default medium" msgstr "" -#: crm/fcrm/doctype/fcrm_settings/fcrm_settings.js:18 -#: crm/fcrm/doctype/fcrm_settings/fcrm_settings.js:30 +#: crm/fcrm/pagetype/fcrm_settings/fcrm_settings.js:18 +#: crm/fcrm/pagetype/fcrm_settings/fcrm_settings.js:30 msgid "Default statuses, custom fields and layouts restored successfully." msgstr "" @@ -1825,7 +1825,7 @@ msgstr "" msgid "Delete" msgstr "Excluir" -#: crm/fcrm/doctype/fcrm_settings/fcrm_settings.js:26 +#: crm/fcrm/pagetype/fcrm_settings/fcrm_settings.js:26 msgid "Delete & Restore" msgstr "" @@ -1883,14 +1883,14 @@ msgstr "" msgid "Delete {0} items" msgstr "" -#. Label of the description (Text Editor) field in DocType 'CRM Holiday' -#. Label of the description (Text Editor) field in DocType 'CRM Lost Reason' -#. Label of the description (Text Editor) field in DocType 'CRM Product' -#. Label of the description (Text Editor) field in DocType 'CRM Task' -#: crm/fcrm/doctype/crm_holiday/crm_holiday.json -#: crm/fcrm/doctype/crm_lost_reason/crm_lost_reason.json -#: crm/fcrm/doctype/crm_product/crm_product.json -#: crm/fcrm/doctype/crm_task/crm_task.json +#. Label of the description (Text Editor) field in PageType 'CRM Holiday' +#. Label of the description (Text Editor) field in PageType 'CRM Lost Reason' +#. Label of the description (Text Editor) field in PageType 'CRM Product' +#. Label of the description (Text Editor) field in PageType 'CRM Task' +#: crm/fcrm/pagetype/crm_holiday/crm_holiday.json +#: crm/fcrm/pagetype/crm_lost_reason/crm_lost_reason.json +#: crm/fcrm/pagetype/crm_product/crm_product.json +#: crm/fcrm/pagetype/crm_task/crm_task.json #: frontend/src/components/Calendar/CalendarEventPanel.vue:152 #: frontend/src/components/Modals/EventModal.vue:134 #: frontend/src/components/Modals/TaskModal.vue:36 @@ -1907,29 +1907,29 @@ msgstr "" msgid "Desk" msgstr "" -#. Label of the details (Tab Break) field in DocType 'CRM Lead' -#. Label of the details (Text Editor) field in DocType 'CRM Lead Source' -#: crm/fcrm/doctype/crm_lead/crm_lead.json -#: crm/fcrm/doctype/crm_lead_source/crm_lead_source.json +#. Label of the details (Tab Break) field in PageType 'CRM Lead' +#. Label of the details (Text Editor) field in PageType 'CRM Lead Source' +#: crm/fcrm/pagetype/crm_lead/crm_lead.json +#: crm/fcrm/pagetype/crm_lead_source/crm_lead_source.json #: frontend/src/pages/MobileContact.vue:283 #: frontend/src/pages/MobileDeal.vue:424 frontend/src/pages/MobileLead.vue:331 #: frontend/src/pages/MobileOrganization.vue:320 msgid "Details" msgstr "" -#. Label of the call_receiving_device (Select) field in DocType 'CRM Telephony +#. Label of the call_receiving_device (Select) field in PageType 'CRM Telephony #. Agent' -#: crm/fcrm/doctype/crm_telephony_agent/crm_telephony_agent.json +#: crm/fcrm/pagetype/crm_telephony_agent/crm_telephony_agent.json #: frontend/src/components/FilesUploader/FilesUploaderArea.vue:39 msgid "Device" msgstr "" -#: crm/fcrm/doctype/crm_form_script/crm_form_script.js:30 +#: crm/fcrm/pagetype/crm_form_script/crm_form_script.js:30 msgid "Disable" msgstr "" -#. Label of the disabled (Check) field in DocType 'CRM Product' -#: crm/fcrm/doctype/crm_product/crm_product.json +#. Label of the disabled (Check) field in PageType 'CRM Product' +#: crm/fcrm/pagetype/crm_product/crm_product.json msgid "Disabled" msgstr "Desativado" @@ -1943,27 +1943,27 @@ msgstr "" msgid "Discard unsaved changes?" msgstr "" -#. Label of the discount_percentage (Percent) field in DocType 'CRM Products' -#: crm/fcrm/doctype/crm_products/crm_products.json +#. Label of the discount_percentage (Percent) field in PageType 'CRM Products' +#: crm/fcrm/pagetype/crm_products/crm_products.json msgid "Discount %" msgstr "Desconto %" -#. Label of the discount_amount (Currency) field in DocType 'CRM Products' -#: crm/fcrm/doctype/crm_products/crm_products.json +#. Label of the discount_amount (Currency) field in PageType 'CRM Products' +#: crm/fcrm/pagetype/crm_products/crm_products.json msgid "Discount Amount" msgstr "" -#. Label of the dt (Link) field in DocType 'CRM Form Script' -#. Label of the dt (Link) field in DocType 'CRM Global Settings' -#. Label of the dt (Link) field in DocType 'CRM View Settings' -#: crm/fcrm/doctype/crm_form_script/crm_form_script.json -#: crm/fcrm/doctype/crm_global_settings/crm_global_settings.json -#: crm/fcrm/doctype/crm_view_settings/crm_view_settings.json -msgid "DocType" +#. Label of the dt (Link) field in PageType 'CRM Form Script' +#. Label of the dt (Link) field in PageType 'CRM Global Settings' +#. Label of the dt (Link) field in PageType 'CRM View Settings' +#: crm/fcrm/pagetype/crm_form_script/crm_form_script.json +#: crm/fcrm/pagetype/crm_global_settings/crm_global_settings.json +#: crm/fcrm/pagetype/crm_view_settings/crm_view_settings.json +msgid "PageType" msgstr "" -#. Label of the dt (Link) field in DocType 'CRM Fields Layout' -#: crm/fcrm/doctype/crm_fields_layout/crm_fields_layout.json +#. Label of the dt (Link) field in PageType 'CRM Fields Layout' +#: crm/fcrm/pagetype/crm_fields_layout/crm_fields_layout.json msgid "Document Type" msgstr "" @@ -1983,8 +1983,8 @@ msgstr "" msgid "Documentation" msgstr "" -#. Option for the 'Status' (Select) field in DocType 'CRM Task' -#: crm/fcrm/doctype/crm_task/crm_task.json +#. Option for the 'Status' (Select) field in PageType 'CRM Task' +#: crm/fcrm/pagetype/crm_task/crm_task.json msgid "Done" msgstr "Feito" @@ -2006,13 +2006,13 @@ msgstr "" msgid "Drop files here" msgstr "Solte arquivos aqui" -#. Label of the dropdown_items_tab (Tab Break) field in DocType 'FCRM Settings' -#: crm/fcrm/doctype/fcrm_settings/fcrm_settings.json +#. Label of the dropdown_items_tab (Tab Break) field in PageType 'FCRM Settings' +#: crm/fcrm/pagetype/fcrm_settings/fcrm_settings.json msgid "Dropdown Items" msgstr "" -#. Label of the due_date (Datetime) field in DocType 'CRM Task' -#: crm/fcrm/doctype/crm_task/crm_task.json +#. Label of the due_date (Datetime) field in PageType 'CRM Task' +#: crm/fcrm/pagetype/crm_task/crm_task.json msgid "Due Date" msgstr "Data de Vencimento" @@ -2048,10 +2048,10 @@ msgstr "" msgid "Duplicate template" msgstr "" -#. Label of the duration (Duration) field in DocType 'CRM Call Log' -#. Label of the duration (Duration) field in DocType 'CRM Status Change Log' -#: crm/fcrm/doctype/crm_call_log/crm_call_log.json -#: crm/fcrm/doctype/crm_status_change_log/crm_status_change_log.json +#. Label of the duration (Duration) field in PageType 'CRM Call Log' +#. Label of the duration (Duration) field in PageType 'CRM Status Change Log' +#: crm/fcrm/pagetype/crm_call_log/crm_call_log.json +#: crm/fcrm/pagetype/crm_status_change_log/crm_status_change_log.json msgid "Duration" msgstr "Duração" @@ -2060,28 +2060,28 @@ msgstr "Duração" msgid "ERPNext" msgstr "" -#. Name of a DocType -#: crm/fcrm/doctype/erpnext_crm_settings/erpnext_crm_settings.json +#. Name of a PageType +#: crm/fcrm/pagetype/erpnext_crm_settings/erpnext_crm_settings.json msgid "ERPNext CRM Settings" msgstr "" -#. Label of the section_break_oubd (Section Break) field in DocType 'ERPNext +#. Label of the section_break_oubd (Section Break) field in PageType 'ERPNext #. CRM Settings' -#: crm/fcrm/doctype/erpnext_crm_settings/erpnext_crm_settings.json +#: crm/fcrm/pagetype/erpnext_crm_settings/erpnext_crm_settings.json msgid "ERPNext Site API's" msgstr "" -#. Label of the erpnext_site_url (Data) field in DocType 'ERPNext CRM Settings' -#: crm/fcrm/doctype/erpnext_crm_settings/erpnext_crm_settings.json +#. Label of the erpnext_site_url (Data) field in PageType 'ERPNext CRM Settings' +#: crm/fcrm/pagetype/erpnext_crm_settings/erpnext_crm_settings.json msgid "ERPNext Site URL" msgstr "" -#: crm/fcrm/doctype/erpnext_crm_settings/erpnext_crm_settings.py:25 +#: crm/fcrm/pagetype/erpnext_crm_settings/erpnext_crm_settings.py:25 msgid "ERPNext is not installed in the current site" msgstr "" -#: crm/fcrm/doctype/erpnext_crm_settings/erpnext_crm_settings.py:98 -#: crm/fcrm/doctype/erpnext_crm_settings/erpnext_crm_settings.py:124 +#: crm/fcrm/pagetype/erpnext_crm_settings/erpnext_crm_settings.py:98 +#: crm/fcrm/pagetype/erpnext_crm_settings/erpnext_crm_settings.py:124 msgid "ERPNext is not integrated with the CRM" msgstr "" @@ -2191,12 +2191,12 @@ msgstr "" msgid "Editing event" msgstr "" -#. Label of the email (Data) field in DocType 'CRM Contacts' -#. Label of the email (Data) field in DocType 'CRM Invitation' -#. Label of the email (Data) field in DocType 'CRM Lead' -#: crm/fcrm/doctype/crm_contacts/crm_contacts.json -#: crm/fcrm/doctype/crm_invitation/crm_invitation.json -#: crm/fcrm/doctype/crm_lead/crm_lead.json frontend/src/pages/Contact.vue:510 +#. Label of the email (Data) field in PageType 'CRM Contacts' +#. Label of the email (Data) field in PageType 'CRM Invitation' +#. Label of the email (Data) field in PageType 'CRM Lead' +#: crm/fcrm/pagetype/crm_contacts/crm_contacts.json +#: crm/fcrm/pagetype/crm_invitation/crm_invitation.json +#: crm/fcrm/pagetype/crm_lead/crm_lead.json frontend/src/pages/Contact.vue:510 #: frontend/src/pages/MobileContact.vue:518 #: frontend/src/pages/MobileOrganization.vue:462 #: frontend/src/pages/MobileOrganization.vue:490 @@ -2213,8 +2213,8 @@ msgstr "" msgid "Email ID is required" msgstr "" -#. Label of the email_sent_at (Datetime) field in DocType 'CRM Invitation' -#: crm/fcrm/doctype/crm_invitation/crm_invitation.json +#. Label of the email_sent_at (Datetime) field in PageType 'CRM Invitation' +#: crm/fcrm/pagetype/crm_invitation/crm_invitation.json msgid "Email Sent At" msgstr "" @@ -2272,12 +2272,12 @@ msgstr "" msgid "Empty - Choose a field to sort by" msgstr "" -#: crm/fcrm/doctype/crm_form_script/crm_form_script.js:30 +#: crm/fcrm/pagetype/crm_form_script/crm_form_script.js:30 msgid "Enable" msgstr "Permitir" -#. Label of the enable_forecasting (Check) field in DocType 'FCRM Settings' -#: crm/fcrm/doctype/fcrm_settings/fcrm_settings.json +#. Label of the enable_forecasting (Check) field in PageType 'FCRM Settings' +#: crm/fcrm/pagetype/fcrm_settings/fcrm_settings.json msgid "Enable Forecasting" msgstr "" @@ -2293,18 +2293,18 @@ msgstr "" msgid "Enable forecasting" msgstr "" -#. Label of the enabled (Check) field in DocType 'CRM Exotel Settings' -#. Label of the enabled (Check) field in DocType 'CRM Form Script' -#. Label of the enabled (Check) field in DocType 'CRM Service Level Agreement' -#. Label of the enabled (Check) field in DocType 'CRM Twilio Settings' -#. Label of the enabled (Check) field in DocType 'ERPNext CRM Settings' -#. Label of the enabled (Check) field in DocType 'Helpdesk CRM Settings' -#: crm/fcrm/doctype/crm_exotel_settings/crm_exotel_settings.json -#: crm/fcrm/doctype/crm_form_script/crm_form_script.json -#: crm/fcrm/doctype/crm_service_level_agreement/crm_service_level_agreement.json -#: crm/fcrm/doctype/crm_twilio_settings/crm_twilio_settings.json -#: crm/fcrm/doctype/erpnext_crm_settings/erpnext_crm_settings.json -#: crm/fcrm/doctype/helpdesk_crm_settings/helpdesk_crm_settings.json +#. Label of the enabled (Check) field in PageType 'CRM Exotel Settings' +#. Label of the enabled (Check) field in PageType 'CRM Form Script' +#. Label of the enabled (Check) field in PageType 'CRM Service Level Agreement' +#. Label of the enabled (Check) field in PageType 'CRM Twilio Settings' +#. Label of the enabled (Check) field in PageType 'ERPNext CRM Settings' +#. Label of the enabled (Check) field in PageType 'Helpdesk CRM Settings' +#: crm/fcrm/pagetype/crm_exotel_settings/crm_exotel_settings.json +#: crm/fcrm/pagetype/crm_form_script/crm_form_script.json +#: crm/fcrm/pagetype/crm_service_level_agreement/crm_service_level_agreement.json +#: crm/fcrm/pagetype/crm_twilio_settings/crm_twilio_settings.json +#: crm/fcrm/pagetype/erpnext_crm_settings/erpnext_crm_settings.json +#: crm/fcrm/pagetype/helpdesk_crm_settings/helpdesk_crm_settings.json #: frontend/src/components/Settings/AssignmentRules/AssignmentRuleView.vue:32 #: frontend/src/components/Settings/AssignmentRules/AssignmentRulesList.vue:21 #: frontend/src/components/Settings/EmailTemplate/EditEmailTemplate.vue:18 @@ -2313,15 +2313,15 @@ msgstr "" msgid "Enabled" msgstr "" -#. Label of the end_date (Date) field in DocType 'CRM Service Level Agreement' -#: crm/fcrm/doctype/crm_service_level_agreement/crm_service_level_agreement.json +#. Label of the end_date (Date) field in PageType 'CRM Service Level Agreement' +#: crm/fcrm/pagetype/crm_service_level_agreement/crm_service_level_agreement.json msgid "End Date" msgstr "Data Final" -#. Label of the end_time (Datetime) field in DocType 'CRM Call Log' -#. Label of the end_time (Time) field in DocType 'CRM Service Day' -#: crm/fcrm/doctype/crm_call_log/crm_call_log.json -#: crm/fcrm/doctype/crm_service_day/crm_service_day.json +#. Label of the end_time (Datetime) field in PageType 'CRM Call Log' +#. Label of the end_time (Time) field in PageType 'CRM Service Day' +#: crm/fcrm/pagetype/crm_call_log/crm_call_log.json +#: crm/fcrm/pagetype/crm_service_day/crm_service_day.json #: frontend/src/components/Calendar/CalendarEventPanel.vue:242 #: frontend/src/components/Modals/EventModal.vue:112 msgid "End Time" @@ -2362,15 +2362,15 @@ msgstr "" msgid "Error updating field" msgstr "" -#: crm/fcrm/doctype/erpnext_crm_settings/erpnext_crm_settings.py:279 +#: crm/fcrm/pagetype/erpnext_crm_settings/erpnext_crm_settings.py:279 msgid "Error while creating customer in ERPNext, check error log for more details" msgstr "" -#: crm/fcrm/doctype/erpnext_crm_settings/erpnext_crm_settings.py:191 +#: crm/fcrm/pagetype/erpnext_crm_settings/erpnext_crm_settings.py:191 msgid "Error while creating prospect in ERPNext, check error log for more details" msgstr "" -#: crm/fcrm/doctype/erpnext_crm_settings/erpnext_crm_settings.py:117 +#: crm/fcrm/pagetype/erpnext_crm_settings/erpnext_crm_settings.py:117 msgid "Error while fetching customer in ERPNext, check error log for more details" msgstr "" @@ -2395,16 +2395,16 @@ msgstr "" msgid "Excel" msgstr "" -#. Label of the exchange_rate (Float) field in DocType 'CRM Deal' -#. Label of the exchange_rate (Float) field in DocType 'CRM Organization' -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_organization/crm_organization.json +#. Label of the exchange_rate (Float) field in PageType 'CRM Deal' +#. Label of the exchange_rate (Float) field in PageType 'CRM Organization' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_organization/crm_organization.json msgid "Exchange Rate" msgstr "" -#. Label of the exchange_rate_provider_section (Section Break) field in DocType +#. Label of the exchange_rate_provider_section (Section Break) field in PageType #. 'FCRM Settings' -#: crm/fcrm/doctype/fcrm_settings/fcrm_settings.json +#: crm/fcrm/pagetype/fcrm_settings/fcrm_settings.json msgid "Exchange Rate Provider" msgstr "" @@ -2412,12 +2412,12 @@ msgstr "" msgid "Exchange rate provider" msgstr "" -#. Option for the 'Telephony Medium' (Select) field in DocType 'CRM Call Log' -#. Label of the exotel (Check) field in DocType 'CRM Telephony Agent' -#. Option for the 'Default Medium' (Select) field in DocType 'CRM Telephony +#. Option for the 'Telephony Medium' (Select) field in PageType 'CRM Call Log' +#. Label of the exotel (Check) field in PageType 'CRM Telephony Agent' +#. Option for the 'Default Medium' (Select) field in PageType 'CRM Telephony #. Agent' -#: crm/fcrm/doctype/crm_call_log/crm_call_log.json -#: crm/fcrm/doctype/crm_telephony_agent/crm_telephony_agent.json +#: crm/fcrm/pagetype/crm_call_log/crm_call_log.json +#: crm/fcrm/pagetype/crm_telephony_agent/crm_telephony_agent.json #: frontend/src/components/Layouts/AppSidebar.vue:602 #: frontend/src/components/Settings/TelephonySettings.vue:41 #: frontend/src/components/Settings/TelephonySettings.vue:63 @@ -2428,8 +2428,8 @@ msgstr "" msgid "Exotel Exception" msgstr "" -#. Label of the exotel_number (Data) field in DocType 'CRM Telephony Agent' -#: crm/fcrm/doctype/crm_telephony_agent/crm_telephony_agent.json +#. Label of the exotel_number (Data) field in PageType 'CRM Telephony Agent' +#: crm/fcrm/pagetype/crm_telephony_agent/crm_telephony_agent.json msgid "Exotel Number" msgstr "" @@ -2453,26 +2453,26 @@ msgstr "" msgid "Expand" msgstr "" -#. Label of the expected_closure_date (Date) field in DocType 'CRM Deal' -#: crm/fcrm/doctype/crm_deal/crm_deal.json +#. Label of the expected_closure_date (Date) field in PageType 'CRM Deal' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json msgid "Expected Closure Date" msgstr "" -#: crm/fcrm/doctype/crm_deal/crm_deal.py:173 +#: crm/fcrm/pagetype/crm_deal/crm_deal.py:173 msgid "Expected Closure Date is required." msgstr "" -#. Label of the expected_deal_value (Currency) field in DocType 'CRM Deal' -#: crm/fcrm/doctype/crm_deal/crm_deal.json +#. Label of the expected_deal_value (Currency) field in PageType 'CRM Deal' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json msgid "Expected Deal Value" msgstr "" -#: crm/fcrm/doctype/crm_deal/crm_deal.py:171 +#: crm/fcrm/pagetype/crm_deal/crm_deal.py:171 msgid "Expected Deal Value is required." msgstr "" -#. Option for the 'Status' (Select) field in DocType 'CRM Invitation' -#: crm/fcrm/doctype/crm_invitation/crm_invitation.json +#. Option for the 'Status' (Select) field in PageType 'CRM Invitation' +#: crm/fcrm/pagetype/crm_invitation/crm_invitation.json msgid "Expired" msgstr "Expirado" @@ -2489,22 +2489,22 @@ msgstr "" msgid "Export Type" msgstr "" -#. Name of a DocType -#: crm/fcrm/doctype/fcrm_note/fcrm_note.json +#. Name of a PageType +#: crm/fcrm/pagetype/fcrm_note/fcrm_note.json msgid "FCRM Note" msgstr "" -#. Name of a DocType -#: crm/fcrm/doctype/fcrm_settings/fcrm_settings.json +#. Name of a PageType +#: crm/fcrm/pagetype/fcrm_settings/fcrm_settings.json msgid "FCRM Settings" msgstr "" -#. Option for the 'Status' (Select) field in DocType 'CRM Call Log' -#. Option for the 'SLA Status' (Select) field in DocType 'CRM Deal' -#. Option for the 'SLA Status' (Select) field in DocType 'CRM Lead' -#: crm/fcrm/doctype/crm_call_log/crm_call_log.json -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_lead/crm_lead.json +#. Option for the 'Status' (Select) field in PageType 'CRM Call Log' +#. Option for the 'SLA Status' (Select) field in PageType 'CRM Deal' +#. Option for the 'SLA Status' (Select) field in PageType 'CRM Lead' +#: crm/fcrm/pagetype/crm_call_log/crm_call_log.json +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_lead/crm_lead.json msgid "Failed" msgstr "Falhou" @@ -2528,7 +2528,7 @@ msgstr "" msgid "Failed to delete template" msgstr "" -#: crm/fcrm/doctype/fcrm_settings/fcrm_settings.py:205 +#: crm/fcrm/pagetype/fcrm_settings/fcrm_settings.py:205 msgid "Failed to fetch exchange rate from {0} to {1} on {2}. Please check your internet connection or try again later." msgstr "" @@ -2561,8 +2561,8 @@ msgstr "" msgid "Failed to update template" msgstr "" -#. Label of the favicon (Attach) field in DocType 'FCRM Settings' -#: crm/fcrm/doctype/fcrm_settings/fcrm_settings.json +#. Label of the favicon (Attach) field in PageType 'FCRM Settings' +#: crm/fcrm/pagetype/fcrm_settings/fcrm_settings.json #: frontend/src/components/Settings/BrandSettings.vue:87 msgid "Favicon" msgstr "" @@ -2586,23 +2586,23 @@ msgid "File \"{0}\" was skipped because only {1} uploads are allowed" msgstr "" #: frontend/src/components/FilesUploader/FilesUploaderArea.vue:359 -msgid "File \"{0}\" was skipped because only {1} uploads are allowed for DocType \"{2}\"" +msgid "File \"{0}\" was skipped because only {1} uploads are allowed for PageType \"{2}\"" msgstr "" #: frontend/src/components/Filter.vue:6 msgid "Filter" msgstr "" -#. Label of the filters (Code) field in DocType 'CRM View Settings' -#. Label of the filters_tab (Tab Break) field in DocType 'CRM View Settings' -#: crm/fcrm/doctype/crm_view_settings/crm_view_settings.json +#. Label of the filters (Code) field in PageType 'CRM View Settings' +#. Label of the filters_tab (Tab Break) field in PageType 'CRM View Settings' +#: crm/fcrm/pagetype/crm_view_settings/crm_view_settings.json msgid "Filters" msgstr "Filtros" -#. Label of the first_name (Data) field in DocType 'CRM Deal' -#. Label of the first_name (Data) field in DocType 'CRM Lead' -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_lead/crm_lead.json +#. Label of the first_name (Data) field in PageType 'CRM Deal' +#. Label of the first_name (Data) field in PageType 'CRM Lead' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_lead/crm_lead.json #: frontend/src/components/ColumnSettings.vue:103 #: frontend/src/components/Filter.vue:57 frontend/src/components/Filter.vue:88 #: frontend/src/components/SortBy.vue:6 frontend/src/components/SortBy.vue:103 @@ -2614,30 +2614,30 @@ msgstr "" msgid "First Name is mandatory" msgstr "" -#. Label of the first_responded_on (Datetime) field in DocType 'CRM Deal' -#. Label of the first_responded_on (Datetime) field in DocType 'CRM Lead' -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_lead/crm_lead.json +#. Label of the first_responded_on (Datetime) field in PageType 'CRM Deal' +#. Label of the first_responded_on (Datetime) field in PageType 'CRM Lead' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_lead/crm_lead.json msgid "First Responded On" msgstr "" -#. Option for the 'SLA Status' (Select) field in DocType 'CRM Deal' -#. Option for the 'SLA Status' (Select) field in DocType 'CRM Lead' -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_lead/crm_lead.json +#. Option for the 'SLA Status' (Select) field in PageType 'CRM Deal' +#. Option for the 'SLA Status' (Select) field in PageType 'CRM Lead' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_lead/crm_lead.json msgid "First Response Due" msgstr "" -#. Label of the first_response_time (Duration) field in DocType 'CRM Service +#. Label of the first_response_time (Duration) field in PageType 'CRM Service #. Level Priority' -#: crm/fcrm/doctype/crm_service_level_priority/crm_service_level_priority.json +#: crm/fcrm/pagetype/crm_service_level_priority/crm_service_level_priority.json msgid "First Response TIme" msgstr "" -#. Label of the first_response_time (Duration) field in DocType 'CRM Deal' -#. Label of the first_response_time (Duration) field in DocType 'CRM Lead' -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_lead/crm_lead.json +#. Label of the first_response_time (Duration) field in PageType 'CRM Deal' +#. Label of the first_response_time (Duration) field in PageType 'CRM Lead' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_lead/crm_lead.json msgid "First Response Time" msgstr "Tempo de Primeira Resposta" @@ -2670,66 +2670,66 @@ msgstr "" msgid "Forecasting enabled successfully" msgstr "" -#. Option for the 'Apply To' (Select) field in DocType 'CRM Form Script' -#: crm/fcrm/doctype/crm_form_script/crm_form_script.json +#. Option for the 'Apply To' (Select) field in PageType 'CRM Form Script' +#: crm/fcrm/pagetype/crm_form_script/crm_form_script.json msgid "Form" msgstr "" -#: crm/fcrm/doctype/erpnext_crm_settings/erpnext_crm_settings.js:19 +#: crm/fcrm/pagetype/erpnext_crm_settings/erpnext_crm_settings.js:19 msgid "Form Script updated successfully" msgstr "" #. Name of a Workspace -#: crm/fcrm/workspace/frappe_crm/frappe_crm.json -msgid "Frappe CRM" +#: crm/fcrm/workspace/jingrow_crm/jingrow_crm.json +msgid "Jingrow CRM" msgstr "" #: frontend/src/components/Layouts/AppSidebar.vue:608 -msgid "Frappe CRM mobile" +msgid "Jingrow CRM mobile" msgstr "" -#. Option for the 'Weekly Off' (Select) field in DocType 'CRM Holiday List' -#. Option for the 'Workday' (Select) field in DocType 'CRM Service Day' -#: crm/fcrm/doctype/crm_holiday_list/crm_holiday_list.json -#: crm/fcrm/doctype/crm_service_day/crm_service_day.json +#. Option for the 'Weekly Off' (Select) field in PageType 'CRM Holiday List' +#. Option for the 'Workday' (Select) field in PageType 'CRM Service Day' +#: crm/fcrm/pagetype/crm_holiday_list/crm_holiday_list.json +#: crm/fcrm/pagetype/crm_service_day/crm_service_day.json msgid "Friday" msgstr "Sexta-feira" -#. Label of the from (Data) field in DocType 'CRM Call Log' -#. Label of the from (Data) field in DocType 'CRM Status Change Log' -#: crm/fcrm/doctype/crm_call_log/crm_call_log.json -#: crm/fcrm/doctype/crm_status_change_log/crm_status_change_log.json +#. Label of the from (Data) field in PageType 'CRM Call Log' +#. Label of the from (Data) field in PageType 'CRM Status Change Log' +#: crm/fcrm/pagetype/crm_call_log/crm_call_log.json +#: crm/fcrm/pagetype/crm_status_change_log/crm_status_change_log.json msgid "From" msgstr "De" -#. Label of the from_date (Date) field in DocType 'CRM Holiday List' -#. Label of the from_date (Datetime) field in DocType 'CRM Status Change Log' -#: crm/fcrm/doctype/crm_holiday_list/crm_holiday_list.json -#: crm/fcrm/doctype/crm_status_change_log/crm_status_change_log.json +#. Label of the from_date (Date) field in PageType 'CRM Holiday List' +#. Label of the from_date (Datetime) field in PageType 'CRM Status Change Log' +#: crm/fcrm/pagetype/crm_holiday_list/crm_holiday_list.json +#: crm/fcrm/pagetype/crm_status_change_log/crm_status_change_log.json msgid "From Date" msgstr "Data De" -#. Label of the from_type (Data) field in DocType 'CRM Status Change Log' -#: crm/fcrm/doctype/crm_status_change_log/crm_status_change_log.json +#. Label of the from_type (Data) field in PageType 'CRM Status Change Log' +#: crm/fcrm/pagetype/crm_status_change_log/crm_status_change_log.json msgid "From Type" msgstr "" -#. Label of the from_user (Link) field in DocType 'CRM Notification' -#: crm/fcrm/doctype/crm_notification/crm_notification.json +#. Label of the from_user (Link) field in PageType 'CRM Notification' +#: crm/fcrm/pagetype/crm_notification/crm_notification.json msgid "From User" msgstr "Do Usuário" -#. Option for the 'SLA Status' (Select) field in DocType 'CRM Deal' -#. Option for the 'SLA Status' (Select) field in DocType 'CRM Lead' -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_lead/crm_lead.json +#. Option for the 'SLA Status' (Select) field in PageType 'CRM Deal' +#. Option for the 'SLA Status' (Select) field in PageType 'CRM Lead' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_lead/crm_lead.json msgid "Fulfilled" msgstr "" -#. Label of the full_name (Data) field in DocType 'CRM Contacts' -#. Label of the lead_name (Data) field in DocType 'CRM Lead' -#: crm/fcrm/doctype/crm_contacts/crm_contacts.json -#: crm/fcrm/doctype/crm_lead/crm_lead.json +#. Label of the full_name (Data) field in PageType 'CRM Contacts' +#. Label of the lead_name (Data) field in PageType 'CRM Lead' +#: crm/fcrm/pagetype/crm_contacts/crm_contacts.json +#: crm/fcrm/pagetype/crm_lead/crm_lead.json msgid "Full Name" msgstr "" @@ -2742,12 +2742,12 @@ msgstr "" msgid "GMT+5:30" msgstr "" -#. Label of the gender (Link) field in DocType 'CRM Contacts' -#. Label of the gender (Link) field in DocType 'CRM Deal' -#. Label of the gender (Link) field in DocType 'CRM Lead' -#: crm/fcrm/doctype/crm_contacts/crm_contacts.json -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_lead/crm_lead.json +#. Label of the gender (Link) field in PageType 'CRM Contacts' +#. Label of the gender (Link) field in PageType 'CRM Deal' +#. Label of the gender (Link) field in PageType 'CRM Lead' +#: crm/fcrm/pagetype/crm_contacts/crm_contacts.json +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_lead/crm_lead.json msgid "Gender" msgstr "" @@ -2771,20 +2771,20 @@ msgstr "" msgid "Go to website" msgstr "" -#. Option for the 'Type' (Select) field in DocType 'CRM Fields Layout' -#: crm/fcrm/doctype/crm_fields_layout/crm_fields_layout.json +#. Option for the 'Type' (Select) field in PageType 'CRM Fields Layout' +#: crm/fcrm/pagetype/crm_fields_layout/crm_fields_layout.json msgid "Grid Row" msgstr "" -#. Label of the group_by_tab (Tab Break) field in DocType 'CRM View Settings' -#: crm/fcrm/doctype/crm_view_settings/crm_view_settings.json +#. Label of the group_by_tab (Tab Break) field in PageType 'CRM View Settings' +#: crm/fcrm/pagetype/crm_view_settings/crm_view_settings.json #: frontend/src/components/ViewControls.vue:379 #: frontend/src/components/ViewControls.vue:611 frontend/src/utils/view.js:16 msgid "Group By" msgstr "Agrupar Por" -#. Label of the group_by_field (Data) field in DocType 'CRM View Settings' -#: crm/fcrm/doctype/crm_view_settings/crm_view_settings.json +#. Label of the group_by_field (Data) field in PageType 'CRM View Settings' +#: crm/fcrm/pagetype/crm_view_settings/crm_view_settings.json msgid "Group By Field" msgstr "" @@ -2808,28 +2808,28 @@ msgstr "Ajuda" msgid "Helpdesk" msgstr "" -#. Name of a DocType -#: crm/fcrm/doctype/helpdesk_crm_settings/helpdesk_crm_settings.json +#. Name of a PageType +#: crm/fcrm/pagetype/helpdesk_crm_settings/helpdesk_crm_settings.json msgid "Helpdesk CRM Settings" msgstr "" -#. Label of the helpdesk_site_apis_section (Section Break) field in DocType +#. Label of the helpdesk_site_apis_section (Section Break) field in PageType #. 'Helpdesk CRM Settings' -#: crm/fcrm/doctype/helpdesk_crm_settings/helpdesk_crm_settings.json +#: crm/fcrm/pagetype/helpdesk_crm_settings/helpdesk_crm_settings.json msgid "Helpdesk Site API's" msgstr "" -#. Label of the helpdesk_site_url (Data) field in DocType 'Helpdesk CRM +#. Label of the helpdesk_site_url (Data) field in PageType 'Helpdesk CRM #. Settings' -#: crm/fcrm/doctype/helpdesk_crm_settings/helpdesk_crm_settings.json +#: crm/fcrm/pagetype/helpdesk_crm_settings/helpdesk_crm_settings.json msgid "Helpdesk Site URL" msgstr "" -#: crm/fcrm/doctype/helpdesk_crm_settings/helpdesk_crm_settings.py:18 +#: crm/fcrm/pagetype/helpdesk_crm_settings/helpdesk_crm_settings.py:18 msgid "Helpdesk is not installed in the current site" msgstr "" -#: crm/fcrm/doctype/helpdesk_crm_settings/helpdesk_crm_settings.py:40 +#: crm/fcrm/pagetype/helpdesk_crm_settings/helpdesk_crm_settings.py:40 msgid "Helpdesk is not integrated with the CRM" msgstr "" @@ -2845,8 +2845,8 @@ msgstr "" msgid "Hi John, \\n\\nCan you please provide more details on this..." msgstr "" -#. Label of the hidden (Check) field in DocType 'CRM Dropdown Item' -#: crm/fcrm/doctype/crm_dropdown_item/crm_dropdown_item.json +#. Label of the hidden (Check) field in PageType 'CRM Dropdown Item' +#: crm/fcrm/pagetype/crm_dropdown_item/crm_dropdown_item.json msgid "Hidden" msgstr "Escondido" @@ -2877,26 +2877,26 @@ msgstr "" msgid "Hide preview" msgstr "" -#. Option for the 'Priority' (Select) field in DocType 'CRM Task' -#: crm/fcrm/doctype/crm_task/crm_task.json +#. Option for the 'Priority' (Select) field in PageType 'CRM Task' +#: crm/fcrm/pagetype/crm_task/crm_task.json msgid "High" msgstr "Alto" -#. Label of the holiday_list (Link) field in DocType 'CRM Service Level +#. Label of the holiday_list (Link) field in PageType 'CRM Service Level #. Agreement' -#: crm/fcrm/doctype/crm_service_level_agreement/crm_service_level_agreement.json +#: crm/fcrm/pagetype/crm_service_level_agreement/crm_service_level_agreement.json msgid "Holiday List" msgstr "Lista de Feriados" -#. Label of the holiday_list_name (Data) field in DocType 'CRM Holiday List' -#: crm/fcrm/doctype/crm_holiday_list/crm_holiday_list.json +#. Label of the holiday_list_name (Data) field in PageType 'CRM Holiday List' +#: crm/fcrm/pagetype/crm_holiday_list/crm_holiday_list.json msgid "Holiday List Name" msgstr "" -#. Label of the holidays_section (Section Break) field in DocType 'CRM Holiday +#. Label of the holidays_section (Section Break) field in PageType 'CRM Holiday #. List' -#. Label of the holidays (Table) field in DocType 'CRM Holiday List' -#: crm/fcrm/doctype/crm_holiday_list/crm_holiday_list.json +#. Label of the holidays (Table) field in PageType 'CRM Holiday List' +#: crm/fcrm/pagetype/crm_holiday_list/crm_holiday_list.json msgid "Holidays" msgstr "" @@ -2914,15 +2914,15 @@ msgstr "" msgid "I understand, add conditions" msgstr "" -#. Label of the id (Data) field in DocType 'CRM Call Log' -#: crm/fcrm/doctype/crm_call_log/crm_call_log.json +#. Label of the id (Data) field in PageType 'CRM Call Log' +#: crm/fcrm/pagetype/crm_call_log/crm_call_log.json msgid "ID" msgstr "" -#. Label of the icon (Code) field in DocType 'CRM Dropdown Item' -#. Label of the icon (Data) field in DocType 'CRM View Settings' -#: crm/fcrm/doctype/crm_dropdown_item/crm_dropdown_item.json -#: crm/fcrm/doctype/crm_view_settings/crm_view_settings.json +#. Label of the icon (Code) field in PageType 'CRM Dropdown Item' +#. Label of the icon (Data) field in PageType 'CRM View Settings' +#: crm/fcrm/pagetype/crm_dropdown_item/crm_dropdown_item.json +#: crm/fcrm/pagetype/crm_view_settings/crm_view_settings.json msgid "Icon" msgstr "" @@ -2942,10 +2942,10 @@ msgstr "" msgid "If enabled, records can be created from the incoming emails on this account." msgstr "" -#. Label of the image (Attach Image) field in DocType 'CRM Lead' -#. Label of the image (Attach Image) field in DocType 'CRM Product' -#: crm/fcrm/doctype/crm_lead/crm_lead.json -#: crm/fcrm/doctype/crm_product/crm_product.json +#. Label of the image (Attach Image) field in PageType 'CRM Lead' +#. Label of the image (Attach Image) field in PageType 'CRM Product' +#: crm/fcrm/pagetype/crm_lead/crm_lead.json +#: crm/fcrm/pagetype/crm_product/crm_product.json msgid "Image" msgstr "Imagem" @@ -2957,10 +2957,10 @@ msgstr "Imagem" msgid "In" msgstr "" -#. Option for the 'Status' (Select) field in DocType 'CRM Call Log' -#. Option for the 'Status' (Select) field in DocType 'CRM Task' -#: crm/fcrm/doctype/crm_call_log/crm_call_log.json -#: crm/fcrm/doctype/crm_task/crm_task.json +#. Option for the 'Status' (Select) field in PageType 'CRM Call Log' +#. Option for the 'Status' (Select) field in PageType 'CRM Task' +#: crm/fcrm/pagetype/crm_call_log/crm_call_log.json +#: crm/fcrm/pagetype/crm_task/crm_task.json msgid "In Progress" msgstr "Em Progresso" @@ -2976,8 +2976,8 @@ msgstr "" msgid "Inbox" msgstr "" -#. Option for the 'Type' (Select) field in DocType 'CRM Call Log' -#: crm/fcrm/doctype/crm_call_log/crm_call_log.json +#. Option for the 'Type' (Select) field in PageType 'CRM Call Log' +#: crm/fcrm/pagetype/crm_call_log/crm_call_log.json msgid "Incoming" msgstr "Entrada" @@ -2985,24 +2985,24 @@ msgstr "Entrada" msgid "Incoming call..." msgstr "" -#. Label of a shortcut in the Frappe CRM Workspace -#: crm/fcrm/workspace/frappe_crm/frappe_crm.json +#. Label of a shortcut in the Jingrow CRM Workspace +#: crm/fcrm/workspace/jingrow_crm/jingrow_crm.json msgid "Industries" msgstr "" -#. Label of the industry (Link) field in DocType 'CRM Deal' -#. Label of the industry (Data) field in DocType 'CRM Industry' -#. Label of the industry (Link) field in DocType 'CRM Lead' -#. Label of the industry (Link) field in DocType 'CRM Organization' -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_industry/crm_industry.json -#: crm/fcrm/doctype/crm_lead/crm_lead.json -#: crm/fcrm/doctype/crm_organization/crm_organization.json +#. Label of the industry (Link) field in PageType 'CRM Deal' +#. Label of the industry (Data) field in PageType 'CRM Industry' +#. Label of the industry (Link) field in PageType 'CRM Lead' +#. Label of the industry (Link) field in PageType 'CRM Organization' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_industry/crm_industry.json +#: crm/fcrm/pagetype/crm_lead/crm_lead.json +#: crm/fcrm/pagetype/crm_organization/crm_organization.json msgid "Industry" msgstr "" -#. Option for the 'Status' (Select) field in DocType 'CRM Call Log' -#: crm/fcrm/doctype/crm_call_log/crm_call_log.json +#. Option for the 'Status' (Select) field in PageType 'CRM Call Log' +#: crm/fcrm/pagetype/crm_call_log/crm_call_log.json msgid "Initiated" msgstr "Iniciada" @@ -3037,7 +3037,7 @@ msgstr "" msgid "Introduction" msgstr "Introdução" -#: crm/fcrm/doctype/crm_twilio_settings/crm_twilio_settings.py:33 +#: crm/fcrm/pagetype/crm_twilio_settings/crm_twilio_settings.py:33 msgid "Invalid Account SID or Auth Token." msgstr "" @@ -3054,7 +3054,7 @@ msgstr "" msgid "Invalid chart name" msgstr "" -#: crm/fcrm/doctype/crm_exotel_settings/crm_exotel_settings.py:25 +#: crm/fcrm/pagetype/crm_exotel_settings/crm_exotel_settings.py:25 msgid "Invalid credentials" msgstr "" @@ -3103,8 +3103,8 @@ msgstr "" msgid "Invite your team" msgstr "" -#. Label of the invited_by (Link) field in DocType 'CRM Invitation' -#: crm/fcrm/doctype/crm_invitation/crm_invitation.json +#. Label of the invited_by (Link) field in PageType 'CRM Invitation' +#: crm/fcrm/pagetype/crm_invitation/crm_invitation.json msgid "Invited By" msgstr "" @@ -3118,59 +3118,59 @@ msgstr "" msgid "Is" msgstr "" -#. Label of the is_default (Check) field in DocType 'CRM View Settings' -#: crm/fcrm/doctype/crm_view_settings/crm_view_settings.json +#. Label of the is_default (Check) field in PageType 'CRM View Settings' +#: crm/fcrm/pagetype/crm_view_settings/crm_view_settings.json msgid "Is Default" msgstr "" -#. Label of the is_erpnext_in_different_site (Check) field in DocType 'ERPNext +#. Label of the is_erpnext_in_different_site (Check) field in PageType 'ERPNext #. CRM Settings' -#: crm/fcrm/doctype/erpnext_crm_settings/erpnext_crm_settings.json +#: crm/fcrm/pagetype/erpnext_crm_settings/erpnext_crm_settings.json msgid "Is ERPNext installed on a different site?" msgstr "" -#. Label of the is_group (Check) field in DocType 'CRM Territory' -#: crm/fcrm/doctype/crm_territory/crm_territory.json +#. Label of the is_group (Check) field in PageType 'CRM Territory' +#: crm/fcrm/pagetype/crm_territory/crm_territory.json msgid "Is Group" msgstr "É Grupo" -#. Label of the is_helpdesk_in_different_site (Check) field in DocType +#. Label of the is_helpdesk_in_different_site (Check) field in PageType #. 'Helpdesk CRM Settings' -#: crm/fcrm/doctype/helpdesk_crm_settings/helpdesk_crm_settings.json +#: crm/fcrm/pagetype/helpdesk_crm_settings/helpdesk_crm_settings.json msgid "Is Helpdesk installed on a different site?" msgstr "" -#. Label of the is_primary (Check) field in DocType 'CRM Contacts' -#. Label of the is_primary (Check) field in DocType 'CRM Telephony Phone' -#: crm/fcrm/doctype/crm_contacts/crm_contacts.json -#: crm/fcrm/doctype/crm_telephony_phone/crm_telephony_phone.json +#. Label of the is_primary (Check) field in PageType 'CRM Contacts' +#. Label of the is_primary (Check) field in PageType 'CRM Telephony Phone' +#: crm/fcrm/pagetype/crm_contacts/crm_contacts.json +#: crm/fcrm/pagetype/crm_telephony_phone/crm_telephony_phone.json msgid "Is Primary" msgstr "É primário" -#. Label of the is_standard (Check) field in DocType 'CRM Dropdown Item' -#. Label of the is_standard (Check) field in DocType 'CRM Form Script' -#. Label of the is_standard (Check) field in DocType 'CRM View Settings' -#: crm/fcrm/doctype/crm_dropdown_item/crm_dropdown_item.json -#: crm/fcrm/doctype/crm_form_script/crm_form_script.json -#: crm/fcrm/doctype/crm_view_settings/crm_view_settings.json +#. Label of the is_standard (Check) field in PageType 'CRM Dropdown Item' +#. Label of the is_standard (Check) field in PageType 'CRM Form Script' +#. Label of the is_standard (Check) field in PageType 'CRM View Settings' +#: crm/fcrm/pagetype/crm_dropdown_item/crm_dropdown_item.json +#: crm/fcrm/pagetype/crm_form_script/crm_form_script.json +#: crm/fcrm/pagetype/crm_view_settings/crm_view_settings.json msgid "Is Standard" msgstr "É Padrão" -#. Description of the 'Enable Forecasting' (Check) field in DocType 'FCRM +#. Description of the 'Enable Forecasting' (Check) field in PageType 'FCRM #. Settings' -#: crm/fcrm/doctype/fcrm_settings/fcrm_settings.json +#: crm/fcrm/pagetype/fcrm_settings/fcrm_settings.json msgid "It will make deal's \"Expected Closure Date\" & \"Expected Deal Value\" mandatory to get accurate forecasting insights" msgstr "" -#. Label of the json (JSON) field in DocType 'CRM Global Settings' -#: crm/fcrm/doctype/crm_global_settings/crm_global_settings.json +#. Label of the json (JSON) field in PageType 'CRM Global Settings' +#: crm/fcrm/pagetype/crm_global_settings/crm_global_settings.json msgid "JSON" msgstr "" -#. Label of the job_title (Data) field in DocType 'CRM Deal' -#. Label of the job_title (Data) field in DocType 'CRM Lead' -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_lead/crm_lead.json +#. Label of the job_title (Data) field in PageType 'CRM Deal' +#. Label of the job_title (Data) field in PageType 'CRM Lead' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_lead/crm_lead.json msgid "Job Title" msgstr "" @@ -3182,20 +3182,20 @@ msgstr "" msgid "John Doe" msgstr "" -#. Label of the kanban_tab (Tab Break) field in DocType 'CRM View Settings' -#: crm/fcrm/doctype/crm_view_settings/crm_view_settings.json +#. Label of the kanban_tab (Tab Break) field in PageType 'CRM View Settings' +#: crm/fcrm/pagetype/crm_view_settings/crm_view_settings.json #: frontend/src/components/ViewControls.vue:384 #: frontend/src/components/ViewControls.vue:600 frontend/src/utils/view.js:20 msgid "Kanban" msgstr "" -#. Label of the kanban_columns (Code) field in DocType 'CRM View Settings' -#: crm/fcrm/doctype/crm_view_settings/crm_view_settings.json +#. Label of the kanban_columns (Code) field in PageType 'CRM View Settings' +#: crm/fcrm/pagetype/crm_view_settings/crm_view_settings.json msgid "Kanban Columns" msgstr "" -#. Label of the kanban_fields (Code) field in DocType 'CRM View Settings' -#: crm/fcrm/doctype/crm_view_settings/crm_view_settings.json +#. Label of the kanban_fields (Code) field in PageType 'CRM View Settings' +#: crm/fcrm/pagetype/crm_view_settings/crm_view_settings.json msgid "Kanban Fields" msgstr "" @@ -3204,15 +3204,15 @@ msgstr "" msgid "Kanban Settings" msgstr "" -#. Label of the key (Data) field in DocType 'CRM Invitation' -#: crm/fcrm/doctype/crm_invitation/crm_invitation.json +#. Label of the key (Data) field in PageType 'CRM Invitation' +#: crm/fcrm/pagetype/crm_invitation/crm_invitation.json msgid "Key" msgstr "Chave" -#. Label of the label (Data) field in DocType 'CRM Dropdown Item' -#. Label of the label (Data) field in DocType 'CRM View Settings' -#: crm/fcrm/doctype/crm_dropdown_item/crm_dropdown_item.json -#: crm/fcrm/doctype/crm_view_settings/crm_view_settings.json +#. Label of the label (Data) field in PageType 'CRM Dropdown Item' +#. Label of the label (Data) field in PageType 'CRM View Settings' +#: crm/fcrm/pagetype/crm_dropdown_item/crm_dropdown_item.json +#: crm/fcrm/pagetype/crm_view_settings/crm_view_settings.json #: frontend/src/components/ColumnSettings.vue:100 msgid "Label" msgstr "" @@ -3229,10 +3229,10 @@ msgstr "" msgid "Last Month" msgstr "Mês passado" -#. Label of the last_name (Data) field in DocType 'CRM Deal' -#. Label of the last_name (Data) field in DocType 'CRM Lead' -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_lead/crm_lead.json +#. Label of the last_name (Data) field in PageType 'CRM Deal' +#. Label of the last_name (Data) field in PageType 'CRM Lead' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_lead/crm_lead.json msgid "Last Name" msgstr "" @@ -3240,9 +3240,9 @@ msgstr "" msgid "Last Quarter" msgstr "Ultimo quarto" -#. Label of the last_status_change_log (Link) field in DocType 'CRM Status +#. Label of the last_status_change_log (Link) field in PageType 'CRM Status #. Change Log' -#: crm/fcrm/doctype/crm_status_change_log/crm_status_change_log.json +#: crm/fcrm/pagetype/crm_status_change_log/crm_status_change_log.json msgid "Last Status Change Log" msgstr "" @@ -3270,15 +3270,15 @@ msgstr "" msgid "Last user assigned by this rule" msgstr "" -#. Label of the layout (Code) field in DocType 'CRM Dashboard' -#. Label of the layout (Code) field in DocType 'CRM Fields Layout' -#: crm/fcrm/doctype/crm_dashboard/crm_dashboard.json -#: crm/fcrm/doctype/crm_fields_layout/crm_fields_layout.json +#. Label of the layout (Code) field in PageType 'CRM Dashboard' +#. Label of the layout (Code) field in PageType 'CRM Fields Layout' +#: crm/fcrm/pagetype/crm_dashboard/crm_dashboard.json +#: crm/fcrm/pagetype/crm_fields_layout/crm_fields_layout.json msgid "Layout" msgstr "" -#. Label of the lead (Link) field in DocType 'CRM Deal' -#: crm/fcrm/doctype/crm_deal/crm_deal.json +#. Label of the lead (Link) field in PageType 'CRM Deal' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json #: frontend/src/components/Calendar/CalendarEventPanel.vue:263 #: frontend/src/components/Calendar/CalendarEventPanel.vue:288 #: frontend/src/components/Layouts/AppSidebar.vue:550 @@ -3291,32 +3291,32 @@ msgstr "" msgid "Lead" msgstr "" -#. Label of the lead_details_tab (Tab Break) field in DocType 'CRM Deal' -#: crm/fcrm/doctype/crm_deal/crm_deal.json +#. Label of the lead_details_tab (Tab Break) field in PageType 'CRM Deal' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json msgid "Lead Details" msgstr "" -#. Label of the lead_name (Data) field in DocType 'CRM Deal' -#: crm/fcrm/doctype/crm_deal/crm_deal.json +#. Label of the lead_name (Data) field in PageType 'CRM Deal' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json msgid "Lead Name" msgstr "" -#. Label of the lead_owner (Link) field in DocType 'CRM Lead' -#: crm/fcrm/doctype/crm_lead/crm_lead.json +#. Label of the lead_owner (Link) field in PageType 'CRM Lead' +#: crm/fcrm/pagetype/crm_lead/crm_lead.json msgid "Lead Owner" msgstr "" -#: crm/fcrm/doctype/crm_lead/crm_lead.py:73 +#: crm/fcrm/pagetype/crm_lead/crm_lead.py:73 msgid "Lead Owner cannot be same as the Lead Email Address" msgstr "" -#. Label of a shortcut in the Frappe CRM Workspace -#: crm/fcrm/workspace/frappe_crm/frappe_crm.json +#. Label of a shortcut in the Jingrow CRM Workspace +#: crm/fcrm/workspace/jingrow_crm/jingrow_crm.json msgid "Lead Sources" msgstr "" -#. Label of a shortcut in the Frappe CRM Workspace -#: crm/fcrm/workspace/frappe_crm/frappe_crm.json +#. Label of a shortcut in the Jingrow CRM Workspace +#: crm/fcrm/workspace/jingrow_crm/jingrow_crm.json msgid "Lead Statuses" msgstr "" @@ -3328,8 +3328,8 @@ msgstr "" msgid "Lead to deal conversion pipeline" msgstr "" -#. Label of a shortcut in the Frappe CRM Workspace -#: crm/fcrm/workspace/frappe_crm/frappe_crm.json +#. Label of a shortcut in the Jingrow CRM Workspace +#: crm/fcrm/workspace/jingrow_crm/jingrow_crm.json #: frontend/src/pages/InvalidPage.vue:9 frontend/src/pages/Lead.vue:340 #: frontend/src/pages/MobileLead.vue:291 msgid "Leads" @@ -3345,8 +3345,8 @@ msgstr "" msgid "Learn about conditions" msgstr "" -#. Label of the lft (Int) field in DocType 'CRM Territory' -#: crm/fcrm/doctype/crm_territory/crm_territory.json +#. Label of the lft (Int) field in PageType 'CRM Territory' +#: crm/fcrm/pagetype/crm_territory/crm_territory.json msgid "Left" msgstr "" @@ -3367,15 +3367,15 @@ msgstr "" msgid "Link" msgstr "" -#. Label of the links (Table) field in DocType 'CRM Call Log' -#: crm/fcrm/doctype/crm_call_log/crm_call_log.json +#. Label of the links (Table) field in PageType 'CRM Call Log' +#: crm/fcrm/pagetype/crm_call_log/crm_call_log.json msgid "Links" msgstr "" -#. Option for the 'Apply To' (Select) field in DocType 'CRM Form Script' -#. Label of the list_tab (Tab Break) field in DocType 'CRM View Settings' -#: crm/fcrm/doctype/crm_form_script/crm_form_script.json -#: crm/fcrm/doctype/crm_view_settings/crm_view_settings.json +#. Option for the 'Apply To' (Select) field in PageType 'CRM Form Script' +#. Label of the list_tab (Tab Break) field in PageType 'CRM View Settings' +#: crm/fcrm/pagetype/crm_form_script/crm_form_script.json +#: crm/fcrm/pagetype/crm_view_settings/crm_view_settings.json #: frontend/src/components/ViewControls.vue:374 #: frontend/src/components/ViewControls.vue:589 frontend/src/utils/view.js:12 msgid "List" @@ -3385,9 +3385,9 @@ msgstr "Lista" msgid "Listen" msgstr "" -#. Label of the load_default_columns (Check) field in DocType 'CRM View +#. Label of the load_default_columns (Check) field in PageType 'CRM View #. Settings' -#: crm/fcrm/doctype/crm_view_settings/crm_view_settings.json +#: crm/fcrm/pagetype/crm_view_settings/crm_view_settings.json msgid "Load Default Columns" msgstr "" @@ -3403,10 +3403,10 @@ msgstr "" msgid "Loading..." msgstr "" -#. Label of the log_tab (Tab Break) field in DocType 'CRM Deal' -#. Label of the log_tab (Tab Break) field in DocType 'CRM Lead' -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_lead/crm_lead.json +#. Label of the log_tab (Tab Break) field in PageType 'CRM Deal' +#. Label of the log_tab (Tab Break) field in PageType 'CRM Lead' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_lead/crm_lead.json msgid "Log" msgstr "Registo" @@ -3417,28 +3417,28 @@ msgid "Log a Call" msgstr "" #: frontend/src/composables/frappecloud.js:23 -msgid "Login to Frappe Cloud?" +msgid "Login to Jingrow Cloud?" msgstr "" -#. Label of the brand_logo (Attach) field in DocType 'FCRM Settings' -#: crm/fcrm/doctype/fcrm_settings/fcrm_settings.json +#. Label of the brand_logo (Attach) field in PageType 'FCRM Settings' +#: crm/fcrm/pagetype/fcrm_settings/fcrm_settings.json msgid "Logo" msgstr "" -#. Option for the 'Type' (Select) field in DocType 'CRM Deal Status' -#: crm/fcrm/doctype/crm_deal_status/crm_deal_status.json +#. Option for the 'Type' (Select) field in PageType 'CRM Deal Status' +#: crm/fcrm/pagetype/crm_deal_status/crm_deal_status.json msgid "Lost" msgstr "Perdido" -#. Label of the lost_notes (Text) field in DocType 'CRM Deal' -#: crm/fcrm/doctype/crm_deal/crm_deal.json +#. Label of the lost_notes (Text) field in PageType 'CRM Deal' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json msgid "Lost Notes" msgstr "" -#. Label of the lost_reason (Link) field in DocType 'CRM Deal' -#. Label of the lost_reason (Data) field in DocType 'CRM Lost Reason' -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_lost_reason/crm_lost_reason.json +#. Label of the lost_reason (Link) field in PageType 'CRM Deal' +#. Label of the lost_reason (Data) field in PageType 'CRM Lost Reason' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_lost_reason/crm_lost_reason.json msgid "Lost Reason" msgstr "Motivo da Perda" @@ -3464,8 +3464,8 @@ msgstr "" msgid "Lost reason is required" msgstr "" -#. Option for the 'Priority' (Select) field in DocType 'CRM Task' -#: crm/fcrm/doctype/crm_task/crm_task.json +#. Option for the 'Priority' (Select) field in PageType 'CRM Task' +#: crm/fcrm/pagetype/crm_task/crm_task.json msgid "Low" msgstr "Baixo" @@ -3542,8 +3542,8 @@ msgstr "" msgid "Mandatory field error: {0}" msgstr "" -#. Option for the 'Telephony Medium' (Select) field in DocType 'CRM Call Log' -#: crm/fcrm/doctype/crm_call_log/crm_call_log.json +#. Option for the 'Telephony Medium' (Select) field in PageType 'CRM Call Log' +#: crm/fcrm/pagetype/crm_call_log/crm_call_log.json msgid "Manual" msgstr "" @@ -3562,25 +3562,25 @@ msgstr "Cadastros" msgid "May 1, 2025" msgstr "" -#. Label of the medium (Data) field in DocType 'CRM Call Log' -#. Option for the 'Priority' (Select) field in DocType 'CRM Task' -#: crm/fcrm/doctype/crm_call_log/crm_call_log.json -#: crm/fcrm/doctype/crm_task/crm_task.json +#. Label of the medium (Data) field in PageType 'CRM Call Log' +#. Option for the 'Priority' (Select) field in PageType 'CRM Task' +#: crm/fcrm/pagetype/crm_call_log/crm_call_log.json +#: crm/fcrm/pagetype/crm_task/crm_task.json msgid "Medium" msgstr "Médio" -#. Option for the 'Type' (Select) field in DocType 'CRM Notification' -#: crm/fcrm/doctype/crm_notification/crm_notification.json +#. Option for the 'Type' (Select) field in PageType 'CRM Notification' +#: crm/fcrm/pagetype/crm_notification/crm_notification.json msgid "Mention" msgstr "Menção" -#. Label of the message (HTML Editor) field in DocType 'CRM Notification' -#: crm/fcrm/doctype/crm_notification/crm_notification.json +#. Label of the message (HTML Editor) field in PageType 'CRM Notification' +#: crm/fcrm/pagetype/crm_notification/crm_notification.json msgid "Message" msgstr "" -#. Label of the middle_name (Data) field in DocType 'CRM Lead' -#: crm/fcrm/doctype/crm_lead/crm_lead.json +#. Label of the middle_name (Data) field in PageType 'CRM Lead' +#: crm/fcrm/pagetype/crm_lead/crm_lead.json msgid "Middle Name" msgstr "Nome do Meio" @@ -3588,10 +3588,10 @@ msgstr "Nome do Meio" msgid "Minimize" msgstr "" -#. Label of the mobile_no (Data) field in DocType 'CRM Contacts' -#. Label of the mobile_no (Data) field in DocType 'CRM Lead' -#: crm/fcrm/doctype/crm_contacts/crm_contacts.json -#: crm/fcrm/doctype/crm_lead/crm_lead.json +#. Label of the mobile_no (Data) field in PageType 'CRM Contacts' +#. Label of the mobile_no (Data) field in PageType 'CRM Lead' +#: crm/fcrm/pagetype/crm_contacts/crm_contacts.json +#: crm/fcrm/pagetype/crm_lead/crm_lead.json msgid "Mobile No" msgstr "Telefone Celular" @@ -3600,8 +3600,8 @@ msgstr "Telefone Celular" msgid "Mobile No should be a number" msgstr "" -#. Label of the mobile_no (Data) field in DocType 'CRM Telephony Agent' -#: crm/fcrm/doctype/crm_telephony_agent/crm_telephony_agent.json +#. Label of the mobile_no (Data) field in PageType 'CRM Telephony Agent' +#: crm/fcrm/pagetype/crm_telephony_agent/crm_telephony_agent.json msgid "Mobile No." msgstr "Telefone Celular." @@ -3623,10 +3623,10 @@ msgstr "" msgid "Mobile no" msgstr "" -#. Option for the 'Weekly Off' (Select) field in DocType 'CRM Holiday List' -#. Option for the 'Workday' (Select) field in DocType 'CRM Service Day' -#: crm/fcrm/doctype/crm_holiday_list/crm_holiday_list.json -#: crm/fcrm/doctype/crm_service_day/crm_service_day.json +#. Option for the 'Weekly Off' (Select) field in PageType 'CRM Holiday List' +#. Option for the 'Workday' (Select) field in PageType 'CRM Service Day' +#: crm/fcrm/pagetype/crm_holiday_list/crm_holiday_list.json +#: crm/fcrm/pagetype/crm_service_day/crm_service_day.json msgid "Monday" msgstr "Segunda-feira" @@ -3658,12 +3658,12 @@ msgstr "" msgid "My Open Deals" msgstr "" -#. Label of the title (Data) field in DocType 'CRM Dashboard' -#. Label of the name1 (Data) field in DocType 'CRM Dropdown Item' -#. Label of the brand_name (Data) field in DocType 'FCRM Settings' -#: crm/fcrm/doctype/crm_dashboard/crm_dashboard.json -#: crm/fcrm/doctype/crm_dropdown_item/crm_dropdown_item.json -#: crm/fcrm/doctype/fcrm_settings/fcrm_settings.json +#. Label of the title (Data) field in PageType 'CRM Dashboard' +#. Label of the name1 (Data) field in PageType 'CRM Dropdown Item' +#. Label of the brand_name (Data) field in PageType 'FCRM Settings' +#: crm/fcrm/pagetype/crm_dashboard/crm_dashboard.json +#: crm/fcrm/pagetype/crm_dropdown_item/crm_dropdown_item.json +#: crm/fcrm/pagetype/fcrm_settings/fcrm_settings.json #: frontend/src/components/Settings/AssignmentRules/AssignmentRuleView.vue:51 #: frontend/src/components/Settings/AssignmentRules/AssignmentRuleView.vue:52 #: frontend/src/components/Settings/EmailTemplate/EditEmailTemplate.vue:39 @@ -3680,10 +3680,10 @@ msgstr "Nome" msgid "Name is required" msgstr "" -#. Label of the naming_series (Select) field in DocType 'CRM Deal' -#. Label of the naming_series (Select) field in DocType 'CRM Product' -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_product/crm_product.json +#. Label of the naming_series (Select) field in PageType 'CRM Deal' +#. Label of the naming_series (Select) field in PageType 'CRM Product' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_product/crm_product.json msgid "Naming Series" msgstr "Série de Atrib. de Nomes" @@ -3691,15 +3691,15 @@ msgstr "Série de Atrib. de Nomes" msgid "Nested conditions" msgstr "" -#. Label of the net_amount (Currency) field in DocType 'CRM Products' -#: crm/fcrm/doctype/crm_products/crm_products.json +#. Label of the net_amount (Currency) field in PageType 'CRM Products' +#: crm/fcrm/pagetype/crm_products/crm_products.json msgid "Net Amount" msgstr "" -#. Label of the net_total (Currency) field in DocType 'CRM Deal' -#. Label of the net_total (Currency) field in DocType 'CRM Lead' -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_lead/crm_lead.json +#. Label of the net_total (Currency) field in PageType 'CRM Deal' +#. Label of the net_total (Currency) field in PageType 'CRM Lead' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_lead/crm_lead.json msgid "Net Total" msgstr "Total Líquido" @@ -3814,8 +3814,8 @@ msgstr "" msgid "Next Quarter" msgstr "" -#. Label of the next_step (Data) field in DocType 'CRM Deal' -#: crm/fcrm/doctype/crm_deal/crm_deal.json +#. Label of the next_step (Data) field in PageType 'CRM Deal' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json msgid "Next Step" msgstr "" @@ -3831,8 +3831,8 @@ msgstr "" msgid "No" msgstr "Não" -#. Option for the 'Status' (Select) field in DocType 'CRM Call Log' -#: crm/fcrm/doctype/crm_call_log/crm_call_log.json +#. Option for the 'Status' (Select) field in PageType 'CRM Call Log' +#: crm/fcrm/pagetype/crm_call_log/crm_call_log.json msgid "No Answer" msgstr "" @@ -3930,12 +3930,12 @@ msgstr "" msgid "No {0} Found" msgstr "" -#. Label of the no_of_employees (Select) field in DocType 'CRM Deal' -#. Label of the no_of_employees (Select) field in DocType 'CRM Lead' -#. Label of the no_of_employees (Select) field in DocType 'CRM Organization' -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_lead/crm_lead.json -#: crm/fcrm/doctype/crm_organization/crm_organization.json +#. Label of the no_of_employees (Select) field in PageType 'CRM Deal' +#. Label of the no_of_employees (Select) field in PageType 'CRM Lead' +#. Label of the no_of_employees (Select) field in PageType 'CRM Organization' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_lead/crm_lead.json +#: crm/fcrm/pagetype/crm_organization/crm_organization.json msgid "No. of Employees" msgstr "" @@ -3981,24 +3981,24 @@ msgstr "" msgid "Not Saved" msgstr "" -#: crm/fcrm/doctype/crm_deal/crm_deal.py:272 +#: crm/fcrm/pagetype/crm_deal/crm_deal.py:272 msgid "Not allowed to add contact to Deal" msgstr "" -#: crm/fcrm/doctype/crm_lead/crm_lead.py:408 +#: crm/fcrm/pagetype/crm_lead/crm_lead.py:408 msgid "Not allowed to convert Lead to Deal" msgstr "" -#: crm/fcrm/doctype/crm_deal/crm_deal.py:283 +#: crm/fcrm/pagetype/crm_deal/crm_deal.py:283 msgid "Not allowed to remove contact from Deal" msgstr "" -#: crm/fcrm/doctype/crm_deal/crm_deal.py:294 +#: crm/fcrm/pagetype/crm_deal/crm_deal.py:294 msgid "Not allowed to set primary contact for Deal" msgstr "" -#. Label of the note (Link) field in DocType 'CRM Call Log' -#: crm/fcrm/doctype/crm_call_log/crm_call_log.json +#. Label of the note (Link) field in PageType 'CRM Call Log' +#: crm/fcrm/pagetype/crm_call_log/crm_call_log.json #: frontend/src/components/Layouts/AppSidebar.vue:554 msgid "Note" msgstr "Nota" @@ -4017,21 +4017,21 @@ msgstr "" msgid "Notification" msgstr "Notificação" -#. Label of the notification_text (Text) field in DocType 'CRM Notification' -#: crm/fcrm/doctype/crm_notification/crm_notification.json +#. Label of the notification_text (Text) field in PageType 'CRM Notification' +#: crm/fcrm/pagetype/crm_notification/crm_notification.json msgid "Notification Text" msgstr "" -#. Label of the notification_type_doc (Dynamic Link) field in DocType 'CRM +#. Label of the notification_type_pg (Dynamic Link) field in PageType 'CRM #. Notification' -#: crm/fcrm/doctype/crm_notification/crm_notification.json -msgid "Notification Type Doc" +#: crm/fcrm/pagetype/crm_notification/crm_notification.json +msgid "Notification Type Pg" msgstr "" -#. Label of the notification_type_doctype (Link) field in DocType 'CRM +#. Label of the notification_type_pagetype (Link) field in PageType 'CRM #. Notification' -#: crm/fcrm/doctype/crm_notification/crm_notification.json -msgid "Notification Type Doctype" +#: crm/fcrm/pagetype/crm_notification/crm_notification.json +msgid "Notification Type Pagetype" msgstr "" #: frontend/src/components/Layouts/AppSidebar.vue:13 @@ -4041,8 +4041,8 @@ msgstr "" msgid "Notifications" msgstr "" -#. Label of the number (Data) field in DocType 'CRM Telephony Phone' -#: crm/fcrm/doctype/crm_telephony_phone/crm_telephony_phone.json +#. Label of the number (Data) field in PageType 'CRM Telephony Phone' +#: crm/fcrm/pagetype/crm_telephony_phone/crm_telephony_phone.json msgid "Number" msgstr "Número" @@ -4064,18 +4064,18 @@ msgstr "" msgid "Old Condition" msgstr "" -#. Label of the old_parent (Link) field in DocType 'CRM Territory' -#: crm/fcrm/doctype/crm_territory/crm_territory.json +#. Label of the old_parent (Link) field in PageType 'CRM Territory' +#: crm/fcrm/pagetype/crm_territory/crm_territory.json msgid "Old Parent" msgstr "" -#. Option for the 'Type' (Select) field in DocType 'CRM Deal Status' -#: crm/fcrm/doctype/crm_deal_status/crm_deal_status.json +#. Option for the 'Type' (Select) field in PageType 'CRM Deal Status' +#: crm/fcrm/pagetype/crm_deal_status/crm_deal_status.json msgid "On Hold" msgstr "Em Espera" -#. Option for the 'Type' (Select) field in DocType 'CRM Deal Status' -#: crm/fcrm/doctype/crm_deal_status/crm_deal_status.json +#. Option for the 'Type' (Select) field in PageType 'CRM Deal Status' +#: crm/fcrm/pagetype/crm_deal_status/crm_deal_status.json msgid "Ongoing" msgstr "" @@ -4088,13 +4088,13 @@ msgstr "" msgid "Only image files are allowed" msgstr "" -#: crm/fcrm/doctype/crm_deal/crm_deal.py:60 -#: crm/fcrm/doctype/crm_telephony_agent/crm_telephony_agent.py:23 +#: crm/fcrm/pagetype/crm_deal/crm_deal.py:60 +#: crm/fcrm/pagetype/crm_telephony_agent/crm_telephony_agent.py:23 msgid "Only one {0} can be set as primary." msgstr "" -#. Option for the 'Type' (Select) field in DocType 'CRM Deal Status' -#: crm/fcrm/doctype/crm_deal_status/crm_deal_status.json +#. Option for the 'Type' (Select) field in PageType 'CRM Deal Status' +#: crm/fcrm/pagetype/crm_deal_status/crm_deal_status.json msgid "Open" msgstr "Aberto" @@ -4108,13 +4108,13 @@ msgstr "" msgid "Open Lead" msgstr "" -#: crm/fcrm/doctype/crm_deal/crm_deal.js:6 -#: crm/fcrm/doctype/crm_lead/crm_lead.js:6 +#: crm/fcrm/pagetype/crm_deal/crm_deal.js:6 +#: crm/fcrm/pagetype/crm_lead/crm_lead.js:6 msgid "Open in Portal" msgstr "" -#. Label of the open_in_new_window (Check) field in DocType 'CRM Dropdown Item' -#: crm/fcrm/doctype/crm_dropdown_item/crm_dropdown_item.json +#. Label of the open_in_new_window (Check) field in PageType 'CRM Dropdown Item' +#: crm/fcrm/pagetype/crm_dropdown_item/crm_dropdown_item.json msgid "Open in new window" msgstr "" @@ -4136,17 +4136,17 @@ msgstr "Opções" msgid "Or create leads manually" msgstr "" -#. Label of the order_by_tab (Tab Break) field in DocType 'CRM View Settings' -#. Label of the order_by (Code) field in DocType 'CRM View Settings' -#: crm/fcrm/doctype/crm_view_settings/crm_view_settings.json +#. Label of the order_by_tab (Tab Break) field in PageType 'CRM View Settings' +#. Label of the order_by (Code) field in PageType 'CRM View Settings' +#: crm/fcrm/pagetype/crm_view_settings/crm_view_settings.json msgid "Order By" msgstr "Ordenar Por" -#. Label of the organization (Link) field in DocType 'CRM Deal' -#. Label of the organization_tab (Tab Break) field in DocType 'CRM Deal' -#. Label of the organization (Data) field in DocType 'CRM Lead' -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_lead/crm_lead.json +#. Label of the organization (Link) field in PageType 'CRM Deal' +#. Label of the organization_tab (Tab Break) field in PageType 'CRM Deal' +#. Label of the organization (Data) field in PageType 'CRM Lead' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_lead/crm_lead.json #: frontend/src/components/Layouts/AppSidebar.vue:553 #: frontend/src/components/Modals/ConvertToDealModal.vue:25 #: frontend/src/pages/Contact.vue:494 frontend/src/pages/MobileContact.vue:502 @@ -4158,22 +4158,22 @@ msgstr "Ordenar Por" msgid "Organization" msgstr "Organização" -#. Label of the organization_details_section (Section Break) field in DocType +#. Label of the organization_details_section (Section Break) field in PageType #. 'CRM Deal' -#: crm/fcrm/doctype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_deal/crm_deal.json msgid "Organization Details" msgstr "" -#. Label of the organization_logo (Attach Image) field in DocType 'CRM +#. Label of the organization_logo (Attach Image) field in PageType 'CRM #. Organization' -#: crm/fcrm/doctype/crm_organization/crm_organization.json +#: crm/fcrm/pagetype/crm_organization/crm_organization.json msgid "Organization Logo" msgstr "" -#. Label of the organization_name (Data) field in DocType 'CRM Deal' -#. Label of the organization_name (Data) field in DocType 'CRM Organization' -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_organization/crm_organization.json +#. Label of the organization_name (Data) field in PageType 'CRM Deal' +#. Label of the organization_name (Data) field in PageType 'CRM Organization' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_organization/crm_organization.json msgid "Organization Name" msgstr "" @@ -4181,8 +4181,8 @@ msgstr "" msgid "Organization logo" msgstr "" -#. Label of a shortcut in the Frappe CRM Workspace -#: crm/fcrm/workspace/frappe_crm/frappe_crm.json +#. Label of a shortcut in the Jingrow CRM Workspace +#: crm/fcrm/workspace/jingrow_crm/jingrow_crm.json #: frontend/src/pages/MobileOrganization.vue:205 #: frontend/src/pages/Organization.vue:234 msgid "Organizations" @@ -4196,8 +4196,8 @@ msgstr "" msgid "Other features" msgstr "" -#. Label of the organization_tab (Tab Break) field in DocType 'CRM Lead' -#: crm/fcrm/doctype/crm_lead/crm_lead.json +#. Label of the organization_tab (Tab Break) field in PageType 'CRM Lead' +#: crm/fcrm/pagetype/crm_lead/crm_lead.json msgid "Others" msgstr "" @@ -4205,13 +4205,13 @@ msgstr "" msgid "Outbound Call" msgstr "" -#. Option for the 'Type' (Select) field in DocType 'CRM Call Log' -#: crm/fcrm/doctype/crm_call_log/crm_call_log.json +#. Option for the 'Type' (Select) field in PageType 'CRM Call Log' +#: crm/fcrm/pagetype/crm_call_log/crm_call_log.json msgid "Outgoing" msgstr "Saída" -#. Label of the log_owner (Link) field in DocType 'CRM Status Change Log' -#: crm/fcrm/doctype/crm_status_change_log/crm_status_change_log.json +#. Label of the log_owner (Link) field in PageType 'CRM Status Change Log' +#: crm/fcrm/pagetype/crm_status_change_log/crm_status_change_log.json msgid "Owner" msgstr "Proprietário" @@ -4219,8 +4219,8 @@ msgstr "Proprietário" msgid "Owner: {0}" msgstr "" -#. Label of the parent_crm_territory (Link) field in DocType 'CRM Territory' -#: crm/fcrm/doctype/crm_territory/crm_territory.json +#. Label of the parent_crm_territory (Link) field in PageType 'CRM Territory' +#: crm/fcrm/pagetype/crm_territory/crm_territory.json msgid "Parent CRM Territory" msgstr "" @@ -4251,8 +4251,8 @@ msgstr "" msgid "Payment Reminder from Frappé - (#{{ name }})" msgstr "" -#. Option for the 'Status' (Select) field in DocType 'CRM Invitation' -#: crm/fcrm/doctype/crm_invitation/crm_invitation.json +#. Option for the 'Status' (Select) field in PageType 'CRM Invitation' +#: crm/fcrm/pagetype/crm_invitation/crm_invitation.json msgid "Pending" msgstr "Pendente" @@ -4264,10 +4264,10 @@ msgstr "" msgid "Period" msgstr "Período" -#. Label of the person_section (Section Break) field in DocType 'CRM Deal' -#. Label of the person_tab (Tab Break) field in DocType 'CRM Lead' -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_lead/crm_lead.json +#. Label of the person_section (Section Break) field in PageType 'CRM Deal' +#. Label of the person_tab (Tab Break) field in PageType 'CRM Lead' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_lead/crm_lead.json msgid "Person" msgstr "" @@ -4275,19 +4275,19 @@ msgstr "" msgid "Personal Settings" msgstr "" -#. Label of the phone (Data) field in DocType 'CRM Contacts' -#. Label of the phone (Data) field in DocType 'CRM Lead' -#. Option for the 'Device' (Select) field in DocType 'CRM Telephony Agent' -#: crm/fcrm/doctype/crm_contacts/crm_contacts.json -#: crm/fcrm/doctype/crm_lead/crm_lead.json -#: crm/fcrm/doctype/crm_telephony_agent/crm_telephony_agent.json +#. Label of the phone (Data) field in PageType 'CRM Contacts' +#. Label of the phone (Data) field in PageType 'CRM Lead' +#. Option for the 'Device' (Select) field in PageType 'CRM Telephony Agent' +#: crm/fcrm/pagetype/crm_contacts/crm_contacts.json +#: crm/fcrm/pagetype/crm_lead/crm_lead.json +#: crm/fcrm/pagetype/crm_telephony_agent/crm_telephony_agent.json #: frontend/src/pages/MobileOrganization.vue:495 #: frontend/src/pages/Organization.vue:516 msgid "Phone" msgstr "Telefone" -#. Label of the phone_nos (Table) field in DocType 'CRM Telephony Agent' -#: crm/fcrm/doctype/crm_telephony_agent/crm_telephony_agent.json +#. Label of the phone_nos (Table) field in PageType 'CRM Telephony Agent' +#: crm/fcrm/pagetype/crm_telephony_agent/crm_telephony_agent.json msgid "Phone Numbers" msgstr "" @@ -4295,8 +4295,8 @@ msgstr "" msgid "Pin View" msgstr "" -#. Label of the pinned (Check) field in DocType 'CRM View Settings' -#: crm/fcrm/doctype/crm_view_settings/crm_view_settings.json +#. Label of the pinned (Check) field in PageType 'CRM View Settings' +#: crm/fcrm/pagetype/crm_view_settings/crm_view_settings.json msgid "Pinned" msgstr "" @@ -4346,7 +4346,7 @@ msgstr "" msgid "Please select an existing organization" msgstr "" -#: crm/fcrm/doctype/helpdesk_crm_settings/helpdesk_crm_settings.py:126 +#: crm/fcrm/pagetype/helpdesk_crm_settings/helpdesk_crm_settings.py:126 msgid "Please set Email Address" msgstr "" @@ -4354,18 +4354,18 @@ msgstr "" msgid "Please setup Exotel intergration" msgstr "" -#: crm/fcrm/doctype/crm_deal/crm_deal.py:181 +#: crm/fcrm/pagetype/crm_deal/crm_deal.py:181 msgid "Please specify a reason for losing the deal." msgstr "" -#: crm/fcrm/doctype/crm_deal/crm_deal.py:183 +#: crm/fcrm/pagetype/crm_deal/crm_deal.py:183 msgid "Please specify the reason for losing the deal." msgstr "" -#. Label of the position (Int) field in DocType 'CRM Deal Status' -#. Label of the position (Int) field in DocType 'CRM Lead Status' -#: crm/fcrm/doctype/crm_deal_status/crm_deal_status.json -#: crm/fcrm/doctype/crm_lead_status/crm_lead_status.json +#. Label of the position (Int) field in PageType 'CRM Deal Status' +#. Label of the position (Int) field in PageType 'CRM Lead Status' +#: crm/fcrm/pagetype/crm_deal_status/crm_deal_status.json +#: crm/fcrm/pagetype/crm_lead_status/crm_lead_status.json msgid "Position" msgstr "Posição" @@ -4373,18 +4373,18 @@ msgstr "Posição" msgid "Primary" msgstr "Primário" -#. Label of the email (Data) field in DocType 'CRM Deal' -#: crm/fcrm/doctype/crm_deal/crm_deal.json +#. Label of the email (Data) field in PageType 'CRM Deal' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json msgid "Primary Email" msgstr "" -#. Label of the mobile_no (Data) field in DocType 'CRM Deal' -#: crm/fcrm/doctype/crm_deal/crm_deal.json +#. Label of the mobile_no (Data) field in PageType 'CRM Deal' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json msgid "Primary Mobile No" msgstr "" -#. Label of the phone (Data) field in DocType 'CRM Deal' -#: crm/fcrm/doctype/crm_deal/crm_deal.json +#. Label of the phone (Data) field in PageType 'CRM Deal' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json msgid "Primary Phone" msgstr "" @@ -4392,57 +4392,57 @@ msgstr "" msgid "Primary contact set" msgstr "" -#. Label of the priorities (Table) field in DocType 'CRM Service Level +#. Label of the priorities (Table) field in PageType 'CRM Service Level #. Agreement' -#: crm/fcrm/doctype/crm_service_level_agreement/crm_service_level_agreement.json +#: crm/fcrm/pagetype/crm_service_level_agreement/crm_service_level_agreement.json msgid "Priorities" msgstr "" -#. Label of the priority (Link) field in DocType 'CRM Service Level Priority' -#. Label of the priority (Select) field in DocType 'CRM Task' -#: crm/fcrm/doctype/crm_service_level_priority/crm_service_level_priority.json -#: crm/fcrm/doctype/crm_task/crm_task.json +#. Label of the priority (Link) field in PageType 'CRM Service Level Priority' +#. Label of the priority (Select) field in PageType 'CRM Task' +#: crm/fcrm/pagetype/crm_service_level_priority/crm_service_level_priority.json +#: crm/fcrm/pagetype/crm_task/crm_task.json #: frontend/src/components/Settings/AssignmentRules/AssignmentRuleView.vue:64 #: frontend/src/components/Settings/AssignmentRules/AssignmentRulesList.vue:20 msgid "Priority" msgstr "Prioridade" -#. Label of the private (Check) field in DocType 'CRM Dashboard' -#: crm/fcrm/doctype/crm_dashboard/crm_dashboard.json +#. Label of the private (Check) field in PageType 'CRM Dashboard' +#: crm/fcrm/pagetype/crm_dashboard/crm_dashboard.json #: frontend/src/components/FilesUploader/FilesUploaderArea.vue:89 msgid "Private" msgstr "" -#. Label of the probability (Percent) field in DocType 'CRM Deal' -#. Label of the probability (Percent) field in DocType 'CRM Deal Status' -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_deal_status/crm_deal_status.json +#. Label of the probability (Percent) field in PageType 'CRM Deal' +#. Label of the probability (Percent) field in PageType 'CRM Deal Status' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_deal_status/crm_deal_status.json msgid "Probability" msgstr "" -#. Label of the product_code (Link) field in DocType 'CRM Products' -#: crm/fcrm/doctype/crm_products/crm_products.json +#. Label of the product_code (Link) field in PageType 'CRM Products' +#: crm/fcrm/pagetype/crm_products/crm_products.json msgid "Product" msgstr "" -#. Label of the product_code (Data) field in DocType 'CRM Product' -#: crm/fcrm/doctype/crm_product/crm_product.json +#. Label of the product_code (Data) field in PageType 'CRM Product' +#: crm/fcrm/pagetype/crm_product/crm_product.json msgid "Product Code" msgstr "" -#. Label of the product_name (Data) field in DocType 'CRM Product' -#. Label of the product_name (Data) field in DocType 'CRM Products' -#: crm/fcrm/doctype/crm_product/crm_product.json -#: crm/fcrm/doctype/crm_products/crm_products.json +#. Label of the product_name (Data) field in PageType 'CRM Product' +#. Label of the product_name (Data) field in PageType 'CRM Products' +#: crm/fcrm/pagetype/crm_product/crm_product.json +#: crm/fcrm/pagetype/crm_products/crm_products.json msgid "Product Name" msgstr "" -#. Label of the products_tab (Tab Break) field in DocType 'CRM Deal' -#. Label of the products (Table) field in DocType 'CRM Deal' -#. Label of the products_tab (Tab Break) field in DocType 'CRM Lead' -#. Label of the products (Table) field in DocType 'CRM Lead' -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_lead/crm_lead.json +#. Label of the products_tab (Tab Break) field in PageType 'CRM Deal' +#. Label of the products (Table) field in PageType 'CRM Deal' +#. Label of the products_tab (Tab Break) field in PageType 'CRM Lead' +#. Label of the products (Table) field in PageType 'CRM Lead' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_lead/crm_lead.json msgid "Products" msgstr "Produtos" @@ -4459,8 +4459,8 @@ msgstr "" msgid "Projected vs actual revenue based on deal probability" msgstr "" -#. Label of the public (Check) field in DocType 'CRM View Settings' -#: crm/fcrm/doctype/crm_view_settings/crm_view_settings.json +#. Label of the public (Check) field in PageType 'CRM View Settings' +#: crm/fcrm/pagetype/crm_view_settings/crm_view_settings.json msgid "Public" msgstr "" @@ -4472,23 +4472,23 @@ msgstr "" msgid "Public view" msgstr "" -#. Label of the qty (Float) field in DocType 'CRM Products' -#: crm/fcrm/doctype/crm_products/crm_products.json +#. Label of the qty (Float) field in PageType 'CRM Products' +#: crm/fcrm/pagetype/crm_products/crm_products.json msgid "Quantity" msgstr "Quantidade" -#. Option for the 'Status' (Select) field in DocType 'CRM Call Log' -#: crm/fcrm/doctype/crm_call_log/crm_call_log.json +#. Option for the 'Status' (Select) field in PageType 'CRM Call Log' +#: crm/fcrm/pagetype/crm_call_log/crm_call_log.json msgid "Queued" msgstr "" -#. Option for the 'Type' (Select) field in DocType 'CRM Fields Layout' -#: crm/fcrm/doctype/crm_fields_layout/crm_fields_layout.json +#. Option for the 'Type' (Select) field in PageType 'CRM Fields Layout' +#: crm/fcrm/pagetype/crm_fields_layout/crm_fields_layout.json msgid "Quick Entry" msgstr "Entrada Rápida" -#. Option for the 'Type' (Select) field in DocType 'CRM Global Settings' -#: crm/fcrm/doctype/crm_global_settings/crm_global_settings.json +#. Option for the 'Type' (Select) field in PageType 'CRM Global Settings' +#: crm/fcrm/pagetype/crm_global_settings/crm_global_settings.json msgid "Quick Filters" msgstr "" @@ -4500,13 +4500,13 @@ msgstr "" msgid "Quick entry layout" msgstr "" -#. Label of the rate (Currency) field in DocType 'CRM Products' -#: crm/fcrm/doctype/crm_products/crm_products.json +#. Label of the rate (Currency) field in PageType 'CRM Products' +#: crm/fcrm/pagetype/crm_products/crm_products.json msgid "Rate" msgstr "Taxa" -#. Label of the read (Check) field in DocType 'CRM Notification' -#: crm/fcrm/doctype/crm_notification/crm_notification.json +#. Label of the read (Check) field in PageType 'CRM Notification' +#: crm/fcrm/pagetype/crm_notification/crm_notification.json msgid "Read" msgstr "" @@ -4514,48 +4514,48 @@ msgstr "" msgid "Reason" msgstr "Motivo" -#. Label of the record_calls (Check) field in DocType 'CRM Twilio Settings' -#: crm/fcrm/doctype/crm_twilio_settings/crm_twilio_settings.json +#. Label of the record_calls (Check) field in PageType 'CRM Twilio Settings' +#: crm/fcrm/pagetype/crm_twilio_settings/crm_twilio_settings.json msgid "Record Calls" msgstr "" -#. Label of the record_call (Check) field in DocType 'CRM Exotel Settings' -#: crm/fcrm/doctype/crm_exotel_settings/crm_exotel_settings.json +#. Label of the record_call (Check) field in PageType 'CRM Exotel Settings' +#: crm/fcrm/pagetype/crm_exotel_settings/crm_exotel_settings.json msgid "Record Outgoing Calls" msgstr "" -#. Label of the recording_url (Data) field in DocType 'CRM Call Log' -#: crm/fcrm/doctype/crm_call_log/crm_call_log.json +#. Label of the recording_url (Data) field in PageType 'CRM Call Log' +#: crm/fcrm/pagetype/crm_call_log/crm_call_log.json msgid "Recording URL" msgstr "" -#. Label of the reference_name (Dynamic Link) field in DocType 'CRM +#. Label of the reference_name (Dynamic Link) field in PageType 'CRM #. Notification' -#. Label of the reference_docname (Dynamic Link) field in DocType 'CRM Task' -#. Label of the reference_docname (Dynamic Link) field in DocType 'FCRM Note' -#: crm/fcrm/doctype/crm_notification/crm_notification.json -#: crm/fcrm/doctype/crm_task/crm_task.json -#: crm/fcrm/doctype/fcrm_note/fcrm_note.json -msgid "Reference Doc" +#. Label of the reference_docname (Dynamic Link) field in PageType 'CRM Task' +#. Label of the reference_docname (Dynamic Link) field in PageType 'FCRM Note' +#: crm/fcrm/pagetype/crm_notification/crm_notification.json +#: crm/fcrm/pagetype/crm_task/crm_task.json +#: crm/fcrm/pagetype/fcrm_note/fcrm_note.json +msgid "Reference Pg" msgstr "" -#. Label of the reference_doctype (Link) field in DocType 'CRM Notification' -#: crm/fcrm/doctype/crm_notification/crm_notification.json -msgid "Reference Doctype" +#. Label of the reference_pagetype (Link) field in PageType 'CRM Notification' +#: crm/fcrm/pagetype/crm_notification/crm_notification.json +msgid "Reference Pagetype" msgstr "" -#. Label of the reference_doctype (Link) field in DocType 'CRM Call Log' -#. Label of the reference_doctype (Link) field in DocType 'CRM Task' -#. Label of the reference_doctype (Link) field in DocType 'FCRM Note' -#: crm/fcrm/doctype/crm_call_log/crm_call_log.json -#: crm/fcrm/doctype/crm_task/crm_task.json -#: crm/fcrm/doctype/fcrm_note/fcrm_note.json +#. Label of the reference_pagetype (Link) field in PageType 'CRM Call Log' +#. Label of the reference_pagetype (Link) field in PageType 'CRM Task' +#. Label of the reference_pagetype (Link) field in PageType 'FCRM Note' +#: crm/fcrm/pagetype/crm_call_log/crm_call_log.json +#: crm/fcrm/pagetype/crm_task/crm_task.json +#: crm/fcrm/pagetype/fcrm_note/fcrm_note.json msgid "Reference Document Type" msgstr "" -#. Label of the reference_docname (Dynamic Link) field in DocType 'CRM Call +#. Label of the reference_docname (Dynamic Link) field in PageType 'CRM Call #. Log' -#: crm/fcrm/doctype/crm_call_log/crm_call_log.json +#: crm/fcrm/pagetype/crm_call_log/crm_call_log.json msgid "Reference Name" msgstr "Nome de Referência" @@ -4625,8 +4625,8 @@ msgstr "" msgid "Report an Issue" msgstr "" -#. Option for the 'Type' (Select) field in DocType 'CRM Fields Layout' -#: crm/fcrm/doctype/crm_fields_layout/crm_fields_layout.json +#. Option for the 'Type' (Select) field in PageType 'CRM Fields Layout' +#: crm/fcrm/pagetype/crm_fields_layout/crm_fields_layout.json msgid "Required Fields" msgstr "" @@ -4642,7 +4642,7 @@ msgstr "Redefinir" msgid "Reset Changes" msgstr "" -#: crm/fcrm/doctype/erpnext_crm_settings/erpnext_crm_settings.js:7 +#: crm/fcrm/pagetype/erpnext_crm_settings/erpnext_crm_settings.js:7 msgid "Reset ERPNext Form Script" msgstr "" @@ -4654,35 +4654,35 @@ msgstr "" msgid "Reset to default" msgstr "" -#. Label of the response_by (Datetime) field in DocType 'CRM Deal' -#. Label of the response_by (Datetime) field in DocType 'CRM Lead' -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_lead/crm_lead.json +#. Label of the response_by (Datetime) field in PageType 'CRM Deal' +#. Label of the response_by (Datetime) field in PageType 'CRM Lead' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_lead/crm_lead.json msgid "Response By" msgstr "" -#. Label of the response_details_section (Section Break) field in DocType 'CRM +#. Label of the response_details_section (Section Break) field in PageType 'CRM #. Deal' -#. Label of the response_details_section (Section Break) field in DocType 'CRM +#. Label of the response_details_section (Section Break) field in PageType 'CRM #. Lead' -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_lead/crm_lead.json +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_lead/crm_lead.json msgid "Response Details" msgstr "" -#. Label of the section_break_ufaf (Section Break) field in DocType 'CRM +#. Label of the section_break_ufaf (Section Break) field in PageType 'CRM #. Service Level Agreement' -#: crm/fcrm/doctype/crm_service_level_agreement/crm_service_level_agreement.json +#: crm/fcrm/pagetype/crm_service_level_agreement/crm_service_level_agreement.json msgid "Response and Follow Up" msgstr "" -#: crm/fcrm/doctype/fcrm_settings/fcrm_settings.js:14 +#: crm/fcrm/pagetype/fcrm_settings/fcrm_settings.js:14 msgid "Restore" msgstr "" -#. Label of the restore_defaults (Button) field in DocType 'FCRM Settings' -#: crm/fcrm/doctype/fcrm_settings/fcrm_settings.js:13 -#: crm/fcrm/doctype/fcrm_settings/fcrm_settings.json +#. Label of the restore_defaults (Button) field in PageType 'FCRM Settings' +#: crm/fcrm/pagetype/fcrm_settings/fcrm_settings.js:13 +#: crm/fcrm/pagetype/fcrm_settings/fcrm_settings.json msgid "Restore Defaults" msgstr "" @@ -4699,13 +4699,13 @@ msgstr "" msgid "Rich Text" msgstr "" -#. Label of the rgt (Int) field in DocType 'CRM Territory' -#: crm/fcrm/doctype/crm_territory/crm_territory.json +#. Label of the rgt (Int) field in PageType 'CRM Territory' +#: crm/fcrm/pagetype/crm_territory/crm_territory.json msgid "Right" msgstr "" -#. Option for the 'Status' (Select) field in DocType 'CRM Call Log' -#: crm/fcrm/doctype/crm_call_log/crm_call_log.json +#. Option for the 'Status' (Select) field in PageType 'CRM Call Log' +#: crm/fcrm/pagetype/crm_call_log/crm_call_log.json msgid "Ringing" msgstr "" @@ -4714,55 +4714,55 @@ msgstr "" msgid "Ringing..." msgstr "" -#. Label of the role (Select) field in DocType 'CRM Invitation' -#: crm/fcrm/doctype/crm_invitation/crm_invitation.json +#. Label of the role (Select) field in PageType 'CRM Invitation' +#: crm/fcrm/pagetype/crm_invitation/crm_invitation.json #: frontend/src/components/Modals/AddExistingUserModal.vue:46 msgid "Role" msgstr "" -#. Option for the 'Type' (Select) field in DocType 'CRM Dropdown Item' -#. Label of the route (Data) field in DocType 'CRM Dropdown Item' -#: crm/fcrm/doctype/crm_dropdown_item/crm_dropdown_item.json +#. Option for the 'Type' (Select) field in PageType 'CRM Dropdown Item' +#. Label of the route (Data) field in PageType 'CRM Dropdown Item' +#: crm/fcrm/pagetype/crm_dropdown_item/crm_dropdown_item.json msgid "Route" msgstr "Rota" -#. Label of the route_name (Data) field in DocType 'CRM View Settings' -#: crm/fcrm/doctype/crm_view_settings/crm_view_settings.json +#. Label of the route_name (Data) field in PageType 'CRM View Settings' +#: crm/fcrm/pagetype/crm_view_settings/crm_view_settings.json msgid "Route Name" msgstr "" -#. Label of the rows (Code) field in DocType 'CRM View Settings' -#: crm/fcrm/doctype/crm_view_settings/crm_view_settings.json +#. Label of the rows (Code) field in PageType 'CRM View Settings' +#: crm/fcrm/pagetype/crm_view_settings/crm_view_settings.json msgid "Rows" msgstr "" -#. Label of the sla_tab (Tab Break) field in DocType 'CRM Deal' -#. Label of the sla (Link) field in DocType 'CRM Deal' -#. Label of the sla_tab (Tab Break) field in DocType 'CRM Lead' -#. Label of the sla (Link) field in DocType 'CRM Lead' -#. Label of a shortcut in the Frappe CRM Workspace -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_lead/crm_lead.json -#: crm/fcrm/workspace/frappe_crm/frappe_crm.json +#. Label of the sla_tab (Tab Break) field in PageType 'CRM Deal' +#. Label of the sla (Link) field in PageType 'CRM Deal' +#. Label of the sla_tab (Tab Break) field in PageType 'CRM Lead' +#. Label of the sla (Link) field in PageType 'CRM Lead' +#. Label of a shortcut in the Jingrow CRM Workspace +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_lead/crm_lead.json +#: crm/fcrm/workspace/jingrow_crm/jingrow_crm.json msgid "SLA" msgstr "" -#. Label of the sla_creation (Datetime) field in DocType 'CRM Deal' -#. Label of the sla_creation (Datetime) field in DocType 'CRM Lead' -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_lead/crm_lead.json +#. Label of the sla_creation (Datetime) field in PageType 'CRM Deal' +#. Label of the sla_creation (Datetime) field in PageType 'CRM Lead' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_lead/crm_lead.json msgid "SLA Creation" msgstr "" -#. Label of the sla_name (Data) field in DocType 'CRM Service Level Agreement' -#: crm/fcrm/doctype/crm_service_level_agreement/crm_service_level_agreement.json +#. Label of the sla_name (Data) field in PageType 'CRM Service Level Agreement' +#: crm/fcrm/pagetype/crm_service_level_agreement/crm_service_level_agreement.json msgid "SLA Name" msgstr "" -#. Label of the sla_status (Select) field in DocType 'CRM Deal' -#. Label of the sla_status (Select) field in DocType 'CRM Lead' -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_lead/crm_lead.json +#. Label of the sla_status (Select) field in PageType 'CRM Deal' +#. Label of the sla_status (Select) field in PageType 'CRM Lead' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_lead/crm_lead.json msgid "SLA Status" msgstr "" @@ -4771,57 +4771,57 @@ msgid "SUBJECT" msgstr "" #. Name of a role -#. Option for the 'Role' (Select) field in DocType 'CRM Invitation' -#: crm/fcrm/doctype/crm_call_log/crm_call_log.json -#: crm/fcrm/doctype/crm_communication_status/crm_communication_status.json -#: crm/fcrm/doctype/crm_dashboard/crm_dashboard.json -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_deal_status/crm_deal_status.json -#: crm/fcrm/doctype/crm_exotel_settings/crm_exotel_settings.json -#: crm/fcrm/doctype/crm_form_script/crm_form_script.json -#: crm/fcrm/doctype/crm_global_settings/crm_global_settings.json -#: crm/fcrm/doctype/crm_holiday_list/crm_holiday_list.json -#: crm/fcrm/doctype/crm_industry/crm_industry.json -#: crm/fcrm/doctype/crm_invitation/crm_invitation.json -#: crm/fcrm/doctype/crm_lead/crm_lead.json -#: crm/fcrm/doctype/crm_lead_source/crm_lead_source.json -#: crm/fcrm/doctype/crm_lead_status/crm_lead_status.json -#: crm/fcrm/doctype/crm_lost_reason/crm_lost_reason.json -#: crm/fcrm/doctype/crm_notification/crm_notification.json -#: crm/fcrm/doctype/crm_organization/crm_organization.json -#: crm/fcrm/doctype/crm_service_level_agreement/crm_service_level_agreement.json -#: crm/fcrm/doctype/crm_task/crm_task.json -#: crm/fcrm/doctype/crm_territory/crm_territory.json -#: crm/fcrm/doctype/crm_twilio_settings/crm_twilio_settings.json -#: crm/fcrm/doctype/crm_view_settings/crm_view_settings.json -#: crm/fcrm/doctype/erpnext_crm_settings/erpnext_crm_settings.json -#: crm/fcrm/doctype/fcrm_note/fcrm_note.json -#: crm/fcrm/doctype/fcrm_settings/fcrm_settings.json -#: crm/fcrm/doctype/helpdesk_crm_settings/helpdesk_crm_settings.json +#. Option for the 'Role' (Select) field in PageType 'CRM Invitation' +#: crm/fcrm/pagetype/crm_call_log/crm_call_log.json +#: crm/fcrm/pagetype/crm_communication_status/crm_communication_status.json +#: crm/fcrm/pagetype/crm_dashboard/crm_dashboard.json +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_deal_status/crm_deal_status.json +#: crm/fcrm/pagetype/crm_exotel_settings/crm_exotel_settings.json +#: crm/fcrm/pagetype/crm_form_script/crm_form_script.json +#: crm/fcrm/pagetype/crm_global_settings/crm_global_settings.json +#: crm/fcrm/pagetype/crm_holiday_list/crm_holiday_list.json +#: crm/fcrm/pagetype/crm_industry/crm_industry.json +#: crm/fcrm/pagetype/crm_invitation/crm_invitation.json +#: crm/fcrm/pagetype/crm_lead/crm_lead.json +#: crm/fcrm/pagetype/crm_lead_source/crm_lead_source.json +#: crm/fcrm/pagetype/crm_lead_status/crm_lead_status.json +#: crm/fcrm/pagetype/crm_lost_reason/crm_lost_reason.json +#: crm/fcrm/pagetype/crm_notification/crm_notification.json +#: crm/fcrm/pagetype/crm_organization/crm_organization.json +#: crm/fcrm/pagetype/crm_service_level_agreement/crm_service_level_agreement.json +#: crm/fcrm/pagetype/crm_task/crm_task.json +#: crm/fcrm/pagetype/crm_territory/crm_territory.json +#: crm/fcrm/pagetype/crm_twilio_settings/crm_twilio_settings.json +#: crm/fcrm/pagetype/crm_view_settings/crm_view_settings.json +#: crm/fcrm/pagetype/erpnext_crm_settings/erpnext_crm_settings.json +#: crm/fcrm/pagetype/fcrm_note/fcrm_note.json +#: crm/fcrm/pagetype/fcrm_settings/fcrm_settings.json +#: crm/fcrm/pagetype/helpdesk_crm_settings/helpdesk_crm_settings.json msgid "Sales Manager" msgstr "Gerente de Vendas" #. Name of a role -#. Option for the 'Role' (Select) field in DocType 'CRM Invitation' -#: crm/fcrm/doctype/crm_call_log/crm_call_log.json -#: crm/fcrm/doctype/crm_communication_status/crm_communication_status.json -#: crm/fcrm/doctype/crm_dashboard/crm_dashboard.json -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_deal_status/crm_deal_status.json -#: crm/fcrm/doctype/crm_global_settings/crm_global_settings.json -#: crm/fcrm/doctype/crm_holiday_list/crm_holiday_list.json -#: crm/fcrm/doctype/crm_industry/crm_industry.json -#: crm/fcrm/doctype/crm_invitation/crm_invitation.json -#: crm/fcrm/doctype/crm_lead/crm_lead.json -#: crm/fcrm/doctype/crm_lead_source/crm_lead_source.json -#: crm/fcrm/doctype/crm_lead_status/crm_lead_status.json -#: crm/fcrm/doctype/crm_lost_reason/crm_lost_reason.json -#: crm/fcrm/doctype/crm_notification/crm_notification.json -#: crm/fcrm/doctype/crm_organization/crm_organization.json -#: crm/fcrm/doctype/crm_task/crm_task.json -#: crm/fcrm/doctype/crm_territory/crm_territory.json -#: crm/fcrm/doctype/crm_view_settings/crm_view_settings.json -#: crm/fcrm/doctype/fcrm_note/fcrm_note.json +#. Option for the 'Role' (Select) field in PageType 'CRM Invitation' +#: crm/fcrm/pagetype/crm_call_log/crm_call_log.json +#: crm/fcrm/pagetype/crm_communication_status/crm_communication_status.json +#: crm/fcrm/pagetype/crm_dashboard/crm_dashboard.json +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_deal_status/crm_deal_status.json +#: crm/fcrm/pagetype/crm_global_settings/crm_global_settings.json +#: crm/fcrm/pagetype/crm_holiday_list/crm_holiday_list.json +#: crm/fcrm/pagetype/crm_industry/crm_industry.json +#: crm/fcrm/pagetype/crm_invitation/crm_invitation.json +#: crm/fcrm/pagetype/crm_lead/crm_lead.json +#: crm/fcrm/pagetype/crm_lead_source/crm_lead_source.json +#: crm/fcrm/pagetype/crm_lead_status/crm_lead_status.json +#: crm/fcrm/pagetype/crm_lost_reason/crm_lost_reason.json +#: crm/fcrm/pagetype/crm_notification/crm_notification.json +#: crm/fcrm/pagetype/crm_organization/crm_organization.json +#: crm/fcrm/pagetype/crm_task/crm_task.json +#: crm/fcrm/pagetype/crm_territory/crm_territory.json +#: crm/fcrm/pagetype/crm_view_settings/crm_view_settings.json +#: crm/fcrm/pagetype/fcrm_note/fcrm_note.json #: frontend/src/components/Modals/AddExistingUserModal.vue:92 #: frontend/src/components/Settings/InviteUserPage.vue:156 #: frontend/src/components/Settings/InviteUserPage.vue:163 @@ -4845,17 +4845,17 @@ msgstr "" msgid "Salesperson" msgstr "" -#. Label of the salutation (Link) field in DocType 'CRM Deal' -#. Label of the salutation (Link) field in DocType 'CRM Lead' -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_lead/crm_lead.json +#. Label of the salutation (Link) field in PageType 'CRM Deal' +#. Label of the salutation (Link) field in PageType 'CRM Lead' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_lead/crm_lead.json msgid "Salutation" msgstr "" -#. Option for the 'Weekly Off' (Select) field in DocType 'CRM Holiday List' -#. Option for the 'Workday' (Select) field in DocType 'CRM Service Day' -#: crm/fcrm/doctype/crm_holiday_list/crm_holiday_list.json -#: crm/fcrm/doctype/crm_service_day/crm_service_day.json +#. Option for the 'Weekly Off' (Select) field in PageType 'CRM Holiday List' +#. Option for the 'Workday' (Select) field in PageType 'CRM Service Day' +#: crm/fcrm/pagetype/crm_holiday_list/crm_holiday_list.json +#: crm/fcrm/pagetype/crm_service_day/crm_service_day.json msgid "Saturday" msgstr "Sábado" @@ -4904,8 +4904,8 @@ msgstr "" msgid "Schedule an event" msgstr "" -#. Label of the script (Code) field in DocType 'CRM Form Script' -#: crm/fcrm/doctype/crm_form_script/crm_form_script.json +#. Label of the script (Code) field in PageType 'CRM Form Script' +#: crm/fcrm/pagetype/crm_form_script/crm_form_script.json msgid "Script" msgstr "" @@ -4973,18 +4973,18 @@ msgstr "" msgid "Send invites to" msgstr "" -#. Option for the 'Type' (Select) field in DocType 'CRM Dropdown Item' -#: crm/fcrm/doctype/crm_dropdown_item/crm_dropdown_item.json +#. Option for the 'Type' (Select) field in PageType 'CRM Dropdown Item' +#: crm/fcrm/pagetype/crm_dropdown_item/crm_dropdown_item.json msgid "Separator" msgstr "Separador" -#. Label of the naming_series (Select) field in DocType 'CRM Lead' -#: crm/fcrm/doctype/crm_lead/crm_lead.json +#. Label of the naming_series (Select) field in PageType 'CRM Lead' +#: crm/fcrm/pagetype/crm_lead/crm_lead.json msgid "Series" msgstr "Série" -#. Label of the service_provider (Select) field in DocType 'FCRM Settings' -#: crm/fcrm/doctype/fcrm_settings/fcrm_settings.json +#. Label of the service_provider (Select) field in PageType 'FCRM Settings' +#: crm/fcrm/pagetype/fcrm_settings/fcrm_settings.json msgid "Service Provider" msgstr "" @@ -5029,7 +5029,7 @@ msgid "Setting up" msgstr "" #: frontend/src/components/Settings/emailConfig.js:145 -msgid "Setting up Frappe Mail requires you to have an API key and API Secret of your email account. Read more " +msgid "Setting up Jingrow Mail requires you to have an API key and API Secret of your email account. Read more " msgstr "" #: frontend/src/components/Settings/emailConfig.js:97 @@ -5062,8 +5062,8 @@ msgid "Setting up Yandex requires you to enable two factor authentication\n" "\t\t and app specific passwords. Read more " msgstr "" -#. Label of the defaults_tab (Tab Break) field in DocType 'FCRM Settings' -#: crm/fcrm/doctype/fcrm_settings/fcrm_settings.json +#. Label of the defaults_tab (Tab Break) field in PageType 'FCRM Settings' +#: crm/fcrm/pagetype/fcrm_settings/fcrm_settings.json #: frontend/src/components/Layouts/AppSidebar.vue:537 #: frontend/src/components/Settings/Settings.vue:12 msgid "Settings" @@ -5073,7 +5073,7 @@ msgstr "Configurações" msgid "Setup Email" msgstr "" -#: crm/fcrm/doctype/fcrm_settings/fcrm_settings.py:199 +#: crm/fcrm/pagetype/fcrm_settings/fcrm_settings.py:199 msgid "Setup the Exchange Rate Provider as 'Exchangerate Host' in settings, as default provider does not support currency conversion for {0} to {1}." msgstr "" @@ -5108,20 +5108,20 @@ msgstr "" msgid "Show preview" msgstr "" -#. Option for the 'Type' (Select) field in DocType 'CRM Fields Layout' -#: crm/fcrm/doctype/crm_fields_layout/crm_fields_layout.json +#. Option for the 'Type' (Select) field in PageType 'CRM Fields Layout' +#: crm/fcrm/pagetype/crm_fields_layout/crm_fields_layout.json msgid "Side Panel" msgstr "" -#. Option for the 'Type' (Select) field in DocType 'CRM Global Settings' -#: crm/fcrm/doctype/crm_global_settings/crm_global_settings.json +#. Option for the 'Type' (Select) field in PageType 'CRM Global Settings' +#: crm/fcrm/pagetype/crm_global_settings/crm_global_settings.json msgid "Sidebar Items" msgstr "Itens da barra lateral" -#. Description of the 'Condition' (Code) field in DocType 'CRM Service Level +#. Description of the 'Condition' (Code) field in PageType 'CRM Service Level #. Agreement' -#: crm/fcrm/doctype/crm_service_level_agreement/crm_service_level_agreement.json -msgid "Simple Python Expression, Example: doc.status == 'Open' and doc.lead_source == 'Ads'" +#: crm/fcrm/pagetype/crm_service_level_agreement/crm_service_level_agreement.json +msgid "Simple Python Expression, Example: pg.status == 'Open' and pg.lead_source == 'Ads'" msgstr "" #: frontend/src/components/AssignTo.vue:83 @@ -5145,16 +5145,16 @@ msgstr "" msgid "Sort" msgstr "" -#. Label of the source (Link) field in DocType 'CRM Deal' -#. Label of the source (Link) field in DocType 'CRM Lead' -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_lead/crm_lead.json +#. Label of the source (Link) field in PageType 'CRM Deal' +#. Label of the source (Link) field in PageType 'CRM Lead' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_lead/crm_lead.json #: frontend/src/components/Modals/EditValueModal.vue:10 msgid "Source" msgstr "Origem" -#. Label of the source_name (Data) field in DocType 'CRM Lead Source' -#: crm/fcrm/doctype/crm_lead_source/crm_lead_source.json +#. Label of the source_name (Data) field in PageType 'CRM Lead Source' +#: crm/fcrm/pagetype/crm_lead_source/crm_lead_source.json msgid "Source Name" msgstr "Nome da Fonte" @@ -5167,12 +5167,12 @@ msgstr "" msgid "Stage" msgstr "" -#: crm/fcrm/doctype/crm_form_script/crm_form_script.js:15 +#: crm/fcrm/pagetype/crm_form_script/crm_form_script.js:15 msgid "Standard Form Scripts can not be modified, duplicate the Form Script instead." msgstr "" -#. Label of the standard_rate (Currency) field in DocType 'CRM Product' -#: crm/fcrm/doctype/crm_product/crm_product.json +#. Label of the standard_rate (Currency) field in PageType 'CRM Product' +#: crm/fcrm/pagetype/crm_product/crm_product.json msgid "Standard Selling Rate" msgstr "" @@ -5180,18 +5180,18 @@ msgstr "" msgid "Standard Views" msgstr "" -#. Label of the start_date (Date) field in DocType 'CRM Service Level +#. Label of the start_date (Date) field in PageType 'CRM Service Level #. Agreement' -#. Label of the start_date (Date) field in DocType 'CRM Task' -#: crm/fcrm/doctype/crm_service_level_agreement/crm_service_level_agreement.json -#: crm/fcrm/doctype/crm_task/crm_task.json +#. Label of the start_date (Date) field in PageType 'CRM Task' +#: crm/fcrm/pagetype/crm_service_level_agreement/crm_service_level_agreement.json +#: crm/fcrm/pagetype/crm_task/crm_task.json msgid "Start Date" msgstr "Data de Início" -#. Label of the start_time (Datetime) field in DocType 'CRM Call Log' -#. Label of the start_time (Time) field in DocType 'CRM Service Day' -#: crm/fcrm/doctype/crm_call_log/crm_call_log.json -#: crm/fcrm/doctype/crm_service_day/crm_service_day.json +#. Label of the start_time (Datetime) field in PageType 'CRM Call Log' +#. Label of the start_time (Time) field in PageType 'CRM Service Day' +#: crm/fcrm/pagetype/crm_call_log/crm_call_log.json +#: crm/fcrm/pagetype/crm_service_day/crm_service_day.json #: frontend/src/components/Calendar/CalendarEventPanel.vue:234 #: frontend/src/components/Modals/EventModal.vue:103 msgid "Start Time" @@ -5205,32 +5205,32 @@ msgstr "" msgid "Start with sample 10 leads" msgstr "" -#. Label of the status (Select) field in DocType 'CRM Call Log' -#. Label of the status (Data) field in DocType 'CRM Communication Status' -#. Label of the status (Link) field in DocType 'CRM Deal' -#. Label of the deal_status (Data) field in DocType 'CRM Deal Status' -#. Label of the status (Select) field in DocType 'CRM Invitation' -#. Label of the status (Link) field in DocType 'CRM Lead' -#. Label of the lead_status (Data) field in DocType 'CRM Lead Status' -#. Label of the status (Select) field in DocType 'CRM Task' -#: crm/fcrm/doctype/crm_call_log/crm_call_log.json -#: crm/fcrm/doctype/crm_communication_status/crm_communication_status.json -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_deal_status/crm_deal_status.json -#: crm/fcrm/doctype/crm_invitation/crm_invitation.json -#: crm/fcrm/doctype/crm_lead/crm_lead.json -#: crm/fcrm/doctype/crm_lead_status/crm_lead_status.json -#: crm/fcrm/doctype/crm_task/crm_task.json frontend/src/pages/Contact.vue:505 +#. Label of the status (Select) field in PageType 'CRM Call Log' +#. Label of the status (Data) field in PageType 'CRM Communication Status' +#. Label of the status (Link) field in PageType 'CRM Deal' +#. Label of the deal_status (Data) field in PageType 'CRM Deal Status' +#. Label of the status (Select) field in PageType 'CRM Invitation' +#. Label of the status (Link) field in PageType 'CRM Lead' +#. Label of the lead_status (Data) field in PageType 'CRM Lead Status' +#. Label of the status (Select) field in PageType 'CRM Task' +#: crm/fcrm/pagetype/crm_call_log/crm_call_log.json +#: crm/fcrm/pagetype/crm_communication_status/crm_communication_status.json +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_deal_status/crm_deal_status.json +#: crm/fcrm/pagetype/crm_invitation/crm_invitation.json +#: crm/fcrm/pagetype/crm_lead/crm_lead.json +#: crm/fcrm/pagetype/crm_lead_status/crm_lead_status.json +#: crm/fcrm/pagetype/crm_task/crm_task.json frontend/src/pages/Contact.vue:505 #: frontend/src/pages/MobileContact.vue:513 #: frontend/src/pages/MobileOrganization.vue:457 #: frontend/src/pages/Organization.vue:478 msgid "Status" msgstr "" -#. Label of the status_change_log (Table) field in DocType 'CRM Deal' -#. Label of the status_change_log (Table) field in DocType 'CRM Lead' -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_lead/crm_lead.json +#. Label of the status_change_log (Table) field in PageType 'CRM Deal' +#. Label of the status_change_log (Table) field in PageType 'CRM Lead' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_lead/crm_lead.json msgid "Status Change Log" msgstr "" @@ -5239,8 +5239,8 @@ msgstr "" msgid "Status is required" msgstr "" -#. Label of the subdomain (Data) field in DocType 'CRM Exotel Settings' -#: crm/fcrm/doctype/crm_exotel_settings/crm_exotel_settings.json +#. Label of the subdomain (Data) field in PageType 'CRM Exotel Settings' +#: crm/fcrm/pagetype/crm_exotel_settings/crm_exotel_settings.json msgid "Subdomain" msgstr "Subdomínio" @@ -5258,10 +5258,10 @@ msgstr "" msgid "Subject: {0}" msgstr "" -#. Option for the 'Weekly Off' (Select) field in DocType 'CRM Holiday List' -#. Option for the 'Workday' (Select) field in DocType 'CRM Service Day' -#: crm/fcrm/doctype/crm_holiday_list/crm_holiday_list.json -#: crm/fcrm/doctype/crm_service_day/crm_service_day.json +#. Option for the 'Weekly Off' (Select) field in PageType 'CRM Holiday List' +#. Option for the 'Workday' (Select) field in PageType 'CRM Service Day' +#: crm/fcrm/pagetype/crm_holiday_list/crm_holiday_list.json +#: crm/fcrm/pagetype/crm_service_day/crm_service_day.json msgid "Sunday" msgstr "Domingo" @@ -5282,21 +5282,21 @@ msgid "System Configuration" msgstr "" #. Name of a role -#. Option for the 'Role' (Select) field in DocType 'CRM Invitation' -#: crm/fcrm/doctype/crm_dashboard/crm_dashboard.json -#: crm/fcrm/doctype/crm_exotel_settings/crm_exotel_settings.json -#: crm/fcrm/doctype/crm_fields_layout/crm_fields_layout.json -#: crm/fcrm/doctype/crm_global_settings/crm_global_settings.json -#: crm/fcrm/doctype/crm_invitation/crm_invitation.json -#: crm/fcrm/doctype/crm_lead_source/crm_lead_source.json -#: crm/fcrm/doctype/crm_lost_reason/crm_lost_reason.json -#: crm/fcrm/doctype/crm_notification/crm_notification.json -#: crm/fcrm/doctype/crm_product/crm_product.json -#: crm/fcrm/doctype/crm_telephony_agent/crm_telephony_agent.json -#: crm/fcrm/doctype/crm_twilio_settings/crm_twilio_settings.json -#: crm/fcrm/doctype/erpnext_crm_settings/erpnext_crm_settings.json -#: crm/fcrm/doctype/fcrm_settings/fcrm_settings.json -#: crm/fcrm/doctype/helpdesk_crm_settings/helpdesk_crm_settings.json +#. Option for the 'Role' (Select) field in PageType 'CRM Invitation' +#: crm/fcrm/pagetype/crm_dashboard/crm_dashboard.json +#: crm/fcrm/pagetype/crm_exotel_settings/crm_exotel_settings.json +#: crm/fcrm/pagetype/crm_fields_layout/crm_fields_layout.json +#: crm/fcrm/pagetype/crm_global_settings/crm_global_settings.json +#: crm/fcrm/pagetype/crm_invitation/crm_invitation.json +#: crm/fcrm/pagetype/crm_lead_source/crm_lead_source.json +#: crm/fcrm/pagetype/crm_lost_reason/crm_lost_reason.json +#: crm/fcrm/pagetype/crm_notification/crm_notification.json +#: crm/fcrm/pagetype/crm_product/crm_product.json +#: crm/fcrm/pagetype/crm_telephony_agent/crm_telephony_agent.json +#: crm/fcrm/pagetype/crm_twilio_settings/crm_twilio_settings.json +#: crm/fcrm/pagetype/erpnext_crm_settings/erpnext_crm_settings.json +#: crm/fcrm/pagetype/fcrm_settings/fcrm_settings.json +#: crm/fcrm/pagetype/helpdesk_crm_settings/helpdesk_crm_settings.json msgid "System Manager" msgstr "Administrador do Sistema" @@ -5308,8 +5308,8 @@ msgstr "" msgid "Take a note..." msgstr "" -#. Option for the 'Type' (Select) field in DocType 'CRM Notification' -#: crm/fcrm/doctype/crm_notification/crm_notification.json +#. Option for the 'Type' (Select) field in PageType 'CRM Notification' +#: crm/fcrm/pagetype/crm_notification/crm_notification.json #: frontend/src/components/Layouts/AppSidebar.vue:555 msgid "Task" msgstr "Tarefa" @@ -5327,8 +5327,8 @@ msgstr "" msgid "Telephony" msgstr "" -#. Label of the telephony_medium (Select) field in DocType 'CRM Call Log' -#: crm/fcrm/doctype/crm_call_log/crm_call_log.json +#. Label of the telephony_medium (Select) field in PageType 'CRM Call Log' +#: crm/fcrm/pagetype/crm_call_log/crm_call_log.json msgid "Telephony Medium" msgstr "" @@ -5364,27 +5364,27 @@ msgstr "" msgid "Template updated successfully" msgstr "" -#. Label of a shortcut in the Frappe CRM Workspace -#: crm/fcrm/workspace/frappe_crm/frappe_crm.json +#. Label of a shortcut in the Jingrow CRM Workspace +#: crm/fcrm/workspace/jingrow_crm/jingrow_crm.json msgid "Territories" msgstr "" -#. Label of the territory (Link) field in DocType 'CRM Deal' -#. Label of the territory (Link) field in DocType 'CRM Lead' -#. Label of the territory (Link) field in DocType 'CRM Organization' -#: crm/api/dashboard.py:1022 crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_lead/crm_lead.json -#: crm/fcrm/doctype/crm_organization/crm_organization.json +#. Label of the territory (Link) field in PageType 'CRM Deal' +#. Label of the territory (Link) field in PageType 'CRM Lead' +#. Label of the territory (Link) field in PageType 'CRM Organization' +#: crm/api/dashboard.py:1022 crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_lead/crm_lead.json +#: crm/fcrm/pagetype/crm_organization/crm_organization.json msgid "Territory" msgstr "Território" -#. Label of the territory_manager (Link) field in DocType 'CRM Territory' -#: crm/fcrm/doctype/crm_territory/crm_territory.json +#. Label of the territory_manager (Link) field in PageType 'CRM Territory' +#: crm/fcrm/pagetype/crm_territory/crm_territory.json msgid "Territory Manager" msgstr "" -#. Label of the territory_name (Data) field in DocType 'CRM Territory' -#: crm/fcrm/doctype/crm_territory/crm_territory.json +#. Label of the territory_name (Data) field in PageType 'CRM Territory' +#: crm/fcrm/pagetype/crm_territory/crm_territory.json msgid "Territory Name" msgstr "" @@ -5392,22 +5392,22 @@ msgstr "" msgid "Thanks" msgstr "" -#: crm/fcrm/doctype/crm_service_level_agreement/crm_service_level_agreement.py:46 +#: crm/fcrm/pagetype/crm_service_level_agreement/crm_service_level_agreement.py:46 msgid "The Condition '{0}' is invalid: {1}" msgstr "" -#. Description of the 'Exchange Rate' (Float) field in DocType 'CRM Deal' -#: crm/fcrm/doctype/crm_deal/crm_deal.json +#. Description of the 'Exchange Rate' (Float) field in PageType 'CRM Deal' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json msgid "The rate used to convert the deal’s currency to your crm's base currency (set in CRM Settings). It is set once when the currency is first added and doesn't change automatically." msgstr "" -#. Description of the 'Exchange Rate' (Float) field in DocType 'CRM +#. Description of the 'Exchange Rate' (Float) field in PageType 'CRM #. Organization' -#: crm/fcrm/doctype/crm_organization/crm_organization.json +#: crm/fcrm/pagetype/crm_organization/crm_organization.json msgid "The rate used to convert the organization’s currency to your crm's base currency (set in CRM Settings). It is set once when the currency is first added and doesn't change automatically." msgstr "" -#: crm/fcrm/doctype/crm_service_level_agreement/crm_service_level_agreement.js:14 +#: crm/fcrm/pagetype/crm_service_level_agreement/crm_service_level_agreement.js:14 msgid "There can only be one default priority in Priorities table" msgstr "" @@ -5444,14 +5444,14 @@ msgstr "" msgid "This will delete selected items and unlink linked items to it, are you sure?" msgstr "" -#: crm/fcrm/doctype/fcrm_settings/fcrm_settings.js:9 +#: crm/fcrm/pagetype/fcrm_settings/fcrm_settings.js:9 msgid "This will restore (if not exist) all the default statuses, custom fields and layouts. Delete & Restore will delete default layouts and then restore them." msgstr "" -#. Option for the 'Weekly Off' (Select) field in DocType 'CRM Holiday List' -#. Option for the 'Workday' (Select) field in DocType 'CRM Service Day' -#: crm/fcrm/doctype/crm_holiday_list/crm_holiday_list.json -#: crm/fcrm/doctype/crm_service_day/crm_service_day.json +#. Option for the 'Weekly Off' (Select) field in PageType 'CRM Holiday List' +#. Option for the 'Workday' (Select) field in PageType 'CRM Service Day' +#: crm/fcrm/pagetype/crm_holiday_list/crm_holiday_list.json +#: crm/fcrm/pagetype/crm_service_day/crm_service_day.json msgid "Thursday" msgstr "Quinta-feira" @@ -5463,18 +5463,18 @@ msgstr "" msgid "Timespan" msgstr "" -#. Label of the title (Data) field in DocType 'CRM Task' -#. Label of the title (Data) field in DocType 'FCRM Note' -#: crm/fcrm/doctype/crm_task/crm_task.json -#: crm/fcrm/doctype/fcrm_note/fcrm_note.json +#. Label of the title (Data) field in PageType 'CRM Task' +#. Label of the title (Data) field in PageType 'FCRM Note' +#: crm/fcrm/pagetype/crm_task/crm_task.json +#: crm/fcrm/pagetype/fcrm_note/fcrm_note.json #: frontend/src/components/Modals/EventModal.vue:43 #: frontend/src/components/Modals/NoteModal.vue:26 #: frontend/src/components/Modals/TaskModal.vue:25 msgid "Title" msgstr "Título" -#. Label of the title_field (Data) field in DocType 'CRM View Settings' -#: crm/fcrm/doctype/crm_view_settings/crm_view_settings.json +#. Label of the title_field (Data) field in PageType 'CRM View Settings' +#: crm/fcrm/pagetype/crm_view_settings/crm_view_settings.json #: frontend/src/components/Kanban/KanbanSettings.vue:29 msgid "Title Field" msgstr "Campo Título" @@ -5484,28 +5484,28 @@ msgstr "Campo Título" msgid "Title is required" msgstr "" -#. Label of the to (Data) field in DocType 'CRM Call Log' -#. Label of the to (Data) field in DocType 'CRM Status Change Log' -#: crm/fcrm/doctype/crm_call_log/crm_call_log.json -#: crm/fcrm/doctype/crm_status_change_log/crm_status_change_log.json +#. Label of the to (Data) field in PageType 'CRM Call Log' +#. Label of the to (Data) field in PageType 'CRM Status Change Log' +#: crm/fcrm/pagetype/crm_call_log/crm_call_log.json +#: crm/fcrm/pagetype/crm_status_change_log/crm_status_change_log.json #: frontend/src/components/Activities/EmailArea.vue:53 msgid "To" msgstr "Para" -#. Label of the to_date (Date) field in DocType 'CRM Holiday List' -#. Label of the to_date (Datetime) field in DocType 'CRM Status Change Log' -#: crm/fcrm/doctype/crm_holiday_list/crm_holiday_list.json -#: crm/fcrm/doctype/crm_status_change_log/crm_status_change_log.json +#. Label of the to_date (Date) field in PageType 'CRM Holiday List' +#. Label of the to_date (Datetime) field in PageType 'CRM Status Change Log' +#: crm/fcrm/pagetype/crm_holiday_list/crm_holiday_list.json +#: crm/fcrm/pagetype/crm_status_change_log/crm_status_change_log.json msgid "To Date" msgstr "Até a Data" -#. Label of the to_type (Data) field in DocType 'CRM Status Change Log' -#: crm/fcrm/doctype/crm_status_change_log/crm_status_change_log.json +#. Label of the to_type (Data) field in PageType 'CRM Status Change Log' +#: crm/fcrm/pagetype/crm_status_change_log/crm_status_change_log.json msgid "To Type" msgstr "" -#. Label of the to_user (Link) field in DocType 'CRM Notification' -#: crm/fcrm/doctype/crm_notification/crm_notification.json +#. Label of the to_user (Link) field in PageType 'CRM Notification' +#: crm/fcrm/pagetype/crm_notification/crm_notification.json msgid "To User" msgstr "Ao usuário" @@ -5517,8 +5517,8 @@ msgstr "" msgid "Today" msgstr "" -#. Option for the 'Status' (Select) field in DocType 'CRM Task' -#: crm/fcrm/doctype/crm_task/crm_task.json +#. Option for the 'Status' (Select) field in PageType 'CRM Task' +#: crm/fcrm/pagetype/crm_task/crm_task.json msgid "Todo" msgstr "" @@ -5535,22 +5535,22 @@ msgstr "" msgid "Took a call with John Doe and discussed the new project." msgstr "" -#. Label of the total (Currency) field in DocType 'CRM Deal' -#. Label of the total (Currency) field in DocType 'CRM Lead' -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_lead/crm_lead.json +#. Label of the total (Currency) field in PageType 'CRM Deal' +#. Label of the total (Currency) field in PageType 'CRM Lead' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_lead/crm_lead.json msgid "Total" msgstr "Total" -#. Label of the total_holidays (Int) field in DocType 'CRM Holiday List' -#: crm/fcrm/doctype/crm_holiday_list/crm_holiday_list.json +#. Label of the total_holidays (Int) field in PageType 'CRM Holiday List' +#: crm/fcrm/pagetype/crm_holiday_list/crm_holiday_list.json msgid "Total Holidays" msgstr "" -#. Description of the 'Net Total' (Currency) field in DocType 'CRM Deal' -#. Description of the 'Net Total' (Currency) field in DocType 'CRM Lead' -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_lead/crm_lead.json +#. Description of the 'Net Total' (Currency) field in PageType 'CRM Deal' +#. Description of the 'Net Total' (Currency) field in PageType 'CRM Lead' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_lead/crm_lead.json msgid "Total after discount" msgstr "" @@ -5571,10 +5571,10 @@ msgstr "" msgid "Total number of won deals based on its closure date" msgstr "" -#. Option for the 'Weekly Off' (Select) field in DocType 'CRM Holiday List' -#. Option for the 'Workday' (Select) field in DocType 'CRM Service Day' -#: crm/fcrm/doctype/crm_holiday_list/crm_holiday_list.json -#: crm/fcrm/doctype/crm_service_day/crm_service_day.json +#. Option for the 'Weekly Off' (Select) field in PageType 'CRM Holiday List' +#. Option for the 'Workday' (Select) field in PageType 'CRM Service Day' +#: crm/fcrm/pagetype/crm_holiday_list/crm_holiday_list.json +#: crm/fcrm/pagetype/crm_service_day/crm_service_day.json msgid "Tuesday" msgstr "Terça-feira" @@ -5582,30 +5582,30 @@ msgstr "Terça-feira" msgid "Turn into a group" msgstr "" -#. Label of the twiml_sid (Data) field in DocType 'CRM Twilio Settings' -#: crm/fcrm/doctype/crm_twilio_settings/crm_twilio_settings.json +#. Label of the twiml_sid (Data) field in PageType 'CRM Twilio Settings' +#: crm/fcrm/pagetype/crm_twilio_settings/crm_twilio_settings.json msgid "TwiML SID" msgstr "" -#. Option for the 'Telephony Medium' (Select) field in DocType 'CRM Call Log' -#. Label of the twilio (Check) field in DocType 'CRM Telephony Agent' -#. Option for the 'Default Medium' (Select) field in DocType 'CRM Telephony +#. Option for the 'Telephony Medium' (Select) field in PageType 'CRM Call Log' +#. Label of the twilio (Check) field in PageType 'CRM Telephony Agent' +#. Option for the 'Default Medium' (Select) field in PageType 'CRM Telephony #. Agent' -#: crm/fcrm/doctype/crm_call_log/crm_call_log.json -#: crm/fcrm/doctype/crm_telephony_agent/crm_telephony_agent.json +#: crm/fcrm/pagetype/crm_call_log/crm_call_log.json +#: crm/fcrm/pagetype/crm_telephony_agent/crm_telephony_agent.json #: frontend/src/components/Layouts/AppSidebar.vue:601 #: frontend/src/components/Settings/TelephonySettings.vue:40 #: frontend/src/components/Settings/TelephonySettings.vue:50 msgid "Twilio" msgstr "" -#: crm/fcrm/doctype/crm_twilio_settings/crm_twilio_settings.py:59 -#: crm/fcrm/doctype/crm_twilio_settings/crm_twilio_settings.py:60 +#: crm/fcrm/pagetype/crm_twilio_settings/crm_twilio_settings.py:59 +#: crm/fcrm/pagetype/crm_twilio_settings/crm_twilio_settings.py:60 msgid "Twilio API credential creation error." msgstr "" -#. Label of the twilio_number (Data) field in DocType 'CRM Telephony Agent' -#: crm/fcrm/doctype/crm_telephony_agent/crm_telephony_agent.json +#. Label of the twilio_number (Data) field in PageType 'CRM Telephony Agent' +#: crm/fcrm/pagetype/crm_telephony_agent/crm_telephony_agent.json msgid "Twilio Number" msgstr "" @@ -5617,20 +5617,20 @@ msgstr "" msgid "Twilio settings updated successfully" msgstr "" -#. Label of the type (Select) field in DocType 'CRM Call Log' -#. Label of the type (Select) field in DocType 'CRM Deal Status' -#. Label of the type (Select) field in DocType 'CRM Dropdown Item' -#. Label of the type (Select) field in DocType 'CRM Fields Layout' -#. Label of the type (Select) field in DocType 'CRM Global Settings' -#. Label of the type (Select) field in DocType 'CRM Notification' -#. Label of the type (Select) field in DocType 'CRM View Settings' -#: crm/fcrm/doctype/crm_call_log/crm_call_log.json -#: crm/fcrm/doctype/crm_deal_status/crm_deal_status.json -#: crm/fcrm/doctype/crm_dropdown_item/crm_dropdown_item.json -#: crm/fcrm/doctype/crm_fields_layout/crm_fields_layout.json -#: crm/fcrm/doctype/crm_global_settings/crm_global_settings.json -#: crm/fcrm/doctype/crm_notification/crm_notification.json -#: crm/fcrm/doctype/crm_view_settings/crm_view_settings.json +#. Label of the type (Select) field in PageType 'CRM Call Log' +#. Label of the type (Select) field in PageType 'CRM Deal Status' +#. Label of the type (Select) field in PageType 'CRM Dropdown Item' +#. Label of the type (Select) field in PageType 'CRM Fields Layout' +#. Label of the type (Select) field in PageType 'CRM Global Settings' +#. Label of the type (Select) field in PageType 'CRM Notification' +#. Label of the type (Select) field in PageType 'CRM View Settings' +#: crm/fcrm/pagetype/crm_call_log/crm_call_log.json +#: crm/fcrm/pagetype/crm_deal_status/crm_deal_status.json +#: crm/fcrm/pagetype/crm_dropdown_item/crm_dropdown_item.json +#: crm/fcrm/pagetype/crm_fields_layout/crm_fields_layout.json +#: crm/fcrm/pagetype/crm_global_settings/crm_global_settings.json +#: crm/fcrm/pagetype/crm_notification/crm_notification.json +#: crm/fcrm/pagetype/crm_view_settings/crm_view_settings.json msgid "Type" msgstr "Tipo" @@ -5772,12 +5772,12 @@ msgstr "" msgid "Uploading {0}%" msgstr "" -#. Label of the user (Link) field in DocType 'CRM Dashboard' -#. Label of the user (Link) field in DocType 'CRM Telephony Agent' -#. Label of the user (Link) field in DocType 'CRM View Settings' -#: crm/fcrm/doctype/crm_dashboard/crm_dashboard.json -#: crm/fcrm/doctype/crm_telephony_agent/crm_telephony_agent.json -#: crm/fcrm/doctype/crm_view_settings/crm_view_settings.json +#. Label of the user (Link) field in PageType 'CRM Dashboard' +#. Label of the user (Link) field in PageType 'CRM Telephony Agent' +#. Label of the user (Link) field in PageType 'CRM View Settings' +#: crm/fcrm/pagetype/crm_dashboard/crm_dashboard.json +#: crm/fcrm/pagetype/crm_telephony_agent/crm_telephony_agent.json +#: crm/fcrm/pagetype/crm_view_settings/crm_view_settings.json msgid "User" msgstr "Usuário" @@ -5785,8 +5785,8 @@ msgstr "Usuário" msgid "User Management" msgstr "" -#. Label of the user_name (Data) field in DocType 'CRM Telephony Agent' -#: crm/fcrm/doctype/crm_telephony_agent/crm_telephony_agent.json +#. Label of the user_name (Data) field in PageType 'CRM Telephony Agent' +#: crm/fcrm/pagetype/crm_telephony_agent/crm_telephony_agent.json msgid "User Name" msgstr "Nome de usuário" @@ -5808,9 +5808,9 @@ msgstr "" msgid "Users are required" msgstr "" -#. Label of the section_break_nevd (Section Break) field in DocType 'CRM +#. Label of the section_break_nevd (Section Break) field in PageType 'CRM #. Service Level Agreement' -#: crm/fcrm/doctype/crm_service_level_agreement/crm_service_level_agreement.json +#: crm/fcrm/pagetype/crm_service_level_agreement/crm_service_level_agreement.json msgid "Validity" msgstr "Validade" @@ -5834,33 +5834,33 @@ msgstr "Visualizações" msgid "Web form" msgstr "" -#. Label of the webhook_verify_token (Data) field in DocType 'CRM Exotel +#. Label of the webhook_verify_token (Data) field in PageType 'CRM Exotel #. Settings' -#: crm/fcrm/doctype/crm_exotel_settings/crm_exotel_settings.json +#: crm/fcrm/pagetype/crm_exotel_settings/crm_exotel_settings.json msgid "Webhook Verify Token" msgstr "" -#. Label of the website (Data) field in DocType 'CRM Deal' -#. Label of the website (Data) field in DocType 'CRM Lead' -#. Label of the website (Data) field in DocType 'CRM Organization' -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_lead/crm_lead.json -#: crm/fcrm/doctype/crm_organization/crm_organization.json +#. Label of the website (Data) field in PageType 'CRM Deal' +#. Label of the website (Data) field in PageType 'CRM Lead' +#. Label of the website (Data) field in PageType 'CRM Organization' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_lead/crm_lead.json +#: crm/fcrm/pagetype/crm_organization/crm_organization.json #: frontend/src/components/Modals/AboutModal.vue:52 msgid "Website" msgstr "Site" -#. Option for the 'Weekly Off' (Select) field in DocType 'CRM Holiday List' -#. Option for the 'Workday' (Select) field in DocType 'CRM Service Day' -#: crm/fcrm/doctype/crm_holiday_list/crm_holiday_list.json -#: crm/fcrm/doctype/crm_service_day/crm_service_day.json +#. Option for the 'Weekly Off' (Select) field in PageType 'CRM Holiday List' +#. Option for the 'Workday' (Select) field in PageType 'CRM Service Day' +#: crm/fcrm/pagetype/crm_holiday_list/crm_holiday_list.json +#: crm/fcrm/pagetype/crm_service_day/crm_service_day.json msgid "Wednesday" msgstr "Quarta-feira" -#. Label of the weekly_off (Check) field in DocType 'CRM Holiday' -#. Label of the weekly_off (Select) field in DocType 'CRM Holiday List' -#: crm/fcrm/doctype/crm_holiday/crm_holiday.json -#: crm/fcrm/doctype/crm_holiday_list/crm_holiday_list.json +#. Label of the weekly_off (Check) field in PageType 'CRM Holiday' +#. Label of the weekly_off (Select) field in PageType 'CRM Holiday List' +#: crm/fcrm/pagetype/crm_holiday/crm_holiday.json +#: crm/fcrm/pagetype/crm_holiday_list/crm_holiday_list.json msgid "Weekly Off" msgstr "" @@ -5868,7 +5868,7 @@ msgstr "" msgid "Welcome Message" msgstr "" -#: crm/fcrm/doctype/helpdesk_crm_settings/helpdesk_crm_settings.py:155 +#: crm/fcrm/pagetype/helpdesk_crm_settings/helpdesk_crm_settings.py:155 msgid "Welcome to Helpdesk" msgstr "" @@ -5876,8 +5876,8 @@ msgstr "" msgid "Welcome {0}, lets add your first lead" msgstr "" -#. Option for the 'Type' (Select) field in DocType 'CRM Notification' -#: crm/fcrm/doctype/crm_notification/crm_notification.json +#. Option for the 'Type' (Select) field in PageType 'CRM Notification' +#: crm/fcrm/pagetype/crm_notification/crm_notification.json #: frontend/src/components/Layouts/AppSidebar.vue:603 #: frontend/src/components/Settings/Settings.vue:190 #: frontend/src/pages/Deal.vue:572 frontend/src/pages/Lead.vue:429 @@ -5902,8 +5902,8 @@ msgstr "Largura" msgid "Width can be in number, pixel or rem (eg. 3, 30px, 10rem)" msgstr "" -#. Option for the 'Type' (Select) field in DocType 'CRM Deal Status' -#: crm/fcrm/doctype/crm_deal_status/crm_deal_status.json +#. Option for the 'Type' (Select) field in PageType 'CRM Deal Status' +#: crm/fcrm/pagetype/crm_deal_status/crm_deal_status.json msgid "Won" msgstr "" @@ -5912,16 +5912,16 @@ msgstr "" msgid "Won deals" msgstr "" -#. Label of the workday (Select) field in DocType 'CRM Service Day' -#: crm/fcrm/doctype/crm_service_day/crm_service_day.json +#. Label of the workday (Select) field in PageType 'CRM Service Day' +#: crm/fcrm/pagetype/crm_service_day/crm_service_day.json msgid "Workday" msgstr "" -#. Label of the section_break_rmgo (Section Break) field in DocType 'CRM +#. Label of the section_break_rmgo (Section Break) field in PageType 'CRM #. Service Level Agreement' -#. Label of the working_hours (Table) field in DocType 'CRM Service Level +#. Label of the working_hours (Table) field in PageType 'CRM Service Level #. Agreement' -#: crm/fcrm/doctype/crm_service_level_agreement/crm_service_level_agreement.json +#: crm/fcrm/pagetype/crm_service_level_agreement/crm_service_level_agreement.json msgid "Working Hours" msgstr "Horas de Trabalho" @@ -5967,7 +5967,7 @@ msgstr "" msgid "You do not have permission to access this document" msgstr "" -#: crm/fcrm/doctype/crm_form_script/crm_form_script.py:24 +#: crm/fcrm/pagetype/crm_form_script/crm_form_script.py:24 msgid "You need to be in developer mode to edit a Standard Form Script" msgstr "" @@ -5995,10 +5995,10 @@ msgstr "" msgid "added a" msgstr "" -#. Option for the 'Color' (Select) field in DocType 'CRM Deal Status' -#. Option for the 'Color' (Select) field in DocType 'CRM Lead Status' -#: crm/fcrm/doctype/crm_deal_status/crm_deal_status.json -#: crm/fcrm/doctype/crm_lead_status/crm_lead_status.json +#. Option for the 'Color' (Select) field in PageType 'CRM Deal Status' +#. Option for the 'Color' (Select) field in PageType 'CRM Lead Status' +#: crm/fcrm/pagetype/crm_deal_status/crm_deal_status.json +#: crm/fcrm/pagetype/crm_lead_status/crm_lead_status.json msgid "amber" msgstr "" @@ -6010,17 +6010,17 @@ msgstr "" msgid "assigned a {0} {1} to you" msgstr "" -#. Option for the 'Color' (Select) field in DocType 'CRM Deal Status' -#. Option for the 'Color' (Select) field in DocType 'CRM Lead Status' -#: crm/fcrm/doctype/crm_deal_status/crm_deal_status.json -#: crm/fcrm/doctype/crm_lead_status/crm_lead_status.json +#. Option for the 'Color' (Select) field in PageType 'CRM Deal Status' +#. Option for the 'Color' (Select) field in PageType 'CRM Lead Status' +#: crm/fcrm/pagetype/crm_deal_status/crm_deal_status.json +#: crm/fcrm/pagetype/crm_lead_status/crm_lead_status.json msgid "black" msgstr "preto" -#. Option for the 'Color' (Select) field in DocType 'CRM Deal Status' -#. Option for the 'Color' (Select) field in DocType 'CRM Lead Status' -#: crm/fcrm/doctype/crm_deal_status/crm_deal_status.json -#: crm/fcrm/doctype/crm_lead_status/crm_lead_status.json +#. Option for the 'Color' (Select) field in PageType 'CRM Deal Status' +#. Option for the 'Color' (Select) field in PageType 'CRM Lead Status' +#: crm/fcrm/pagetype/crm_deal_status/crm_deal_status.json +#: crm/fcrm/pagetype/crm_lead_status/crm_lead_status.json msgid "blue" msgstr "azul" @@ -6037,10 +6037,10 @@ msgstr "" msgid "condition" msgstr "condição" -#. Option for the 'Color' (Select) field in DocType 'CRM Deal Status' -#. Option for the 'Color' (Select) field in DocType 'CRM Lead Status' -#: crm/fcrm/doctype/crm_deal_status/crm_deal_status.json -#: crm/fcrm/doctype/crm_lead_status/crm_lead_status.json +#. Option for the 'Color' (Select) field in PageType 'CRM Deal Status' +#. Option for the 'Color' (Select) field in PageType 'CRM Lead Status' +#: crm/fcrm/pagetype/crm_deal_status/crm_deal_status.json +#: crm/fcrm/pagetype/crm_lead_status/crm_lead_status.json msgid "cyan" msgstr "cyan" @@ -6059,33 +6059,33 @@ msgstr "mesa" msgid "email already exists" msgstr "" -#. Option for the 'Service Provider' (Select) field in DocType 'FCRM Settings' -#: crm/fcrm/doctype/fcrm_settings/fcrm_settings.json +#. Option for the 'Service Provider' (Select) field in PageType 'FCRM Settings' +#: crm/fcrm/pagetype/fcrm_settings/fcrm_settings.json #: frontend/src/components/Settings/CurrencySettings.vue:106 msgid "exchangerate.host" msgstr "" -#. Option for the 'Service Provider' (Select) field in DocType 'FCRM Settings' -#: crm/fcrm/doctype/fcrm_settings/fcrm_settings.json +#. Option for the 'Service Provider' (Select) field in PageType 'FCRM Settings' +#: crm/fcrm/pagetype/fcrm_settings/fcrm_settings.json msgid "frankfurter.app" msgstr "" -#. Option for the 'Color' (Select) field in DocType 'CRM Deal Status' -#. Option for the 'Color' (Select) field in DocType 'CRM Lead Status' -#: crm/fcrm/doctype/crm_deal_status/crm_deal_status.json -#: crm/fcrm/doctype/crm_lead_status/crm_lead_status.json +#. Option for the 'Color' (Select) field in PageType 'CRM Deal Status' +#. Option for the 'Color' (Select) field in PageType 'CRM Lead Status' +#: crm/fcrm/pagetype/crm_deal_status/crm_deal_status.json +#: crm/fcrm/pagetype/crm_lead_status/crm_lead_status.json msgid "gray" msgstr "cinza" -#. Option for the 'Color' (Select) field in DocType 'CRM Deal Status' -#. Option for the 'Color' (Select) field in DocType 'CRM Lead Status' -#: crm/fcrm/doctype/crm_deal_status/crm_deal_status.json -#: crm/fcrm/doctype/crm_lead_status/crm_lead_status.json +#. Option for the 'Color' (Select) field in PageType 'CRM Deal Status' +#. Option for the 'Color' (Select) field in PageType 'CRM Lead Status' +#: crm/fcrm/pagetype/crm_deal_status/crm_deal_status.json +#: crm/fcrm/pagetype/crm_lead_status/crm_lead_status.json msgid "green" msgstr "verde" -#. Option for the 'Type' (Select) field in DocType 'CRM View Settings' -#: crm/fcrm/doctype/crm_view_settings/crm_view_settings.json +#. Option for the 'Type' (Select) field in PageType 'CRM View Settings' +#: crm/fcrm/pagetype/crm_view_settings/crm_view_settings.json msgid "group_by" msgstr "" @@ -6170,12 +6170,12 @@ msgstr "" msgid "just now" msgstr "" -#. Option for the 'Type' (Select) field in DocType 'CRM View Settings' -#: crm/fcrm/doctype/crm_view_settings/crm_view_settings.json +#. Option for the 'Type' (Select) field in PageType 'CRM View Settings' +#: crm/fcrm/pagetype/crm_view_settings/crm_view_settings.json msgid "kanban" msgstr "kanban" -#: crm/api/doc.py:40 crm/api/doc.py:158 crm/api/doc.py:503 +#: crm/api/pg.py:40 crm/api/pg.py:158 crm/api/pg.py:503 msgid "label" msgstr "rótulo" @@ -6184,8 +6184,8 @@ msgstr "rótulo" msgid "leads" msgstr "leads" -#. Option for the 'Type' (Select) field in DocType 'CRM View Settings' -#: crm/fcrm/doctype/crm_view_settings/crm_view_settings.json +#. Option for the 'Type' (Select) field in PageType 'CRM View Settings' +#: crm/fcrm/pagetype/crm_view_settings/crm_view_settings.json msgid "list" msgstr "" @@ -6206,17 +6206,17 @@ msgstr "" msgid "operator" msgstr "operador" -#. Option for the 'Color' (Select) field in DocType 'CRM Deal Status' -#. Option for the 'Color' (Select) field in DocType 'CRM Lead Status' -#: crm/fcrm/doctype/crm_deal_status/crm_deal_status.json -#: crm/fcrm/doctype/crm_lead_status/crm_lead_status.json +#. Option for the 'Color' (Select) field in PageType 'CRM Deal Status' +#. Option for the 'Color' (Select) field in PageType 'CRM Lead Status' +#: crm/fcrm/pagetype/crm_deal_status/crm_deal_status.json +#: crm/fcrm/pagetype/crm_lead_status/crm_lead_status.json msgid "orange" msgstr "laranja" -#. Option for the 'Color' (Select) field in DocType 'CRM Deal Status' -#. Option for the 'Color' (Select) field in DocType 'CRM Lead Status' -#: crm/fcrm/doctype/crm_deal_status/crm_deal_status.json -#: crm/fcrm/doctype/crm_lead_status/crm_lead_status.json +#. Option for the 'Color' (Select) field in PageType 'CRM Deal Status' +#. Option for the 'Color' (Select) field in PageType 'CRM Lead Status' +#: crm/fcrm/pagetype/crm_deal_status/crm_deal_status.json +#: crm/fcrm/pagetype/crm_lead_status/crm_lead_status.json msgid "pink" msgstr "rosa" @@ -6232,10 +6232,10 @@ msgstr "privado" msgid "public" msgstr "público" -#. Option for the 'Color' (Select) field in DocType 'CRM Deal Status' -#. Option for the 'Color' (Select) field in DocType 'CRM Lead Status' -#: crm/fcrm/doctype/crm_deal_status/crm_deal_status.json -#: crm/fcrm/doctype/crm_lead_status/crm_lead_status.json +#. Option for the 'Color' (Select) field in PageType 'CRM Deal Status' +#. Option for the 'Color' (Select) field in PageType 'CRM Lead Status' +#: crm/fcrm/pagetype/crm_deal_status/crm_deal_status.json +#: crm/fcrm/pagetype/crm_lead_status/crm_lead_status.json msgid "purple" msgstr "roxo" @@ -6243,17 +6243,17 @@ msgstr "roxo" msgid "received a whatsapp message in {0}" msgstr "" -#. Option for the 'Color' (Select) field in DocType 'CRM Deal Status' -#. Option for the 'Color' (Select) field in DocType 'CRM Lead Status' -#: crm/fcrm/doctype/crm_deal_status/crm_deal_status.json -#: crm/fcrm/doctype/crm_lead_status/crm_lead_status.json +#. Option for the 'Color' (Select) field in PageType 'CRM Deal Status' +#. Option for the 'Color' (Select) field in PageType 'CRM Lead Status' +#: crm/fcrm/pagetype/crm_deal_status/crm_deal_status.json +#: crm/fcrm/pagetype/crm_lead_status/crm_lead_status.json msgid "red" msgstr "vermelho" -#. Option for the 'Color' (Select) field in DocType 'CRM Deal Status' -#. Option for the 'Color' (Select) field in DocType 'CRM Lead Status' -#: crm/fcrm/doctype/crm_deal_status/crm_deal_status.json -#: crm/fcrm/doctype/crm_lead_status/crm_lead_status.json +#. Option for the 'Color' (Select) field in PageType 'CRM Deal Status' +#. Option for the 'Color' (Select) field in PageType 'CRM Lead Status' +#: crm/fcrm/pagetype/crm_deal_status/crm_deal_status.json +#: crm/fcrm/pagetype/crm_lead_status/crm_lead_status.json msgid "teal" msgstr "" @@ -6266,10 +6266,10 @@ msgstr "para" msgid "tomorrow" msgstr "amanhã" -#. Option for the 'Color' (Select) field in DocType 'CRM Deal Status' -#. Option for the 'Color' (Select) field in DocType 'CRM Lead Status' -#: crm/fcrm/doctype/crm_deal_status/crm_deal_status.json -#: crm/fcrm/doctype/crm_lead_status/crm_lead_status.json +#. Option for the 'Color' (Select) field in PageType 'CRM Deal Status' +#. Option for the 'Color' (Select) field in PageType 'CRM Lead Status' +#: crm/fcrm/pagetype/crm_deal_status/crm_deal_status.json +#: crm/fcrm/pagetype/crm_lead_status/crm_lead_status.json msgid "violet" msgstr "" @@ -6278,10 +6278,10 @@ msgstr "" msgid "which are not compatible with this UI, you will need to recreate the conditions here if you want to manage and add new conditions from this UI." msgstr "" -#. Option for the 'Color' (Select) field in DocType 'CRM Deal Status' -#. Option for the 'Color' (Select) field in DocType 'CRM Lead Status' -#: crm/fcrm/doctype/crm_deal_status/crm_deal_status.json -#: crm/fcrm/doctype/crm_lead_status/crm_lead_status.json +#. Option for the 'Color' (Select) field in PageType 'CRM Deal Status' +#. Option for the 'Color' (Select) field in PageType 'CRM Lead Status' +#: crm/fcrm/pagetype/crm_deal_status/crm_deal_status.json +#: crm/fcrm/pagetype/crm_lead_status/crm_lead_status.json msgid "yellow" msgstr "amarelo" @@ -6379,7 +6379,7 @@ msgid "⚠️ Method \"{0}\" not found in class." msgstr "" #: frontend/src/data/script.js:83 -msgid "⚠️ No class found for doctype: {0}, it is mandatory to have a class for the parent doctype. it can be empty, but it should be present." +msgid "⚠️ No class found for pagetype: {0}, it is mandatory to have a class for the parent pagetype. it can be empty, but it should be present." msgstr "" #: frontend/src/data/script.js:180 diff --git a/crm/locale/ru.po b/crm/locale/ru.po index a1a57bf4..c7178d97 100644 --- a/crm/locale/ru.po +++ b/crm/locale/ru.po @@ -1,6 +1,6 @@ msgid "" msgstr "" -"Project-Id-Version: frappe\n" +"Project-Id-Version: jingrow\n" "Report-Msgid-Bugs-To: shariq@jingrow.com\n" "POT-Creation-Date: 2025-09-21 09:35+0000\n" "PO-Revision-Date: 2025-09-22 20:42\n" @@ -11,10 +11,10 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Generated-By: Babel 2.16.0\n" "Plural-Forms: nplurals=4; plural=((n%10==1 && n%100!=11) ? 0 : ((n%10 >= 2 && n%10 <=4 && (n%100 < 12 || n%100 > 14)) ? 1 : ((n%10 == 0 || (n%10 >= 5 && n%10 <=9)) || (n%100 >= 11 && n%100 <= 14)) ? 2 : 3));\n" -"X-Crowdin-Project: frappe\n" +"X-Crowdin-Project: jingrow\n" "X-Crowdin-Project-ID: 639578\n" "X-Crowdin-Language: ru\n" -"X-Crowdin-File: /[frappe.crm] develop/crm/locale/main.pot\n" +"X-Crowdin-File: /[jingrow.crm] develop/crm/locale/main.pot\n" "X-Crowdin-File-ID: 97\n" "Language: ru_RU\n" @@ -55,73 +55,73 @@ msgstr "" msgid "1 year ago" msgstr "" -#. Option for the 'No. of Employees' (Select) field in DocType 'CRM Deal' -#. Option for the 'No. of Employees' (Select) field in DocType 'CRM Lead' -#. Option for the 'No. of Employees' (Select) field in DocType 'CRM +#. Option for the 'No. of Employees' (Select) field in PageType 'CRM Deal' +#. Option for the 'No. of Employees' (Select) field in PageType 'CRM Lead' +#. Option for the 'No. of Employees' (Select) field in PageType 'CRM #. Organization' -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_lead/crm_lead.json -#: crm/fcrm/doctype/crm_organization/crm_organization.json +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_lead/crm_lead.json +#: crm/fcrm/pagetype/crm_organization/crm_organization.json msgid "1-10" msgstr "" -#. Option for the 'No. of Employees' (Select) field in DocType 'CRM Deal' -#. Option for the 'No. of Employees' (Select) field in DocType 'CRM Lead' -#. Option for the 'No. of Employees' (Select) field in DocType 'CRM +#. Option for the 'No. of Employees' (Select) field in PageType 'CRM Deal' +#. Option for the 'No. of Employees' (Select) field in PageType 'CRM Lead' +#. Option for the 'No. of Employees' (Select) field in PageType 'CRM #. Organization' -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_lead/crm_lead.json -#: crm/fcrm/doctype/crm_organization/crm_organization.json +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_lead/crm_lead.json +#: crm/fcrm/pagetype/crm_organization/crm_organization.json msgid "1000+" msgstr "" -#. Option for the 'No. of Employees' (Select) field in DocType 'CRM Deal' -#. Option for the 'No. of Employees' (Select) field in DocType 'CRM Lead' -#. Option for the 'No. of Employees' (Select) field in DocType 'CRM +#. Option for the 'No. of Employees' (Select) field in PageType 'CRM Deal' +#. Option for the 'No. of Employees' (Select) field in PageType 'CRM Lead' +#. Option for the 'No. of Employees' (Select) field in PageType 'CRM #. Organization' -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_lead/crm_lead.json -#: crm/fcrm/doctype/crm_organization/crm_organization.json +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_lead/crm_lead.json +#: crm/fcrm/pagetype/crm_organization/crm_organization.json msgid "11-50" msgstr "" -#. Option for the 'No. of Employees' (Select) field in DocType 'CRM Deal' -#. Option for the 'No. of Employees' (Select) field in DocType 'CRM Lead' -#. Option for the 'No. of Employees' (Select) field in DocType 'CRM +#. Option for the 'No. of Employees' (Select) field in PageType 'CRM Deal' +#. Option for the 'No. of Employees' (Select) field in PageType 'CRM Lead' +#. Option for the 'No. of Employees' (Select) field in PageType 'CRM #. Organization' -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_lead/crm_lead.json -#: crm/fcrm/doctype/crm_organization/crm_organization.json +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_lead/crm_lead.json +#: crm/fcrm/pagetype/crm_organization/crm_organization.json msgid "201-500" msgstr "" -#. Option for the 'No. of Employees' (Select) field in DocType 'CRM Deal' -#. Option for the 'No. of Employees' (Select) field in DocType 'CRM Lead' -#. Option for the 'No. of Employees' (Select) field in DocType 'CRM +#. Option for the 'No. of Employees' (Select) field in PageType 'CRM Deal' +#. Option for the 'No. of Employees' (Select) field in PageType 'CRM Lead' +#. Option for the 'No. of Employees' (Select) field in PageType 'CRM #. Organization' -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_lead/crm_lead.json -#: crm/fcrm/doctype/crm_organization/crm_organization.json +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_lead/crm_lead.json +#: crm/fcrm/pagetype/crm_organization/crm_organization.json msgid "501-1000" msgstr "" -#. Option for the 'No. of Employees' (Select) field in DocType 'CRM Deal' -#. Option for the 'No. of Employees' (Select) field in DocType 'CRM Lead' -#. Option for the 'No. of Employees' (Select) field in DocType 'CRM +#. Option for the 'No. of Employees' (Select) field in PageType 'CRM Deal' +#. Option for the 'No. of Employees' (Select) field in PageType 'CRM Lead' +#. Option for the 'No. of Employees' (Select) field in PageType 'CRM #. Organization' -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_lead/crm_lead.json -#: crm/fcrm/doctype/crm_organization/crm_organization.json +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_lead/crm_lead.json +#: crm/fcrm/pagetype/crm_organization/crm_organization.json msgid "51-200" msgstr "" -#. Paragraph text in the Frappe CRM Workspace -#: crm/fcrm/workspace/frappe_crm/frappe_crm.json +#. Paragraph text in the Jingrow CRM Workspace +#: crm/fcrm/workspace/jingrow_crm/jingrow_crm.json msgid "META" msgstr "" -#. Paragraph text in the Frappe CRM Workspace -#: crm/fcrm/workspace/frappe_crm/frappe_crm.json +#. Paragraph text in the Jingrow CRM Workspace +#: crm/fcrm/workspace/jingrow_crm/jingrow_crm.json msgid "SHORTCUTS" msgstr "" @@ -130,8 +130,8 @@ msgstr "" msgid "

Dear {{ lead_name }},

\\n\\n

This is a reminder for the payment of {{ grand_total }}.

\\n\\n

Thanks,

\\n

Frappé

" msgstr "" -#. Header text in the Frappe CRM Workspace -#: crm/fcrm/workspace/frappe_crm/frappe_crm.json +#. Header text in the Jingrow CRM Workspace +#: crm/fcrm/workspace/jingrow_crm/jingrow_crm.json msgid "PORTAL" msgstr "" @@ -139,7 +139,7 @@ msgstr "" msgid "@John, can you please check this?" msgstr "" -#: crm/fcrm/doctype/crm_lead/crm_lead.py:56 +#: crm/fcrm/pagetype/crm_lead/crm_lead.py:56 msgid "A Lead requires either a person's name or an organization's name" msgstr "" @@ -147,14 +147,14 @@ msgstr "" msgid "A new account has been created for you at {0}" msgstr "" -#. Label of the api_key (Data) field in DocType 'CRM Exotel Settings' -#. Label of the api_key (Data) field in DocType 'CRM Twilio Settings' -#. Label of the api_key (Data) field in DocType 'ERPNext CRM Settings' -#. Label of the api_key (Data) field in DocType 'Helpdesk CRM Settings' -#: crm/fcrm/doctype/crm_exotel_settings/crm_exotel_settings.json -#: crm/fcrm/doctype/crm_twilio_settings/crm_twilio_settings.json -#: crm/fcrm/doctype/erpnext_crm_settings/erpnext_crm_settings.json -#: crm/fcrm/doctype/helpdesk_crm_settings/helpdesk_crm_settings.json +#. Label of the api_key (Data) field in PageType 'CRM Exotel Settings' +#. Label of the api_key (Data) field in PageType 'CRM Twilio Settings' +#. Label of the api_key (Data) field in PageType 'ERPNext CRM Settings' +#. Label of the api_key (Data) field in PageType 'Helpdesk CRM Settings' +#: crm/fcrm/pagetype/crm_exotel_settings/crm_exotel_settings.json +#: crm/fcrm/pagetype/crm_twilio_settings/crm_twilio_settings.json +#: crm/fcrm/pagetype/erpnext_crm_settings/erpnext_crm_settings.json +#: crm/fcrm/pagetype/helpdesk_crm_settings/helpdesk_crm_settings.json msgid "API Key" msgstr "Ключ API" @@ -162,17 +162,17 @@ msgstr "Ключ API" msgid "API Key is required" msgstr "" -#. Label of the api_secret (Password) field in DocType 'CRM Twilio Settings' -#. Label of the api_secret (Password) field in DocType 'ERPNext CRM Settings' -#. Label of the api_secret (Password) field in DocType 'Helpdesk CRM Settings' -#: crm/fcrm/doctype/crm_twilio_settings/crm_twilio_settings.json -#: crm/fcrm/doctype/erpnext_crm_settings/erpnext_crm_settings.json -#: crm/fcrm/doctype/helpdesk_crm_settings/helpdesk_crm_settings.json +#. Label of the api_secret (Password) field in PageType 'CRM Twilio Settings' +#. Label of the api_secret (Password) field in PageType 'ERPNext CRM Settings' +#. Label of the api_secret (Password) field in PageType 'Helpdesk CRM Settings' +#: crm/fcrm/pagetype/crm_twilio_settings/crm_twilio_settings.json +#: crm/fcrm/pagetype/erpnext_crm_settings/erpnext_crm_settings.json +#: crm/fcrm/pagetype/helpdesk_crm_settings/helpdesk_crm_settings.json msgid "API Secret" msgstr "Секретный ключ API" -#. Label of the api_token (Password) field in DocType 'CRM Exotel Settings' -#: crm/fcrm/doctype/crm_exotel_settings/crm_exotel_settings.json +#. Label of the api_token (Password) field in PageType 'CRM Exotel Settings' +#: crm/fcrm/pagetype/crm_exotel_settings/crm_exotel_settings.json msgid "API Token" msgstr "" @@ -180,7 +180,7 @@ msgstr "" msgid "Accept" msgstr "" -#: crm/fcrm/doctype/crm_invitation/crm_invitation.js:7 +#: crm/fcrm/pagetype/crm_invitation/crm_invitation.js:7 msgid "Accept Invitation" msgstr "" @@ -188,22 +188,22 @@ msgstr "" msgid "Accept call" msgstr "" -#. Option for the 'Status' (Select) field in DocType 'CRM Invitation' -#: crm/fcrm/doctype/crm_invitation/crm_invitation.json +#. Option for the 'Status' (Select) field in PageType 'CRM Invitation' +#: crm/fcrm/pagetype/crm_invitation/crm_invitation.json msgid "Accepted" msgstr "" -#. Label of the accepted_at (Datetime) field in DocType 'CRM Invitation' -#: crm/fcrm/doctype/crm_invitation/crm_invitation.json +#. Label of the accepted_at (Datetime) field in PageType 'CRM Invitation' +#: crm/fcrm/pagetype/crm_invitation/crm_invitation.json msgid "Accepted At" msgstr "" -#. Label of the access_key (Data) field in DocType 'FCRM Settings' -#: crm/fcrm/doctype/fcrm_settings/fcrm_settings.json +#. Label of the access_key (Data) field in PageType 'FCRM Settings' +#: crm/fcrm/pagetype/fcrm_settings/fcrm_settings.json msgid "Access Key" msgstr "" -#: crm/fcrm/doctype/fcrm_settings/fcrm_settings.py:156 +#: crm/fcrm/pagetype/fcrm_settings/fcrm_settings.py:156 msgid "Access Key is required for Service Provider: {0}" msgstr "" @@ -219,10 +219,10 @@ msgstr "" msgid "Account Name" msgstr "" -#. Label of the account_sid (Data) field in DocType 'CRM Exotel Settings' -#. Label of the account_sid (Data) field in DocType 'CRM Twilio Settings' -#: crm/fcrm/doctype/crm_exotel_settings/crm_exotel_settings.json -#: crm/fcrm/doctype/crm_twilio_settings/crm_twilio_settings.json +#. Label of the account_sid (Data) field in PageType 'CRM Exotel Settings' +#. Label of the account_sid (Data) field in PageType 'CRM Twilio Settings' +#: crm/fcrm/pagetype/crm_exotel_settings/crm_exotel_settings.json +#: crm/fcrm/pagetype/crm_twilio_settings/crm_twilio_settings.json msgid "Account SID" msgstr "" @@ -296,9 +296,9 @@ msgstr "" msgid "Add Tab" msgstr "" -#. Label of the add_weekly_holidays_section (Section Break) field in DocType +#. Label of the add_weekly_holidays_section (Section Break) field in PageType #. 'CRM Holiday List' -#: crm/fcrm/doctype/crm_holiday_list/crm_holiday_list.json +#: crm/fcrm/pagetype/crm_holiday_list/crm_holiday_list.json msgid "Add Weekly Holidays" msgstr "" @@ -363,8 +363,8 @@ msgstr "" msgid "Add sample data" msgstr "" -#. Description of the 'Icon' (Code) field in DocType 'CRM Dropdown Item' -#: crm/fcrm/doctype/crm_dropdown_item/crm_dropdown_item.json +#. Description of the 'Icon' (Code) field in PageType 'CRM Dropdown Item' +#: crm/fcrm/pagetype/crm_dropdown_item/crm_dropdown_item.json msgid "Add svg code or use feather icons e.g 'settings'" msgstr "" @@ -372,8 +372,8 @@ msgstr "" msgid "Add task" msgstr "" -#. Label of the add_to_holidays (Button) field in DocType 'CRM Holiday List' -#: crm/fcrm/doctype/crm_holiday_list/crm_holiday_list.json +#. Label of the add_to_holidays (Button) field in PageType 'CRM Holiday List' +#: crm/fcrm/pagetype/crm_holiday_list/crm_holiday_list.json msgid "Add to Holidays" msgstr "" @@ -385,8 +385,8 @@ msgstr "" msgid "Add, edit, and manage email templates for various CRM communications" msgstr "" -#. Label of the address (Link) field in DocType 'CRM Organization' -#: crm/fcrm/doctype/crm_organization/crm_organization.json +#. Label of the address (Link) field in PageType 'CRM Organization' +#: crm/fcrm/pagetype/crm_organization/crm_organization.json msgid "Address" msgstr "" @@ -406,14 +406,14 @@ msgid "Agent is unavailable to take the call, please call after some time." msgstr "" #. Name of a role -#: crm/fcrm/doctype/crm_exotel_settings/crm_exotel_settings.json -#: crm/fcrm/doctype/crm_fields_layout/crm_fields_layout.json -#: crm/fcrm/doctype/crm_form_script/crm_form_script.json -#: crm/fcrm/doctype/crm_industry/crm_industry.json -#: crm/fcrm/doctype/crm_lead/crm_lead.json -#: crm/fcrm/doctype/crm_lead_source/crm_lead_source.json -#: crm/fcrm/doctype/crm_lead_status/crm_lead_status.json -#: crm/fcrm/doctype/fcrm_settings/fcrm_settings.json +#: crm/fcrm/pagetype/crm_exotel_settings/crm_exotel_settings.json +#: crm/fcrm/pagetype/crm_fields_layout/crm_fields_layout.json +#: crm/fcrm/pagetype/crm_form_script/crm_form_script.json +#: crm/fcrm/pagetype/crm_industry/crm_industry.json +#: crm/fcrm/pagetype/crm_lead/crm_lead.json +#: crm/fcrm/pagetype/crm_lead_source/crm_lead_source.json +#: crm/fcrm/pagetype/crm_lead_status/crm_lead_status.json +#: crm/fcrm/pagetype/fcrm_settings/fcrm_settings.json #: frontend/src/components/Settings/EmailTemplate/EmailTemplates.vue:76 #: frontend/src/components/Settings/Users.vue:85 msgid "All" @@ -426,16 +426,16 @@ msgstr "" msgid "All day" msgstr "" -#. Label of the amount (Currency) field in DocType 'CRM Products' -#: crm/fcrm/doctype/crm_products/crm_products.json +#. Label of the amount (Currency) field in PageType 'CRM Products' +#: crm/fcrm/pagetype/crm_products/crm_products.json #: frontend/src/pages/Contact.vue:499 frontend/src/pages/MobileContact.vue:507 #: frontend/src/pages/MobileOrganization.vue:451 #: frontend/src/pages/Organization.vue:472 msgid "Amount" msgstr "" -#. Description of the 'Net Amount' (Currency) field in DocType 'CRM Products' -#: crm/fcrm/doctype/crm_products/crm_products.json +#. Description of the 'Net Amount' (Currency) field in PageType 'CRM Products' +#: crm/fcrm/pagetype/crm_products/crm_products.json msgid "Amount after discount" msgstr "" @@ -447,13 +447,13 @@ msgstr "" msgid "An error occurred while updating the document" msgstr "" -#. Description of the 'Favicon' (Attach) field in DocType 'FCRM Settings' -#: crm/fcrm/doctype/fcrm_settings/fcrm_settings.json +#. Description of the 'Favicon' (Attach) field in PageType 'FCRM Settings' +#: crm/fcrm/pagetype/fcrm_settings/fcrm_settings.json msgid "An icon file with .ico extension. Should be 16 x 16 px. Generated using a favicon generator. [favicon-generator.org]" msgstr "Файл иконки с расширением .ico. Размер должен быть 16 x 16 px. Создается с помощью генератора иконок. [favicon-generator.org]." -#. Description of the 'Logo' (Attach) field in DocType 'FCRM Settings' -#: crm/fcrm/doctype/fcrm_settings/fcrm_settings.json +#. Description of the 'Logo' (Attach) field in PageType 'FCRM Settings' +#: crm/fcrm/pagetype/fcrm_settings/fcrm_settings.json msgid "An image with 1:1 & 2:1 ratio is preferred" msgstr "" @@ -461,12 +461,12 @@ msgstr "" msgid "And" msgstr "" -#. Label of the annual_revenue (Currency) field in DocType 'CRM Deal' -#. Label of the annual_revenue (Currency) field in DocType 'CRM Lead' -#. Label of the annual_revenue (Currency) field in DocType 'CRM Organization' -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_lead/crm_lead.json -#: crm/fcrm/doctype/crm_organization/crm_organization.json +#. Label of the annual_revenue (Currency) field in PageType 'CRM Deal' +#. Label of the annual_revenue (Currency) field in PageType 'CRM Lead' +#. Label of the annual_revenue (Currency) field in PageType 'CRM Organization' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_lead/crm_lead.json +#: crm/fcrm/pagetype/crm_organization/crm_organization.json msgid "Annual Revenue" msgstr "" @@ -488,13 +488,13 @@ msgstr "" msgid "Apply" msgstr "" -#. Label of the apply_on (Link) field in DocType 'CRM Service Level Agreement' -#: crm/fcrm/doctype/crm_service_level_agreement/crm_service_level_agreement.json +#. Label of the apply_on (Link) field in PageType 'CRM Service Level Agreement' +#: crm/fcrm/pagetype/crm_service_level_agreement/crm_service_level_agreement.json msgid "Apply On" msgstr "" -#. Label of the view (Select) field in DocType 'CRM Form Script' -#: crm/fcrm/doctype/crm_form_script/crm_form_script.json +#. Label of the view (Select) field in PageType 'CRM Form Script' +#: crm/fcrm/pagetype/crm_form_script/crm_form_script.json msgid "Apply To" msgstr "Применить к" @@ -540,10 +540,10 @@ msgid "Are you sure you want to go back? Unsaved changes will be lost." msgstr "" #: frontend/src/composables/frappecloud.js:24 -msgid "Are you sure you want to login to your Frappe Cloud dashboard?" +msgid "Are you sure you want to login to your Jingrow Cloud dashboard?" msgstr "" -#: crm/fcrm/doctype/erpnext_crm_settings/erpnext_crm_settings.js:9 +#: crm/fcrm/pagetype/erpnext_crm_settings/erpnext_crm_settings.js:9 msgid "Are you sure you want to reset 'Create Quotation from CRM Deal' Form Script?" msgstr "" @@ -555,7 +555,7 @@ msgstr "" msgid "Are you sure you want to unlink {0} linked item(s)?" msgstr "" -#: crm/fcrm/doctype/fcrm_settings/fcrm_settings.py:193 +#: crm/fcrm/pagetype/fcrm_settings/fcrm_settings.py:193 msgid "Ask your manager to set up the Exchange Rate Provider, as default provider does not support currency conversion for {0} to {1}." msgstr "" @@ -581,8 +581,8 @@ msgstr "" msgid "Assign to me" msgstr "Назначить меня" -#. Label of the assigned_to (Link) field in DocType 'CRM Task' -#: crm/fcrm/doctype/crm_task/crm_task.json +#. Label of the assigned_to (Link) field in PageType 'CRM Task' +#: crm/fcrm/pagetype/crm_task/crm_task.json msgid "Assigned To" msgstr "" @@ -594,13 +594,13 @@ msgstr "" msgid "Assignees" msgstr "" -#. Option for the 'Type' (Select) field in DocType 'CRM Notification' -#: crm/fcrm/doctype/crm_notification/crm_notification.json +#. Option for the 'Type' (Select) field in PageType 'CRM Notification' +#: crm/fcrm/pagetype/crm_notification/crm_notification.json msgid "Assignment" msgstr "" -#. Label of a shortcut in the Frappe CRM Workspace -#: crm/fcrm/workspace/frappe_crm/frappe_crm.json +#. Label of a shortcut in the Jingrow CRM Workspace +#: crm/fcrm/workspace/jingrow_crm/jingrow_crm.json msgid "Assignment Rule" msgstr "" @@ -678,14 +678,14 @@ msgstr "" msgid "Attendees" msgstr "" -#. Label of the auth_token (Password) field in DocType 'CRM Twilio Settings' -#: crm/fcrm/doctype/crm_twilio_settings/crm_twilio_settings.json +#. Label of the auth_token (Password) field in PageType 'CRM Twilio Settings' +#: crm/fcrm/pagetype/crm_twilio_settings/crm_twilio_settings.json msgid "Auth Token" msgstr "" -#. Label of the auto_update_expected_deal_value (Check) field in DocType 'FCRM +#. Label of the auto_update_expected_deal_value (Check) field in PageType 'FCRM #. Settings' -#: crm/fcrm/doctype/fcrm_settings/fcrm_settings.json +#: crm/fcrm/pagetype/fcrm_settings/fcrm_settings.json msgid "Auto Update Expected Deal Value" msgstr "" @@ -702,8 +702,8 @@ msgid "Auto update of expected deal value enabled" msgstr "" #. Description of the 'Auto Update Expected Deal Value' (Check) field in -#. DocType 'FCRM Settings' -#: crm/fcrm/doctype/fcrm_settings/fcrm_settings.json +#. PageType 'FCRM Settings' +#: crm/fcrm/pagetype/fcrm_settings/fcrm_settings.json #: frontend/src/components/Settings/ForecastingSettings.vue:46 msgid "Automatically update \"Expected Deal Value\" based on the total value of associated products in a deal" msgstr "" @@ -793,8 +793,8 @@ msgstr "" msgid "Back to file upload" msgstr "" -#. Option for the 'Status' (Select) field in DocType 'CRM Task' -#: crm/fcrm/doctype/crm_task/crm_task.json +#. Option for the 'Status' (Select) field in PageType 'CRM Task' +#: crm/fcrm/pagetype/crm_task/crm_task.json msgid "Backlog" msgstr "" @@ -818,8 +818,8 @@ msgstr "" msgid "Brand settings" msgstr "" -#. Label of the branding_tab (Tab Break) field in DocType 'FCRM Settings' -#: crm/fcrm/doctype/fcrm_settings/fcrm_settings.json +#. Label of the branding_tab (Tab Break) field in PageType 'FCRM Settings' +#: crm/fcrm/pagetype/fcrm_settings/fcrm_settings.json msgid "Branding" msgstr "" @@ -827,8 +827,8 @@ msgstr "" msgid "Bulk Edit" msgstr "" -#. Option for the 'Status' (Select) field in DocType 'CRM Call Log' -#: crm/fcrm/doctype/crm_call_log/crm_call_log.json +#. Option for the 'Status' (Select) field in PageType 'CRM Call Log' +#: crm/fcrm/pagetype/crm_call_log/crm_call_log.json msgid "Busy" msgstr "" @@ -838,174 +838,174 @@ msgstr "" msgid "CC" msgstr "Копия" -#. Name of a DocType -#: crm/fcrm/doctype/crm_call_log/crm_call_log.json +#. Name of a PageType +#: crm/fcrm/pagetype/crm_call_log/crm_call_log.json msgid "CRM Call Log" msgstr "" -#. Name of a DocType -#: crm/fcrm/doctype/crm_communication_status/crm_communication_status.json +#. Name of a PageType +#: crm/fcrm/pagetype/crm_communication_status/crm_communication_status.json msgid "CRM Communication Status" msgstr "" -#. Name of a DocType -#: crm/fcrm/doctype/crm_contacts/crm_contacts.json +#. Name of a PageType +#: crm/fcrm/pagetype/crm_contacts/crm_contacts.json msgid "CRM Contacts" msgstr "" -#. Name of a DocType -#: crm/fcrm/doctype/crm_dashboard/crm_dashboard.json +#. Name of a PageType +#: crm/fcrm/pagetype/crm_dashboard/crm_dashboard.json #: frontend/src/pages/Dashboard.vue:304 msgid "CRM Dashboard" msgstr "" -#. Name of a DocType -#: crm/fcrm/doctype/crm_deal/crm_deal.json +#. Name of a PageType +#: crm/fcrm/pagetype/crm_deal/crm_deal.json msgid "CRM Deal" msgstr "" -#. Name of a DocType -#: crm/fcrm/doctype/crm_deal_status/crm_deal_status.json +#. Name of a PageType +#: crm/fcrm/pagetype/crm_deal_status/crm_deal_status.json msgid "CRM Deal Status" msgstr "" -#. Name of a DocType -#: crm/fcrm/doctype/crm_dropdown_item/crm_dropdown_item.json +#. Name of a PageType +#: crm/fcrm/pagetype/crm_dropdown_item/crm_dropdown_item.json msgid "CRM Dropdown Item" msgstr "" -#. Name of a DocType -#: crm/fcrm/doctype/crm_exotel_settings/crm_exotel_settings.json +#. Name of a PageType +#: crm/fcrm/pagetype/crm_exotel_settings/crm_exotel_settings.json msgid "CRM Exotel Settings" msgstr "" -#. Name of a DocType -#: crm/fcrm/doctype/crm_fields_layout/crm_fields_layout.json +#. Name of a PageType +#: crm/fcrm/pagetype/crm_fields_layout/crm_fields_layout.json msgid "CRM Fields Layout" msgstr "" -#. Name of a DocType -#: crm/fcrm/doctype/crm_form_script/crm_form_script.json +#. Name of a PageType +#: crm/fcrm/pagetype/crm_form_script/crm_form_script.json msgid "CRM Form Script" msgstr "" -#. Name of a DocType -#: crm/fcrm/doctype/crm_global_settings/crm_global_settings.json +#. Name of a PageType +#: crm/fcrm/pagetype/crm_global_settings/crm_global_settings.json msgid "CRM Global Settings" msgstr "" -#. Name of a DocType -#: crm/fcrm/doctype/crm_holiday/crm_holiday.json +#. Name of a PageType +#: crm/fcrm/pagetype/crm_holiday/crm_holiday.json msgid "CRM Holiday" msgstr "" -#. Name of a DocType -#: crm/fcrm/doctype/crm_holiday_list/crm_holiday_list.json +#. Name of a PageType +#: crm/fcrm/pagetype/crm_holiday_list/crm_holiday_list.json msgid "CRM Holiday List" msgstr "" -#. Name of a DocType -#: crm/fcrm/doctype/crm_industry/crm_industry.json +#. Name of a PageType +#: crm/fcrm/pagetype/crm_industry/crm_industry.json msgid "CRM Industry" msgstr "" -#. Name of a DocType -#: crm/fcrm/doctype/crm_invitation/crm_invitation.json +#. Name of a PageType +#: crm/fcrm/pagetype/crm_invitation/crm_invitation.json msgid "CRM Invitation" msgstr "" -#. Name of a DocType -#: crm/fcrm/doctype/crm_lead/crm_lead.json +#. Name of a PageType +#: crm/fcrm/pagetype/crm_lead/crm_lead.json msgid "CRM Lead" msgstr "" -#. Name of a DocType -#: crm/fcrm/doctype/crm_lead_source/crm_lead_source.json +#. Name of a PageType +#: crm/fcrm/pagetype/crm_lead_source/crm_lead_source.json msgid "CRM Lead Source" msgstr "" -#. Name of a DocType -#: crm/fcrm/doctype/crm_lead_status/crm_lead_status.json +#. Name of a PageType +#: crm/fcrm/pagetype/crm_lead_status/crm_lead_status.json msgid "CRM Lead Status" msgstr "" -#. Name of a DocType -#: crm/fcrm/doctype/crm_lost_reason/crm_lost_reason.json +#. Name of a PageType +#: crm/fcrm/pagetype/crm_lost_reason/crm_lost_reason.json msgid "CRM Lost Reason" msgstr "" -#. Name of a DocType -#: crm/fcrm/doctype/crm_notification/crm_notification.json +#. Name of a PageType +#: crm/fcrm/pagetype/crm_notification/crm_notification.json msgid "CRM Notification" msgstr "" -#. Name of a DocType -#: crm/fcrm/doctype/crm_organization/crm_organization.json +#. Name of a PageType +#: crm/fcrm/pagetype/crm_organization/crm_organization.json msgid "CRM Organization" msgstr "" -#. Label of a shortcut in the Frappe CRM Workspace -#: crm/fcrm/workspace/frappe_crm/frappe_crm.json +#. Label of a shortcut in the Jingrow CRM Workspace +#: crm/fcrm/workspace/jingrow_crm/jingrow_crm.json msgid "CRM Portal Page" msgstr "" -#. Name of a DocType -#: crm/fcrm/doctype/crm_product/crm_product.json +#. Name of a PageType +#: crm/fcrm/pagetype/crm_product/crm_product.json msgid "CRM Product" msgstr "" -#. Name of a DocType -#: crm/fcrm/doctype/crm_products/crm_products.json +#. Name of a PageType +#: crm/fcrm/pagetype/crm_products/crm_products.json msgid "CRM Products" msgstr "" -#. Name of a DocType -#: crm/fcrm/doctype/crm_service_day/crm_service_day.json +#. Name of a PageType +#: crm/fcrm/pagetype/crm_service_day/crm_service_day.json msgid "CRM Service Day" msgstr "" -#. Name of a DocType -#: crm/fcrm/doctype/crm_service_level_agreement/crm_service_level_agreement.json +#. Name of a PageType +#: crm/fcrm/pagetype/crm_service_level_agreement/crm_service_level_agreement.json msgid "CRM Service Level Agreement" msgstr "" -#. Name of a DocType -#: crm/fcrm/doctype/crm_service_level_priority/crm_service_level_priority.json +#. Name of a PageType +#: crm/fcrm/pagetype/crm_service_level_priority/crm_service_level_priority.json msgid "CRM Service Level Priority" msgstr "" -#. Name of a DocType -#: crm/fcrm/doctype/crm_status_change_log/crm_status_change_log.json +#. Name of a PageType +#: crm/fcrm/pagetype/crm_status_change_log/crm_status_change_log.json msgid "CRM Status Change Log" msgstr "" -#. Name of a DocType -#: crm/fcrm/doctype/crm_task/crm_task.json +#. Name of a PageType +#: crm/fcrm/pagetype/crm_task/crm_task.json msgid "CRM Task" msgstr "" -#. Name of a DocType -#: crm/fcrm/doctype/crm_telephony_agent/crm_telephony_agent.json +#. Name of a PageType +#: crm/fcrm/pagetype/crm_telephony_agent/crm_telephony_agent.json msgid "CRM Telephony Agent" msgstr "" -#. Name of a DocType -#: crm/fcrm/doctype/crm_telephony_phone/crm_telephony_phone.json +#. Name of a PageType +#: crm/fcrm/pagetype/crm_telephony_phone/crm_telephony_phone.json msgid "CRM Telephony Phone" msgstr "" -#. Name of a DocType -#: crm/fcrm/doctype/crm_territory/crm_territory.json +#. Name of a PageType +#: crm/fcrm/pagetype/crm_territory/crm_territory.json msgid "CRM Territory" msgstr "" -#. Name of a DocType -#: crm/fcrm/doctype/crm_twilio_settings/crm_twilio_settings.json +#. Name of a PageType +#: crm/fcrm/pagetype/crm_twilio_settings/crm_twilio_settings.json msgid "CRM Twilio Settings" msgstr "" -#. Name of a DocType -#: crm/fcrm/doctype/crm_view_settings/crm_view_settings.json +#. Name of a PageType +#: crm/fcrm/pagetype/crm_view_settings/crm_view_settings.json msgid "CRM View Settings" msgstr "" @@ -1021,13 +1021,13 @@ msgstr "CSV" msgid "Call Details" msgstr "" -#. Label of the receiver (Link) field in DocType 'CRM Call Log' -#: crm/fcrm/doctype/crm_call_log/crm_call_log.json +#. Label of the receiver (Link) field in PageType 'CRM Call Log' +#: crm/fcrm/pagetype/crm_call_log/crm_call_log.json msgid "Call Received By" msgstr "" -#. Description of the 'Duration' (Duration) field in DocType 'CRM Call Log' -#: crm/fcrm/doctype/crm_call_log/crm_call_log.json +#. Description of the 'Duration' (Duration) field in PageType 'CRM Call Log' +#: crm/fcrm/pagetype/crm_call_log/crm_call_log.json msgid "Call duration in seconds" msgstr "" @@ -1045,8 +1045,8 @@ msgstr "" msgid "Call with John Doe" msgstr "" -#. Label of the caller (Link) field in DocType 'CRM Call Log' -#: crm/fcrm/doctype/crm_call_log/crm_call_log.json +#. Label of the caller (Link) field in PageType 'CRM Call Log' +#: crm/fcrm/pagetype/crm_call_log/crm_call_log.json msgid "Caller" msgstr "" @@ -1083,10 +1083,10 @@ msgstr "" msgid "Cancel" msgstr "Отмена" -#. Option for the 'Status' (Select) field in DocType 'CRM Call Log' -#. Option for the 'Status' (Select) field in DocType 'CRM Task' -#: crm/fcrm/doctype/crm_call_log/crm_call_log.json -#: crm/fcrm/doctype/crm_task/crm_task.json +#. Option for the 'Status' (Select) field in PageType 'CRM Call Log' +#. Option for the 'Status' (Select) field in PageType 'CRM Task' +#: crm/fcrm/pagetype/crm_call_log/crm_call_log.json +#: crm/fcrm/pagetype/crm_task/crm_task.json msgid "Canceled" msgstr "" @@ -1094,7 +1094,7 @@ msgstr "" msgid "Cannot change role of user with Admin access" msgstr "" -#: crm/fcrm/doctype/fcrm_settings/fcrm_settings.py:34 +#: crm/fcrm/pagetype/fcrm_settings/fcrm_settings.py:34 msgid "Cannot delete standard items {0}" msgstr "" @@ -1189,8 +1189,8 @@ msgstr "" msgid "Clear Sort" msgstr "" -#. Label of the clear_table (Button) field in DocType 'CRM Holiday List' -#: crm/fcrm/doctype/crm_holiday_list/crm_holiday_list.json +#. Label of the clear_table (Button) field in PageType 'CRM Holiday List' +#: crm/fcrm/pagetype/crm_holiday_list/crm_holiday_list.json msgid "Clear Table" msgstr "" @@ -1211,8 +1211,8 @@ msgstr "" msgid "Close panel" msgstr "" -#. Label of the closed_date (Date) field in DocType 'CRM Deal' -#: crm/fcrm/doctype/crm_deal/crm_deal.json +#. Label of the closed_date (Date) field in PageType 'CRM Deal' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json msgid "Closed Date" msgstr "" @@ -1224,10 +1224,10 @@ msgstr "" msgid "Collapsible" msgstr "" -#. Label of the color (Select) field in DocType 'CRM Deal Status' -#. Label of the color (Select) field in DocType 'CRM Lead Status' -#: crm/fcrm/doctype/crm_deal_status/crm_deal_status.json -#: crm/fcrm/doctype/crm_lead_status/crm_lead_status.json +#. Label of the color (Select) field in PageType 'CRM Deal Status' +#. Label of the color (Select) field in PageType 'CRM Lead Status' +#: crm/fcrm/pagetype/crm_deal_status/crm_deal_status.json +#: crm/fcrm/pagetype/crm_lead_status/crm_lead_status.json msgid "Color" msgstr "" @@ -1235,20 +1235,20 @@ msgstr "" msgid "Column" msgstr "" -#. Label of the column_field (Data) field in DocType 'CRM View Settings' -#: crm/fcrm/doctype/crm_view_settings/crm_view_settings.json +#. Label of the column_field (Data) field in PageType 'CRM View Settings' +#: crm/fcrm/pagetype/crm_view_settings/crm_view_settings.json #: frontend/src/components/Kanban/KanbanSettings.vue:12 msgid "Column Field" msgstr "" -#. Label of the columns (Code) field in DocType 'CRM View Settings' -#: crm/fcrm/doctype/crm_view_settings/crm_view_settings.json +#. Label of the columns (Code) field in PageType 'CRM View Settings' +#: crm/fcrm/pagetype/crm_view_settings/crm_view_settings.json #: frontend/src/components/ColumnSettings.vue:4 msgid "Columns" msgstr "Колонки" -#. Label of the comment (Link) field in DocType 'CRM Notification' -#: crm/fcrm/doctype/crm_notification/crm_notification.json +#. Label of the comment (Link) field in PageType 'CRM Notification' +#: crm/fcrm/pagetype/crm_notification/crm_notification.json #: frontend/src/components/CommentBox.vue:78 #: frontend/src/components/CommunicationArea.vue:16 #: frontend/src/components/Layouts/AppSidebar.vue:579 @@ -1264,20 +1264,20 @@ msgstr "" msgid "Common reasons for losing deals" msgstr "" -#. Label of the communication_status (Link) field in DocType 'CRM Deal' -#. Label of the communication_status (Link) field in DocType 'CRM Lead' -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_lead/crm_lead.json +#. Label of the communication_status (Link) field in PageType 'CRM Deal' +#. Label of the communication_status (Link) field in PageType 'CRM Lead' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_lead/crm_lead.json msgid "Communication Status" msgstr "" -#. Label of a shortcut in the Frappe CRM Workspace -#: crm/fcrm/workspace/frappe_crm/frappe_crm.json +#. Label of a shortcut in the Jingrow CRM Workspace +#: crm/fcrm/workspace/jingrow_crm/jingrow_crm.json msgid "Communication Statuses" msgstr "" -#. Label of the erpnext_company (Data) field in DocType 'ERPNext CRM Settings' -#: crm/fcrm/doctype/erpnext_crm_settings/erpnext_crm_settings.json +#. Label of the erpnext_company (Data) field in PageType 'ERPNext CRM Settings' +#: crm/fcrm/pagetype/erpnext_crm_settings/erpnext_crm_settings.json msgid "Company in ERPNext Site" msgstr "" @@ -1285,18 +1285,18 @@ msgstr "" msgid "Complete Registration" msgstr "Полная регистрация" -#. Option for the 'Status' (Select) field in DocType 'CRM Call Log' -#: crm/fcrm/doctype/crm_call_log/crm_call_log.json +#. Option for the 'Status' (Select) field in PageType 'CRM Call Log' +#: crm/fcrm/pagetype/crm_call_log/crm_call_log.json msgid "Completed" msgstr "" -#. Option for the 'Device' (Select) field in DocType 'CRM Telephony Agent' -#: crm/fcrm/doctype/crm_telephony_agent/crm_telephony_agent.json +#. Option for the 'Device' (Select) field in PageType 'CRM Telephony Agent' +#: crm/fcrm/pagetype/crm_telephony_agent/crm_telephony_agent.json msgid "Computer" msgstr "" -#. Label of the condition (Code) field in DocType 'CRM Service Level Agreement' -#: crm/fcrm/doctype/crm_service_level_agreement/crm_service_level_agreement.json +#. Label of the condition (Code) field in PageType 'CRM Service Level Agreement' +#: crm/fcrm/pagetype/crm_service_level_agreement/crm_service_level_agreement.json msgid "Condition" msgstr "" @@ -1354,17 +1354,17 @@ msgstr "" msgid "Connect your email" msgstr "" -#. Label of the contact (Link) field in DocType 'CRM Contacts' -#. Label of the contact (Link) field in DocType 'CRM Deal' -#: crm/fcrm/doctype/crm_contacts/crm_contacts.json -#: crm/fcrm/doctype/crm_deal/crm_deal.json +#. Label of the contact (Link) field in PageType 'CRM Contacts' +#. Label of the contact (Link) field in PageType 'CRM Deal' +#: crm/fcrm/pagetype/crm_contacts/crm_contacts.json +#: crm/fcrm/pagetype/crm_deal/crm_deal.json #: frontend/src/components/Layouts/AppSidebar.vue:552 #: frontend/src/components/Modals/ConvertToDealModal.vue:51 #: frontend/src/pages/MobileLead.vue:145 msgid "Contact" msgstr "Контакт" -#: crm/fcrm/doctype/crm_lead/crm_lead.py:212 +#: crm/fcrm/pagetype/crm_lead/crm_lead.py:212 msgid "Contact Already Exists" msgstr "" @@ -1384,7 +1384,7 @@ msgstr "" msgid "Contact already added" msgstr "" -#: crm/fcrm/doctype/crm_lead/crm_lead.py:211 +#: crm/fcrm/pagetype/crm_lead/crm_lead.py:211 msgid "Contact already exists with {0}" msgstr "" @@ -1405,18 +1405,18 @@ msgstr "" msgid "Contact updated" msgstr "" -#. Label of the contacts_tab (Tab Break) field in DocType 'CRM Deal' -#. Label of the contacts (Table) field in DocType 'CRM Deal' -#. Label of a shortcut in the Frappe CRM Workspace -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/workspace/frappe_crm/frappe_crm.json +#. Label of the contacts_tab (Tab Break) field in PageType 'CRM Deal' +#. Label of the contacts (Table) field in PageType 'CRM Deal' +#. Label of a shortcut in the Jingrow CRM Workspace +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/workspace/jingrow_crm/jingrow_crm.json #: frontend/src/pages/Contact.vue:234 frontend/src/pages/MobileContact.vue:212 #: frontend/src/pages/MobileOrganization.vue:331 msgid "Contacts" msgstr "" -#. Label of the content (Text Editor) field in DocType 'FCRM Note' -#: crm/fcrm/doctype/fcrm_note/fcrm_note.json +#. Label of the content (Text Editor) field in PageType 'FCRM Note' +#: crm/fcrm/pagetype/fcrm_note/fcrm_note.json #: frontend/src/components/Modals/NoteModal.vue:33 #: frontend/src/components/Settings/EmailTemplate/EditEmailTemplate.vue:89 #: frontend/src/components/Settings/EmailTemplate/EditEmailTemplate.vue:102 @@ -1456,8 +1456,8 @@ msgstr "" msgid "Convert to Deal" msgstr "" -#. Label of the converted (Check) field in DocType 'CRM Lead' -#: crm/fcrm/doctype/crm_lead/crm_lead.json +#. Label of the converted (Check) field in PageType 'CRM Lead' +#: crm/fcrm/pagetype/crm_lead/crm_lead.json msgid "Converted" msgstr "" @@ -1533,9 +1533,9 @@ msgstr "" msgid "Create an event" msgstr "" -#. Label of the create_customer_on_status_change (Check) field in DocType +#. Label of the create_customer_on_status_change (Check) field in PageType #. 'ERPNext CRM Settings' -#: crm/fcrm/doctype/erpnext_crm_settings/erpnext_crm_settings.json +#: crm/fcrm/pagetype/erpnext_crm_settings/erpnext_crm_settings.json msgid "Create customer on status change" msgstr "" @@ -1560,13 +1560,13 @@ msgstr "" msgid "Create your first task" msgstr "" -#. Label of the currency (Link) field in DocType 'CRM Deal' -#. Label of the currency (Link) field in DocType 'CRM Organization' -#. Label of the currency (Link) field in DocType 'FCRM Settings' -#. Label of the currency_tab (Tab Break) field in DocType 'FCRM Settings' -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_organization/crm_organization.json -#: crm/fcrm/doctype/fcrm_settings/fcrm_settings.json +#. Label of the currency (Link) field in PageType 'CRM Deal' +#. Label of the currency (Link) field in PageType 'CRM Organization' +#. Label of the currency (Link) field in PageType 'FCRM Settings' +#. Label of the currency_tab (Tab Break) field in PageType 'FCRM Settings' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_organization/crm_organization.json +#: crm/fcrm/pagetype/fcrm_settings/fcrm_settings.json #: frontend/src/components/Settings/CurrencySettings.vue:31 msgid "Currency" msgstr "" @@ -1631,13 +1631,13 @@ msgstr "" msgid "Data" msgstr "" -#. Option for the 'Type' (Select) field in DocType 'CRM Fields Layout' -#: crm/fcrm/doctype/crm_fields_layout/crm_fields_layout.json +#. Option for the 'Type' (Select) field in PageType 'CRM Fields Layout' +#: crm/fcrm/pagetype/crm_fields_layout/crm_fields_layout.json msgid "Data Fields" msgstr "" -#. Label of the date (Date) field in DocType 'CRM Holiday' -#: crm/api/dashboard.py:601 crm/fcrm/doctype/crm_holiday/crm_holiday.json +#. Label of the date (Date) field in PageType 'CRM Holiday' +#: crm/api/dashboard.py:601 crm/fcrm/pagetype/crm_holiday/crm_holiday.json #: frontend/src/components/Calendar/CalendarEventPanel.vue:202 msgid "Date" msgstr "" @@ -1660,23 +1660,23 @@ msgstr "" msgid "Deal" msgstr "" -#. Label of the deal_owner (Link) field in DocType 'CRM Deal' -#: crm/fcrm/doctype/crm_deal/crm_deal.json +#. Label of the deal_owner (Link) field in PageType 'CRM Deal' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json msgid "Deal Owner" msgstr "" -#. Label of the deal_status (Link) field in DocType 'ERPNext CRM Settings' -#: crm/fcrm/doctype/erpnext_crm_settings/erpnext_crm_settings.json +#. Label of the deal_status (Link) field in PageType 'ERPNext CRM Settings' +#: crm/fcrm/pagetype/erpnext_crm_settings/erpnext_crm_settings.json msgid "Deal Status" msgstr "" -#. Label of a shortcut in the Frappe CRM Workspace -#: crm/fcrm/workspace/frappe_crm/frappe_crm.json +#. Label of a shortcut in the Jingrow CRM Workspace +#: crm/fcrm/workspace/jingrow_crm/jingrow_crm.json msgid "Deal Statuses" msgstr "" -#. Label of the deal_value (Currency) field in DocType 'CRM Deal' -#: crm/fcrm/doctype/crm_deal/crm_deal.json +#. Label of the deal_value (Currency) field in PageType 'CRM Deal' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json msgid "Deal Value" msgstr "" @@ -1694,8 +1694,8 @@ msgstr "" msgid "Deal value" msgstr "" -#. Label of a shortcut in the Frappe CRM Workspace -#: crm/fcrm/workspace/frappe_crm/frappe_crm.json +#. Label of a shortcut in the Jingrow CRM Workspace +#: crm/fcrm/workspace/jingrow_crm/jingrow_crm.json #: frontend/src/pages/Deal.vue:480 frontend/src/pages/MobileContact.vue:288 #: frontend/src/pages/MobileDeal.vue:384 #: frontend/src/pages/MobileOrganization.vue:325 @@ -1732,8 +1732,8 @@ msgstr "" msgid "Dear {{ lead_name }}, \\n\\nThis is a reminder for the payment of {{ grand_total }}. \\n\\nThanks, \\nFrappé" msgstr "" -#. Label of the default (Check) field in DocType 'CRM Service Level Agreement' -#: crm/fcrm/doctype/crm_service_level_agreement/crm_service_level_agreement.json +#. Label of the default (Check) field in PageType 'CRM Service Level Agreement' +#: crm/fcrm/pagetype/crm_service_level_agreement/crm_service_level_agreement.json msgid "Default" msgstr "" @@ -1745,8 +1745,8 @@ msgstr "Входящие по умолчанию" msgid "Default Incoming" msgstr "По умолчанию Входящие" -#. Label of the default_medium (Select) field in DocType 'CRM Telephony Agent' -#: crm/fcrm/doctype/crm_telephony_agent/crm_telephony_agent.json +#. Label of the default_medium (Select) field in PageType 'CRM Telephony Agent' +#: crm/fcrm/pagetype/crm_telephony_agent/crm_telephony_agent.json msgid "Default Medium" msgstr "" @@ -1754,9 +1754,9 @@ msgstr "" msgid "Default Outgoing" msgstr "По умолчанию Исходящие" -#. Label of the default_priority (Check) field in DocType 'CRM Service Level +#. Label of the default_priority (Check) field in PageType 'CRM Service Level #. Priority' -#: crm/fcrm/doctype/crm_service_level_priority/crm_service_level_priority.json +#: crm/fcrm/pagetype/crm_service_level_priority/crm_service_level_priority.json msgid "Default Priority" msgstr "" @@ -1768,7 +1768,7 @@ msgstr "Отправка по умолчанию" msgid "Default Sending and Inbox" msgstr "Отправка по умолчанию и папка \"Входящие" -#: crm/fcrm/doctype/crm_service_level_agreement/crm_service_level_agreement.py:33 +#: crm/fcrm/pagetype/crm_service_level_agreement/crm_service_level_agreement.py:33 msgid "Default Service Level Agreement already exists for {0}" msgstr "" @@ -1788,8 +1788,8 @@ msgstr "" msgid "Default medium" msgstr "" -#: crm/fcrm/doctype/fcrm_settings/fcrm_settings.js:18 -#: crm/fcrm/doctype/fcrm_settings/fcrm_settings.js:30 +#: crm/fcrm/pagetype/fcrm_settings/fcrm_settings.js:18 +#: crm/fcrm/pagetype/fcrm_settings/fcrm_settings.js:30 msgid "Default statuses, custom fields and layouts restored successfully." msgstr "" @@ -1825,7 +1825,7 @@ msgstr "" msgid "Delete" msgstr "" -#: crm/fcrm/doctype/fcrm_settings/fcrm_settings.js:26 +#: crm/fcrm/pagetype/fcrm_settings/fcrm_settings.js:26 msgid "Delete & Restore" msgstr "" @@ -1883,14 +1883,14 @@ msgstr "" msgid "Delete {0} items" msgstr "" -#. Label of the description (Text Editor) field in DocType 'CRM Holiday' -#. Label of the description (Text Editor) field in DocType 'CRM Lost Reason' -#. Label of the description (Text Editor) field in DocType 'CRM Product' -#. Label of the description (Text Editor) field in DocType 'CRM Task' -#: crm/fcrm/doctype/crm_holiday/crm_holiday.json -#: crm/fcrm/doctype/crm_lost_reason/crm_lost_reason.json -#: crm/fcrm/doctype/crm_product/crm_product.json -#: crm/fcrm/doctype/crm_task/crm_task.json +#. Label of the description (Text Editor) field in PageType 'CRM Holiday' +#. Label of the description (Text Editor) field in PageType 'CRM Lost Reason' +#. Label of the description (Text Editor) field in PageType 'CRM Product' +#. Label of the description (Text Editor) field in PageType 'CRM Task' +#: crm/fcrm/pagetype/crm_holiday/crm_holiday.json +#: crm/fcrm/pagetype/crm_lost_reason/crm_lost_reason.json +#: crm/fcrm/pagetype/crm_product/crm_product.json +#: crm/fcrm/pagetype/crm_task/crm_task.json #: frontend/src/components/Calendar/CalendarEventPanel.vue:152 #: frontend/src/components/Modals/EventModal.vue:134 #: frontend/src/components/Modals/TaskModal.vue:36 @@ -1907,29 +1907,29 @@ msgstr "" msgid "Desk" msgstr "" -#. Label of the details (Tab Break) field in DocType 'CRM Lead' -#. Label of the details (Text Editor) field in DocType 'CRM Lead Source' -#: crm/fcrm/doctype/crm_lead/crm_lead.json -#: crm/fcrm/doctype/crm_lead_source/crm_lead_source.json +#. Label of the details (Tab Break) field in PageType 'CRM Lead' +#. Label of the details (Text Editor) field in PageType 'CRM Lead Source' +#: crm/fcrm/pagetype/crm_lead/crm_lead.json +#: crm/fcrm/pagetype/crm_lead_source/crm_lead_source.json #: frontend/src/pages/MobileContact.vue:283 #: frontend/src/pages/MobileDeal.vue:424 frontend/src/pages/MobileLead.vue:331 #: frontend/src/pages/MobileOrganization.vue:320 msgid "Details" msgstr "Детали" -#. Label of the call_receiving_device (Select) field in DocType 'CRM Telephony +#. Label of the call_receiving_device (Select) field in PageType 'CRM Telephony #. Agent' -#: crm/fcrm/doctype/crm_telephony_agent/crm_telephony_agent.json +#: crm/fcrm/pagetype/crm_telephony_agent/crm_telephony_agent.json #: frontend/src/components/FilesUploader/FilesUploaderArea.vue:39 msgid "Device" msgstr "" -#: crm/fcrm/doctype/crm_form_script/crm_form_script.js:30 +#: crm/fcrm/pagetype/crm_form_script/crm_form_script.js:30 msgid "Disable" msgstr "" -#. Label of the disabled (Check) field in DocType 'CRM Product' -#: crm/fcrm/doctype/crm_product/crm_product.json +#. Label of the disabled (Check) field in PageType 'CRM Product' +#: crm/fcrm/pagetype/crm_product/crm_product.json msgid "Disabled" msgstr "" @@ -1943,27 +1943,27 @@ msgstr "Отменить" msgid "Discard unsaved changes?" msgstr "" -#. Label of the discount_percentage (Percent) field in DocType 'CRM Products' -#: crm/fcrm/doctype/crm_products/crm_products.json +#. Label of the discount_percentage (Percent) field in PageType 'CRM Products' +#: crm/fcrm/pagetype/crm_products/crm_products.json msgid "Discount %" msgstr "Скидка %" -#. Label of the discount_amount (Currency) field in DocType 'CRM Products' -#: crm/fcrm/doctype/crm_products/crm_products.json +#. Label of the discount_amount (Currency) field in PageType 'CRM Products' +#: crm/fcrm/pagetype/crm_products/crm_products.json msgid "Discount Amount" msgstr "" -#. Label of the dt (Link) field in DocType 'CRM Form Script' -#. Label of the dt (Link) field in DocType 'CRM Global Settings' -#. Label of the dt (Link) field in DocType 'CRM View Settings' -#: crm/fcrm/doctype/crm_form_script/crm_form_script.json -#: crm/fcrm/doctype/crm_global_settings/crm_global_settings.json -#: crm/fcrm/doctype/crm_view_settings/crm_view_settings.json -msgid "DocType" +#. Label of the dt (Link) field in PageType 'CRM Form Script' +#. Label of the dt (Link) field in PageType 'CRM Global Settings' +#. Label of the dt (Link) field in PageType 'CRM View Settings' +#: crm/fcrm/pagetype/crm_form_script/crm_form_script.json +#: crm/fcrm/pagetype/crm_global_settings/crm_global_settings.json +#: crm/fcrm/pagetype/crm_view_settings/crm_view_settings.json +msgid "PageType" msgstr "" -#. Label of the dt (Link) field in DocType 'CRM Fields Layout' -#: crm/fcrm/doctype/crm_fields_layout/crm_fields_layout.json +#. Label of the dt (Link) field in PageType 'CRM Fields Layout' +#: crm/fcrm/pagetype/crm_fields_layout/crm_fields_layout.json msgid "Document Type" msgstr "" @@ -1983,8 +1983,8 @@ msgstr "" msgid "Documentation" msgstr "" -#. Option for the 'Status' (Select) field in DocType 'CRM Task' -#: crm/fcrm/doctype/crm_task/crm_task.json +#. Option for the 'Status' (Select) field in PageType 'CRM Task' +#: crm/fcrm/pagetype/crm_task/crm_task.json msgid "Done" msgstr "" @@ -2006,13 +2006,13 @@ msgstr "" msgid "Drop files here" msgstr "" -#. Label of the dropdown_items_tab (Tab Break) field in DocType 'FCRM Settings' -#: crm/fcrm/doctype/fcrm_settings/fcrm_settings.json +#. Label of the dropdown_items_tab (Tab Break) field in PageType 'FCRM Settings' +#: crm/fcrm/pagetype/fcrm_settings/fcrm_settings.json msgid "Dropdown Items" msgstr "" -#. Label of the due_date (Datetime) field in DocType 'CRM Task' -#: crm/fcrm/doctype/crm_task/crm_task.json +#. Label of the due_date (Datetime) field in PageType 'CRM Task' +#: crm/fcrm/pagetype/crm_task/crm_task.json msgid "Due Date" msgstr "" @@ -2048,10 +2048,10 @@ msgstr "" msgid "Duplicate template" msgstr "" -#. Label of the duration (Duration) field in DocType 'CRM Call Log' -#. Label of the duration (Duration) field in DocType 'CRM Status Change Log' -#: crm/fcrm/doctype/crm_call_log/crm_call_log.json -#: crm/fcrm/doctype/crm_status_change_log/crm_status_change_log.json +#. Label of the duration (Duration) field in PageType 'CRM Call Log' +#. Label of the duration (Duration) field in PageType 'CRM Status Change Log' +#: crm/fcrm/pagetype/crm_call_log/crm_call_log.json +#: crm/fcrm/pagetype/crm_status_change_log/crm_status_change_log.json msgid "Duration" msgstr "" @@ -2060,28 +2060,28 @@ msgstr "" msgid "ERPNext" msgstr "" -#. Name of a DocType -#: crm/fcrm/doctype/erpnext_crm_settings/erpnext_crm_settings.json +#. Name of a PageType +#: crm/fcrm/pagetype/erpnext_crm_settings/erpnext_crm_settings.json msgid "ERPNext CRM Settings" msgstr "" -#. Label of the section_break_oubd (Section Break) field in DocType 'ERPNext +#. Label of the section_break_oubd (Section Break) field in PageType 'ERPNext #. CRM Settings' -#: crm/fcrm/doctype/erpnext_crm_settings/erpnext_crm_settings.json +#: crm/fcrm/pagetype/erpnext_crm_settings/erpnext_crm_settings.json msgid "ERPNext Site API's" msgstr "" -#. Label of the erpnext_site_url (Data) field in DocType 'ERPNext CRM Settings' -#: crm/fcrm/doctype/erpnext_crm_settings/erpnext_crm_settings.json +#. Label of the erpnext_site_url (Data) field in PageType 'ERPNext CRM Settings' +#: crm/fcrm/pagetype/erpnext_crm_settings/erpnext_crm_settings.json msgid "ERPNext Site URL" msgstr "" -#: crm/fcrm/doctype/erpnext_crm_settings/erpnext_crm_settings.py:25 +#: crm/fcrm/pagetype/erpnext_crm_settings/erpnext_crm_settings.py:25 msgid "ERPNext is not installed in the current site" msgstr "" -#: crm/fcrm/doctype/erpnext_crm_settings/erpnext_crm_settings.py:98 -#: crm/fcrm/doctype/erpnext_crm_settings/erpnext_crm_settings.py:124 +#: crm/fcrm/pagetype/erpnext_crm_settings/erpnext_crm_settings.py:98 +#: crm/fcrm/pagetype/erpnext_crm_settings/erpnext_crm_settings.py:124 msgid "ERPNext is not integrated with the CRM" msgstr "" @@ -2191,12 +2191,12 @@ msgstr "" msgid "Editing event" msgstr "" -#. Label of the email (Data) field in DocType 'CRM Contacts' -#. Label of the email (Data) field in DocType 'CRM Invitation' -#. Label of the email (Data) field in DocType 'CRM Lead' -#: crm/fcrm/doctype/crm_contacts/crm_contacts.json -#: crm/fcrm/doctype/crm_invitation/crm_invitation.json -#: crm/fcrm/doctype/crm_lead/crm_lead.json frontend/src/pages/Contact.vue:510 +#. Label of the email (Data) field in PageType 'CRM Contacts' +#. Label of the email (Data) field in PageType 'CRM Invitation' +#. Label of the email (Data) field in PageType 'CRM Lead' +#: crm/fcrm/pagetype/crm_contacts/crm_contacts.json +#: crm/fcrm/pagetype/crm_invitation/crm_invitation.json +#: crm/fcrm/pagetype/crm_lead/crm_lead.json frontend/src/pages/Contact.vue:510 #: frontend/src/pages/MobileContact.vue:518 #: frontend/src/pages/MobileOrganization.vue:462 #: frontend/src/pages/MobileOrganization.vue:490 @@ -2213,8 +2213,8 @@ msgstr "" msgid "Email ID is required" msgstr "" -#. Label of the email_sent_at (Datetime) field in DocType 'CRM Invitation' -#: crm/fcrm/doctype/crm_invitation/crm_invitation.json +#. Label of the email_sent_at (Datetime) field in PageType 'CRM Invitation' +#: crm/fcrm/pagetype/crm_invitation/crm_invitation.json msgid "Email Sent At" msgstr "" @@ -2272,12 +2272,12 @@ msgstr "" msgid "Empty - Choose a field to sort by" msgstr "" -#: crm/fcrm/doctype/crm_form_script/crm_form_script.js:30 +#: crm/fcrm/pagetype/crm_form_script/crm_form_script.js:30 msgid "Enable" msgstr "Включить" -#. Label of the enable_forecasting (Check) field in DocType 'FCRM Settings' -#: crm/fcrm/doctype/fcrm_settings/fcrm_settings.json +#. Label of the enable_forecasting (Check) field in PageType 'FCRM Settings' +#: crm/fcrm/pagetype/fcrm_settings/fcrm_settings.json msgid "Enable Forecasting" msgstr "" @@ -2293,18 +2293,18 @@ msgstr "Включить исходящие" msgid "Enable forecasting" msgstr "" -#. Label of the enabled (Check) field in DocType 'CRM Exotel Settings' -#. Label of the enabled (Check) field in DocType 'CRM Form Script' -#. Label of the enabled (Check) field in DocType 'CRM Service Level Agreement' -#. Label of the enabled (Check) field in DocType 'CRM Twilio Settings' -#. Label of the enabled (Check) field in DocType 'ERPNext CRM Settings' -#. Label of the enabled (Check) field in DocType 'Helpdesk CRM Settings' -#: crm/fcrm/doctype/crm_exotel_settings/crm_exotel_settings.json -#: crm/fcrm/doctype/crm_form_script/crm_form_script.json -#: crm/fcrm/doctype/crm_service_level_agreement/crm_service_level_agreement.json -#: crm/fcrm/doctype/crm_twilio_settings/crm_twilio_settings.json -#: crm/fcrm/doctype/erpnext_crm_settings/erpnext_crm_settings.json -#: crm/fcrm/doctype/helpdesk_crm_settings/helpdesk_crm_settings.json +#. Label of the enabled (Check) field in PageType 'CRM Exotel Settings' +#. Label of the enabled (Check) field in PageType 'CRM Form Script' +#. Label of the enabled (Check) field in PageType 'CRM Service Level Agreement' +#. Label of the enabled (Check) field in PageType 'CRM Twilio Settings' +#. Label of the enabled (Check) field in PageType 'ERPNext CRM Settings' +#. Label of the enabled (Check) field in PageType 'Helpdesk CRM Settings' +#: crm/fcrm/pagetype/crm_exotel_settings/crm_exotel_settings.json +#: crm/fcrm/pagetype/crm_form_script/crm_form_script.json +#: crm/fcrm/pagetype/crm_service_level_agreement/crm_service_level_agreement.json +#: crm/fcrm/pagetype/crm_twilio_settings/crm_twilio_settings.json +#: crm/fcrm/pagetype/erpnext_crm_settings/erpnext_crm_settings.json +#: crm/fcrm/pagetype/helpdesk_crm_settings/helpdesk_crm_settings.json #: frontend/src/components/Settings/AssignmentRules/AssignmentRuleView.vue:32 #: frontend/src/components/Settings/AssignmentRules/AssignmentRulesList.vue:21 #: frontend/src/components/Settings/EmailTemplate/EditEmailTemplate.vue:18 @@ -2313,15 +2313,15 @@ msgstr "" msgid "Enabled" msgstr "Включено" -#. Label of the end_date (Date) field in DocType 'CRM Service Level Agreement' -#: crm/fcrm/doctype/crm_service_level_agreement/crm_service_level_agreement.json +#. Label of the end_date (Date) field in PageType 'CRM Service Level Agreement' +#: crm/fcrm/pagetype/crm_service_level_agreement/crm_service_level_agreement.json msgid "End Date" msgstr "" -#. Label of the end_time (Datetime) field in DocType 'CRM Call Log' -#. Label of the end_time (Time) field in DocType 'CRM Service Day' -#: crm/fcrm/doctype/crm_call_log/crm_call_log.json -#: crm/fcrm/doctype/crm_service_day/crm_service_day.json +#. Label of the end_time (Datetime) field in PageType 'CRM Call Log' +#. Label of the end_time (Time) field in PageType 'CRM Service Day' +#: crm/fcrm/pagetype/crm_call_log/crm_call_log.json +#: crm/fcrm/pagetype/crm_service_day/crm_service_day.json #: frontend/src/components/Calendar/CalendarEventPanel.vue:242 #: frontend/src/components/Modals/EventModal.vue:112 msgid "End Time" @@ -2362,15 +2362,15 @@ msgstr "" msgid "Error updating field" msgstr "" -#: crm/fcrm/doctype/erpnext_crm_settings/erpnext_crm_settings.py:279 +#: crm/fcrm/pagetype/erpnext_crm_settings/erpnext_crm_settings.py:279 msgid "Error while creating customer in ERPNext, check error log for more details" msgstr "" -#: crm/fcrm/doctype/erpnext_crm_settings/erpnext_crm_settings.py:191 +#: crm/fcrm/pagetype/erpnext_crm_settings/erpnext_crm_settings.py:191 msgid "Error while creating prospect in ERPNext, check error log for more details" msgstr "" -#: crm/fcrm/doctype/erpnext_crm_settings/erpnext_crm_settings.py:117 +#: crm/fcrm/pagetype/erpnext_crm_settings/erpnext_crm_settings.py:117 msgid "Error while fetching customer in ERPNext, check error log for more details" msgstr "" @@ -2395,16 +2395,16 @@ msgstr "" msgid "Excel" msgstr "" -#. Label of the exchange_rate (Float) field in DocType 'CRM Deal' -#. Label of the exchange_rate (Float) field in DocType 'CRM Organization' -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_organization/crm_organization.json +#. Label of the exchange_rate (Float) field in PageType 'CRM Deal' +#. Label of the exchange_rate (Float) field in PageType 'CRM Organization' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_organization/crm_organization.json msgid "Exchange Rate" msgstr "" -#. Label of the exchange_rate_provider_section (Section Break) field in DocType +#. Label of the exchange_rate_provider_section (Section Break) field in PageType #. 'FCRM Settings' -#: crm/fcrm/doctype/fcrm_settings/fcrm_settings.json +#: crm/fcrm/pagetype/fcrm_settings/fcrm_settings.json msgid "Exchange Rate Provider" msgstr "" @@ -2412,12 +2412,12 @@ msgstr "" msgid "Exchange rate provider" msgstr "" -#. Option for the 'Telephony Medium' (Select) field in DocType 'CRM Call Log' -#. Label of the exotel (Check) field in DocType 'CRM Telephony Agent' -#. Option for the 'Default Medium' (Select) field in DocType 'CRM Telephony +#. Option for the 'Telephony Medium' (Select) field in PageType 'CRM Call Log' +#. Label of the exotel (Check) field in PageType 'CRM Telephony Agent' +#. Option for the 'Default Medium' (Select) field in PageType 'CRM Telephony #. Agent' -#: crm/fcrm/doctype/crm_call_log/crm_call_log.json -#: crm/fcrm/doctype/crm_telephony_agent/crm_telephony_agent.json +#: crm/fcrm/pagetype/crm_call_log/crm_call_log.json +#: crm/fcrm/pagetype/crm_telephony_agent/crm_telephony_agent.json #: frontend/src/components/Layouts/AppSidebar.vue:602 #: frontend/src/components/Settings/TelephonySettings.vue:41 #: frontend/src/components/Settings/TelephonySettings.vue:63 @@ -2428,8 +2428,8 @@ msgstr "" msgid "Exotel Exception" msgstr "" -#. Label of the exotel_number (Data) field in DocType 'CRM Telephony Agent' -#: crm/fcrm/doctype/crm_telephony_agent/crm_telephony_agent.json +#. Label of the exotel_number (Data) field in PageType 'CRM Telephony Agent' +#: crm/fcrm/pagetype/crm_telephony_agent/crm_telephony_agent.json msgid "Exotel Number" msgstr "" @@ -2453,26 +2453,26 @@ msgstr "" msgid "Expand" msgstr "" -#. Label of the expected_closure_date (Date) field in DocType 'CRM Deal' -#: crm/fcrm/doctype/crm_deal/crm_deal.json +#. Label of the expected_closure_date (Date) field in PageType 'CRM Deal' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json msgid "Expected Closure Date" msgstr "" -#: crm/fcrm/doctype/crm_deal/crm_deal.py:173 +#: crm/fcrm/pagetype/crm_deal/crm_deal.py:173 msgid "Expected Closure Date is required." msgstr "" -#. Label of the expected_deal_value (Currency) field in DocType 'CRM Deal' -#: crm/fcrm/doctype/crm_deal/crm_deal.json +#. Label of the expected_deal_value (Currency) field in PageType 'CRM Deal' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json msgid "Expected Deal Value" msgstr "" -#: crm/fcrm/doctype/crm_deal/crm_deal.py:171 +#: crm/fcrm/pagetype/crm_deal/crm_deal.py:171 msgid "Expected Deal Value is required." msgstr "" -#. Option for the 'Status' (Select) field in DocType 'CRM Invitation' -#: crm/fcrm/doctype/crm_invitation/crm_invitation.json +#. Option for the 'Status' (Select) field in PageType 'CRM Invitation' +#: crm/fcrm/pagetype/crm_invitation/crm_invitation.json msgid "Expired" msgstr "" @@ -2489,22 +2489,22 @@ msgstr "" msgid "Export Type" msgstr "Тип экспорта" -#. Name of a DocType -#: crm/fcrm/doctype/fcrm_note/fcrm_note.json +#. Name of a PageType +#: crm/fcrm/pagetype/fcrm_note/fcrm_note.json msgid "FCRM Note" msgstr "" -#. Name of a DocType -#: crm/fcrm/doctype/fcrm_settings/fcrm_settings.json +#. Name of a PageType +#: crm/fcrm/pagetype/fcrm_settings/fcrm_settings.json msgid "FCRM Settings" msgstr "" -#. Option for the 'Status' (Select) field in DocType 'CRM Call Log' -#. Option for the 'SLA Status' (Select) field in DocType 'CRM Deal' -#. Option for the 'SLA Status' (Select) field in DocType 'CRM Lead' -#: crm/fcrm/doctype/crm_call_log/crm_call_log.json -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_lead/crm_lead.json +#. Option for the 'Status' (Select) field in PageType 'CRM Call Log' +#. Option for the 'SLA Status' (Select) field in PageType 'CRM Deal' +#. Option for the 'SLA Status' (Select) field in PageType 'CRM Lead' +#: crm/fcrm/pagetype/crm_call_log/crm_call_log.json +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_lead/crm_lead.json msgid "Failed" msgstr "" @@ -2528,7 +2528,7 @@ msgstr "" msgid "Failed to delete template" msgstr "" -#: crm/fcrm/doctype/fcrm_settings/fcrm_settings.py:205 +#: crm/fcrm/pagetype/fcrm_settings/fcrm_settings.py:205 msgid "Failed to fetch exchange rate from {0} to {1} on {2}. Please check your internet connection or try again later." msgstr "" @@ -2561,8 +2561,8 @@ msgstr "" msgid "Failed to update template" msgstr "" -#. Label of the favicon (Attach) field in DocType 'FCRM Settings' -#: crm/fcrm/doctype/fcrm_settings/fcrm_settings.json +#. Label of the favicon (Attach) field in PageType 'FCRM Settings' +#: crm/fcrm/pagetype/fcrm_settings/fcrm_settings.json #: frontend/src/components/Settings/BrandSettings.vue:87 msgid "Favicon" msgstr "" @@ -2586,23 +2586,23 @@ msgid "File \"{0}\" was skipped because only {1} uploads are allowed" msgstr "" #: frontend/src/components/FilesUploader/FilesUploaderArea.vue:359 -msgid "File \"{0}\" was skipped because only {1} uploads are allowed for DocType \"{2}\"" +msgid "File \"{0}\" was skipped because only {1} uploads are allowed for PageType \"{2}\"" msgstr "" #: frontend/src/components/Filter.vue:6 msgid "Filter" msgstr "" -#. Label of the filters (Code) field in DocType 'CRM View Settings' -#. Label of the filters_tab (Tab Break) field in DocType 'CRM View Settings' -#: crm/fcrm/doctype/crm_view_settings/crm_view_settings.json +#. Label of the filters (Code) field in PageType 'CRM View Settings' +#. Label of the filters_tab (Tab Break) field in PageType 'CRM View Settings' +#: crm/fcrm/pagetype/crm_view_settings/crm_view_settings.json msgid "Filters" msgstr "" -#. Label of the first_name (Data) field in DocType 'CRM Deal' -#. Label of the first_name (Data) field in DocType 'CRM Lead' -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_lead/crm_lead.json +#. Label of the first_name (Data) field in PageType 'CRM Deal' +#. Label of the first_name (Data) field in PageType 'CRM Lead' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_lead/crm_lead.json #: frontend/src/components/ColumnSettings.vue:103 #: frontend/src/components/Filter.vue:57 frontend/src/components/Filter.vue:88 #: frontend/src/components/SortBy.vue:6 frontend/src/components/SortBy.vue:103 @@ -2614,30 +2614,30 @@ msgstr "Имя" msgid "First Name is mandatory" msgstr "" -#. Label of the first_responded_on (Datetime) field in DocType 'CRM Deal' -#. Label of the first_responded_on (Datetime) field in DocType 'CRM Lead' -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_lead/crm_lead.json +#. Label of the first_responded_on (Datetime) field in PageType 'CRM Deal' +#. Label of the first_responded_on (Datetime) field in PageType 'CRM Lead' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_lead/crm_lead.json msgid "First Responded On" msgstr "" -#. Option for the 'SLA Status' (Select) field in DocType 'CRM Deal' -#. Option for the 'SLA Status' (Select) field in DocType 'CRM Lead' -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_lead/crm_lead.json +#. Option for the 'SLA Status' (Select) field in PageType 'CRM Deal' +#. Option for the 'SLA Status' (Select) field in PageType 'CRM Lead' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_lead/crm_lead.json msgid "First Response Due" msgstr "" -#. Label of the first_response_time (Duration) field in DocType 'CRM Service +#. Label of the first_response_time (Duration) field in PageType 'CRM Service #. Level Priority' -#: crm/fcrm/doctype/crm_service_level_priority/crm_service_level_priority.json +#: crm/fcrm/pagetype/crm_service_level_priority/crm_service_level_priority.json msgid "First Response TIme" msgstr "" -#. Label of the first_response_time (Duration) field in DocType 'CRM Deal' -#. Label of the first_response_time (Duration) field in DocType 'CRM Lead' -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_lead/crm_lead.json +#. Label of the first_response_time (Duration) field in PageType 'CRM Deal' +#. Label of the first_response_time (Duration) field in PageType 'CRM Lead' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_lead/crm_lead.json msgid "First Response Time" msgstr "" @@ -2670,66 +2670,66 @@ msgstr "" msgid "Forecasting enabled successfully" msgstr "" -#. Option for the 'Apply To' (Select) field in DocType 'CRM Form Script' -#: crm/fcrm/doctype/crm_form_script/crm_form_script.json +#. Option for the 'Apply To' (Select) field in PageType 'CRM Form Script' +#: crm/fcrm/pagetype/crm_form_script/crm_form_script.json msgid "Form" msgstr "" -#: crm/fcrm/doctype/erpnext_crm_settings/erpnext_crm_settings.js:19 +#: crm/fcrm/pagetype/erpnext_crm_settings/erpnext_crm_settings.js:19 msgid "Form Script updated successfully" msgstr "" #. Name of a Workspace -#: crm/fcrm/workspace/frappe_crm/frappe_crm.json -msgid "Frappe CRM" +#: crm/fcrm/workspace/jingrow_crm/jingrow_crm.json +msgid "Jingrow CRM" msgstr "" #: frontend/src/components/Layouts/AppSidebar.vue:608 -msgid "Frappe CRM mobile" +msgid "Jingrow CRM mobile" msgstr "" -#. Option for the 'Weekly Off' (Select) field in DocType 'CRM Holiday List' -#. Option for the 'Workday' (Select) field in DocType 'CRM Service Day' -#: crm/fcrm/doctype/crm_holiday_list/crm_holiday_list.json -#: crm/fcrm/doctype/crm_service_day/crm_service_day.json +#. Option for the 'Weekly Off' (Select) field in PageType 'CRM Holiday List' +#. Option for the 'Workday' (Select) field in PageType 'CRM Service Day' +#: crm/fcrm/pagetype/crm_holiday_list/crm_holiday_list.json +#: crm/fcrm/pagetype/crm_service_day/crm_service_day.json msgid "Friday" msgstr "" -#. Label of the from (Data) field in DocType 'CRM Call Log' -#. Label of the from (Data) field in DocType 'CRM Status Change Log' -#: crm/fcrm/doctype/crm_call_log/crm_call_log.json -#: crm/fcrm/doctype/crm_status_change_log/crm_status_change_log.json +#. Label of the from (Data) field in PageType 'CRM Call Log' +#. Label of the from (Data) field in PageType 'CRM Status Change Log' +#: crm/fcrm/pagetype/crm_call_log/crm_call_log.json +#: crm/fcrm/pagetype/crm_status_change_log/crm_status_change_log.json msgid "From" msgstr "" -#. Label of the from_date (Date) field in DocType 'CRM Holiday List' -#. Label of the from_date (Datetime) field in DocType 'CRM Status Change Log' -#: crm/fcrm/doctype/crm_holiday_list/crm_holiday_list.json -#: crm/fcrm/doctype/crm_status_change_log/crm_status_change_log.json +#. Label of the from_date (Date) field in PageType 'CRM Holiday List' +#. Label of the from_date (Datetime) field in PageType 'CRM Status Change Log' +#: crm/fcrm/pagetype/crm_holiday_list/crm_holiday_list.json +#: crm/fcrm/pagetype/crm_status_change_log/crm_status_change_log.json msgid "From Date" msgstr "" -#. Label of the from_type (Data) field in DocType 'CRM Status Change Log' -#: crm/fcrm/doctype/crm_status_change_log/crm_status_change_log.json +#. Label of the from_type (Data) field in PageType 'CRM Status Change Log' +#: crm/fcrm/pagetype/crm_status_change_log/crm_status_change_log.json msgid "From Type" msgstr "" -#. Label of the from_user (Link) field in DocType 'CRM Notification' -#: crm/fcrm/doctype/crm_notification/crm_notification.json +#. Label of the from_user (Link) field in PageType 'CRM Notification' +#: crm/fcrm/pagetype/crm_notification/crm_notification.json msgid "From User" msgstr "" -#. Option for the 'SLA Status' (Select) field in DocType 'CRM Deal' -#. Option for the 'SLA Status' (Select) field in DocType 'CRM Lead' -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_lead/crm_lead.json +#. Option for the 'SLA Status' (Select) field in PageType 'CRM Deal' +#. Option for the 'SLA Status' (Select) field in PageType 'CRM Lead' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_lead/crm_lead.json msgid "Fulfilled" msgstr "" -#. Label of the full_name (Data) field in DocType 'CRM Contacts' -#. Label of the lead_name (Data) field in DocType 'CRM Lead' -#: crm/fcrm/doctype/crm_contacts/crm_contacts.json -#: crm/fcrm/doctype/crm_lead/crm_lead.json +#. Label of the full_name (Data) field in PageType 'CRM Contacts' +#. Label of the lead_name (Data) field in PageType 'CRM Lead' +#: crm/fcrm/pagetype/crm_contacts/crm_contacts.json +#: crm/fcrm/pagetype/crm_lead/crm_lead.json msgid "Full Name" msgstr "Полное имя" @@ -2742,12 +2742,12 @@ msgstr "" msgid "GMT+5:30" msgstr "" -#. Label of the gender (Link) field in DocType 'CRM Contacts' -#. Label of the gender (Link) field in DocType 'CRM Deal' -#. Label of the gender (Link) field in DocType 'CRM Lead' -#: crm/fcrm/doctype/crm_contacts/crm_contacts.json -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_lead/crm_lead.json +#. Label of the gender (Link) field in PageType 'CRM Contacts' +#. Label of the gender (Link) field in PageType 'CRM Deal' +#. Label of the gender (Link) field in PageType 'CRM Lead' +#: crm/fcrm/pagetype/crm_contacts/crm_contacts.json +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_lead/crm_lead.json msgid "Gender" msgstr "Пол" @@ -2771,20 +2771,20 @@ msgstr "" msgid "Go to website" msgstr "" -#. Option for the 'Type' (Select) field in DocType 'CRM Fields Layout' -#: crm/fcrm/doctype/crm_fields_layout/crm_fields_layout.json +#. Option for the 'Type' (Select) field in PageType 'CRM Fields Layout' +#: crm/fcrm/pagetype/crm_fields_layout/crm_fields_layout.json msgid "Grid Row" msgstr "" -#. Label of the group_by_tab (Tab Break) field in DocType 'CRM View Settings' -#: crm/fcrm/doctype/crm_view_settings/crm_view_settings.json +#. Label of the group_by_tab (Tab Break) field in PageType 'CRM View Settings' +#: crm/fcrm/pagetype/crm_view_settings/crm_view_settings.json #: frontend/src/components/ViewControls.vue:379 #: frontend/src/components/ViewControls.vue:611 frontend/src/utils/view.js:16 msgid "Group By" msgstr "" -#. Label of the group_by_field (Data) field in DocType 'CRM View Settings' -#: crm/fcrm/doctype/crm_view_settings/crm_view_settings.json +#. Label of the group_by_field (Data) field in PageType 'CRM View Settings' +#: crm/fcrm/pagetype/crm_view_settings/crm_view_settings.json msgid "Group By Field" msgstr "" @@ -2808,28 +2808,28 @@ msgstr "" msgid "Helpdesk" msgstr "" -#. Name of a DocType -#: crm/fcrm/doctype/helpdesk_crm_settings/helpdesk_crm_settings.json +#. Name of a PageType +#: crm/fcrm/pagetype/helpdesk_crm_settings/helpdesk_crm_settings.json msgid "Helpdesk CRM Settings" msgstr "" -#. Label of the helpdesk_site_apis_section (Section Break) field in DocType +#. Label of the helpdesk_site_apis_section (Section Break) field in PageType #. 'Helpdesk CRM Settings' -#: crm/fcrm/doctype/helpdesk_crm_settings/helpdesk_crm_settings.json +#: crm/fcrm/pagetype/helpdesk_crm_settings/helpdesk_crm_settings.json msgid "Helpdesk Site API's" msgstr "" -#. Label of the helpdesk_site_url (Data) field in DocType 'Helpdesk CRM +#. Label of the helpdesk_site_url (Data) field in PageType 'Helpdesk CRM #. Settings' -#: crm/fcrm/doctype/helpdesk_crm_settings/helpdesk_crm_settings.json +#: crm/fcrm/pagetype/helpdesk_crm_settings/helpdesk_crm_settings.json msgid "Helpdesk Site URL" msgstr "" -#: crm/fcrm/doctype/helpdesk_crm_settings/helpdesk_crm_settings.py:18 +#: crm/fcrm/pagetype/helpdesk_crm_settings/helpdesk_crm_settings.py:18 msgid "Helpdesk is not installed in the current site" msgstr "" -#: crm/fcrm/doctype/helpdesk_crm_settings/helpdesk_crm_settings.py:40 +#: crm/fcrm/pagetype/helpdesk_crm_settings/helpdesk_crm_settings.py:40 msgid "Helpdesk is not integrated with the CRM" msgstr "" @@ -2845,8 +2845,8 @@ msgstr "" msgid "Hi John, \\n\\nCan you please provide more details on this..." msgstr "" -#. Label of the hidden (Check) field in DocType 'CRM Dropdown Item' -#: crm/fcrm/doctype/crm_dropdown_item/crm_dropdown_item.json +#. Label of the hidden (Check) field in PageType 'CRM Dropdown Item' +#: crm/fcrm/pagetype/crm_dropdown_item/crm_dropdown_item.json msgid "Hidden" msgstr "" @@ -2877,26 +2877,26 @@ msgstr "" msgid "Hide preview" msgstr "" -#. Option for the 'Priority' (Select) field in DocType 'CRM Task' -#: crm/fcrm/doctype/crm_task/crm_task.json +#. Option for the 'Priority' (Select) field in PageType 'CRM Task' +#: crm/fcrm/pagetype/crm_task/crm_task.json msgid "High" msgstr "" -#. Label of the holiday_list (Link) field in DocType 'CRM Service Level +#. Label of the holiday_list (Link) field in PageType 'CRM Service Level #. Agreement' -#: crm/fcrm/doctype/crm_service_level_agreement/crm_service_level_agreement.json +#: crm/fcrm/pagetype/crm_service_level_agreement/crm_service_level_agreement.json msgid "Holiday List" msgstr "" -#. Label of the holiday_list_name (Data) field in DocType 'CRM Holiday List' -#: crm/fcrm/doctype/crm_holiday_list/crm_holiday_list.json +#. Label of the holiday_list_name (Data) field in PageType 'CRM Holiday List' +#: crm/fcrm/pagetype/crm_holiday_list/crm_holiday_list.json msgid "Holiday List Name" msgstr "" -#. Label of the holidays_section (Section Break) field in DocType 'CRM Holiday +#. Label of the holidays_section (Section Break) field in PageType 'CRM Holiday #. List' -#. Label of the holidays (Table) field in DocType 'CRM Holiday List' -#: crm/fcrm/doctype/crm_holiday_list/crm_holiday_list.json +#. Label of the holidays (Table) field in PageType 'CRM Holiday List' +#: crm/fcrm/pagetype/crm_holiday_list/crm_holiday_list.json msgid "Holidays" msgstr "" @@ -2914,15 +2914,15 @@ msgstr "" msgid "I understand, add conditions" msgstr "" -#. Label of the id (Data) field in DocType 'CRM Call Log' -#: crm/fcrm/doctype/crm_call_log/crm_call_log.json +#. Label of the id (Data) field in PageType 'CRM Call Log' +#: crm/fcrm/pagetype/crm_call_log/crm_call_log.json msgid "ID" msgstr "" -#. Label of the icon (Code) field in DocType 'CRM Dropdown Item' -#. Label of the icon (Data) field in DocType 'CRM View Settings' -#: crm/fcrm/doctype/crm_dropdown_item/crm_dropdown_item.json -#: crm/fcrm/doctype/crm_view_settings/crm_view_settings.json +#. Label of the icon (Code) field in PageType 'CRM Dropdown Item' +#. Label of the icon (Data) field in PageType 'CRM View Settings' +#: crm/fcrm/pagetype/crm_dropdown_item/crm_dropdown_item.json +#: crm/fcrm/pagetype/crm_view_settings/crm_view_settings.json msgid "Icon" msgstr "Иконка" @@ -2942,10 +2942,10 @@ msgstr "" msgid "If enabled, records can be created from the incoming emails on this account." msgstr "" -#. Label of the image (Attach Image) field in DocType 'CRM Lead' -#. Label of the image (Attach Image) field in DocType 'CRM Product' -#: crm/fcrm/doctype/crm_lead/crm_lead.json -#: crm/fcrm/doctype/crm_product/crm_product.json +#. Label of the image (Attach Image) field in PageType 'CRM Lead' +#. Label of the image (Attach Image) field in PageType 'CRM Product' +#: crm/fcrm/pagetype/crm_lead/crm_lead.json +#: crm/fcrm/pagetype/crm_product/crm_product.json msgid "Image" msgstr "Изображение" @@ -2957,10 +2957,10 @@ msgstr "Изображение" msgid "In" msgstr "" -#. Option for the 'Status' (Select) field in DocType 'CRM Call Log' -#. Option for the 'Status' (Select) field in DocType 'CRM Task' -#: crm/fcrm/doctype/crm_call_log/crm_call_log.json -#: crm/fcrm/doctype/crm_task/crm_task.json +#. Option for the 'Status' (Select) field in PageType 'CRM Call Log' +#. Option for the 'Status' (Select) field in PageType 'CRM Task' +#: crm/fcrm/pagetype/crm_call_log/crm_call_log.json +#: crm/fcrm/pagetype/crm_task/crm_task.json msgid "In Progress" msgstr "" @@ -2976,8 +2976,8 @@ msgstr "" msgid "Inbox" msgstr "Входящие" -#. Option for the 'Type' (Select) field in DocType 'CRM Call Log' -#: crm/fcrm/doctype/crm_call_log/crm_call_log.json +#. Option for the 'Type' (Select) field in PageType 'CRM Call Log' +#: crm/fcrm/pagetype/crm_call_log/crm_call_log.json msgid "Incoming" msgstr "" @@ -2985,24 +2985,24 @@ msgstr "" msgid "Incoming call..." msgstr "" -#. Label of a shortcut in the Frappe CRM Workspace -#: crm/fcrm/workspace/frappe_crm/frappe_crm.json +#. Label of a shortcut in the Jingrow CRM Workspace +#: crm/fcrm/workspace/jingrow_crm/jingrow_crm.json msgid "Industries" msgstr "" -#. Label of the industry (Link) field in DocType 'CRM Deal' -#. Label of the industry (Data) field in DocType 'CRM Industry' -#. Label of the industry (Link) field in DocType 'CRM Lead' -#. Label of the industry (Link) field in DocType 'CRM Organization' -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_industry/crm_industry.json -#: crm/fcrm/doctype/crm_lead/crm_lead.json -#: crm/fcrm/doctype/crm_organization/crm_organization.json +#. Label of the industry (Link) field in PageType 'CRM Deal' +#. Label of the industry (Data) field in PageType 'CRM Industry' +#. Label of the industry (Link) field in PageType 'CRM Lead' +#. Label of the industry (Link) field in PageType 'CRM Organization' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_industry/crm_industry.json +#: crm/fcrm/pagetype/crm_lead/crm_lead.json +#: crm/fcrm/pagetype/crm_organization/crm_organization.json msgid "Industry" msgstr "" -#. Option for the 'Status' (Select) field in DocType 'CRM Call Log' -#: crm/fcrm/doctype/crm_call_log/crm_call_log.json +#. Option for the 'Status' (Select) field in PageType 'CRM Call Log' +#: crm/fcrm/pagetype/crm_call_log/crm_call_log.json msgid "Initiated" msgstr "" @@ -3037,7 +3037,7 @@ msgstr "" msgid "Introduction" msgstr "" -#: crm/fcrm/doctype/crm_twilio_settings/crm_twilio_settings.py:33 +#: crm/fcrm/pagetype/crm_twilio_settings/crm_twilio_settings.py:33 msgid "Invalid Account SID or Auth Token." msgstr "" @@ -3054,7 +3054,7 @@ msgstr "" msgid "Invalid chart name" msgstr "" -#: crm/fcrm/doctype/crm_exotel_settings/crm_exotel_settings.py:25 +#: crm/fcrm/pagetype/crm_exotel_settings/crm_exotel_settings.py:25 msgid "Invalid credentials" msgstr "" @@ -3103,8 +3103,8 @@ msgstr "" msgid "Invite your team" msgstr "" -#. Label of the invited_by (Link) field in DocType 'CRM Invitation' -#: crm/fcrm/doctype/crm_invitation/crm_invitation.json +#. Label of the invited_by (Link) field in PageType 'CRM Invitation' +#: crm/fcrm/pagetype/crm_invitation/crm_invitation.json msgid "Invited By" msgstr "" @@ -3118,59 +3118,59 @@ msgstr "" msgid "Is" msgstr "" -#. Label of the is_default (Check) field in DocType 'CRM View Settings' -#: crm/fcrm/doctype/crm_view_settings/crm_view_settings.json +#. Label of the is_default (Check) field in PageType 'CRM View Settings' +#: crm/fcrm/pagetype/crm_view_settings/crm_view_settings.json msgid "Is Default" msgstr "Является значением по умолчанию" -#. Label of the is_erpnext_in_different_site (Check) field in DocType 'ERPNext +#. Label of the is_erpnext_in_different_site (Check) field in PageType 'ERPNext #. CRM Settings' -#: crm/fcrm/doctype/erpnext_crm_settings/erpnext_crm_settings.json +#: crm/fcrm/pagetype/erpnext_crm_settings/erpnext_crm_settings.json msgid "Is ERPNext installed on a different site?" msgstr "" -#. Label of the is_group (Check) field in DocType 'CRM Territory' -#: crm/fcrm/doctype/crm_territory/crm_territory.json +#. Label of the is_group (Check) field in PageType 'CRM Territory' +#: crm/fcrm/pagetype/crm_territory/crm_territory.json msgid "Is Group" msgstr "" -#. Label of the is_helpdesk_in_different_site (Check) field in DocType +#. Label of the is_helpdesk_in_different_site (Check) field in PageType #. 'Helpdesk CRM Settings' -#: crm/fcrm/doctype/helpdesk_crm_settings/helpdesk_crm_settings.json +#: crm/fcrm/pagetype/helpdesk_crm_settings/helpdesk_crm_settings.json msgid "Is Helpdesk installed on a different site?" msgstr "" -#. Label of the is_primary (Check) field in DocType 'CRM Contacts' -#. Label of the is_primary (Check) field in DocType 'CRM Telephony Phone' -#: crm/fcrm/doctype/crm_contacts/crm_contacts.json -#: crm/fcrm/doctype/crm_telephony_phone/crm_telephony_phone.json +#. Label of the is_primary (Check) field in PageType 'CRM Contacts' +#. Label of the is_primary (Check) field in PageType 'CRM Telephony Phone' +#: crm/fcrm/pagetype/crm_contacts/crm_contacts.json +#: crm/fcrm/pagetype/crm_telephony_phone/crm_telephony_phone.json msgid "Is Primary" msgstr "" -#. Label of the is_standard (Check) field in DocType 'CRM Dropdown Item' -#. Label of the is_standard (Check) field in DocType 'CRM Form Script' -#. Label of the is_standard (Check) field in DocType 'CRM View Settings' -#: crm/fcrm/doctype/crm_dropdown_item/crm_dropdown_item.json -#: crm/fcrm/doctype/crm_form_script/crm_form_script.json -#: crm/fcrm/doctype/crm_view_settings/crm_view_settings.json +#. Label of the is_standard (Check) field in PageType 'CRM Dropdown Item' +#. Label of the is_standard (Check) field in PageType 'CRM Form Script' +#. Label of the is_standard (Check) field in PageType 'CRM View Settings' +#: crm/fcrm/pagetype/crm_dropdown_item/crm_dropdown_item.json +#: crm/fcrm/pagetype/crm_form_script/crm_form_script.json +#: crm/fcrm/pagetype/crm_view_settings/crm_view_settings.json msgid "Is Standard" msgstr "Стандартный" -#. Description of the 'Enable Forecasting' (Check) field in DocType 'FCRM +#. Description of the 'Enable Forecasting' (Check) field in PageType 'FCRM #. Settings' -#: crm/fcrm/doctype/fcrm_settings/fcrm_settings.json +#: crm/fcrm/pagetype/fcrm_settings/fcrm_settings.json msgid "It will make deal's \"Expected Closure Date\" & \"Expected Deal Value\" mandatory to get accurate forecasting insights" msgstr "" -#. Label of the json (JSON) field in DocType 'CRM Global Settings' -#: crm/fcrm/doctype/crm_global_settings/crm_global_settings.json +#. Label of the json (JSON) field in PageType 'CRM Global Settings' +#: crm/fcrm/pagetype/crm_global_settings/crm_global_settings.json msgid "JSON" msgstr "" -#. Label of the job_title (Data) field in DocType 'CRM Deal' -#. Label of the job_title (Data) field in DocType 'CRM Lead' -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_lead/crm_lead.json +#. Label of the job_title (Data) field in PageType 'CRM Deal' +#. Label of the job_title (Data) field in PageType 'CRM Lead' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_lead/crm_lead.json msgid "Job Title" msgstr "" @@ -3182,20 +3182,20 @@ msgstr "" msgid "John Doe" msgstr "" -#. Label of the kanban_tab (Tab Break) field in DocType 'CRM View Settings' -#: crm/fcrm/doctype/crm_view_settings/crm_view_settings.json +#. Label of the kanban_tab (Tab Break) field in PageType 'CRM View Settings' +#: crm/fcrm/pagetype/crm_view_settings/crm_view_settings.json #: frontend/src/components/ViewControls.vue:384 #: frontend/src/components/ViewControls.vue:600 frontend/src/utils/view.js:20 msgid "Kanban" msgstr "Канбан" -#. Label of the kanban_columns (Code) field in DocType 'CRM View Settings' -#: crm/fcrm/doctype/crm_view_settings/crm_view_settings.json +#. Label of the kanban_columns (Code) field in PageType 'CRM View Settings' +#: crm/fcrm/pagetype/crm_view_settings/crm_view_settings.json msgid "Kanban Columns" msgstr "" -#. Label of the kanban_fields (Code) field in DocType 'CRM View Settings' -#: crm/fcrm/doctype/crm_view_settings/crm_view_settings.json +#. Label of the kanban_fields (Code) field in PageType 'CRM View Settings' +#: crm/fcrm/pagetype/crm_view_settings/crm_view_settings.json msgid "Kanban Fields" msgstr "" @@ -3204,15 +3204,15 @@ msgstr "" msgid "Kanban Settings" msgstr "" -#. Label of the key (Data) field in DocType 'CRM Invitation' -#: crm/fcrm/doctype/crm_invitation/crm_invitation.json +#. Label of the key (Data) field in PageType 'CRM Invitation' +#: crm/fcrm/pagetype/crm_invitation/crm_invitation.json msgid "Key" msgstr "Ключ" -#. Label of the label (Data) field in DocType 'CRM Dropdown Item' -#. Label of the label (Data) field in DocType 'CRM View Settings' -#: crm/fcrm/doctype/crm_dropdown_item/crm_dropdown_item.json -#: crm/fcrm/doctype/crm_view_settings/crm_view_settings.json +#. Label of the label (Data) field in PageType 'CRM Dropdown Item' +#. Label of the label (Data) field in PageType 'CRM View Settings' +#: crm/fcrm/pagetype/crm_dropdown_item/crm_dropdown_item.json +#: crm/fcrm/pagetype/crm_view_settings/crm_view_settings.json #: frontend/src/components/ColumnSettings.vue:100 msgid "Label" msgstr "Этикетка" @@ -3229,10 +3229,10 @@ msgstr "" msgid "Last Month" msgstr "" -#. Label of the last_name (Data) field in DocType 'CRM Deal' -#. Label of the last_name (Data) field in DocType 'CRM Lead' -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_lead/crm_lead.json +#. Label of the last_name (Data) field in PageType 'CRM Deal' +#. Label of the last_name (Data) field in PageType 'CRM Lead' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_lead/crm_lead.json msgid "Last Name" msgstr "Фамилия" @@ -3240,9 +3240,9 @@ msgstr "Фамилия" msgid "Last Quarter" msgstr "" -#. Label of the last_status_change_log (Link) field in DocType 'CRM Status +#. Label of the last_status_change_log (Link) field in PageType 'CRM Status #. Change Log' -#: crm/fcrm/doctype/crm_status_change_log/crm_status_change_log.json +#: crm/fcrm/pagetype/crm_status_change_log/crm_status_change_log.json msgid "Last Status Change Log" msgstr "" @@ -3270,15 +3270,15 @@ msgstr "" msgid "Last user assigned by this rule" msgstr "" -#. Label of the layout (Code) field in DocType 'CRM Dashboard' -#. Label of the layout (Code) field in DocType 'CRM Fields Layout' -#: crm/fcrm/doctype/crm_dashboard/crm_dashboard.json -#: crm/fcrm/doctype/crm_fields_layout/crm_fields_layout.json +#. Label of the layout (Code) field in PageType 'CRM Dashboard' +#. Label of the layout (Code) field in PageType 'CRM Fields Layout' +#: crm/fcrm/pagetype/crm_dashboard/crm_dashboard.json +#: crm/fcrm/pagetype/crm_fields_layout/crm_fields_layout.json msgid "Layout" msgstr "" -#. Label of the lead (Link) field in DocType 'CRM Deal' -#: crm/fcrm/doctype/crm_deal/crm_deal.json +#. Label of the lead (Link) field in PageType 'CRM Deal' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json #: frontend/src/components/Calendar/CalendarEventPanel.vue:263 #: frontend/src/components/Calendar/CalendarEventPanel.vue:288 #: frontend/src/components/Layouts/AppSidebar.vue:550 @@ -3291,32 +3291,32 @@ msgstr "" msgid "Lead" msgstr "" -#. Label of the lead_details_tab (Tab Break) field in DocType 'CRM Deal' -#: crm/fcrm/doctype/crm_deal/crm_deal.json +#. Label of the lead_details_tab (Tab Break) field in PageType 'CRM Deal' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json msgid "Lead Details" msgstr "" -#. Label of the lead_name (Data) field in DocType 'CRM Deal' -#: crm/fcrm/doctype/crm_deal/crm_deal.json +#. Label of the lead_name (Data) field in PageType 'CRM Deal' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json msgid "Lead Name" msgstr "" -#. Label of the lead_owner (Link) field in DocType 'CRM Lead' -#: crm/fcrm/doctype/crm_lead/crm_lead.json +#. Label of the lead_owner (Link) field in PageType 'CRM Lead' +#: crm/fcrm/pagetype/crm_lead/crm_lead.json msgid "Lead Owner" msgstr "" -#: crm/fcrm/doctype/crm_lead/crm_lead.py:73 +#: crm/fcrm/pagetype/crm_lead/crm_lead.py:73 msgid "Lead Owner cannot be same as the Lead Email Address" msgstr "" -#. Label of a shortcut in the Frappe CRM Workspace -#: crm/fcrm/workspace/frappe_crm/frappe_crm.json +#. Label of a shortcut in the Jingrow CRM Workspace +#: crm/fcrm/workspace/jingrow_crm/jingrow_crm.json msgid "Lead Sources" msgstr "" -#. Label of a shortcut in the Frappe CRM Workspace -#: crm/fcrm/workspace/frappe_crm/frappe_crm.json +#. Label of a shortcut in the Jingrow CRM Workspace +#: crm/fcrm/workspace/jingrow_crm/jingrow_crm.json msgid "Lead Statuses" msgstr "" @@ -3328,8 +3328,8 @@ msgstr "" msgid "Lead to deal conversion pipeline" msgstr "" -#. Label of a shortcut in the Frappe CRM Workspace -#: crm/fcrm/workspace/frappe_crm/frappe_crm.json +#. Label of a shortcut in the Jingrow CRM Workspace +#: crm/fcrm/workspace/jingrow_crm/jingrow_crm.json #: frontend/src/pages/InvalidPage.vue:9 frontend/src/pages/Lead.vue:340 #: frontend/src/pages/MobileLead.vue:291 msgid "Leads" @@ -3345,8 +3345,8 @@ msgstr "" msgid "Learn about conditions" msgstr "" -#. Label of the lft (Int) field in DocType 'CRM Territory' -#: crm/fcrm/doctype/crm_territory/crm_territory.json +#. Label of the lft (Int) field in PageType 'CRM Territory' +#: crm/fcrm/pagetype/crm_territory/crm_territory.json msgid "Left" msgstr "Левый" @@ -3367,15 +3367,15 @@ msgstr "" msgid "Link" msgstr "" -#. Label of the links (Table) field in DocType 'CRM Call Log' -#: crm/fcrm/doctype/crm_call_log/crm_call_log.json +#. Label of the links (Table) field in PageType 'CRM Call Log' +#: crm/fcrm/pagetype/crm_call_log/crm_call_log.json msgid "Links" msgstr "Ссылки" -#. Option for the 'Apply To' (Select) field in DocType 'CRM Form Script' -#. Label of the list_tab (Tab Break) field in DocType 'CRM View Settings' -#: crm/fcrm/doctype/crm_form_script/crm_form_script.json -#: crm/fcrm/doctype/crm_view_settings/crm_view_settings.json +#. Option for the 'Apply To' (Select) field in PageType 'CRM Form Script' +#. Label of the list_tab (Tab Break) field in PageType 'CRM View Settings' +#: crm/fcrm/pagetype/crm_form_script/crm_form_script.json +#: crm/fcrm/pagetype/crm_view_settings/crm_view_settings.json #: frontend/src/components/ViewControls.vue:374 #: frontend/src/components/ViewControls.vue:589 frontend/src/utils/view.js:12 msgid "List" @@ -3385,9 +3385,9 @@ msgstr "" msgid "Listen" msgstr "" -#. Label of the load_default_columns (Check) field in DocType 'CRM View +#. Label of the load_default_columns (Check) field in PageType 'CRM View #. Settings' -#: crm/fcrm/doctype/crm_view_settings/crm_view_settings.json +#: crm/fcrm/pagetype/crm_view_settings/crm_view_settings.json msgid "Load Default Columns" msgstr "" @@ -3403,10 +3403,10 @@ msgstr "Загрузить ещё" msgid "Loading..." msgstr "" -#. Label of the log_tab (Tab Break) field in DocType 'CRM Deal' -#. Label of the log_tab (Tab Break) field in DocType 'CRM Lead' -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_lead/crm_lead.json +#. Label of the log_tab (Tab Break) field in PageType 'CRM Deal' +#. Label of the log_tab (Tab Break) field in PageType 'CRM Lead' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_lead/crm_lead.json msgid "Log" msgstr "" @@ -3417,28 +3417,28 @@ msgid "Log a Call" msgstr "" #: frontend/src/composables/frappecloud.js:23 -msgid "Login to Frappe Cloud?" +msgid "Login to Jingrow Cloud?" msgstr "" -#. Label of the brand_logo (Attach) field in DocType 'FCRM Settings' -#: crm/fcrm/doctype/fcrm_settings/fcrm_settings.json +#. Label of the brand_logo (Attach) field in PageType 'FCRM Settings' +#: crm/fcrm/pagetype/fcrm_settings/fcrm_settings.json msgid "Logo" msgstr "" -#. Option for the 'Type' (Select) field in DocType 'CRM Deal Status' -#: crm/fcrm/doctype/crm_deal_status/crm_deal_status.json +#. Option for the 'Type' (Select) field in PageType 'CRM Deal Status' +#: crm/fcrm/pagetype/crm_deal_status/crm_deal_status.json msgid "Lost" msgstr "" -#. Label of the lost_notes (Text) field in DocType 'CRM Deal' -#: crm/fcrm/doctype/crm_deal/crm_deal.json +#. Label of the lost_notes (Text) field in PageType 'CRM Deal' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json msgid "Lost Notes" msgstr "" -#. Label of the lost_reason (Link) field in DocType 'CRM Deal' -#. Label of the lost_reason (Data) field in DocType 'CRM Lost Reason' -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_lost_reason/crm_lost_reason.json +#. Label of the lost_reason (Link) field in PageType 'CRM Deal' +#. Label of the lost_reason (Data) field in PageType 'CRM Lost Reason' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_lost_reason/crm_lost_reason.json msgid "Lost Reason" msgstr "" @@ -3464,8 +3464,8 @@ msgstr "" msgid "Lost reason is required" msgstr "" -#. Option for the 'Priority' (Select) field in DocType 'CRM Task' -#: crm/fcrm/doctype/crm_task/crm_task.json +#. Option for the 'Priority' (Select) field in PageType 'CRM Task' +#: crm/fcrm/pagetype/crm_task/crm_task.json msgid "Low" msgstr "" @@ -3542,8 +3542,8 @@ msgstr "" msgid "Mandatory field error: {0}" msgstr "" -#. Option for the 'Telephony Medium' (Select) field in DocType 'CRM Call Log' -#: crm/fcrm/doctype/crm_call_log/crm_call_log.json +#. Option for the 'Telephony Medium' (Select) field in PageType 'CRM Call Log' +#: crm/fcrm/pagetype/crm_call_log/crm_call_log.json msgid "Manual" msgstr "" @@ -3562,25 +3562,25 @@ msgstr "" msgid "May 1, 2025" msgstr "" -#. Label of the medium (Data) field in DocType 'CRM Call Log' -#. Option for the 'Priority' (Select) field in DocType 'CRM Task' -#: crm/fcrm/doctype/crm_call_log/crm_call_log.json -#: crm/fcrm/doctype/crm_task/crm_task.json +#. Label of the medium (Data) field in PageType 'CRM Call Log' +#. Option for the 'Priority' (Select) field in PageType 'CRM Task' +#: crm/fcrm/pagetype/crm_call_log/crm_call_log.json +#: crm/fcrm/pagetype/crm_task/crm_task.json msgid "Medium" msgstr "" -#. Option for the 'Type' (Select) field in DocType 'CRM Notification' -#: crm/fcrm/doctype/crm_notification/crm_notification.json +#. Option for the 'Type' (Select) field in PageType 'CRM Notification' +#: crm/fcrm/pagetype/crm_notification/crm_notification.json msgid "Mention" msgstr "" -#. Label of the message (HTML Editor) field in DocType 'CRM Notification' -#: crm/fcrm/doctype/crm_notification/crm_notification.json +#. Label of the message (HTML Editor) field in PageType 'CRM Notification' +#: crm/fcrm/pagetype/crm_notification/crm_notification.json msgid "Message" msgstr "Сообщение" -#. Label of the middle_name (Data) field in DocType 'CRM Lead' -#: crm/fcrm/doctype/crm_lead/crm_lead.json +#. Label of the middle_name (Data) field in PageType 'CRM Lead' +#: crm/fcrm/pagetype/crm_lead/crm_lead.json msgid "Middle Name" msgstr "Отчество" @@ -3588,10 +3588,10 @@ msgstr "Отчество" msgid "Minimize" msgstr "" -#. Label of the mobile_no (Data) field in DocType 'CRM Contacts' -#. Label of the mobile_no (Data) field in DocType 'CRM Lead' -#: crm/fcrm/doctype/crm_contacts/crm_contacts.json -#: crm/fcrm/doctype/crm_lead/crm_lead.json +#. Label of the mobile_no (Data) field in PageType 'CRM Contacts' +#. Label of the mobile_no (Data) field in PageType 'CRM Lead' +#: crm/fcrm/pagetype/crm_contacts/crm_contacts.json +#: crm/fcrm/pagetype/crm_lead/crm_lead.json msgid "Mobile No" msgstr "Номер мобильного телефона" @@ -3600,8 +3600,8 @@ msgstr "Номер мобильного телефона" msgid "Mobile No should be a number" msgstr "" -#. Label of the mobile_no (Data) field in DocType 'CRM Telephony Agent' -#: crm/fcrm/doctype/crm_telephony_agent/crm_telephony_agent.json +#. Label of the mobile_no (Data) field in PageType 'CRM Telephony Agent' +#: crm/fcrm/pagetype/crm_telephony_agent/crm_telephony_agent.json msgid "Mobile No." msgstr "Номер мобильного телефона." @@ -3623,10 +3623,10 @@ msgstr "" msgid "Mobile no" msgstr "" -#. Option for the 'Weekly Off' (Select) field in DocType 'CRM Holiday List' -#. Option for the 'Workday' (Select) field in DocType 'CRM Service Day' -#: crm/fcrm/doctype/crm_holiday_list/crm_holiday_list.json -#: crm/fcrm/doctype/crm_service_day/crm_service_day.json +#. Option for the 'Weekly Off' (Select) field in PageType 'CRM Holiday List' +#. Option for the 'Workday' (Select) field in PageType 'CRM Service Day' +#: crm/fcrm/pagetype/crm_holiday_list/crm_holiday_list.json +#: crm/fcrm/pagetype/crm_service_day/crm_service_day.json msgid "Monday" msgstr "" @@ -3658,12 +3658,12 @@ msgstr "" msgid "My Open Deals" msgstr "" -#. Label of the title (Data) field in DocType 'CRM Dashboard' -#. Label of the name1 (Data) field in DocType 'CRM Dropdown Item' -#. Label of the brand_name (Data) field in DocType 'FCRM Settings' -#: crm/fcrm/doctype/crm_dashboard/crm_dashboard.json -#: crm/fcrm/doctype/crm_dropdown_item/crm_dropdown_item.json -#: crm/fcrm/doctype/fcrm_settings/fcrm_settings.json +#. Label of the title (Data) field in PageType 'CRM Dashboard' +#. Label of the name1 (Data) field in PageType 'CRM Dropdown Item' +#. Label of the brand_name (Data) field in PageType 'FCRM Settings' +#: crm/fcrm/pagetype/crm_dashboard/crm_dashboard.json +#: crm/fcrm/pagetype/crm_dropdown_item/crm_dropdown_item.json +#: crm/fcrm/pagetype/fcrm_settings/fcrm_settings.json #: frontend/src/components/Settings/AssignmentRules/AssignmentRuleView.vue:51 #: frontend/src/components/Settings/AssignmentRules/AssignmentRuleView.vue:52 #: frontend/src/components/Settings/EmailTemplate/EditEmailTemplate.vue:39 @@ -3680,10 +3680,10 @@ msgstr "" msgid "Name is required" msgstr "" -#. Label of the naming_series (Select) field in DocType 'CRM Deal' -#. Label of the naming_series (Select) field in DocType 'CRM Product' -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_product/crm_product.json +#. Label of the naming_series (Select) field in PageType 'CRM Deal' +#. Label of the naming_series (Select) field in PageType 'CRM Product' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_product/crm_product.json msgid "Naming Series" msgstr "Именование серий" @@ -3691,15 +3691,15 @@ msgstr "Именование серий" msgid "Nested conditions" msgstr "" -#. Label of the net_amount (Currency) field in DocType 'CRM Products' -#: crm/fcrm/doctype/crm_products/crm_products.json +#. Label of the net_amount (Currency) field in PageType 'CRM Products' +#: crm/fcrm/pagetype/crm_products/crm_products.json msgid "Net Amount" msgstr "" -#. Label of the net_total (Currency) field in DocType 'CRM Deal' -#. Label of the net_total (Currency) field in DocType 'CRM Lead' -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_lead/crm_lead.json +#. Label of the net_total (Currency) field in PageType 'CRM Deal' +#. Label of the net_total (Currency) field in PageType 'CRM Lead' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_lead/crm_lead.json msgid "Net Total" msgstr "" @@ -3814,8 +3814,8 @@ msgstr "" msgid "Next Quarter" msgstr "" -#. Label of the next_step (Data) field in DocType 'CRM Deal' -#: crm/fcrm/doctype/crm_deal/crm_deal.json +#. Label of the next_step (Data) field in PageType 'CRM Deal' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json msgid "Next Step" msgstr "" @@ -3831,8 +3831,8 @@ msgstr "" msgid "No" msgstr "" -#. Option for the 'Status' (Select) field in DocType 'CRM Call Log' -#: crm/fcrm/doctype/crm_call_log/crm_call_log.json +#. Option for the 'Status' (Select) field in PageType 'CRM Call Log' +#: crm/fcrm/pagetype/crm_call_log/crm_call_log.json msgid "No Answer" msgstr "" @@ -3930,12 +3930,12 @@ msgstr "" msgid "No {0} Found" msgstr "Не найдено {0}" -#. Label of the no_of_employees (Select) field in DocType 'CRM Deal' -#. Label of the no_of_employees (Select) field in DocType 'CRM Lead' -#. Label of the no_of_employees (Select) field in DocType 'CRM Organization' -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_lead/crm_lead.json -#: crm/fcrm/doctype/crm_organization/crm_organization.json +#. Label of the no_of_employees (Select) field in PageType 'CRM Deal' +#. Label of the no_of_employees (Select) field in PageType 'CRM Lead' +#. Label of the no_of_employees (Select) field in PageType 'CRM Organization' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_lead/crm_lead.json +#: crm/fcrm/pagetype/crm_organization/crm_organization.json msgid "No. of Employees" msgstr "" @@ -3981,24 +3981,24 @@ msgstr "" msgid "Not Saved" msgstr "" -#: crm/fcrm/doctype/crm_deal/crm_deal.py:272 +#: crm/fcrm/pagetype/crm_deal/crm_deal.py:272 msgid "Not allowed to add contact to Deal" msgstr "" -#: crm/fcrm/doctype/crm_lead/crm_lead.py:408 +#: crm/fcrm/pagetype/crm_lead/crm_lead.py:408 msgid "Not allowed to convert Lead to Deal" msgstr "" -#: crm/fcrm/doctype/crm_deal/crm_deal.py:283 +#: crm/fcrm/pagetype/crm_deal/crm_deal.py:283 msgid "Not allowed to remove contact from Deal" msgstr "" -#: crm/fcrm/doctype/crm_deal/crm_deal.py:294 +#: crm/fcrm/pagetype/crm_deal/crm_deal.py:294 msgid "Not allowed to set primary contact for Deal" msgstr "" -#. Label of the note (Link) field in DocType 'CRM Call Log' -#: crm/fcrm/doctype/crm_call_log/crm_call_log.json +#. Label of the note (Link) field in PageType 'CRM Call Log' +#: crm/fcrm/pagetype/crm_call_log/crm_call_log.json #: frontend/src/components/Layouts/AppSidebar.vue:554 msgid "Note" msgstr "" @@ -4017,21 +4017,21 @@ msgstr "" msgid "Notification" msgstr "" -#. Label of the notification_text (Text) field in DocType 'CRM Notification' -#: crm/fcrm/doctype/crm_notification/crm_notification.json +#. Label of the notification_text (Text) field in PageType 'CRM Notification' +#: crm/fcrm/pagetype/crm_notification/crm_notification.json msgid "Notification Text" msgstr "" -#. Label of the notification_type_doc (Dynamic Link) field in DocType 'CRM +#. Label of the notification_type_pg (Dynamic Link) field in PageType 'CRM #. Notification' -#: crm/fcrm/doctype/crm_notification/crm_notification.json -msgid "Notification Type Doc" +#: crm/fcrm/pagetype/crm_notification/crm_notification.json +msgid "Notification Type Pg" msgstr "" -#. Label of the notification_type_doctype (Link) field in DocType 'CRM +#. Label of the notification_type_pagetype (Link) field in PageType 'CRM #. Notification' -#: crm/fcrm/doctype/crm_notification/crm_notification.json -msgid "Notification Type Doctype" +#: crm/fcrm/pagetype/crm_notification/crm_notification.json +msgid "Notification Type Pagetype" msgstr "" #: frontend/src/components/Layouts/AppSidebar.vue:13 @@ -4041,8 +4041,8 @@ msgstr "" msgid "Notifications" msgstr "Уведомления" -#. Label of the number (Data) field in DocType 'CRM Telephony Phone' -#: crm/fcrm/doctype/crm_telephony_phone/crm_telephony_phone.json +#. Label of the number (Data) field in PageType 'CRM Telephony Phone' +#: crm/fcrm/pagetype/crm_telephony_phone/crm_telephony_phone.json msgid "Number" msgstr "" @@ -4064,18 +4064,18 @@ msgstr "" msgid "Old Condition" msgstr "" -#. Label of the old_parent (Link) field in DocType 'CRM Territory' -#: crm/fcrm/doctype/crm_territory/crm_territory.json +#. Label of the old_parent (Link) field in PageType 'CRM Territory' +#: crm/fcrm/pagetype/crm_territory/crm_territory.json msgid "Old Parent" msgstr "Старый родитель" -#. Option for the 'Type' (Select) field in DocType 'CRM Deal Status' -#: crm/fcrm/doctype/crm_deal_status/crm_deal_status.json +#. Option for the 'Type' (Select) field in PageType 'CRM Deal Status' +#: crm/fcrm/pagetype/crm_deal_status/crm_deal_status.json msgid "On Hold" msgstr "" -#. Option for the 'Type' (Select) field in DocType 'CRM Deal Status' -#: crm/fcrm/doctype/crm_deal_status/crm_deal_status.json +#. Option for the 'Type' (Select) field in PageType 'CRM Deal Status' +#: crm/fcrm/pagetype/crm_deal_status/crm_deal_status.json msgid "Ongoing" msgstr "" @@ -4088,13 +4088,13 @@ msgstr "" msgid "Only image files are allowed" msgstr "" -#: crm/fcrm/doctype/crm_deal/crm_deal.py:60 -#: crm/fcrm/doctype/crm_telephony_agent/crm_telephony_agent.py:23 +#: crm/fcrm/pagetype/crm_deal/crm_deal.py:60 +#: crm/fcrm/pagetype/crm_telephony_agent/crm_telephony_agent.py:23 msgid "Only one {0} can be set as primary." msgstr "Только один {0} может быть установлен в качестве основного." -#. Option for the 'Type' (Select) field in DocType 'CRM Deal Status' -#: crm/fcrm/doctype/crm_deal_status/crm_deal_status.json +#. Option for the 'Type' (Select) field in PageType 'CRM Deal Status' +#: crm/fcrm/pagetype/crm_deal_status/crm_deal_status.json msgid "Open" msgstr "" @@ -4108,13 +4108,13 @@ msgstr "" msgid "Open Lead" msgstr "" -#: crm/fcrm/doctype/crm_deal/crm_deal.js:6 -#: crm/fcrm/doctype/crm_lead/crm_lead.js:6 +#: crm/fcrm/pagetype/crm_deal/crm_deal.js:6 +#: crm/fcrm/pagetype/crm_lead/crm_lead.js:6 msgid "Open in Portal" msgstr "" -#. Label of the open_in_new_window (Check) field in DocType 'CRM Dropdown Item' -#: crm/fcrm/doctype/crm_dropdown_item/crm_dropdown_item.json +#. Label of the open_in_new_window (Check) field in PageType 'CRM Dropdown Item' +#: crm/fcrm/pagetype/crm_dropdown_item/crm_dropdown_item.json msgid "Open in new window" msgstr "" @@ -4136,17 +4136,17 @@ msgstr "Параметры" msgid "Or create leads manually" msgstr "" -#. Label of the order_by_tab (Tab Break) field in DocType 'CRM View Settings' -#. Label of the order_by (Code) field in DocType 'CRM View Settings' -#: crm/fcrm/doctype/crm_view_settings/crm_view_settings.json +#. Label of the order_by_tab (Tab Break) field in PageType 'CRM View Settings' +#. Label of the order_by (Code) field in PageType 'CRM View Settings' +#: crm/fcrm/pagetype/crm_view_settings/crm_view_settings.json msgid "Order By" msgstr "" -#. Label of the organization (Link) field in DocType 'CRM Deal' -#. Label of the organization_tab (Tab Break) field in DocType 'CRM Deal' -#. Label of the organization (Data) field in DocType 'CRM Lead' -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_lead/crm_lead.json +#. Label of the organization (Link) field in PageType 'CRM Deal' +#. Label of the organization_tab (Tab Break) field in PageType 'CRM Deal' +#. Label of the organization (Data) field in PageType 'CRM Lead' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_lead/crm_lead.json #: frontend/src/components/Layouts/AppSidebar.vue:553 #: frontend/src/components/Modals/ConvertToDealModal.vue:25 #: frontend/src/pages/Contact.vue:494 frontend/src/pages/MobileContact.vue:502 @@ -4158,22 +4158,22 @@ msgstr "" msgid "Organization" msgstr "" -#. Label of the organization_details_section (Section Break) field in DocType +#. Label of the organization_details_section (Section Break) field in PageType #. 'CRM Deal' -#: crm/fcrm/doctype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_deal/crm_deal.json msgid "Organization Details" msgstr "" -#. Label of the organization_logo (Attach Image) field in DocType 'CRM +#. Label of the organization_logo (Attach Image) field in PageType 'CRM #. Organization' -#: crm/fcrm/doctype/crm_organization/crm_organization.json +#: crm/fcrm/pagetype/crm_organization/crm_organization.json msgid "Organization Logo" msgstr "" -#. Label of the organization_name (Data) field in DocType 'CRM Deal' -#. Label of the organization_name (Data) field in DocType 'CRM Organization' -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_organization/crm_organization.json +#. Label of the organization_name (Data) field in PageType 'CRM Deal' +#. Label of the organization_name (Data) field in PageType 'CRM Organization' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_organization/crm_organization.json msgid "Organization Name" msgstr "" @@ -4181,8 +4181,8 @@ msgstr "" msgid "Organization logo" msgstr "" -#. Label of a shortcut in the Frappe CRM Workspace -#: crm/fcrm/workspace/frappe_crm/frappe_crm.json +#. Label of a shortcut in the Jingrow CRM Workspace +#: crm/fcrm/workspace/jingrow_crm/jingrow_crm.json #: frontend/src/pages/MobileOrganization.vue:205 #: frontend/src/pages/Organization.vue:234 msgid "Organizations" @@ -4196,8 +4196,8 @@ msgstr "" msgid "Other features" msgstr "" -#. Label of the organization_tab (Tab Break) field in DocType 'CRM Lead' -#: crm/fcrm/doctype/crm_lead/crm_lead.json +#. Label of the organization_tab (Tab Break) field in PageType 'CRM Lead' +#: crm/fcrm/pagetype/crm_lead/crm_lead.json msgid "Others" msgstr "Другие" @@ -4205,13 +4205,13 @@ msgstr "Другие" msgid "Outbound Call" msgstr "" -#. Option for the 'Type' (Select) field in DocType 'CRM Call Log' -#: crm/fcrm/doctype/crm_call_log/crm_call_log.json +#. Option for the 'Type' (Select) field in PageType 'CRM Call Log' +#: crm/fcrm/pagetype/crm_call_log/crm_call_log.json msgid "Outgoing" msgstr "" -#. Label of the log_owner (Link) field in DocType 'CRM Status Change Log' -#: crm/fcrm/doctype/crm_status_change_log/crm_status_change_log.json +#. Label of the log_owner (Link) field in PageType 'CRM Status Change Log' +#: crm/fcrm/pagetype/crm_status_change_log/crm_status_change_log.json msgid "Owner" msgstr "" @@ -4219,8 +4219,8 @@ msgstr "" msgid "Owner: {0}" msgstr "" -#. Label of the parent_crm_territory (Link) field in DocType 'CRM Territory' -#: crm/fcrm/doctype/crm_territory/crm_territory.json +#. Label of the parent_crm_territory (Link) field in PageType 'CRM Territory' +#: crm/fcrm/pagetype/crm_territory/crm_territory.json msgid "Parent CRM Territory" msgstr "" @@ -4251,8 +4251,8 @@ msgstr "" msgid "Payment Reminder from Frappé - (#{{ name }})" msgstr "" -#. Option for the 'Status' (Select) field in DocType 'CRM Invitation' -#: crm/fcrm/doctype/crm_invitation/crm_invitation.json +#. Option for the 'Status' (Select) field in PageType 'CRM Invitation' +#: crm/fcrm/pagetype/crm_invitation/crm_invitation.json msgid "Pending" msgstr "" @@ -4264,10 +4264,10 @@ msgstr "" msgid "Period" msgstr "" -#. Label of the person_section (Section Break) field in DocType 'CRM Deal' -#. Label of the person_tab (Tab Break) field in DocType 'CRM Lead' -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_lead/crm_lead.json +#. Label of the person_section (Section Break) field in PageType 'CRM Deal' +#. Label of the person_tab (Tab Break) field in PageType 'CRM Lead' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_lead/crm_lead.json msgid "Person" msgstr "" @@ -4275,19 +4275,19 @@ msgstr "" msgid "Personal Settings" msgstr "" -#. Label of the phone (Data) field in DocType 'CRM Contacts' -#. Label of the phone (Data) field in DocType 'CRM Lead' -#. Option for the 'Device' (Select) field in DocType 'CRM Telephony Agent' -#: crm/fcrm/doctype/crm_contacts/crm_contacts.json -#: crm/fcrm/doctype/crm_lead/crm_lead.json -#: crm/fcrm/doctype/crm_telephony_agent/crm_telephony_agent.json +#. Label of the phone (Data) field in PageType 'CRM Contacts' +#. Label of the phone (Data) field in PageType 'CRM Lead' +#. Option for the 'Device' (Select) field in PageType 'CRM Telephony Agent' +#: crm/fcrm/pagetype/crm_contacts/crm_contacts.json +#: crm/fcrm/pagetype/crm_lead/crm_lead.json +#: crm/fcrm/pagetype/crm_telephony_agent/crm_telephony_agent.json #: frontend/src/pages/MobileOrganization.vue:495 #: frontend/src/pages/Organization.vue:516 msgid "Phone" msgstr "" -#. Label of the phone_nos (Table) field in DocType 'CRM Telephony Agent' -#: crm/fcrm/doctype/crm_telephony_agent/crm_telephony_agent.json +#. Label of the phone_nos (Table) field in PageType 'CRM Telephony Agent' +#: crm/fcrm/pagetype/crm_telephony_agent/crm_telephony_agent.json msgid "Phone Numbers" msgstr "" @@ -4295,8 +4295,8 @@ msgstr "" msgid "Pin View" msgstr "" -#. Label of the pinned (Check) field in DocType 'CRM View Settings' -#: crm/fcrm/doctype/crm_view_settings/crm_view_settings.json +#. Label of the pinned (Check) field in PageType 'CRM View Settings' +#: crm/fcrm/pagetype/crm_view_settings/crm_view_settings.json msgid "Pinned" msgstr "" @@ -4346,7 +4346,7 @@ msgstr "" msgid "Please select an existing organization" msgstr "" -#: crm/fcrm/doctype/helpdesk_crm_settings/helpdesk_crm_settings.py:126 +#: crm/fcrm/pagetype/helpdesk_crm_settings/helpdesk_crm_settings.py:126 msgid "Please set Email Address" msgstr "Пожалуйста, задайте адрес электронной почты" @@ -4354,18 +4354,18 @@ msgstr "Пожалуйста, задайте адрес электронной msgid "Please setup Exotel intergration" msgstr "" -#: crm/fcrm/doctype/crm_deal/crm_deal.py:181 +#: crm/fcrm/pagetype/crm_deal/crm_deal.py:181 msgid "Please specify a reason for losing the deal." msgstr "" -#: crm/fcrm/doctype/crm_deal/crm_deal.py:183 +#: crm/fcrm/pagetype/crm_deal/crm_deal.py:183 msgid "Please specify the reason for losing the deal." msgstr "" -#. Label of the position (Int) field in DocType 'CRM Deal Status' -#. Label of the position (Int) field in DocType 'CRM Lead Status' -#: crm/fcrm/doctype/crm_deal_status/crm_deal_status.json -#: crm/fcrm/doctype/crm_lead_status/crm_lead_status.json +#. Label of the position (Int) field in PageType 'CRM Deal Status' +#. Label of the position (Int) field in PageType 'CRM Lead Status' +#: crm/fcrm/pagetype/crm_deal_status/crm_deal_status.json +#: crm/fcrm/pagetype/crm_lead_status/crm_lead_status.json msgid "Position" msgstr "" @@ -4373,18 +4373,18 @@ msgstr "" msgid "Primary" msgstr "" -#. Label of the email (Data) field in DocType 'CRM Deal' -#: crm/fcrm/doctype/crm_deal/crm_deal.json +#. Label of the email (Data) field in PageType 'CRM Deal' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json msgid "Primary Email" msgstr "Основной адрес электронной почты" -#. Label of the mobile_no (Data) field in DocType 'CRM Deal' -#: crm/fcrm/doctype/crm_deal/crm_deal.json +#. Label of the mobile_no (Data) field in PageType 'CRM Deal' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json msgid "Primary Mobile No" msgstr "" -#. Label of the phone (Data) field in DocType 'CRM Deal' -#: crm/fcrm/doctype/crm_deal/crm_deal.json +#. Label of the phone (Data) field in PageType 'CRM Deal' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json msgid "Primary Phone" msgstr "Основной телефон" @@ -4392,57 +4392,57 @@ msgstr "Основной телефон" msgid "Primary contact set" msgstr "" -#. Label of the priorities (Table) field in DocType 'CRM Service Level +#. Label of the priorities (Table) field in PageType 'CRM Service Level #. Agreement' -#: crm/fcrm/doctype/crm_service_level_agreement/crm_service_level_agreement.json +#: crm/fcrm/pagetype/crm_service_level_agreement/crm_service_level_agreement.json msgid "Priorities" msgstr "" -#. Label of the priority (Link) field in DocType 'CRM Service Level Priority' -#. Label of the priority (Select) field in DocType 'CRM Task' -#: crm/fcrm/doctype/crm_service_level_priority/crm_service_level_priority.json -#: crm/fcrm/doctype/crm_task/crm_task.json +#. Label of the priority (Link) field in PageType 'CRM Service Level Priority' +#. Label of the priority (Select) field in PageType 'CRM Task' +#: crm/fcrm/pagetype/crm_service_level_priority/crm_service_level_priority.json +#: crm/fcrm/pagetype/crm_task/crm_task.json #: frontend/src/components/Settings/AssignmentRules/AssignmentRuleView.vue:64 #: frontend/src/components/Settings/AssignmentRules/AssignmentRulesList.vue:20 msgid "Priority" msgstr "" -#. Label of the private (Check) field in DocType 'CRM Dashboard' -#: crm/fcrm/doctype/crm_dashboard/crm_dashboard.json +#. Label of the private (Check) field in PageType 'CRM Dashboard' +#: crm/fcrm/pagetype/crm_dashboard/crm_dashboard.json #: frontend/src/components/FilesUploader/FilesUploaderArea.vue:89 msgid "Private" msgstr "" -#. Label of the probability (Percent) field in DocType 'CRM Deal' -#. Label of the probability (Percent) field in DocType 'CRM Deal Status' -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_deal_status/crm_deal_status.json +#. Label of the probability (Percent) field in PageType 'CRM Deal' +#. Label of the probability (Percent) field in PageType 'CRM Deal Status' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_deal_status/crm_deal_status.json msgid "Probability" msgstr "" -#. Label of the product_code (Link) field in DocType 'CRM Products' -#: crm/fcrm/doctype/crm_products/crm_products.json +#. Label of the product_code (Link) field in PageType 'CRM Products' +#: crm/fcrm/pagetype/crm_products/crm_products.json msgid "Product" msgstr "" -#. Label of the product_code (Data) field in DocType 'CRM Product' -#: crm/fcrm/doctype/crm_product/crm_product.json +#. Label of the product_code (Data) field in PageType 'CRM Product' +#: crm/fcrm/pagetype/crm_product/crm_product.json msgid "Product Code" msgstr "" -#. Label of the product_name (Data) field in DocType 'CRM Product' -#. Label of the product_name (Data) field in DocType 'CRM Products' -#: crm/fcrm/doctype/crm_product/crm_product.json -#: crm/fcrm/doctype/crm_products/crm_products.json +#. Label of the product_name (Data) field in PageType 'CRM Product' +#. Label of the product_name (Data) field in PageType 'CRM Products' +#: crm/fcrm/pagetype/crm_product/crm_product.json +#: crm/fcrm/pagetype/crm_products/crm_products.json msgid "Product Name" msgstr "" -#. Label of the products_tab (Tab Break) field in DocType 'CRM Deal' -#. Label of the products (Table) field in DocType 'CRM Deal' -#. Label of the products_tab (Tab Break) field in DocType 'CRM Lead' -#. Label of the products (Table) field in DocType 'CRM Lead' -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_lead/crm_lead.json +#. Label of the products_tab (Tab Break) field in PageType 'CRM Deal' +#. Label of the products (Table) field in PageType 'CRM Deal' +#. Label of the products_tab (Tab Break) field in PageType 'CRM Lead' +#. Label of the products (Table) field in PageType 'CRM Lead' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_lead/crm_lead.json msgid "Products" msgstr "" @@ -4459,8 +4459,8 @@ msgstr "" msgid "Projected vs actual revenue based on deal probability" msgstr "" -#. Label of the public (Check) field in DocType 'CRM View Settings' -#: crm/fcrm/doctype/crm_view_settings/crm_view_settings.json +#. Label of the public (Check) field in PageType 'CRM View Settings' +#: crm/fcrm/pagetype/crm_view_settings/crm_view_settings.json msgid "Public" msgstr "Публично" @@ -4472,23 +4472,23 @@ msgstr "" msgid "Public view" msgstr "" -#. Label of the qty (Float) field in DocType 'CRM Products' -#: crm/fcrm/doctype/crm_products/crm_products.json +#. Label of the qty (Float) field in PageType 'CRM Products' +#: crm/fcrm/pagetype/crm_products/crm_products.json msgid "Quantity" msgstr "" -#. Option for the 'Status' (Select) field in DocType 'CRM Call Log' -#: crm/fcrm/doctype/crm_call_log/crm_call_log.json +#. Option for the 'Status' (Select) field in PageType 'CRM Call Log' +#: crm/fcrm/pagetype/crm_call_log/crm_call_log.json msgid "Queued" msgstr "В очереди" -#. Option for the 'Type' (Select) field in DocType 'CRM Fields Layout' -#: crm/fcrm/doctype/crm_fields_layout/crm_fields_layout.json +#. Option for the 'Type' (Select) field in PageType 'CRM Fields Layout' +#: crm/fcrm/pagetype/crm_fields_layout/crm_fields_layout.json msgid "Quick Entry" msgstr "" -#. Option for the 'Type' (Select) field in DocType 'CRM Global Settings' -#: crm/fcrm/doctype/crm_global_settings/crm_global_settings.json +#. Option for the 'Type' (Select) field in PageType 'CRM Global Settings' +#: crm/fcrm/pagetype/crm_global_settings/crm_global_settings.json msgid "Quick Filters" msgstr "" @@ -4500,13 +4500,13 @@ msgstr "" msgid "Quick entry layout" msgstr "" -#. Label of the rate (Currency) field in DocType 'CRM Products' -#: crm/fcrm/doctype/crm_products/crm_products.json +#. Label of the rate (Currency) field in PageType 'CRM Products' +#: crm/fcrm/pagetype/crm_products/crm_products.json msgid "Rate" msgstr "" -#. Label of the read (Check) field in DocType 'CRM Notification' -#: crm/fcrm/doctype/crm_notification/crm_notification.json +#. Label of the read (Check) field in PageType 'CRM Notification' +#: crm/fcrm/pagetype/crm_notification/crm_notification.json msgid "Read" msgstr "Читать" @@ -4514,48 +4514,48 @@ msgstr "Читать" msgid "Reason" msgstr "" -#. Label of the record_calls (Check) field in DocType 'CRM Twilio Settings' -#: crm/fcrm/doctype/crm_twilio_settings/crm_twilio_settings.json +#. Label of the record_calls (Check) field in PageType 'CRM Twilio Settings' +#: crm/fcrm/pagetype/crm_twilio_settings/crm_twilio_settings.json msgid "Record Calls" msgstr "" -#. Label of the record_call (Check) field in DocType 'CRM Exotel Settings' -#: crm/fcrm/doctype/crm_exotel_settings/crm_exotel_settings.json +#. Label of the record_call (Check) field in PageType 'CRM Exotel Settings' +#: crm/fcrm/pagetype/crm_exotel_settings/crm_exotel_settings.json msgid "Record Outgoing Calls" msgstr "" -#. Label of the recording_url (Data) field in DocType 'CRM Call Log' -#: crm/fcrm/doctype/crm_call_log/crm_call_log.json +#. Label of the recording_url (Data) field in PageType 'CRM Call Log' +#: crm/fcrm/pagetype/crm_call_log/crm_call_log.json msgid "Recording URL" msgstr "" -#. Label of the reference_name (Dynamic Link) field in DocType 'CRM +#. Label of the reference_name (Dynamic Link) field in PageType 'CRM #. Notification' -#. Label of the reference_docname (Dynamic Link) field in DocType 'CRM Task' -#. Label of the reference_docname (Dynamic Link) field in DocType 'FCRM Note' -#: crm/fcrm/doctype/crm_notification/crm_notification.json -#: crm/fcrm/doctype/crm_task/crm_task.json -#: crm/fcrm/doctype/fcrm_note/fcrm_note.json -msgid "Reference Doc" +#. Label of the reference_docname (Dynamic Link) field in PageType 'CRM Task' +#. Label of the reference_docname (Dynamic Link) field in PageType 'FCRM Note' +#: crm/fcrm/pagetype/crm_notification/crm_notification.json +#: crm/fcrm/pagetype/crm_task/crm_task.json +#: crm/fcrm/pagetype/fcrm_note/fcrm_note.json +msgid "Reference Pg" msgstr "" -#. Label of the reference_doctype (Link) field in DocType 'CRM Notification' -#: crm/fcrm/doctype/crm_notification/crm_notification.json -msgid "Reference Doctype" +#. Label of the reference_pagetype (Link) field in PageType 'CRM Notification' +#: crm/fcrm/pagetype/crm_notification/crm_notification.json +msgid "Reference Pagetype" msgstr "Тип справочного документа" -#. Label of the reference_doctype (Link) field in DocType 'CRM Call Log' -#. Label of the reference_doctype (Link) field in DocType 'CRM Task' -#. Label of the reference_doctype (Link) field in DocType 'FCRM Note' -#: crm/fcrm/doctype/crm_call_log/crm_call_log.json -#: crm/fcrm/doctype/crm_task/crm_task.json -#: crm/fcrm/doctype/fcrm_note/fcrm_note.json +#. Label of the reference_pagetype (Link) field in PageType 'CRM Call Log' +#. Label of the reference_pagetype (Link) field in PageType 'CRM Task' +#. Label of the reference_pagetype (Link) field in PageType 'FCRM Note' +#: crm/fcrm/pagetype/crm_call_log/crm_call_log.json +#: crm/fcrm/pagetype/crm_task/crm_task.json +#: crm/fcrm/pagetype/fcrm_note/fcrm_note.json msgid "Reference Document Type" msgstr "" -#. Label of the reference_docname (Dynamic Link) field in DocType 'CRM Call +#. Label of the reference_docname (Dynamic Link) field in PageType 'CRM Call #. Log' -#: crm/fcrm/doctype/crm_call_log/crm_call_log.json +#: crm/fcrm/pagetype/crm_call_log/crm_call_log.json msgid "Reference Name" msgstr "" @@ -4625,8 +4625,8 @@ msgstr "Ответить Всем" msgid "Report an Issue" msgstr "" -#. Option for the 'Type' (Select) field in DocType 'CRM Fields Layout' -#: crm/fcrm/doctype/crm_fields_layout/crm_fields_layout.json +#. Option for the 'Type' (Select) field in PageType 'CRM Fields Layout' +#: crm/fcrm/pagetype/crm_fields_layout/crm_fields_layout.json msgid "Required Fields" msgstr "" @@ -4642,7 +4642,7 @@ msgstr "" msgid "Reset Changes" msgstr "Сброс изменений" -#: crm/fcrm/doctype/erpnext_crm_settings/erpnext_crm_settings.js:7 +#: crm/fcrm/pagetype/erpnext_crm_settings/erpnext_crm_settings.js:7 msgid "Reset ERPNext Form Script" msgstr "" @@ -4654,35 +4654,35 @@ msgstr "" msgid "Reset to default" msgstr "Сброс настроек по умолчанию" -#. Label of the response_by (Datetime) field in DocType 'CRM Deal' -#. Label of the response_by (Datetime) field in DocType 'CRM Lead' -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_lead/crm_lead.json +#. Label of the response_by (Datetime) field in PageType 'CRM Deal' +#. Label of the response_by (Datetime) field in PageType 'CRM Lead' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_lead/crm_lead.json msgid "Response By" msgstr "" -#. Label of the response_details_section (Section Break) field in DocType 'CRM +#. Label of the response_details_section (Section Break) field in PageType 'CRM #. Deal' -#. Label of the response_details_section (Section Break) field in DocType 'CRM +#. Label of the response_details_section (Section Break) field in PageType 'CRM #. Lead' -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_lead/crm_lead.json +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_lead/crm_lead.json msgid "Response Details" msgstr "" -#. Label of the section_break_ufaf (Section Break) field in DocType 'CRM +#. Label of the section_break_ufaf (Section Break) field in PageType 'CRM #. Service Level Agreement' -#: crm/fcrm/doctype/crm_service_level_agreement/crm_service_level_agreement.json +#: crm/fcrm/pagetype/crm_service_level_agreement/crm_service_level_agreement.json msgid "Response and Follow Up" msgstr "" -#: crm/fcrm/doctype/fcrm_settings/fcrm_settings.js:14 +#: crm/fcrm/pagetype/fcrm_settings/fcrm_settings.js:14 msgid "Restore" msgstr "Восстановить" -#. Label of the restore_defaults (Button) field in DocType 'FCRM Settings' -#: crm/fcrm/doctype/fcrm_settings/fcrm_settings.js:13 -#: crm/fcrm/doctype/fcrm_settings/fcrm_settings.json +#. Label of the restore_defaults (Button) field in PageType 'FCRM Settings' +#: crm/fcrm/pagetype/fcrm_settings/fcrm_settings.js:13 +#: crm/fcrm/pagetype/fcrm_settings/fcrm_settings.json msgid "Restore Defaults" msgstr "" @@ -4699,13 +4699,13 @@ msgstr "" msgid "Rich Text" msgstr "Насыщенный текст" -#. Label of the rgt (Int) field in DocType 'CRM Territory' -#: crm/fcrm/doctype/crm_territory/crm_territory.json +#. Label of the rgt (Int) field in PageType 'CRM Territory' +#: crm/fcrm/pagetype/crm_territory/crm_territory.json msgid "Right" msgstr "Справа" -#. Option for the 'Status' (Select) field in DocType 'CRM Call Log' -#: crm/fcrm/doctype/crm_call_log/crm_call_log.json +#. Option for the 'Status' (Select) field in PageType 'CRM Call Log' +#: crm/fcrm/pagetype/crm_call_log/crm_call_log.json msgid "Ringing" msgstr "" @@ -4714,55 +4714,55 @@ msgstr "" msgid "Ringing..." msgstr "" -#. Label of the role (Select) field in DocType 'CRM Invitation' -#: crm/fcrm/doctype/crm_invitation/crm_invitation.json +#. Label of the role (Select) field in PageType 'CRM Invitation' +#: crm/fcrm/pagetype/crm_invitation/crm_invitation.json #: frontend/src/components/Modals/AddExistingUserModal.vue:46 msgid "Role" msgstr "Роль" -#. Option for the 'Type' (Select) field in DocType 'CRM Dropdown Item' -#. Label of the route (Data) field in DocType 'CRM Dropdown Item' -#: crm/fcrm/doctype/crm_dropdown_item/crm_dropdown_item.json +#. Option for the 'Type' (Select) field in PageType 'CRM Dropdown Item' +#. Label of the route (Data) field in PageType 'CRM Dropdown Item' +#: crm/fcrm/pagetype/crm_dropdown_item/crm_dropdown_item.json msgid "Route" msgstr "Маршрут" -#. Label of the route_name (Data) field in DocType 'CRM View Settings' -#: crm/fcrm/doctype/crm_view_settings/crm_view_settings.json +#. Label of the route_name (Data) field in PageType 'CRM View Settings' +#: crm/fcrm/pagetype/crm_view_settings/crm_view_settings.json msgid "Route Name" msgstr "" -#. Label of the rows (Code) field in DocType 'CRM View Settings' -#: crm/fcrm/doctype/crm_view_settings/crm_view_settings.json +#. Label of the rows (Code) field in PageType 'CRM View Settings' +#: crm/fcrm/pagetype/crm_view_settings/crm_view_settings.json msgid "Rows" msgstr "" -#. Label of the sla_tab (Tab Break) field in DocType 'CRM Deal' -#. Label of the sla (Link) field in DocType 'CRM Deal' -#. Label of the sla_tab (Tab Break) field in DocType 'CRM Lead' -#. Label of the sla (Link) field in DocType 'CRM Lead' -#. Label of a shortcut in the Frappe CRM Workspace -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_lead/crm_lead.json -#: crm/fcrm/workspace/frappe_crm/frappe_crm.json +#. Label of the sla_tab (Tab Break) field in PageType 'CRM Deal' +#. Label of the sla (Link) field in PageType 'CRM Deal' +#. Label of the sla_tab (Tab Break) field in PageType 'CRM Lead' +#. Label of the sla (Link) field in PageType 'CRM Lead' +#. Label of a shortcut in the Jingrow CRM Workspace +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_lead/crm_lead.json +#: crm/fcrm/workspace/jingrow_crm/jingrow_crm.json msgid "SLA" msgstr "" -#. Label of the sla_creation (Datetime) field in DocType 'CRM Deal' -#. Label of the sla_creation (Datetime) field in DocType 'CRM Lead' -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_lead/crm_lead.json +#. Label of the sla_creation (Datetime) field in PageType 'CRM Deal' +#. Label of the sla_creation (Datetime) field in PageType 'CRM Lead' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_lead/crm_lead.json msgid "SLA Creation" msgstr "" -#. Label of the sla_name (Data) field in DocType 'CRM Service Level Agreement' -#: crm/fcrm/doctype/crm_service_level_agreement/crm_service_level_agreement.json +#. Label of the sla_name (Data) field in PageType 'CRM Service Level Agreement' +#: crm/fcrm/pagetype/crm_service_level_agreement/crm_service_level_agreement.json msgid "SLA Name" msgstr "" -#. Label of the sla_status (Select) field in DocType 'CRM Deal' -#. Label of the sla_status (Select) field in DocType 'CRM Lead' -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_lead/crm_lead.json +#. Label of the sla_status (Select) field in PageType 'CRM Deal' +#. Label of the sla_status (Select) field in PageType 'CRM Lead' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_lead/crm_lead.json msgid "SLA Status" msgstr "" @@ -4771,57 +4771,57 @@ msgid "SUBJECT" msgstr "" #. Name of a role -#. Option for the 'Role' (Select) field in DocType 'CRM Invitation' -#: crm/fcrm/doctype/crm_call_log/crm_call_log.json -#: crm/fcrm/doctype/crm_communication_status/crm_communication_status.json -#: crm/fcrm/doctype/crm_dashboard/crm_dashboard.json -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_deal_status/crm_deal_status.json -#: crm/fcrm/doctype/crm_exotel_settings/crm_exotel_settings.json -#: crm/fcrm/doctype/crm_form_script/crm_form_script.json -#: crm/fcrm/doctype/crm_global_settings/crm_global_settings.json -#: crm/fcrm/doctype/crm_holiday_list/crm_holiday_list.json -#: crm/fcrm/doctype/crm_industry/crm_industry.json -#: crm/fcrm/doctype/crm_invitation/crm_invitation.json -#: crm/fcrm/doctype/crm_lead/crm_lead.json -#: crm/fcrm/doctype/crm_lead_source/crm_lead_source.json -#: crm/fcrm/doctype/crm_lead_status/crm_lead_status.json -#: crm/fcrm/doctype/crm_lost_reason/crm_lost_reason.json -#: crm/fcrm/doctype/crm_notification/crm_notification.json -#: crm/fcrm/doctype/crm_organization/crm_organization.json -#: crm/fcrm/doctype/crm_service_level_agreement/crm_service_level_agreement.json -#: crm/fcrm/doctype/crm_task/crm_task.json -#: crm/fcrm/doctype/crm_territory/crm_territory.json -#: crm/fcrm/doctype/crm_twilio_settings/crm_twilio_settings.json -#: crm/fcrm/doctype/crm_view_settings/crm_view_settings.json -#: crm/fcrm/doctype/erpnext_crm_settings/erpnext_crm_settings.json -#: crm/fcrm/doctype/fcrm_note/fcrm_note.json -#: crm/fcrm/doctype/fcrm_settings/fcrm_settings.json -#: crm/fcrm/doctype/helpdesk_crm_settings/helpdesk_crm_settings.json +#. Option for the 'Role' (Select) field in PageType 'CRM Invitation' +#: crm/fcrm/pagetype/crm_call_log/crm_call_log.json +#: crm/fcrm/pagetype/crm_communication_status/crm_communication_status.json +#: crm/fcrm/pagetype/crm_dashboard/crm_dashboard.json +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_deal_status/crm_deal_status.json +#: crm/fcrm/pagetype/crm_exotel_settings/crm_exotel_settings.json +#: crm/fcrm/pagetype/crm_form_script/crm_form_script.json +#: crm/fcrm/pagetype/crm_global_settings/crm_global_settings.json +#: crm/fcrm/pagetype/crm_holiday_list/crm_holiday_list.json +#: crm/fcrm/pagetype/crm_industry/crm_industry.json +#: crm/fcrm/pagetype/crm_invitation/crm_invitation.json +#: crm/fcrm/pagetype/crm_lead/crm_lead.json +#: crm/fcrm/pagetype/crm_lead_source/crm_lead_source.json +#: crm/fcrm/pagetype/crm_lead_status/crm_lead_status.json +#: crm/fcrm/pagetype/crm_lost_reason/crm_lost_reason.json +#: crm/fcrm/pagetype/crm_notification/crm_notification.json +#: crm/fcrm/pagetype/crm_organization/crm_organization.json +#: crm/fcrm/pagetype/crm_service_level_agreement/crm_service_level_agreement.json +#: crm/fcrm/pagetype/crm_task/crm_task.json +#: crm/fcrm/pagetype/crm_territory/crm_territory.json +#: crm/fcrm/pagetype/crm_twilio_settings/crm_twilio_settings.json +#: crm/fcrm/pagetype/crm_view_settings/crm_view_settings.json +#: crm/fcrm/pagetype/erpnext_crm_settings/erpnext_crm_settings.json +#: crm/fcrm/pagetype/fcrm_note/fcrm_note.json +#: crm/fcrm/pagetype/fcrm_settings/fcrm_settings.json +#: crm/fcrm/pagetype/helpdesk_crm_settings/helpdesk_crm_settings.json msgid "Sales Manager" msgstr "" #. Name of a role -#. Option for the 'Role' (Select) field in DocType 'CRM Invitation' -#: crm/fcrm/doctype/crm_call_log/crm_call_log.json -#: crm/fcrm/doctype/crm_communication_status/crm_communication_status.json -#: crm/fcrm/doctype/crm_dashboard/crm_dashboard.json -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_deal_status/crm_deal_status.json -#: crm/fcrm/doctype/crm_global_settings/crm_global_settings.json -#: crm/fcrm/doctype/crm_holiday_list/crm_holiday_list.json -#: crm/fcrm/doctype/crm_industry/crm_industry.json -#: crm/fcrm/doctype/crm_invitation/crm_invitation.json -#: crm/fcrm/doctype/crm_lead/crm_lead.json -#: crm/fcrm/doctype/crm_lead_source/crm_lead_source.json -#: crm/fcrm/doctype/crm_lead_status/crm_lead_status.json -#: crm/fcrm/doctype/crm_lost_reason/crm_lost_reason.json -#: crm/fcrm/doctype/crm_notification/crm_notification.json -#: crm/fcrm/doctype/crm_organization/crm_organization.json -#: crm/fcrm/doctype/crm_task/crm_task.json -#: crm/fcrm/doctype/crm_territory/crm_territory.json -#: crm/fcrm/doctype/crm_view_settings/crm_view_settings.json -#: crm/fcrm/doctype/fcrm_note/fcrm_note.json +#. Option for the 'Role' (Select) field in PageType 'CRM Invitation' +#: crm/fcrm/pagetype/crm_call_log/crm_call_log.json +#: crm/fcrm/pagetype/crm_communication_status/crm_communication_status.json +#: crm/fcrm/pagetype/crm_dashboard/crm_dashboard.json +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_deal_status/crm_deal_status.json +#: crm/fcrm/pagetype/crm_global_settings/crm_global_settings.json +#: crm/fcrm/pagetype/crm_holiday_list/crm_holiday_list.json +#: crm/fcrm/pagetype/crm_industry/crm_industry.json +#: crm/fcrm/pagetype/crm_invitation/crm_invitation.json +#: crm/fcrm/pagetype/crm_lead/crm_lead.json +#: crm/fcrm/pagetype/crm_lead_source/crm_lead_source.json +#: crm/fcrm/pagetype/crm_lead_status/crm_lead_status.json +#: crm/fcrm/pagetype/crm_lost_reason/crm_lost_reason.json +#: crm/fcrm/pagetype/crm_notification/crm_notification.json +#: crm/fcrm/pagetype/crm_organization/crm_organization.json +#: crm/fcrm/pagetype/crm_task/crm_task.json +#: crm/fcrm/pagetype/crm_territory/crm_territory.json +#: crm/fcrm/pagetype/crm_view_settings/crm_view_settings.json +#: crm/fcrm/pagetype/fcrm_note/fcrm_note.json #: frontend/src/components/Modals/AddExistingUserModal.vue:92 #: frontend/src/components/Settings/InviteUserPage.vue:156 #: frontend/src/components/Settings/InviteUserPage.vue:163 @@ -4845,17 +4845,17 @@ msgstr "" msgid "Salesperson" msgstr "" -#. Label of the salutation (Link) field in DocType 'CRM Deal' -#. Label of the salutation (Link) field in DocType 'CRM Lead' -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_lead/crm_lead.json +#. Label of the salutation (Link) field in PageType 'CRM Deal' +#. Label of the salutation (Link) field in PageType 'CRM Lead' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_lead/crm_lead.json msgid "Salutation" msgstr "Приветствие" -#. Option for the 'Weekly Off' (Select) field in DocType 'CRM Holiday List' -#. Option for the 'Workday' (Select) field in DocType 'CRM Service Day' -#: crm/fcrm/doctype/crm_holiday_list/crm_holiday_list.json -#: crm/fcrm/doctype/crm_service_day/crm_service_day.json +#. Option for the 'Weekly Off' (Select) field in PageType 'CRM Holiday List' +#. Option for the 'Workday' (Select) field in PageType 'CRM Service Day' +#: crm/fcrm/pagetype/crm_holiday_list/crm_holiday_list.json +#: crm/fcrm/pagetype/crm_service_day/crm_service_day.json msgid "Saturday" msgstr "Суббота" @@ -4904,8 +4904,8 @@ msgstr "" msgid "Schedule an event" msgstr "" -#. Label of the script (Code) field in DocType 'CRM Form Script' -#: crm/fcrm/doctype/crm_form_script/crm_form_script.json +#. Label of the script (Code) field in PageType 'CRM Form Script' +#: crm/fcrm/pagetype/crm_form_script/crm_form_script.json msgid "Script" msgstr "" @@ -4973,18 +4973,18 @@ msgstr "" msgid "Send invites to" msgstr "" -#. Option for the 'Type' (Select) field in DocType 'CRM Dropdown Item' -#: crm/fcrm/doctype/crm_dropdown_item/crm_dropdown_item.json +#. Option for the 'Type' (Select) field in PageType 'CRM Dropdown Item' +#: crm/fcrm/pagetype/crm_dropdown_item/crm_dropdown_item.json msgid "Separator" msgstr "" -#. Label of the naming_series (Select) field in DocType 'CRM Lead' -#: crm/fcrm/doctype/crm_lead/crm_lead.json +#. Label of the naming_series (Select) field in PageType 'CRM Lead' +#: crm/fcrm/pagetype/crm_lead/crm_lead.json msgid "Series" msgstr "" -#. Label of the service_provider (Select) field in DocType 'FCRM Settings' -#: crm/fcrm/doctype/fcrm_settings/fcrm_settings.json +#. Label of the service_provider (Select) field in PageType 'FCRM Settings' +#: crm/fcrm/pagetype/fcrm_settings/fcrm_settings.json msgid "Service Provider" msgstr "" @@ -5029,7 +5029,7 @@ msgid "Setting up" msgstr "" #: frontend/src/components/Settings/emailConfig.js:145 -msgid "Setting up Frappe Mail requires you to have an API key and API Secret of your email account. Read more " +msgid "Setting up Jingrow Mail requires you to have an API key and API Secret of your email account. Read more " msgstr "" #: frontend/src/components/Settings/emailConfig.js:97 @@ -5062,8 +5062,8 @@ msgid "Setting up Yandex requires you to enable two factor authentication\n" "\t\t and app specific passwords. Read more " msgstr "" -#. Label of the defaults_tab (Tab Break) field in DocType 'FCRM Settings' -#: crm/fcrm/doctype/fcrm_settings/fcrm_settings.json +#. Label of the defaults_tab (Tab Break) field in PageType 'FCRM Settings' +#: crm/fcrm/pagetype/fcrm_settings/fcrm_settings.json #: frontend/src/components/Layouts/AppSidebar.vue:537 #: frontend/src/components/Settings/Settings.vue:12 msgid "Settings" @@ -5073,7 +5073,7 @@ msgstr "" msgid "Setup Email" msgstr "" -#: crm/fcrm/doctype/fcrm_settings/fcrm_settings.py:199 +#: crm/fcrm/pagetype/fcrm_settings/fcrm_settings.py:199 msgid "Setup the Exchange Rate Provider as 'Exchangerate Host' in settings, as default provider does not support currency conversion for {0} to {1}." msgstr "" @@ -5108,20 +5108,20 @@ msgstr "" msgid "Show preview" msgstr "" -#. Option for the 'Type' (Select) field in DocType 'CRM Fields Layout' -#: crm/fcrm/doctype/crm_fields_layout/crm_fields_layout.json +#. Option for the 'Type' (Select) field in PageType 'CRM Fields Layout' +#: crm/fcrm/pagetype/crm_fields_layout/crm_fields_layout.json msgid "Side Panel" msgstr "" -#. Option for the 'Type' (Select) field in DocType 'CRM Global Settings' -#: crm/fcrm/doctype/crm_global_settings/crm_global_settings.json +#. Option for the 'Type' (Select) field in PageType 'CRM Global Settings' +#: crm/fcrm/pagetype/crm_global_settings/crm_global_settings.json msgid "Sidebar Items" msgstr "Элементы боковой панели" -#. Description of the 'Condition' (Code) field in DocType 'CRM Service Level +#. Description of the 'Condition' (Code) field in PageType 'CRM Service Level #. Agreement' -#: crm/fcrm/doctype/crm_service_level_agreement/crm_service_level_agreement.json -msgid "Simple Python Expression, Example: doc.status == 'Open' and doc.lead_source == 'Ads'" +#: crm/fcrm/pagetype/crm_service_level_agreement/crm_service_level_agreement.json +msgid "Simple Python Expression, Example: pg.status == 'Open' and pg.lead_source == 'Ads'" msgstr "" #: frontend/src/components/AssignTo.vue:83 @@ -5145,16 +5145,16 @@ msgstr "" msgid "Sort" msgstr "" -#. Label of the source (Link) field in DocType 'CRM Deal' -#. Label of the source (Link) field in DocType 'CRM Lead' -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_lead/crm_lead.json +#. Label of the source (Link) field in PageType 'CRM Deal' +#. Label of the source (Link) field in PageType 'CRM Lead' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_lead/crm_lead.json #: frontend/src/components/Modals/EditValueModal.vue:10 msgid "Source" msgstr "" -#. Label of the source_name (Data) field in DocType 'CRM Lead Source' -#: crm/fcrm/doctype/crm_lead_source/crm_lead_source.json +#. Label of the source_name (Data) field in PageType 'CRM Lead Source' +#: crm/fcrm/pagetype/crm_lead_source/crm_lead_source.json msgid "Source Name" msgstr "Исходное имя" @@ -5167,12 +5167,12 @@ msgstr "Проставка" msgid "Stage" msgstr "" -#: crm/fcrm/doctype/crm_form_script/crm_form_script.js:15 +#: crm/fcrm/pagetype/crm_form_script/crm_form_script.js:15 msgid "Standard Form Scripts can not be modified, duplicate the Form Script instead." msgstr "" -#. Label of the standard_rate (Currency) field in DocType 'CRM Product' -#: crm/fcrm/doctype/crm_product/crm_product.json +#. Label of the standard_rate (Currency) field in PageType 'CRM Product' +#: crm/fcrm/pagetype/crm_product/crm_product.json msgid "Standard Selling Rate" msgstr "" @@ -5180,18 +5180,18 @@ msgstr "" msgid "Standard Views" msgstr "" -#. Label of the start_date (Date) field in DocType 'CRM Service Level +#. Label of the start_date (Date) field in PageType 'CRM Service Level #. Agreement' -#. Label of the start_date (Date) field in DocType 'CRM Task' -#: crm/fcrm/doctype/crm_service_level_agreement/crm_service_level_agreement.json -#: crm/fcrm/doctype/crm_task/crm_task.json +#. Label of the start_date (Date) field in PageType 'CRM Task' +#: crm/fcrm/pagetype/crm_service_level_agreement/crm_service_level_agreement.json +#: crm/fcrm/pagetype/crm_task/crm_task.json msgid "Start Date" msgstr "" -#. Label of the start_time (Datetime) field in DocType 'CRM Call Log' -#. Label of the start_time (Time) field in DocType 'CRM Service Day' -#: crm/fcrm/doctype/crm_call_log/crm_call_log.json -#: crm/fcrm/doctype/crm_service_day/crm_service_day.json +#. Label of the start_time (Datetime) field in PageType 'CRM Call Log' +#. Label of the start_time (Time) field in PageType 'CRM Service Day' +#: crm/fcrm/pagetype/crm_call_log/crm_call_log.json +#: crm/fcrm/pagetype/crm_service_day/crm_service_day.json #: frontend/src/components/Calendar/CalendarEventPanel.vue:234 #: frontend/src/components/Modals/EventModal.vue:103 msgid "Start Time" @@ -5205,32 +5205,32 @@ msgstr "" msgid "Start with sample 10 leads" msgstr "" -#. Label of the status (Select) field in DocType 'CRM Call Log' -#. Label of the status (Data) field in DocType 'CRM Communication Status' -#. Label of the status (Link) field in DocType 'CRM Deal' -#. Label of the deal_status (Data) field in DocType 'CRM Deal Status' -#. Label of the status (Select) field in DocType 'CRM Invitation' -#. Label of the status (Link) field in DocType 'CRM Lead' -#. Label of the lead_status (Data) field in DocType 'CRM Lead Status' -#. Label of the status (Select) field in DocType 'CRM Task' -#: crm/fcrm/doctype/crm_call_log/crm_call_log.json -#: crm/fcrm/doctype/crm_communication_status/crm_communication_status.json -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_deal_status/crm_deal_status.json -#: crm/fcrm/doctype/crm_invitation/crm_invitation.json -#: crm/fcrm/doctype/crm_lead/crm_lead.json -#: crm/fcrm/doctype/crm_lead_status/crm_lead_status.json -#: crm/fcrm/doctype/crm_task/crm_task.json frontend/src/pages/Contact.vue:505 +#. Label of the status (Select) field in PageType 'CRM Call Log' +#. Label of the status (Data) field in PageType 'CRM Communication Status' +#. Label of the status (Link) field in PageType 'CRM Deal' +#. Label of the deal_status (Data) field in PageType 'CRM Deal Status' +#. Label of the status (Select) field in PageType 'CRM Invitation' +#. Label of the status (Link) field in PageType 'CRM Lead' +#. Label of the lead_status (Data) field in PageType 'CRM Lead Status' +#. Label of the status (Select) field in PageType 'CRM Task' +#: crm/fcrm/pagetype/crm_call_log/crm_call_log.json +#: crm/fcrm/pagetype/crm_communication_status/crm_communication_status.json +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_deal_status/crm_deal_status.json +#: crm/fcrm/pagetype/crm_invitation/crm_invitation.json +#: crm/fcrm/pagetype/crm_lead/crm_lead.json +#: crm/fcrm/pagetype/crm_lead_status/crm_lead_status.json +#: crm/fcrm/pagetype/crm_task/crm_task.json frontend/src/pages/Contact.vue:505 #: frontend/src/pages/MobileContact.vue:513 #: frontend/src/pages/MobileOrganization.vue:457 #: frontend/src/pages/Organization.vue:478 msgid "Status" msgstr "" -#. Label of the status_change_log (Table) field in DocType 'CRM Deal' -#. Label of the status_change_log (Table) field in DocType 'CRM Lead' -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_lead/crm_lead.json +#. Label of the status_change_log (Table) field in PageType 'CRM Deal' +#. Label of the status_change_log (Table) field in PageType 'CRM Lead' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_lead/crm_lead.json msgid "Status Change Log" msgstr "" @@ -5239,8 +5239,8 @@ msgstr "" msgid "Status is required" msgstr "" -#. Label of the subdomain (Data) field in DocType 'CRM Exotel Settings' -#: crm/fcrm/doctype/crm_exotel_settings/crm_exotel_settings.json +#. Label of the subdomain (Data) field in PageType 'CRM Exotel Settings' +#: crm/fcrm/pagetype/crm_exotel_settings/crm_exotel_settings.json msgid "Subdomain" msgstr "" @@ -5258,10 +5258,10 @@ msgstr "" msgid "Subject: {0}" msgstr "" -#. Option for the 'Weekly Off' (Select) field in DocType 'CRM Holiday List' -#. Option for the 'Workday' (Select) field in DocType 'CRM Service Day' -#: crm/fcrm/doctype/crm_holiday_list/crm_holiday_list.json -#: crm/fcrm/doctype/crm_service_day/crm_service_day.json +#. Option for the 'Weekly Off' (Select) field in PageType 'CRM Holiday List' +#. Option for the 'Workday' (Select) field in PageType 'CRM Service Day' +#: crm/fcrm/pagetype/crm_holiday_list/crm_holiday_list.json +#: crm/fcrm/pagetype/crm_service_day/crm_service_day.json msgid "Sunday" msgstr "Воскресенье" @@ -5282,21 +5282,21 @@ msgid "System Configuration" msgstr "" #. Name of a role -#. Option for the 'Role' (Select) field in DocType 'CRM Invitation' -#: crm/fcrm/doctype/crm_dashboard/crm_dashboard.json -#: crm/fcrm/doctype/crm_exotel_settings/crm_exotel_settings.json -#: crm/fcrm/doctype/crm_fields_layout/crm_fields_layout.json -#: crm/fcrm/doctype/crm_global_settings/crm_global_settings.json -#: crm/fcrm/doctype/crm_invitation/crm_invitation.json -#: crm/fcrm/doctype/crm_lead_source/crm_lead_source.json -#: crm/fcrm/doctype/crm_lost_reason/crm_lost_reason.json -#: crm/fcrm/doctype/crm_notification/crm_notification.json -#: crm/fcrm/doctype/crm_product/crm_product.json -#: crm/fcrm/doctype/crm_telephony_agent/crm_telephony_agent.json -#: crm/fcrm/doctype/crm_twilio_settings/crm_twilio_settings.json -#: crm/fcrm/doctype/erpnext_crm_settings/erpnext_crm_settings.json -#: crm/fcrm/doctype/fcrm_settings/fcrm_settings.json -#: crm/fcrm/doctype/helpdesk_crm_settings/helpdesk_crm_settings.json +#. Option for the 'Role' (Select) field in PageType 'CRM Invitation' +#: crm/fcrm/pagetype/crm_dashboard/crm_dashboard.json +#: crm/fcrm/pagetype/crm_exotel_settings/crm_exotel_settings.json +#: crm/fcrm/pagetype/crm_fields_layout/crm_fields_layout.json +#: crm/fcrm/pagetype/crm_global_settings/crm_global_settings.json +#: crm/fcrm/pagetype/crm_invitation/crm_invitation.json +#: crm/fcrm/pagetype/crm_lead_source/crm_lead_source.json +#: crm/fcrm/pagetype/crm_lost_reason/crm_lost_reason.json +#: crm/fcrm/pagetype/crm_notification/crm_notification.json +#: crm/fcrm/pagetype/crm_product/crm_product.json +#: crm/fcrm/pagetype/crm_telephony_agent/crm_telephony_agent.json +#: crm/fcrm/pagetype/crm_twilio_settings/crm_twilio_settings.json +#: crm/fcrm/pagetype/erpnext_crm_settings/erpnext_crm_settings.json +#: crm/fcrm/pagetype/fcrm_settings/fcrm_settings.json +#: crm/fcrm/pagetype/helpdesk_crm_settings/helpdesk_crm_settings.json msgid "System Manager" msgstr "" @@ -5308,8 +5308,8 @@ msgstr "" msgid "Take a note..." msgstr "" -#. Option for the 'Type' (Select) field in DocType 'CRM Notification' -#: crm/fcrm/doctype/crm_notification/crm_notification.json +#. Option for the 'Type' (Select) field in PageType 'CRM Notification' +#: crm/fcrm/pagetype/crm_notification/crm_notification.json #: frontend/src/components/Layouts/AppSidebar.vue:555 msgid "Task" msgstr "" @@ -5327,8 +5327,8 @@ msgstr "" msgid "Telephony" msgstr "" -#. Label of the telephony_medium (Select) field in DocType 'CRM Call Log' -#: crm/fcrm/doctype/crm_call_log/crm_call_log.json +#. Label of the telephony_medium (Select) field in PageType 'CRM Call Log' +#: crm/fcrm/pagetype/crm_call_log/crm_call_log.json msgid "Telephony Medium" msgstr "" @@ -5364,27 +5364,27 @@ msgstr "" msgid "Template updated successfully" msgstr "" -#. Label of a shortcut in the Frappe CRM Workspace -#: crm/fcrm/workspace/frappe_crm/frappe_crm.json +#. Label of a shortcut in the Jingrow CRM Workspace +#: crm/fcrm/workspace/jingrow_crm/jingrow_crm.json msgid "Territories" msgstr "" -#. Label of the territory (Link) field in DocType 'CRM Deal' -#. Label of the territory (Link) field in DocType 'CRM Lead' -#. Label of the territory (Link) field in DocType 'CRM Organization' -#: crm/api/dashboard.py:1022 crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_lead/crm_lead.json -#: crm/fcrm/doctype/crm_organization/crm_organization.json +#. Label of the territory (Link) field in PageType 'CRM Deal' +#. Label of the territory (Link) field in PageType 'CRM Lead' +#. Label of the territory (Link) field in PageType 'CRM Organization' +#: crm/api/dashboard.py:1022 crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_lead/crm_lead.json +#: crm/fcrm/pagetype/crm_organization/crm_organization.json msgid "Territory" msgstr "" -#. Label of the territory_manager (Link) field in DocType 'CRM Territory' -#: crm/fcrm/doctype/crm_territory/crm_territory.json +#. Label of the territory_manager (Link) field in PageType 'CRM Territory' +#: crm/fcrm/pagetype/crm_territory/crm_territory.json msgid "Territory Manager" msgstr "" -#. Label of the territory_name (Data) field in DocType 'CRM Territory' -#: crm/fcrm/doctype/crm_territory/crm_territory.json +#. Label of the territory_name (Data) field in PageType 'CRM Territory' +#: crm/fcrm/pagetype/crm_territory/crm_territory.json msgid "Territory Name" msgstr "" @@ -5392,22 +5392,22 @@ msgstr "" msgid "Thanks" msgstr "Спасибо" -#: crm/fcrm/doctype/crm_service_level_agreement/crm_service_level_agreement.py:46 +#: crm/fcrm/pagetype/crm_service_level_agreement/crm_service_level_agreement.py:46 msgid "The Condition '{0}' is invalid: {1}" msgstr "" -#. Description of the 'Exchange Rate' (Float) field in DocType 'CRM Deal' -#: crm/fcrm/doctype/crm_deal/crm_deal.json +#. Description of the 'Exchange Rate' (Float) field in PageType 'CRM Deal' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json msgid "The rate used to convert the deal’s currency to your crm's base currency (set in CRM Settings). It is set once when the currency is first added and doesn't change automatically." msgstr "" -#. Description of the 'Exchange Rate' (Float) field in DocType 'CRM +#. Description of the 'Exchange Rate' (Float) field in PageType 'CRM #. Organization' -#: crm/fcrm/doctype/crm_organization/crm_organization.json +#: crm/fcrm/pagetype/crm_organization/crm_organization.json msgid "The rate used to convert the organization’s currency to your crm's base currency (set in CRM Settings). It is set once when the currency is first added and doesn't change automatically." msgstr "" -#: crm/fcrm/doctype/crm_service_level_agreement/crm_service_level_agreement.js:14 +#: crm/fcrm/pagetype/crm_service_level_agreement/crm_service_level_agreement.js:14 msgid "There can only be one default priority in Priorities table" msgstr "" @@ -5444,14 +5444,14 @@ msgstr "" msgid "This will delete selected items and unlink linked items to it, are you sure?" msgstr "" -#: crm/fcrm/doctype/fcrm_settings/fcrm_settings.js:9 +#: crm/fcrm/pagetype/fcrm_settings/fcrm_settings.js:9 msgid "This will restore (if not exist) all the default statuses, custom fields and layouts. Delete & Restore will delete default layouts and then restore them." msgstr "" -#. Option for the 'Weekly Off' (Select) field in DocType 'CRM Holiday List' -#. Option for the 'Workday' (Select) field in DocType 'CRM Service Day' -#: crm/fcrm/doctype/crm_holiday_list/crm_holiday_list.json -#: crm/fcrm/doctype/crm_service_day/crm_service_day.json +#. Option for the 'Weekly Off' (Select) field in PageType 'CRM Holiday List' +#. Option for the 'Workday' (Select) field in PageType 'CRM Service Day' +#: crm/fcrm/pagetype/crm_holiday_list/crm_holiday_list.json +#: crm/fcrm/pagetype/crm_service_day/crm_service_day.json msgid "Thursday" msgstr "Четверг" @@ -5463,18 +5463,18 @@ msgstr "Время" msgid "Timespan" msgstr "" -#. Label of the title (Data) field in DocType 'CRM Task' -#. Label of the title (Data) field in DocType 'FCRM Note' -#: crm/fcrm/doctype/crm_task/crm_task.json -#: crm/fcrm/doctype/fcrm_note/fcrm_note.json +#. Label of the title (Data) field in PageType 'CRM Task' +#. Label of the title (Data) field in PageType 'FCRM Note' +#: crm/fcrm/pagetype/crm_task/crm_task.json +#: crm/fcrm/pagetype/fcrm_note/fcrm_note.json #: frontend/src/components/Modals/EventModal.vue:43 #: frontend/src/components/Modals/NoteModal.vue:26 #: frontend/src/components/Modals/TaskModal.vue:25 msgid "Title" msgstr "" -#. Label of the title_field (Data) field in DocType 'CRM View Settings' -#: crm/fcrm/doctype/crm_view_settings/crm_view_settings.json +#. Label of the title_field (Data) field in PageType 'CRM View Settings' +#: crm/fcrm/pagetype/crm_view_settings/crm_view_settings.json #: frontend/src/components/Kanban/KanbanSettings.vue:29 msgid "Title Field" msgstr "" @@ -5484,28 +5484,28 @@ msgstr "" msgid "Title is required" msgstr "" -#. Label of the to (Data) field in DocType 'CRM Call Log' -#. Label of the to (Data) field in DocType 'CRM Status Change Log' -#: crm/fcrm/doctype/crm_call_log/crm_call_log.json -#: crm/fcrm/doctype/crm_status_change_log/crm_status_change_log.json +#. Label of the to (Data) field in PageType 'CRM Call Log' +#. Label of the to (Data) field in PageType 'CRM Status Change Log' +#: crm/fcrm/pagetype/crm_call_log/crm_call_log.json +#: crm/fcrm/pagetype/crm_status_change_log/crm_status_change_log.json #: frontend/src/components/Activities/EmailArea.vue:53 msgid "To" msgstr "" -#. Label of the to_date (Date) field in DocType 'CRM Holiday List' -#. Label of the to_date (Datetime) field in DocType 'CRM Status Change Log' -#: crm/fcrm/doctype/crm_holiday_list/crm_holiday_list.json -#: crm/fcrm/doctype/crm_status_change_log/crm_status_change_log.json +#. Label of the to_date (Date) field in PageType 'CRM Holiday List' +#. Label of the to_date (Datetime) field in PageType 'CRM Status Change Log' +#: crm/fcrm/pagetype/crm_holiday_list/crm_holiday_list.json +#: crm/fcrm/pagetype/crm_status_change_log/crm_status_change_log.json msgid "To Date" msgstr "" -#. Label of the to_type (Data) field in DocType 'CRM Status Change Log' -#: crm/fcrm/doctype/crm_status_change_log/crm_status_change_log.json +#. Label of the to_type (Data) field in PageType 'CRM Status Change Log' +#: crm/fcrm/pagetype/crm_status_change_log/crm_status_change_log.json msgid "To Type" msgstr "" -#. Label of the to_user (Link) field in DocType 'CRM Notification' -#: crm/fcrm/doctype/crm_notification/crm_notification.json +#. Label of the to_user (Link) field in PageType 'CRM Notification' +#: crm/fcrm/pagetype/crm_notification/crm_notification.json msgid "To User" msgstr "" @@ -5517,8 +5517,8 @@ msgstr "" msgid "Today" msgstr "Сегодня" -#. Option for the 'Status' (Select) field in DocType 'CRM Task' -#: crm/fcrm/doctype/crm_task/crm_task.json +#. Option for the 'Status' (Select) field in PageType 'CRM Task' +#: crm/fcrm/pagetype/crm_task/crm_task.json msgid "Todo" msgstr "" @@ -5535,22 +5535,22 @@ msgstr "" msgid "Took a call with John Doe and discussed the new project." msgstr "" -#. Label of the total (Currency) field in DocType 'CRM Deal' -#. Label of the total (Currency) field in DocType 'CRM Lead' -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_lead/crm_lead.json +#. Label of the total (Currency) field in PageType 'CRM Deal' +#. Label of the total (Currency) field in PageType 'CRM Lead' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_lead/crm_lead.json msgid "Total" msgstr "" -#. Label of the total_holidays (Int) field in DocType 'CRM Holiday List' -#: crm/fcrm/doctype/crm_holiday_list/crm_holiday_list.json +#. Label of the total_holidays (Int) field in PageType 'CRM Holiday List' +#: crm/fcrm/pagetype/crm_holiday_list/crm_holiday_list.json msgid "Total Holidays" msgstr "Всего праздников" -#. Description of the 'Net Total' (Currency) field in DocType 'CRM Deal' -#. Description of the 'Net Total' (Currency) field in DocType 'CRM Lead' -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_lead/crm_lead.json +#. Description of the 'Net Total' (Currency) field in PageType 'CRM Deal' +#. Description of the 'Net Total' (Currency) field in PageType 'CRM Lead' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_lead/crm_lead.json msgid "Total after discount" msgstr "" @@ -5571,10 +5571,10 @@ msgstr "" msgid "Total number of won deals based on its closure date" msgstr "" -#. Option for the 'Weekly Off' (Select) field in DocType 'CRM Holiday List' -#. Option for the 'Workday' (Select) field in DocType 'CRM Service Day' -#: crm/fcrm/doctype/crm_holiday_list/crm_holiday_list.json -#: crm/fcrm/doctype/crm_service_day/crm_service_day.json +#. Option for the 'Weekly Off' (Select) field in PageType 'CRM Holiday List' +#. Option for the 'Workday' (Select) field in PageType 'CRM Service Day' +#: crm/fcrm/pagetype/crm_holiday_list/crm_holiday_list.json +#: crm/fcrm/pagetype/crm_service_day/crm_service_day.json msgid "Tuesday" msgstr "Вторник" @@ -5582,30 +5582,30 @@ msgstr "Вторник" msgid "Turn into a group" msgstr "" -#. Label of the twiml_sid (Data) field in DocType 'CRM Twilio Settings' -#: crm/fcrm/doctype/crm_twilio_settings/crm_twilio_settings.json +#. Label of the twiml_sid (Data) field in PageType 'CRM Twilio Settings' +#: crm/fcrm/pagetype/crm_twilio_settings/crm_twilio_settings.json msgid "TwiML SID" msgstr "" -#. Option for the 'Telephony Medium' (Select) field in DocType 'CRM Call Log' -#. Label of the twilio (Check) field in DocType 'CRM Telephony Agent' -#. Option for the 'Default Medium' (Select) field in DocType 'CRM Telephony +#. Option for the 'Telephony Medium' (Select) field in PageType 'CRM Call Log' +#. Label of the twilio (Check) field in PageType 'CRM Telephony Agent' +#. Option for the 'Default Medium' (Select) field in PageType 'CRM Telephony #. Agent' -#: crm/fcrm/doctype/crm_call_log/crm_call_log.json -#: crm/fcrm/doctype/crm_telephony_agent/crm_telephony_agent.json +#: crm/fcrm/pagetype/crm_call_log/crm_call_log.json +#: crm/fcrm/pagetype/crm_telephony_agent/crm_telephony_agent.json #: frontend/src/components/Layouts/AppSidebar.vue:601 #: frontend/src/components/Settings/TelephonySettings.vue:40 #: frontend/src/components/Settings/TelephonySettings.vue:50 msgid "Twilio" msgstr "" -#: crm/fcrm/doctype/crm_twilio_settings/crm_twilio_settings.py:59 -#: crm/fcrm/doctype/crm_twilio_settings/crm_twilio_settings.py:60 +#: crm/fcrm/pagetype/crm_twilio_settings/crm_twilio_settings.py:59 +#: crm/fcrm/pagetype/crm_twilio_settings/crm_twilio_settings.py:60 msgid "Twilio API credential creation error." msgstr "" -#. Label of the twilio_number (Data) field in DocType 'CRM Telephony Agent' -#: crm/fcrm/doctype/crm_telephony_agent/crm_telephony_agent.json +#. Label of the twilio_number (Data) field in PageType 'CRM Telephony Agent' +#: crm/fcrm/pagetype/crm_telephony_agent/crm_telephony_agent.json msgid "Twilio Number" msgstr "" @@ -5617,20 +5617,20 @@ msgstr "" msgid "Twilio settings updated successfully" msgstr "" -#. Label of the type (Select) field in DocType 'CRM Call Log' -#. Label of the type (Select) field in DocType 'CRM Deal Status' -#. Label of the type (Select) field in DocType 'CRM Dropdown Item' -#. Label of the type (Select) field in DocType 'CRM Fields Layout' -#. Label of the type (Select) field in DocType 'CRM Global Settings' -#. Label of the type (Select) field in DocType 'CRM Notification' -#. Label of the type (Select) field in DocType 'CRM View Settings' -#: crm/fcrm/doctype/crm_call_log/crm_call_log.json -#: crm/fcrm/doctype/crm_deal_status/crm_deal_status.json -#: crm/fcrm/doctype/crm_dropdown_item/crm_dropdown_item.json -#: crm/fcrm/doctype/crm_fields_layout/crm_fields_layout.json -#: crm/fcrm/doctype/crm_global_settings/crm_global_settings.json -#: crm/fcrm/doctype/crm_notification/crm_notification.json -#: crm/fcrm/doctype/crm_view_settings/crm_view_settings.json +#. Label of the type (Select) field in PageType 'CRM Call Log' +#. Label of the type (Select) field in PageType 'CRM Deal Status' +#. Label of the type (Select) field in PageType 'CRM Dropdown Item' +#. Label of the type (Select) field in PageType 'CRM Fields Layout' +#. Label of the type (Select) field in PageType 'CRM Global Settings' +#. Label of the type (Select) field in PageType 'CRM Notification' +#. Label of the type (Select) field in PageType 'CRM View Settings' +#: crm/fcrm/pagetype/crm_call_log/crm_call_log.json +#: crm/fcrm/pagetype/crm_deal_status/crm_deal_status.json +#: crm/fcrm/pagetype/crm_dropdown_item/crm_dropdown_item.json +#: crm/fcrm/pagetype/crm_fields_layout/crm_fields_layout.json +#: crm/fcrm/pagetype/crm_global_settings/crm_global_settings.json +#: crm/fcrm/pagetype/crm_notification/crm_notification.json +#: crm/fcrm/pagetype/crm_view_settings/crm_view_settings.json msgid "Type" msgstr "" @@ -5772,12 +5772,12 @@ msgstr "" msgid "Uploading {0}%" msgstr "Загрузка {0}%" -#. Label of the user (Link) field in DocType 'CRM Dashboard' -#. Label of the user (Link) field in DocType 'CRM Telephony Agent' -#. Label of the user (Link) field in DocType 'CRM View Settings' -#: crm/fcrm/doctype/crm_dashboard/crm_dashboard.json -#: crm/fcrm/doctype/crm_telephony_agent/crm_telephony_agent.json -#: crm/fcrm/doctype/crm_view_settings/crm_view_settings.json +#. Label of the user (Link) field in PageType 'CRM Dashboard' +#. Label of the user (Link) field in PageType 'CRM Telephony Agent' +#. Label of the user (Link) field in PageType 'CRM View Settings' +#: crm/fcrm/pagetype/crm_dashboard/crm_dashboard.json +#: crm/fcrm/pagetype/crm_telephony_agent/crm_telephony_agent.json +#: crm/fcrm/pagetype/crm_view_settings/crm_view_settings.json msgid "User" msgstr "" @@ -5785,8 +5785,8 @@ msgstr "" msgid "User Management" msgstr "" -#. Label of the user_name (Data) field in DocType 'CRM Telephony Agent' -#: crm/fcrm/doctype/crm_telephony_agent/crm_telephony_agent.json +#. Label of the user_name (Data) field in PageType 'CRM Telephony Agent' +#: crm/fcrm/pagetype/crm_telephony_agent/crm_telephony_agent.json msgid "User Name" msgstr "" @@ -5808,9 +5808,9 @@ msgstr "" msgid "Users are required" msgstr "" -#. Label of the section_break_nevd (Section Break) field in DocType 'CRM +#. Label of the section_break_nevd (Section Break) field in PageType 'CRM #. Service Level Agreement' -#: crm/fcrm/doctype/crm_service_level_agreement/crm_service_level_agreement.json +#: crm/fcrm/pagetype/crm_service_level_agreement/crm_service_level_agreement.json msgid "Validity" msgstr "Действительность" @@ -5834,33 +5834,33 @@ msgstr "" msgid "Web form" msgstr "" -#. Label of the webhook_verify_token (Data) field in DocType 'CRM Exotel +#. Label of the webhook_verify_token (Data) field in PageType 'CRM Exotel #. Settings' -#: crm/fcrm/doctype/crm_exotel_settings/crm_exotel_settings.json +#: crm/fcrm/pagetype/crm_exotel_settings/crm_exotel_settings.json msgid "Webhook Verify Token" msgstr "" -#. Label of the website (Data) field in DocType 'CRM Deal' -#. Label of the website (Data) field in DocType 'CRM Lead' -#. Label of the website (Data) field in DocType 'CRM Organization' -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_lead/crm_lead.json -#: crm/fcrm/doctype/crm_organization/crm_organization.json +#. Label of the website (Data) field in PageType 'CRM Deal' +#. Label of the website (Data) field in PageType 'CRM Lead' +#. Label of the website (Data) field in PageType 'CRM Organization' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_lead/crm_lead.json +#: crm/fcrm/pagetype/crm_organization/crm_organization.json #: frontend/src/components/Modals/AboutModal.vue:52 msgid "Website" msgstr "" -#. Option for the 'Weekly Off' (Select) field in DocType 'CRM Holiday List' -#. Option for the 'Workday' (Select) field in DocType 'CRM Service Day' -#: crm/fcrm/doctype/crm_holiday_list/crm_holiday_list.json -#: crm/fcrm/doctype/crm_service_day/crm_service_day.json +#. Option for the 'Weekly Off' (Select) field in PageType 'CRM Holiday List' +#. Option for the 'Workday' (Select) field in PageType 'CRM Service Day' +#: crm/fcrm/pagetype/crm_holiday_list/crm_holiday_list.json +#: crm/fcrm/pagetype/crm_service_day/crm_service_day.json msgid "Wednesday" msgstr "Среда" -#. Label of the weekly_off (Check) field in DocType 'CRM Holiday' -#. Label of the weekly_off (Select) field in DocType 'CRM Holiday List' -#: crm/fcrm/doctype/crm_holiday/crm_holiday.json -#: crm/fcrm/doctype/crm_holiday_list/crm_holiday_list.json +#. Label of the weekly_off (Check) field in PageType 'CRM Holiday' +#. Label of the weekly_off (Select) field in PageType 'CRM Holiday List' +#: crm/fcrm/pagetype/crm_holiday/crm_holiday.json +#: crm/fcrm/pagetype/crm_holiday_list/crm_holiday_list.json msgid "Weekly Off" msgstr "" @@ -5868,7 +5868,7 @@ msgstr "" msgid "Welcome Message" msgstr "" -#: crm/fcrm/doctype/helpdesk_crm_settings/helpdesk_crm_settings.py:155 +#: crm/fcrm/pagetype/helpdesk_crm_settings/helpdesk_crm_settings.py:155 msgid "Welcome to Helpdesk" msgstr "" @@ -5876,8 +5876,8 @@ msgstr "" msgid "Welcome {0}, lets add your first lead" msgstr "" -#. Option for the 'Type' (Select) field in DocType 'CRM Notification' -#: crm/fcrm/doctype/crm_notification/crm_notification.json +#. Option for the 'Type' (Select) field in PageType 'CRM Notification' +#: crm/fcrm/pagetype/crm_notification/crm_notification.json #: frontend/src/components/Layouts/AppSidebar.vue:603 #: frontend/src/components/Settings/Settings.vue:190 #: frontend/src/pages/Deal.vue:572 frontend/src/pages/Lead.vue:429 @@ -5902,8 +5902,8 @@ msgstr "Ширина" msgid "Width can be in number, pixel or rem (eg. 3, 30px, 10rem)" msgstr "" -#. Option for the 'Type' (Select) field in DocType 'CRM Deal Status' -#: crm/fcrm/doctype/crm_deal_status/crm_deal_status.json +#. Option for the 'Type' (Select) field in PageType 'CRM Deal Status' +#: crm/fcrm/pagetype/crm_deal_status/crm_deal_status.json msgid "Won" msgstr "" @@ -5912,16 +5912,16 @@ msgstr "" msgid "Won deals" msgstr "" -#. Label of the workday (Select) field in DocType 'CRM Service Day' -#: crm/fcrm/doctype/crm_service_day/crm_service_day.json +#. Label of the workday (Select) field in PageType 'CRM Service Day' +#: crm/fcrm/pagetype/crm_service_day/crm_service_day.json msgid "Workday" msgstr "" -#. Label of the section_break_rmgo (Section Break) field in DocType 'CRM +#. Label of the section_break_rmgo (Section Break) field in PageType 'CRM #. Service Level Agreement' -#. Label of the working_hours (Table) field in DocType 'CRM Service Level +#. Label of the working_hours (Table) field in PageType 'CRM Service Level #. Agreement' -#: crm/fcrm/doctype/crm_service_level_agreement/crm_service_level_agreement.json +#: crm/fcrm/pagetype/crm_service_level_agreement/crm_service_level_agreement.json msgid "Working Hours" msgstr "" @@ -5967,7 +5967,7 @@ msgstr "" msgid "You do not have permission to access this document" msgstr "" -#: crm/fcrm/doctype/crm_form_script/crm_form_script.py:24 +#: crm/fcrm/pagetype/crm_form_script/crm_form_script.py:24 msgid "You need to be in developer mode to edit a Standard Form Script" msgstr "" @@ -5995,10 +5995,10 @@ msgstr "" msgid "added a" msgstr "" -#. Option for the 'Color' (Select) field in DocType 'CRM Deal Status' -#. Option for the 'Color' (Select) field in DocType 'CRM Lead Status' -#: crm/fcrm/doctype/crm_deal_status/crm_deal_status.json -#: crm/fcrm/doctype/crm_lead_status/crm_lead_status.json +#. Option for the 'Color' (Select) field in PageType 'CRM Deal Status' +#. Option for the 'Color' (Select) field in PageType 'CRM Lead Status' +#: crm/fcrm/pagetype/crm_deal_status/crm_deal_status.json +#: crm/fcrm/pagetype/crm_lead_status/crm_lead_status.json msgid "amber" msgstr "" @@ -6010,17 +6010,17 @@ msgstr "" msgid "assigned a {0} {1} to you" msgstr "" -#. Option for the 'Color' (Select) field in DocType 'CRM Deal Status' -#. Option for the 'Color' (Select) field in DocType 'CRM Lead Status' -#: crm/fcrm/doctype/crm_deal_status/crm_deal_status.json -#: crm/fcrm/doctype/crm_lead_status/crm_lead_status.json +#. Option for the 'Color' (Select) field in PageType 'CRM Deal Status' +#. Option for the 'Color' (Select) field in PageType 'CRM Lead Status' +#: crm/fcrm/pagetype/crm_deal_status/crm_deal_status.json +#: crm/fcrm/pagetype/crm_lead_status/crm_lead_status.json msgid "black" msgstr "черный" -#. Option for the 'Color' (Select) field in DocType 'CRM Deal Status' -#. Option for the 'Color' (Select) field in DocType 'CRM Lead Status' -#: crm/fcrm/doctype/crm_deal_status/crm_deal_status.json -#: crm/fcrm/doctype/crm_lead_status/crm_lead_status.json +#. Option for the 'Color' (Select) field in PageType 'CRM Deal Status' +#. Option for the 'Color' (Select) field in PageType 'CRM Lead Status' +#: crm/fcrm/pagetype/crm_deal_status/crm_deal_status.json +#: crm/fcrm/pagetype/crm_lead_status/crm_lead_status.json msgid "blue" msgstr "синий" @@ -6037,10 +6037,10 @@ msgstr "комментарий" msgid "condition" msgstr "состояние" -#. Option for the 'Color' (Select) field in DocType 'CRM Deal Status' -#. Option for the 'Color' (Select) field in DocType 'CRM Lead Status' -#: crm/fcrm/doctype/crm_deal_status/crm_deal_status.json -#: crm/fcrm/doctype/crm_lead_status/crm_lead_status.json +#. Option for the 'Color' (Select) field in PageType 'CRM Deal Status' +#. Option for the 'Color' (Select) field in PageType 'CRM Lead Status' +#: crm/fcrm/pagetype/crm_deal_status/crm_deal_status.json +#: crm/fcrm/pagetype/crm_lead_status/crm_lead_status.json msgid "cyan" msgstr "бирюзовый" @@ -6059,33 +6059,33 @@ msgstr "стол" msgid "email already exists" msgstr "" -#. Option for the 'Service Provider' (Select) field in DocType 'FCRM Settings' -#: crm/fcrm/doctype/fcrm_settings/fcrm_settings.json +#. Option for the 'Service Provider' (Select) field in PageType 'FCRM Settings' +#: crm/fcrm/pagetype/fcrm_settings/fcrm_settings.json #: frontend/src/components/Settings/CurrencySettings.vue:106 msgid "exchangerate.host" msgstr "" -#. Option for the 'Service Provider' (Select) field in DocType 'FCRM Settings' -#: crm/fcrm/doctype/fcrm_settings/fcrm_settings.json +#. Option for the 'Service Provider' (Select) field in PageType 'FCRM Settings' +#: crm/fcrm/pagetype/fcrm_settings/fcrm_settings.json msgid "frankfurter.app" msgstr "" -#. Option for the 'Color' (Select) field in DocType 'CRM Deal Status' -#. Option for the 'Color' (Select) field in DocType 'CRM Lead Status' -#: crm/fcrm/doctype/crm_deal_status/crm_deal_status.json -#: crm/fcrm/doctype/crm_lead_status/crm_lead_status.json +#. Option for the 'Color' (Select) field in PageType 'CRM Deal Status' +#. Option for the 'Color' (Select) field in PageType 'CRM Lead Status' +#: crm/fcrm/pagetype/crm_deal_status/crm_deal_status.json +#: crm/fcrm/pagetype/crm_lead_status/crm_lead_status.json msgid "gray" msgstr "серый" -#. Option for the 'Color' (Select) field in DocType 'CRM Deal Status' -#. Option for the 'Color' (Select) field in DocType 'CRM Lead Status' -#: crm/fcrm/doctype/crm_deal_status/crm_deal_status.json -#: crm/fcrm/doctype/crm_lead_status/crm_lead_status.json +#. Option for the 'Color' (Select) field in PageType 'CRM Deal Status' +#. Option for the 'Color' (Select) field in PageType 'CRM Lead Status' +#: crm/fcrm/pagetype/crm_deal_status/crm_deal_status.json +#: crm/fcrm/pagetype/crm_lead_status/crm_lead_status.json msgid "green" msgstr "зеленый" -#. Option for the 'Type' (Select) field in DocType 'CRM View Settings' -#: crm/fcrm/doctype/crm_view_settings/crm_view_settings.json +#. Option for the 'Type' (Select) field in PageType 'CRM View Settings' +#: crm/fcrm/pagetype/crm_view_settings/crm_view_settings.json msgid "group_by" msgstr "" @@ -6170,12 +6170,12 @@ msgstr "" msgid "just now" msgstr "" -#. Option for the 'Type' (Select) field in DocType 'CRM View Settings' -#: crm/fcrm/doctype/crm_view_settings/crm_view_settings.json +#. Option for the 'Type' (Select) field in PageType 'CRM View Settings' +#: crm/fcrm/pagetype/crm_view_settings/crm_view_settings.json msgid "kanban" msgstr "канбан" -#: crm/api/doc.py:40 crm/api/doc.py:158 crm/api/doc.py:503 +#: crm/api/pg.py:40 crm/api/pg.py:158 crm/api/pg.py:503 msgid "label" msgstr "этикетка" @@ -6184,8 +6184,8 @@ msgstr "этикетка" msgid "leads" msgstr "лиды" -#. Option for the 'Type' (Select) field in DocType 'CRM View Settings' -#: crm/fcrm/doctype/crm_view_settings/crm_view_settings.json +#. Option for the 'Type' (Select) field in PageType 'CRM View Settings' +#: crm/fcrm/pagetype/crm_view_settings/crm_view_settings.json msgid "list" msgstr "список" @@ -6206,17 +6206,17 @@ msgstr "" msgid "operator" msgstr "оператор" -#. Option for the 'Color' (Select) field in DocType 'CRM Deal Status' -#. Option for the 'Color' (Select) field in DocType 'CRM Lead Status' -#: crm/fcrm/doctype/crm_deal_status/crm_deal_status.json -#: crm/fcrm/doctype/crm_lead_status/crm_lead_status.json +#. Option for the 'Color' (Select) field in PageType 'CRM Deal Status' +#. Option for the 'Color' (Select) field in PageType 'CRM Lead Status' +#: crm/fcrm/pagetype/crm_deal_status/crm_deal_status.json +#: crm/fcrm/pagetype/crm_lead_status/crm_lead_status.json msgid "orange" msgstr "оранжевый" -#. Option for the 'Color' (Select) field in DocType 'CRM Deal Status' -#. Option for the 'Color' (Select) field in DocType 'CRM Lead Status' -#: crm/fcrm/doctype/crm_deal_status/crm_deal_status.json -#: crm/fcrm/doctype/crm_lead_status/crm_lead_status.json +#. Option for the 'Color' (Select) field in PageType 'CRM Deal Status' +#. Option for the 'Color' (Select) field in PageType 'CRM Lead Status' +#: crm/fcrm/pagetype/crm_deal_status/crm_deal_status.json +#: crm/fcrm/pagetype/crm_lead_status/crm_lead_status.json msgid "pink" msgstr "розовый" @@ -6232,10 +6232,10 @@ msgstr "приватный" msgid "public" msgstr "публично" -#. Option for the 'Color' (Select) field in DocType 'CRM Deal Status' -#. Option for the 'Color' (Select) field in DocType 'CRM Lead Status' -#: crm/fcrm/doctype/crm_deal_status/crm_deal_status.json -#: crm/fcrm/doctype/crm_lead_status/crm_lead_status.json +#. Option for the 'Color' (Select) field in PageType 'CRM Deal Status' +#. Option for the 'Color' (Select) field in PageType 'CRM Lead Status' +#: crm/fcrm/pagetype/crm_deal_status/crm_deal_status.json +#: crm/fcrm/pagetype/crm_lead_status/crm_lead_status.json msgid "purple" msgstr "фиолетовый" @@ -6243,17 +6243,17 @@ msgstr "фиолетовый" msgid "received a whatsapp message in {0}" msgstr "" -#. Option for the 'Color' (Select) field in DocType 'CRM Deal Status' -#. Option for the 'Color' (Select) field in DocType 'CRM Lead Status' -#: crm/fcrm/doctype/crm_deal_status/crm_deal_status.json -#: crm/fcrm/doctype/crm_lead_status/crm_lead_status.json +#. Option for the 'Color' (Select) field in PageType 'CRM Deal Status' +#. Option for the 'Color' (Select) field in PageType 'CRM Lead Status' +#: crm/fcrm/pagetype/crm_deal_status/crm_deal_status.json +#: crm/fcrm/pagetype/crm_lead_status/crm_lead_status.json msgid "red" msgstr "красный" -#. Option for the 'Color' (Select) field in DocType 'CRM Deal Status' -#. Option for the 'Color' (Select) field in DocType 'CRM Lead Status' -#: crm/fcrm/doctype/crm_deal_status/crm_deal_status.json -#: crm/fcrm/doctype/crm_lead_status/crm_lead_status.json +#. Option for the 'Color' (Select) field in PageType 'CRM Deal Status' +#. Option for the 'Color' (Select) field in PageType 'CRM Lead Status' +#: crm/fcrm/pagetype/crm_deal_status/crm_deal_status.json +#: crm/fcrm/pagetype/crm_lead_status/crm_lead_status.json msgid "teal" msgstr "" @@ -6266,10 +6266,10 @@ msgstr "" msgid "tomorrow" msgstr "завтра" -#. Option for the 'Color' (Select) field in DocType 'CRM Deal Status' -#. Option for the 'Color' (Select) field in DocType 'CRM Lead Status' -#: crm/fcrm/doctype/crm_deal_status/crm_deal_status.json -#: crm/fcrm/doctype/crm_lead_status/crm_lead_status.json +#. Option for the 'Color' (Select) field in PageType 'CRM Deal Status' +#. Option for the 'Color' (Select) field in PageType 'CRM Lead Status' +#: crm/fcrm/pagetype/crm_deal_status/crm_deal_status.json +#: crm/fcrm/pagetype/crm_lead_status/crm_lead_status.json msgid "violet" msgstr "" @@ -6278,10 +6278,10 @@ msgstr "" msgid "which are not compatible with this UI, you will need to recreate the conditions here if you want to manage and add new conditions from this UI." msgstr "" -#. Option for the 'Color' (Select) field in DocType 'CRM Deal Status' -#. Option for the 'Color' (Select) field in DocType 'CRM Lead Status' -#: crm/fcrm/doctype/crm_deal_status/crm_deal_status.json -#: crm/fcrm/doctype/crm_lead_status/crm_lead_status.json +#. Option for the 'Color' (Select) field in PageType 'CRM Deal Status' +#. Option for the 'Color' (Select) field in PageType 'CRM Lead Status' +#: crm/fcrm/pagetype/crm_deal_status/crm_deal_status.json +#: crm/fcrm/pagetype/crm_lead_status/crm_lead_status.json msgid "yellow" msgstr "жёлтый" @@ -6379,7 +6379,7 @@ msgid "⚠️ Method \"{0}\" not found in class." msgstr "" #: frontend/src/data/script.js:83 -msgid "⚠️ No class found for doctype: {0}, it is mandatory to have a class for the parent doctype. it can be empty, but it should be present." +msgid "⚠️ No class found for pagetype: {0}, it is mandatory to have a class for the parent pagetype. it can be empty, but it should be present." msgstr "" #: frontend/src/data/script.js:180 diff --git a/crm/locale/sr.po b/crm/locale/sr.po index 5709a1cb..a8f648ba 100644 --- a/crm/locale/sr.po +++ b/crm/locale/sr.po @@ -1,6 +1,6 @@ msgid "" msgstr "" -"Project-Id-Version: frappe\n" +"Project-Id-Version: jingrow\n" "Report-Msgid-Bugs-To: shariq@jingrow.com\n" "POT-Creation-Date: 2025-09-21 09:35+0000\n" "PO-Revision-Date: 2025-09-24 21:29\n" @@ -11,10 +11,10 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Generated-By: Babel 2.16.0\n" "Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" -"X-Crowdin-Project: frappe\n" +"X-Crowdin-Project: jingrow\n" "X-Crowdin-Project-ID: 639578\n" "X-Crowdin-Language: sr\n" -"X-Crowdin-File: /[frappe.crm] develop/crm/locale/main.pot\n" +"X-Crowdin-File: /[jingrow.crm] develop/crm/locale/main.pot\n" "X-Crowdin-File-ID: 97\n" "Language: sr_SP\n" @@ -55,73 +55,73 @@ msgstr "пре 1 недељу" msgid "1 year ago" msgstr "пре 1 годину" -#. Option for the 'No. of Employees' (Select) field in DocType 'CRM Deal' -#. Option for the 'No. of Employees' (Select) field in DocType 'CRM Lead' -#. Option for the 'No. of Employees' (Select) field in DocType 'CRM +#. Option for the 'No. of Employees' (Select) field in PageType 'CRM Deal' +#. Option for the 'No. of Employees' (Select) field in PageType 'CRM Lead' +#. Option for the 'No. of Employees' (Select) field in PageType 'CRM #. Organization' -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_lead/crm_lead.json -#: crm/fcrm/doctype/crm_organization/crm_organization.json +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_lead/crm_lead.json +#: crm/fcrm/pagetype/crm_organization/crm_organization.json msgid "1-10" msgstr "1-10" -#. Option for the 'No. of Employees' (Select) field in DocType 'CRM Deal' -#. Option for the 'No. of Employees' (Select) field in DocType 'CRM Lead' -#. Option for the 'No. of Employees' (Select) field in DocType 'CRM +#. Option for the 'No. of Employees' (Select) field in PageType 'CRM Deal' +#. Option for the 'No. of Employees' (Select) field in PageType 'CRM Lead' +#. Option for the 'No. of Employees' (Select) field in PageType 'CRM #. Organization' -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_lead/crm_lead.json -#: crm/fcrm/doctype/crm_organization/crm_organization.json +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_lead/crm_lead.json +#: crm/fcrm/pagetype/crm_organization/crm_organization.json msgid "1000+" msgstr "1000+" -#. Option for the 'No. of Employees' (Select) field in DocType 'CRM Deal' -#. Option for the 'No. of Employees' (Select) field in DocType 'CRM Lead' -#. Option for the 'No. of Employees' (Select) field in DocType 'CRM +#. Option for the 'No. of Employees' (Select) field in PageType 'CRM Deal' +#. Option for the 'No. of Employees' (Select) field in PageType 'CRM Lead' +#. Option for the 'No. of Employees' (Select) field in PageType 'CRM #. Organization' -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_lead/crm_lead.json -#: crm/fcrm/doctype/crm_organization/crm_organization.json +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_lead/crm_lead.json +#: crm/fcrm/pagetype/crm_organization/crm_organization.json msgid "11-50" msgstr "11-50" -#. Option for the 'No. of Employees' (Select) field in DocType 'CRM Deal' -#. Option for the 'No. of Employees' (Select) field in DocType 'CRM Lead' -#. Option for the 'No. of Employees' (Select) field in DocType 'CRM +#. Option for the 'No. of Employees' (Select) field in PageType 'CRM Deal' +#. Option for the 'No. of Employees' (Select) field in PageType 'CRM Lead' +#. Option for the 'No. of Employees' (Select) field in PageType 'CRM #. Organization' -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_lead/crm_lead.json -#: crm/fcrm/doctype/crm_organization/crm_organization.json +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_lead/crm_lead.json +#: crm/fcrm/pagetype/crm_organization/crm_organization.json msgid "201-500" msgstr "201-500" -#. Option for the 'No. of Employees' (Select) field in DocType 'CRM Deal' -#. Option for the 'No. of Employees' (Select) field in DocType 'CRM Lead' -#. Option for the 'No. of Employees' (Select) field in DocType 'CRM +#. Option for the 'No. of Employees' (Select) field in PageType 'CRM Deal' +#. Option for the 'No. of Employees' (Select) field in PageType 'CRM Lead' +#. Option for the 'No. of Employees' (Select) field in PageType 'CRM #. Organization' -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_lead/crm_lead.json -#: crm/fcrm/doctype/crm_organization/crm_organization.json +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_lead/crm_lead.json +#: crm/fcrm/pagetype/crm_organization/crm_organization.json msgid "501-1000" msgstr "501-1000" -#. Option for the 'No. of Employees' (Select) field in DocType 'CRM Deal' -#. Option for the 'No. of Employees' (Select) field in DocType 'CRM Lead' -#. Option for the 'No. of Employees' (Select) field in DocType 'CRM +#. Option for the 'No. of Employees' (Select) field in PageType 'CRM Deal' +#. Option for the 'No. of Employees' (Select) field in PageType 'CRM Lead' +#. Option for the 'No. of Employees' (Select) field in PageType 'CRM #. Organization' -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_lead/crm_lead.json -#: crm/fcrm/doctype/crm_organization/crm_organization.json +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_lead/crm_lead.json +#: crm/fcrm/pagetype/crm_organization/crm_organization.json msgid "51-200" msgstr "51-200" -#. Paragraph text in the Frappe CRM Workspace -#: crm/fcrm/workspace/frappe_crm/frappe_crm.json +#. Paragraph text in the Jingrow CRM Workspace +#: crm/fcrm/workspace/jingrow_crm/jingrow_crm.json msgid "META" msgstr "МЕТА" -#. Paragraph text in the Frappe CRM Workspace -#: crm/fcrm/workspace/frappe_crm/frappe_crm.json +#. Paragraph text in the Jingrow CRM Workspace +#: crm/fcrm/workspace/jingrow_crm/jingrow_crm.json msgid "SHORTCUTS" msgstr "ПРЕЧИЦЕ" @@ -130,8 +130,8 @@ msgstr "ПРЕЧИЦЕ" msgid "

Dear {{ lead_name }},

\\n\\n

This is a reminder for the payment of {{ grand_total }}.

\\n\\n

Thanks,

\\n

Frappé

" msgstr "

Здраво {{ lead_name }},

\\n\\n

Ово је подсетник за плаћање {{ grand_total }}.

\\n\\n

Хвала,

\\n

Frappé

" -#. Header text in the Frappe CRM Workspace -#: crm/fcrm/workspace/frappe_crm/frappe_crm.json +#. Header text in the Jingrow CRM Workspace +#: crm/fcrm/workspace/jingrow_crm/jingrow_crm.json msgid "PORTAL" msgstr "ПОРТАЛ" @@ -139,7 +139,7 @@ msgstr "ПОРТАЛ" msgid "@John, can you please check this?" msgstr "@Џон, можеш ли молим те проверити ово?" -#: crm/fcrm/doctype/crm_lead/crm_lead.py:56 +#: crm/fcrm/pagetype/crm_lead/crm_lead.py:56 msgid "A Lead requires either a person's name or an organization's name" msgstr "Потенцијални клијент захтева или име особе или назив организације" @@ -147,14 +147,14 @@ msgstr "Потенцијални клијент захтева или име о msgid "A new account has been created for you at {0}" msgstr "Нови налог је креиран за Вас на {0}" -#. Label of the api_key (Data) field in DocType 'CRM Exotel Settings' -#. Label of the api_key (Data) field in DocType 'CRM Twilio Settings' -#. Label of the api_key (Data) field in DocType 'ERPNext CRM Settings' -#. Label of the api_key (Data) field in DocType 'Helpdesk CRM Settings' -#: crm/fcrm/doctype/crm_exotel_settings/crm_exotel_settings.json -#: crm/fcrm/doctype/crm_twilio_settings/crm_twilio_settings.json -#: crm/fcrm/doctype/erpnext_crm_settings/erpnext_crm_settings.json -#: crm/fcrm/doctype/helpdesk_crm_settings/helpdesk_crm_settings.json +#. Label of the api_key (Data) field in PageType 'CRM Exotel Settings' +#. Label of the api_key (Data) field in PageType 'CRM Twilio Settings' +#. Label of the api_key (Data) field in PageType 'ERPNext CRM Settings' +#. Label of the api_key (Data) field in PageType 'Helpdesk CRM Settings' +#: crm/fcrm/pagetype/crm_exotel_settings/crm_exotel_settings.json +#: crm/fcrm/pagetype/crm_twilio_settings/crm_twilio_settings.json +#: crm/fcrm/pagetype/erpnext_crm_settings/erpnext_crm_settings.json +#: crm/fcrm/pagetype/helpdesk_crm_settings/helpdesk_crm_settings.json msgid "API Key" msgstr "API кључ" @@ -162,17 +162,17 @@ msgstr "API кључ" msgid "API Key is required" msgstr "API кључ је обавезан" -#. Label of the api_secret (Password) field in DocType 'CRM Twilio Settings' -#. Label of the api_secret (Password) field in DocType 'ERPNext CRM Settings' -#. Label of the api_secret (Password) field in DocType 'Helpdesk CRM Settings' -#: crm/fcrm/doctype/crm_twilio_settings/crm_twilio_settings.json -#: crm/fcrm/doctype/erpnext_crm_settings/erpnext_crm_settings.json -#: crm/fcrm/doctype/helpdesk_crm_settings/helpdesk_crm_settings.json +#. Label of the api_secret (Password) field in PageType 'CRM Twilio Settings' +#. Label of the api_secret (Password) field in PageType 'ERPNext CRM Settings' +#. Label of the api_secret (Password) field in PageType 'Helpdesk CRM Settings' +#: crm/fcrm/pagetype/crm_twilio_settings/crm_twilio_settings.json +#: crm/fcrm/pagetype/erpnext_crm_settings/erpnext_crm_settings.json +#: crm/fcrm/pagetype/helpdesk_crm_settings/helpdesk_crm_settings.json msgid "API Secret" msgstr "API тајна" -#. Label of the api_token (Password) field in DocType 'CRM Exotel Settings' -#: crm/fcrm/doctype/crm_exotel_settings/crm_exotel_settings.json +#. Label of the api_token (Password) field in PageType 'CRM Exotel Settings' +#: crm/fcrm/pagetype/crm_exotel_settings/crm_exotel_settings.json msgid "API Token" msgstr "API токен" @@ -180,7 +180,7 @@ msgstr "API токен" msgid "Accept" msgstr "Прихвати" -#: crm/fcrm/doctype/crm_invitation/crm_invitation.js:7 +#: crm/fcrm/pagetype/crm_invitation/crm_invitation.js:7 msgid "Accept Invitation" msgstr "Прихвати позивницу" @@ -188,22 +188,22 @@ msgstr "Прихвати позивницу" msgid "Accept call" msgstr "Прихвати позив" -#. Option for the 'Status' (Select) field in DocType 'CRM Invitation' -#: crm/fcrm/doctype/crm_invitation/crm_invitation.json +#. Option for the 'Status' (Select) field in PageType 'CRM Invitation' +#: crm/fcrm/pagetype/crm_invitation/crm_invitation.json msgid "Accepted" msgstr "Прихваћено" -#. Label of the accepted_at (Datetime) field in DocType 'CRM Invitation' -#: crm/fcrm/doctype/crm_invitation/crm_invitation.json +#. Label of the accepted_at (Datetime) field in PageType 'CRM Invitation' +#: crm/fcrm/pagetype/crm_invitation/crm_invitation.json msgid "Accepted At" msgstr "Прихваћено" -#. Label of the access_key (Data) field in DocType 'FCRM Settings' -#: crm/fcrm/doctype/fcrm_settings/fcrm_settings.json +#. Label of the access_key (Data) field in PageType 'FCRM Settings' +#: crm/fcrm/pagetype/fcrm_settings/fcrm_settings.json msgid "Access Key" msgstr "Кључ за приступ" -#: crm/fcrm/doctype/fcrm_settings/fcrm_settings.py:156 +#: crm/fcrm/pagetype/fcrm_settings/fcrm_settings.py:156 msgid "Access Key is required for Service Provider: {0}" msgstr "Кључ за приступ је обавезан за пружаоца услуга: {0}" @@ -219,10 +219,10 @@ msgstr "Кључ за приступ Exchangerate Host. Неопходан за msgid "Account Name" msgstr "Назив налога" -#. Label of the account_sid (Data) field in DocType 'CRM Exotel Settings' -#. Label of the account_sid (Data) field in DocType 'CRM Twilio Settings' -#: crm/fcrm/doctype/crm_exotel_settings/crm_exotel_settings.json -#: crm/fcrm/doctype/crm_twilio_settings/crm_twilio_settings.json +#. Label of the account_sid (Data) field in PageType 'CRM Exotel Settings' +#. Label of the account_sid (Data) field in PageType 'CRM Twilio Settings' +#: crm/fcrm/pagetype/crm_exotel_settings/crm_exotel_settings.json +#: crm/fcrm/pagetype/crm_twilio_settings/crm_twilio_settings.json msgid "Account SID" msgstr "SID налога" @@ -296,9 +296,9 @@ msgstr "Додај сортирање" msgid "Add Tab" msgstr "Додај картицу" -#. Label of the add_weekly_holidays_section (Section Break) field in DocType +#. Label of the add_weekly_holidays_section (Section Break) field in PageType #. 'CRM Holiday List' -#: crm/fcrm/doctype/crm_holiday_list/crm_holiday_list.json +#: crm/fcrm/pagetype/crm_holiday_list/crm_holiday_list.json msgid "Add Weekly Holidays" msgstr "Додај недељне празнике" @@ -363,8 +363,8 @@ msgstr "Додај белешку" msgid "Add sample data" msgstr "Додај пробне податке" -#. Description of the 'Icon' (Code) field in DocType 'CRM Dropdown Item' -#: crm/fcrm/doctype/crm_dropdown_item/crm_dropdown_item.json +#. Description of the 'Icon' (Code) field in PageType 'CRM Dropdown Item' +#: crm/fcrm/pagetype/crm_dropdown_item/crm_dropdown_item.json msgid "Add svg code or use feather icons e.g 'settings'" msgstr "Додај SVG код или користи Feather иконице, нпр. 'подешавање'" @@ -372,8 +372,8 @@ msgstr "Додај SVG код или користи Feather иконице, нп msgid "Add task" msgstr "Додај задатак" -#. Label of the add_to_holidays (Button) field in DocType 'CRM Holiday List' -#: crm/fcrm/doctype/crm_holiday_list/crm_holiday_list.json +#. Label of the add_to_holidays (Button) field in PageType 'CRM Holiday List' +#: crm/fcrm/pagetype/crm_holiday_list/crm_holiday_list.json msgid "Add to Holidays" msgstr "Додај у празнике" @@ -385,8 +385,8 @@ msgstr "Додајте свој први коментар" msgid "Add, edit, and manage email templates for various CRM communications" msgstr "Додајте, уредите и управљајте имејл шаблонима из различите CRM комуникације" -#. Label of the address (Link) field in DocType 'CRM Organization' -#: crm/fcrm/doctype/crm_organization/crm_organization.json +#. Label of the address (Link) field in PageType 'CRM Organization' +#: crm/fcrm/pagetype/crm_organization/crm_organization.json msgid "Address" msgstr "Адреса" @@ -406,14 +406,14 @@ msgid "Agent is unavailable to take the call, please call after some time." msgstr "Агент тренутно није доступан да прими позив, молимо Вас да покушате касније." #. Name of a role -#: crm/fcrm/doctype/crm_exotel_settings/crm_exotel_settings.json -#: crm/fcrm/doctype/crm_fields_layout/crm_fields_layout.json -#: crm/fcrm/doctype/crm_form_script/crm_form_script.json -#: crm/fcrm/doctype/crm_industry/crm_industry.json -#: crm/fcrm/doctype/crm_lead/crm_lead.json -#: crm/fcrm/doctype/crm_lead_source/crm_lead_source.json -#: crm/fcrm/doctype/crm_lead_status/crm_lead_status.json -#: crm/fcrm/doctype/fcrm_settings/fcrm_settings.json +#: crm/fcrm/pagetype/crm_exotel_settings/crm_exotel_settings.json +#: crm/fcrm/pagetype/crm_fields_layout/crm_fields_layout.json +#: crm/fcrm/pagetype/crm_form_script/crm_form_script.json +#: crm/fcrm/pagetype/crm_industry/crm_industry.json +#: crm/fcrm/pagetype/crm_lead/crm_lead.json +#: crm/fcrm/pagetype/crm_lead_source/crm_lead_source.json +#: crm/fcrm/pagetype/crm_lead_status/crm_lead_status.json +#: crm/fcrm/pagetype/fcrm_settings/fcrm_settings.json #: frontend/src/components/Settings/EmailTemplate/EmailTemplates.vue:76 #: frontend/src/components/Settings/Users.vue:85 msgid "All" @@ -426,16 +426,16 @@ msgstr "Све" msgid "All day" msgstr "Цео дан" -#. Label of the amount (Currency) field in DocType 'CRM Products' -#: crm/fcrm/doctype/crm_products/crm_products.json +#. Label of the amount (Currency) field in PageType 'CRM Products' +#: crm/fcrm/pagetype/crm_products/crm_products.json #: frontend/src/pages/Contact.vue:499 frontend/src/pages/MobileContact.vue:507 #: frontend/src/pages/MobileOrganization.vue:451 #: frontend/src/pages/Organization.vue:472 msgid "Amount" msgstr "Износ" -#. Description of the 'Net Amount' (Currency) field in DocType 'CRM Products' -#: crm/fcrm/doctype/crm_products/crm_products.json +#. Description of the 'Net Amount' (Currency) field in PageType 'CRM Products' +#: crm/fcrm/pagetype/crm_products/crm_products.json msgid "Amount after discount" msgstr "Износ након попуста" @@ -447,13 +447,13 @@ msgstr "Догодила се грешка" msgid "An error occurred while updating the document" msgstr "Дошло је до грешке приликом ажурирања документа" -#. Description of the 'Favicon' (Attach) field in DocType 'FCRM Settings' -#: crm/fcrm/doctype/fcrm_settings/fcrm_settings.json +#. Description of the 'Favicon' (Attach) field in PageType 'FCRM Settings' +#: crm/fcrm/pagetype/fcrm_settings/fcrm_settings.json msgid "An icon file with .ico extension. Should be 16 x 16 px. Generated using a favicon generator. [favicon-generator.org]" msgstr "Иконица са екстензијом .ico. Требало би да буде размере 16 х 16 пиксела. Генерисано помоћу favicon генератора [favicon-generator.org]" -#. Description of the 'Logo' (Attach) field in DocType 'FCRM Settings' -#: crm/fcrm/doctype/fcrm_settings/fcrm_settings.json +#. Description of the 'Logo' (Attach) field in PageType 'FCRM Settings' +#: crm/fcrm/pagetype/fcrm_settings/fcrm_settings.json msgid "An image with 1:1 & 2:1 ratio is preferred" msgstr "Препоручује се слика у размери 1:1 и 2:1" @@ -461,12 +461,12 @@ msgstr "Препоручује се слика у размери 1:1 и 2:1" msgid "And" msgstr "и" -#. Label of the annual_revenue (Currency) field in DocType 'CRM Deal' -#. Label of the annual_revenue (Currency) field in DocType 'CRM Lead' -#. Label of the annual_revenue (Currency) field in DocType 'CRM Organization' -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_lead/crm_lead.json -#: crm/fcrm/doctype/crm_organization/crm_organization.json +#. Label of the annual_revenue (Currency) field in PageType 'CRM Deal' +#. Label of the annual_revenue (Currency) field in PageType 'CRM Lead' +#. Label of the annual_revenue (Currency) field in PageType 'CRM Organization' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_lead/crm_lead.json +#: crm/fcrm/pagetype/crm_organization/crm_organization.json msgid "Annual Revenue" msgstr "Годишњи приход" @@ -488,13 +488,13 @@ msgstr "Појављује се поред наслова у картици ин msgid "Apply" msgstr "Примени" -#. Label of the apply_on (Link) field in DocType 'CRM Service Level Agreement' -#: crm/fcrm/doctype/crm_service_level_agreement/crm_service_level_agreement.json +#. Label of the apply_on (Link) field in PageType 'CRM Service Level Agreement' +#: crm/fcrm/pagetype/crm_service_level_agreement/crm_service_level_agreement.json msgid "Apply On" msgstr "Примени на" -#. Label of the view (Select) field in DocType 'CRM Form Script' -#: crm/fcrm/doctype/crm_form_script/crm_form_script.json +#. Label of the view (Select) field in PageType 'CRM Form Script' +#: crm/fcrm/pagetype/crm_form_script/crm_form_script.json msgid "Apply To" msgstr "Примени на" @@ -540,10 +540,10 @@ msgid "Are you sure you want to go back? Unsaved changes will be lost." msgstr "Да ли сте сигурни да желите да се вратите? Несачуване измене ће бити изгубљене." #: frontend/src/composables/frappecloud.js:24 -msgid "Are you sure you want to login to your Frappe Cloud dashboard?" -msgstr "Да ли сте сигурни да желите да се пријавите на своју Frappe Cloud контролну таблу?" +msgid "Are you sure you want to login to your Jingrow Cloud dashboard?" +msgstr "Да ли сте сигурни да желите да се пријавите на своју Jingrow Cloud контролну таблу?" -#: crm/fcrm/doctype/erpnext_crm_settings/erpnext_crm_settings.js:9 +#: crm/fcrm/pagetype/erpnext_crm_settings/erpnext_crm_settings.js:9 msgid "Are you sure you want to reset 'Create Quotation from CRM Deal' Form Script?" msgstr "Да ли сте сигурни да желите да ресетујете скрипту обрасца 'Креирај понуду из ЦРМ пословне прилике'?" @@ -555,7 +555,7 @@ msgstr "Да ли сте сигурни да желите да поставит msgid "Are you sure you want to unlink {0} linked item(s)?" msgstr "Да ли сте сигурни да желите да поништите повезивање {0} повезаних ставки?" -#: crm/fcrm/doctype/fcrm_settings/fcrm_settings.py:193 +#: crm/fcrm/pagetype/fcrm_settings/fcrm_settings.py:193 msgid "Ask your manager to set up the Exchange Rate Provider, as default provider does not support currency conversion for {0} to {1}." msgstr "Затражите од свог менаџера да постави провајдера девизних курсева, јер подразумевани провајдер не подржава конверзију валута из {0} у {1}." @@ -581,8 +581,8 @@ msgstr "Додели" msgid "Assign to me" msgstr "Додели себи" -#. Label of the assigned_to (Link) field in DocType 'CRM Task' -#: crm/fcrm/doctype/crm_task/crm_task.json +#. Label of the assigned_to (Link) field in PageType 'CRM Task' +#: crm/fcrm/pagetype/crm_task/crm_task.json msgid "Assigned To" msgstr "Додељено" @@ -594,13 +594,13 @@ msgstr "Правило извршиоца" msgid "Assignees" msgstr "Извршиоци" -#. Option for the 'Type' (Select) field in DocType 'CRM Notification' -#: crm/fcrm/doctype/crm_notification/crm_notification.json +#. Option for the 'Type' (Select) field in PageType 'CRM Notification' +#: crm/fcrm/pagetype/crm_notification/crm_notification.json msgid "Assignment" msgstr "Задатак" -#. Label of a shortcut in the Frappe CRM Workspace -#: crm/fcrm/workspace/frappe_crm/frappe_crm.json +#. Label of a shortcut in the Jingrow CRM Workspace +#: crm/fcrm/workspace/jingrow_crm/jingrow_crm.json msgid "Assignment Rule" msgstr "Правило доделе задатка" @@ -678,14 +678,14 @@ msgstr "Прилози" msgid "Attendees" msgstr "Учесници" -#. Label of the auth_token (Password) field in DocType 'CRM Twilio Settings' -#: crm/fcrm/doctype/crm_twilio_settings/crm_twilio_settings.json +#. Label of the auth_token (Password) field in PageType 'CRM Twilio Settings' +#: crm/fcrm/pagetype/crm_twilio_settings/crm_twilio_settings.json msgid "Auth Token" msgstr "Аутентификациони токен" -#. Label of the auto_update_expected_deal_value (Check) field in DocType 'FCRM +#. Label of the auto_update_expected_deal_value (Check) field in PageType 'FCRM #. Settings' -#: crm/fcrm/doctype/fcrm_settings/fcrm_settings.json +#: crm/fcrm/pagetype/fcrm_settings/fcrm_settings.json msgid "Auto Update Expected Deal Value" msgstr "Аутоматско ажурирање очекиване вредности пословне прилике" @@ -702,8 +702,8 @@ msgid "Auto update of expected deal value enabled" msgstr "Аутоматско ажурирање очекиване вредности пословне прилике је омогућено" #. Description of the 'Auto Update Expected Deal Value' (Check) field in -#. DocType 'FCRM Settings' -#: crm/fcrm/doctype/fcrm_settings/fcrm_settings.json +#. PageType 'FCRM Settings' +#: crm/fcrm/pagetype/fcrm_settings/fcrm_settings.json #: frontend/src/components/Settings/ForecastingSettings.vue:46 msgid "Automatically update \"Expected Deal Value\" based on the total value of associated products in a deal" msgstr "Аутоматски ажурирај \"Очекивана вредност пословне прилике\" на основу укупне вредности повезаних производа у пословној прилици" @@ -793,8 +793,8 @@ msgstr "Назад" msgid "Back to file upload" msgstr "Назад на отпремање фајлова" -#. Option for the 'Status' (Select) field in DocType 'CRM Task' -#: crm/fcrm/doctype/crm_task/crm_task.json +#. Option for the 'Status' (Select) field in PageType 'CRM Task' +#: crm/fcrm/pagetype/crm_task/crm_task.json msgid "Backlog" msgstr "Закашњење" @@ -818,8 +818,8 @@ msgstr "Назив бренда" msgid "Brand settings" msgstr "Подешавање бренда" -#. Label of the branding_tab (Tab Break) field in DocType 'FCRM Settings' -#: crm/fcrm/doctype/fcrm_settings/fcrm_settings.json +#. Label of the branding_tab (Tab Break) field in PageType 'FCRM Settings' +#: crm/fcrm/pagetype/fcrm_settings/fcrm_settings.json msgid "Branding" msgstr "Брендирање" @@ -827,8 +827,8 @@ msgstr "Брендирање" msgid "Bulk Edit" msgstr "Масовно уређивање" -#. Option for the 'Status' (Select) field in DocType 'CRM Call Log' -#: crm/fcrm/doctype/crm_call_log/crm_call_log.json +#. Option for the 'Status' (Select) field in PageType 'CRM Call Log' +#: crm/fcrm/pagetype/crm_call_log/crm_call_log.json msgid "Busy" msgstr "Заузет" @@ -838,174 +838,174 @@ msgstr "Заузет" msgid "CC" msgstr "CC" -#. Name of a DocType -#: crm/fcrm/doctype/crm_call_log/crm_call_log.json +#. Name of a PageType +#: crm/fcrm/pagetype/crm_call_log/crm_call_log.json msgid "CRM Call Log" msgstr "CRM евиденција позива" -#. Name of a DocType -#: crm/fcrm/doctype/crm_communication_status/crm_communication_status.json +#. Name of a PageType +#: crm/fcrm/pagetype/crm_communication_status/crm_communication_status.json msgid "CRM Communication Status" msgstr "CRM статус комуникације" -#. Name of a DocType -#: crm/fcrm/doctype/crm_contacts/crm_contacts.json +#. Name of a PageType +#: crm/fcrm/pagetype/crm_contacts/crm_contacts.json msgid "CRM Contacts" msgstr "CRM контакти" -#. Name of a DocType -#: crm/fcrm/doctype/crm_dashboard/crm_dashboard.json +#. Name of a PageType +#: crm/fcrm/pagetype/crm_dashboard/crm_dashboard.json #: frontend/src/pages/Dashboard.vue:304 msgid "CRM Dashboard" msgstr "CRM контролна табла" -#. Name of a DocType -#: crm/fcrm/doctype/crm_deal/crm_deal.json +#. Name of a PageType +#: crm/fcrm/pagetype/crm_deal/crm_deal.json msgid "CRM Deal" msgstr "CRM пословна прилика" -#. Name of a DocType -#: crm/fcrm/doctype/crm_deal_status/crm_deal_status.json +#. Name of a PageType +#: crm/fcrm/pagetype/crm_deal_status/crm_deal_status.json msgid "CRM Deal Status" msgstr "CRM статус пословне прилике" -#. Name of a DocType -#: crm/fcrm/doctype/crm_dropdown_item/crm_dropdown_item.json +#. Name of a PageType +#: crm/fcrm/pagetype/crm_dropdown_item/crm_dropdown_item.json msgid "CRM Dropdown Item" msgstr "CRM ставка падајућег менија" -#. Name of a DocType -#: crm/fcrm/doctype/crm_exotel_settings/crm_exotel_settings.json +#. Name of a PageType +#: crm/fcrm/pagetype/crm_exotel_settings/crm_exotel_settings.json msgid "CRM Exotel Settings" msgstr "CRM Exotel подешавања" -#. Name of a DocType -#: crm/fcrm/doctype/crm_fields_layout/crm_fields_layout.json +#. Name of a PageType +#: crm/fcrm/pagetype/crm_fields_layout/crm_fields_layout.json msgid "CRM Fields Layout" msgstr "CRM распоред поља" -#. Name of a DocType -#: crm/fcrm/doctype/crm_form_script/crm_form_script.json +#. Name of a PageType +#: crm/fcrm/pagetype/crm_form_script/crm_form_script.json msgid "CRM Form Script" msgstr "CRM скрипта обрасца" -#. Name of a DocType -#: crm/fcrm/doctype/crm_global_settings/crm_global_settings.json +#. Name of a PageType +#: crm/fcrm/pagetype/crm_global_settings/crm_global_settings.json msgid "CRM Global Settings" msgstr "CRM глобална подешавања" -#. Name of a DocType -#: crm/fcrm/doctype/crm_holiday/crm_holiday.json +#. Name of a PageType +#: crm/fcrm/pagetype/crm_holiday/crm_holiday.json msgid "CRM Holiday" msgstr "CRM празник" -#. Name of a DocType -#: crm/fcrm/doctype/crm_holiday_list/crm_holiday_list.json +#. Name of a PageType +#: crm/fcrm/pagetype/crm_holiday_list/crm_holiday_list.json msgid "CRM Holiday List" msgstr "CRM листа празника" -#. Name of a DocType -#: crm/fcrm/doctype/crm_industry/crm_industry.json +#. Name of a PageType +#: crm/fcrm/pagetype/crm_industry/crm_industry.json msgid "CRM Industry" msgstr "CRM индустрија" -#. Name of a DocType -#: crm/fcrm/doctype/crm_invitation/crm_invitation.json +#. Name of a PageType +#: crm/fcrm/pagetype/crm_invitation/crm_invitation.json msgid "CRM Invitation" msgstr "CRM позивница" -#. Name of a DocType -#: crm/fcrm/doctype/crm_lead/crm_lead.json +#. Name of a PageType +#: crm/fcrm/pagetype/crm_lead/crm_lead.json msgid "CRM Lead" msgstr "CRM потенцијални клијент" -#. Name of a DocType -#: crm/fcrm/doctype/crm_lead_source/crm_lead_source.json +#. Name of a PageType +#: crm/fcrm/pagetype/crm_lead_source/crm_lead_source.json msgid "CRM Lead Source" msgstr "CRM извор потенцијалног клијента" -#. Name of a DocType -#: crm/fcrm/doctype/crm_lead_status/crm_lead_status.json +#. Name of a PageType +#: crm/fcrm/pagetype/crm_lead_status/crm_lead_status.json msgid "CRM Lead Status" msgstr "CRM статус потенцијалног клијента" -#. Name of a DocType -#: crm/fcrm/doctype/crm_lost_reason/crm_lost_reason.json +#. Name of a PageType +#: crm/fcrm/pagetype/crm_lost_reason/crm_lost_reason.json msgid "CRM Lost Reason" msgstr "CRM разлог губитка" -#. Name of a DocType -#: crm/fcrm/doctype/crm_notification/crm_notification.json +#. Name of a PageType +#: crm/fcrm/pagetype/crm_notification/crm_notification.json msgid "CRM Notification" msgstr "CRM обавештење" -#. Name of a DocType -#: crm/fcrm/doctype/crm_organization/crm_organization.json +#. Name of a PageType +#: crm/fcrm/pagetype/crm_organization/crm_organization.json msgid "CRM Organization" msgstr "CRM организација" -#. Label of a shortcut in the Frappe CRM Workspace -#: crm/fcrm/workspace/frappe_crm/frappe_crm.json +#. Label of a shortcut in the Jingrow CRM Workspace +#: crm/fcrm/workspace/jingrow_crm/jingrow_crm.json msgid "CRM Portal Page" msgstr "CRM страница портала" -#. Name of a DocType -#: crm/fcrm/doctype/crm_product/crm_product.json +#. Name of a PageType +#: crm/fcrm/pagetype/crm_product/crm_product.json msgid "CRM Product" msgstr "CRM производ" -#. Name of a DocType -#: crm/fcrm/doctype/crm_products/crm_products.json +#. Name of a PageType +#: crm/fcrm/pagetype/crm_products/crm_products.json msgid "CRM Products" msgstr "CRM производи" -#. Name of a DocType -#: crm/fcrm/doctype/crm_service_day/crm_service_day.json +#. Name of a PageType +#: crm/fcrm/pagetype/crm_service_day/crm_service_day.json msgid "CRM Service Day" msgstr "CRM дан пружања услуге" -#. Name of a DocType -#: crm/fcrm/doctype/crm_service_level_agreement/crm_service_level_agreement.json +#. Name of a PageType +#: crm/fcrm/pagetype/crm_service_level_agreement/crm_service_level_agreement.json msgid "CRM Service Level Agreement" msgstr "CRM споразум о нивоу услуге" -#. Name of a DocType -#: crm/fcrm/doctype/crm_service_level_priority/crm_service_level_priority.json +#. Name of a PageType +#: crm/fcrm/pagetype/crm_service_level_priority/crm_service_level_priority.json msgid "CRM Service Level Priority" msgstr "CRM приоритет нивоа услуге" -#. Name of a DocType -#: crm/fcrm/doctype/crm_status_change_log/crm_status_change_log.json +#. Name of a PageType +#: crm/fcrm/pagetype/crm_status_change_log/crm_status_change_log.json msgid "CRM Status Change Log" msgstr "CRM евиденција промена статуса" -#. Name of a DocType -#: crm/fcrm/doctype/crm_task/crm_task.json +#. Name of a PageType +#: crm/fcrm/pagetype/crm_task/crm_task.json msgid "CRM Task" msgstr "CRM задатак" -#. Name of a DocType -#: crm/fcrm/doctype/crm_telephony_agent/crm_telephony_agent.json +#. Name of a PageType +#: crm/fcrm/pagetype/crm_telephony_agent/crm_telephony_agent.json msgid "CRM Telephony Agent" msgstr "CRM агент телефоније" -#. Name of a DocType -#: crm/fcrm/doctype/crm_telephony_phone/crm_telephony_phone.json +#. Name of a PageType +#: crm/fcrm/pagetype/crm_telephony_phone/crm_telephony_phone.json msgid "CRM Telephony Phone" msgstr "CRM број телефоније" -#. Name of a DocType -#: crm/fcrm/doctype/crm_territory/crm_territory.json +#. Name of a PageType +#: crm/fcrm/pagetype/crm_territory/crm_territory.json msgid "CRM Territory" msgstr "CRM територија" -#. Name of a DocType -#: crm/fcrm/doctype/crm_twilio_settings/crm_twilio_settings.json +#. Name of a PageType +#: crm/fcrm/pagetype/crm_twilio_settings/crm_twilio_settings.json msgid "CRM Twilio Settings" msgstr "CRM Twilio подешавања" -#. Name of a DocType -#: crm/fcrm/doctype/crm_view_settings/crm_view_settings.json +#. Name of a PageType +#: crm/fcrm/pagetype/crm_view_settings/crm_view_settings.json msgid "CRM View Settings" msgstr "CRM подешавање приказа" @@ -1021,13 +1021,13 @@ msgstr "CSV" msgid "Call Details" msgstr "Детаљи позива" -#. Label of the receiver (Link) field in DocType 'CRM Call Log' -#: crm/fcrm/doctype/crm_call_log/crm_call_log.json +#. Label of the receiver (Link) field in PageType 'CRM Call Log' +#: crm/fcrm/pagetype/crm_call_log/crm_call_log.json msgid "Call Received By" msgstr "Позив примио" -#. Description of the 'Duration' (Duration) field in DocType 'CRM Call Log' -#: crm/fcrm/doctype/crm_call_log/crm_call_log.json +#. Description of the 'Duration' (Duration) field in PageType 'CRM Call Log' +#: crm/fcrm/pagetype/crm_call_log/crm_call_log.json msgid "Call duration in seconds" msgstr "Трајање позива у секундама" @@ -1045,8 +1045,8 @@ msgstr "Позив користећи {0}" msgid "Call with John Doe" msgstr "Позив са Петром Петровићем" -#. Label of the caller (Link) field in DocType 'CRM Call Log' -#: crm/fcrm/doctype/crm_call_log/crm_call_log.json +#. Label of the caller (Link) field in PageType 'CRM Call Log' +#: crm/fcrm/pagetype/crm_call_log/crm_call_log.json msgid "Caller" msgstr "Позивалац" @@ -1083,10 +1083,10 @@ msgstr "Камера" msgid "Cancel" msgstr "Откажи" -#. Option for the 'Status' (Select) field in DocType 'CRM Call Log' -#. Option for the 'Status' (Select) field in DocType 'CRM Task' -#: crm/fcrm/doctype/crm_call_log/crm_call_log.json -#: crm/fcrm/doctype/crm_task/crm_task.json +#. Option for the 'Status' (Select) field in PageType 'CRM Call Log' +#. Option for the 'Status' (Select) field in PageType 'CRM Task' +#: crm/fcrm/pagetype/crm_call_log/crm_call_log.json +#: crm/fcrm/pagetype/crm_task/crm_task.json msgid "Canceled" msgstr "Отказано" @@ -1094,7 +1094,7 @@ msgstr "Отказано" msgid "Cannot change role of user with Admin access" msgstr "Није могуће променити улогу кориснику са администраторским приступом" -#: crm/fcrm/doctype/fcrm_settings/fcrm_settings.py:34 +#: crm/fcrm/pagetype/fcrm_settings/fcrm_settings.py:34 msgid "Cannot delete standard items {0}" msgstr "Није могуће обрисати стандардну ставку {0}" @@ -1189,8 +1189,8 @@ msgstr "Очисти додељене задатке" msgid "Clear Sort" msgstr "Очисти сортирање" -#. Label of the clear_table (Button) field in DocType 'CRM Holiday List' -#: crm/fcrm/doctype/crm_holiday_list/crm_holiday_list.json +#. Label of the clear_table (Button) field in PageType 'CRM Holiday List' +#: crm/fcrm/pagetype/crm_holiday_list/crm_holiday_list.json msgid "Clear Table" msgstr "Очисти табелу" @@ -1211,8 +1211,8 @@ msgstr "Затвори" msgid "Close panel" msgstr "Затвори панел" -#. Label of the closed_date (Date) field in DocType 'CRM Deal' -#: crm/fcrm/doctype/crm_deal/crm_deal.json +#. Label of the closed_date (Date) field in PageType 'CRM Deal' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json msgid "Closed Date" msgstr "Датум затварања" @@ -1224,10 +1224,10 @@ msgstr "Сажми" msgid "Collapsible" msgstr "Може се сажети" -#. Label of the color (Select) field in DocType 'CRM Deal Status' -#. Label of the color (Select) field in DocType 'CRM Lead Status' -#: crm/fcrm/doctype/crm_deal_status/crm_deal_status.json -#: crm/fcrm/doctype/crm_lead_status/crm_lead_status.json +#. Label of the color (Select) field in PageType 'CRM Deal Status' +#. Label of the color (Select) field in PageType 'CRM Lead Status' +#: crm/fcrm/pagetype/crm_deal_status/crm_deal_status.json +#: crm/fcrm/pagetype/crm_lead_status/crm_lead_status.json msgid "Color" msgstr "Боја" @@ -1235,20 +1235,20 @@ msgstr "Боја" msgid "Column" msgstr "Колона" -#. Label of the column_field (Data) field in DocType 'CRM View Settings' -#: crm/fcrm/doctype/crm_view_settings/crm_view_settings.json +#. Label of the column_field (Data) field in PageType 'CRM View Settings' +#: crm/fcrm/pagetype/crm_view_settings/crm_view_settings.json #: frontend/src/components/Kanban/KanbanSettings.vue:12 msgid "Column Field" msgstr "Поље колоне" -#. Label of the columns (Code) field in DocType 'CRM View Settings' -#: crm/fcrm/doctype/crm_view_settings/crm_view_settings.json +#. Label of the columns (Code) field in PageType 'CRM View Settings' +#: crm/fcrm/pagetype/crm_view_settings/crm_view_settings.json #: frontend/src/components/ColumnSettings.vue:4 msgid "Columns" msgstr "Колоне" -#. Label of the comment (Link) field in DocType 'CRM Notification' -#: crm/fcrm/doctype/crm_notification/crm_notification.json +#. Label of the comment (Link) field in PageType 'CRM Notification' +#: crm/fcrm/pagetype/crm_notification/crm_notification.json #: frontend/src/components/CommentBox.vue:78 #: frontend/src/components/CommunicationArea.vue:16 #: frontend/src/components/Layouts/AppSidebar.vue:579 @@ -1264,20 +1264,20 @@ msgstr "Коментари" msgid "Common reasons for losing deals" msgstr "Уобичајени разлози за губитак пословних прилика" -#. Label of the communication_status (Link) field in DocType 'CRM Deal' -#. Label of the communication_status (Link) field in DocType 'CRM Lead' -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_lead/crm_lead.json +#. Label of the communication_status (Link) field in PageType 'CRM Deal' +#. Label of the communication_status (Link) field in PageType 'CRM Lead' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_lead/crm_lead.json msgid "Communication Status" msgstr "Статус комуникације" -#. Label of a shortcut in the Frappe CRM Workspace -#: crm/fcrm/workspace/frappe_crm/frappe_crm.json +#. Label of a shortcut in the Jingrow CRM Workspace +#: crm/fcrm/workspace/jingrow_crm/jingrow_crm.json msgid "Communication Statuses" msgstr "Статуси комуникације" -#. Label of the erpnext_company (Data) field in DocType 'ERPNext CRM Settings' -#: crm/fcrm/doctype/erpnext_crm_settings/erpnext_crm_settings.json +#. Label of the erpnext_company (Data) field in PageType 'ERPNext CRM Settings' +#: crm/fcrm/pagetype/erpnext_crm_settings/erpnext_crm_settings.json msgid "Company in ERPNext Site" msgstr "Компанија на ERPNext веб-сајту" @@ -1285,18 +1285,18 @@ msgstr "Компанија на ERPNext веб-сајту" msgid "Complete Registration" msgstr "Заврши регистрацију" -#. Option for the 'Status' (Select) field in DocType 'CRM Call Log' -#: crm/fcrm/doctype/crm_call_log/crm_call_log.json +#. Option for the 'Status' (Select) field in PageType 'CRM Call Log' +#: crm/fcrm/pagetype/crm_call_log/crm_call_log.json msgid "Completed" msgstr "Завршено" -#. Option for the 'Device' (Select) field in DocType 'CRM Telephony Agent' -#: crm/fcrm/doctype/crm_telephony_agent/crm_telephony_agent.json +#. Option for the 'Device' (Select) field in PageType 'CRM Telephony Agent' +#: crm/fcrm/pagetype/crm_telephony_agent/crm_telephony_agent.json msgid "Computer" msgstr "Рачунар" -#. Label of the condition (Code) field in DocType 'CRM Service Level Agreement' -#: crm/fcrm/doctype/crm_service_level_agreement/crm_service_level_agreement.json +#. Label of the condition (Code) field in PageType 'CRM Service Level Agreement' +#: crm/fcrm/pagetype/crm_service_level_agreement/crm_service_level_agreement.json msgid "Condition" msgstr "Услов" @@ -1354,17 +1354,17 @@ msgstr "Потврди измену" msgid "Connect your email" msgstr "Повежите Ваш имејл" -#. Label of the contact (Link) field in DocType 'CRM Contacts' -#. Label of the contact (Link) field in DocType 'CRM Deal' -#: crm/fcrm/doctype/crm_contacts/crm_contacts.json -#: crm/fcrm/doctype/crm_deal/crm_deal.json +#. Label of the contact (Link) field in PageType 'CRM Contacts' +#. Label of the contact (Link) field in PageType 'CRM Deal' +#: crm/fcrm/pagetype/crm_contacts/crm_contacts.json +#: crm/fcrm/pagetype/crm_deal/crm_deal.json #: frontend/src/components/Layouts/AppSidebar.vue:552 #: frontend/src/components/Modals/ConvertToDealModal.vue:51 #: frontend/src/pages/MobileLead.vue:145 msgid "Contact" msgstr "Контакт" -#: crm/fcrm/doctype/crm_lead/crm_lead.py:212 +#: crm/fcrm/pagetype/crm_lead/crm_lead.py:212 msgid "Contact Already Exists" msgstr "Контакт већ постоји" @@ -1384,7 +1384,7 @@ msgstr "Контакт је додат" msgid "Contact already added" msgstr "Контакт је већ додат" -#: crm/fcrm/doctype/crm_lead/crm_lead.py:211 +#: crm/fcrm/pagetype/crm_lead/crm_lead.py:211 msgid "Contact already exists with {0}" msgstr "Контакт већ постоји са {0}" @@ -1405,18 +1405,18 @@ msgstr "Контакт је уклоњен" msgid "Contact updated" msgstr "Контакт је ажуриран" -#. Label of the contacts_tab (Tab Break) field in DocType 'CRM Deal' -#. Label of the contacts (Table) field in DocType 'CRM Deal' -#. Label of a shortcut in the Frappe CRM Workspace -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/workspace/frappe_crm/frappe_crm.json +#. Label of the contacts_tab (Tab Break) field in PageType 'CRM Deal' +#. Label of the contacts (Table) field in PageType 'CRM Deal' +#. Label of a shortcut in the Jingrow CRM Workspace +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/workspace/jingrow_crm/jingrow_crm.json #: frontend/src/pages/Contact.vue:234 frontend/src/pages/MobileContact.vue:212 #: frontend/src/pages/MobileOrganization.vue:331 msgid "Contacts" msgstr "Контакти" -#. Label of the content (Text Editor) field in DocType 'FCRM Note' -#: crm/fcrm/doctype/fcrm_note/fcrm_note.json +#. Label of the content (Text Editor) field in PageType 'FCRM Note' +#: crm/fcrm/pagetype/fcrm_note/fcrm_note.json #: frontend/src/components/Modals/NoteModal.vue:33 #: frontend/src/components/Settings/EmailTemplate/EditEmailTemplate.vue:89 #: frontend/src/components/Settings/EmailTemplate/EditEmailTemplate.vue:102 @@ -1456,8 +1456,8 @@ msgstr "Пребаци потенцијалног клијента у посло msgid "Convert to Deal" msgstr "Пребаци у пословну прилику" -#. Label of the converted (Check) field in DocType 'CRM Lead' -#: crm/fcrm/doctype/crm_lead/crm_lead.json +#. Label of the converted (Check) field in PageType 'CRM Lead' +#: crm/fcrm/pagetype/crm_lead/crm_lead.json msgid "Converted" msgstr "Пребачено" @@ -1533,9 +1533,9 @@ msgstr "Креирај приказ" msgid "Create an event" msgstr "Креирај догађај" -#. Label of the create_customer_on_status_change (Check) field in DocType +#. Label of the create_customer_on_status_change (Check) field in PageType #. 'ERPNext CRM Settings' -#: crm/fcrm/doctype/erpnext_crm_settings/erpnext_crm_settings.json +#: crm/fcrm/pagetype/erpnext_crm_settings/erpnext_crm_settings.json msgid "Create customer on status change" msgstr "Креирај клијента при промени статуса" @@ -1560,13 +1560,13 @@ msgstr "Креирај своју прву белешку" msgid "Create your first task" msgstr "Креирај свој први задатак" -#. Label of the currency (Link) field in DocType 'CRM Deal' -#. Label of the currency (Link) field in DocType 'CRM Organization' -#. Label of the currency (Link) field in DocType 'FCRM Settings' -#. Label of the currency_tab (Tab Break) field in DocType 'FCRM Settings' -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_organization/crm_organization.json -#: crm/fcrm/doctype/fcrm_settings/fcrm_settings.json +#. Label of the currency (Link) field in PageType 'CRM Deal' +#. Label of the currency (Link) field in PageType 'CRM Organization' +#. Label of the currency (Link) field in PageType 'FCRM Settings' +#. Label of the currency_tab (Tab Break) field in PageType 'FCRM Settings' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_organization/crm_organization.json +#: crm/fcrm/pagetype/fcrm_settings/fcrm_settings.json #: frontend/src/components/Settings/CurrencySettings.vue:31 msgid "Currency" msgstr "Валута" @@ -1631,13 +1631,13 @@ msgstr "Дневне перформансе по потенцијалним кл msgid "Data" msgstr "Подаци" -#. Option for the 'Type' (Select) field in DocType 'CRM Fields Layout' -#: crm/fcrm/doctype/crm_fields_layout/crm_fields_layout.json +#. Option for the 'Type' (Select) field in PageType 'CRM Fields Layout' +#: crm/fcrm/pagetype/crm_fields_layout/crm_fields_layout.json msgid "Data Fields" msgstr "Поља за податак" -#. Label of the date (Date) field in DocType 'CRM Holiday' -#: crm/api/dashboard.py:601 crm/fcrm/doctype/crm_holiday/crm_holiday.json +#. Label of the date (Date) field in PageType 'CRM Holiday' +#: crm/api/dashboard.py:601 crm/fcrm/pagetype/crm_holiday/crm_holiday.json #: frontend/src/components/Calendar/CalendarEventPanel.vue:202 msgid "Date" msgstr "Датум" @@ -1660,23 +1660,23 @@ msgstr "Датум и време" msgid "Deal" msgstr "Пословна прилика" -#. Label of the deal_owner (Link) field in DocType 'CRM Deal' -#: crm/fcrm/doctype/crm_deal/crm_deal.json +#. Label of the deal_owner (Link) field in PageType 'CRM Deal' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json msgid "Deal Owner" msgstr "Власник пословне прилике" -#. Label of the deal_status (Link) field in DocType 'ERPNext CRM Settings' -#: crm/fcrm/doctype/erpnext_crm_settings/erpnext_crm_settings.json +#. Label of the deal_status (Link) field in PageType 'ERPNext CRM Settings' +#: crm/fcrm/pagetype/erpnext_crm_settings/erpnext_crm_settings.json msgid "Deal Status" msgstr "Статус пословне прилике" -#. Label of a shortcut in the Frappe CRM Workspace -#: crm/fcrm/workspace/frappe_crm/frappe_crm.json +#. Label of a shortcut in the Jingrow CRM Workspace +#: crm/fcrm/workspace/jingrow_crm/jingrow_crm.json msgid "Deal Statuses" msgstr "Статуси пословне прилике" -#. Label of the deal_value (Currency) field in DocType 'CRM Deal' -#: crm/fcrm/doctype/crm_deal/crm_deal.json +#. Label of the deal_value (Currency) field in PageType 'CRM Deal' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json msgid "Deal Value" msgstr "Вредност пословне прилике" @@ -1694,8 +1694,8 @@ msgstr "Власник пословне прилике" msgid "Deal value" msgstr "Вредност пословне прилике" -#. Label of a shortcut in the Frappe CRM Workspace -#: crm/fcrm/workspace/frappe_crm/frappe_crm.json +#. Label of a shortcut in the Jingrow CRM Workspace +#: crm/fcrm/workspace/jingrow_crm/jingrow_crm.json #: frontend/src/pages/Deal.vue:480 frontend/src/pages/MobileContact.vue:288 #: frontend/src/pages/MobileDeal.vue:384 #: frontend/src/pages/MobileOrganization.vue:325 @@ -1732,8 +1732,8 @@ msgstr "Пословне прилике по територији" msgid "Dear {{ lead_name }}, \\n\\nThis is a reminder for the payment of {{ grand_total }}. \\n\\nThanks, \\nFrappé" msgstr "Здраво {{ lead_name }}, \\n\\nОво је подсетник за износ одf {{ grand_total }}. \\n\\nХвала, \\nFrappé" -#. Label of the default (Check) field in DocType 'CRM Service Level Agreement' -#: crm/fcrm/doctype/crm_service_level_agreement/crm_service_level_agreement.json +#. Label of the default (Check) field in PageType 'CRM Service Level Agreement' +#: crm/fcrm/pagetype/crm_service_level_agreement/crm_service_level_agreement.json msgid "Default" msgstr "Подразумевано" @@ -1745,8 +1745,8 @@ msgstr "Подразумевана пријемна пошта" msgid "Default Incoming" msgstr "Подразумевани улазни" -#. Label of the default_medium (Select) field in DocType 'CRM Telephony Agent' -#: crm/fcrm/doctype/crm_telephony_agent/crm_telephony_agent.json +#. Label of the default_medium (Select) field in PageType 'CRM Telephony Agent' +#: crm/fcrm/pagetype/crm_telephony_agent/crm_telephony_agent.json msgid "Default Medium" msgstr "Подразумевано средство" @@ -1754,9 +1754,9 @@ msgstr "Подразумевано средство" msgid "Default Outgoing" msgstr "Подразумевани излазни" -#. Label of the default_priority (Check) field in DocType 'CRM Service Level +#. Label of the default_priority (Check) field in PageType 'CRM Service Level #. Priority' -#: crm/fcrm/doctype/crm_service_level_priority/crm_service_level_priority.json +#: crm/fcrm/pagetype/crm_service_level_priority/crm_service_level_priority.json msgid "Default Priority" msgstr "Подразумевани приоритет" @@ -1768,7 +1768,7 @@ msgstr "Подразумевано слање" msgid "Default Sending and Inbox" msgstr "Подразумевано слање и пријемна пошта" -#: crm/fcrm/doctype/crm_service_level_agreement/crm_service_level_agreement.py:33 +#: crm/fcrm/pagetype/crm_service_level_agreement/crm_service_level_agreement.py:33 msgid "Default Service Level Agreement already exists for {0}" msgstr "Подразумевани споразум о нивоу услуге већ постоји за {0}" @@ -1788,8 +1788,8 @@ msgstr "Подразумевано средство за позивање је msgid "Default medium" msgstr "Подразумевано средство" -#: crm/fcrm/doctype/fcrm_settings/fcrm_settings.js:18 -#: crm/fcrm/doctype/fcrm_settings/fcrm_settings.js:30 +#: crm/fcrm/pagetype/fcrm_settings/fcrm_settings.js:18 +#: crm/fcrm/pagetype/fcrm_settings/fcrm_settings.js:30 msgid "Default statuses, custom fields and layouts restored successfully." msgstr "Подразумевани статуси, прилагођена поља и распореди су успешно враћени." @@ -1825,7 +1825,7 @@ msgstr "Подразумевани статуси, прилагођена пољ msgid "Delete" msgstr "Обриши" -#: crm/fcrm/doctype/fcrm_settings/fcrm_settings.js:26 +#: crm/fcrm/pagetype/fcrm_settings/fcrm_settings.js:26 msgid "Delete & Restore" msgstr "Обриши и врати" @@ -1883,14 +1883,14 @@ msgstr "Обриши {0} ставку" msgid "Delete {0} items" msgstr "Обриши {0} ставки" -#. Label of the description (Text Editor) field in DocType 'CRM Holiday' -#. Label of the description (Text Editor) field in DocType 'CRM Lost Reason' -#. Label of the description (Text Editor) field in DocType 'CRM Product' -#. Label of the description (Text Editor) field in DocType 'CRM Task' -#: crm/fcrm/doctype/crm_holiday/crm_holiday.json -#: crm/fcrm/doctype/crm_lost_reason/crm_lost_reason.json -#: crm/fcrm/doctype/crm_product/crm_product.json -#: crm/fcrm/doctype/crm_task/crm_task.json +#. Label of the description (Text Editor) field in PageType 'CRM Holiday' +#. Label of the description (Text Editor) field in PageType 'CRM Lost Reason' +#. Label of the description (Text Editor) field in PageType 'CRM Product' +#. Label of the description (Text Editor) field in PageType 'CRM Task' +#: crm/fcrm/pagetype/crm_holiday/crm_holiday.json +#: crm/fcrm/pagetype/crm_lost_reason/crm_lost_reason.json +#: crm/fcrm/pagetype/crm_product/crm_product.json +#: crm/fcrm/pagetype/crm_task/crm_task.json #: frontend/src/components/Calendar/CalendarEventPanel.vue:152 #: frontend/src/components/Modals/EventModal.vue:134 #: frontend/src/components/Modals/TaskModal.vue:36 @@ -1907,29 +1907,29 @@ msgstr "Опис је обавезан" msgid "Desk" msgstr "Радна површина" -#. Label of the details (Tab Break) field in DocType 'CRM Lead' -#. Label of the details (Text Editor) field in DocType 'CRM Lead Source' -#: crm/fcrm/doctype/crm_lead/crm_lead.json -#: crm/fcrm/doctype/crm_lead_source/crm_lead_source.json +#. Label of the details (Tab Break) field in PageType 'CRM Lead' +#. Label of the details (Text Editor) field in PageType 'CRM Lead Source' +#: crm/fcrm/pagetype/crm_lead/crm_lead.json +#: crm/fcrm/pagetype/crm_lead_source/crm_lead_source.json #: frontend/src/pages/MobileContact.vue:283 #: frontend/src/pages/MobileDeal.vue:424 frontend/src/pages/MobileLead.vue:331 #: frontend/src/pages/MobileOrganization.vue:320 msgid "Details" msgstr "Детаљи" -#. Label of the call_receiving_device (Select) field in DocType 'CRM Telephony +#. Label of the call_receiving_device (Select) field in PageType 'CRM Telephony #. Agent' -#: crm/fcrm/doctype/crm_telephony_agent/crm_telephony_agent.json +#: crm/fcrm/pagetype/crm_telephony_agent/crm_telephony_agent.json #: frontend/src/components/FilesUploader/FilesUploaderArea.vue:39 msgid "Device" msgstr "Уређај" -#: crm/fcrm/doctype/crm_form_script/crm_form_script.js:30 +#: crm/fcrm/pagetype/crm_form_script/crm_form_script.js:30 msgid "Disable" msgstr "Онемогући" -#. Label of the disabled (Check) field in DocType 'CRM Product' -#: crm/fcrm/doctype/crm_product/crm_product.json +#. Label of the disabled (Check) field in PageType 'CRM Product' +#: crm/fcrm/pagetype/crm_product/crm_product.json msgid "Disabled" msgstr "Онемогућено" @@ -1943,27 +1943,27 @@ msgstr "Одбаци" msgid "Discard unsaved changes?" msgstr "Одбацити несачуване измене?" -#. Label of the discount_percentage (Percent) field in DocType 'CRM Products' -#: crm/fcrm/doctype/crm_products/crm_products.json +#. Label of the discount_percentage (Percent) field in PageType 'CRM Products' +#: crm/fcrm/pagetype/crm_products/crm_products.json msgid "Discount %" msgstr "Попуст %" -#. Label of the discount_amount (Currency) field in DocType 'CRM Products' -#: crm/fcrm/doctype/crm_products/crm_products.json +#. Label of the discount_amount (Currency) field in PageType 'CRM Products' +#: crm/fcrm/pagetype/crm_products/crm_products.json msgid "Discount Amount" msgstr "Износ попуста" -#. Label of the dt (Link) field in DocType 'CRM Form Script' -#. Label of the dt (Link) field in DocType 'CRM Global Settings' -#. Label of the dt (Link) field in DocType 'CRM View Settings' -#: crm/fcrm/doctype/crm_form_script/crm_form_script.json -#: crm/fcrm/doctype/crm_global_settings/crm_global_settings.json -#: crm/fcrm/doctype/crm_view_settings/crm_view_settings.json -msgid "DocType" -msgstr "DocType" +#. Label of the dt (Link) field in PageType 'CRM Form Script' +#. Label of the dt (Link) field in PageType 'CRM Global Settings' +#. Label of the dt (Link) field in PageType 'CRM View Settings' +#: crm/fcrm/pagetype/crm_form_script/crm_form_script.json +#: crm/fcrm/pagetype/crm_global_settings/crm_global_settings.json +#: crm/fcrm/pagetype/crm_view_settings/crm_view_settings.json +msgid "PageType" +msgstr "PageType" -#. Label of the dt (Link) field in DocType 'CRM Fields Layout' -#: crm/fcrm/doctype/crm_fields_layout/crm_fields_layout.json +#. Label of the dt (Link) field in PageType 'CRM Fields Layout' +#: crm/fcrm/pagetype/crm_fields_layout/crm_fields_layout.json msgid "Document Type" msgstr "Врста документа" @@ -1983,8 +1983,8 @@ msgstr "Документ је успешно ажуриран" msgid "Documentation" msgstr "Документација" -#. Option for the 'Status' (Select) field in DocType 'CRM Task' -#: crm/fcrm/doctype/crm_task/crm_task.json +#. Option for the 'Status' (Select) field in PageType 'CRM Task' +#: crm/fcrm/pagetype/crm_task/crm_task.json msgid "Done" msgstr "Завршено" @@ -2006,13 +2006,13 @@ msgstr "Превуци и отпусти фајлове овде или их о msgid "Drop files here" msgstr "Отпусти фајлове овде" -#. Label of the dropdown_items_tab (Tab Break) field in DocType 'FCRM Settings' -#: crm/fcrm/doctype/fcrm_settings/fcrm_settings.json +#. Label of the dropdown_items_tab (Tab Break) field in PageType 'FCRM Settings' +#: crm/fcrm/pagetype/fcrm_settings/fcrm_settings.json msgid "Dropdown Items" msgstr "Ставке падајућег менија" -#. Label of the due_date (Datetime) field in DocType 'CRM Task' -#: crm/fcrm/doctype/crm_task/crm_task.json +#. Label of the due_date (Datetime) field in PageType 'CRM Task' +#: crm/fcrm/pagetype/crm_task/crm_task.json msgid "Due Date" msgstr "Датум доспећа" @@ -2048,10 +2048,10 @@ msgstr "Дупликат догађаја" msgid "Duplicate template" msgstr "Дупликат шаблона" -#. Label of the duration (Duration) field in DocType 'CRM Call Log' -#. Label of the duration (Duration) field in DocType 'CRM Status Change Log' -#: crm/fcrm/doctype/crm_call_log/crm_call_log.json -#: crm/fcrm/doctype/crm_status_change_log/crm_status_change_log.json +#. Label of the duration (Duration) field in PageType 'CRM Call Log' +#. Label of the duration (Duration) field in PageType 'CRM Status Change Log' +#: crm/fcrm/pagetype/crm_call_log/crm_call_log.json +#: crm/fcrm/pagetype/crm_status_change_log/crm_status_change_log.json msgid "Duration" msgstr "Трајање" @@ -2060,28 +2060,28 @@ msgstr "Трајање" msgid "ERPNext" msgstr "ERPNext" -#. Name of a DocType -#: crm/fcrm/doctype/erpnext_crm_settings/erpnext_crm_settings.json +#. Name of a PageType +#: crm/fcrm/pagetype/erpnext_crm_settings/erpnext_crm_settings.json msgid "ERPNext CRM Settings" msgstr "ERPNext CRM подешавања" -#. Label of the section_break_oubd (Section Break) field in DocType 'ERPNext +#. Label of the section_break_oubd (Section Break) field in PageType 'ERPNext #. CRM Settings' -#: crm/fcrm/doctype/erpnext_crm_settings/erpnext_crm_settings.json +#: crm/fcrm/pagetype/erpnext_crm_settings/erpnext_crm_settings.json msgid "ERPNext Site API's" msgstr "ERPNext API сајта" -#. Label of the erpnext_site_url (Data) field in DocType 'ERPNext CRM Settings' -#: crm/fcrm/doctype/erpnext_crm_settings/erpnext_crm_settings.json +#. Label of the erpnext_site_url (Data) field in PageType 'ERPNext CRM Settings' +#: crm/fcrm/pagetype/erpnext_crm_settings/erpnext_crm_settings.json msgid "ERPNext Site URL" msgstr "ERPNext URL сајта" -#: crm/fcrm/doctype/erpnext_crm_settings/erpnext_crm_settings.py:25 +#: crm/fcrm/pagetype/erpnext_crm_settings/erpnext_crm_settings.py:25 msgid "ERPNext is not installed in the current site" msgstr "ERPNext није инсталиран на тренутном сајту" -#: crm/fcrm/doctype/erpnext_crm_settings/erpnext_crm_settings.py:98 -#: crm/fcrm/doctype/erpnext_crm_settings/erpnext_crm_settings.py:124 +#: crm/fcrm/pagetype/erpnext_crm_settings/erpnext_crm_settings.py:98 +#: crm/fcrm/pagetype/erpnext_crm_settings/erpnext_crm_settings.py:124 msgid "ERPNext is not integrated with the CRM" msgstr "ERPNext није интегрисан са CRM-ом" @@ -2191,12 +2191,12 @@ msgstr "Уређивање реда {0}" msgid "Editing event" msgstr "Уређивање догађаја" -#. Label of the email (Data) field in DocType 'CRM Contacts' -#. Label of the email (Data) field in DocType 'CRM Invitation' -#. Label of the email (Data) field in DocType 'CRM Lead' -#: crm/fcrm/doctype/crm_contacts/crm_contacts.json -#: crm/fcrm/doctype/crm_invitation/crm_invitation.json -#: crm/fcrm/doctype/crm_lead/crm_lead.json frontend/src/pages/Contact.vue:510 +#. Label of the email (Data) field in PageType 'CRM Contacts' +#. Label of the email (Data) field in PageType 'CRM Invitation' +#. Label of the email (Data) field in PageType 'CRM Lead' +#: crm/fcrm/pagetype/crm_contacts/crm_contacts.json +#: crm/fcrm/pagetype/crm_invitation/crm_invitation.json +#: crm/fcrm/pagetype/crm_lead/crm_lead.json frontend/src/pages/Contact.vue:510 #: frontend/src/pages/MobileContact.vue:518 #: frontend/src/pages/MobileOrganization.vue:462 #: frontend/src/pages/MobileOrganization.vue:490 @@ -2213,8 +2213,8 @@ msgstr "Имејл налози" msgid "Email ID is required" msgstr "Имејл ИД је обавезан" -#. Label of the email_sent_at (Datetime) field in DocType 'CRM Invitation' -#: crm/fcrm/doctype/crm_invitation/crm_invitation.json +#. Label of the email_sent_at (Datetime) field in PageType 'CRM Invitation' +#: crm/fcrm/pagetype/crm_invitation/crm_invitation.json msgid "Email Sent At" msgstr "Имејл послат у" @@ -2272,12 +2272,12 @@ msgstr "Празно - Изаберите поље по којем желите msgid "Empty - Choose a field to sort by" msgstr "Празно - Изаберите поље по којем желите да сортирате" -#: crm/fcrm/doctype/crm_form_script/crm_form_script.js:30 +#: crm/fcrm/pagetype/crm_form_script/crm_form_script.js:30 msgid "Enable" msgstr "Омогући" -#. Label of the enable_forecasting (Check) field in DocType 'FCRM Settings' -#: crm/fcrm/doctype/fcrm_settings/fcrm_settings.json +#. Label of the enable_forecasting (Check) field in PageType 'FCRM Settings' +#: crm/fcrm/pagetype/fcrm_settings/fcrm_settings.json msgid "Enable Forecasting" msgstr "Омогући прогнозирање" @@ -2293,18 +2293,18 @@ msgstr "Омогући излазну" msgid "Enable forecasting" msgstr "Омогући прогнозирање" -#. Label of the enabled (Check) field in DocType 'CRM Exotel Settings' -#. Label of the enabled (Check) field in DocType 'CRM Form Script' -#. Label of the enabled (Check) field in DocType 'CRM Service Level Agreement' -#. Label of the enabled (Check) field in DocType 'CRM Twilio Settings' -#. Label of the enabled (Check) field in DocType 'ERPNext CRM Settings' -#. Label of the enabled (Check) field in DocType 'Helpdesk CRM Settings' -#: crm/fcrm/doctype/crm_exotel_settings/crm_exotel_settings.json -#: crm/fcrm/doctype/crm_form_script/crm_form_script.json -#: crm/fcrm/doctype/crm_service_level_agreement/crm_service_level_agreement.json -#: crm/fcrm/doctype/crm_twilio_settings/crm_twilio_settings.json -#: crm/fcrm/doctype/erpnext_crm_settings/erpnext_crm_settings.json -#: crm/fcrm/doctype/helpdesk_crm_settings/helpdesk_crm_settings.json +#. Label of the enabled (Check) field in PageType 'CRM Exotel Settings' +#. Label of the enabled (Check) field in PageType 'CRM Form Script' +#. Label of the enabled (Check) field in PageType 'CRM Service Level Agreement' +#. Label of the enabled (Check) field in PageType 'CRM Twilio Settings' +#. Label of the enabled (Check) field in PageType 'ERPNext CRM Settings' +#. Label of the enabled (Check) field in PageType 'Helpdesk CRM Settings' +#: crm/fcrm/pagetype/crm_exotel_settings/crm_exotel_settings.json +#: crm/fcrm/pagetype/crm_form_script/crm_form_script.json +#: crm/fcrm/pagetype/crm_service_level_agreement/crm_service_level_agreement.json +#: crm/fcrm/pagetype/crm_twilio_settings/crm_twilio_settings.json +#: crm/fcrm/pagetype/erpnext_crm_settings/erpnext_crm_settings.json +#: crm/fcrm/pagetype/helpdesk_crm_settings/helpdesk_crm_settings.json #: frontend/src/components/Settings/AssignmentRules/AssignmentRuleView.vue:32 #: frontend/src/components/Settings/AssignmentRules/AssignmentRulesList.vue:21 #: frontend/src/components/Settings/EmailTemplate/EditEmailTemplate.vue:18 @@ -2313,15 +2313,15 @@ msgstr "Омогући прогнозирање" msgid "Enabled" msgstr "Омогућено" -#. Label of the end_date (Date) field in DocType 'CRM Service Level Agreement' -#: crm/fcrm/doctype/crm_service_level_agreement/crm_service_level_agreement.json +#. Label of the end_date (Date) field in PageType 'CRM Service Level Agreement' +#: crm/fcrm/pagetype/crm_service_level_agreement/crm_service_level_agreement.json msgid "End Date" msgstr "Датум завршетка" -#. Label of the end_time (Datetime) field in DocType 'CRM Call Log' -#. Label of the end_time (Time) field in DocType 'CRM Service Day' -#: crm/fcrm/doctype/crm_call_log/crm_call_log.json -#: crm/fcrm/doctype/crm_service_day/crm_service_day.json +#. Label of the end_time (Datetime) field in PageType 'CRM Call Log' +#. Label of the end_time (Time) field in PageType 'CRM Service Day' +#: crm/fcrm/pagetype/crm_call_log/crm_call_log.json +#: crm/fcrm/pagetype/crm_service_day/crm_service_day.json #: frontend/src/components/Calendar/CalendarEventPanel.vue:242 #: frontend/src/components/Modals/EventModal.vue:112 msgid "End Time" @@ -2362,15 +2362,15 @@ msgstr "Грешка приликом пребацивања у пословну msgid "Error updating field" msgstr "Грешка приликом ажурирања поља" -#: crm/fcrm/doctype/erpnext_crm_settings/erpnext_crm_settings.py:279 +#: crm/fcrm/pagetype/erpnext_crm_settings/erpnext_crm_settings.py:279 msgid "Error while creating customer in ERPNext, check error log for more details" msgstr "Грешка приликом креирања клијента у ERPNext-у, молимо Вас да проверите евиденцију грешака за више детаља" -#: crm/fcrm/doctype/erpnext_crm_settings/erpnext_crm_settings.py:191 +#: crm/fcrm/pagetype/erpnext_crm_settings/erpnext_crm_settings.py:191 msgid "Error while creating prospect in ERPNext, check error log for more details" msgstr "Грешка приликом креирања потенцијалног купца у ERPNext-у, молимо Вас да проверите евиденцију грешака за више детаља" -#: crm/fcrm/doctype/erpnext_crm_settings/erpnext_crm_settings.py:117 +#: crm/fcrm/pagetype/erpnext_crm_settings/erpnext_crm_settings.py:117 msgid "Error while fetching customer in ERPNext, check error log for more details" msgstr "Грешка приликом преузимања података о клијентима у ERPNext-у, молимо Вас да проверите евиденцију грешака за више детаља" @@ -2395,16 +2395,16 @@ msgstr "Догађаји" msgid "Excel" msgstr "Excel" -#. Label of the exchange_rate (Float) field in DocType 'CRM Deal' -#. Label of the exchange_rate (Float) field in DocType 'CRM Organization' -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_organization/crm_organization.json +#. Label of the exchange_rate (Float) field in PageType 'CRM Deal' +#. Label of the exchange_rate (Float) field in PageType 'CRM Organization' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_organization/crm_organization.json msgid "Exchange Rate" msgstr "Девизни курс" -#. Label of the exchange_rate_provider_section (Section Break) field in DocType +#. Label of the exchange_rate_provider_section (Section Break) field in PageType #. 'FCRM Settings' -#: crm/fcrm/doctype/fcrm_settings/fcrm_settings.json +#: crm/fcrm/pagetype/fcrm_settings/fcrm_settings.json msgid "Exchange Rate Provider" msgstr "Провајдер девизних курсева" @@ -2412,12 +2412,12 @@ msgstr "Провајдер девизних курсева" msgid "Exchange rate provider" msgstr "Провајдер девизних курсева" -#. Option for the 'Telephony Medium' (Select) field in DocType 'CRM Call Log' -#. Label of the exotel (Check) field in DocType 'CRM Telephony Agent' -#. Option for the 'Default Medium' (Select) field in DocType 'CRM Telephony +#. Option for the 'Telephony Medium' (Select) field in PageType 'CRM Call Log' +#. Label of the exotel (Check) field in PageType 'CRM Telephony Agent' +#. Option for the 'Default Medium' (Select) field in PageType 'CRM Telephony #. Agent' -#: crm/fcrm/doctype/crm_call_log/crm_call_log.json -#: crm/fcrm/doctype/crm_telephony_agent/crm_telephony_agent.json +#: crm/fcrm/pagetype/crm_call_log/crm_call_log.json +#: crm/fcrm/pagetype/crm_telephony_agent/crm_telephony_agent.json #: frontend/src/components/Layouts/AppSidebar.vue:602 #: frontend/src/components/Settings/TelephonySettings.vue:41 #: frontend/src/components/Settings/TelephonySettings.vue:63 @@ -2428,8 +2428,8 @@ msgstr "Exotel" msgid "Exotel Exception" msgstr "Exotel изузетак" -#. Label of the exotel_number (Data) field in DocType 'CRM Telephony Agent' -#: crm/fcrm/doctype/crm_telephony_agent/crm_telephony_agent.json +#. Label of the exotel_number (Data) field in PageType 'CRM Telephony Agent' +#: crm/fcrm/pagetype/crm_telephony_agent/crm_telephony_agent.json msgid "Exotel Number" msgstr "Exotel број" @@ -2453,26 +2453,26 @@ msgstr "Exotel подешавања су успешно ажурирана" msgid "Expand" msgstr "Прошири" -#. Label of the expected_closure_date (Date) field in DocType 'CRM Deal' -#: crm/fcrm/doctype/crm_deal/crm_deal.json +#. Label of the expected_closure_date (Date) field in PageType 'CRM Deal' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json msgid "Expected Closure Date" msgstr "Очекивани датум затварања" -#: crm/fcrm/doctype/crm_deal/crm_deal.py:173 +#: crm/fcrm/pagetype/crm_deal/crm_deal.py:173 msgid "Expected Closure Date is required." msgstr "Очекивани датум затварања је обавезан." -#. Label of the expected_deal_value (Currency) field in DocType 'CRM Deal' -#: crm/fcrm/doctype/crm_deal/crm_deal.json +#. Label of the expected_deal_value (Currency) field in PageType 'CRM Deal' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json msgid "Expected Deal Value" msgstr "Очекивана вредност пословне прилике" -#: crm/fcrm/doctype/crm_deal/crm_deal.py:171 +#: crm/fcrm/pagetype/crm_deal/crm_deal.py:171 msgid "Expected Deal Value is required." msgstr "Очекивана вредност пословне прилике је обавезна." -#. Option for the 'Status' (Select) field in DocType 'CRM Invitation' -#: crm/fcrm/doctype/crm_invitation/crm_invitation.json +#. Option for the 'Status' (Select) field in PageType 'CRM Invitation' +#: crm/fcrm/pagetype/crm_invitation/crm_invitation.json msgid "Expired" msgstr "Истекло" @@ -2489,22 +2489,22 @@ msgstr "Извоз свих {0} записа" msgid "Export Type" msgstr "Врста извоза" -#. Name of a DocType -#: crm/fcrm/doctype/fcrm_note/fcrm_note.json +#. Name of a PageType +#: crm/fcrm/pagetype/fcrm_note/fcrm_note.json msgid "FCRM Note" msgstr "FCRM белешка" -#. Name of a DocType -#: crm/fcrm/doctype/fcrm_settings/fcrm_settings.json +#. Name of a PageType +#: crm/fcrm/pagetype/fcrm_settings/fcrm_settings.json msgid "FCRM Settings" msgstr "FCRM подешавања" -#. Option for the 'Status' (Select) field in DocType 'CRM Call Log' -#. Option for the 'SLA Status' (Select) field in DocType 'CRM Deal' -#. Option for the 'SLA Status' (Select) field in DocType 'CRM Lead' -#: crm/fcrm/doctype/crm_call_log/crm_call_log.json -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_lead/crm_lead.json +#. Option for the 'Status' (Select) field in PageType 'CRM Call Log' +#. Option for the 'SLA Status' (Select) field in PageType 'CRM Deal' +#. Option for the 'SLA Status' (Select) field in PageType 'CRM Lead' +#: crm/fcrm/pagetype/crm_call_log/crm_call_log.json +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_lead/crm_lead.json msgid "Failed" msgstr "Неуспешно" @@ -2528,7 +2528,7 @@ msgstr "Неуспешно креирање шаблона" msgid "Failed to delete template" msgstr "Неуспешно брисање шаблона" -#: crm/fcrm/doctype/fcrm_settings/fcrm_settings.py:205 +#: crm/fcrm/pagetype/fcrm_settings/fcrm_settings.py:205 msgid "Failed to fetch exchange rate from {0} to {1} on {2}. Please check your internet connection or try again later." msgstr "Неуспешно преузимање девизног курса из {0} у {1} на {2}. Молимо Вас да проверите своју интернет конекцију или покушајте поново касније." @@ -2561,8 +2561,8 @@ msgstr "Неуспешно ажурирање профила" msgid "Failed to update template" msgstr "Неуспешно ажурирање шаблона" -#. Label of the favicon (Attach) field in DocType 'FCRM Settings' -#: crm/fcrm/doctype/fcrm_settings/fcrm_settings.json +#. Label of the favicon (Attach) field in PageType 'FCRM Settings' +#: crm/fcrm/pagetype/fcrm_settings/fcrm_settings.json #: frontend/src/components/Settings/BrandSettings.vue:87 msgid "Favicon" msgstr "Favicon" @@ -2586,23 +2586,23 @@ msgid "File \"{0}\" was skipped because only {1} uploads are allowed" msgstr "Фајл \"{0}\" је прескочен јер је дозвољено само {1} отпремања" #: frontend/src/components/FilesUploader/FilesUploaderArea.vue:359 -msgid "File \"{0}\" was skipped because only {1} uploads are allowed for DocType \"{2}\"" -msgstr "Фајл \"{0}\" је прескочен јер је дозвољено само {1} отпремања за DocType \"{2}\"" +msgid "File \"{0}\" was skipped because only {1} uploads are allowed for PageType \"{2}\"" +msgstr "Фајл \"{0}\" је прескочен јер је дозвољено само {1} отпремања за PageType \"{2}\"" #: frontend/src/components/Filter.vue:6 msgid "Filter" msgstr "Филтер" -#. Label of the filters (Code) field in DocType 'CRM View Settings' -#. Label of the filters_tab (Tab Break) field in DocType 'CRM View Settings' -#: crm/fcrm/doctype/crm_view_settings/crm_view_settings.json +#. Label of the filters (Code) field in PageType 'CRM View Settings' +#. Label of the filters_tab (Tab Break) field in PageType 'CRM View Settings' +#: crm/fcrm/pagetype/crm_view_settings/crm_view_settings.json msgid "Filters" msgstr "Филтери" -#. Label of the first_name (Data) field in DocType 'CRM Deal' -#. Label of the first_name (Data) field in DocType 'CRM Lead' -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_lead/crm_lead.json +#. Label of the first_name (Data) field in PageType 'CRM Deal' +#. Label of the first_name (Data) field in PageType 'CRM Lead' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_lead/crm_lead.json #: frontend/src/components/ColumnSettings.vue:103 #: frontend/src/components/Filter.vue:57 frontend/src/components/Filter.vue:88 #: frontend/src/components/SortBy.vue:6 frontend/src/components/SortBy.vue:103 @@ -2614,30 +2614,30 @@ msgstr "Име" msgid "First Name is mandatory" msgstr "Име је обавезно" -#. Label of the first_responded_on (Datetime) field in DocType 'CRM Deal' -#. Label of the first_responded_on (Datetime) field in DocType 'CRM Lead' -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_lead/crm_lead.json +#. Label of the first_responded_on (Datetime) field in PageType 'CRM Deal' +#. Label of the first_responded_on (Datetime) field in PageType 'CRM Lead' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_lead/crm_lead.json msgid "First Responded On" msgstr "Први одговор дат на" -#. Option for the 'SLA Status' (Select) field in DocType 'CRM Deal' -#. Option for the 'SLA Status' (Select) field in DocType 'CRM Lead' -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_lead/crm_lead.json +#. Option for the 'SLA Status' (Select) field in PageType 'CRM Deal' +#. Option for the 'SLA Status' (Select) field in PageType 'CRM Lead' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_lead/crm_lead.json msgid "First Response Due" msgstr "Рок за први одговор" -#. Label of the first_response_time (Duration) field in DocType 'CRM Service +#. Label of the first_response_time (Duration) field in PageType 'CRM Service #. Level Priority' -#: crm/fcrm/doctype/crm_service_level_priority/crm_service_level_priority.json +#: crm/fcrm/pagetype/crm_service_level_priority/crm_service_level_priority.json msgid "First Response TIme" msgstr "Време за први одговор" -#. Label of the first_response_time (Duration) field in DocType 'CRM Deal' -#. Label of the first_response_time (Duration) field in DocType 'CRM Lead' -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_lead/crm_lead.json +#. Label of the first_response_time (Duration) field in PageType 'CRM Deal' +#. Label of the first_response_time (Duration) field in PageType 'CRM Lead' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_lead/crm_lead.json msgid "First Response Time" msgstr "Време за први одговор" @@ -2670,66 +2670,66 @@ msgstr "Прогнозирање је успешно онемогућено" msgid "Forecasting enabled successfully" msgstr "Прогнозирање је успешно омогућено" -#. Option for the 'Apply To' (Select) field in DocType 'CRM Form Script' -#: crm/fcrm/doctype/crm_form_script/crm_form_script.json +#. Option for the 'Apply To' (Select) field in PageType 'CRM Form Script' +#: crm/fcrm/pagetype/crm_form_script/crm_form_script.json msgid "Form" msgstr "Образац" -#: crm/fcrm/doctype/erpnext_crm_settings/erpnext_crm_settings.js:19 +#: crm/fcrm/pagetype/erpnext_crm_settings/erpnext_crm_settings.js:19 msgid "Form Script updated successfully" msgstr "Скрипта обрасца је успешно ажурирана" #. Name of a Workspace -#: crm/fcrm/workspace/frappe_crm/frappe_crm.json -msgid "Frappe CRM" -msgstr "Frappe CRM" +#: crm/fcrm/workspace/jingrow_crm/jingrow_crm.json +msgid "Jingrow CRM" +msgstr "Jingrow CRM" #: frontend/src/components/Layouts/AppSidebar.vue:608 -msgid "Frappe CRM mobile" -msgstr "Frappe CRM мобилна апликација" +msgid "Jingrow CRM mobile" +msgstr "Jingrow CRM мобилна апликација" -#. Option for the 'Weekly Off' (Select) field in DocType 'CRM Holiday List' -#. Option for the 'Workday' (Select) field in DocType 'CRM Service Day' -#: crm/fcrm/doctype/crm_holiday_list/crm_holiday_list.json -#: crm/fcrm/doctype/crm_service_day/crm_service_day.json +#. Option for the 'Weekly Off' (Select) field in PageType 'CRM Holiday List' +#. Option for the 'Workday' (Select) field in PageType 'CRM Service Day' +#: crm/fcrm/pagetype/crm_holiday_list/crm_holiday_list.json +#: crm/fcrm/pagetype/crm_service_day/crm_service_day.json msgid "Friday" msgstr "Петак" -#. Label of the from (Data) field in DocType 'CRM Call Log' -#. Label of the from (Data) field in DocType 'CRM Status Change Log' -#: crm/fcrm/doctype/crm_call_log/crm_call_log.json -#: crm/fcrm/doctype/crm_status_change_log/crm_status_change_log.json +#. Label of the from (Data) field in PageType 'CRM Call Log' +#. Label of the from (Data) field in PageType 'CRM Status Change Log' +#: crm/fcrm/pagetype/crm_call_log/crm_call_log.json +#: crm/fcrm/pagetype/crm_status_change_log/crm_status_change_log.json msgid "From" msgstr "Од" -#. Label of the from_date (Date) field in DocType 'CRM Holiday List' -#. Label of the from_date (Datetime) field in DocType 'CRM Status Change Log' -#: crm/fcrm/doctype/crm_holiday_list/crm_holiday_list.json -#: crm/fcrm/doctype/crm_status_change_log/crm_status_change_log.json +#. Label of the from_date (Date) field in PageType 'CRM Holiday List' +#. Label of the from_date (Datetime) field in PageType 'CRM Status Change Log' +#: crm/fcrm/pagetype/crm_holiday_list/crm_holiday_list.json +#: crm/fcrm/pagetype/crm_status_change_log/crm_status_change_log.json msgid "From Date" msgstr "Датум почетка" -#. Label of the from_type (Data) field in DocType 'CRM Status Change Log' -#: crm/fcrm/doctype/crm_status_change_log/crm_status_change_log.json +#. Label of the from_type (Data) field in PageType 'CRM Status Change Log' +#: crm/fcrm/pagetype/crm_status_change_log/crm_status_change_log.json msgid "From Type" msgstr "Од врсте" -#. Label of the from_user (Link) field in DocType 'CRM Notification' -#: crm/fcrm/doctype/crm_notification/crm_notification.json +#. Label of the from_user (Link) field in PageType 'CRM Notification' +#: crm/fcrm/pagetype/crm_notification/crm_notification.json msgid "From User" msgstr "Од стране корисника" -#. Option for the 'SLA Status' (Select) field in DocType 'CRM Deal' -#. Option for the 'SLA Status' (Select) field in DocType 'CRM Lead' -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_lead/crm_lead.json +#. Option for the 'SLA Status' (Select) field in PageType 'CRM Deal' +#. Option for the 'SLA Status' (Select) field in PageType 'CRM Lead' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_lead/crm_lead.json msgid "Fulfilled" msgstr "Испуњено" -#. Label of the full_name (Data) field in DocType 'CRM Contacts' -#. Label of the lead_name (Data) field in DocType 'CRM Lead' -#: crm/fcrm/doctype/crm_contacts/crm_contacts.json -#: crm/fcrm/doctype/crm_lead/crm_lead.json +#. Label of the full_name (Data) field in PageType 'CRM Contacts' +#. Label of the lead_name (Data) field in PageType 'CRM Lead' +#: crm/fcrm/pagetype/crm_contacts/crm_contacts.json +#: crm/fcrm/pagetype/crm_lead/crm_lead.json msgid "Full Name" msgstr "Име и презиме" @@ -2742,12 +2742,12 @@ msgstr "Конверзија у продајном левку" msgid "GMT+5:30" msgstr "GMT+5:30" -#. Label of the gender (Link) field in DocType 'CRM Contacts' -#. Label of the gender (Link) field in DocType 'CRM Deal' -#. Label of the gender (Link) field in DocType 'CRM Lead' -#: crm/fcrm/doctype/crm_contacts/crm_contacts.json -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_lead/crm_lead.json +#. Label of the gender (Link) field in PageType 'CRM Contacts' +#. Label of the gender (Link) field in PageType 'CRM Deal' +#. Label of the gender (Link) field in PageType 'CRM Lead' +#: crm/fcrm/pagetype/crm_contacts/crm_contacts.json +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_lead/crm_lead.json msgid "Gender" msgstr "Род" @@ -2771,20 +2771,20 @@ msgstr "Иди на страницу за позивање" msgid "Go to website" msgstr "Иди на веб-сајт" -#. Option for the 'Type' (Select) field in DocType 'CRM Fields Layout' -#: crm/fcrm/doctype/crm_fields_layout/crm_fields_layout.json +#. Option for the 'Type' (Select) field in PageType 'CRM Fields Layout' +#: crm/fcrm/pagetype/crm_fields_layout/crm_fields_layout.json msgid "Grid Row" msgstr "Ред у табели" -#. Label of the group_by_tab (Tab Break) field in DocType 'CRM View Settings' -#: crm/fcrm/doctype/crm_view_settings/crm_view_settings.json +#. Label of the group_by_tab (Tab Break) field in PageType 'CRM View Settings' +#: crm/fcrm/pagetype/crm_view_settings/crm_view_settings.json #: frontend/src/components/ViewControls.vue:379 #: frontend/src/components/ViewControls.vue:611 frontend/src/utils/view.js:16 msgid "Group By" msgstr "Груписано по" -#. Label of the group_by_field (Data) field in DocType 'CRM View Settings' -#: crm/fcrm/doctype/crm_view_settings/crm_view_settings.json +#. Label of the group_by_field (Data) field in PageType 'CRM View Settings' +#: crm/fcrm/pagetype/crm_view_settings/crm_view_settings.json msgid "Group By Field" msgstr "Груписано по пољу" @@ -2808,28 +2808,28 @@ msgstr "Помоћ" msgid "Helpdesk" msgstr "Helpdesk" -#. Name of a DocType -#: crm/fcrm/doctype/helpdesk_crm_settings/helpdesk_crm_settings.json +#. Name of a PageType +#: crm/fcrm/pagetype/helpdesk_crm_settings/helpdesk_crm_settings.json msgid "Helpdesk CRM Settings" msgstr "Helpdesk CRM подешавања" -#. Label of the helpdesk_site_apis_section (Section Break) field in DocType +#. Label of the helpdesk_site_apis_section (Section Break) field in PageType #. 'Helpdesk CRM Settings' -#: crm/fcrm/doctype/helpdesk_crm_settings/helpdesk_crm_settings.json +#: crm/fcrm/pagetype/helpdesk_crm_settings/helpdesk_crm_settings.json msgid "Helpdesk Site API's" msgstr "Helpdesk API сајта" -#. Label of the helpdesk_site_url (Data) field in DocType 'Helpdesk CRM +#. Label of the helpdesk_site_url (Data) field in PageType 'Helpdesk CRM #. Settings' -#: crm/fcrm/doctype/helpdesk_crm_settings/helpdesk_crm_settings.json +#: crm/fcrm/pagetype/helpdesk_crm_settings/helpdesk_crm_settings.json msgid "Helpdesk Site URL" msgstr "Helpdesk URL сајта" -#: crm/fcrm/doctype/helpdesk_crm_settings/helpdesk_crm_settings.py:18 +#: crm/fcrm/pagetype/helpdesk_crm_settings/helpdesk_crm_settings.py:18 msgid "Helpdesk is not installed in the current site" msgstr "Helpdesk није инсталиран на тренутном сајту" -#: crm/fcrm/doctype/helpdesk_crm_settings/helpdesk_crm_settings.py:40 +#: crm/fcrm/pagetype/helpdesk_crm_settings/helpdesk_crm_settings.py:40 msgid "Helpdesk is not integrated with the CRM" msgstr "Helpdesk није интегрисан са CRM-ом" @@ -2845,8 +2845,8 @@ msgstr "Helpdesk подешавања су ажурирана" msgid "Hi John, \\n\\nCan you please provide more details on this..." msgstr "Здраво Петре, \\n\\nМожете ли молим Вас да пружите више детаља о овоме..." -#. Label of the hidden (Check) field in DocType 'CRM Dropdown Item' -#: crm/fcrm/doctype/crm_dropdown_item/crm_dropdown_item.json +#. Label of the hidden (Check) field in PageType 'CRM Dropdown Item' +#: crm/fcrm/pagetype/crm_dropdown_item/crm_dropdown_item.json msgid "Hidden" msgstr "Сакривено" @@ -2877,26 +2877,26 @@ msgstr "Сакриј ознаку" msgid "Hide preview" msgstr "Сакриј приказ" -#. Option for the 'Priority' (Select) field in DocType 'CRM Task' -#: crm/fcrm/doctype/crm_task/crm_task.json +#. Option for the 'Priority' (Select) field in PageType 'CRM Task' +#: crm/fcrm/pagetype/crm_task/crm_task.json msgid "High" msgstr "Висок" -#. Label of the holiday_list (Link) field in DocType 'CRM Service Level +#. Label of the holiday_list (Link) field in PageType 'CRM Service Level #. Agreement' -#: crm/fcrm/doctype/crm_service_level_agreement/crm_service_level_agreement.json +#: crm/fcrm/pagetype/crm_service_level_agreement/crm_service_level_agreement.json msgid "Holiday List" msgstr "Листа празника" -#. Label of the holiday_list_name (Data) field in DocType 'CRM Holiday List' -#: crm/fcrm/doctype/crm_holiday_list/crm_holiday_list.json +#. Label of the holiday_list_name (Data) field in PageType 'CRM Holiday List' +#: crm/fcrm/pagetype/crm_holiday_list/crm_holiday_list.json msgid "Holiday List Name" msgstr "Назив листе празника" -#. Label of the holidays_section (Section Break) field in DocType 'CRM Holiday +#. Label of the holidays_section (Section Break) field in PageType 'CRM Holiday #. List' -#. Label of the holidays (Table) field in DocType 'CRM Holiday List' -#: crm/fcrm/doctype/crm_holiday_list/crm_holiday_list.json +#. Label of the holidays (Table) field in PageType 'CRM Holiday List' +#: crm/fcrm/pagetype/crm_holiday_list/crm_holiday_list.json msgid "Holidays" msgstr "Празници" @@ -2914,15 +2914,15 @@ msgstr "Радње на почетној страници" msgid "I understand, add conditions" msgstr "Разумем, додај услове" -#. Label of the id (Data) field in DocType 'CRM Call Log' -#: crm/fcrm/doctype/crm_call_log/crm_call_log.json +#. Label of the id (Data) field in PageType 'CRM Call Log' +#: crm/fcrm/pagetype/crm_call_log/crm_call_log.json msgid "ID" msgstr "ИД" -#. Label of the icon (Code) field in DocType 'CRM Dropdown Item' -#. Label of the icon (Data) field in DocType 'CRM View Settings' -#: crm/fcrm/doctype/crm_dropdown_item/crm_dropdown_item.json -#: crm/fcrm/doctype/crm_view_settings/crm_view_settings.json +#. Label of the icon (Code) field in PageType 'CRM Dropdown Item' +#. Label of the icon (Data) field in PageType 'CRM View Settings' +#: crm/fcrm/pagetype/crm_dropdown_item/crm_dropdown_item.json +#: crm/fcrm/pagetype/crm_view_settings/crm_view_settings.json msgid "Icon" msgstr "Иконица" @@ -2942,10 +2942,10 @@ msgstr "Уколико је омогућено, одлазни имејлови msgid "If enabled, records can be created from the incoming emails on this account." msgstr "Уколико је омогућено, записи могу бити креирани из долазних имејлова на овом налогу." -#. Label of the image (Attach Image) field in DocType 'CRM Lead' -#. Label of the image (Attach Image) field in DocType 'CRM Product' -#: crm/fcrm/doctype/crm_lead/crm_lead.json -#: crm/fcrm/doctype/crm_product/crm_product.json +#. Label of the image (Attach Image) field in PageType 'CRM Lead' +#. Label of the image (Attach Image) field in PageType 'CRM Product' +#: crm/fcrm/pagetype/crm_lead/crm_lead.json +#: crm/fcrm/pagetype/crm_product/crm_product.json msgid "Image" msgstr "Слика" @@ -2957,10 +2957,10 @@ msgstr "Слика" msgid "In" msgstr "У" -#. Option for the 'Status' (Select) field in DocType 'CRM Call Log' -#. Option for the 'Status' (Select) field in DocType 'CRM Task' -#: crm/fcrm/doctype/crm_call_log/crm_call_log.json -#: crm/fcrm/doctype/crm_task/crm_task.json +#. Option for the 'Status' (Select) field in PageType 'CRM Call Log' +#. Option for the 'Status' (Select) field in PageType 'CRM Task' +#: crm/fcrm/pagetype/crm_call_log/crm_call_log.json +#: crm/fcrm/pagetype/crm_task/crm_task.json msgid "In Progress" msgstr "У току" @@ -2976,8 +2976,8 @@ msgstr "Долазни позив" msgid "Inbox" msgstr "Пријемна пошта" -#. Option for the 'Type' (Select) field in DocType 'CRM Call Log' -#: crm/fcrm/doctype/crm_call_log/crm_call_log.json +#. Option for the 'Type' (Select) field in PageType 'CRM Call Log' +#: crm/fcrm/pagetype/crm_call_log/crm_call_log.json msgid "Incoming" msgstr "Долазни" @@ -2985,24 +2985,24 @@ msgstr "Долазни" msgid "Incoming call..." msgstr "Долазни позив..." -#. Label of a shortcut in the Frappe CRM Workspace -#: crm/fcrm/workspace/frappe_crm/frappe_crm.json +#. Label of a shortcut in the Jingrow CRM Workspace +#: crm/fcrm/workspace/jingrow_crm/jingrow_crm.json msgid "Industries" msgstr "Индустрије" -#. Label of the industry (Link) field in DocType 'CRM Deal' -#. Label of the industry (Data) field in DocType 'CRM Industry' -#. Label of the industry (Link) field in DocType 'CRM Lead' -#. Label of the industry (Link) field in DocType 'CRM Organization' -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_industry/crm_industry.json -#: crm/fcrm/doctype/crm_lead/crm_lead.json -#: crm/fcrm/doctype/crm_organization/crm_organization.json +#. Label of the industry (Link) field in PageType 'CRM Deal' +#. Label of the industry (Data) field in PageType 'CRM Industry' +#. Label of the industry (Link) field in PageType 'CRM Lead' +#. Label of the industry (Link) field in PageType 'CRM Organization' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_industry/crm_industry.json +#: crm/fcrm/pagetype/crm_lead/crm_lead.json +#: crm/fcrm/pagetype/crm_organization/crm_organization.json msgid "Industry" msgstr "Индустрија" -#. Option for the 'Status' (Select) field in DocType 'CRM Call Log' -#: crm/fcrm/doctype/crm_call_log/crm_call_log.json +#. Option for the 'Status' (Select) field in PageType 'CRM Call Log' +#: crm/fcrm/pagetype/crm_call_log/crm_call_log.json msgid "Initiated" msgstr "Започето" @@ -3037,7 +3037,7 @@ msgstr "Интеграције" msgid "Introduction" msgstr "Увод" -#: crm/fcrm/doctype/crm_twilio_settings/crm_twilio_settings.py:33 +#: crm/fcrm/pagetype/crm_twilio_settings/crm_twilio_settings.py:33 msgid "Invalid Account SID or Auth Token." msgstr "Неважећи SID налога или аутентификациони токен." @@ -3054,7 +3054,7 @@ msgstr "Неважећи Exotel број" msgid "Invalid chart name" msgstr "Неважећи назив дијаграма" -#: crm/fcrm/doctype/crm_exotel_settings/crm_exotel_settings.py:25 +#: crm/fcrm/pagetype/crm_exotel_settings/crm_exotel_settings.py:25 msgid "Invalid credentials" msgstr "Неважећи креденцијали" @@ -3103,8 +3103,8 @@ msgstr "Позовите кориснике да приступе CRM. Наве msgid "Invite your team" msgstr "Позовите свој тим" -#. Label of the invited_by (Link) field in DocType 'CRM Invitation' -#: crm/fcrm/doctype/crm_invitation/crm_invitation.json +#. Label of the invited_by (Link) field in PageType 'CRM Invitation' +#: crm/fcrm/pagetype/crm_invitation/crm_invitation.json msgid "Invited By" msgstr "Позван од стране" @@ -3118,59 +3118,59 @@ msgstr "Позван од стране" msgid "Is" msgstr "Јесте" -#. Label of the is_default (Check) field in DocType 'CRM View Settings' -#: crm/fcrm/doctype/crm_view_settings/crm_view_settings.json +#. Label of the is_default (Check) field in PageType 'CRM View Settings' +#: crm/fcrm/pagetype/crm_view_settings/crm_view_settings.json msgid "Is Default" msgstr "Подразумевано" -#. Label of the is_erpnext_in_different_site (Check) field in DocType 'ERPNext +#. Label of the is_erpnext_in_different_site (Check) field in PageType 'ERPNext #. CRM Settings' -#: crm/fcrm/doctype/erpnext_crm_settings/erpnext_crm_settings.json +#: crm/fcrm/pagetype/erpnext_crm_settings/erpnext_crm_settings.json msgid "Is ERPNext installed on a different site?" msgstr "Да ли је ERPNext инсталиран на другом сајту?" -#. Label of the is_group (Check) field in DocType 'CRM Territory' -#: crm/fcrm/doctype/crm_territory/crm_territory.json +#. Label of the is_group (Check) field in PageType 'CRM Territory' +#: crm/fcrm/pagetype/crm_territory/crm_territory.json msgid "Is Group" msgstr "Група" -#. Label of the is_helpdesk_in_different_site (Check) field in DocType +#. Label of the is_helpdesk_in_different_site (Check) field in PageType #. 'Helpdesk CRM Settings' -#: crm/fcrm/doctype/helpdesk_crm_settings/helpdesk_crm_settings.json +#: crm/fcrm/pagetype/helpdesk_crm_settings/helpdesk_crm_settings.json msgid "Is Helpdesk installed on a different site?" msgstr "Да ли је Helpdesk инсталиран на другом сајту?" -#. Label of the is_primary (Check) field in DocType 'CRM Contacts' -#. Label of the is_primary (Check) field in DocType 'CRM Telephony Phone' -#: crm/fcrm/doctype/crm_contacts/crm_contacts.json -#: crm/fcrm/doctype/crm_telephony_phone/crm_telephony_phone.json +#. Label of the is_primary (Check) field in PageType 'CRM Contacts' +#. Label of the is_primary (Check) field in PageType 'CRM Telephony Phone' +#: crm/fcrm/pagetype/crm_contacts/crm_contacts.json +#: crm/fcrm/pagetype/crm_telephony_phone/crm_telephony_phone.json msgid "Is Primary" msgstr "Примарно" -#. Label of the is_standard (Check) field in DocType 'CRM Dropdown Item' -#. Label of the is_standard (Check) field in DocType 'CRM Form Script' -#. Label of the is_standard (Check) field in DocType 'CRM View Settings' -#: crm/fcrm/doctype/crm_dropdown_item/crm_dropdown_item.json -#: crm/fcrm/doctype/crm_form_script/crm_form_script.json -#: crm/fcrm/doctype/crm_view_settings/crm_view_settings.json +#. Label of the is_standard (Check) field in PageType 'CRM Dropdown Item' +#. Label of the is_standard (Check) field in PageType 'CRM Form Script' +#. Label of the is_standard (Check) field in PageType 'CRM View Settings' +#: crm/fcrm/pagetype/crm_dropdown_item/crm_dropdown_item.json +#: crm/fcrm/pagetype/crm_form_script/crm_form_script.json +#: crm/fcrm/pagetype/crm_view_settings/crm_view_settings.json msgid "Is Standard" msgstr "Стандардно" -#. Description of the 'Enable Forecasting' (Check) field in DocType 'FCRM +#. Description of the 'Enable Forecasting' (Check) field in PageType 'FCRM #. Settings' -#: crm/fcrm/doctype/fcrm_settings/fcrm_settings.json +#: crm/fcrm/pagetype/fcrm_settings/fcrm_settings.json msgid "It will make deal's \"Expected Closure Date\" & \"Expected Deal Value\" mandatory to get accurate forecasting insights" msgstr "Учиниће да су \"Очекивани датум затварања\" и \"Очекивана вредност пословне прилике\" обавезни за прецизно добијање увида у прогнозу" -#. Label of the json (JSON) field in DocType 'CRM Global Settings' -#: crm/fcrm/doctype/crm_global_settings/crm_global_settings.json +#. Label of the json (JSON) field in PageType 'CRM Global Settings' +#: crm/fcrm/pagetype/crm_global_settings/crm_global_settings.json msgid "JSON" msgstr "JSON" -#. Label of the job_title (Data) field in DocType 'CRM Deal' -#. Label of the job_title (Data) field in DocType 'CRM Lead' -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_lead/crm_lead.json +#. Label of the job_title (Data) field in PageType 'CRM Deal' +#. Label of the job_title (Data) field in PageType 'CRM Lead' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_lead/crm_lead.json msgid "Job Title" msgstr "Радно место" @@ -3182,20 +3182,20 @@ msgstr "Радно место" msgid "John Doe" msgstr "Петар Петровић" -#. Label of the kanban_tab (Tab Break) field in DocType 'CRM View Settings' -#: crm/fcrm/doctype/crm_view_settings/crm_view_settings.json +#. Label of the kanban_tab (Tab Break) field in PageType 'CRM View Settings' +#: crm/fcrm/pagetype/crm_view_settings/crm_view_settings.json #: frontend/src/components/ViewControls.vue:384 #: frontend/src/components/ViewControls.vue:600 frontend/src/utils/view.js:20 msgid "Kanban" msgstr "Канбан" -#. Label of the kanban_columns (Code) field in DocType 'CRM View Settings' -#: crm/fcrm/doctype/crm_view_settings/crm_view_settings.json +#. Label of the kanban_columns (Code) field in PageType 'CRM View Settings' +#: crm/fcrm/pagetype/crm_view_settings/crm_view_settings.json msgid "Kanban Columns" msgstr "Канбан колоне" -#. Label of the kanban_fields (Code) field in DocType 'CRM View Settings' -#: crm/fcrm/doctype/crm_view_settings/crm_view_settings.json +#. Label of the kanban_fields (Code) field in PageType 'CRM View Settings' +#: crm/fcrm/pagetype/crm_view_settings/crm_view_settings.json msgid "Kanban Fields" msgstr "Канбан поља" @@ -3204,15 +3204,15 @@ msgstr "Канбан поља" msgid "Kanban Settings" msgstr "Канбан подешавање" -#. Label of the key (Data) field in DocType 'CRM Invitation' -#: crm/fcrm/doctype/crm_invitation/crm_invitation.json +#. Label of the key (Data) field in PageType 'CRM Invitation' +#: crm/fcrm/pagetype/crm_invitation/crm_invitation.json msgid "Key" msgstr "Кључ" -#. Label of the label (Data) field in DocType 'CRM Dropdown Item' -#. Label of the label (Data) field in DocType 'CRM View Settings' -#: crm/fcrm/doctype/crm_dropdown_item/crm_dropdown_item.json -#: crm/fcrm/doctype/crm_view_settings/crm_view_settings.json +#. Label of the label (Data) field in PageType 'CRM Dropdown Item' +#. Label of the label (Data) field in PageType 'CRM View Settings' +#: crm/fcrm/pagetype/crm_dropdown_item/crm_dropdown_item.json +#: crm/fcrm/pagetype/crm_view_settings/crm_view_settings.json #: frontend/src/components/ColumnSettings.vue:100 msgid "Label" msgstr "Ознака" @@ -3229,10 +3229,10 @@ msgstr "Последњих 6 месеци" msgid "Last Month" msgstr "Прошли месец" -#. Label of the last_name (Data) field in DocType 'CRM Deal' -#. Label of the last_name (Data) field in DocType 'CRM Lead' -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_lead/crm_lead.json +#. Label of the last_name (Data) field in PageType 'CRM Deal' +#. Label of the last_name (Data) field in PageType 'CRM Lead' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_lead/crm_lead.json msgid "Last Name" msgstr "Презиме" @@ -3240,9 +3240,9 @@ msgstr "Презиме" msgid "Last Quarter" msgstr "Прошли квартал" -#. Label of the last_status_change_log (Link) field in DocType 'CRM Status +#. Label of the last_status_change_log (Link) field in PageType 'CRM Status #. Change Log' -#: crm/fcrm/doctype/crm_status_change_log/crm_status_change_log.json +#: crm/fcrm/pagetype/crm_status_change_log/crm_status_change_log.json msgid "Last Status Change Log" msgstr "Евиденција последње промене статуса" @@ -3270,15 +3270,15 @@ msgstr "Презиме" msgid "Last user assigned by this rule" msgstr "Последњи корисник којем је тикет додељен по овом правилу" -#. Label of the layout (Code) field in DocType 'CRM Dashboard' -#. Label of the layout (Code) field in DocType 'CRM Fields Layout' -#: crm/fcrm/doctype/crm_dashboard/crm_dashboard.json -#: crm/fcrm/doctype/crm_fields_layout/crm_fields_layout.json +#. Label of the layout (Code) field in PageType 'CRM Dashboard' +#. Label of the layout (Code) field in PageType 'CRM Fields Layout' +#: crm/fcrm/pagetype/crm_dashboard/crm_dashboard.json +#: crm/fcrm/pagetype/crm_fields_layout/crm_fields_layout.json msgid "Layout" msgstr "Распоред" -#. Label of the lead (Link) field in DocType 'CRM Deal' -#: crm/fcrm/doctype/crm_deal/crm_deal.json +#. Label of the lead (Link) field in PageType 'CRM Deal' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json #: frontend/src/components/Calendar/CalendarEventPanel.vue:263 #: frontend/src/components/Calendar/CalendarEventPanel.vue:288 #: frontend/src/components/Layouts/AppSidebar.vue:550 @@ -3291,32 +3291,32 @@ msgstr "Распоред" msgid "Lead" msgstr "Потенцијални клијент" -#. Label of the lead_details_tab (Tab Break) field in DocType 'CRM Deal' -#: crm/fcrm/doctype/crm_deal/crm_deal.json +#. Label of the lead_details_tab (Tab Break) field in PageType 'CRM Deal' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json msgid "Lead Details" msgstr "Детаљи потенцијалног клијената" -#. Label of the lead_name (Data) field in DocType 'CRM Deal' -#: crm/fcrm/doctype/crm_deal/crm_deal.json +#. Label of the lead_name (Data) field in PageType 'CRM Deal' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json msgid "Lead Name" msgstr "Назив потенцијалног клијента" -#. Label of the lead_owner (Link) field in DocType 'CRM Lead' -#: crm/fcrm/doctype/crm_lead/crm_lead.json +#. Label of the lead_owner (Link) field in PageType 'CRM Lead' +#: crm/fcrm/pagetype/crm_lead/crm_lead.json msgid "Lead Owner" msgstr "Власник потенцијалног клијента" -#: crm/fcrm/doctype/crm_lead/crm_lead.py:73 +#: crm/fcrm/pagetype/crm_lead/crm_lead.py:73 msgid "Lead Owner cannot be same as the Lead Email Address" msgstr "Власник потенцијалног клијента не може бити исти као имејл адреса потенцијалног клијента" -#. Label of a shortcut in the Frappe CRM Workspace -#: crm/fcrm/workspace/frappe_crm/frappe_crm.json +#. Label of a shortcut in the Jingrow CRM Workspace +#: crm/fcrm/workspace/jingrow_crm/jingrow_crm.json msgid "Lead Sources" msgstr "Извори потенцијалног клијента" -#. Label of a shortcut in the Frappe CRM Workspace -#: crm/fcrm/workspace/frappe_crm/frappe_crm.json +#. Label of a shortcut in the Jingrow CRM Workspace +#: crm/fcrm/workspace/jingrow_crm/jingrow_crm.json msgid "Lead Statuses" msgstr "Статуси потенцијалног клијента" @@ -3328,8 +3328,8 @@ msgstr "Анализа канала за генерисање потенција msgid "Lead to deal conversion pipeline" msgstr "Ток пребацивања потенцијалних клијената у пословне прилике" -#. Label of a shortcut in the Frappe CRM Workspace -#: crm/fcrm/workspace/frappe_crm/frappe_crm.json +#. Label of a shortcut in the Jingrow CRM Workspace +#: crm/fcrm/workspace/jingrow_crm/jingrow_crm.json #: frontend/src/pages/InvalidPage.vue:9 frontend/src/pages/Lead.vue:340 #: frontend/src/pages/MobileLead.vue:291 msgid "Leads" @@ -3345,8 +3345,8 @@ msgstr "Потенцијални клијенти по извору" msgid "Learn about conditions" msgstr "Сазнајте више о условима" -#. Label of the lft (Int) field in DocType 'CRM Territory' -#: crm/fcrm/doctype/crm_territory/crm_territory.json +#. Label of the lft (Int) field in PageType 'CRM Territory' +#: crm/fcrm/pagetype/crm_territory/crm_territory.json msgid "Left" msgstr "Лево" @@ -3367,15 +3367,15 @@ msgstr "Лајк" msgid "Link" msgstr "Линк" -#. Label of the links (Table) field in DocType 'CRM Call Log' -#: crm/fcrm/doctype/crm_call_log/crm_call_log.json +#. Label of the links (Table) field in PageType 'CRM Call Log' +#: crm/fcrm/pagetype/crm_call_log/crm_call_log.json msgid "Links" msgstr "Линкови" -#. Option for the 'Apply To' (Select) field in DocType 'CRM Form Script' -#. Label of the list_tab (Tab Break) field in DocType 'CRM View Settings' -#: crm/fcrm/doctype/crm_form_script/crm_form_script.json -#: crm/fcrm/doctype/crm_view_settings/crm_view_settings.json +#. Option for the 'Apply To' (Select) field in PageType 'CRM Form Script' +#. Label of the list_tab (Tab Break) field in PageType 'CRM View Settings' +#: crm/fcrm/pagetype/crm_form_script/crm_form_script.json +#: crm/fcrm/pagetype/crm_view_settings/crm_view_settings.json #: frontend/src/components/ViewControls.vue:374 #: frontend/src/components/ViewControls.vue:589 frontend/src/utils/view.js:12 msgid "List" @@ -3385,9 +3385,9 @@ msgstr "Листа" msgid "Listen" msgstr "Слушај" -#. Label of the load_default_columns (Check) field in DocType 'CRM View +#. Label of the load_default_columns (Check) field in PageType 'CRM View #. Settings' -#: crm/fcrm/doctype/crm_view_settings/crm_view_settings.json +#: crm/fcrm/pagetype/crm_view_settings/crm_view_settings.json msgid "Load Default Columns" msgstr "Учитај подразумеване колоне" @@ -3403,10 +3403,10 @@ msgstr "Учитај више" msgid "Loading..." msgstr "Учитавање..." -#. Label of the log_tab (Tab Break) field in DocType 'CRM Deal' -#. Label of the log_tab (Tab Break) field in DocType 'CRM Lead' -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_lead/crm_lead.json +#. Label of the log_tab (Tab Break) field in PageType 'CRM Deal' +#. Label of the log_tab (Tab Break) field in PageType 'CRM Lead' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_lead/crm_lead.json msgid "Log" msgstr "Евиденција" @@ -3417,28 +3417,28 @@ msgid "Log a Call" msgstr "Евидентирај позив" #: frontend/src/composables/frappecloud.js:23 -msgid "Login to Frappe Cloud?" -msgstr "Пријављивање на Frappe Cloud?" +msgid "Login to Jingrow Cloud?" +msgstr "Пријављивање на Jingrow Cloud?" -#. Label of the brand_logo (Attach) field in DocType 'FCRM Settings' -#: crm/fcrm/doctype/fcrm_settings/fcrm_settings.json +#. Label of the brand_logo (Attach) field in PageType 'FCRM Settings' +#: crm/fcrm/pagetype/fcrm_settings/fcrm_settings.json msgid "Logo" msgstr "Лого" -#. Option for the 'Type' (Select) field in DocType 'CRM Deal Status' -#: crm/fcrm/doctype/crm_deal_status/crm_deal_status.json +#. Option for the 'Type' (Select) field in PageType 'CRM Deal Status' +#: crm/fcrm/pagetype/crm_deal_status/crm_deal_status.json msgid "Lost" msgstr "Изгубљено" -#. Label of the lost_notes (Text) field in DocType 'CRM Deal' -#: crm/fcrm/doctype/crm_deal/crm_deal.json +#. Label of the lost_notes (Text) field in PageType 'CRM Deal' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json msgid "Lost Notes" msgstr "Белешке о губицима" -#. Label of the lost_reason (Link) field in DocType 'CRM Deal' -#. Label of the lost_reason (Data) field in DocType 'CRM Lost Reason' -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_lost_reason/crm_lost_reason.json +#. Label of the lost_reason (Link) field in PageType 'CRM Deal' +#. Label of the lost_reason (Data) field in PageType 'CRM Lost Reason' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_lost_reason/crm_lost_reason.json msgid "Lost Reason" msgstr "Разлог губитка" @@ -3464,8 +3464,8 @@ msgstr "Разлог губитка" msgid "Lost reason is required" msgstr "Разлог губитка је обавезан" -#. Option for the 'Priority' (Select) field in DocType 'CRM Task' -#: crm/fcrm/doctype/crm_task/crm_task.json +#. Option for the 'Priority' (Select) field in PageType 'CRM Task' +#: crm/fcrm/pagetype/crm_task/crm_task.json msgid "Low" msgstr "Низак" @@ -3542,8 +3542,8 @@ msgstr "Менаџер" msgid "Mandatory field error: {0}" msgstr "Грешка у обавезном пољу: {0}" -#. Option for the 'Telephony Medium' (Select) field in DocType 'CRM Call Log' -#: crm/fcrm/doctype/crm_call_log/crm_call_log.json +#. Option for the 'Telephony Medium' (Select) field in PageType 'CRM Call Log' +#: crm/fcrm/pagetype/crm_call_log/crm_call_log.json msgid "Manual" msgstr "Ручно" @@ -3562,25 +3562,25 @@ msgstr "Мастер подаци" msgid "May 1, 2025" msgstr "1. мај 2025." -#. Label of the medium (Data) field in DocType 'CRM Call Log' -#. Option for the 'Priority' (Select) field in DocType 'CRM Task' -#: crm/fcrm/doctype/crm_call_log/crm_call_log.json -#: crm/fcrm/doctype/crm_task/crm_task.json +#. Label of the medium (Data) field in PageType 'CRM Call Log' +#. Option for the 'Priority' (Select) field in PageType 'CRM Task' +#: crm/fcrm/pagetype/crm_call_log/crm_call_log.json +#: crm/fcrm/pagetype/crm_task/crm_task.json msgid "Medium" msgstr "Средње" -#. Option for the 'Type' (Select) field in DocType 'CRM Notification' -#: crm/fcrm/doctype/crm_notification/crm_notification.json +#. Option for the 'Type' (Select) field in PageType 'CRM Notification' +#: crm/fcrm/pagetype/crm_notification/crm_notification.json msgid "Mention" msgstr "Помињање" -#. Label of the message (HTML Editor) field in DocType 'CRM Notification' -#: crm/fcrm/doctype/crm_notification/crm_notification.json +#. Label of the message (HTML Editor) field in PageType 'CRM Notification' +#: crm/fcrm/pagetype/crm_notification/crm_notification.json msgid "Message" msgstr "Порука" -#. Label of the middle_name (Data) field in DocType 'CRM Lead' -#: crm/fcrm/doctype/crm_lead/crm_lead.json +#. Label of the middle_name (Data) field in PageType 'CRM Lead' +#: crm/fcrm/pagetype/crm_lead/crm_lead.json msgid "Middle Name" msgstr "Средње име" @@ -3588,10 +3588,10 @@ msgstr "Средње име" msgid "Minimize" msgstr "Минимизуј" -#. Label of the mobile_no (Data) field in DocType 'CRM Contacts' -#. Label of the mobile_no (Data) field in DocType 'CRM Lead' -#: crm/fcrm/doctype/crm_contacts/crm_contacts.json -#: crm/fcrm/doctype/crm_lead/crm_lead.json +#. Label of the mobile_no (Data) field in PageType 'CRM Contacts' +#. Label of the mobile_no (Data) field in PageType 'CRM Lead' +#: crm/fcrm/pagetype/crm_contacts/crm_contacts.json +#: crm/fcrm/pagetype/crm_lead/crm_lead.json msgid "Mobile No" msgstr "Број мобилног телефона" @@ -3600,8 +3600,8 @@ msgstr "Број мобилног телефона" msgid "Mobile No should be a number" msgstr "Број мобилног телефона треба да буде број" -#. Label of the mobile_no (Data) field in DocType 'CRM Telephony Agent' -#: crm/fcrm/doctype/crm_telephony_agent/crm_telephony_agent.json +#. Label of the mobile_no (Data) field in PageType 'CRM Telephony Agent' +#: crm/fcrm/pagetype/crm_telephony_agent/crm_telephony_agent.json msgid "Mobile No." msgstr "Број мобилног телефона." @@ -3623,10 +3623,10 @@ msgstr "Инсталација мобилне апликације" msgid "Mobile no" msgstr "Број мобилног телефона" -#. Option for the 'Weekly Off' (Select) field in DocType 'CRM Holiday List' -#. Option for the 'Workday' (Select) field in DocType 'CRM Service Day' -#: crm/fcrm/doctype/crm_holiday_list/crm_holiday_list.json -#: crm/fcrm/doctype/crm_service_day/crm_service_day.json +#. Option for the 'Weekly Off' (Select) field in PageType 'CRM Holiday List' +#. Option for the 'Workday' (Select) field in PageType 'CRM Service Day' +#: crm/fcrm/pagetype/crm_holiday_list/crm_holiday_list.json +#: crm/fcrm/pagetype/crm_service_day/crm_service_day.json msgid "Monday" msgstr "Понедељак" @@ -3658,12 +3658,12 @@ msgstr "Иди на претходну картицу" msgid "My Open Deals" msgstr "Моје отворене пословне прилике" -#. Label of the title (Data) field in DocType 'CRM Dashboard' -#. Label of the name1 (Data) field in DocType 'CRM Dropdown Item' -#. Label of the brand_name (Data) field in DocType 'FCRM Settings' -#: crm/fcrm/doctype/crm_dashboard/crm_dashboard.json -#: crm/fcrm/doctype/crm_dropdown_item/crm_dropdown_item.json -#: crm/fcrm/doctype/fcrm_settings/fcrm_settings.json +#. Label of the title (Data) field in PageType 'CRM Dashboard' +#. Label of the name1 (Data) field in PageType 'CRM Dropdown Item' +#. Label of the brand_name (Data) field in PageType 'FCRM Settings' +#: crm/fcrm/pagetype/crm_dashboard/crm_dashboard.json +#: crm/fcrm/pagetype/crm_dropdown_item/crm_dropdown_item.json +#: crm/fcrm/pagetype/fcrm_settings/fcrm_settings.json #: frontend/src/components/Settings/AssignmentRules/AssignmentRuleView.vue:51 #: frontend/src/components/Settings/AssignmentRules/AssignmentRuleView.vue:52 #: frontend/src/components/Settings/EmailTemplate/EditEmailTemplate.vue:39 @@ -3680,10 +3680,10 @@ msgstr "Назив" msgid "Name is required" msgstr "Назив је обавезан" -#. Label of the naming_series (Select) field in DocType 'CRM Deal' -#. Label of the naming_series (Select) field in DocType 'CRM Product' -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_product/crm_product.json +#. Label of the naming_series (Select) field in PageType 'CRM Deal' +#. Label of the naming_series (Select) field in PageType 'CRM Product' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_product/crm_product.json msgid "Naming Series" msgstr "Серије именовања" @@ -3691,15 +3691,15 @@ msgstr "Серије именовања" msgid "Nested conditions" msgstr "Угњеждени услови" -#. Label of the net_amount (Currency) field in DocType 'CRM Products' -#: crm/fcrm/doctype/crm_products/crm_products.json +#. Label of the net_amount (Currency) field in PageType 'CRM Products' +#: crm/fcrm/pagetype/crm_products/crm_products.json msgid "Net Amount" msgstr "Нето износ" -#. Label of the net_total (Currency) field in DocType 'CRM Deal' -#. Label of the net_total (Currency) field in DocType 'CRM Lead' -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_lead/crm_lead.json +#. Label of the net_total (Currency) field in PageType 'CRM Deal' +#. Label of the net_total (Currency) field in PageType 'CRM Lead' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_lead/crm_lead.json msgid "Net Total" msgstr "Нето укупно" @@ -3814,8 +3814,8 @@ msgstr "Следећи месец" msgid "Next Quarter" msgstr "Следећи квартал" -#. Label of the next_step (Data) field in DocType 'CRM Deal' -#: crm/fcrm/doctype/crm_deal/crm_deal.json +#. Label of the next_step (Data) field in PageType 'CRM Deal' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json msgid "Next Step" msgstr "Следећи корак" @@ -3831,8 +3831,8 @@ msgstr "Следећа година" msgid "No" msgstr "Не" -#. Option for the 'Status' (Select) field in DocType 'CRM Call Log' -#: crm/fcrm/doctype/crm_call_log/crm_call_log.json +#. Option for the 'Status' (Select) field in PageType 'CRM Call Log' +#: crm/fcrm/pagetype/crm_call_log/crm_call_log.json msgid "No Answer" msgstr "Без одговора" @@ -3930,12 +3930,12 @@ msgstr "Нема доступних {0}" msgid "No {0} Found" msgstr "Није пронађен ниједан {0}" -#. Label of the no_of_employees (Select) field in DocType 'CRM Deal' -#. Label of the no_of_employees (Select) field in DocType 'CRM Lead' -#. Label of the no_of_employees (Select) field in DocType 'CRM Organization' -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_lead/crm_lead.json -#: crm/fcrm/doctype/crm_organization/crm_organization.json +#. Label of the no_of_employees (Select) field in PageType 'CRM Deal' +#. Label of the no_of_employees (Select) field in PageType 'CRM Lead' +#. Label of the no_of_employees (Select) field in PageType 'CRM Organization' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_lead/crm_lead.json +#: crm/fcrm/pagetype/crm_organization/crm_organization.json msgid "No. of Employees" msgstr "Број запослених лица" @@ -3981,24 +3981,24 @@ msgstr "Није слично" msgid "Not Saved" msgstr "Није сачувано" -#: crm/fcrm/doctype/crm_deal/crm_deal.py:272 +#: crm/fcrm/pagetype/crm_deal/crm_deal.py:272 msgid "Not allowed to add contact to Deal" msgstr "Није дозвољено додати контакт у пословну прилику" -#: crm/fcrm/doctype/crm_lead/crm_lead.py:408 +#: crm/fcrm/pagetype/crm_lead/crm_lead.py:408 msgid "Not allowed to convert Lead to Deal" msgstr "Није дозвољено пребацити потенцијалног клијента у пословну прилику" -#: crm/fcrm/doctype/crm_deal/crm_deal.py:283 +#: crm/fcrm/pagetype/crm_deal/crm_deal.py:283 msgid "Not allowed to remove contact from Deal" msgstr "Није дозвољено уклонити контакт из пословне прилике" -#: crm/fcrm/doctype/crm_deal/crm_deal.py:294 +#: crm/fcrm/pagetype/crm_deal/crm_deal.py:294 msgid "Not allowed to set primary contact for Deal" msgstr "Није дозвољено поставити примарни контакт за пословну прилику" -#. Label of the note (Link) field in DocType 'CRM Call Log' -#: crm/fcrm/doctype/crm_call_log/crm_call_log.json +#. Label of the note (Link) field in PageType 'CRM Call Log' +#: crm/fcrm/pagetype/crm_call_log/crm_call_log.json #: frontend/src/components/Layouts/AppSidebar.vue:554 msgid "Note" msgstr "Белешка" @@ -4017,22 +4017,22 @@ msgstr "Приказ белешки" msgid "Notification" msgstr "Обавештење" -#. Label of the notification_text (Text) field in DocType 'CRM Notification' -#: crm/fcrm/doctype/crm_notification/crm_notification.json +#. Label of the notification_text (Text) field in PageType 'CRM Notification' +#: crm/fcrm/pagetype/crm_notification/crm_notification.json msgid "Notification Text" msgstr "Текст обавештења" -#. Label of the notification_type_doc (Dynamic Link) field in DocType 'CRM +#. Label of the notification_type_pg (Dynamic Link) field in PageType 'CRM #. Notification' -#: crm/fcrm/doctype/crm_notification/crm_notification.json -msgid "Notification Type Doc" +#: crm/fcrm/pagetype/crm_notification/crm_notification.json +msgid "Notification Type Pg" msgstr "Врста обавештења документа" -#. Label of the notification_type_doctype (Link) field in DocType 'CRM +#. Label of the notification_type_pagetype (Link) field in PageType 'CRM #. Notification' -#: crm/fcrm/doctype/crm_notification/crm_notification.json -msgid "Notification Type Doctype" -msgstr "Врста обавештења DocType" +#: crm/fcrm/pagetype/crm_notification/crm_notification.json +msgid "Notification Type Pagetype" +msgstr "Врста обавештења PageType" #: frontend/src/components/Layouts/AppSidebar.vue:13 #: frontend/src/components/Mobile/MobileSidebar.vue:23 @@ -4041,8 +4041,8 @@ msgstr "Врста обавештења DocType" msgid "Notifications" msgstr "Обавештења" -#. Label of the number (Data) field in DocType 'CRM Telephony Phone' -#: crm/fcrm/doctype/crm_telephony_phone/crm_telephony_phone.json +#. Label of the number (Data) field in PageType 'CRM Telephony Phone' +#: crm/fcrm/pagetype/crm_telephony_phone/crm_telephony_phone.json msgid "Number" msgstr "Број" @@ -4064,18 +4064,18 @@ msgstr "Број пословних прилика и укупна вредно msgid "Old Condition" msgstr "Стари услов" -#. Label of the old_parent (Link) field in DocType 'CRM Territory' -#: crm/fcrm/doctype/crm_territory/crm_territory.json +#. Label of the old_parent (Link) field in PageType 'CRM Territory' +#: crm/fcrm/pagetype/crm_territory/crm_territory.json msgid "Old Parent" msgstr "Претходна матична" -#. Option for the 'Type' (Select) field in DocType 'CRM Deal Status' -#: crm/fcrm/doctype/crm_deal_status/crm_deal_status.json +#. Option for the 'Type' (Select) field in PageType 'CRM Deal Status' +#: crm/fcrm/pagetype/crm_deal_status/crm_deal_status.json msgid "On Hold" msgstr "На чекању" -#. Option for the 'Type' (Select) field in DocType 'CRM Deal Status' -#: crm/fcrm/doctype/crm_deal_status/crm_deal_status.json +#. Option for the 'Type' (Select) field in PageType 'CRM Deal Status' +#: crm/fcrm/pagetype/crm_deal_status/crm_deal_status.json msgid "Ongoing" msgstr "Текуће" @@ -4088,13 +4088,13 @@ msgstr "Текуће пословне прилике" msgid "Only image files are allowed" msgstr "Дозвољени су само фајлови у формату слике" -#: crm/fcrm/doctype/crm_deal/crm_deal.py:60 -#: crm/fcrm/doctype/crm_telephony_agent/crm_telephony_agent.py:23 +#: crm/fcrm/pagetype/crm_deal/crm_deal.py:60 +#: crm/fcrm/pagetype/crm_telephony_agent/crm_telephony_agent.py:23 msgid "Only one {0} can be set as primary." msgstr "Може бити постављен само један {0} као примарни." -#. Option for the 'Type' (Select) field in DocType 'CRM Deal Status' -#: crm/fcrm/doctype/crm_deal_status/crm_deal_status.json +#. Option for the 'Type' (Select) field in PageType 'CRM Deal Status' +#: crm/fcrm/pagetype/crm_deal_status/crm_deal_status.json msgid "Open" msgstr "Отворено" @@ -4108,13 +4108,13 @@ msgstr "Отворене пословне прилике" msgid "Open Lead" msgstr "Отворени потенцијални клијент" -#: crm/fcrm/doctype/crm_deal/crm_deal.js:6 -#: crm/fcrm/doctype/crm_lead/crm_lead.js:6 +#: crm/fcrm/pagetype/crm_deal/crm_deal.js:6 +#: crm/fcrm/pagetype/crm_lead/crm_lead.js:6 msgid "Open in Portal" msgstr "Отвори у порталу" -#. Label of the open_in_new_window (Check) field in DocType 'CRM Dropdown Item' -#: crm/fcrm/doctype/crm_dropdown_item/crm_dropdown_item.json +#. Label of the open_in_new_window (Check) field in PageType 'CRM Dropdown Item' +#: crm/fcrm/pagetype/crm_dropdown_item/crm_dropdown_item.json msgid "Open in new window" msgstr "Отвори у новом прозору" @@ -4136,17 +4136,17 @@ msgstr "Опције" msgid "Or create leads manually" msgstr "Или креирајте потенцијалне клијенте ручно" -#. Label of the order_by_tab (Tab Break) field in DocType 'CRM View Settings' -#. Label of the order_by (Code) field in DocType 'CRM View Settings' -#: crm/fcrm/doctype/crm_view_settings/crm_view_settings.json +#. Label of the order_by_tab (Tab Break) field in PageType 'CRM View Settings' +#. Label of the order_by (Code) field in PageType 'CRM View Settings' +#: crm/fcrm/pagetype/crm_view_settings/crm_view_settings.json msgid "Order By" msgstr "Наруџбина од" -#. Label of the organization (Link) field in DocType 'CRM Deal' -#. Label of the organization_tab (Tab Break) field in DocType 'CRM Deal' -#. Label of the organization (Data) field in DocType 'CRM Lead' -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_lead/crm_lead.json +#. Label of the organization (Link) field in PageType 'CRM Deal' +#. Label of the organization_tab (Tab Break) field in PageType 'CRM Deal' +#. Label of the organization (Data) field in PageType 'CRM Lead' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_lead/crm_lead.json #: frontend/src/components/Layouts/AppSidebar.vue:553 #: frontend/src/components/Modals/ConvertToDealModal.vue:25 #: frontend/src/pages/Contact.vue:494 frontend/src/pages/MobileContact.vue:502 @@ -4158,22 +4158,22 @@ msgstr "Наруџбина од" msgid "Organization" msgstr "Организација" -#. Label of the organization_details_section (Section Break) field in DocType +#. Label of the organization_details_section (Section Break) field in PageType #. 'CRM Deal' -#: crm/fcrm/doctype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_deal/crm_deal.json msgid "Organization Details" msgstr "Детаљи организације" -#. Label of the organization_logo (Attach Image) field in DocType 'CRM +#. Label of the organization_logo (Attach Image) field in PageType 'CRM #. Organization' -#: crm/fcrm/doctype/crm_organization/crm_organization.json +#: crm/fcrm/pagetype/crm_organization/crm_organization.json msgid "Organization Logo" msgstr "Лого организације" -#. Label of the organization_name (Data) field in DocType 'CRM Deal' -#. Label of the organization_name (Data) field in DocType 'CRM Organization' -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_organization/crm_organization.json +#. Label of the organization_name (Data) field in PageType 'CRM Deal' +#. Label of the organization_name (Data) field in PageType 'CRM Organization' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_organization/crm_organization.json msgid "Organization Name" msgstr "Назив организације" @@ -4181,8 +4181,8 @@ msgstr "Назив организације" msgid "Organization logo" msgstr "Лого организације" -#. Label of a shortcut in the Frappe CRM Workspace -#: crm/fcrm/workspace/frappe_crm/frappe_crm.json +#. Label of a shortcut in the Jingrow CRM Workspace +#: crm/fcrm/workspace/jingrow_crm/jingrow_crm.json #: frontend/src/pages/MobileOrganization.vue:205 #: frontend/src/pages/Organization.vue:234 msgid "Organizations" @@ -4196,8 +4196,8 @@ msgstr "Организатор" msgid "Other features" msgstr "Остале функционалности" -#. Label of the organization_tab (Tab Break) field in DocType 'CRM Lead' -#: crm/fcrm/doctype/crm_lead/crm_lead.json +#. Label of the organization_tab (Tab Break) field in PageType 'CRM Lead' +#: crm/fcrm/pagetype/crm_lead/crm_lead.json msgid "Others" msgstr "Остало" @@ -4205,13 +4205,13 @@ msgstr "Остало" msgid "Outbound Call" msgstr "Одлазни позив" -#. Option for the 'Type' (Select) field in DocType 'CRM Call Log' -#: crm/fcrm/doctype/crm_call_log/crm_call_log.json +#. Option for the 'Type' (Select) field in PageType 'CRM Call Log' +#: crm/fcrm/pagetype/crm_call_log/crm_call_log.json msgid "Outgoing" msgstr "Одлазни" -#. Label of the log_owner (Link) field in DocType 'CRM Status Change Log' -#: crm/fcrm/doctype/crm_status_change_log/crm_status_change_log.json +#. Label of the log_owner (Link) field in PageType 'CRM Status Change Log' +#: crm/fcrm/pagetype/crm_status_change_log/crm_status_change_log.json msgid "Owner" msgstr "Власник" @@ -4219,8 +4219,8 @@ msgstr "Власник" msgid "Owner: {0}" msgstr "Власник: {0}" -#. Label of the parent_crm_territory (Link) field in DocType 'CRM Territory' -#: crm/fcrm/doctype/crm_territory/crm_territory.json +#. Label of the parent_crm_territory (Link) field in PageType 'CRM Territory' +#: crm/fcrm/pagetype/crm_territory/crm_territory.json msgid "Parent CRM Territory" msgstr "Матична CRM територија" @@ -4251,8 +4251,8 @@ msgstr "Подсетник за плаћање" msgid "Payment Reminder from Frappé - (#{{ name }})" msgstr "Подсетник за плаћање од Frappé - (#{{ name }})" -#. Option for the 'Status' (Select) field in DocType 'CRM Invitation' -#: crm/fcrm/doctype/crm_invitation/crm_invitation.json +#. Option for the 'Status' (Select) field in PageType 'CRM Invitation' +#: crm/fcrm/pagetype/crm_invitation/crm_invitation.json msgid "Pending" msgstr "На чекању" @@ -4264,10 +4264,10 @@ msgstr "Позиви на чекању" msgid "Period" msgstr "Период" -#. Label of the person_section (Section Break) field in DocType 'CRM Deal' -#. Label of the person_tab (Tab Break) field in DocType 'CRM Lead' -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_lead/crm_lead.json +#. Label of the person_section (Section Break) field in PageType 'CRM Deal' +#. Label of the person_tab (Tab Break) field in PageType 'CRM Lead' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_lead/crm_lead.json msgid "Person" msgstr "Особа" @@ -4275,19 +4275,19 @@ msgstr "Особа" msgid "Personal Settings" msgstr "Лична подешавања" -#. Label of the phone (Data) field in DocType 'CRM Contacts' -#. Label of the phone (Data) field in DocType 'CRM Lead' -#. Option for the 'Device' (Select) field in DocType 'CRM Telephony Agent' -#: crm/fcrm/doctype/crm_contacts/crm_contacts.json -#: crm/fcrm/doctype/crm_lead/crm_lead.json -#: crm/fcrm/doctype/crm_telephony_agent/crm_telephony_agent.json +#. Label of the phone (Data) field in PageType 'CRM Contacts' +#. Label of the phone (Data) field in PageType 'CRM Lead' +#. Option for the 'Device' (Select) field in PageType 'CRM Telephony Agent' +#: crm/fcrm/pagetype/crm_contacts/crm_contacts.json +#: crm/fcrm/pagetype/crm_lead/crm_lead.json +#: crm/fcrm/pagetype/crm_telephony_agent/crm_telephony_agent.json #: frontend/src/pages/MobileOrganization.vue:495 #: frontend/src/pages/Organization.vue:516 msgid "Phone" msgstr "Телефон" -#. Label of the phone_nos (Table) field in DocType 'CRM Telephony Agent' -#: crm/fcrm/doctype/crm_telephony_agent/crm_telephony_agent.json +#. Label of the phone_nos (Table) field in PageType 'CRM Telephony Agent' +#: crm/fcrm/pagetype/crm_telephony_agent/crm_telephony_agent.json msgid "Phone Numbers" msgstr "Бројеви телефона" @@ -4295,8 +4295,8 @@ msgstr "Бројеви телефона" msgid "Pin View" msgstr "Фиксирај приказ" -#. Label of the pinned (Check) field in DocType 'CRM View Settings' -#: crm/fcrm/doctype/crm_view_settings/crm_view_settings.json +#. Label of the pinned (Check) field in PageType 'CRM View Settings' +#: crm/fcrm/pagetype/crm_view_settings/crm_view_settings.json msgid "Pinned" msgstr "Фиксирано" @@ -4346,7 +4346,7 @@ msgstr "Молимо Вас да изаберете постојећи конт msgid "Please select an existing organization" msgstr "Молимо Вас да изаберете постојећу организацију" -#: crm/fcrm/doctype/helpdesk_crm_settings/helpdesk_crm_settings.py:126 +#: crm/fcrm/pagetype/helpdesk_crm_settings/helpdesk_crm_settings.py:126 msgid "Please set Email Address" msgstr "Молимо Вас да поставите имејл адресу" @@ -4354,18 +4354,18 @@ msgstr "Молимо Вас да поставите имејл адресу" msgid "Please setup Exotel intergration" msgstr "Молимо Вас да поставите Exotel интеграцију" -#: crm/fcrm/doctype/crm_deal/crm_deal.py:181 +#: crm/fcrm/pagetype/crm_deal/crm_deal.py:181 msgid "Please specify a reason for losing the deal." msgstr "Молимо Вас да наведете разлог губитка пословне прилике." -#: crm/fcrm/doctype/crm_deal/crm_deal.py:183 +#: crm/fcrm/pagetype/crm_deal/crm_deal.py:183 msgid "Please specify the reason for losing the deal." msgstr "Молимо Вас да прецизирате разлог губитка пословне прилике." -#. Label of the position (Int) field in DocType 'CRM Deal Status' -#. Label of the position (Int) field in DocType 'CRM Lead Status' -#: crm/fcrm/doctype/crm_deal_status/crm_deal_status.json -#: crm/fcrm/doctype/crm_lead_status/crm_lead_status.json +#. Label of the position (Int) field in PageType 'CRM Deal Status' +#. Label of the position (Int) field in PageType 'CRM Lead Status' +#: crm/fcrm/pagetype/crm_deal_status/crm_deal_status.json +#: crm/fcrm/pagetype/crm_lead_status/crm_lead_status.json msgid "Position" msgstr "Позиција" @@ -4373,18 +4373,18 @@ msgstr "Позиција" msgid "Primary" msgstr "Примарна" -#. Label of the email (Data) field in DocType 'CRM Deal' -#: crm/fcrm/doctype/crm_deal/crm_deal.json +#. Label of the email (Data) field in PageType 'CRM Deal' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json msgid "Primary Email" msgstr "Примарни имејл" -#. Label of the mobile_no (Data) field in DocType 'CRM Deal' -#: crm/fcrm/doctype/crm_deal/crm_deal.json +#. Label of the mobile_no (Data) field in PageType 'CRM Deal' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json msgid "Primary Mobile No" msgstr "Примарни број мобилног телефона" -#. Label of the phone (Data) field in DocType 'CRM Deal' -#: crm/fcrm/doctype/crm_deal/crm_deal.json +#. Label of the phone (Data) field in PageType 'CRM Deal' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json msgid "Primary Phone" msgstr "Примарни телефон" @@ -4392,57 +4392,57 @@ msgstr "Примарни телефон" msgid "Primary contact set" msgstr "Примарни контакт је постављен" -#. Label of the priorities (Table) field in DocType 'CRM Service Level +#. Label of the priorities (Table) field in PageType 'CRM Service Level #. Agreement' -#: crm/fcrm/doctype/crm_service_level_agreement/crm_service_level_agreement.json +#: crm/fcrm/pagetype/crm_service_level_agreement/crm_service_level_agreement.json msgid "Priorities" msgstr "Приоритети" -#. Label of the priority (Link) field in DocType 'CRM Service Level Priority' -#. Label of the priority (Select) field in DocType 'CRM Task' -#: crm/fcrm/doctype/crm_service_level_priority/crm_service_level_priority.json -#: crm/fcrm/doctype/crm_task/crm_task.json +#. Label of the priority (Link) field in PageType 'CRM Service Level Priority' +#. Label of the priority (Select) field in PageType 'CRM Task' +#: crm/fcrm/pagetype/crm_service_level_priority/crm_service_level_priority.json +#: crm/fcrm/pagetype/crm_task/crm_task.json #: frontend/src/components/Settings/AssignmentRules/AssignmentRuleView.vue:64 #: frontend/src/components/Settings/AssignmentRules/AssignmentRulesList.vue:20 msgid "Priority" msgstr "Приоритет" -#. Label of the private (Check) field in DocType 'CRM Dashboard' -#: crm/fcrm/doctype/crm_dashboard/crm_dashboard.json +#. Label of the private (Check) field in PageType 'CRM Dashboard' +#: crm/fcrm/pagetype/crm_dashboard/crm_dashboard.json #: frontend/src/components/FilesUploader/FilesUploaderArea.vue:89 msgid "Private" msgstr "Приватно" -#. Label of the probability (Percent) field in DocType 'CRM Deal' -#. Label of the probability (Percent) field in DocType 'CRM Deal Status' -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_deal_status/crm_deal_status.json +#. Label of the probability (Percent) field in PageType 'CRM Deal' +#. Label of the probability (Percent) field in PageType 'CRM Deal Status' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_deal_status/crm_deal_status.json msgid "Probability" msgstr "Вероватноћа" -#. Label of the product_code (Link) field in DocType 'CRM Products' -#: crm/fcrm/doctype/crm_products/crm_products.json +#. Label of the product_code (Link) field in PageType 'CRM Products' +#: crm/fcrm/pagetype/crm_products/crm_products.json msgid "Product" msgstr "Производ" -#. Label of the product_code (Data) field in DocType 'CRM Product' -#: crm/fcrm/doctype/crm_product/crm_product.json +#. Label of the product_code (Data) field in PageType 'CRM Product' +#: crm/fcrm/pagetype/crm_product/crm_product.json msgid "Product Code" msgstr "Шифра производа" -#. Label of the product_name (Data) field in DocType 'CRM Product' -#. Label of the product_name (Data) field in DocType 'CRM Products' -#: crm/fcrm/doctype/crm_product/crm_product.json -#: crm/fcrm/doctype/crm_products/crm_products.json +#. Label of the product_name (Data) field in PageType 'CRM Product' +#. Label of the product_name (Data) field in PageType 'CRM Products' +#: crm/fcrm/pagetype/crm_product/crm_product.json +#: crm/fcrm/pagetype/crm_products/crm_products.json msgid "Product Name" msgstr "Назив производа" -#. Label of the products_tab (Tab Break) field in DocType 'CRM Deal' -#. Label of the products (Table) field in DocType 'CRM Deal' -#. Label of the products_tab (Tab Break) field in DocType 'CRM Lead' -#. Label of the products (Table) field in DocType 'CRM Lead' -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_lead/crm_lead.json +#. Label of the products_tab (Tab Break) field in PageType 'CRM Deal' +#. Label of the products (Table) field in PageType 'CRM Deal' +#. Label of the products_tab (Tab Break) field in PageType 'CRM Lead' +#. Label of the products (Table) field in PageType 'CRM Lead' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_lead/crm_lead.json msgid "Products" msgstr "Производи" @@ -4459,8 +4459,8 @@ msgstr "Профил је успешно ажуриран" msgid "Projected vs actual revenue based on deal probability" msgstr "Очекивани наспрам стварних прихода на основу вероватноће пословне прилике" -#. Label of the public (Check) field in DocType 'CRM View Settings' -#: crm/fcrm/doctype/crm_view_settings/crm_view_settings.json +#. Label of the public (Check) field in PageType 'CRM View Settings' +#: crm/fcrm/pagetype/crm_view_settings/crm_view_settings.json msgid "Public" msgstr "Јавни" @@ -4472,23 +4472,23 @@ msgstr "Јавни прикази" msgid "Public view" msgstr "Јавни приказ" -#. Label of the qty (Float) field in DocType 'CRM Products' -#: crm/fcrm/doctype/crm_products/crm_products.json +#. Label of the qty (Float) field in PageType 'CRM Products' +#: crm/fcrm/pagetype/crm_products/crm_products.json msgid "Quantity" msgstr "Количина" -#. Option for the 'Status' (Select) field in DocType 'CRM Call Log' -#: crm/fcrm/doctype/crm_call_log/crm_call_log.json +#. Option for the 'Status' (Select) field in PageType 'CRM Call Log' +#: crm/fcrm/pagetype/crm_call_log/crm_call_log.json msgid "Queued" msgstr "У реду" -#. Option for the 'Type' (Select) field in DocType 'CRM Fields Layout' -#: crm/fcrm/doctype/crm_fields_layout/crm_fields_layout.json +#. Option for the 'Type' (Select) field in PageType 'CRM Fields Layout' +#: crm/fcrm/pagetype/crm_fields_layout/crm_fields_layout.json msgid "Quick Entry" msgstr "Брзи унос" -#. Option for the 'Type' (Select) field in DocType 'CRM Global Settings' -#: crm/fcrm/doctype/crm_global_settings/crm_global_settings.json +#. Option for the 'Type' (Select) field in PageType 'CRM Global Settings' +#: crm/fcrm/pagetype/crm_global_settings/crm_global_settings.json msgid "Quick Filters" msgstr "Брзи филтери" @@ -4500,13 +4500,13 @@ msgstr "Брзи филтери су успешно ажурирани" msgid "Quick entry layout" msgstr "Распоред за брзи унос" -#. Label of the rate (Currency) field in DocType 'CRM Products' -#: crm/fcrm/doctype/crm_products/crm_products.json +#. Label of the rate (Currency) field in PageType 'CRM Products' +#: crm/fcrm/pagetype/crm_products/crm_products.json msgid "Rate" msgstr "Јединична цена" -#. Label of the read (Check) field in DocType 'CRM Notification' -#: crm/fcrm/doctype/crm_notification/crm_notification.json +#. Label of the read (Check) field in PageType 'CRM Notification' +#: crm/fcrm/pagetype/crm_notification/crm_notification.json msgid "Read" msgstr "Прочитано" @@ -4514,48 +4514,48 @@ msgstr "Прочитано" msgid "Reason" msgstr "Разлог" -#. Label of the record_calls (Check) field in DocType 'CRM Twilio Settings' -#: crm/fcrm/doctype/crm_twilio_settings/crm_twilio_settings.json +#. Label of the record_calls (Check) field in PageType 'CRM Twilio Settings' +#: crm/fcrm/pagetype/crm_twilio_settings/crm_twilio_settings.json msgid "Record Calls" msgstr "Забележи позиве" -#. Label of the record_call (Check) field in DocType 'CRM Exotel Settings' -#: crm/fcrm/doctype/crm_exotel_settings/crm_exotel_settings.json +#. Label of the record_call (Check) field in PageType 'CRM Exotel Settings' +#: crm/fcrm/pagetype/crm_exotel_settings/crm_exotel_settings.json msgid "Record Outgoing Calls" msgstr "Забележи одлазне позиве" -#. Label of the recording_url (Data) field in DocType 'CRM Call Log' -#: crm/fcrm/doctype/crm_call_log/crm_call_log.json +#. Label of the recording_url (Data) field in PageType 'CRM Call Log' +#: crm/fcrm/pagetype/crm_call_log/crm_call_log.json msgid "Recording URL" msgstr "Забележити URL" -#. Label of the reference_name (Dynamic Link) field in DocType 'CRM +#. Label of the reference_name (Dynamic Link) field in PageType 'CRM #. Notification' -#. Label of the reference_docname (Dynamic Link) field in DocType 'CRM Task' -#. Label of the reference_docname (Dynamic Link) field in DocType 'FCRM Note' -#: crm/fcrm/doctype/crm_notification/crm_notification.json -#: crm/fcrm/doctype/crm_task/crm_task.json -#: crm/fcrm/doctype/fcrm_note/fcrm_note.json -msgid "Reference Doc" +#. Label of the reference_docname (Dynamic Link) field in PageType 'CRM Task' +#. Label of the reference_docname (Dynamic Link) field in PageType 'FCRM Note' +#: crm/fcrm/pagetype/crm_notification/crm_notification.json +#: crm/fcrm/pagetype/crm_task/crm_task.json +#: crm/fcrm/pagetype/fcrm_note/fcrm_note.json +msgid "Reference Pg" msgstr "Референца документа" -#. Label of the reference_doctype (Link) field in DocType 'CRM Notification' -#: crm/fcrm/doctype/crm_notification/crm_notification.json -msgid "Reference Doctype" -msgstr "DocType референца" +#. Label of the reference_pagetype (Link) field in PageType 'CRM Notification' +#: crm/fcrm/pagetype/crm_notification/crm_notification.json +msgid "Reference Pagetype" +msgstr "PageType референца" -#. Label of the reference_doctype (Link) field in DocType 'CRM Call Log' -#. Label of the reference_doctype (Link) field in DocType 'CRM Task' -#. Label of the reference_doctype (Link) field in DocType 'FCRM Note' -#: crm/fcrm/doctype/crm_call_log/crm_call_log.json -#: crm/fcrm/doctype/crm_task/crm_task.json -#: crm/fcrm/doctype/fcrm_note/fcrm_note.json +#. Label of the reference_pagetype (Link) field in PageType 'CRM Call Log' +#. Label of the reference_pagetype (Link) field in PageType 'CRM Task' +#. Label of the reference_pagetype (Link) field in PageType 'FCRM Note' +#: crm/fcrm/pagetype/crm_call_log/crm_call_log.json +#: crm/fcrm/pagetype/crm_task/crm_task.json +#: crm/fcrm/pagetype/fcrm_note/fcrm_note.json msgid "Reference Document Type" msgstr "Врста референтног документа" -#. Label of the reference_docname (Dynamic Link) field in DocType 'CRM Call +#. Label of the reference_docname (Dynamic Link) field in PageType 'CRM Call #. Log' -#: crm/fcrm/doctype/crm_call_log/crm_call_log.json +#: crm/fcrm/pagetype/crm_call_log/crm_call_log.json msgid "Reference Name" msgstr "Назив референце" @@ -4625,8 +4625,8 @@ msgstr "Одговори свима" msgid "Report an Issue" msgstr "Пријави проблем" -#. Option for the 'Type' (Select) field in DocType 'CRM Fields Layout' -#: crm/fcrm/doctype/crm_fields_layout/crm_fields_layout.json +#. Option for the 'Type' (Select) field in PageType 'CRM Fields Layout' +#: crm/fcrm/pagetype/crm_fields_layout/crm_fields_layout.json msgid "Required Fields" msgstr "Обавезна поља" @@ -4642,7 +4642,7 @@ msgstr "Ресетуј" msgid "Reset Changes" msgstr "Ресетуј измене" -#: crm/fcrm/doctype/erpnext_crm_settings/erpnext_crm_settings.js:7 +#: crm/fcrm/pagetype/erpnext_crm_settings/erpnext_crm_settings.js:7 msgid "Reset ERPNext Form Script" msgstr "Ресетуј ERPNext скрипту обрасца" @@ -4654,35 +4654,35 @@ msgstr "Ресетуј на подразумевано" msgid "Reset to default" msgstr "Врати на подразумевано" -#. Label of the response_by (Datetime) field in DocType 'CRM Deal' -#. Label of the response_by (Datetime) field in DocType 'CRM Lead' -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_lead/crm_lead.json +#. Label of the response_by (Datetime) field in PageType 'CRM Deal' +#. Label of the response_by (Datetime) field in PageType 'CRM Lead' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_lead/crm_lead.json msgid "Response By" msgstr "Одговорио" -#. Label of the response_details_section (Section Break) field in DocType 'CRM +#. Label of the response_details_section (Section Break) field in PageType 'CRM #. Deal' -#. Label of the response_details_section (Section Break) field in DocType 'CRM +#. Label of the response_details_section (Section Break) field in PageType 'CRM #. Lead' -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_lead/crm_lead.json +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_lead/crm_lead.json msgid "Response Details" msgstr "Детаљи одговора" -#. Label of the section_break_ufaf (Section Break) field in DocType 'CRM +#. Label of the section_break_ufaf (Section Break) field in PageType 'CRM #. Service Level Agreement' -#: crm/fcrm/doctype/crm_service_level_agreement/crm_service_level_agreement.json +#: crm/fcrm/pagetype/crm_service_level_agreement/crm_service_level_agreement.json msgid "Response and Follow Up" msgstr "Одговор и праћење" -#: crm/fcrm/doctype/fcrm_settings/fcrm_settings.js:14 +#: crm/fcrm/pagetype/fcrm_settings/fcrm_settings.js:14 msgid "Restore" msgstr "Врати" -#. Label of the restore_defaults (Button) field in DocType 'FCRM Settings' -#: crm/fcrm/doctype/fcrm_settings/fcrm_settings.js:13 -#: crm/fcrm/doctype/fcrm_settings/fcrm_settings.json +#. Label of the restore_defaults (Button) field in PageType 'FCRM Settings' +#: crm/fcrm/pagetype/fcrm_settings/fcrm_settings.js:13 +#: crm/fcrm/pagetype/fcrm_settings/fcrm_settings.json msgid "Restore Defaults" msgstr "Врати подразумевано" @@ -4699,13 +4699,13 @@ msgstr "Приход" msgid "Rich Text" msgstr "Богати текст" -#. Label of the rgt (Int) field in DocType 'CRM Territory' -#: crm/fcrm/doctype/crm_territory/crm_territory.json +#. Label of the rgt (Int) field in PageType 'CRM Territory' +#: crm/fcrm/pagetype/crm_territory/crm_territory.json msgid "Right" msgstr "Десно" -#. Option for the 'Status' (Select) field in DocType 'CRM Call Log' -#: crm/fcrm/doctype/crm_call_log/crm_call_log.json +#. Option for the 'Status' (Select) field in PageType 'CRM Call Log' +#: crm/fcrm/pagetype/crm_call_log/crm_call_log.json msgid "Ringing" msgstr "Звоњење" @@ -4714,55 +4714,55 @@ msgstr "Звоњење" msgid "Ringing..." msgstr "Звоњење..." -#. Label of the role (Select) field in DocType 'CRM Invitation' -#: crm/fcrm/doctype/crm_invitation/crm_invitation.json +#. Label of the role (Select) field in PageType 'CRM Invitation' +#: crm/fcrm/pagetype/crm_invitation/crm_invitation.json #: frontend/src/components/Modals/AddExistingUserModal.vue:46 msgid "Role" msgstr "Улога" -#. Option for the 'Type' (Select) field in DocType 'CRM Dropdown Item' -#. Label of the route (Data) field in DocType 'CRM Dropdown Item' -#: crm/fcrm/doctype/crm_dropdown_item/crm_dropdown_item.json +#. Option for the 'Type' (Select) field in PageType 'CRM Dropdown Item' +#. Label of the route (Data) field in PageType 'CRM Dropdown Item' +#: crm/fcrm/pagetype/crm_dropdown_item/crm_dropdown_item.json msgid "Route" msgstr "Путања" -#. Label of the route_name (Data) field in DocType 'CRM View Settings' -#: crm/fcrm/doctype/crm_view_settings/crm_view_settings.json +#. Label of the route_name (Data) field in PageType 'CRM View Settings' +#: crm/fcrm/pagetype/crm_view_settings/crm_view_settings.json msgid "Route Name" msgstr "Назив путање" -#. Label of the rows (Code) field in DocType 'CRM View Settings' -#: crm/fcrm/doctype/crm_view_settings/crm_view_settings.json +#. Label of the rows (Code) field in PageType 'CRM View Settings' +#: crm/fcrm/pagetype/crm_view_settings/crm_view_settings.json msgid "Rows" msgstr "Редови" -#. Label of the sla_tab (Tab Break) field in DocType 'CRM Deal' -#. Label of the sla (Link) field in DocType 'CRM Deal' -#. Label of the sla_tab (Tab Break) field in DocType 'CRM Lead' -#. Label of the sla (Link) field in DocType 'CRM Lead' -#. Label of a shortcut in the Frappe CRM Workspace -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_lead/crm_lead.json -#: crm/fcrm/workspace/frappe_crm/frappe_crm.json +#. Label of the sla_tab (Tab Break) field in PageType 'CRM Deal' +#. Label of the sla (Link) field in PageType 'CRM Deal' +#. Label of the sla_tab (Tab Break) field in PageType 'CRM Lead' +#. Label of the sla (Link) field in PageType 'CRM Lead' +#. Label of a shortcut in the Jingrow CRM Workspace +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_lead/crm_lead.json +#: crm/fcrm/workspace/jingrow_crm/jingrow_crm.json msgid "SLA" msgstr "Споразум о нивоу услуге" -#. Label of the sla_creation (Datetime) field in DocType 'CRM Deal' -#. Label of the sla_creation (Datetime) field in DocType 'CRM Lead' -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_lead/crm_lead.json +#. Label of the sla_creation (Datetime) field in PageType 'CRM Deal' +#. Label of the sla_creation (Datetime) field in PageType 'CRM Lead' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_lead/crm_lead.json msgid "SLA Creation" msgstr "Креирање споразума о нивоу услуге" -#. Label of the sla_name (Data) field in DocType 'CRM Service Level Agreement' -#: crm/fcrm/doctype/crm_service_level_agreement/crm_service_level_agreement.json +#. Label of the sla_name (Data) field in PageType 'CRM Service Level Agreement' +#: crm/fcrm/pagetype/crm_service_level_agreement/crm_service_level_agreement.json msgid "SLA Name" msgstr "Назив споразума о нивоу услуге" -#. Label of the sla_status (Select) field in DocType 'CRM Deal' -#. Label of the sla_status (Select) field in DocType 'CRM Lead' -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_lead/crm_lead.json +#. Label of the sla_status (Select) field in PageType 'CRM Deal' +#. Label of the sla_status (Select) field in PageType 'CRM Lead' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_lead/crm_lead.json msgid "SLA Status" msgstr "Статус споразума о нивоу услуге" @@ -4771,57 +4771,57 @@ msgid "SUBJECT" msgstr "НАСЛОВ" #. Name of a role -#. Option for the 'Role' (Select) field in DocType 'CRM Invitation' -#: crm/fcrm/doctype/crm_call_log/crm_call_log.json -#: crm/fcrm/doctype/crm_communication_status/crm_communication_status.json -#: crm/fcrm/doctype/crm_dashboard/crm_dashboard.json -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_deal_status/crm_deal_status.json -#: crm/fcrm/doctype/crm_exotel_settings/crm_exotel_settings.json -#: crm/fcrm/doctype/crm_form_script/crm_form_script.json -#: crm/fcrm/doctype/crm_global_settings/crm_global_settings.json -#: crm/fcrm/doctype/crm_holiday_list/crm_holiday_list.json -#: crm/fcrm/doctype/crm_industry/crm_industry.json -#: crm/fcrm/doctype/crm_invitation/crm_invitation.json -#: crm/fcrm/doctype/crm_lead/crm_lead.json -#: crm/fcrm/doctype/crm_lead_source/crm_lead_source.json -#: crm/fcrm/doctype/crm_lead_status/crm_lead_status.json -#: crm/fcrm/doctype/crm_lost_reason/crm_lost_reason.json -#: crm/fcrm/doctype/crm_notification/crm_notification.json -#: crm/fcrm/doctype/crm_organization/crm_organization.json -#: crm/fcrm/doctype/crm_service_level_agreement/crm_service_level_agreement.json -#: crm/fcrm/doctype/crm_task/crm_task.json -#: crm/fcrm/doctype/crm_territory/crm_territory.json -#: crm/fcrm/doctype/crm_twilio_settings/crm_twilio_settings.json -#: crm/fcrm/doctype/crm_view_settings/crm_view_settings.json -#: crm/fcrm/doctype/erpnext_crm_settings/erpnext_crm_settings.json -#: crm/fcrm/doctype/fcrm_note/fcrm_note.json -#: crm/fcrm/doctype/fcrm_settings/fcrm_settings.json -#: crm/fcrm/doctype/helpdesk_crm_settings/helpdesk_crm_settings.json +#. Option for the 'Role' (Select) field in PageType 'CRM Invitation' +#: crm/fcrm/pagetype/crm_call_log/crm_call_log.json +#: crm/fcrm/pagetype/crm_communication_status/crm_communication_status.json +#: crm/fcrm/pagetype/crm_dashboard/crm_dashboard.json +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_deal_status/crm_deal_status.json +#: crm/fcrm/pagetype/crm_exotel_settings/crm_exotel_settings.json +#: crm/fcrm/pagetype/crm_form_script/crm_form_script.json +#: crm/fcrm/pagetype/crm_global_settings/crm_global_settings.json +#: crm/fcrm/pagetype/crm_holiday_list/crm_holiday_list.json +#: crm/fcrm/pagetype/crm_industry/crm_industry.json +#: crm/fcrm/pagetype/crm_invitation/crm_invitation.json +#: crm/fcrm/pagetype/crm_lead/crm_lead.json +#: crm/fcrm/pagetype/crm_lead_source/crm_lead_source.json +#: crm/fcrm/pagetype/crm_lead_status/crm_lead_status.json +#: crm/fcrm/pagetype/crm_lost_reason/crm_lost_reason.json +#: crm/fcrm/pagetype/crm_notification/crm_notification.json +#: crm/fcrm/pagetype/crm_organization/crm_organization.json +#: crm/fcrm/pagetype/crm_service_level_agreement/crm_service_level_agreement.json +#: crm/fcrm/pagetype/crm_task/crm_task.json +#: crm/fcrm/pagetype/crm_territory/crm_territory.json +#: crm/fcrm/pagetype/crm_twilio_settings/crm_twilio_settings.json +#: crm/fcrm/pagetype/crm_view_settings/crm_view_settings.json +#: crm/fcrm/pagetype/erpnext_crm_settings/erpnext_crm_settings.json +#: crm/fcrm/pagetype/fcrm_note/fcrm_note.json +#: crm/fcrm/pagetype/fcrm_settings/fcrm_settings.json +#: crm/fcrm/pagetype/helpdesk_crm_settings/helpdesk_crm_settings.json msgid "Sales Manager" msgstr "Менаџер продаје" #. Name of a role -#. Option for the 'Role' (Select) field in DocType 'CRM Invitation' -#: crm/fcrm/doctype/crm_call_log/crm_call_log.json -#: crm/fcrm/doctype/crm_communication_status/crm_communication_status.json -#: crm/fcrm/doctype/crm_dashboard/crm_dashboard.json -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_deal_status/crm_deal_status.json -#: crm/fcrm/doctype/crm_global_settings/crm_global_settings.json -#: crm/fcrm/doctype/crm_holiday_list/crm_holiday_list.json -#: crm/fcrm/doctype/crm_industry/crm_industry.json -#: crm/fcrm/doctype/crm_invitation/crm_invitation.json -#: crm/fcrm/doctype/crm_lead/crm_lead.json -#: crm/fcrm/doctype/crm_lead_source/crm_lead_source.json -#: crm/fcrm/doctype/crm_lead_status/crm_lead_status.json -#: crm/fcrm/doctype/crm_lost_reason/crm_lost_reason.json -#: crm/fcrm/doctype/crm_notification/crm_notification.json -#: crm/fcrm/doctype/crm_organization/crm_organization.json -#: crm/fcrm/doctype/crm_task/crm_task.json -#: crm/fcrm/doctype/crm_territory/crm_territory.json -#: crm/fcrm/doctype/crm_view_settings/crm_view_settings.json -#: crm/fcrm/doctype/fcrm_note/fcrm_note.json +#. Option for the 'Role' (Select) field in PageType 'CRM Invitation' +#: crm/fcrm/pagetype/crm_call_log/crm_call_log.json +#: crm/fcrm/pagetype/crm_communication_status/crm_communication_status.json +#: crm/fcrm/pagetype/crm_dashboard/crm_dashboard.json +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_deal_status/crm_deal_status.json +#: crm/fcrm/pagetype/crm_global_settings/crm_global_settings.json +#: crm/fcrm/pagetype/crm_holiday_list/crm_holiday_list.json +#: crm/fcrm/pagetype/crm_industry/crm_industry.json +#: crm/fcrm/pagetype/crm_invitation/crm_invitation.json +#: crm/fcrm/pagetype/crm_lead/crm_lead.json +#: crm/fcrm/pagetype/crm_lead_source/crm_lead_source.json +#: crm/fcrm/pagetype/crm_lead_status/crm_lead_status.json +#: crm/fcrm/pagetype/crm_lost_reason/crm_lost_reason.json +#: crm/fcrm/pagetype/crm_notification/crm_notification.json +#: crm/fcrm/pagetype/crm_organization/crm_organization.json +#: crm/fcrm/pagetype/crm_task/crm_task.json +#: crm/fcrm/pagetype/crm_territory/crm_territory.json +#: crm/fcrm/pagetype/crm_view_settings/crm_view_settings.json +#: crm/fcrm/pagetype/fcrm_note/fcrm_note.json #: frontend/src/components/Modals/AddExistingUserModal.vue:92 #: frontend/src/components/Settings/InviteUserPage.vue:156 #: frontend/src/components/Settings/InviteUserPage.vue:163 @@ -4845,17 +4845,17 @@ msgstr "Корисник продаје" msgid "Salesperson" msgstr "Продавац" -#. Label of the salutation (Link) field in DocType 'CRM Deal' -#. Label of the salutation (Link) field in DocType 'CRM Lead' -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_lead/crm_lead.json +#. Label of the salutation (Link) field in PageType 'CRM Deal' +#. Label of the salutation (Link) field in PageType 'CRM Lead' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_lead/crm_lead.json msgid "Salutation" msgstr "Поздрав" -#. Option for the 'Weekly Off' (Select) field in DocType 'CRM Holiday List' -#. Option for the 'Workday' (Select) field in DocType 'CRM Service Day' -#: crm/fcrm/doctype/crm_holiday_list/crm_holiday_list.json -#: crm/fcrm/doctype/crm_service_day/crm_service_day.json +#. Option for the 'Weekly Off' (Select) field in PageType 'CRM Holiday List' +#. Option for the 'Workday' (Select) field in PageType 'CRM Service Day' +#: crm/fcrm/pagetype/crm_holiday_list/crm_holiday_list.json +#: crm/fcrm/pagetype/crm_service_day/crm_service_day.json msgid "Saturday" msgstr "Субота" @@ -4904,8 +4904,8 @@ msgstr "Закажи догађај" msgid "Schedule an event" msgstr "Закажи догађај" -#. Label of the script (Code) field in DocType 'CRM Form Script' -#: crm/fcrm/doctype/crm_form_script/crm_form_script.json +#. Label of the script (Code) field in PageType 'CRM Form Script' +#: crm/fcrm/pagetype/crm_form_script/crm_form_script.json msgid "Script" msgstr "Скрипта" @@ -4973,18 +4973,18 @@ msgstr "Пошаљи имејл" msgid "Send invites to" msgstr "Пошаљи позивнице за" -#. Option for the 'Type' (Select) field in DocType 'CRM Dropdown Item' -#: crm/fcrm/doctype/crm_dropdown_item/crm_dropdown_item.json +#. Option for the 'Type' (Select) field in PageType 'CRM Dropdown Item' +#: crm/fcrm/pagetype/crm_dropdown_item/crm_dropdown_item.json msgid "Separator" msgstr "Сепаратор" -#. Label of the naming_series (Select) field in DocType 'CRM Lead' -#: crm/fcrm/doctype/crm_lead/crm_lead.json +#. Label of the naming_series (Select) field in PageType 'CRM Lead' +#: crm/fcrm/pagetype/crm_lead/crm_lead.json msgid "Series" msgstr "Серија" -#. Label of the service_provider (Select) field in DocType 'FCRM Settings' -#: crm/fcrm/doctype/fcrm_settings/fcrm_settings.json +#. Label of the service_provider (Select) field in PageType 'FCRM Settings' +#: crm/fcrm/pagetype/fcrm_settings/fcrm_settings.json msgid "Service Provider" msgstr "Пружалац услуге" @@ -5029,8 +5029,8 @@ msgid "Setting up" msgstr "Подешавање" #: frontend/src/components/Settings/emailConfig.js:145 -msgid "Setting up Frappe Mail requires you to have an API key and API Secret of your email account. Read more " -msgstr "Подешавање Frappe Mail захтева да имате API кључ и API тајну за свој имејл налог. Сазнајте више " +msgid "Setting up Jingrow Mail requires you to have an API key and API Secret of your email account. Read more " +msgstr "Подешавање Jingrow Mail захтева да имате API кључ и API тајну за свој имејл налог. Сазнајте више " #: frontend/src/components/Settings/emailConfig.js:97 msgid "Setting up GMail requires you to enable two factor authentication\n" @@ -5062,8 +5062,8 @@ msgid "Setting up Yandex requires you to enable two factor authentication\n" "\t\t and app specific passwords. Read more " msgstr "Подешавање Yandex-a захтева укључивање двофакторске аутентификације и лозинки за специфичне апликације. Сазнајте више " -#. Label of the defaults_tab (Tab Break) field in DocType 'FCRM Settings' -#: crm/fcrm/doctype/fcrm_settings/fcrm_settings.json +#. Label of the defaults_tab (Tab Break) field in PageType 'FCRM Settings' +#: crm/fcrm/pagetype/fcrm_settings/fcrm_settings.json #: frontend/src/components/Layouts/AppSidebar.vue:537 #: frontend/src/components/Settings/Settings.vue:12 msgid "Settings" @@ -5073,7 +5073,7 @@ msgstr "Подешавања" msgid "Setup Email" msgstr "Подесите имејл" -#: crm/fcrm/doctype/fcrm_settings/fcrm_settings.py:199 +#: crm/fcrm/pagetype/fcrm_settings/fcrm_settings.py:199 msgid "Setup the Exchange Rate Provider as 'Exchangerate Host' in settings, as default provider does not support currency conversion for {0} to {1}." msgstr "Подесите провајдера девизних курсева као 'Exchangerate Host' у подешавањима, јер подразумевани провајдер не подржава конверзију валута из {0} у {1}." @@ -5108,21 +5108,21 @@ msgstr "Прикажи мање" msgid "Show preview" msgstr "Прикажи приказ" -#. Option for the 'Type' (Select) field in DocType 'CRM Fields Layout' -#: crm/fcrm/doctype/crm_fields_layout/crm_fields_layout.json +#. Option for the 'Type' (Select) field in PageType 'CRM Fields Layout' +#: crm/fcrm/pagetype/crm_fields_layout/crm_fields_layout.json msgid "Side Panel" msgstr "Бочни панел" -#. Option for the 'Type' (Select) field in DocType 'CRM Global Settings' -#: crm/fcrm/doctype/crm_global_settings/crm_global_settings.json +#. Option for the 'Type' (Select) field in PageType 'CRM Global Settings' +#: crm/fcrm/pagetype/crm_global_settings/crm_global_settings.json msgid "Sidebar Items" msgstr "Ставке бочне траке" -#. Description of the 'Condition' (Code) field in DocType 'CRM Service Level +#. Description of the 'Condition' (Code) field in PageType 'CRM Service Level #. Agreement' -#: crm/fcrm/doctype/crm_service_level_agreement/crm_service_level_agreement.json -msgid "Simple Python Expression, Example: doc.status == 'Open' and doc.lead_source == 'Ads'" -msgstr "Једноставан python израз, на пример: doc.status == 'Open' and doc.lead_source == 'Ads'" +#: crm/fcrm/pagetype/crm_service_level_agreement/crm_service_level_agreement.json +msgid "Simple Python Expression, Example: pg.status == 'Open' and pg.lead_source == 'Ads'" +msgstr "Једноставан python израз, на пример: pg.status == 'Open' and pg.lead_source == 'Ads'" #: frontend/src/components/AssignTo.vue:83 msgid "Since you removed {0} from the assignee, the {0} has also been removed." @@ -5145,16 +5145,16 @@ msgstr "Дошло је до грешке при ажурирању правил msgid "Sort" msgstr "Сортирај" -#. Label of the source (Link) field in DocType 'CRM Deal' -#. Label of the source (Link) field in DocType 'CRM Lead' -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_lead/crm_lead.json +#. Label of the source (Link) field in PageType 'CRM Deal' +#. Label of the source (Link) field in PageType 'CRM Lead' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_lead/crm_lead.json #: frontend/src/components/Modals/EditValueModal.vue:10 msgid "Source" msgstr "Извор" -#. Label of the source_name (Data) field in DocType 'CRM Lead Source' -#: crm/fcrm/doctype/crm_lead_source/crm_lead_source.json +#. Label of the source_name (Data) field in PageType 'CRM Lead Source' +#: crm/fcrm/pagetype/crm_lead_source/crm_lead_source.json msgid "Source Name" msgstr "Назив извора" @@ -5167,12 +5167,12 @@ msgstr "Размак" msgid "Stage" msgstr "Фаза" -#: crm/fcrm/doctype/crm_form_script/crm_form_script.js:15 +#: crm/fcrm/pagetype/crm_form_script/crm_form_script.js:15 msgid "Standard Form Scripts can not be modified, duplicate the Form Script instead." msgstr "Стандардне скрипте обрасца не могу да се мењају, уместо тога неопходан је дупликат скрипти." -#. Label of the standard_rate (Currency) field in DocType 'CRM Product' -#: crm/fcrm/doctype/crm_product/crm_product.json +#. Label of the standard_rate (Currency) field in PageType 'CRM Product' +#: crm/fcrm/pagetype/crm_product/crm_product.json msgid "Standard Selling Rate" msgstr "Стандардна продајна цена" @@ -5180,18 +5180,18 @@ msgstr "Стандардна продајна цена" msgid "Standard Views" msgstr "Стандардни прикази" -#. Label of the start_date (Date) field in DocType 'CRM Service Level +#. Label of the start_date (Date) field in PageType 'CRM Service Level #. Agreement' -#. Label of the start_date (Date) field in DocType 'CRM Task' -#: crm/fcrm/doctype/crm_service_level_agreement/crm_service_level_agreement.json -#: crm/fcrm/doctype/crm_task/crm_task.json +#. Label of the start_date (Date) field in PageType 'CRM Task' +#: crm/fcrm/pagetype/crm_service_level_agreement/crm_service_level_agreement.json +#: crm/fcrm/pagetype/crm_task/crm_task.json msgid "Start Date" msgstr "Датум почетка" -#. Label of the start_time (Datetime) field in DocType 'CRM Call Log' -#. Label of the start_time (Time) field in DocType 'CRM Service Day' -#: crm/fcrm/doctype/crm_call_log/crm_call_log.json -#: crm/fcrm/doctype/crm_service_day/crm_service_day.json +#. Label of the start_time (Datetime) field in PageType 'CRM Call Log' +#. Label of the start_time (Time) field in PageType 'CRM Service Day' +#: crm/fcrm/pagetype/crm_call_log/crm_call_log.json +#: crm/fcrm/pagetype/crm_service_day/crm_service_day.json #: frontend/src/components/Calendar/CalendarEventPanel.vue:234 #: frontend/src/components/Modals/EventModal.vue:103 msgid "Start Time" @@ -5205,32 +5205,32 @@ msgstr "Време почетка и завршетка су обавезни" msgid "Start with sample 10 leads" msgstr "Започни са 10 пробних потенцијалних клијената" -#. Label of the status (Select) field in DocType 'CRM Call Log' -#. Label of the status (Data) field in DocType 'CRM Communication Status' -#. Label of the status (Link) field in DocType 'CRM Deal' -#. Label of the deal_status (Data) field in DocType 'CRM Deal Status' -#. Label of the status (Select) field in DocType 'CRM Invitation' -#. Label of the status (Link) field in DocType 'CRM Lead' -#. Label of the lead_status (Data) field in DocType 'CRM Lead Status' -#. Label of the status (Select) field in DocType 'CRM Task' -#: crm/fcrm/doctype/crm_call_log/crm_call_log.json -#: crm/fcrm/doctype/crm_communication_status/crm_communication_status.json -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_deal_status/crm_deal_status.json -#: crm/fcrm/doctype/crm_invitation/crm_invitation.json -#: crm/fcrm/doctype/crm_lead/crm_lead.json -#: crm/fcrm/doctype/crm_lead_status/crm_lead_status.json -#: crm/fcrm/doctype/crm_task/crm_task.json frontend/src/pages/Contact.vue:505 +#. Label of the status (Select) field in PageType 'CRM Call Log' +#. Label of the status (Data) field in PageType 'CRM Communication Status' +#. Label of the status (Link) field in PageType 'CRM Deal' +#. Label of the deal_status (Data) field in PageType 'CRM Deal Status' +#. Label of the status (Select) field in PageType 'CRM Invitation' +#. Label of the status (Link) field in PageType 'CRM Lead' +#. Label of the lead_status (Data) field in PageType 'CRM Lead Status' +#. Label of the status (Select) field in PageType 'CRM Task' +#: crm/fcrm/pagetype/crm_call_log/crm_call_log.json +#: crm/fcrm/pagetype/crm_communication_status/crm_communication_status.json +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_deal_status/crm_deal_status.json +#: crm/fcrm/pagetype/crm_invitation/crm_invitation.json +#: crm/fcrm/pagetype/crm_lead/crm_lead.json +#: crm/fcrm/pagetype/crm_lead_status/crm_lead_status.json +#: crm/fcrm/pagetype/crm_task/crm_task.json frontend/src/pages/Contact.vue:505 #: frontend/src/pages/MobileContact.vue:513 #: frontend/src/pages/MobileOrganization.vue:457 #: frontend/src/pages/Organization.vue:478 msgid "Status" msgstr "Статус" -#. Label of the status_change_log (Table) field in DocType 'CRM Deal' -#. Label of the status_change_log (Table) field in DocType 'CRM Lead' -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_lead/crm_lead.json +#. Label of the status_change_log (Table) field in PageType 'CRM Deal' +#. Label of the status_change_log (Table) field in PageType 'CRM Lead' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_lead/crm_lead.json msgid "Status Change Log" msgstr "Евиденција промена статуса" @@ -5239,8 +5239,8 @@ msgstr "Евиденција промена статуса" msgid "Status is required" msgstr "Статус је обавезан" -#. Label of the subdomain (Data) field in DocType 'CRM Exotel Settings' -#: crm/fcrm/doctype/crm_exotel_settings/crm_exotel_settings.json +#. Label of the subdomain (Data) field in PageType 'CRM Exotel Settings' +#: crm/fcrm/pagetype/crm_exotel_settings/crm_exotel_settings.json msgid "Subdomain" msgstr "Поддомен" @@ -5258,10 +5258,10 @@ msgstr "Наслов је неопходан" msgid "Subject: {0}" msgstr "Наслов: {0}" -#. Option for the 'Weekly Off' (Select) field in DocType 'CRM Holiday List' -#. Option for the 'Workday' (Select) field in DocType 'CRM Service Day' -#: crm/fcrm/doctype/crm_holiday_list/crm_holiday_list.json -#: crm/fcrm/doctype/crm_service_day/crm_service_day.json +#. Option for the 'Weekly Off' (Select) field in PageType 'CRM Holiday List' +#. Option for the 'Workday' (Select) field in PageType 'CRM Service Day' +#: crm/fcrm/pagetype/crm_holiday_list/crm_holiday_list.json +#: crm/fcrm/pagetype/crm_service_day/crm_service_day.json msgid "Sunday" msgstr "Недеља" @@ -5282,21 +5282,21 @@ msgid "System Configuration" msgstr "Системска подешавања" #. Name of a role -#. Option for the 'Role' (Select) field in DocType 'CRM Invitation' -#: crm/fcrm/doctype/crm_dashboard/crm_dashboard.json -#: crm/fcrm/doctype/crm_exotel_settings/crm_exotel_settings.json -#: crm/fcrm/doctype/crm_fields_layout/crm_fields_layout.json -#: crm/fcrm/doctype/crm_global_settings/crm_global_settings.json -#: crm/fcrm/doctype/crm_invitation/crm_invitation.json -#: crm/fcrm/doctype/crm_lead_source/crm_lead_source.json -#: crm/fcrm/doctype/crm_lost_reason/crm_lost_reason.json -#: crm/fcrm/doctype/crm_notification/crm_notification.json -#: crm/fcrm/doctype/crm_product/crm_product.json -#: crm/fcrm/doctype/crm_telephony_agent/crm_telephony_agent.json -#: crm/fcrm/doctype/crm_twilio_settings/crm_twilio_settings.json -#: crm/fcrm/doctype/erpnext_crm_settings/erpnext_crm_settings.json -#: crm/fcrm/doctype/fcrm_settings/fcrm_settings.json -#: crm/fcrm/doctype/helpdesk_crm_settings/helpdesk_crm_settings.json +#. Option for the 'Role' (Select) field in PageType 'CRM Invitation' +#: crm/fcrm/pagetype/crm_dashboard/crm_dashboard.json +#: crm/fcrm/pagetype/crm_exotel_settings/crm_exotel_settings.json +#: crm/fcrm/pagetype/crm_fields_layout/crm_fields_layout.json +#: crm/fcrm/pagetype/crm_global_settings/crm_global_settings.json +#: crm/fcrm/pagetype/crm_invitation/crm_invitation.json +#: crm/fcrm/pagetype/crm_lead_source/crm_lead_source.json +#: crm/fcrm/pagetype/crm_lost_reason/crm_lost_reason.json +#: crm/fcrm/pagetype/crm_notification/crm_notification.json +#: crm/fcrm/pagetype/crm_product/crm_product.json +#: crm/fcrm/pagetype/crm_telephony_agent/crm_telephony_agent.json +#: crm/fcrm/pagetype/crm_twilio_settings/crm_twilio_settings.json +#: crm/fcrm/pagetype/erpnext_crm_settings/erpnext_crm_settings.json +#: crm/fcrm/pagetype/fcrm_settings/fcrm_settings.json +#: crm/fcrm/pagetype/helpdesk_crm_settings/helpdesk_crm_settings.json msgid "System Manager" msgstr "Систем менаџер" @@ -5308,8 +5308,8 @@ msgstr "ЗА" msgid "Take a note..." msgstr "Запиши белешку..." -#. Option for the 'Type' (Select) field in DocType 'CRM Notification' -#: crm/fcrm/doctype/crm_notification/crm_notification.json +#. Option for the 'Type' (Select) field in PageType 'CRM Notification' +#: crm/fcrm/pagetype/crm_notification/crm_notification.json #: frontend/src/components/Layouts/AppSidebar.vue:555 msgid "Task" msgstr "Задатак" @@ -5327,8 +5327,8 @@ msgstr "Telegram канал" msgid "Telephony" msgstr "Телефонија" -#. Label of the telephony_medium (Select) field in DocType 'CRM Call Log' -#: crm/fcrm/doctype/crm_call_log/crm_call_log.json +#. Label of the telephony_medium (Select) field in PageType 'CRM Call Log' +#: crm/fcrm/pagetype/crm_call_log/crm_call_log.json msgid "Telephony Medium" msgstr "Средство телефоније" @@ -5364,27 +5364,27 @@ msgstr "Шаблон је успешно преименован" msgid "Template updated successfully" msgstr "Шаблон је успешно ажуриран" -#. Label of a shortcut in the Frappe CRM Workspace -#: crm/fcrm/workspace/frappe_crm/frappe_crm.json +#. Label of a shortcut in the Jingrow CRM Workspace +#: crm/fcrm/workspace/jingrow_crm/jingrow_crm.json msgid "Territories" msgstr "Територије" -#. Label of the territory (Link) field in DocType 'CRM Deal' -#. Label of the territory (Link) field in DocType 'CRM Lead' -#. Label of the territory (Link) field in DocType 'CRM Organization' -#: crm/api/dashboard.py:1022 crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_lead/crm_lead.json -#: crm/fcrm/doctype/crm_organization/crm_organization.json +#. Label of the territory (Link) field in PageType 'CRM Deal' +#. Label of the territory (Link) field in PageType 'CRM Lead' +#. Label of the territory (Link) field in PageType 'CRM Organization' +#: crm/api/dashboard.py:1022 crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_lead/crm_lead.json +#: crm/fcrm/pagetype/crm_organization/crm_organization.json msgid "Territory" msgstr "Територија" -#. Label of the territory_manager (Link) field in DocType 'CRM Territory' -#: crm/fcrm/doctype/crm_territory/crm_territory.json +#. Label of the territory_manager (Link) field in PageType 'CRM Territory' +#: crm/fcrm/pagetype/crm_territory/crm_territory.json msgid "Territory Manager" msgstr "Менаџер територије" -#. Label of the territory_name (Data) field in DocType 'CRM Territory' -#: crm/fcrm/doctype/crm_territory/crm_territory.json +#. Label of the territory_name (Data) field in PageType 'CRM Territory' +#: crm/fcrm/pagetype/crm_territory/crm_territory.json msgid "Territory Name" msgstr "Назив територије" @@ -5392,22 +5392,22 @@ msgstr "Назив територије" msgid "Thanks" msgstr "Хвала" -#: crm/fcrm/doctype/crm_service_level_agreement/crm_service_level_agreement.py:46 +#: crm/fcrm/pagetype/crm_service_level_agreement/crm_service_level_agreement.py:46 msgid "The Condition '{0}' is invalid: {1}" msgstr "Услов '{0}' је неважећи: {1}" -#. Description of the 'Exchange Rate' (Float) field in DocType 'CRM Deal' -#: crm/fcrm/doctype/crm_deal/crm_deal.json +#. Description of the 'Exchange Rate' (Float) field in PageType 'CRM Deal' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json msgid "The rate used to convert the deal’s currency to your crm's base currency (set in CRM Settings). It is set once when the currency is first added and doesn't change automatically." msgstr "Курс који се уноси за конвертовање валуте пословне прилике у основну валуту из Вашег CRM-a (постављено у CRM подешавањима). Поставља се једном, приликом додавања валуте и не мења се аутоматски." -#. Description of the 'Exchange Rate' (Float) field in DocType 'CRM +#. Description of the 'Exchange Rate' (Float) field in PageType 'CRM #. Organization' -#: crm/fcrm/doctype/crm_organization/crm_organization.json +#: crm/fcrm/pagetype/crm_organization/crm_organization.json msgid "The rate used to convert the organization’s currency to your crm's base currency (set in CRM Settings). It is set once when the currency is first added and doesn't change automatically." msgstr "Курс који се користи за конвертовање валуте организације у основну валуту из Вашег CRM-a (постављено у CRM подешавањима). Поставља се једном, приликом додавања валуте и не мења се аутоматски." -#: crm/fcrm/doctype/crm_service_level_agreement/crm_service_level_agreement.js:14 +#: crm/fcrm/pagetype/crm_service_level_agreement/crm_service_level_agreement.js:14 msgid "There can only be one default priority in Priorities table" msgstr "У табели приоритета може постојати само један подразумевани приоритет" @@ -5444,14 +5444,14 @@ msgstr "Ово ће обрисати изабране ставке и повез msgid "This will delete selected items and unlink linked items to it, are you sure?" msgstr "Ово ће обрисати изабране ставке и поништити повезане ставке са њима, да ли сте сигурни?" -#: crm/fcrm/doctype/fcrm_settings/fcrm_settings.js:9 +#: crm/fcrm/pagetype/fcrm_settings/fcrm_settings.js:9 msgid "This will restore (if not exist) all the default statuses, custom fields and layouts. Delete & Restore will delete default layouts and then restore them." msgstr "Ова опција ће вратити (уколико не постоје) све подразумеване статусе, прилагођена поља и распореде. Обриши и врати ће обрисати подразумеване распореде и потом их поново креирати." -#. Option for the 'Weekly Off' (Select) field in DocType 'CRM Holiday List' -#. Option for the 'Workday' (Select) field in DocType 'CRM Service Day' -#: crm/fcrm/doctype/crm_holiday_list/crm_holiday_list.json -#: crm/fcrm/doctype/crm_service_day/crm_service_day.json +#. Option for the 'Weekly Off' (Select) field in PageType 'CRM Holiday List' +#. Option for the 'Workday' (Select) field in PageType 'CRM Service Day' +#: crm/fcrm/pagetype/crm_holiday_list/crm_holiday_list.json +#: crm/fcrm/pagetype/crm_service_day/crm_service_day.json msgid "Thursday" msgstr "Четвртак" @@ -5463,18 +5463,18 @@ msgstr "Време" msgid "Timespan" msgstr "Временски опсег" -#. Label of the title (Data) field in DocType 'CRM Task' -#. Label of the title (Data) field in DocType 'FCRM Note' -#: crm/fcrm/doctype/crm_task/crm_task.json -#: crm/fcrm/doctype/fcrm_note/fcrm_note.json +#. Label of the title (Data) field in PageType 'CRM Task' +#. Label of the title (Data) field in PageType 'FCRM Note' +#: crm/fcrm/pagetype/crm_task/crm_task.json +#: crm/fcrm/pagetype/fcrm_note/fcrm_note.json #: frontend/src/components/Modals/EventModal.vue:43 #: frontend/src/components/Modals/NoteModal.vue:26 #: frontend/src/components/Modals/TaskModal.vue:25 msgid "Title" msgstr "Наслов" -#. Label of the title_field (Data) field in DocType 'CRM View Settings' -#: crm/fcrm/doctype/crm_view_settings/crm_view_settings.json +#. Label of the title_field (Data) field in PageType 'CRM View Settings' +#: crm/fcrm/pagetype/crm_view_settings/crm_view_settings.json #: frontend/src/components/Kanban/KanbanSettings.vue:29 msgid "Title Field" msgstr "Поље за наслов" @@ -5484,28 +5484,28 @@ msgstr "Поље за наслов" msgid "Title is required" msgstr "Наслов је неопходан" -#. Label of the to (Data) field in DocType 'CRM Call Log' -#. Label of the to (Data) field in DocType 'CRM Status Change Log' -#: crm/fcrm/doctype/crm_call_log/crm_call_log.json -#: crm/fcrm/doctype/crm_status_change_log/crm_status_change_log.json +#. Label of the to (Data) field in PageType 'CRM Call Log' +#. Label of the to (Data) field in PageType 'CRM Status Change Log' +#: crm/fcrm/pagetype/crm_call_log/crm_call_log.json +#: crm/fcrm/pagetype/crm_status_change_log/crm_status_change_log.json #: frontend/src/components/Activities/EmailArea.vue:53 msgid "To" msgstr "За" -#. Label of the to_date (Date) field in DocType 'CRM Holiday List' -#. Label of the to_date (Datetime) field in DocType 'CRM Status Change Log' -#: crm/fcrm/doctype/crm_holiday_list/crm_holiday_list.json -#: crm/fcrm/doctype/crm_status_change_log/crm_status_change_log.json +#. Label of the to_date (Date) field in PageType 'CRM Holiday List' +#. Label of the to_date (Datetime) field in PageType 'CRM Status Change Log' +#: crm/fcrm/pagetype/crm_holiday_list/crm_holiday_list.json +#: crm/fcrm/pagetype/crm_status_change_log/crm_status_change_log.json msgid "To Date" msgstr "Датум завршетка" -#. Label of the to_type (Data) field in DocType 'CRM Status Change Log' -#: crm/fcrm/doctype/crm_status_change_log/crm_status_change_log.json +#. Label of the to_type (Data) field in PageType 'CRM Status Change Log' +#: crm/fcrm/pagetype/crm_status_change_log/crm_status_change_log.json msgid "To Type" msgstr "До врсте" -#. Label of the to_user (Link) field in DocType 'CRM Notification' -#: crm/fcrm/doctype/crm_notification/crm_notification.json +#. Label of the to_user (Link) field in PageType 'CRM Notification' +#: crm/fcrm/pagetype/crm_notification/crm_notification.json msgid "To User" msgstr "За корисника" @@ -5517,8 +5517,8 @@ msgstr "Да бисте сазнали више о подешавањима им msgid "Today" msgstr "Данас" -#. Option for the 'Status' (Select) field in DocType 'CRM Task' -#: crm/fcrm/doctype/crm_task/crm_task.json +#. Option for the 'Status' (Select) field in PageType 'CRM Task' +#: crm/fcrm/pagetype/crm_task/crm_task.json msgid "Todo" msgstr "За урадити" @@ -5535,22 +5535,22 @@ msgstr "Сутра" msgid "Took a call with John Doe and discussed the new project." msgstr "Обављен позив са Петром Петровићем и разговарано о новом пројекту." -#. Label of the total (Currency) field in DocType 'CRM Deal' -#. Label of the total (Currency) field in DocType 'CRM Lead' -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_lead/crm_lead.json +#. Label of the total (Currency) field in PageType 'CRM Deal' +#. Label of the total (Currency) field in PageType 'CRM Lead' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_lead/crm_lead.json msgid "Total" msgstr "Укупно" -#. Label of the total_holidays (Int) field in DocType 'CRM Holiday List' -#: crm/fcrm/doctype/crm_holiday_list/crm_holiday_list.json +#. Label of the total_holidays (Int) field in PageType 'CRM Holiday List' +#: crm/fcrm/pagetype/crm_holiday_list/crm_holiday_list.json msgid "Total Holidays" msgstr "Укупно празника" -#. Description of the 'Net Total' (Currency) field in DocType 'CRM Deal' -#. Description of the 'Net Total' (Currency) field in DocType 'CRM Lead' -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_lead/crm_lead.json +#. Description of the 'Net Total' (Currency) field in PageType 'CRM Deal' +#. Description of the 'Net Total' (Currency) field in PageType 'CRM Lead' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_lead/crm_lead.json msgid "Total after discount" msgstr "Укупно након попуста" @@ -5571,10 +5571,10 @@ msgstr "Укупан број пословних прилика које нис msgid "Total number of won deals based on its closure date" msgstr "Укупан број добијених пословних прилика према датуму затварања" -#. Option for the 'Weekly Off' (Select) field in DocType 'CRM Holiday List' -#. Option for the 'Workday' (Select) field in DocType 'CRM Service Day' -#: crm/fcrm/doctype/crm_holiday_list/crm_holiday_list.json -#: crm/fcrm/doctype/crm_service_day/crm_service_day.json +#. Option for the 'Weekly Off' (Select) field in PageType 'CRM Holiday List' +#. Option for the 'Workday' (Select) field in PageType 'CRM Service Day' +#: crm/fcrm/pagetype/crm_holiday_list/crm_holiday_list.json +#: crm/fcrm/pagetype/crm_service_day/crm_service_day.json msgid "Tuesday" msgstr "Уторак" @@ -5582,30 +5582,30 @@ msgstr "Уторак" msgid "Turn into a group" msgstr "Претвори у групу" -#. Label of the twiml_sid (Data) field in DocType 'CRM Twilio Settings' -#: crm/fcrm/doctype/crm_twilio_settings/crm_twilio_settings.json +#. Label of the twiml_sid (Data) field in PageType 'CRM Twilio Settings' +#: crm/fcrm/pagetype/crm_twilio_settings/crm_twilio_settings.json msgid "TwiML SID" msgstr "TwiML SID" -#. Option for the 'Telephony Medium' (Select) field in DocType 'CRM Call Log' -#. Label of the twilio (Check) field in DocType 'CRM Telephony Agent' -#. Option for the 'Default Medium' (Select) field in DocType 'CRM Telephony +#. Option for the 'Telephony Medium' (Select) field in PageType 'CRM Call Log' +#. Label of the twilio (Check) field in PageType 'CRM Telephony Agent' +#. Option for the 'Default Medium' (Select) field in PageType 'CRM Telephony #. Agent' -#: crm/fcrm/doctype/crm_call_log/crm_call_log.json -#: crm/fcrm/doctype/crm_telephony_agent/crm_telephony_agent.json +#: crm/fcrm/pagetype/crm_call_log/crm_call_log.json +#: crm/fcrm/pagetype/crm_telephony_agent/crm_telephony_agent.json #: frontend/src/components/Layouts/AppSidebar.vue:601 #: frontend/src/components/Settings/TelephonySettings.vue:40 #: frontend/src/components/Settings/TelephonySettings.vue:50 msgid "Twilio" msgstr "Twilio" -#: crm/fcrm/doctype/crm_twilio_settings/crm_twilio_settings.py:59 -#: crm/fcrm/doctype/crm_twilio_settings/crm_twilio_settings.py:60 +#: crm/fcrm/pagetype/crm_twilio_settings/crm_twilio_settings.py:59 +#: crm/fcrm/pagetype/crm_twilio_settings/crm_twilio_settings.py:60 msgid "Twilio API credential creation error." msgstr "Грешка приликом креирања Twilio API креденцијала." -#. Label of the twilio_number (Data) field in DocType 'CRM Telephony Agent' -#: crm/fcrm/doctype/crm_telephony_agent/crm_telephony_agent.json +#. Label of the twilio_number (Data) field in PageType 'CRM Telephony Agent' +#: crm/fcrm/pagetype/crm_telephony_agent/crm_telephony_agent.json msgid "Twilio Number" msgstr "Twilio број" @@ -5617,20 +5617,20 @@ msgstr "Twilio није омогућен" msgid "Twilio settings updated successfully" msgstr "Twilio подешавања су успешно ажурирана" -#. Label of the type (Select) field in DocType 'CRM Call Log' -#. Label of the type (Select) field in DocType 'CRM Deal Status' -#. Label of the type (Select) field in DocType 'CRM Dropdown Item' -#. Label of the type (Select) field in DocType 'CRM Fields Layout' -#. Label of the type (Select) field in DocType 'CRM Global Settings' -#. Label of the type (Select) field in DocType 'CRM Notification' -#. Label of the type (Select) field in DocType 'CRM View Settings' -#: crm/fcrm/doctype/crm_call_log/crm_call_log.json -#: crm/fcrm/doctype/crm_deal_status/crm_deal_status.json -#: crm/fcrm/doctype/crm_dropdown_item/crm_dropdown_item.json -#: crm/fcrm/doctype/crm_fields_layout/crm_fields_layout.json -#: crm/fcrm/doctype/crm_global_settings/crm_global_settings.json -#: crm/fcrm/doctype/crm_notification/crm_notification.json -#: crm/fcrm/doctype/crm_view_settings/crm_view_settings.json +#. Label of the type (Select) field in PageType 'CRM Call Log' +#. Label of the type (Select) field in PageType 'CRM Deal Status' +#. Label of the type (Select) field in PageType 'CRM Dropdown Item' +#. Label of the type (Select) field in PageType 'CRM Fields Layout' +#. Label of the type (Select) field in PageType 'CRM Global Settings' +#. Label of the type (Select) field in PageType 'CRM Notification' +#. Label of the type (Select) field in PageType 'CRM View Settings' +#: crm/fcrm/pagetype/crm_call_log/crm_call_log.json +#: crm/fcrm/pagetype/crm_deal_status/crm_deal_status.json +#: crm/fcrm/pagetype/crm_dropdown_item/crm_dropdown_item.json +#: crm/fcrm/pagetype/crm_fields_layout/crm_fields_layout.json +#: crm/fcrm/pagetype/crm_global_settings/crm_global_settings.json +#: crm/fcrm/pagetype/crm_notification/crm_notification.json +#: crm/fcrm/pagetype/crm_view_settings/crm_view_settings.json msgid "Type" msgstr "Врста" @@ -5772,12 +5772,12 @@ msgstr "Отпреми слику" msgid "Uploading {0}%" msgstr "Отпремање {0}%" -#. Label of the user (Link) field in DocType 'CRM Dashboard' -#. Label of the user (Link) field in DocType 'CRM Telephony Agent' -#. Label of the user (Link) field in DocType 'CRM View Settings' -#: crm/fcrm/doctype/crm_dashboard/crm_dashboard.json -#: crm/fcrm/doctype/crm_telephony_agent/crm_telephony_agent.json -#: crm/fcrm/doctype/crm_view_settings/crm_view_settings.json +#. Label of the user (Link) field in PageType 'CRM Dashboard' +#. Label of the user (Link) field in PageType 'CRM Telephony Agent' +#. Label of the user (Link) field in PageType 'CRM View Settings' +#: crm/fcrm/pagetype/crm_dashboard/crm_dashboard.json +#: crm/fcrm/pagetype/crm_telephony_agent/crm_telephony_agent.json +#: crm/fcrm/pagetype/crm_view_settings/crm_view_settings.json msgid "User" msgstr "Корисник" @@ -5785,8 +5785,8 @@ msgstr "Корисник" msgid "User Management" msgstr "Управљање корисницима" -#. Label of the user_name (Data) field in DocType 'CRM Telephony Agent' -#: crm/fcrm/doctype/crm_telephony_agent/crm_telephony_agent.json +#. Label of the user_name (Data) field in PageType 'CRM Telephony Agent' +#: crm/fcrm/pagetype/crm_telephony_agent/crm_telephony_agent.json msgid "User Name" msgstr "Корисничко име" @@ -5808,9 +5808,9 @@ msgstr "Корисници су успешно додати" msgid "Users are required" msgstr "Корисници су обавезни" -#. Label of the section_break_nevd (Section Break) field in DocType 'CRM +#. Label of the section_break_nevd (Section Break) field in PageType 'CRM #. Service Level Agreement' -#: crm/fcrm/doctype/crm_service_level_agreement/crm_service_level_agreement.json +#: crm/fcrm/pagetype/crm_service_level_agreement/crm_service_level_agreement.json msgid "Validity" msgstr "Важење" @@ -5834,33 +5834,33 @@ msgstr "Прикази" msgid "Web form" msgstr "Веб-образац" -#. Label of the webhook_verify_token (Data) field in DocType 'CRM Exotel +#. Label of the webhook_verify_token (Data) field in PageType 'CRM Exotel #. Settings' -#: crm/fcrm/doctype/crm_exotel_settings/crm_exotel_settings.json +#: crm/fcrm/pagetype/crm_exotel_settings/crm_exotel_settings.json msgid "Webhook Verify Token" msgstr "Токе за верификацију webhook-a" -#. Label of the website (Data) field in DocType 'CRM Deal' -#. Label of the website (Data) field in DocType 'CRM Lead' -#. Label of the website (Data) field in DocType 'CRM Organization' -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_lead/crm_lead.json -#: crm/fcrm/doctype/crm_organization/crm_organization.json +#. Label of the website (Data) field in PageType 'CRM Deal' +#. Label of the website (Data) field in PageType 'CRM Lead' +#. Label of the website (Data) field in PageType 'CRM Organization' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_lead/crm_lead.json +#: crm/fcrm/pagetype/crm_organization/crm_organization.json #: frontend/src/components/Modals/AboutModal.vue:52 msgid "Website" msgstr "Веб-сајт" -#. Option for the 'Weekly Off' (Select) field in DocType 'CRM Holiday List' -#. Option for the 'Workday' (Select) field in DocType 'CRM Service Day' -#: crm/fcrm/doctype/crm_holiday_list/crm_holiday_list.json -#: crm/fcrm/doctype/crm_service_day/crm_service_day.json +#. Option for the 'Weekly Off' (Select) field in PageType 'CRM Holiday List' +#. Option for the 'Workday' (Select) field in PageType 'CRM Service Day' +#: crm/fcrm/pagetype/crm_holiday_list/crm_holiday_list.json +#: crm/fcrm/pagetype/crm_service_day/crm_service_day.json msgid "Wednesday" msgstr "Среда" -#. Label of the weekly_off (Check) field in DocType 'CRM Holiday' -#. Label of the weekly_off (Select) field in DocType 'CRM Holiday List' -#: crm/fcrm/doctype/crm_holiday/crm_holiday.json -#: crm/fcrm/doctype/crm_holiday_list/crm_holiday_list.json +#. Label of the weekly_off (Check) field in PageType 'CRM Holiday' +#. Label of the weekly_off (Select) field in PageType 'CRM Holiday List' +#: crm/fcrm/pagetype/crm_holiday/crm_holiday.json +#: crm/fcrm/pagetype/crm_holiday_list/crm_holiday_list.json msgid "Weekly Off" msgstr "Недељни одмор" @@ -5868,7 +5868,7 @@ msgstr "Недељни одмор" msgid "Welcome Message" msgstr "Порука добродошлице" -#: crm/fcrm/doctype/helpdesk_crm_settings/helpdesk_crm_settings.py:155 +#: crm/fcrm/pagetype/helpdesk_crm_settings/helpdesk_crm_settings.py:155 msgid "Welcome to Helpdesk" msgstr "Добро дошли у Helpdesk" @@ -5876,8 +5876,8 @@ msgstr "Добро дошли у Helpdesk" msgid "Welcome {0}, lets add your first lead" msgstr "Добро дошли {0}, хајде да додамо твог првог потенцијалног клијента" -#. Option for the 'Type' (Select) field in DocType 'CRM Notification' -#: crm/fcrm/doctype/crm_notification/crm_notification.json +#. Option for the 'Type' (Select) field in PageType 'CRM Notification' +#: crm/fcrm/pagetype/crm_notification/crm_notification.json #: frontend/src/components/Layouts/AppSidebar.vue:603 #: frontend/src/components/Settings/Settings.vue:190 #: frontend/src/pages/Deal.vue:572 frontend/src/pages/Lead.vue:429 @@ -5902,8 +5902,8 @@ msgstr "Ширина" msgid "Width can be in number, pixel or rem (eg. 3, 30px, 10rem)" msgstr "Ширина може бити број, пиксел или rem (eg. 3, 30px, 10rem)" -#. Option for the 'Type' (Select) field in DocType 'CRM Deal Status' -#: crm/fcrm/doctype/crm_deal_status/crm_deal_status.json +#. Option for the 'Type' (Select) field in PageType 'CRM Deal Status' +#: crm/fcrm/pagetype/crm_deal_status/crm_deal_status.json msgid "Won" msgstr "Добијено" @@ -5912,16 +5912,16 @@ msgstr "Добијено" msgid "Won deals" msgstr "Добијене пословне прилике" -#. Label of the workday (Select) field in DocType 'CRM Service Day' -#: crm/fcrm/doctype/crm_service_day/crm_service_day.json +#. Label of the workday (Select) field in PageType 'CRM Service Day' +#: crm/fcrm/pagetype/crm_service_day/crm_service_day.json msgid "Workday" msgstr "Радни дан" -#. Label of the section_break_rmgo (Section Break) field in DocType 'CRM +#. Label of the section_break_rmgo (Section Break) field in PageType 'CRM #. Service Level Agreement' -#. Label of the working_hours (Table) field in DocType 'CRM Service Level +#. Label of the working_hours (Table) field in PageType 'CRM Service Level #. Agreement' -#: crm/fcrm/doctype/crm_service_level_agreement/crm_service_level_agreement.json +#: crm/fcrm/pagetype/crm_service_level_agreement/crm_service_level_agreement.json msgid "Working Hours" msgstr "Радно време" @@ -5967,7 +5967,7 @@ msgstr "Немате подешен број мобилног телефона msgid "You do not have permission to access this document" msgstr "Немате дозволу за приступ овом документу" -#: crm/fcrm/doctype/crm_form_script/crm_form_script.py:24 +#: crm/fcrm/pagetype/crm_form_script/crm_form_script.py:24 msgid "You need to be in developer mode to edit a Standard Form Script" msgstr "Морате бити у развојном режиму да бисте уредили стандардну скрипту обрасца" @@ -5995,10 +5995,10 @@ msgstr "Ваш стари услов ће бити преписан. Да ли msgid "added a" msgstr "додато је" -#. Option for the 'Color' (Select) field in DocType 'CRM Deal Status' -#. Option for the 'Color' (Select) field in DocType 'CRM Lead Status' -#: crm/fcrm/doctype/crm_deal_status/crm_deal_status.json -#: crm/fcrm/doctype/crm_lead_status/crm_lead_status.json +#. Option for the 'Color' (Select) field in PageType 'CRM Deal Status' +#. Option for the 'Color' (Select) field in PageType 'CRM Lead Status' +#: crm/fcrm/pagetype/crm_deal_status/crm_deal_status.json +#: crm/fcrm/pagetype/crm_lead_status/crm_lead_status.json msgid "amber" msgstr "амбер" @@ -6010,17 +6010,17 @@ msgstr "додељен Вам је нови задатак {0}" msgid "assigned a {0} {1} to you" msgstr "додељен Вам је {0} {1}" -#. Option for the 'Color' (Select) field in DocType 'CRM Deal Status' -#. Option for the 'Color' (Select) field in DocType 'CRM Lead Status' -#: crm/fcrm/doctype/crm_deal_status/crm_deal_status.json -#: crm/fcrm/doctype/crm_lead_status/crm_lead_status.json +#. Option for the 'Color' (Select) field in PageType 'CRM Deal Status' +#. Option for the 'Color' (Select) field in PageType 'CRM Lead Status' +#: crm/fcrm/pagetype/crm_deal_status/crm_deal_status.json +#: crm/fcrm/pagetype/crm_lead_status/crm_lead_status.json msgid "black" msgstr "црна" -#. Option for the 'Color' (Select) field in DocType 'CRM Deal Status' -#. Option for the 'Color' (Select) field in DocType 'CRM Lead Status' -#: crm/fcrm/doctype/crm_deal_status/crm_deal_status.json -#: crm/fcrm/doctype/crm_lead_status/crm_lead_status.json +#. Option for the 'Color' (Select) field in PageType 'CRM Deal Status' +#. Option for the 'Color' (Select) field in PageType 'CRM Lead Status' +#: crm/fcrm/pagetype/crm_deal_status/crm_deal_status.json +#: crm/fcrm/pagetype/crm_lead_status/crm_lead_status.json msgid "blue" msgstr "плаво" @@ -6037,10 +6037,10 @@ msgstr "коментар" msgid "condition" msgstr "услов" -#. Option for the 'Color' (Select) field in DocType 'CRM Deal Status' -#. Option for the 'Color' (Select) field in DocType 'CRM Lead Status' -#: crm/fcrm/doctype/crm_deal_status/crm_deal_status.json -#: crm/fcrm/doctype/crm_lead_status/crm_lead_status.json +#. Option for the 'Color' (Select) field in PageType 'CRM Deal Status' +#. Option for the 'Color' (Select) field in PageType 'CRM Lead Status' +#: crm/fcrm/pagetype/crm_deal_status/crm_deal_status.json +#: crm/fcrm/pagetype/crm_lead_status/crm_lead_status.json msgid "cyan" msgstr "цијан" @@ -6059,33 +6059,33 @@ msgstr "радна површина" msgid "email already exists" msgstr "имејл већ постоји" -#. Option for the 'Service Provider' (Select) field in DocType 'FCRM Settings' -#: crm/fcrm/doctype/fcrm_settings/fcrm_settings.json +#. Option for the 'Service Provider' (Select) field in PageType 'FCRM Settings' +#: crm/fcrm/pagetype/fcrm_settings/fcrm_settings.json #: frontend/src/components/Settings/CurrencySettings.vue:106 msgid "exchangerate.host" msgstr "exchangerate.host" -#. Option for the 'Service Provider' (Select) field in DocType 'FCRM Settings' -#: crm/fcrm/doctype/fcrm_settings/fcrm_settings.json +#. Option for the 'Service Provider' (Select) field in PageType 'FCRM Settings' +#: crm/fcrm/pagetype/fcrm_settings/fcrm_settings.json msgid "frankfurter.app" msgstr "frankfurter.app" -#. Option for the 'Color' (Select) field in DocType 'CRM Deal Status' -#. Option for the 'Color' (Select) field in DocType 'CRM Lead Status' -#: crm/fcrm/doctype/crm_deal_status/crm_deal_status.json -#: crm/fcrm/doctype/crm_lead_status/crm_lead_status.json +#. Option for the 'Color' (Select) field in PageType 'CRM Deal Status' +#. Option for the 'Color' (Select) field in PageType 'CRM Lead Status' +#: crm/fcrm/pagetype/crm_deal_status/crm_deal_status.json +#: crm/fcrm/pagetype/crm_lead_status/crm_lead_status.json msgid "gray" msgstr "сива" -#. Option for the 'Color' (Select) field in DocType 'CRM Deal Status' -#. Option for the 'Color' (Select) field in DocType 'CRM Lead Status' -#: crm/fcrm/doctype/crm_deal_status/crm_deal_status.json -#: crm/fcrm/doctype/crm_lead_status/crm_lead_status.json +#. Option for the 'Color' (Select) field in PageType 'CRM Deal Status' +#. Option for the 'Color' (Select) field in PageType 'CRM Lead Status' +#: crm/fcrm/pagetype/crm_deal_status/crm_deal_status.json +#: crm/fcrm/pagetype/crm_lead_status/crm_lead_status.json msgid "green" msgstr "зелена" -#. Option for the 'Type' (Select) field in DocType 'CRM View Settings' -#: crm/fcrm/doctype/crm_view_settings/crm_view_settings.json +#. Option for the 'Type' (Select) field in PageType 'CRM View Settings' +#: crm/fcrm/pagetype/crm_view_settings/crm_view_settings.json msgid "group_by" msgstr "group_by" @@ -6170,12 +6170,12 @@ msgstr "petar@petrovic.com" msgid "just now" msgstr "управо сада" -#. Option for the 'Type' (Select) field in DocType 'CRM View Settings' -#: crm/fcrm/doctype/crm_view_settings/crm_view_settings.json +#. Option for the 'Type' (Select) field in PageType 'CRM View Settings' +#: crm/fcrm/pagetype/crm_view_settings/crm_view_settings.json msgid "kanban" msgstr "канбан" -#: crm/api/doc.py:40 crm/api/doc.py:158 crm/api/doc.py:503 +#: crm/api/pg.py:40 crm/api/pg.py:158 crm/api/pg.py:503 msgid "label" msgstr "ознака" @@ -6184,8 +6184,8 @@ msgstr "ознака" msgid "leads" msgstr "потенцијални клијенти" -#. Option for the 'Type' (Select) field in DocType 'CRM View Settings' -#: crm/fcrm/doctype/crm_view_settings/crm_view_settings.json +#. Option for the 'Type' (Select) field in PageType 'CRM View Settings' +#: crm/fcrm/pagetype/crm_view_settings/crm_view_settings.json msgid "list" msgstr "листа" @@ -6206,17 +6206,17 @@ msgstr "сада" msgid "operator" msgstr "оператор" -#. Option for the 'Color' (Select) field in DocType 'CRM Deal Status' -#. Option for the 'Color' (Select) field in DocType 'CRM Lead Status' -#: crm/fcrm/doctype/crm_deal_status/crm_deal_status.json -#: crm/fcrm/doctype/crm_lead_status/crm_lead_status.json +#. Option for the 'Color' (Select) field in PageType 'CRM Deal Status' +#. Option for the 'Color' (Select) field in PageType 'CRM Lead Status' +#: crm/fcrm/pagetype/crm_deal_status/crm_deal_status.json +#: crm/fcrm/pagetype/crm_lead_status/crm_lead_status.json msgid "orange" msgstr "наранџаста" -#. Option for the 'Color' (Select) field in DocType 'CRM Deal Status' -#. Option for the 'Color' (Select) field in DocType 'CRM Lead Status' -#: crm/fcrm/doctype/crm_deal_status/crm_deal_status.json -#: crm/fcrm/doctype/crm_lead_status/crm_lead_status.json +#. Option for the 'Color' (Select) field in PageType 'CRM Deal Status' +#. Option for the 'Color' (Select) field in PageType 'CRM Lead Status' +#: crm/fcrm/pagetype/crm_deal_status/crm_deal_status.json +#: crm/fcrm/pagetype/crm_lead_status/crm_lead_status.json msgid "pink" msgstr "розе" @@ -6232,10 +6232,10 @@ msgstr "приватно" msgid "public" msgstr "јавно" -#. Option for the 'Color' (Select) field in DocType 'CRM Deal Status' -#. Option for the 'Color' (Select) field in DocType 'CRM Lead Status' -#: crm/fcrm/doctype/crm_deal_status/crm_deal_status.json -#: crm/fcrm/doctype/crm_lead_status/crm_lead_status.json +#. Option for the 'Color' (Select) field in PageType 'CRM Deal Status' +#. Option for the 'Color' (Select) field in PageType 'CRM Lead Status' +#: crm/fcrm/pagetype/crm_deal_status/crm_deal_status.json +#: crm/fcrm/pagetype/crm_lead_status/crm_lead_status.json msgid "purple" msgstr "пурпурна" @@ -6243,17 +6243,17 @@ msgstr "пурпурна" msgid "received a whatsapp message in {0}" msgstr "примљена WhatsApp порука у {0}" -#. Option for the 'Color' (Select) field in DocType 'CRM Deal Status' -#. Option for the 'Color' (Select) field in DocType 'CRM Lead Status' -#: crm/fcrm/doctype/crm_deal_status/crm_deal_status.json -#: crm/fcrm/doctype/crm_lead_status/crm_lead_status.json +#. Option for the 'Color' (Select) field in PageType 'CRM Deal Status' +#. Option for the 'Color' (Select) field in PageType 'CRM Lead Status' +#: crm/fcrm/pagetype/crm_deal_status/crm_deal_status.json +#: crm/fcrm/pagetype/crm_lead_status/crm_lead_status.json msgid "red" msgstr "црвена" -#. Option for the 'Color' (Select) field in DocType 'CRM Deal Status' -#. Option for the 'Color' (Select) field in DocType 'CRM Lead Status' -#: crm/fcrm/doctype/crm_deal_status/crm_deal_status.json -#: crm/fcrm/doctype/crm_lead_status/crm_lead_status.json +#. Option for the 'Color' (Select) field in PageType 'CRM Deal Status' +#. Option for the 'Color' (Select) field in PageType 'CRM Lead Status' +#: crm/fcrm/pagetype/crm_deal_status/crm_deal_status.json +#: crm/fcrm/pagetype/crm_lead_status/crm_lead_status.json msgid "teal" msgstr "тиркизна" @@ -6266,10 +6266,10 @@ msgstr "ка" msgid "tomorrow" msgstr "сутра" -#. Option for the 'Color' (Select) field in DocType 'CRM Deal Status' -#. Option for the 'Color' (Select) field in DocType 'CRM Lead Status' -#: crm/fcrm/doctype/crm_deal_status/crm_deal_status.json -#: crm/fcrm/doctype/crm_lead_status/crm_lead_status.json +#. Option for the 'Color' (Select) field in PageType 'CRM Deal Status' +#. Option for the 'Color' (Select) field in PageType 'CRM Lead Status' +#: crm/fcrm/pagetype/crm_deal_status/crm_deal_status.json +#: crm/fcrm/pagetype/crm_lead_status/crm_lead_status.json msgid "violet" msgstr "љубичаста" @@ -6278,10 +6278,10 @@ msgstr "љубичаста" msgid "which are not compatible with this UI, you will need to recreate the conditions here if you want to manage and add new conditions from this UI." msgstr "који нису компатибилни са овим корисничким интерфејсом, мораћете поново да креирате услове овде уколико желите да управљате и додајете нове услове из овог интерфејса." -#. Option for the 'Color' (Select) field in DocType 'CRM Deal Status' -#. Option for the 'Color' (Select) field in DocType 'CRM Lead Status' -#: crm/fcrm/doctype/crm_deal_status/crm_deal_status.json -#: crm/fcrm/doctype/crm_lead_status/crm_lead_status.json +#. Option for the 'Color' (Select) field in PageType 'CRM Deal Status' +#. Option for the 'Color' (Select) field in PageType 'CRM Lead Status' +#: crm/fcrm/pagetype/crm_deal_status/crm_deal_status.json +#: crm/fcrm/pagetype/crm_lead_status/crm_lead_status.json msgid "yellow" msgstr "жута" @@ -6379,8 +6379,8 @@ msgid "⚠️ Method \"{0}\" not found in class." msgstr "Метода \"{0}\" није пронађена у класи." #: frontend/src/data/script.js:83 -msgid "⚠️ No class found for doctype: {0}, it is mandatory to have a class for the parent doctype. it can be empty, but it should be present." -msgstr "Ниједна класа није пронађена за DocType: {0}, обавезно мора постојати класа за матични DocType. Може бити празна, али мора постојати." +msgid "⚠️ No class found for pagetype: {0}, it is mandatory to have a class for the parent pagetype. it can be empty, but it should be present." +msgstr "Ниједна класа није пронађена за PageType: {0}, обавезно мора постојати класа за матични PageType. Може бити празна, али мора постојати." #: frontend/src/data/script.js:180 msgid "⚠️ No data found for parent field: {0}" diff --git a/crm/locale/sr_CS.po b/crm/locale/sr_CS.po index 3d8181a9..105baaa9 100644 --- a/crm/locale/sr_CS.po +++ b/crm/locale/sr_CS.po @@ -1,6 +1,6 @@ msgid "" msgstr "" -"Project-Id-Version: frappe\n" +"Project-Id-Version: jingrow\n" "Report-Msgid-Bugs-To: shariq@jingrow.com\n" "POT-Creation-Date: 2025-09-21 09:35+0000\n" "PO-Revision-Date: 2025-09-24 21:29\n" @@ -11,10 +11,10 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Generated-By: Babel 2.16.0\n" "Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" -"X-Crowdin-Project: frappe\n" +"X-Crowdin-Project: jingrow\n" "X-Crowdin-Project-ID: 639578\n" "X-Crowdin-Language: sr-CS\n" -"X-Crowdin-File: /[frappe.crm] develop/crm/locale/main.pot\n" +"X-Crowdin-File: /[jingrow.crm] develop/crm/locale/main.pot\n" "X-Crowdin-File-ID: 97\n" "Language: sr_CS\n" @@ -55,73 +55,73 @@ msgstr "pre 1 nedelju" msgid "1 year ago" msgstr "pre 1 godinu" -#. Option for the 'No. of Employees' (Select) field in DocType 'CRM Deal' -#. Option for the 'No. of Employees' (Select) field in DocType 'CRM Lead' -#. Option for the 'No. of Employees' (Select) field in DocType 'CRM +#. Option for the 'No. of Employees' (Select) field in PageType 'CRM Deal' +#. Option for the 'No. of Employees' (Select) field in PageType 'CRM Lead' +#. Option for the 'No. of Employees' (Select) field in PageType 'CRM #. Organization' -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_lead/crm_lead.json -#: crm/fcrm/doctype/crm_organization/crm_organization.json +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_lead/crm_lead.json +#: crm/fcrm/pagetype/crm_organization/crm_organization.json msgid "1-10" msgstr "1-10" -#. Option for the 'No. of Employees' (Select) field in DocType 'CRM Deal' -#. Option for the 'No. of Employees' (Select) field in DocType 'CRM Lead' -#. Option for the 'No. of Employees' (Select) field in DocType 'CRM +#. Option for the 'No. of Employees' (Select) field in PageType 'CRM Deal' +#. Option for the 'No. of Employees' (Select) field in PageType 'CRM Lead' +#. Option for the 'No. of Employees' (Select) field in PageType 'CRM #. Organization' -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_lead/crm_lead.json -#: crm/fcrm/doctype/crm_organization/crm_organization.json +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_lead/crm_lead.json +#: crm/fcrm/pagetype/crm_organization/crm_organization.json msgid "1000+" msgstr "1000+" -#. Option for the 'No. of Employees' (Select) field in DocType 'CRM Deal' -#. Option for the 'No. of Employees' (Select) field in DocType 'CRM Lead' -#. Option for the 'No. of Employees' (Select) field in DocType 'CRM +#. Option for the 'No. of Employees' (Select) field in PageType 'CRM Deal' +#. Option for the 'No. of Employees' (Select) field in PageType 'CRM Lead' +#. Option for the 'No. of Employees' (Select) field in PageType 'CRM #. Organization' -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_lead/crm_lead.json -#: crm/fcrm/doctype/crm_organization/crm_organization.json +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_lead/crm_lead.json +#: crm/fcrm/pagetype/crm_organization/crm_organization.json msgid "11-50" msgstr "11-50" -#. Option for the 'No. of Employees' (Select) field in DocType 'CRM Deal' -#. Option for the 'No. of Employees' (Select) field in DocType 'CRM Lead' -#. Option for the 'No. of Employees' (Select) field in DocType 'CRM +#. Option for the 'No. of Employees' (Select) field in PageType 'CRM Deal' +#. Option for the 'No. of Employees' (Select) field in PageType 'CRM Lead' +#. Option for the 'No. of Employees' (Select) field in PageType 'CRM #. Organization' -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_lead/crm_lead.json -#: crm/fcrm/doctype/crm_organization/crm_organization.json +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_lead/crm_lead.json +#: crm/fcrm/pagetype/crm_organization/crm_organization.json msgid "201-500" msgstr "201-500" -#. Option for the 'No. of Employees' (Select) field in DocType 'CRM Deal' -#. Option for the 'No. of Employees' (Select) field in DocType 'CRM Lead' -#. Option for the 'No. of Employees' (Select) field in DocType 'CRM +#. Option for the 'No. of Employees' (Select) field in PageType 'CRM Deal' +#. Option for the 'No. of Employees' (Select) field in PageType 'CRM Lead' +#. Option for the 'No. of Employees' (Select) field in PageType 'CRM #. Organization' -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_lead/crm_lead.json -#: crm/fcrm/doctype/crm_organization/crm_organization.json +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_lead/crm_lead.json +#: crm/fcrm/pagetype/crm_organization/crm_organization.json msgid "501-1000" msgstr "501-1000" -#. Option for the 'No. of Employees' (Select) field in DocType 'CRM Deal' -#. Option for the 'No. of Employees' (Select) field in DocType 'CRM Lead' -#. Option for the 'No. of Employees' (Select) field in DocType 'CRM +#. Option for the 'No. of Employees' (Select) field in PageType 'CRM Deal' +#. Option for the 'No. of Employees' (Select) field in PageType 'CRM Lead' +#. Option for the 'No. of Employees' (Select) field in PageType 'CRM #. Organization' -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_lead/crm_lead.json -#: crm/fcrm/doctype/crm_organization/crm_organization.json +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_lead/crm_lead.json +#: crm/fcrm/pagetype/crm_organization/crm_organization.json msgid "51-200" msgstr "51-200" -#. Paragraph text in the Frappe CRM Workspace -#: crm/fcrm/workspace/frappe_crm/frappe_crm.json +#. Paragraph text in the Jingrow CRM Workspace +#: crm/fcrm/workspace/jingrow_crm/jingrow_crm.json msgid "META" msgstr "META" -#. Paragraph text in the Frappe CRM Workspace -#: crm/fcrm/workspace/frappe_crm/frappe_crm.json +#. Paragraph text in the Jingrow CRM Workspace +#: crm/fcrm/workspace/jingrow_crm/jingrow_crm.json msgid "SHORTCUTS" msgstr "PREČICE" @@ -130,8 +130,8 @@ msgstr "PREČICE" msgid "

Dear {{ lead_name }},

\\n\\n

This is a reminder for the payment of {{ grand_total }}.

\\n\\n

Thanks,

\\n

Frappé

" msgstr "

Zdravo {{ lead_name }},

\\n\\n

Ovo je podsetnik za plaćanje {{ grand_total }}.

\\n\\n

Hvala,

\\n

Frappé

" -#. Header text in the Frappe CRM Workspace -#: crm/fcrm/workspace/frappe_crm/frappe_crm.json +#. Header text in the Jingrow CRM Workspace +#: crm/fcrm/workspace/jingrow_crm/jingrow_crm.json msgid "PORTAL" msgstr "PORTAL" @@ -139,7 +139,7 @@ msgstr "PORTAL" msgid "@John, can you please check this?" msgstr "@John, možeš li molim te proveriti ovo?" -#: crm/fcrm/doctype/crm_lead/crm_lead.py:56 +#: crm/fcrm/pagetype/crm_lead/crm_lead.py:56 msgid "A Lead requires either a person's name or an organization's name" msgstr "Potencijalni klijent zahteva ili ime osobe ili naziv organizacije" @@ -147,14 +147,14 @@ msgstr "Potencijalni klijent zahteva ili ime osobe ili naziv organizacije" msgid "A new account has been created for you at {0}" msgstr "Novi nalog je kreiran za Vas na {0}" -#. Label of the api_key (Data) field in DocType 'CRM Exotel Settings' -#. Label of the api_key (Data) field in DocType 'CRM Twilio Settings' -#. Label of the api_key (Data) field in DocType 'ERPNext CRM Settings' -#. Label of the api_key (Data) field in DocType 'Helpdesk CRM Settings' -#: crm/fcrm/doctype/crm_exotel_settings/crm_exotel_settings.json -#: crm/fcrm/doctype/crm_twilio_settings/crm_twilio_settings.json -#: crm/fcrm/doctype/erpnext_crm_settings/erpnext_crm_settings.json -#: crm/fcrm/doctype/helpdesk_crm_settings/helpdesk_crm_settings.json +#. Label of the api_key (Data) field in PageType 'CRM Exotel Settings' +#. Label of the api_key (Data) field in PageType 'CRM Twilio Settings' +#. Label of the api_key (Data) field in PageType 'ERPNext CRM Settings' +#. Label of the api_key (Data) field in PageType 'Helpdesk CRM Settings' +#: crm/fcrm/pagetype/crm_exotel_settings/crm_exotel_settings.json +#: crm/fcrm/pagetype/crm_twilio_settings/crm_twilio_settings.json +#: crm/fcrm/pagetype/erpnext_crm_settings/erpnext_crm_settings.json +#: crm/fcrm/pagetype/helpdesk_crm_settings/helpdesk_crm_settings.json msgid "API Key" msgstr "API ključ" @@ -162,17 +162,17 @@ msgstr "API ključ" msgid "API Key is required" msgstr "API ključ je obavezan" -#. Label of the api_secret (Password) field in DocType 'CRM Twilio Settings' -#. Label of the api_secret (Password) field in DocType 'ERPNext CRM Settings' -#. Label of the api_secret (Password) field in DocType 'Helpdesk CRM Settings' -#: crm/fcrm/doctype/crm_twilio_settings/crm_twilio_settings.json -#: crm/fcrm/doctype/erpnext_crm_settings/erpnext_crm_settings.json -#: crm/fcrm/doctype/helpdesk_crm_settings/helpdesk_crm_settings.json +#. Label of the api_secret (Password) field in PageType 'CRM Twilio Settings' +#. Label of the api_secret (Password) field in PageType 'ERPNext CRM Settings' +#. Label of the api_secret (Password) field in PageType 'Helpdesk CRM Settings' +#: crm/fcrm/pagetype/crm_twilio_settings/crm_twilio_settings.json +#: crm/fcrm/pagetype/erpnext_crm_settings/erpnext_crm_settings.json +#: crm/fcrm/pagetype/helpdesk_crm_settings/helpdesk_crm_settings.json msgid "API Secret" msgstr "API tajna" -#. Label of the api_token (Password) field in DocType 'CRM Exotel Settings' -#: crm/fcrm/doctype/crm_exotel_settings/crm_exotel_settings.json +#. Label of the api_token (Password) field in PageType 'CRM Exotel Settings' +#: crm/fcrm/pagetype/crm_exotel_settings/crm_exotel_settings.json msgid "API Token" msgstr "API token" @@ -180,7 +180,7 @@ msgstr "API token" msgid "Accept" msgstr "Prihvati" -#: crm/fcrm/doctype/crm_invitation/crm_invitation.js:7 +#: crm/fcrm/pagetype/crm_invitation/crm_invitation.js:7 msgid "Accept Invitation" msgstr "Prihvati pozivnicu" @@ -188,22 +188,22 @@ msgstr "Prihvati pozivnicu" msgid "Accept call" msgstr "Prihvati poziv" -#. Option for the 'Status' (Select) field in DocType 'CRM Invitation' -#: crm/fcrm/doctype/crm_invitation/crm_invitation.json +#. Option for the 'Status' (Select) field in PageType 'CRM Invitation' +#: crm/fcrm/pagetype/crm_invitation/crm_invitation.json msgid "Accepted" msgstr "Prihvaćeno" -#. Label of the accepted_at (Datetime) field in DocType 'CRM Invitation' -#: crm/fcrm/doctype/crm_invitation/crm_invitation.json +#. Label of the accepted_at (Datetime) field in PageType 'CRM Invitation' +#: crm/fcrm/pagetype/crm_invitation/crm_invitation.json msgid "Accepted At" msgstr "Prihvaćeno" -#. Label of the access_key (Data) field in DocType 'FCRM Settings' -#: crm/fcrm/doctype/fcrm_settings/fcrm_settings.json +#. Label of the access_key (Data) field in PageType 'FCRM Settings' +#: crm/fcrm/pagetype/fcrm_settings/fcrm_settings.json msgid "Access Key" msgstr "Ključ za pristup" -#: crm/fcrm/doctype/fcrm_settings/fcrm_settings.py:156 +#: crm/fcrm/pagetype/fcrm_settings/fcrm_settings.py:156 msgid "Access Key is required for Service Provider: {0}" msgstr "Ključ za pristup je obavezan za pružaoca usluga: {0}" @@ -219,10 +219,10 @@ msgstr "Ključ za pristup Exchangerate Host. Neophodan za preuzimanje deviznih k msgid "Account Name" msgstr "Naziv naloga" -#. Label of the account_sid (Data) field in DocType 'CRM Exotel Settings' -#. Label of the account_sid (Data) field in DocType 'CRM Twilio Settings' -#: crm/fcrm/doctype/crm_exotel_settings/crm_exotel_settings.json -#: crm/fcrm/doctype/crm_twilio_settings/crm_twilio_settings.json +#. Label of the account_sid (Data) field in PageType 'CRM Exotel Settings' +#. Label of the account_sid (Data) field in PageType 'CRM Twilio Settings' +#: crm/fcrm/pagetype/crm_exotel_settings/crm_exotel_settings.json +#: crm/fcrm/pagetype/crm_twilio_settings/crm_twilio_settings.json msgid "Account SID" msgstr "SID naloga" @@ -296,9 +296,9 @@ msgstr "Dodaj sortiranje" msgid "Add Tab" msgstr "Dodaj karticu" -#. Label of the add_weekly_holidays_section (Section Break) field in DocType +#. Label of the add_weekly_holidays_section (Section Break) field in PageType #. 'CRM Holiday List' -#: crm/fcrm/doctype/crm_holiday_list/crm_holiday_list.json +#: crm/fcrm/pagetype/crm_holiday_list/crm_holiday_list.json msgid "Add Weekly Holidays" msgstr "Dodaj nedeljne praznike" @@ -363,8 +363,8 @@ msgstr "Dodaj belešku" msgid "Add sample data" msgstr "Dodaj probne podatke" -#. Description of the 'Icon' (Code) field in DocType 'CRM Dropdown Item' -#: crm/fcrm/doctype/crm_dropdown_item/crm_dropdown_item.json +#. Description of the 'Icon' (Code) field in PageType 'CRM Dropdown Item' +#: crm/fcrm/pagetype/crm_dropdown_item/crm_dropdown_item.json msgid "Add svg code or use feather icons e.g 'settings'" msgstr "Dodaj SVG kod ili koristi Feather ikonice, npr. 'podešavanje'" @@ -372,8 +372,8 @@ msgstr "Dodaj SVG kod ili koristi Feather ikonice, npr. 'podešavanje'" msgid "Add task" msgstr "Dodaj zadatak" -#. Label of the add_to_holidays (Button) field in DocType 'CRM Holiday List' -#: crm/fcrm/doctype/crm_holiday_list/crm_holiday_list.json +#. Label of the add_to_holidays (Button) field in PageType 'CRM Holiday List' +#: crm/fcrm/pagetype/crm_holiday_list/crm_holiday_list.json msgid "Add to Holidays" msgstr "Dodaj u praznike" @@ -385,8 +385,8 @@ msgstr "Dodajte svoj prvi komentar" msgid "Add, edit, and manage email templates for various CRM communications" msgstr "Dodajte, uredite i upravljajte imejl šablonima za različite CRM komunikacije" -#. Label of the address (Link) field in DocType 'CRM Organization' -#: crm/fcrm/doctype/crm_organization/crm_organization.json +#. Label of the address (Link) field in PageType 'CRM Organization' +#: crm/fcrm/pagetype/crm_organization/crm_organization.json msgid "Address" msgstr "Adresa" @@ -406,14 +406,14 @@ msgid "Agent is unavailable to take the call, please call after some time." msgstr "Agent trenutno nije dostupan da primi poziv, molimo Vas da pokušate kasnije." #. Name of a role -#: crm/fcrm/doctype/crm_exotel_settings/crm_exotel_settings.json -#: crm/fcrm/doctype/crm_fields_layout/crm_fields_layout.json -#: crm/fcrm/doctype/crm_form_script/crm_form_script.json -#: crm/fcrm/doctype/crm_industry/crm_industry.json -#: crm/fcrm/doctype/crm_lead/crm_lead.json -#: crm/fcrm/doctype/crm_lead_source/crm_lead_source.json -#: crm/fcrm/doctype/crm_lead_status/crm_lead_status.json -#: crm/fcrm/doctype/fcrm_settings/fcrm_settings.json +#: crm/fcrm/pagetype/crm_exotel_settings/crm_exotel_settings.json +#: crm/fcrm/pagetype/crm_fields_layout/crm_fields_layout.json +#: crm/fcrm/pagetype/crm_form_script/crm_form_script.json +#: crm/fcrm/pagetype/crm_industry/crm_industry.json +#: crm/fcrm/pagetype/crm_lead/crm_lead.json +#: crm/fcrm/pagetype/crm_lead_source/crm_lead_source.json +#: crm/fcrm/pagetype/crm_lead_status/crm_lead_status.json +#: crm/fcrm/pagetype/fcrm_settings/fcrm_settings.json #: frontend/src/components/Settings/EmailTemplate/EmailTemplates.vue:76 #: frontend/src/components/Settings/Users.vue:85 msgid "All" @@ -426,16 +426,16 @@ msgstr "Sve" msgid "All day" msgstr "Ceo dan" -#. Label of the amount (Currency) field in DocType 'CRM Products' -#: crm/fcrm/doctype/crm_products/crm_products.json +#. Label of the amount (Currency) field in PageType 'CRM Products' +#: crm/fcrm/pagetype/crm_products/crm_products.json #: frontend/src/pages/Contact.vue:499 frontend/src/pages/MobileContact.vue:507 #: frontend/src/pages/MobileOrganization.vue:451 #: frontend/src/pages/Organization.vue:472 msgid "Amount" msgstr "Iznos" -#. Description of the 'Net Amount' (Currency) field in DocType 'CRM Products' -#: crm/fcrm/doctype/crm_products/crm_products.json +#. Description of the 'Net Amount' (Currency) field in PageType 'CRM Products' +#: crm/fcrm/pagetype/crm_products/crm_products.json msgid "Amount after discount" msgstr "Iznos nakon popusta" @@ -447,13 +447,13 @@ msgstr "Dogodila se greška" msgid "An error occurred while updating the document" msgstr "Došlo je do greške prilikom ažuriranja dokumenta" -#. Description of the 'Favicon' (Attach) field in DocType 'FCRM Settings' -#: crm/fcrm/doctype/fcrm_settings/fcrm_settings.json +#. Description of the 'Favicon' (Attach) field in PageType 'FCRM Settings' +#: crm/fcrm/pagetype/fcrm_settings/fcrm_settings.json msgid "An icon file with .ico extension. Should be 16 x 16 px. Generated using a favicon generator. [favicon-generator.org]" msgstr "Ikonica sa ekstenzijom .ico. Trebalo bi da bude razmere 16 x 16 px. Generisano pomoću favicon generatora. [favicon-generator.org]" -#. Description of the 'Logo' (Attach) field in DocType 'FCRM Settings' -#: crm/fcrm/doctype/fcrm_settings/fcrm_settings.json +#. Description of the 'Logo' (Attach) field in PageType 'FCRM Settings' +#: crm/fcrm/pagetype/fcrm_settings/fcrm_settings.json msgid "An image with 1:1 & 2:1 ratio is preferred" msgstr "Preporučuje se slika u razmeri 1:1 i 2:1" @@ -461,12 +461,12 @@ msgstr "Preporučuje se slika u razmeri 1:1 i 2:1" msgid "And" msgstr "i" -#. Label of the annual_revenue (Currency) field in DocType 'CRM Deal' -#. Label of the annual_revenue (Currency) field in DocType 'CRM Lead' -#. Label of the annual_revenue (Currency) field in DocType 'CRM Organization' -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_lead/crm_lead.json -#: crm/fcrm/doctype/crm_organization/crm_organization.json +#. Label of the annual_revenue (Currency) field in PageType 'CRM Deal' +#. Label of the annual_revenue (Currency) field in PageType 'CRM Lead' +#. Label of the annual_revenue (Currency) field in PageType 'CRM Organization' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_lead/crm_lead.json +#: crm/fcrm/pagetype/crm_organization/crm_organization.json msgid "Annual Revenue" msgstr "Godišnji prihod" @@ -488,13 +488,13 @@ msgstr "Pojavljuje se pored naslova u kartici internet pretraživača. Preporuč msgid "Apply" msgstr "Primeni" -#. Label of the apply_on (Link) field in DocType 'CRM Service Level Agreement' -#: crm/fcrm/doctype/crm_service_level_agreement/crm_service_level_agreement.json +#. Label of the apply_on (Link) field in PageType 'CRM Service Level Agreement' +#: crm/fcrm/pagetype/crm_service_level_agreement/crm_service_level_agreement.json msgid "Apply On" msgstr "Primeni na" -#. Label of the view (Select) field in DocType 'CRM Form Script' -#: crm/fcrm/doctype/crm_form_script/crm_form_script.json +#. Label of the view (Select) field in PageType 'CRM Form Script' +#: crm/fcrm/pagetype/crm_form_script/crm_form_script.json msgid "Apply To" msgstr "Primeni na" @@ -540,10 +540,10 @@ msgid "Are you sure you want to go back? Unsaved changes will be lost." msgstr "Da li ste sigurni da želite da se vratite? Nesačuvane izmene će biti izgubljene." #: frontend/src/composables/frappecloud.js:24 -msgid "Are you sure you want to login to your Frappe Cloud dashboard?" -msgstr "Da li ste sigurni da želite da se prijavite na svoju Frappe Cloud kontrolnu tablu?" +msgid "Are you sure you want to login to your Jingrow Cloud dashboard?" +msgstr "Da li ste sigurni da želite da se prijavite na svoju Jingrow Cloud kontrolnu tablu?" -#: crm/fcrm/doctype/erpnext_crm_settings/erpnext_crm_settings.js:9 +#: crm/fcrm/pagetype/erpnext_crm_settings/erpnext_crm_settings.js:9 msgid "Are you sure you want to reset 'Create Quotation from CRM Deal' Form Script?" msgstr "Da li ste sigurni da želite da resetujete skriptu obrasca 'Kreiraj ponudu iz CRM poslovne prilike'?" @@ -555,7 +555,7 @@ msgstr "Da li ste sigurni da želite da postavite valutu kao {0}? Ovo se ne mož msgid "Are you sure you want to unlink {0} linked item(s)?" msgstr "Da li ste sigurni da želite da poništite povezivanje {0} povezanih stavki?" -#: crm/fcrm/doctype/fcrm_settings/fcrm_settings.py:193 +#: crm/fcrm/pagetype/fcrm_settings/fcrm_settings.py:193 msgid "Ask your manager to set up the Exchange Rate Provider, as default provider does not support currency conversion for {0} to {1}." msgstr "Zatražite od svog menadžera da postavi provajdera deviznih kurseva, jer podrazumevani provajder ne podržava konverziju valuta iz {0} u {1}." @@ -581,8 +581,8 @@ msgstr "Dodeli" msgid "Assign to me" msgstr "Dodeli sebi" -#. Label of the assigned_to (Link) field in DocType 'CRM Task' -#: crm/fcrm/doctype/crm_task/crm_task.json +#. Label of the assigned_to (Link) field in PageType 'CRM Task' +#: crm/fcrm/pagetype/crm_task/crm_task.json msgid "Assigned To" msgstr "Dodeljeno" @@ -594,13 +594,13 @@ msgstr "Pravilo izvršioca" msgid "Assignees" msgstr "Izvršioci" -#. Option for the 'Type' (Select) field in DocType 'CRM Notification' -#: crm/fcrm/doctype/crm_notification/crm_notification.json +#. Option for the 'Type' (Select) field in PageType 'CRM Notification' +#: crm/fcrm/pagetype/crm_notification/crm_notification.json msgid "Assignment" msgstr "Zadatak" -#. Label of a shortcut in the Frappe CRM Workspace -#: crm/fcrm/workspace/frappe_crm/frappe_crm.json +#. Label of a shortcut in the Jingrow CRM Workspace +#: crm/fcrm/workspace/jingrow_crm/jingrow_crm.json msgid "Assignment Rule" msgstr "Pravilo dodele zadatka" @@ -678,14 +678,14 @@ msgstr "Prilozi" msgid "Attendees" msgstr "Učesnici" -#. Label of the auth_token (Password) field in DocType 'CRM Twilio Settings' -#: crm/fcrm/doctype/crm_twilio_settings/crm_twilio_settings.json +#. Label of the auth_token (Password) field in PageType 'CRM Twilio Settings' +#: crm/fcrm/pagetype/crm_twilio_settings/crm_twilio_settings.json msgid "Auth Token" msgstr "Autentifikacioni token" -#. Label of the auto_update_expected_deal_value (Check) field in DocType 'FCRM +#. Label of the auto_update_expected_deal_value (Check) field in PageType 'FCRM #. Settings' -#: crm/fcrm/doctype/fcrm_settings/fcrm_settings.json +#: crm/fcrm/pagetype/fcrm_settings/fcrm_settings.json msgid "Auto Update Expected Deal Value" msgstr "Automatsko ažuriranje očekivane vrednosti poslovne prilike" @@ -702,8 +702,8 @@ msgid "Auto update of expected deal value enabled" msgstr "Automatsko ažuriranje očekivane vrednosti poslovne prilike je omogućeno" #. Description of the 'Auto Update Expected Deal Value' (Check) field in -#. DocType 'FCRM Settings' -#: crm/fcrm/doctype/fcrm_settings/fcrm_settings.json +#. PageType 'FCRM Settings' +#: crm/fcrm/pagetype/fcrm_settings/fcrm_settings.json #: frontend/src/components/Settings/ForecastingSettings.vue:46 msgid "Automatically update \"Expected Deal Value\" based on the total value of associated products in a deal" msgstr "Automatski ažuriraj \"Očekivana vrednost poslovne prilike\" na osnovu ukupne vrednosti povezanih proizvoda u poslovnoj prilici" @@ -793,8 +793,8 @@ msgstr "Nazad" msgid "Back to file upload" msgstr "Nazad na otpremanje fajlova" -#. Option for the 'Status' (Select) field in DocType 'CRM Task' -#: crm/fcrm/doctype/crm_task/crm_task.json +#. Option for the 'Status' (Select) field in PageType 'CRM Task' +#: crm/fcrm/pagetype/crm_task/crm_task.json msgid "Backlog" msgstr "Zakašnjenje" @@ -818,8 +818,8 @@ msgstr "Naziv brenda" msgid "Brand settings" msgstr "Podešavanje brenda" -#. Label of the branding_tab (Tab Break) field in DocType 'FCRM Settings' -#: crm/fcrm/doctype/fcrm_settings/fcrm_settings.json +#. Label of the branding_tab (Tab Break) field in PageType 'FCRM Settings' +#: crm/fcrm/pagetype/fcrm_settings/fcrm_settings.json msgid "Branding" msgstr "Brendiranje" @@ -827,8 +827,8 @@ msgstr "Brendiranje" msgid "Bulk Edit" msgstr "Masovno uređivanje" -#. Option for the 'Status' (Select) field in DocType 'CRM Call Log' -#: crm/fcrm/doctype/crm_call_log/crm_call_log.json +#. Option for the 'Status' (Select) field in PageType 'CRM Call Log' +#: crm/fcrm/pagetype/crm_call_log/crm_call_log.json msgid "Busy" msgstr "Zauzet" @@ -838,174 +838,174 @@ msgstr "Zauzet" msgid "CC" msgstr "CC" -#. Name of a DocType -#: crm/fcrm/doctype/crm_call_log/crm_call_log.json +#. Name of a PageType +#: crm/fcrm/pagetype/crm_call_log/crm_call_log.json msgid "CRM Call Log" msgstr "CRM evidencija poziva" -#. Name of a DocType -#: crm/fcrm/doctype/crm_communication_status/crm_communication_status.json +#. Name of a PageType +#: crm/fcrm/pagetype/crm_communication_status/crm_communication_status.json msgid "CRM Communication Status" msgstr "CRM status komunikacije" -#. Name of a DocType -#: crm/fcrm/doctype/crm_contacts/crm_contacts.json +#. Name of a PageType +#: crm/fcrm/pagetype/crm_contacts/crm_contacts.json msgid "CRM Contacts" msgstr "CRM kontakti" -#. Name of a DocType -#: crm/fcrm/doctype/crm_dashboard/crm_dashboard.json +#. Name of a PageType +#: crm/fcrm/pagetype/crm_dashboard/crm_dashboard.json #: frontend/src/pages/Dashboard.vue:304 msgid "CRM Dashboard" msgstr "CRM kontrolna tabla" -#. Name of a DocType -#: crm/fcrm/doctype/crm_deal/crm_deal.json +#. Name of a PageType +#: crm/fcrm/pagetype/crm_deal/crm_deal.json msgid "CRM Deal" msgstr "CRM poslovna prilika" -#. Name of a DocType -#: crm/fcrm/doctype/crm_deal_status/crm_deal_status.json +#. Name of a PageType +#: crm/fcrm/pagetype/crm_deal_status/crm_deal_status.json msgid "CRM Deal Status" msgstr "CRM status poslovne prilike" -#. Name of a DocType -#: crm/fcrm/doctype/crm_dropdown_item/crm_dropdown_item.json +#. Name of a PageType +#: crm/fcrm/pagetype/crm_dropdown_item/crm_dropdown_item.json msgid "CRM Dropdown Item" msgstr "CRM stavka padajućeg menija" -#. Name of a DocType -#: crm/fcrm/doctype/crm_exotel_settings/crm_exotel_settings.json +#. Name of a PageType +#: crm/fcrm/pagetype/crm_exotel_settings/crm_exotel_settings.json msgid "CRM Exotel Settings" msgstr "CRM Exotel podešavanja" -#. Name of a DocType -#: crm/fcrm/doctype/crm_fields_layout/crm_fields_layout.json +#. Name of a PageType +#: crm/fcrm/pagetype/crm_fields_layout/crm_fields_layout.json msgid "CRM Fields Layout" msgstr "CRM raspored polja" -#. Name of a DocType -#: crm/fcrm/doctype/crm_form_script/crm_form_script.json +#. Name of a PageType +#: crm/fcrm/pagetype/crm_form_script/crm_form_script.json msgid "CRM Form Script" msgstr "CRM skripta obrasca" -#. Name of a DocType -#: crm/fcrm/doctype/crm_global_settings/crm_global_settings.json +#. Name of a PageType +#: crm/fcrm/pagetype/crm_global_settings/crm_global_settings.json msgid "CRM Global Settings" msgstr "CRM globalna podešavanja" -#. Name of a DocType -#: crm/fcrm/doctype/crm_holiday/crm_holiday.json +#. Name of a PageType +#: crm/fcrm/pagetype/crm_holiday/crm_holiday.json msgid "CRM Holiday" msgstr "CRM praznik" -#. Name of a DocType -#: crm/fcrm/doctype/crm_holiday_list/crm_holiday_list.json +#. Name of a PageType +#: crm/fcrm/pagetype/crm_holiday_list/crm_holiday_list.json msgid "CRM Holiday List" msgstr "CRM lista praznika" -#. Name of a DocType -#: crm/fcrm/doctype/crm_industry/crm_industry.json +#. Name of a PageType +#: crm/fcrm/pagetype/crm_industry/crm_industry.json msgid "CRM Industry" msgstr "CRM industrija" -#. Name of a DocType -#: crm/fcrm/doctype/crm_invitation/crm_invitation.json +#. Name of a PageType +#: crm/fcrm/pagetype/crm_invitation/crm_invitation.json msgid "CRM Invitation" msgstr "CRM pozivnica" -#. Name of a DocType -#: crm/fcrm/doctype/crm_lead/crm_lead.json +#. Name of a PageType +#: crm/fcrm/pagetype/crm_lead/crm_lead.json msgid "CRM Lead" msgstr "CRM potencijalni klijent" -#. Name of a DocType -#: crm/fcrm/doctype/crm_lead_source/crm_lead_source.json +#. Name of a PageType +#: crm/fcrm/pagetype/crm_lead_source/crm_lead_source.json msgid "CRM Lead Source" msgstr "CRM izvor potencijalnog klijenta" -#. Name of a DocType -#: crm/fcrm/doctype/crm_lead_status/crm_lead_status.json +#. Name of a PageType +#: crm/fcrm/pagetype/crm_lead_status/crm_lead_status.json msgid "CRM Lead Status" msgstr "CRM status potencijalnog klijenta" -#. Name of a DocType -#: crm/fcrm/doctype/crm_lost_reason/crm_lost_reason.json +#. Name of a PageType +#: crm/fcrm/pagetype/crm_lost_reason/crm_lost_reason.json msgid "CRM Lost Reason" msgstr "CRM razlog gubitka" -#. Name of a DocType -#: crm/fcrm/doctype/crm_notification/crm_notification.json +#. Name of a PageType +#: crm/fcrm/pagetype/crm_notification/crm_notification.json msgid "CRM Notification" msgstr "CRM obaveštenje" -#. Name of a DocType -#: crm/fcrm/doctype/crm_organization/crm_organization.json +#. Name of a PageType +#: crm/fcrm/pagetype/crm_organization/crm_organization.json msgid "CRM Organization" msgstr "CRM organizacija" -#. Label of a shortcut in the Frappe CRM Workspace -#: crm/fcrm/workspace/frappe_crm/frappe_crm.json +#. Label of a shortcut in the Jingrow CRM Workspace +#: crm/fcrm/workspace/jingrow_crm/jingrow_crm.json msgid "CRM Portal Page" msgstr "CRM stranica portala" -#. Name of a DocType -#: crm/fcrm/doctype/crm_product/crm_product.json +#. Name of a PageType +#: crm/fcrm/pagetype/crm_product/crm_product.json msgid "CRM Product" msgstr "CRM proizvod" -#. Name of a DocType -#: crm/fcrm/doctype/crm_products/crm_products.json +#. Name of a PageType +#: crm/fcrm/pagetype/crm_products/crm_products.json msgid "CRM Products" msgstr "CRM proizvodi" -#. Name of a DocType -#: crm/fcrm/doctype/crm_service_day/crm_service_day.json +#. Name of a PageType +#: crm/fcrm/pagetype/crm_service_day/crm_service_day.json msgid "CRM Service Day" msgstr "CRM dan pružanja usluge" -#. Name of a DocType -#: crm/fcrm/doctype/crm_service_level_agreement/crm_service_level_agreement.json +#. Name of a PageType +#: crm/fcrm/pagetype/crm_service_level_agreement/crm_service_level_agreement.json msgid "CRM Service Level Agreement" msgstr "CRM sporazum o nivou usluge" -#. Name of a DocType -#: crm/fcrm/doctype/crm_service_level_priority/crm_service_level_priority.json +#. Name of a PageType +#: crm/fcrm/pagetype/crm_service_level_priority/crm_service_level_priority.json msgid "CRM Service Level Priority" msgstr "CRM prioritet nivoa usluge" -#. Name of a DocType -#: crm/fcrm/doctype/crm_status_change_log/crm_status_change_log.json +#. Name of a PageType +#: crm/fcrm/pagetype/crm_status_change_log/crm_status_change_log.json msgid "CRM Status Change Log" msgstr "CRM evidencija promena statusa" -#. Name of a DocType -#: crm/fcrm/doctype/crm_task/crm_task.json +#. Name of a PageType +#: crm/fcrm/pagetype/crm_task/crm_task.json msgid "CRM Task" msgstr "CRM zadatak" -#. Name of a DocType -#: crm/fcrm/doctype/crm_telephony_agent/crm_telephony_agent.json +#. Name of a PageType +#: crm/fcrm/pagetype/crm_telephony_agent/crm_telephony_agent.json msgid "CRM Telephony Agent" msgstr "CRM agent telefonije" -#. Name of a DocType -#: crm/fcrm/doctype/crm_telephony_phone/crm_telephony_phone.json +#. Name of a PageType +#: crm/fcrm/pagetype/crm_telephony_phone/crm_telephony_phone.json msgid "CRM Telephony Phone" msgstr "CRM broj telefonije" -#. Name of a DocType -#: crm/fcrm/doctype/crm_territory/crm_territory.json +#. Name of a PageType +#: crm/fcrm/pagetype/crm_territory/crm_territory.json msgid "CRM Territory" msgstr "CRM teritorija" -#. Name of a DocType -#: crm/fcrm/doctype/crm_twilio_settings/crm_twilio_settings.json +#. Name of a PageType +#: crm/fcrm/pagetype/crm_twilio_settings/crm_twilio_settings.json msgid "CRM Twilio Settings" msgstr "CRM Twilio podešavanja" -#. Name of a DocType -#: crm/fcrm/doctype/crm_view_settings/crm_view_settings.json +#. Name of a PageType +#: crm/fcrm/pagetype/crm_view_settings/crm_view_settings.json msgid "CRM View Settings" msgstr "CRM podešavanje prikaza" @@ -1021,13 +1021,13 @@ msgstr "CSV" msgid "Call Details" msgstr "Detalji poziva" -#. Label of the receiver (Link) field in DocType 'CRM Call Log' -#: crm/fcrm/doctype/crm_call_log/crm_call_log.json +#. Label of the receiver (Link) field in PageType 'CRM Call Log' +#: crm/fcrm/pagetype/crm_call_log/crm_call_log.json msgid "Call Received By" msgstr "Poziv primio" -#. Description of the 'Duration' (Duration) field in DocType 'CRM Call Log' -#: crm/fcrm/doctype/crm_call_log/crm_call_log.json +#. Description of the 'Duration' (Duration) field in PageType 'CRM Call Log' +#: crm/fcrm/pagetype/crm_call_log/crm_call_log.json msgid "Call duration in seconds" msgstr "Trajanje poziva u sekundama" @@ -1045,8 +1045,8 @@ msgstr "Poziv koristeći {0}" msgid "Call with John Doe" msgstr "Poziv sa Petrom Petrovićem" -#. Label of the caller (Link) field in DocType 'CRM Call Log' -#: crm/fcrm/doctype/crm_call_log/crm_call_log.json +#. Label of the caller (Link) field in PageType 'CRM Call Log' +#: crm/fcrm/pagetype/crm_call_log/crm_call_log.json msgid "Caller" msgstr "Pozivalac" @@ -1083,10 +1083,10 @@ msgstr "Kamera" msgid "Cancel" msgstr "Otkaži" -#. Option for the 'Status' (Select) field in DocType 'CRM Call Log' -#. Option for the 'Status' (Select) field in DocType 'CRM Task' -#: crm/fcrm/doctype/crm_call_log/crm_call_log.json -#: crm/fcrm/doctype/crm_task/crm_task.json +#. Option for the 'Status' (Select) field in PageType 'CRM Call Log' +#. Option for the 'Status' (Select) field in PageType 'CRM Task' +#: crm/fcrm/pagetype/crm_call_log/crm_call_log.json +#: crm/fcrm/pagetype/crm_task/crm_task.json msgid "Canceled" msgstr "Otkazano" @@ -1094,7 +1094,7 @@ msgstr "Otkazano" msgid "Cannot change role of user with Admin access" msgstr "Nije moguće promeniti ulogu korisniku sa administratorskim pristupom" -#: crm/fcrm/doctype/fcrm_settings/fcrm_settings.py:34 +#: crm/fcrm/pagetype/fcrm_settings/fcrm_settings.py:34 msgid "Cannot delete standard items {0}" msgstr "Nije moguće obrisati standardnu stavku {0}" @@ -1189,8 +1189,8 @@ msgstr "Očisti dodeljene zadatke" msgid "Clear Sort" msgstr "Očisti sortiranje" -#. Label of the clear_table (Button) field in DocType 'CRM Holiday List' -#: crm/fcrm/doctype/crm_holiday_list/crm_holiday_list.json +#. Label of the clear_table (Button) field in PageType 'CRM Holiday List' +#: crm/fcrm/pagetype/crm_holiday_list/crm_holiday_list.json msgid "Clear Table" msgstr "Očisti tabelu" @@ -1211,8 +1211,8 @@ msgstr "Zatvori" msgid "Close panel" msgstr "Zatvori panel" -#. Label of the closed_date (Date) field in DocType 'CRM Deal' -#: crm/fcrm/doctype/crm_deal/crm_deal.json +#. Label of the closed_date (Date) field in PageType 'CRM Deal' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json msgid "Closed Date" msgstr "Datum zatvaranja" @@ -1224,10 +1224,10 @@ msgstr "Sažmi" msgid "Collapsible" msgstr "Može se sažeti" -#. Label of the color (Select) field in DocType 'CRM Deal Status' -#. Label of the color (Select) field in DocType 'CRM Lead Status' -#: crm/fcrm/doctype/crm_deal_status/crm_deal_status.json -#: crm/fcrm/doctype/crm_lead_status/crm_lead_status.json +#. Label of the color (Select) field in PageType 'CRM Deal Status' +#. Label of the color (Select) field in PageType 'CRM Lead Status' +#: crm/fcrm/pagetype/crm_deal_status/crm_deal_status.json +#: crm/fcrm/pagetype/crm_lead_status/crm_lead_status.json msgid "Color" msgstr "Boja" @@ -1235,20 +1235,20 @@ msgstr "Boja" msgid "Column" msgstr "Kolona" -#. Label of the column_field (Data) field in DocType 'CRM View Settings' -#: crm/fcrm/doctype/crm_view_settings/crm_view_settings.json +#. Label of the column_field (Data) field in PageType 'CRM View Settings' +#: crm/fcrm/pagetype/crm_view_settings/crm_view_settings.json #: frontend/src/components/Kanban/KanbanSettings.vue:12 msgid "Column Field" msgstr "Polje kolone" -#. Label of the columns (Code) field in DocType 'CRM View Settings' -#: crm/fcrm/doctype/crm_view_settings/crm_view_settings.json +#. Label of the columns (Code) field in PageType 'CRM View Settings' +#: crm/fcrm/pagetype/crm_view_settings/crm_view_settings.json #: frontend/src/components/ColumnSettings.vue:4 msgid "Columns" msgstr "Kolone" -#. Label of the comment (Link) field in DocType 'CRM Notification' -#: crm/fcrm/doctype/crm_notification/crm_notification.json +#. Label of the comment (Link) field in PageType 'CRM Notification' +#: crm/fcrm/pagetype/crm_notification/crm_notification.json #: frontend/src/components/CommentBox.vue:78 #: frontend/src/components/CommunicationArea.vue:16 #: frontend/src/components/Layouts/AppSidebar.vue:579 @@ -1264,20 +1264,20 @@ msgstr "Komentari" msgid "Common reasons for losing deals" msgstr "Uobičajeni razlozi za gubitak poslovnih prilika" -#. Label of the communication_status (Link) field in DocType 'CRM Deal' -#. Label of the communication_status (Link) field in DocType 'CRM Lead' -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_lead/crm_lead.json +#. Label of the communication_status (Link) field in PageType 'CRM Deal' +#. Label of the communication_status (Link) field in PageType 'CRM Lead' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_lead/crm_lead.json msgid "Communication Status" msgstr "Status komunikacije" -#. Label of a shortcut in the Frappe CRM Workspace -#: crm/fcrm/workspace/frappe_crm/frappe_crm.json +#. Label of a shortcut in the Jingrow CRM Workspace +#: crm/fcrm/workspace/jingrow_crm/jingrow_crm.json msgid "Communication Statuses" msgstr "Statusi komunikacije" -#. Label of the erpnext_company (Data) field in DocType 'ERPNext CRM Settings' -#: crm/fcrm/doctype/erpnext_crm_settings/erpnext_crm_settings.json +#. Label of the erpnext_company (Data) field in PageType 'ERPNext CRM Settings' +#: crm/fcrm/pagetype/erpnext_crm_settings/erpnext_crm_settings.json msgid "Company in ERPNext Site" msgstr "Kompanija na ERPNext veb-sajtu" @@ -1285,18 +1285,18 @@ msgstr "Kompanija na ERPNext veb-sajtu" msgid "Complete Registration" msgstr "Završi registraciju" -#. Option for the 'Status' (Select) field in DocType 'CRM Call Log' -#: crm/fcrm/doctype/crm_call_log/crm_call_log.json +#. Option for the 'Status' (Select) field in PageType 'CRM Call Log' +#: crm/fcrm/pagetype/crm_call_log/crm_call_log.json msgid "Completed" msgstr "Završeno" -#. Option for the 'Device' (Select) field in DocType 'CRM Telephony Agent' -#: crm/fcrm/doctype/crm_telephony_agent/crm_telephony_agent.json +#. Option for the 'Device' (Select) field in PageType 'CRM Telephony Agent' +#: crm/fcrm/pagetype/crm_telephony_agent/crm_telephony_agent.json msgid "Computer" msgstr "Računar" -#. Label of the condition (Code) field in DocType 'CRM Service Level Agreement' -#: crm/fcrm/doctype/crm_service_level_agreement/crm_service_level_agreement.json +#. Label of the condition (Code) field in PageType 'CRM Service Level Agreement' +#: crm/fcrm/pagetype/crm_service_level_agreement/crm_service_level_agreement.json msgid "Condition" msgstr "Uslov" @@ -1354,17 +1354,17 @@ msgstr "Potvrdi izmenu" msgid "Connect your email" msgstr "Povežite Vaš imejl" -#. Label of the contact (Link) field in DocType 'CRM Contacts' -#. Label of the contact (Link) field in DocType 'CRM Deal' -#: crm/fcrm/doctype/crm_contacts/crm_contacts.json -#: crm/fcrm/doctype/crm_deal/crm_deal.json +#. Label of the contact (Link) field in PageType 'CRM Contacts' +#. Label of the contact (Link) field in PageType 'CRM Deal' +#: crm/fcrm/pagetype/crm_contacts/crm_contacts.json +#: crm/fcrm/pagetype/crm_deal/crm_deal.json #: frontend/src/components/Layouts/AppSidebar.vue:552 #: frontend/src/components/Modals/ConvertToDealModal.vue:51 #: frontend/src/pages/MobileLead.vue:145 msgid "Contact" msgstr "Kontakt" -#: crm/fcrm/doctype/crm_lead/crm_lead.py:212 +#: crm/fcrm/pagetype/crm_lead/crm_lead.py:212 msgid "Contact Already Exists" msgstr "Kontakt već postoji" @@ -1384,7 +1384,7 @@ msgstr "Kontakt je dodat" msgid "Contact already added" msgstr "Kontakt je već dodat" -#: crm/fcrm/doctype/crm_lead/crm_lead.py:211 +#: crm/fcrm/pagetype/crm_lead/crm_lead.py:211 msgid "Contact already exists with {0}" msgstr "Kontakt već postoji sa {0}" @@ -1405,18 +1405,18 @@ msgstr "Kontakt je uklonjen" msgid "Contact updated" msgstr "Kontakt je ažuriran" -#. Label of the contacts_tab (Tab Break) field in DocType 'CRM Deal' -#. Label of the contacts (Table) field in DocType 'CRM Deal' -#. Label of a shortcut in the Frappe CRM Workspace -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/workspace/frappe_crm/frappe_crm.json +#. Label of the contacts_tab (Tab Break) field in PageType 'CRM Deal' +#. Label of the contacts (Table) field in PageType 'CRM Deal' +#. Label of a shortcut in the Jingrow CRM Workspace +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/workspace/jingrow_crm/jingrow_crm.json #: frontend/src/pages/Contact.vue:234 frontend/src/pages/MobileContact.vue:212 #: frontend/src/pages/MobileOrganization.vue:331 msgid "Contacts" msgstr "Kontakti" -#. Label of the content (Text Editor) field in DocType 'FCRM Note' -#: crm/fcrm/doctype/fcrm_note/fcrm_note.json +#. Label of the content (Text Editor) field in PageType 'FCRM Note' +#: crm/fcrm/pagetype/fcrm_note/fcrm_note.json #: frontend/src/components/Modals/NoteModal.vue:33 #: frontend/src/components/Settings/EmailTemplate/EditEmailTemplate.vue:89 #: frontend/src/components/Settings/EmailTemplate/EditEmailTemplate.vue:102 @@ -1456,8 +1456,8 @@ msgstr "Prebaci potencijalnog klijenta u poslovnu priliku" msgid "Convert to Deal" msgstr "Prebaci u poslovnu priliku" -#. Label of the converted (Check) field in DocType 'CRM Lead' -#: crm/fcrm/doctype/crm_lead/crm_lead.json +#. Label of the converted (Check) field in PageType 'CRM Lead' +#: crm/fcrm/pagetype/crm_lead/crm_lead.json msgid "Converted" msgstr "Prebačeno" @@ -1533,9 +1533,9 @@ msgstr "Kreiraj prikaz" msgid "Create an event" msgstr "Kreiraj događaj" -#. Label of the create_customer_on_status_change (Check) field in DocType +#. Label of the create_customer_on_status_change (Check) field in PageType #. 'ERPNext CRM Settings' -#: crm/fcrm/doctype/erpnext_crm_settings/erpnext_crm_settings.json +#: crm/fcrm/pagetype/erpnext_crm_settings/erpnext_crm_settings.json msgid "Create customer on status change" msgstr "Kreiraj klijenta pri promeni statusa" @@ -1560,13 +1560,13 @@ msgstr "Kreiraj svoju prvu belešku" msgid "Create your first task" msgstr "Kreiraj svoj prvi zadatak" -#. Label of the currency (Link) field in DocType 'CRM Deal' -#. Label of the currency (Link) field in DocType 'CRM Organization' -#. Label of the currency (Link) field in DocType 'FCRM Settings' -#. Label of the currency_tab (Tab Break) field in DocType 'FCRM Settings' -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_organization/crm_organization.json -#: crm/fcrm/doctype/fcrm_settings/fcrm_settings.json +#. Label of the currency (Link) field in PageType 'CRM Deal' +#. Label of the currency (Link) field in PageType 'CRM Organization' +#. Label of the currency (Link) field in PageType 'FCRM Settings' +#. Label of the currency_tab (Tab Break) field in PageType 'FCRM Settings' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_organization/crm_organization.json +#: crm/fcrm/pagetype/fcrm_settings/fcrm_settings.json #: frontend/src/components/Settings/CurrencySettings.vue:31 msgid "Currency" msgstr "Valuta" @@ -1631,13 +1631,13 @@ msgstr "Dnevne performanse po potencijalnim klijentima, poslovnim prilikama i do msgid "Data" msgstr "Podaci" -#. Option for the 'Type' (Select) field in DocType 'CRM Fields Layout' -#: crm/fcrm/doctype/crm_fields_layout/crm_fields_layout.json +#. Option for the 'Type' (Select) field in PageType 'CRM Fields Layout' +#: crm/fcrm/pagetype/crm_fields_layout/crm_fields_layout.json msgid "Data Fields" msgstr "Polja za podatak" -#. Label of the date (Date) field in DocType 'CRM Holiday' -#: crm/api/dashboard.py:601 crm/fcrm/doctype/crm_holiday/crm_holiday.json +#. Label of the date (Date) field in PageType 'CRM Holiday' +#: crm/api/dashboard.py:601 crm/fcrm/pagetype/crm_holiday/crm_holiday.json #: frontend/src/components/Calendar/CalendarEventPanel.vue:202 msgid "Date" msgstr "Datum" @@ -1660,23 +1660,23 @@ msgstr "Datum i vreme" msgid "Deal" msgstr "Poslovna prilika" -#. Label of the deal_owner (Link) field in DocType 'CRM Deal' -#: crm/fcrm/doctype/crm_deal/crm_deal.json +#. Label of the deal_owner (Link) field in PageType 'CRM Deal' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json msgid "Deal Owner" msgstr "Vlasnik poslovne prilike" -#. Label of the deal_status (Link) field in DocType 'ERPNext CRM Settings' -#: crm/fcrm/doctype/erpnext_crm_settings/erpnext_crm_settings.json +#. Label of the deal_status (Link) field in PageType 'ERPNext CRM Settings' +#: crm/fcrm/pagetype/erpnext_crm_settings/erpnext_crm_settings.json msgid "Deal Status" msgstr "Status poslovne prilike" -#. Label of a shortcut in the Frappe CRM Workspace -#: crm/fcrm/workspace/frappe_crm/frappe_crm.json +#. Label of a shortcut in the Jingrow CRM Workspace +#: crm/fcrm/workspace/jingrow_crm/jingrow_crm.json msgid "Deal Statuses" msgstr "Statusi poslovne prilike" -#. Label of the deal_value (Currency) field in DocType 'CRM Deal' -#: crm/fcrm/doctype/crm_deal/crm_deal.json +#. Label of the deal_value (Currency) field in PageType 'CRM Deal' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json msgid "Deal Value" msgstr "Vrednost poslovne prilike" @@ -1694,8 +1694,8 @@ msgstr "Vlasnik poslovne prilike" msgid "Deal value" msgstr "Vrednost poslovne prilike" -#. Label of a shortcut in the Frappe CRM Workspace -#: crm/fcrm/workspace/frappe_crm/frappe_crm.json +#. Label of a shortcut in the Jingrow CRM Workspace +#: crm/fcrm/workspace/jingrow_crm/jingrow_crm.json #: frontend/src/pages/Deal.vue:480 frontend/src/pages/MobileContact.vue:288 #: frontend/src/pages/MobileDeal.vue:384 #: frontend/src/pages/MobileOrganization.vue:325 @@ -1732,8 +1732,8 @@ msgstr "Poslovne prilike po teritoriji" msgid "Dear {{ lead_name }}, \\n\\nThis is a reminder for the payment of {{ grand_total }}. \\n\\nThanks, \\nFrappé" msgstr "Zdravo {{ lead_name }}, \\n\\nOvo je podsetnik za iznos od {{ grand_total }}.\\n\\nHvala, \\nFrappé" -#. Label of the default (Check) field in DocType 'CRM Service Level Agreement' -#: crm/fcrm/doctype/crm_service_level_agreement/crm_service_level_agreement.json +#. Label of the default (Check) field in PageType 'CRM Service Level Agreement' +#: crm/fcrm/pagetype/crm_service_level_agreement/crm_service_level_agreement.json msgid "Default" msgstr "Podrazumevano" @@ -1745,8 +1745,8 @@ msgstr "Podrazumevana prijemna pošta" msgid "Default Incoming" msgstr "Podrazumevani ulazni" -#. Label of the default_medium (Select) field in DocType 'CRM Telephony Agent' -#: crm/fcrm/doctype/crm_telephony_agent/crm_telephony_agent.json +#. Label of the default_medium (Select) field in PageType 'CRM Telephony Agent' +#: crm/fcrm/pagetype/crm_telephony_agent/crm_telephony_agent.json msgid "Default Medium" msgstr "Podrazumevano sredstvo" @@ -1754,9 +1754,9 @@ msgstr "Podrazumevano sredstvo" msgid "Default Outgoing" msgstr "Podrazumevani izlazni" -#. Label of the default_priority (Check) field in DocType 'CRM Service Level +#. Label of the default_priority (Check) field in PageType 'CRM Service Level #. Priority' -#: crm/fcrm/doctype/crm_service_level_priority/crm_service_level_priority.json +#: crm/fcrm/pagetype/crm_service_level_priority/crm_service_level_priority.json msgid "Default Priority" msgstr "Podrazumevani prioritet" @@ -1768,7 +1768,7 @@ msgstr "Podrazumevano slanje" msgid "Default Sending and Inbox" msgstr "Podrazumevano slanje i prijemna pošta" -#: crm/fcrm/doctype/crm_service_level_agreement/crm_service_level_agreement.py:33 +#: crm/fcrm/pagetype/crm_service_level_agreement/crm_service_level_agreement.py:33 msgid "Default Service Level Agreement already exists for {0}" msgstr "Podrazumevani sporazum o nivou usluge već postoji za {0}" @@ -1788,8 +1788,8 @@ msgstr "Podrazumevano sredstvo za pozivanje je uspešno ažurirano" msgid "Default medium" msgstr "Podrazumevano sredstvo" -#: crm/fcrm/doctype/fcrm_settings/fcrm_settings.js:18 -#: crm/fcrm/doctype/fcrm_settings/fcrm_settings.js:30 +#: crm/fcrm/pagetype/fcrm_settings/fcrm_settings.js:18 +#: crm/fcrm/pagetype/fcrm_settings/fcrm_settings.js:30 msgid "Default statuses, custom fields and layouts restored successfully." msgstr "Podrazumevani statusi, prilagođena polja i rasporedi su uspešno vraćeni." @@ -1825,7 +1825,7 @@ msgstr "Podrazumevani statusi, prilagođena polja i rasporedi su uspešno vraće msgid "Delete" msgstr "Obriši" -#: crm/fcrm/doctype/fcrm_settings/fcrm_settings.js:26 +#: crm/fcrm/pagetype/fcrm_settings/fcrm_settings.js:26 msgid "Delete & Restore" msgstr "Obriši i vrati" @@ -1883,14 +1883,14 @@ msgstr "Obriši {0} stavku" msgid "Delete {0} items" msgstr "Obriši {0} stavki" -#. Label of the description (Text Editor) field in DocType 'CRM Holiday' -#. Label of the description (Text Editor) field in DocType 'CRM Lost Reason' -#. Label of the description (Text Editor) field in DocType 'CRM Product' -#. Label of the description (Text Editor) field in DocType 'CRM Task' -#: crm/fcrm/doctype/crm_holiday/crm_holiday.json -#: crm/fcrm/doctype/crm_lost_reason/crm_lost_reason.json -#: crm/fcrm/doctype/crm_product/crm_product.json -#: crm/fcrm/doctype/crm_task/crm_task.json +#. Label of the description (Text Editor) field in PageType 'CRM Holiday' +#. Label of the description (Text Editor) field in PageType 'CRM Lost Reason' +#. Label of the description (Text Editor) field in PageType 'CRM Product' +#. Label of the description (Text Editor) field in PageType 'CRM Task' +#: crm/fcrm/pagetype/crm_holiday/crm_holiday.json +#: crm/fcrm/pagetype/crm_lost_reason/crm_lost_reason.json +#: crm/fcrm/pagetype/crm_product/crm_product.json +#: crm/fcrm/pagetype/crm_task/crm_task.json #: frontend/src/components/Calendar/CalendarEventPanel.vue:152 #: frontend/src/components/Modals/EventModal.vue:134 #: frontend/src/components/Modals/TaskModal.vue:36 @@ -1907,29 +1907,29 @@ msgstr "Opis je obavezan" msgid "Desk" msgstr "Radna površina" -#. Label of the details (Tab Break) field in DocType 'CRM Lead' -#. Label of the details (Text Editor) field in DocType 'CRM Lead Source' -#: crm/fcrm/doctype/crm_lead/crm_lead.json -#: crm/fcrm/doctype/crm_lead_source/crm_lead_source.json +#. Label of the details (Tab Break) field in PageType 'CRM Lead' +#. Label of the details (Text Editor) field in PageType 'CRM Lead Source' +#: crm/fcrm/pagetype/crm_lead/crm_lead.json +#: crm/fcrm/pagetype/crm_lead_source/crm_lead_source.json #: frontend/src/pages/MobileContact.vue:283 #: frontend/src/pages/MobileDeal.vue:424 frontend/src/pages/MobileLead.vue:331 #: frontend/src/pages/MobileOrganization.vue:320 msgid "Details" msgstr "Detalji" -#. Label of the call_receiving_device (Select) field in DocType 'CRM Telephony +#. Label of the call_receiving_device (Select) field in PageType 'CRM Telephony #. Agent' -#: crm/fcrm/doctype/crm_telephony_agent/crm_telephony_agent.json +#: crm/fcrm/pagetype/crm_telephony_agent/crm_telephony_agent.json #: frontend/src/components/FilesUploader/FilesUploaderArea.vue:39 msgid "Device" msgstr "Uređaj" -#: crm/fcrm/doctype/crm_form_script/crm_form_script.js:30 +#: crm/fcrm/pagetype/crm_form_script/crm_form_script.js:30 msgid "Disable" msgstr "Onemogući" -#. Label of the disabled (Check) field in DocType 'CRM Product' -#: crm/fcrm/doctype/crm_product/crm_product.json +#. Label of the disabled (Check) field in PageType 'CRM Product' +#: crm/fcrm/pagetype/crm_product/crm_product.json msgid "Disabled" msgstr "Onemogućeno" @@ -1943,27 +1943,27 @@ msgstr "Odbaci" msgid "Discard unsaved changes?" msgstr "Odbaciti nesačuvane izmene?" -#. Label of the discount_percentage (Percent) field in DocType 'CRM Products' -#: crm/fcrm/doctype/crm_products/crm_products.json +#. Label of the discount_percentage (Percent) field in PageType 'CRM Products' +#: crm/fcrm/pagetype/crm_products/crm_products.json msgid "Discount %" msgstr "Popust %" -#. Label of the discount_amount (Currency) field in DocType 'CRM Products' -#: crm/fcrm/doctype/crm_products/crm_products.json +#. Label of the discount_amount (Currency) field in PageType 'CRM Products' +#: crm/fcrm/pagetype/crm_products/crm_products.json msgid "Discount Amount" msgstr "Iznos popusta" -#. Label of the dt (Link) field in DocType 'CRM Form Script' -#. Label of the dt (Link) field in DocType 'CRM Global Settings' -#. Label of the dt (Link) field in DocType 'CRM View Settings' -#: crm/fcrm/doctype/crm_form_script/crm_form_script.json -#: crm/fcrm/doctype/crm_global_settings/crm_global_settings.json -#: crm/fcrm/doctype/crm_view_settings/crm_view_settings.json -msgid "DocType" -msgstr "DocType" +#. Label of the dt (Link) field in PageType 'CRM Form Script' +#. Label of the dt (Link) field in PageType 'CRM Global Settings' +#. Label of the dt (Link) field in PageType 'CRM View Settings' +#: crm/fcrm/pagetype/crm_form_script/crm_form_script.json +#: crm/fcrm/pagetype/crm_global_settings/crm_global_settings.json +#: crm/fcrm/pagetype/crm_view_settings/crm_view_settings.json +msgid "PageType" +msgstr "PageType" -#. Label of the dt (Link) field in DocType 'CRM Fields Layout' -#: crm/fcrm/doctype/crm_fields_layout/crm_fields_layout.json +#. Label of the dt (Link) field in PageType 'CRM Fields Layout' +#: crm/fcrm/pagetype/crm_fields_layout/crm_fields_layout.json msgid "Document Type" msgstr "Vrsta dokumenta" @@ -1983,8 +1983,8 @@ msgstr "Dokument je uspešno ažuriran" msgid "Documentation" msgstr "Dokumentacija" -#. Option for the 'Status' (Select) field in DocType 'CRM Task' -#: crm/fcrm/doctype/crm_task/crm_task.json +#. Option for the 'Status' (Select) field in PageType 'CRM Task' +#: crm/fcrm/pagetype/crm_task/crm_task.json msgid "Done" msgstr "Završeno" @@ -2006,13 +2006,13 @@ msgstr "Prevuci i otpusti fajlove ovde ili ih otpremi iz" msgid "Drop files here" msgstr "Otpusti fajlove ovde" -#. Label of the dropdown_items_tab (Tab Break) field in DocType 'FCRM Settings' -#: crm/fcrm/doctype/fcrm_settings/fcrm_settings.json +#. Label of the dropdown_items_tab (Tab Break) field in PageType 'FCRM Settings' +#: crm/fcrm/pagetype/fcrm_settings/fcrm_settings.json msgid "Dropdown Items" msgstr "Stavke padajućeg menija" -#. Label of the due_date (Datetime) field in DocType 'CRM Task' -#: crm/fcrm/doctype/crm_task/crm_task.json +#. Label of the due_date (Datetime) field in PageType 'CRM Task' +#: crm/fcrm/pagetype/crm_task/crm_task.json msgid "Due Date" msgstr "Datum dospeća" @@ -2048,10 +2048,10 @@ msgstr "Duplikat događaja" msgid "Duplicate template" msgstr "Duplikat šablona" -#. Label of the duration (Duration) field in DocType 'CRM Call Log' -#. Label of the duration (Duration) field in DocType 'CRM Status Change Log' -#: crm/fcrm/doctype/crm_call_log/crm_call_log.json -#: crm/fcrm/doctype/crm_status_change_log/crm_status_change_log.json +#. Label of the duration (Duration) field in PageType 'CRM Call Log' +#. Label of the duration (Duration) field in PageType 'CRM Status Change Log' +#: crm/fcrm/pagetype/crm_call_log/crm_call_log.json +#: crm/fcrm/pagetype/crm_status_change_log/crm_status_change_log.json msgid "Duration" msgstr "Trajanje" @@ -2060,28 +2060,28 @@ msgstr "Trajanje" msgid "ERPNext" msgstr "ERPNext" -#. Name of a DocType -#: crm/fcrm/doctype/erpnext_crm_settings/erpnext_crm_settings.json +#. Name of a PageType +#: crm/fcrm/pagetype/erpnext_crm_settings/erpnext_crm_settings.json msgid "ERPNext CRM Settings" msgstr "ERPNext CRM podešavanja" -#. Label of the section_break_oubd (Section Break) field in DocType 'ERPNext +#. Label of the section_break_oubd (Section Break) field in PageType 'ERPNext #. CRM Settings' -#: crm/fcrm/doctype/erpnext_crm_settings/erpnext_crm_settings.json +#: crm/fcrm/pagetype/erpnext_crm_settings/erpnext_crm_settings.json msgid "ERPNext Site API's" msgstr "ERPNext API sajta" -#. Label of the erpnext_site_url (Data) field in DocType 'ERPNext CRM Settings' -#: crm/fcrm/doctype/erpnext_crm_settings/erpnext_crm_settings.json +#. Label of the erpnext_site_url (Data) field in PageType 'ERPNext CRM Settings' +#: crm/fcrm/pagetype/erpnext_crm_settings/erpnext_crm_settings.json msgid "ERPNext Site URL" msgstr "ERPNext URL sajta" -#: crm/fcrm/doctype/erpnext_crm_settings/erpnext_crm_settings.py:25 +#: crm/fcrm/pagetype/erpnext_crm_settings/erpnext_crm_settings.py:25 msgid "ERPNext is not installed in the current site" msgstr "ERPNext nije instaliran na trenutnom sajtu" -#: crm/fcrm/doctype/erpnext_crm_settings/erpnext_crm_settings.py:98 -#: crm/fcrm/doctype/erpnext_crm_settings/erpnext_crm_settings.py:124 +#: crm/fcrm/pagetype/erpnext_crm_settings/erpnext_crm_settings.py:98 +#: crm/fcrm/pagetype/erpnext_crm_settings/erpnext_crm_settings.py:124 msgid "ERPNext is not integrated with the CRM" msgstr "ERPNext nije integrisan sa CRM-om" @@ -2191,12 +2191,12 @@ msgstr "Uređivanje reda {0}" msgid "Editing event" msgstr "Uređivanje događaja" -#. Label of the email (Data) field in DocType 'CRM Contacts' -#. Label of the email (Data) field in DocType 'CRM Invitation' -#. Label of the email (Data) field in DocType 'CRM Lead' -#: crm/fcrm/doctype/crm_contacts/crm_contacts.json -#: crm/fcrm/doctype/crm_invitation/crm_invitation.json -#: crm/fcrm/doctype/crm_lead/crm_lead.json frontend/src/pages/Contact.vue:510 +#. Label of the email (Data) field in PageType 'CRM Contacts' +#. Label of the email (Data) field in PageType 'CRM Invitation' +#. Label of the email (Data) field in PageType 'CRM Lead' +#: crm/fcrm/pagetype/crm_contacts/crm_contacts.json +#: crm/fcrm/pagetype/crm_invitation/crm_invitation.json +#: crm/fcrm/pagetype/crm_lead/crm_lead.json frontend/src/pages/Contact.vue:510 #: frontend/src/pages/MobileContact.vue:518 #: frontend/src/pages/MobileOrganization.vue:462 #: frontend/src/pages/MobileOrganization.vue:490 @@ -2213,8 +2213,8 @@ msgstr "Imejl nalozi" msgid "Email ID is required" msgstr "Imejl ID je obavezan" -#. Label of the email_sent_at (Datetime) field in DocType 'CRM Invitation' -#: crm/fcrm/doctype/crm_invitation/crm_invitation.json +#. Label of the email_sent_at (Datetime) field in PageType 'CRM Invitation' +#: crm/fcrm/pagetype/crm_invitation/crm_invitation.json msgid "Email Sent At" msgstr "Imejl poslat u" @@ -2272,12 +2272,12 @@ msgstr "Prazno - Izaberite polje po kojem želite da filtirate" msgid "Empty - Choose a field to sort by" msgstr "Prazno - Izaberite polje po kojem želite da sortirate" -#: crm/fcrm/doctype/crm_form_script/crm_form_script.js:30 +#: crm/fcrm/pagetype/crm_form_script/crm_form_script.js:30 msgid "Enable" msgstr "Omogući" -#. Label of the enable_forecasting (Check) field in DocType 'FCRM Settings' -#: crm/fcrm/doctype/fcrm_settings/fcrm_settings.json +#. Label of the enable_forecasting (Check) field in PageType 'FCRM Settings' +#: crm/fcrm/pagetype/fcrm_settings/fcrm_settings.json msgid "Enable Forecasting" msgstr "Omogući prognoziranje" @@ -2293,18 +2293,18 @@ msgstr "Omogući izlaznu" msgid "Enable forecasting" msgstr "Omogući prognoziranje" -#. Label of the enabled (Check) field in DocType 'CRM Exotel Settings' -#. Label of the enabled (Check) field in DocType 'CRM Form Script' -#. Label of the enabled (Check) field in DocType 'CRM Service Level Agreement' -#. Label of the enabled (Check) field in DocType 'CRM Twilio Settings' -#. Label of the enabled (Check) field in DocType 'ERPNext CRM Settings' -#. Label of the enabled (Check) field in DocType 'Helpdesk CRM Settings' -#: crm/fcrm/doctype/crm_exotel_settings/crm_exotel_settings.json -#: crm/fcrm/doctype/crm_form_script/crm_form_script.json -#: crm/fcrm/doctype/crm_service_level_agreement/crm_service_level_agreement.json -#: crm/fcrm/doctype/crm_twilio_settings/crm_twilio_settings.json -#: crm/fcrm/doctype/erpnext_crm_settings/erpnext_crm_settings.json -#: crm/fcrm/doctype/helpdesk_crm_settings/helpdesk_crm_settings.json +#. Label of the enabled (Check) field in PageType 'CRM Exotel Settings' +#. Label of the enabled (Check) field in PageType 'CRM Form Script' +#. Label of the enabled (Check) field in PageType 'CRM Service Level Agreement' +#. Label of the enabled (Check) field in PageType 'CRM Twilio Settings' +#. Label of the enabled (Check) field in PageType 'ERPNext CRM Settings' +#. Label of the enabled (Check) field in PageType 'Helpdesk CRM Settings' +#: crm/fcrm/pagetype/crm_exotel_settings/crm_exotel_settings.json +#: crm/fcrm/pagetype/crm_form_script/crm_form_script.json +#: crm/fcrm/pagetype/crm_service_level_agreement/crm_service_level_agreement.json +#: crm/fcrm/pagetype/crm_twilio_settings/crm_twilio_settings.json +#: crm/fcrm/pagetype/erpnext_crm_settings/erpnext_crm_settings.json +#: crm/fcrm/pagetype/helpdesk_crm_settings/helpdesk_crm_settings.json #: frontend/src/components/Settings/AssignmentRules/AssignmentRuleView.vue:32 #: frontend/src/components/Settings/AssignmentRules/AssignmentRulesList.vue:21 #: frontend/src/components/Settings/EmailTemplate/EditEmailTemplate.vue:18 @@ -2313,15 +2313,15 @@ msgstr "Omogući prognoziranje" msgid "Enabled" msgstr "Omogućeno" -#. Label of the end_date (Date) field in DocType 'CRM Service Level Agreement' -#: crm/fcrm/doctype/crm_service_level_agreement/crm_service_level_agreement.json +#. Label of the end_date (Date) field in PageType 'CRM Service Level Agreement' +#: crm/fcrm/pagetype/crm_service_level_agreement/crm_service_level_agreement.json msgid "End Date" msgstr "Datum završetka" -#. Label of the end_time (Datetime) field in DocType 'CRM Call Log' -#. Label of the end_time (Time) field in DocType 'CRM Service Day' -#: crm/fcrm/doctype/crm_call_log/crm_call_log.json -#: crm/fcrm/doctype/crm_service_day/crm_service_day.json +#. Label of the end_time (Datetime) field in PageType 'CRM Call Log' +#. Label of the end_time (Time) field in PageType 'CRM Service Day' +#: crm/fcrm/pagetype/crm_call_log/crm_call_log.json +#: crm/fcrm/pagetype/crm_service_day/crm_service_day.json #: frontend/src/components/Calendar/CalendarEventPanel.vue:242 #: frontend/src/components/Modals/EventModal.vue:112 msgid "End Time" @@ -2362,15 +2362,15 @@ msgstr "Greška prilikom prebacivanja u poslovnu priliku: {0}" msgid "Error updating field" msgstr "Greška prilikom ažuriranja polja" -#: crm/fcrm/doctype/erpnext_crm_settings/erpnext_crm_settings.py:279 +#: crm/fcrm/pagetype/erpnext_crm_settings/erpnext_crm_settings.py:279 msgid "Error while creating customer in ERPNext, check error log for more details" msgstr "Greška prilikom kreiranja klijenta u ERPNext-u, molimo Vas da proverite evidenciju grešaka za više detalja" -#: crm/fcrm/doctype/erpnext_crm_settings/erpnext_crm_settings.py:191 +#: crm/fcrm/pagetype/erpnext_crm_settings/erpnext_crm_settings.py:191 msgid "Error while creating prospect in ERPNext, check error log for more details" msgstr "Greška prilikom kreiranja potencijalnog kupca u ERPNext-u, molimo Vas da proverite evidenciju grešaka za više detalja" -#: crm/fcrm/doctype/erpnext_crm_settings/erpnext_crm_settings.py:117 +#: crm/fcrm/pagetype/erpnext_crm_settings/erpnext_crm_settings.py:117 msgid "Error while fetching customer in ERPNext, check error log for more details" msgstr "Greška prilikom preuzimanja podataka o klijentima u ERPNext-u, molimo Vas da proverite evidenciju grešaka za više detalja" @@ -2395,16 +2395,16 @@ msgstr "Događaji" msgid "Excel" msgstr "Excel" -#. Label of the exchange_rate (Float) field in DocType 'CRM Deal' -#. Label of the exchange_rate (Float) field in DocType 'CRM Organization' -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_organization/crm_organization.json +#. Label of the exchange_rate (Float) field in PageType 'CRM Deal' +#. Label of the exchange_rate (Float) field in PageType 'CRM Organization' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_organization/crm_organization.json msgid "Exchange Rate" msgstr "Devizni kurs" -#. Label of the exchange_rate_provider_section (Section Break) field in DocType +#. Label of the exchange_rate_provider_section (Section Break) field in PageType #. 'FCRM Settings' -#: crm/fcrm/doctype/fcrm_settings/fcrm_settings.json +#: crm/fcrm/pagetype/fcrm_settings/fcrm_settings.json msgid "Exchange Rate Provider" msgstr "Provajder deviznih kurseva" @@ -2412,12 +2412,12 @@ msgstr "Provajder deviznih kurseva" msgid "Exchange rate provider" msgstr "Provajder deviznih kurseva" -#. Option for the 'Telephony Medium' (Select) field in DocType 'CRM Call Log' -#. Label of the exotel (Check) field in DocType 'CRM Telephony Agent' -#. Option for the 'Default Medium' (Select) field in DocType 'CRM Telephony +#. Option for the 'Telephony Medium' (Select) field in PageType 'CRM Call Log' +#. Label of the exotel (Check) field in PageType 'CRM Telephony Agent' +#. Option for the 'Default Medium' (Select) field in PageType 'CRM Telephony #. Agent' -#: crm/fcrm/doctype/crm_call_log/crm_call_log.json -#: crm/fcrm/doctype/crm_telephony_agent/crm_telephony_agent.json +#: crm/fcrm/pagetype/crm_call_log/crm_call_log.json +#: crm/fcrm/pagetype/crm_telephony_agent/crm_telephony_agent.json #: frontend/src/components/Layouts/AppSidebar.vue:602 #: frontend/src/components/Settings/TelephonySettings.vue:41 #: frontend/src/components/Settings/TelephonySettings.vue:63 @@ -2428,8 +2428,8 @@ msgstr "Exotel" msgid "Exotel Exception" msgstr "Exotel izuzetak" -#. Label of the exotel_number (Data) field in DocType 'CRM Telephony Agent' -#: crm/fcrm/doctype/crm_telephony_agent/crm_telephony_agent.json +#. Label of the exotel_number (Data) field in PageType 'CRM Telephony Agent' +#: crm/fcrm/pagetype/crm_telephony_agent/crm_telephony_agent.json msgid "Exotel Number" msgstr "Exotel broj" @@ -2453,26 +2453,26 @@ msgstr "Exotel podešavanja su uspešno ažurirana" msgid "Expand" msgstr "Proširi" -#. Label of the expected_closure_date (Date) field in DocType 'CRM Deal' -#: crm/fcrm/doctype/crm_deal/crm_deal.json +#. Label of the expected_closure_date (Date) field in PageType 'CRM Deal' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json msgid "Expected Closure Date" msgstr "Očekivani datum zatvaranja" -#: crm/fcrm/doctype/crm_deal/crm_deal.py:173 +#: crm/fcrm/pagetype/crm_deal/crm_deal.py:173 msgid "Expected Closure Date is required." msgstr "Očekivani datum zatvaranja je obavezan." -#. Label of the expected_deal_value (Currency) field in DocType 'CRM Deal' -#: crm/fcrm/doctype/crm_deal/crm_deal.json +#. Label of the expected_deal_value (Currency) field in PageType 'CRM Deal' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json msgid "Expected Deal Value" msgstr "Očekivana vrednost poslovne prilike" -#: crm/fcrm/doctype/crm_deal/crm_deal.py:171 +#: crm/fcrm/pagetype/crm_deal/crm_deal.py:171 msgid "Expected Deal Value is required." msgstr "Očekivana vrednost poslovne prilike je obavezna." -#. Option for the 'Status' (Select) field in DocType 'CRM Invitation' -#: crm/fcrm/doctype/crm_invitation/crm_invitation.json +#. Option for the 'Status' (Select) field in PageType 'CRM Invitation' +#: crm/fcrm/pagetype/crm_invitation/crm_invitation.json msgid "Expired" msgstr "Isteklo" @@ -2489,22 +2489,22 @@ msgstr "Izvoz svih {0} zapisa" msgid "Export Type" msgstr "Vrsta izvoza" -#. Name of a DocType -#: crm/fcrm/doctype/fcrm_note/fcrm_note.json +#. Name of a PageType +#: crm/fcrm/pagetype/fcrm_note/fcrm_note.json msgid "FCRM Note" msgstr "FCRM beleška" -#. Name of a DocType -#: crm/fcrm/doctype/fcrm_settings/fcrm_settings.json +#. Name of a PageType +#: crm/fcrm/pagetype/fcrm_settings/fcrm_settings.json msgid "FCRM Settings" msgstr "FCRM podešavanja" -#. Option for the 'Status' (Select) field in DocType 'CRM Call Log' -#. Option for the 'SLA Status' (Select) field in DocType 'CRM Deal' -#. Option for the 'SLA Status' (Select) field in DocType 'CRM Lead' -#: crm/fcrm/doctype/crm_call_log/crm_call_log.json -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_lead/crm_lead.json +#. Option for the 'Status' (Select) field in PageType 'CRM Call Log' +#. Option for the 'SLA Status' (Select) field in PageType 'CRM Deal' +#. Option for the 'SLA Status' (Select) field in PageType 'CRM Lead' +#: crm/fcrm/pagetype/crm_call_log/crm_call_log.json +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_lead/crm_lead.json msgid "Failed" msgstr "Neuspešno" @@ -2528,7 +2528,7 @@ msgstr "Neuspešno kreiranje šablona" msgid "Failed to delete template" msgstr "Neuspešno brisanje šablona" -#: crm/fcrm/doctype/fcrm_settings/fcrm_settings.py:205 +#: crm/fcrm/pagetype/fcrm_settings/fcrm_settings.py:205 msgid "Failed to fetch exchange rate from {0} to {1} on {2}. Please check your internet connection or try again later." msgstr "Neuspešno preuzimanje deviznog kursa iz {0} u {1} na {2}. Proverite svoju internet konekciju ili pokušajte ponovo kasnije." @@ -2561,8 +2561,8 @@ msgstr "Neuspešno ažuriranje profila" msgid "Failed to update template" msgstr "Neuspešno ažuriranje šablona" -#. Label of the favicon (Attach) field in DocType 'FCRM Settings' -#: crm/fcrm/doctype/fcrm_settings/fcrm_settings.json +#. Label of the favicon (Attach) field in PageType 'FCRM Settings' +#: crm/fcrm/pagetype/fcrm_settings/fcrm_settings.json #: frontend/src/components/Settings/BrandSettings.vue:87 msgid "Favicon" msgstr "Favicon" @@ -2586,23 +2586,23 @@ msgid "File \"{0}\" was skipped because only {1} uploads are allowed" msgstr "Fajl \"{0}\" je preskočen jer je dozvoljeno samo {1} otpremanja" #: frontend/src/components/FilesUploader/FilesUploaderArea.vue:359 -msgid "File \"{0}\" was skipped because only {1} uploads are allowed for DocType \"{2}\"" -msgstr "Fajl \"{0}\" je preskočen jer je dozvoljeno samo {1} otpremanja za DocType \"{2}\"" +msgid "File \"{0}\" was skipped because only {1} uploads are allowed for PageType \"{2}\"" +msgstr "Fajl \"{0}\" je preskočen jer je dozvoljeno samo {1} otpremanja za PageType \"{2}\"" #: frontend/src/components/Filter.vue:6 msgid "Filter" msgstr "Filter" -#. Label of the filters (Code) field in DocType 'CRM View Settings' -#. Label of the filters_tab (Tab Break) field in DocType 'CRM View Settings' -#: crm/fcrm/doctype/crm_view_settings/crm_view_settings.json +#. Label of the filters (Code) field in PageType 'CRM View Settings' +#. Label of the filters_tab (Tab Break) field in PageType 'CRM View Settings' +#: crm/fcrm/pagetype/crm_view_settings/crm_view_settings.json msgid "Filters" msgstr "Filteri" -#. Label of the first_name (Data) field in DocType 'CRM Deal' -#. Label of the first_name (Data) field in DocType 'CRM Lead' -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_lead/crm_lead.json +#. Label of the first_name (Data) field in PageType 'CRM Deal' +#. Label of the first_name (Data) field in PageType 'CRM Lead' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_lead/crm_lead.json #: frontend/src/components/ColumnSettings.vue:103 #: frontend/src/components/Filter.vue:57 frontend/src/components/Filter.vue:88 #: frontend/src/components/SortBy.vue:6 frontend/src/components/SortBy.vue:103 @@ -2614,30 +2614,30 @@ msgstr "Ime" msgid "First Name is mandatory" msgstr "Ime je obavezno" -#. Label of the first_responded_on (Datetime) field in DocType 'CRM Deal' -#. Label of the first_responded_on (Datetime) field in DocType 'CRM Lead' -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_lead/crm_lead.json +#. Label of the first_responded_on (Datetime) field in PageType 'CRM Deal' +#. Label of the first_responded_on (Datetime) field in PageType 'CRM Lead' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_lead/crm_lead.json msgid "First Responded On" msgstr "Prvi odgovor dat na" -#. Option for the 'SLA Status' (Select) field in DocType 'CRM Deal' -#. Option for the 'SLA Status' (Select) field in DocType 'CRM Lead' -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_lead/crm_lead.json +#. Option for the 'SLA Status' (Select) field in PageType 'CRM Deal' +#. Option for the 'SLA Status' (Select) field in PageType 'CRM Lead' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_lead/crm_lead.json msgid "First Response Due" msgstr "Rok za prvi odgovor" -#. Label of the first_response_time (Duration) field in DocType 'CRM Service +#. Label of the first_response_time (Duration) field in PageType 'CRM Service #. Level Priority' -#: crm/fcrm/doctype/crm_service_level_priority/crm_service_level_priority.json +#: crm/fcrm/pagetype/crm_service_level_priority/crm_service_level_priority.json msgid "First Response TIme" msgstr "Vreme za prvi odgovor" -#. Label of the first_response_time (Duration) field in DocType 'CRM Deal' -#. Label of the first_response_time (Duration) field in DocType 'CRM Lead' -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_lead/crm_lead.json +#. Label of the first_response_time (Duration) field in PageType 'CRM Deal' +#. Label of the first_response_time (Duration) field in PageType 'CRM Lead' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_lead/crm_lead.json msgid "First Response Time" msgstr "Vreme za prvi odgovor" @@ -2670,66 +2670,66 @@ msgstr "Prognoziranje je uspešno onemogućeno" msgid "Forecasting enabled successfully" msgstr "Prognoziranje je uspešno omogućeno" -#. Option for the 'Apply To' (Select) field in DocType 'CRM Form Script' -#: crm/fcrm/doctype/crm_form_script/crm_form_script.json +#. Option for the 'Apply To' (Select) field in PageType 'CRM Form Script' +#: crm/fcrm/pagetype/crm_form_script/crm_form_script.json msgid "Form" msgstr "Obrazac" -#: crm/fcrm/doctype/erpnext_crm_settings/erpnext_crm_settings.js:19 +#: crm/fcrm/pagetype/erpnext_crm_settings/erpnext_crm_settings.js:19 msgid "Form Script updated successfully" msgstr "Skripta obrasca je uspešno ažurirana" #. Name of a Workspace -#: crm/fcrm/workspace/frappe_crm/frappe_crm.json -msgid "Frappe CRM" -msgstr "Frappe CRM" +#: crm/fcrm/workspace/jingrow_crm/jingrow_crm.json +msgid "Jingrow CRM" +msgstr "Jingrow CRM" #: frontend/src/components/Layouts/AppSidebar.vue:608 -msgid "Frappe CRM mobile" -msgstr "Frappe CRM mobilna aplikacija" +msgid "Jingrow CRM mobile" +msgstr "Jingrow CRM mobilna aplikacija" -#. Option for the 'Weekly Off' (Select) field in DocType 'CRM Holiday List' -#. Option for the 'Workday' (Select) field in DocType 'CRM Service Day' -#: crm/fcrm/doctype/crm_holiday_list/crm_holiday_list.json -#: crm/fcrm/doctype/crm_service_day/crm_service_day.json +#. Option for the 'Weekly Off' (Select) field in PageType 'CRM Holiday List' +#. Option for the 'Workday' (Select) field in PageType 'CRM Service Day' +#: crm/fcrm/pagetype/crm_holiday_list/crm_holiday_list.json +#: crm/fcrm/pagetype/crm_service_day/crm_service_day.json msgid "Friday" msgstr "Petak" -#. Label of the from (Data) field in DocType 'CRM Call Log' -#. Label of the from (Data) field in DocType 'CRM Status Change Log' -#: crm/fcrm/doctype/crm_call_log/crm_call_log.json -#: crm/fcrm/doctype/crm_status_change_log/crm_status_change_log.json +#. Label of the from (Data) field in PageType 'CRM Call Log' +#. Label of the from (Data) field in PageType 'CRM Status Change Log' +#: crm/fcrm/pagetype/crm_call_log/crm_call_log.json +#: crm/fcrm/pagetype/crm_status_change_log/crm_status_change_log.json msgid "From" msgstr "Od" -#. Label of the from_date (Date) field in DocType 'CRM Holiday List' -#. Label of the from_date (Datetime) field in DocType 'CRM Status Change Log' -#: crm/fcrm/doctype/crm_holiday_list/crm_holiday_list.json -#: crm/fcrm/doctype/crm_status_change_log/crm_status_change_log.json +#. Label of the from_date (Date) field in PageType 'CRM Holiday List' +#. Label of the from_date (Datetime) field in PageType 'CRM Status Change Log' +#: crm/fcrm/pagetype/crm_holiday_list/crm_holiday_list.json +#: crm/fcrm/pagetype/crm_status_change_log/crm_status_change_log.json msgid "From Date" msgstr "Datum početka" -#. Label of the from_type (Data) field in DocType 'CRM Status Change Log' -#: crm/fcrm/doctype/crm_status_change_log/crm_status_change_log.json +#. Label of the from_type (Data) field in PageType 'CRM Status Change Log' +#: crm/fcrm/pagetype/crm_status_change_log/crm_status_change_log.json msgid "From Type" msgstr "Od vrste" -#. Label of the from_user (Link) field in DocType 'CRM Notification' -#: crm/fcrm/doctype/crm_notification/crm_notification.json +#. Label of the from_user (Link) field in PageType 'CRM Notification' +#: crm/fcrm/pagetype/crm_notification/crm_notification.json msgid "From User" msgstr "Od strane korisnika" -#. Option for the 'SLA Status' (Select) field in DocType 'CRM Deal' -#. Option for the 'SLA Status' (Select) field in DocType 'CRM Lead' -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_lead/crm_lead.json +#. Option for the 'SLA Status' (Select) field in PageType 'CRM Deal' +#. Option for the 'SLA Status' (Select) field in PageType 'CRM Lead' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_lead/crm_lead.json msgid "Fulfilled" msgstr "Ispunjeno" -#. Label of the full_name (Data) field in DocType 'CRM Contacts' -#. Label of the lead_name (Data) field in DocType 'CRM Lead' -#: crm/fcrm/doctype/crm_contacts/crm_contacts.json -#: crm/fcrm/doctype/crm_lead/crm_lead.json +#. Label of the full_name (Data) field in PageType 'CRM Contacts' +#. Label of the lead_name (Data) field in PageType 'CRM Lead' +#: crm/fcrm/pagetype/crm_contacts/crm_contacts.json +#: crm/fcrm/pagetype/crm_lead/crm_lead.json msgid "Full Name" msgstr "Ime i prezime" @@ -2742,12 +2742,12 @@ msgstr "Konverzija u prodajnom levku" msgid "GMT+5:30" msgstr "GMT+5:30" -#. Label of the gender (Link) field in DocType 'CRM Contacts' -#. Label of the gender (Link) field in DocType 'CRM Deal' -#. Label of the gender (Link) field in DocType 'CRM Lead' -#: crm/fcrm/doctype/crm_contacts/crm_contacts.json -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_lead/crm_lead.json +#. Label of the gender (Link) field in PageType 'CRM Contacts' +#. Label of the gender (Link) field in PageType 'CRM Deal' +#. Label of the gender (Link) field in PageType 'CRM Lead' +#: crm/fcrm/pagetype/crm_contacts/crm_contacts.json +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_lead/crm_lead.json msgid "Gender" msgstr "Rod" @@ -2771,20 +2771,20 @@ msgstr "Idi na stranicu za pozivanje" msgid "Go to website" msgstr "Idi na veb-sajt" -#. Option for the 'Type' (Select) field in DocType 'CRM Fields Layout' -#: crm/fcrm/doctype/crm_fields_layout/crm_fields_layout.json +#. Option for the 'Type' (Select) field in PageType 'CRM Fields Layout' +#: crm/fcrm/pagetype/crm_fields_layout/crm_fields_layout.json msgid "Grid Row" msgstr "Red u tabeli" -#. Label of the group_by_tab (Tab Break) field in DocType 'CRM View Settings' -#: crm/fcrm/doctype/crm_view_settings/crm_view_settings.json +#. Label of the group_by_tab (Tab Break) field in PageType 'CRM View Settings' +#: crm/fcrm/pagetype/crm_view_settings/crm_view_settings.json #: frontend/src/components/ViewControls.vue:379 #: frontend/src/components/ViewControls.vue:611 frontend/src/utils/view.js:16 msgid "Group By" msgstr "Grupisano po" -#. Label of the group_by_field (Data) field in DocType 'CRM View Settings' -#: crm/fcrm/doctype/crm_view_settings/crm_view_settings.json +#. Label of the group_by_field (Data) field in PageType 'CRM View Settings' +#: crm/fcrm/pagetype/crm_view_settings/crm_view_settings.json msgid "Group By Field" msgstr "Grupisano po polju" @@ -2808,28 +2808,28 @@ msgstr "Pomoć" msgid "Helpdesk" msgstr "Helpdesk" -#. Name of a DocType -#: crm/fcrm/doctype/helpdesk_crm_settings/helpdesk_crm_settings.json +#. Name of a PageType +#: crm/fcrm/pagetype/helpdesk_crm_settings/helpdesk_crm_settings.json msgid "Helpdesk CRM Settings" msgstr "Helpdesk CRM podešavanja" -#. Label of the helpdesk_site_apis_section (Section Break) field in DocType +#. Label of the helpdesk_site_apis_section (Section Break) field in PageType #. 'Helpdesk CRM Settings' -#: crm/fcrm/doctype/helpdesk_crm_settings/helpdesk_crm_settings.json +#: crm/fcrm/pagetype/helpdesk_crm_settings/helpdesk_crm_settings.json msgid "Helpdesk Site API's" msgstr "Helpdesk API sajta" -#. Label of the helpdesk_site_url (Data) field in DocType 'Helpdesk CRM +#. Label of the helpdesk_site_url (Data) field in PageType 'Helpdesk CRM #. Settings' -#: crm/fcrm/doctype/helpdesk_crm_settings/helpdesk_crm_settings.json +#: crm/fcrm/pagetype/helpdesk_crm_settings/helpdesk_crm_settings.json msgid "Helpdesk Site URL" msgstr "Helpdesk URL sajta" -#: crm/fcrm/doctype/helpdesk_crm_settings/helpdesk_crm_settings.py:18 +#: crm/fcrm/pagetype/helpdesk_crm_settings/helpdesk_crm_settings.py:18 msgid "Helpdesk is not installed in the current site" msgstr "Helpdesk nije instaliran na trenutnom sajtu" -#: crm/fcrm/doctype/helpdesk_crm_settings/helpdesk_crm_settings.py:40 +#: crm/fcrm/pagetype/helpdesk_crm_settings/helpdesk_crm_settings.py:40 msgid "Helpdesk is not integrated with the CRM" msgstr "Helpdesk nije integrisan sa CRM-om" @@ -2845,8 +2845,8 @@ msgstr "Helpdesk podešavanja su ažurirana" msgid "Hi John, \\n\\nCan you please provide more details on this..." msgstr "Zdravo Petre, \\n\\nMožete li molim Vas da pružite više detalja o ovome..." -#. Label of the hidden (Check) field in DocType 'CRM Dropdown Item' -#: crm/fcrm/doctype/crm_dropdown_item/crm_dropdown_item.json +#. Label of the hidden (Check) field in PageType 'CRM Dropdown Item' +#: crm/fcrm/pagetype/crm_dropdown_item/crm_dropdown_item.json msgid "Hidden" msgstr "Sakriveno" @@ -2877,26 +2877,26 @@ msgstr "Sakrij oznaku" msgid "Hide preview" msgstr "Sakrij prikaz" -#. Option for the 'Priority' (Select) field in DocType 'CRM Task' -#: crm/fcrm/doctype/crm_task/crm_task.json +#. Option for the 'Priority' (Select) field in PageType 'CRM Task' +#: crm/fcrm/pagetype/crm_task/crm_task.json msgid "High" msgstr "Visok" -#. Label of the holiday_list (Link) field in DocType 'CRM Service Level +#. Label of the holiday_list (Link) field in PageType 'CRM Service Level #. Agreement' -#: crm/fcrm/doctype/crm_service_level_agreement/crm_service_level_agreement.json +#: crm/fcrm/pagetype/crm_service_level_agreement/crm_service_level_agreement.json msgid "Holiday List" msgstr "Lista praznika" -#. Label of the holiday_list_name (Data) field in DocType 'CRM Holiday List' -#: crm/fcrm/doctype/crm_holiday_list/crm_holiday_list.json +#. Label of the holiday_list_name (Data) field in PageType 'CRM Holiday List' +#: crm/fcrm/pagetype/crm_holiday_list/crm_holiday_list.json msgid "Holiday List Name" msgstr "Naziv liste praznika" -#. Label of the holidays_section (Section Break) field in DocType 'CRM Holiday +#. Label of the holidays_section (Section Break) field in PageType 'CRM Holiday #. List' -#. Label of the holidays (Table) field in DocType 'CRM Holiday List' -#: crm/fcrm/doctype/crm_holiday_list/crm_holiday_list.json +#. Label of the holidays (Table) field in PageType 'CRM Holiday List' +#: crm/fcrm/pagetype/crm_holiday_list/crm_holiday_list.json msgid "Holidays" msgstr "Praznici" @@ -2914,15 +2914,15 @@ msgstr "Radnje na početnoj stranici" msgid "I understand, add conditions" msgstr "Razumem, dodaj uslove" -#. Label of the id (Data) field in DocType 'CRM Call Log' -#: crm/fcrm/doctype/crm_call_log/crm_call_log.json +#. Label of the id (Data) field in PageType 'CRM Call Log' +#: crm/fcrm/pagetype/crm_call_log/crm_call_log.json msgid "ID" msgstr "ID" -#. Label of the icon (Code) field in DocType 'CRM Dropdown Item' -#. Label of the icon (Data) field in DocType 'CRM View Settings' -#: crm/fcrm/doctype/crm_dropdown_item/crm_dropdown_item.json -#: crm/fcrm/doctype/crm_view_settings/crm_view_settings.json +#. Label of the icon (Code) field in PageType 'CRM Dropdown Item' +#. Label of the icon (Data) field in PageType 'CRM View Settings' +#: crm/fcrm/pagetype/crm_dropdown_item/crm_dropdown_item.json +#: crm/fcrm/pagetype/crm_view_settings/crm_view_settings.json msgid "Icon" msgstr "Ikonica" @@ -2942,10 +2942,10 @@ msgstr "Ukoliko je omogućeno, odlazni imejlovi mogu biti poslati sa ovog naloga msgid "If enabled, records can be created from the incoming emails on this account." msgstr "Ukoliko je omogućeno, zapisi mogu biti kreirani iz dolaznih imejlova na ovom nalogu." -#. Label of the image (Attach Image) field in DocType 'CRM Lead' -#. Label of the image (Attach Image) field in DocType 'CRM Product' -#: crm/fcrm/doctype/crm_lead/crm_lead.json -#: crm/fcrm/doctype/crm_product/crm_product.json +#. Label of the image (Attach Image) field in PageType 'CRM Lead' +#. Label of the image (Attach Image) field in PageType 'CRM Product' +#: crm/fcrm/pagetype/crm_lead/crm_lead.json +#: crm/fcrm/pagetype/crm_product/crm_product.json msgid "Image" msgstr "Slika" @@ -2957,10 +2957,10 @@ msgstr "Slika" msgid "In" msgstr "U" -#. Option for the 'Status' (Select) field in DocType 'CRM Call Log' -#. Option for the 'Status' (Select) field in DocType 'CRM Task' -#: crm/fcrm/doctype/crm_call_log/crm_call_log.json -#: crm/fcrm/doctype/crm_task/crm_task.json +#. Option for the 'Status' (Select) field in PageType 'CRM Call Log' +#. Option for the 'Status' (Select) field in PageType 'CRM Task' +#: crm/fcrm/pagetype/crm_call_log/crm_call_log.json +#: crm/fcrm/pagetype/crm_task/crm_task.json msgid "In Progress" msgstr "U toku" @@ -2976,8 +2976,8 @@ msgstr "Dolazni poziv" msgid "Inbox" msgstr "Prijemna pošta" -#. Option for the 'Type' (Select) field in DocType 'CRM Call Log' -#: crm/fcrm/doctype/crm_call_log/crm_call_log.json +#. Option for the 'Type' (Select) field in PageType 'CRM Call Log' +#: crm/fcrm/pagetype/crm_call_log/crm_call_log.json msgid "Incoming" msgstr "Dolazni" @@ -2985,24 +2985,24 @@ msgstr "Dolazni" msgid "Incoming call..." msgstr "Dolazni poziv..." -#. Label of a shortcut in the Frappe CRM Workspace -#: crm/fcrm/workspace/frappe_crm/frappe_crm.json +#. Label of a shortcut in the Jingrow CRM Workspace +#: crm/fcrm/workspace/jingrow_crm/jingrow_crm.json msgid "Industries" msgstr "Industrije" -#. Label of the industry (Link) field in DocType 'CRM Deal' -#. Label of the industry (Data) field in DocType 'CRM Industry' -#. Label of the industry (Link) field in DocType 'CRM Lead' -#. Label of the industry (Link) field in DocType 'CRM Organization' -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_industry/crm_industry.json -#: crm/fcrm/doctype/crm_lead/crm_lead.json -#: crm/fcrm/doctype/crm_organization/crm_organization.json +#. Label of the industry (Link) field in PageType 'CRM Deal' +#. Label of the industry (Data) field in PageType 'CRM Industry' +#. Label of the industry (Link) field in PageType 'CRM Lead' +#. Label of the industry (Link) field in PageType 'CRM Organization' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_industry/crm_industry.json +#: crm/fcrm/pagetype/crm_lead/crm_lead.json +#: crm/fcrm/pagetype/crm_organization/crm_organization.json msgid "Industry" msgstr "Industrija" -#. Option for the 'Status' (Select) field in DocType 'CRM Call Log' -#: crm/fcrm/doctype/crm_call_log/crm_call_log.json +#. Option for the 'Status' (Select) field in PageType 'CRM Call Log' +#: crm/fcrm/pagetype/crm_call_log/crm_call_log.json msgid "Initiated" msgstr "Započeto" @@ -3037,7 +3037,7 @@ msgstr "Integracije" msgid "Introduction" msgstr "Uvod" -#: crm/fcrm/doctype/crm_twilio_settings/crm_twilio_settings.py:33 +#: crm/fcrm/pagetype/crm_twilio_settings/crm_twilio_settings.py:33 msgid "Invalid Account SID or Auth Token." msgstr "Nevažeći SID naloga ili autentifikacioni token." @@ -3054,7 +3054,7 @@ msgstr "Nevažeći Exotel broj" msgid "Invalid chart name" msgstr "Nevažeći naziv dijagrama" -#: crm/fcrm/doctype/crm_exotel_settings/crm_exotel_settings.py:25 +#: crm/fcrm/pagetype/crm_exotel_settings/crm_exotel_settings.py:25 msgid "Invalid credentials" msgstr "Nevažeći kredencijali" @@ -3103,8 +3103,8 @@ msgstr "Pozovite korisnike da pristupe CRM. Navedite njihove uloge radi kontrole msgid "Invite your team" msgstr "Pozovite svoj tim" -#. Label of the invited_by (Link) field in DocType 'CRM Invitation' -#: crm/fcrm/doctype/crm_invitation/crm_invitation.json +#. Label of the invited_by (Link) field in PageType 'CRM Invitation' +#: crm/fcrm/pagetype/crm_invitation/crm_invitation.json msgid "Invited By" msgstr "Pozvan od strane" @@ -3118,59 +3118,59 @@ msgstr "Pozvan od strane" msgid "Is" msgstr "Jeste" -#. Label of the is_default (Check) field in DocType 'CRM View Settings' -#: crm/fcrm/doctype/crm_view_settings/crm_view_settings.json +#. Label of the is_default (Check) field in PageType 'CRM View Settings' +#: crm/fcrm/pagetype/crm_view_settings/crm_view_settings.json msgid "Is Default" msgstr "Podrazumevano" -#. Label of the is_erpnext_in_different_site (Check) field in DocType 'ERPNext +#. Label of the is_erpnext_in_different_site (Check) field in PageType 'ERPNext #. CRM Settings' -#: crm/fcrm/doctype/erpnext_crm_settings/erpnext_crm_settings.json +#: crm/fcrm/pagetype/erpnext_crm_settings/erpnext_crm_settings.json msgid "Is ERPNext installed on a different site?" msgstr "Da li je ERPNext instaliran na drugom sajtu?" -#. Label of the is_group (Check) field in DocType 'CRM Territory' -#: crm/fcrm/doctype/crm_territory/crm_territory.json +#. Label of the is_group (Check) field in PageType 'CRM Territory' +#: crm/fcrm/pagetype/crm_territory/crm_territory.json msgid "Is Group" msgstr "Grupa" -#. Label of the is_helpdesk_in_different_site (Check) field in DocType +#. Label of the is_helpdesk_in_different_site (Check) field in PageType #. 'Helpdesk CRM Settings' -#: crm/fcrm/doctype/helpdesk_crm_settings/helpdesk_crm_settings.json +#: crm/fcrm/pagetype/helpdesk_crm_settings/helpdesk_crm_settings.json msgid "Is Helpdesk installed on a different site?" msgstr "Da li je Helpdesk instaliran na drugom sajtu?" -#. Label of the is_primary (Check) field in DocType 'CRM Contacts' -#. Label of the is_primary (Check) field in DocType 'CRM Telephony Phone' -#: crm/fcrm/doctype/crm_contacts/crm_contacts.json -#: crm/fcrm/doctype/crm_telephony_phone/crm_telephony_phone.json +#. Label of the is_primary (Check) field in PageType 'CRM Contacts' +#. Label of the is_primary (Check) field in PageType 'CRM Telephony Phone' +#: crm/fcrm/pagetype/crm_contacts/crm_contacts.json +#: crm/fcrm/pagetype/crm_telephony_phone/crm_telephony_phone.json msgid "Is Primary" msgstr "Primarno" -#. Label of the is_standard (Check) field in DocType 'CRM Dropdown Item' -#. Label of the is_standard (Check) field in DocType 'CRM Form Script' -#. Label of the is_standard (Check) field in DocType 'CRM View Settings' -#: crm/fcrm/doctype/crm_dropdown_item/crm_dropdown_item.json -#: crm/fcrm/doctype/crm_form_script/crm_form_script.json -#: crm/fcrm/doctype/crm_view_settings/crm_view_settings.json +#. Label of the is_standard (Check) field in PageType 'CRM Dropdown Item' +#. Label of the is_standard (Check) field in PageType 'CRM Form Script' +#. Label of the is_standard (Check) field in PageType 'CRM View Settings' +#: crm/fcrm/pagetype/crm_dropdown_item/crm_dropdown_item.json +#: crm/fcrm/pagetype/crm_form_script/crm_form_script.json +#: crm/fcrm/pagetype/crm_view_settings/crm_view_settings.json msgid "Is Standard" msgstr "Standardno" -#. Description of the 'Enable Forecasting' (Check) field in DocType 'FCRM +#. Description of the 'Enable Forecasting' (Check) field in PageType 'FCRM #. Settings' -#: crm/fcrm/doctype/fcrm_settings/fcrm_settings.json +#: crm/fcrm/pagetype/fcrm_settings/fcrm_settings.json msgid "It will make deal's \"Expected Closure Date\" & \"Expected Deal Value\" mandatory to get accurate forecasting insights" msgstr "Učiniće da su \"Očekivani datum zatvaranja\" i \"Očekivana vrednost poslovne prilike\" obavezni za precizno dobijanje uvida u prognozu" -#. Label of the json (JSON) field in DocType 'CRM Global Settings' -#: crm/fcrm/doctype/crm_global_settings/crm_global_settings.json +#. Label of the json (JSON) field in PageType 'CRM Global Settings' +#: crm/fcrm/pagetype/crm_global_settings/crm_global_settings.json msgid "JSON" msgstr "JSON" -#. Label of the job_title (Data) field in DocType 'CRM Deal' -#. Label of the job_title (Data) field in DocType 'CRM Lead' -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_lead/crm_lead.json +#. Label of the job_title (Data) field in PageType 'CRM Deal' +#. Label of the job_title (Data) field in PageType 'CRM Lead' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_lead/crm_lead.json msgid "Job Title" msgstr "Radno mesto" @@ -3182,20 +3182,20 @@ msgstr "Radno mesto" msgid "John Doe" msgstr "Petar Petrović" -#. Label of the kanban_tab (Tab Break) field in DocType 'CRM View Settings' -#: crm/fcrm/doctype/crm_view_settings/crm_view_settings.json +#. Label of the kanban_tab (Tab Break) field in PageType 'CRM View Settings' +#: crm/fcrm/pagetype/crm_view_settings/crm_view_settings.json #: frontend/src/components/ViewControls.vue:384 #: frontend/src/components/ViewControls.vue:600 frontend/src/utils/view.js:20 msgid "Kanban" msgstr "Kanban" -#. Label of the kanban_columns (Code) field in DocType 'CRM View Settings' -#: crm/fcrm/doctype/crm_view_settings/crm_view_settings.json +#. Label of the kanban_columns (Code) field in PageType 'CRM View Settings' +#: crm/fcrm/pagetype/crm_view_settings/crm_view_settings.json msgid "Kanban Columns" msgstr "Kanban kolone" -#. Label of the kanban_fields (Code) field in DocType 'CRM View Settings' -#: crm/fcrm/doctype/crm_view_settings/crm_view_settings.json +#. Label of the kanban_fields (Code) field in PageType 'CRM View Settings' +#: crm/fcrm/pagetype/crm_view_settings/crm_view_settings.json msgid "Kanban Fields" msgstr "Kanban polja" @@ -3204,15 +3204,15 @@ msgstr "Kanban polja" msgid "Kanban Settings" msgstr "Kanban podešavanje" -#. Label of the key (Data) field in DocType 'CRM Invitation' -#: crm/fcrm/doctype/crm_invitation/crm_invitation.json +#. Label of the key (Data) field in PageType 'CRM Invitation' +#: crm/fcrm/pagetype/crm_invitation/crm_invitation.json msgid "Key" msgstr "Ključ" -#. Label of the label (Data) field in DocType 'CRM Dropdown Item' -#. Label of the label (Data) field in DocType 'CRM View Settings' -#: crm/fcrm/doctype/crm_dropdown_item/crm_dropdown_item.json -#: crm/fcrm/doctype/crm_view_settings/crm_view_settings.json +#. Label of the label (Data) field in PageType 'CRM Dropdown Item' +#. Label of the label (Data) field in PageType 'CRM View Settings' +#: crm/fcrm/pagetype/crm_dropdown_item/crm_dropdown_item.json +#: crm/fcrm/pagetype/crm_view_settings/crm_view_settings.json #: frontend/src/components/ColumnSettings.vue:100 msgid "Label" msgstr "Oznaka" @@ -3229,10 +3229,10 @@ msgstr "Poslednjih 6 meseci" msgid "Last Month" msgstr "Prošli mesec" -#. Label of the last_name (Data) field in DocType 'CRM Deal' -#. Label of the last_name (Data) field in DocType 'CRM Lead' -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_lead/crm_lead.json +#. Label of the last_name (Data) field in PageType 'CRM Deal' +#. Label of the last_name (Data) field in PageType 'CRM Lead' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_lead/crm_lead.json msgid "Last Name" msgstr "Prezime" @@ -3240,9 +3240,9 @@ msgstr "Prezime" msgid "Last Quarter" msgstr "Prošli kvartal" -#. Label of the last_status_change_log (Link) field in DocType 'CRM Status +#. Label of the last_status_change_log (Link) field in PageType 'CRM Status #. Change Log' -#: crm/fcrm/doctype/crm_status_change_log/crm_status_change_log.json +#: crm/fcrm/pagetype/crm_status_change_log/crm_status_change_log.json msgid "Last Status Change Log" msgstr "Evidencija poslednje promene statusa" @@ -3270,15 +3270,15 @@ msgstr "Prezime" msgid "Last user assigned by this rule" msgstr "Poslednji korisnik kojem je tiket dodeljen po ovom pravilu" -#. Label of the layout (Code) field in DocType 'CRM Dashboard' -#. Label of the layout (Code) field in DocType 'CRM Fields Layout' -#: crm/fcrm/doctype/crm_dashboard/crm_dashboard.json -#: crm/fcrm/doctype/crm_fields_layout/crm_fields_layout.json +#. Label of the layout (Code) field in PageType 'CRM Dashboard' +#. Label of the layout (Code) field in PageType 'CRM Fields Layout' +#: crm/fcrm/pagetype/crm_dashboard/crm_dashboard.json +#: crm/fcrm/pagetype/crm_fields_layout/crm_fields_layout.json msgid "Layout" msgstr "Raspored" -#. Label of the lead (Link) field in DocType 'CRM Deal' -#: crm/fcrm/doctype/crm_deal/crm_deal.json +#. Label of the lead (Link) field in PageType 'CRM Deal' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json #: frontend/src/components/Calendar/CalendarEventPanel.vue:263 #: frontend/src/components/Calendar/CalendarEventPanel.vue:288 #: frontend/src/components/Layouts/AppSidebar.vue:550 @@ -3291,32 +3291,32 @@ msgstr "Raspored" msgid "Lead" msgstr "Potencijalni klijent" -#. Label of the lead_details_tab (Tab Break) field in DocType 'CRM Deal' -#: crm/fcrm/doctype/crm_deal/crm_deal.json +#. Label of the lead_details_tab (Tab Break) field in PageType 'CRM Deal' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json msgid "Lead Details" msgstr "Detalji potencijalnog klijenata" -#. Label of the lead_name (Data) field in DocType 'CRM Deal' -#: crm/fcrm/doctype/crm_deal/crm_deal.json +#. Label of the lead_name (Data) field in PageType 'CRM Deal' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json msgid "Lead Name" msgstr "Naziv potencijalnog klijenta" -#. Label of the lead_owner (Link) field in DocType 'CRM Lead' -#: crm/fcrm/doctype/crm_lead/crm_lead.json +#. Label of the lead_owner (Link) field in PageType 'CRM Lead' +#: crm/fcrm/pagetype/crm_lead/crm_lead.json msgid "Lead Owner" msgstr "Vlasnik potencijalnog klijenta" -#: crm/fcrm/doctype/crm_lead/crm_lead.py:73 +#: crm/fcrm/pagetype/crm_lead/crm_lead.py:73 msgid "Lead Owner cannot be same as the Lead Email Address" msgstr "Vlasnik potencijalnog klijenta ne može biti isti kao imejl adresa potencijalnog klijenta" -#. Label of a shortcut in the Frappe CRM Workspace -#: crm/fcrm/workspace/frappe_crm/frappe_crm.json +#. Label of a shortcut in the Jingrow CRM Workspace +#: crm/fcrm/workspace/jingrow_crm/jingrow_crm.json msgid "Lead Sources" msgstr "Izvori potencijalnog klijenta" -#. Label of a shortcut in the Frappe CRM Workspace -#: crm/fcrm/workspace/frappe_crm/frappe_crm.json +#. Label of a shortcut in the Jingrow CRM Workspace +#: crm/fcrm/workspace/jingrow_crm/jingrow_crm.json msgid "Lead Statuses" msgstr "Statusi potencijalnog klijenta" @@ -3328,8 +3328,8 @@ msgstr "Analiza kanala za generisanje potencijalnih klijenata" msgid "Lead to deal conversion pipeline" msgstr "Tok prebacivanja potencijalnih klijenata u poslovne prilike" -#. Label of a shortcut in the Frappe CRM Workspace -#: crm/fcrm/workspace/frappe_crm/frappe_crm.json +#. Label of a shortcut in the Jingrow CRM Workspace +#: crm/fcrm/workspace/jingrow_crm/jingrow_crm.json #: frontend/src/pages/InvalidPage.vue:9 frontend/src/pages/Lead.vue:340 #: frontend/src/pages/MobileLead.vue:291 msgid "Leads" @@ -3345,8 +3345,8 @@ msgstr "Potencijalni klijenti po izvoru" msgid "Learn about conditions" msgstr "Saznajte više o uslovima" -#. Label of the lft (Int) field in DocType 'CRM Territory' -#: crm/fcrm/doctype/crm_territory/crm_territory.json +#. Label of the lft (Int) field in PageType 'CRM Territory' +#: crm/fcrm/pagetype/crm_territory/crm_territory.json msgid "Left" msgstr "Levo" @@ -3367,15 +3367,15 @@ msgstr "Lajk" msgid "Link" msgstr "Link" -#. Label of the links (Table) field in DocType 'CRM Call Log' -#: crm/fcrm/doctype/crm_call_log/crm_call_log.json +#. Label of the links (Table) field in PageType 'CRM Call Log' +#: crm/fcrm/pagetype/crm_call_log/crm_call_log.json msgid "Links" msgstr "Linkovi" -#. Option for the 'Apply To' (Select) field in DocType 'CRM Form Script' -#. Label of the list_tab (Tab Break) field in DocType 'CRM View Settings' -#: crm/fcrm/doctype/crm_form_script/crm_form_script.json -#: crm/fcrm/doctype/crm_view_settings/crm_view_settings.json +#. Option for the 'Apply To' (Select) field in PageType 'CRM Form Script' +#. Label of the list_tab (Tab Break) field in PageType 'CRM View Settings' +#: crm/fcrm/pagetype/crm_form_script/crm_form_script.json +#: crm/fcrm/pagetype/crm_view_settings/crm_view_settings.json #: frontend/src/components/ViewControls.vue:374 #: frontend/src/components/ViewControls.vue:589 frontend/src/utils/view.js:12 msgid "List" @@ -3385,9 +3385,9 @@ msgstr "Lista" msgid "Listen" msgstr "Slušaj" -#. Label of the load_default_columns (Check) field in DocType 'CRM View +#. Label of the load_default_columns (Check) field in PageType 'CRM View #. Settings' -#: crm/fcrm/doctype/crm_view_settings/crm_view_settings.json +#: crm/fcrm/pagetype/crm_view_settings/crm_view_settings.json msgid "Load Default Columns" msgstr "Učitaj podrazumevane kolone" @@ -3403,10 +3403,10 @@ msgstr "Učitaj više" msgid "Loading..." msgstr "Učitavanje..." -#. Label of the log_tab (Tab Break) field in DocType 'CRM Deal' -#. Label of the log_tab (Tab Break) field in DocType 'CRM Lead' -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_lead/crm_lead.json +#. Label of the log_tab (Tab Break) field in PageType 'CRM Deal' +#. Label of the log_tab (Tab Break) field in PageType 'CRM Lead' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_lead/crm_lead.json msgid "Log" msgstr "Evidencija" @@ -3417,28 +3417,28 @@ msgid "Log a Call" msgstr "Evidentiraj poziv" #: frontend/src/composables/frappecloud.js:23 -msgid "Login to Frappe Cloud?" -msgstr "Prijavljivanje na Frappe Cloud?" +msgid "Login to Jingrow Cloud?" +msgstr "Prijavljivanje na Jingrow Cloud?" -#. Label of the brand_logo (Attach) field in DocType 'FCRM Settings' -#: crm/fcrm/doctype/fcrm_settings/fcrm_settings.json +#. Label of the brand_logo (Attach) field in PageType 'FCRM Settings' +#: crm/fcrm/pagetype/fcrm_settings/fcrm_settings.json msgid "Logo" msgstr "Logo" -#. Option for the 'Type' (Select) field in DocType 'CRM Deal Status' -#: crm/fcrm/doctype/crm_deal_status/crm_deal_status.json +#. Option for the 'Type' (Select) field in PageType 'CRM Deal Status' +#: crm/fcrm/pagetype/crm_deal_status/crm_deal_status.json msgid "Lost" msgstr "Izgubljeno" -#. Label of the lost_notes (Text) field in DocType 'CRM Deal' -#: crm/fcrm/doctype/crm_deal/crm_deal.json +#. Label of the lost_notes (Text) field in PageType 'CRM Deal' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json msgid "Lost Notes" msgstr "Beleške o gubicima" -#. Label of the lost_reason (Link) field in DocType 'CRM Deal' -#. Label of the lost_reason (Data) field in DocType 'CRM Lost Reason' -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_lost_reason/crm_lost_reason.json +#. Label of the lost_reason (Link) field in PageType 'CRM Deal' +#. Label of the lost_reason (Data) field in PageType 'CRM Lost Reason' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_lost_reason/crm_lost_reason.json msgid "Lost Reason" msgstr "Razlog gubitka" @@ -3464,8 +3464,8 @@ msgstr "Razlog gubitka" msgid "Lost reason is required" msgstr "Razlog gubitka je obavezan" -#. Option for the 'Priority' (Select) field in DocType 'CRM Task' -#: crm/fcrm/doctype/crm_task/crm_task.json +#. Option for the 'Priority' (Select) field in PageType 'CRM Task' +#: crm/fcrm/pagetype/crm_task/crm_task.json msgid "Low" msgstr "Nizak" @@ -3542,8 +3542,8 @@ msgstr "Menadžer" msgid "Mandatory field error: {0}" msgstr "Greška u obaveznom polju: {0}" -#. Option for the 'Telephony Medium' (Select) field in DocType 'CRM Call Log' -#: crm/fcrm/doctype/crm_call_log/crm_call_log.json +#. Option for the 'Telephony Medium' (Select) field in PageType 'CRM Call Log' +#: crm/fcrm/pagetype/crm_call_log/crm_call_log.json msgid "Manual" msgstr "Ručno" @@ -3562,25 +3562,25 @@ msgstr "Master podaci" msgid "May 1, 2025" msgstr "1. maj 2025." -#. Label of the medium (Data) field in DocType 'CRM Call Log' -#. Option for the 'Priority' (Select) field in DocType 'CRM Task' -#: crm/fcrm/doctype/crm_call_log/crm_call_log.json -#: crm/fcrm/doctype/crm_task/crm_task.json +#. Label of the medium (Data) field in PageType 'CRM Call Log' +#. Option for the 'Priority' (Select) field in PageType 'CRM Task' +#: crm/fcrm/pagetype/crm_call_log/crm_call_log.json +#: crm/fcrm/pagetype/crm_task/crm_task.json msgid "Medium" msgstr "Srednje" -#. Option for the 'Type' (Select) field in DocType 'CRM Notification' -#: crm/fcrm/doctype/crm_notification/crm_notification.json +#. Option for the 'Type' (Select) field in PageType 'CRM Notification' +#: crm/fcrm/pagetype/crm_notification/crm_notification.json msgid "Mention" msgstr "Pominjanje" -#. Label of the message (HTML Editor) field in DocType 'CRM Notification' -#: crm/fcrm/doctype/crm_notification/crm_notification.json +#. Label of the message (HTML Editor) field in PageType 'CRM Notification' +#: crm/fcrm/pagetype/crm_notification/crm_notification.json msgid "Message" msgstr "Poruka" -#. Label of the middle_name (Data) field in DocType 'CRM Lead' -#: crm/fcrm/doctype/crm_lead/crm_lead.json +#. Label of the middle_name (Data) field in PageType 'CRM Lead' +#: crm/fcrm/pagetype/crm_lead/crm_lead.json msgid "Middle Name" msgstr "Srednje ime" @@ -3588,10 +3588,10 @@ msgstr "Srednje ime" msgid "Minimize" msgstr "Minimizuj" -#. Label of the mobile_no (Data) field in DocType 'CRM Contacts' -#. Label of the mobile_no (Data) field in DocType 'CRM Lead' -#: crm/fcrm/doctype/crm_contacts/crm_contacts.json -#: crm/fcrm/doctype/crm_lead/crm_lead.json +#. Label of the mobile_no (Data) field in PageType 'CRM Contacts' +#. Label of the mobile_no (Data) field in PageType 'CRM Lead' +#: crm/fcrm/pagetype/crm_contacts/crm_contacts.json +#: crm/fcrm/pagetype/crm_lead/crm_lead.json msgid "Mobile No" msgstr "Broj mobilnog telefona" @@ -3600,8 +3600,8 @@ msgstr "Broj mobilnog telefona" msgid "Mobile No should be a number" msgstr "Broj mobilnog telefona treba da bude broj" -#. Label of the mobile_no (Data) field in DocType 'CRM Telephony Agent' -#: crm/fcrm/doctype/crm_telephony_agent/crm_telephony_agent.json +#. Label of the mobile_no (Data) field in PageType 'CRM Telephony Agent' +#: crm/fcrm/pagetype/crm_telephony_agent/crm_telephony_agent.json msgid "Mobile No." msgstr "Broj mobilnog telefona." @@ -3623,10 +3623,10 @@ msgstr "Instalacija mobilne aplikacije" msgid "Mobile no" msgstr "Broj mobilnog telefona" -#. Option for the 'Weekly Off' (Select) field in DocType 'CRM Holiday List' -#. Option for the 'Workday' (Select) field in DocType 'CRM Service Day' -#: crm/fcrm/doctype/crm_holiday_list/crm_holiday_list.json -#: crm/fcrm/doctype/crm_service_day/crm_service_day.json +#. Option for the 'Weekly Off' (Select) field in PageType 'CRM Holiday List' +#. Option for the 'Workday' (Select) field in PageType 'CRM Service Day' +#: crm/fcrm/pagetype/crm_holiday_list/crm_holiday_list.json +#: crm/fcrm/pagetype/crm_service_day/crm_service_day.json msgid "Monday" msgstr "Ponedeljak" @@ -3658,12 +3658,12 @@ msgstr "Idi na prethodnu karticu" msgid "My Open Deals" msgstr "Moje otvorene poslovne prilike" -#. Label of the title (Data) field in DocType 'CRM Dashboard' -#. Label of the name1 (Data) field in DocType 'CRM Dropdown Item' -#. Label of the brand_name (Data) field in DocType 'FCRM Settings' -#: crm/fcrm/doctype/crm_dashboard/crm_dashboard.json -#: crm/fcrm/doctype/crm_dropdown_item/crm_dropdown_item.json -#: crm/fcrm/doctype/fcrm_settings/fcrm_settings.json +#. Label of the title (Data) field in PageType 'CRM Dashboard' +#. Label of the name1 (Data) field in PageType 'CRM Dropdown Item' +#. Label of the brand_name (Data) field in PageType 'FCRM Settings' +#: crm/fcrm/pagetype/crm_dashboard/crm_dashboard.json +#: crm/fcrm/pagetype/crm_dropdown_item/crm_dropdown_item.json +#: crm/fcrm/pagetype/fcrm_settings/fcrm_settings.json #: frontend/src/components/Settings/AssignmentRules/AssignmentRuleView.vue:51 #: frontend/src/components/Settings/AssignmentRules/AssignmentRuleView.vue:52 #: frontend/src/components/Settings/EmailTemplate/EditEmailTemplate.vue:39 @@ -3680,10 +3680,10 @@ msgstr "Naziv" msgid "Name is required" msgstr "Naziv je obavezan" -#. Label of the naming_series (Select) field in DocType 'CRM Deal' -#. Label of the naming_series (Select) field in DocType 'CRM Product' -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_product/crm_product.json +#. Label of the naming_series (Select) field in PageType 'CRM Deal' +#. Label of the naming_series (Select) field in PageType 'CRM Product' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_product/crm_product.json msgid "Naming Series" msgstr "Serije imenovanja" @@ -3691,15 +3691,15 @@ msgstr "Serije imenovanja" msgid "Nested conditions" msgstr "Ugnježdeni uslovi" -#. Label of the net_amount (Currency) field in DocType 'CRM Products' -#: crm/fcrm/doctype/crm_products/crm_products.json +#. Label of the net_amount (Currency) field in PageType 'CRM Products' +#: crm/fcrm/pagetype/crm_products/crm_products.json msgid "Net Amount" msgstr "Neto iznos" -#. Label of the net_total (Currency) field in DocType 'CRM Deal' -#. Label of the net_total (Currency) field in DocType 'CRM Lead' -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_lead/crm_lead.json +#. Label of the net_total (Currency) field in PageType 'CRM Deal' +#. Label of the net_total (Currency) field in PageType 'CRM Lead' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_lead/crm_lead.json msgid "Net Total" msgstr "Neto ukupno" @@ -3814,8 +3814,8 @@ msgstr "Sledeći mesec" msgid "Next Quarter" msgstr "Sledeći kvartal" -#. Label of the next_step (Data) field in DocType 'CRM Deal' -#: crm/fcrm/doctype/crm_deal/crm_deal.json +#. Label of the next_step (Data) field in PageType 'CRM Deal' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json msgid "Next Step" msgstr "Sledeći korak" @@ -3831,8 +3831,8 @@ msgstr "Sledeća godina" msgid "No" msgstr "Ne" -#. Option for the 'Status' (Select) field in DocType 'CRM Call Log' -#: crm/fcrm/doctype/crm_call_log/crm_call_log.json +#. Option for the 'Status' (Select) field in PageType 'CRM Call Log' +#: crm/fcrm/pagetype/crm_call_log/crm_call_log.json msgid "No Answer" msgstr "Bez odgovora" @@ -3930,12 +3930,12 @@ msgstr "Nema dostupnih {0}" msgid "No {0} Found" msgstr "Nije pronađen nijedan {0}" -#. Label of the no_of_employees (Select) field in DocType 'CRM Deal' -#. Label of the no_of_employees (Select) field in DocType 'CRM Lead' -#. Label of the no_of_employees (Select) field in DocType 'CRM Organization' -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_lead/crm_lead.json -#: crm/fcrm/doctype/crm_organization/crm_organization.json +#. Label of the no_of_employees (Select) field in PageType 'CRM Deal' +#. Label of the no_of_employees (Select) field in PageType 'CRM Lead' +#. Label of the no_of_employees (Select) field in PageType 'CRM Organization' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_lead/crm_lead.json +#: crm/fcrm/pagetype/crm_organization/crm_organization.json msgid "No. of Employees" msgstr "Broj zaposlenih lica" @@ -3981,24 +3981,24 @@ msgstr "Nije slično" msgid "Not Saved" msgstr "Nije sačuvano" -#: crm/fcrm/doctype/crm_deal/crm_deal.py:272 +#: crm/fcrm/pagetype/crm_deal/crm_deal.py:272 msgid "Not allowed to add contact to Deal" msgstr "Nije dozvoljeno dodati kontakt u poslovnu priliku" -#: crm/fcrm/doctype/crm_lead/crm_lead.py:408 +#: crm/fcrm/pagetype/crm_lead/crm_lead.py:408 msgid "Not allowed to convert Lead to Deal" msgstr "Nije dozvoljeno prebaciti potencijalnog klijenta u poslovnu priliku" -#: crm/fcrm/doctype/crm_deal/crm_deal.py:283 +#: crm/fcrm/pagetype/crm_deal/crm_deal.py:283 msgid "Not allowed to remove contact from Deal" msgstr "Nije dozvoljeno ukloniti kontakt iz poslovne prilike" -#: crm/fcrm/doctype/crm_deal/crm_deal.py:294 +#: crm/fcrm/pagetype/crm_deal/crm_deal.py:294 msgid "Not allowed to set primary contact for Deal" msgstr "Nije dozvoljeno postaviti primarni kontakt za poslovnu priliku" -#. Label of the note (Link) field in DocType 'CRM Call Log' -#: crm/fcrm/doctype/crm_call_log/crm_call_log.json +#. Label of the note (Link) field in PageType 'CRM Call Log' +#: crm/fcrm/pagetype/crm_call_log/crm_call_log.json #: frontend/src/components/Layouts/AppSidebar.vue:554 msgid "Note" msgstr "Beleška" @@ -4017,22 +4017,22 @@ msgstr "Prikaz beleški" msgid "Notification" msgstr "Obaveštenje" -#. Label of the notification_text (Text) field in DocType 'CRM Notification' -#: crm/fcrm/doctype/crm_notification/crm_notification.json +#. Label of the notification_text (Text) field in PageType 'CRM Notification' +#: crm/fcrm/pagetype/crm_notification/crm_notification.json msgid "Notification Text" msgstr "Tekst obaveštenja" -#. Label of the notification_type_doc (Dynamic Link) field in DocType 'CRM +#. Label of the notification_type_pg (Dynamic Link) field in PageType 'CRM #. Notification' -#: crm/fcrm/doctype/crm_notification/crm_notification.json -msgid "Notification Type Doc" +#: crm/fcrm/pagetype/crm_notification/crm_notification.json +msgid "Notification Type Pg" msgstr "Vrsta obaveštenja dokumenta" -#. Label of the notification_type_doctype (Link) field in DocType 'CRM +#. Label of the notification_type_pagetype (Link) field in PageType 'CRM #. Notification' -#: crm/fcrm/doctype/crm_notification/crm_notification.json -msgid "Notification Type Doctype" -msgstr "Vrsta obaveštenja DocType" +#: crm/fcrm/pagetype/crm_notification/crm_notification.json +msgid "Notification Type Pagetype" +msgstr "Vrsta obaveštenja PageType" #: frontend/src/components/Layouts/AppSidebar.vue:13 #: frontend/src/components/Mobile/MobileSidebar.vue:23 @@ -4041,8 +4041,8 @@ msgstr "Vrsta obaveštenja DocType" msgid "Notifications" msgstr "Obaveštenja" -#. Label of the number (Data) field in DocType 'CRM Telephony Phone' -#: crm/fcrm/doctype/crm_telephony_phone/crm_telephony_phone.json +#. Label of the number (Data) field in PageType 'CRM Telephony Phone' +#: crm/fcrm/pagetype/crm_telephony_phone/crm_telephony_phone.json msgid "Number" msgstr "Broj" @@ -4064,18 +4064,18 @@ msgstr "Broj poslovnih prilika i ukupna vrednost po prodavcu" msgid "Old Condition" msgstr "Stari uslov" -#. Label of the old_parent (Link) field in DocType 'CRM Territory' -#: crm/fcrm/doctype/crm_territory/crm_territory.json +#. Label of the old_parent (Link) field in PageType 'CRM Territory' +#: crm/fcrm/pagetype/crm_territory/crm_territory.json msgid "Old Parent" msgstr "Prethodna matična" -#. Option for the 'Type' (Select) field in DocType 'CRM Deal Status' -#: crm/fcrm/doctype/crm_deal_status/crm_deal_status.json +#. Option for the 'Type' (Select) field in PageType 'CRM Deal Status' +#: crm/fcrm/pagetype/crm_deal_status/crm_deal_status.json msgid "On Hold" msgstr "Na čekanju" -#. Option for the 'Type' (Select) field in DocType 'CRM Deal Status' -#: crm/fcrm/doctype/crm_deal_status/crm_deal_status.json +#. Option for the 'Type' (Select) field in PageType 'CRM Deal Status' +#: crm/fcrm/pagetype/crm_deal_status/crm_deal_status.json msgid "Ongoing" msgstr "U toku" @@ -4088,13 +4088,13 @@ msgstr "Tekuće poslovne prilike" msgid "Only image files are allowed" msgstr "Dozvoljeni su samo fajlovi u formatu slike" -#: crm/fcrm/doctype/crm_deal/crm_deal.py:60 -#: crm/fcrm/doctype/crm_telephony_agent/crm_telephony_agent.py:23 +#: crm/fcrm/pagetype/crm_deal/crm_deal.py:60 +#: crm/fcrm/pagetype/crm_telephony_agent/crm_telephony_agent.py:23 msgid "Only one {0} can be set as primary." msgstr "Može biti postavljen samo jedan {0} kao primarni." -#. Option for the 'Type' (Select) field in DocType 'CRM Deal Status' -#: crm/fcrm/doctype/crm_deal_status/crm_deal_status.json +#. Option for the 'Type' (Select) field in PageType 'CRM Deal Status' +#: crm/fcrm/pagetype/crm_deal_status/crm_deal_status.json msgid "Open" msgstr "Otvoreno" @@ -4108,13 +4108,13 @@ msgstr "Otvorene poslovne prilike" msgid "Open Lead" msgstr "Otvoreni potencijalni klijent" -#: crm/fcrm/doctype/crm_deal/crm_deal.js:6 -#: crm/fcrm/doctype/crm_lead/crm_lead.js:6 +#: crm/fcrm/pagetype/crm_deal/crm_deal.js:6 +#: crm/fcrm/pagetype/crm_lead/crm_lead.js:6 msgid "Open in Portal" msgstr "Otvori u portalu" -#. Label of the open_in_new_window (Check) field in DocType 'CRM Dropdown Item' -#: crm/fcrm/doctype/crm_dropdown_item/crm_dropdown_item.json +#. Label of the open_in_new_window (Check) field in PageType 'CRM Dropdown Item' +#: crm/fcrm/pagetype/crm_dropdown_item/crm_dropdown_item.json msgid "Open in new window" msgstr "Otvori u novom prozoru" @@ -4136,17 +4136,17 @@ msgstr "Opcije" msgid "Or create leads manually" msgstr "Ili kreirajte potencijalne klijente ručno" -#. Label of the order_by_tab (Tab Break) field in DocType 'CRM View Settings' -#. Label of the order_by (Code) field in DocType 'CRM View Settings' -#: crm/fcrm/doctype/crm_view_settings/crm_view_settings.json +#. Label of the order_by_tab (Tab Break) field in PageType 'CRM View Settings' +#. Label of the order_by (Code) field in PageType 'CRM View Settings' +#: crm/fcrm/pagetype/crm_view_settings/crm_view_settings.json msgid "Order By" msgstr "Narudžbina od" -#. Label of the organization (Link) field in DocType 'CRM Deal' -#. Label of the organization_tab (Tab Break) field in DocType 'CRM Deal' -#. Label of the organization (Data) field in DocType 'CRM Lead' -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_lead/crm_lead.json +#. Label of the organization (Link) field in PageType 'CRM Deal' +#. Label of the organization_tab (Tab Break) field in PageType 'CRM Deal' +#. Label of the organization (Data) field in PageType 'CRM Lead' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_lead/crm_lead.json #: frontend/src/components/Layouts/AppSidebar.vue:553 #: frontend/src/components/Modals/ConvertToDealModal.vue:25 #: frontend/src/pages/Contact.vue:494 frontend/src/pages/MobileContact.vue:502 @@ -4158,22 +4158,22 @@ msgstr "Narudžbina od" msgid "Organization" msgstr "Organizacija" -#. Label of the organization_details_section (Section Break) field in DocType +#. Label of the organization_details_section (Section Break) field in PageType #. 'CRM Deal' -#: crm/fcrm/doctype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_deal/crm_deal.json msgid "Organization Details" msgstr "Detalji organizacije" -#. Label of the organization_logo (Attach Image) field in DocType 'CRM +#. Label of the organization_logo (Attach Image) field in PageType 'CRM #. Organization' -#: crm/fcrm/doctype/crm_organization/crm_organization.json +#: crm/fcrm/pagetype/crm_organization/crm_organization.json msgid "Organization Logo" msgstr "Logo organizacije" -#. Label of the organization_name (Data) field in DocType 'CRM Deal' -#. Label of the organization_name (Data) field in DocType 'CRM Organization' -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_organization/crm_organization.json +#. Label of the organization_name (Data) field in PageType 'CRM Deal' +#. Label of the organization_name (Data) field in PageType 'CRM Organization' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_organization/crm_organization.json msgid "Organization Name" msgstr "Naziv organizacije" @@ -4181,8 +4181,8 @@ msgstr "Naziv organizacije" msgid "Organization logo" msgstr "Logo organizacije" -#. Label of a shortcut in the Frappe CRM Workspace -#: crm/fcrm/workspace/frappe_crm/frappe_crm.json +#. Label of a shortcut in the Jingrow CRM Workspace +#: crm/fcrm/workspace/jingrow_crm/jingrow_crm.json #: frontend/src/pages/MobileOrganization.vue:205 #: frontend/src/pages/Organization.vue:234 msgid "Organizations" @@ -4196,8 +4196,8 @@ msgstr "Organizator" msgid "Other features" msgstr "Ostale funkcionalnosti" -#. Label of the organization_tab (Tab Break) field in DocType 'CRM Lead' -#: crm/fcrm/doctype/crm_lead/crm_lead.json +#. Label of the organization_tab (Tab Break) field in PageType 'CRM Lead' +#: crm/fcrm/pagetype/crm_lead/crm_lead.json msgid "Others" msgstr "Ostalo" @@ -4205,13 +4205,13 @@ msgstr "Ostalo" msgid "Outbound Call" msgstr "Odlazni poziv" -#. Option for the 'Type' (Select) field in DocType 'CRM Call Log' -#: crm/fcrm/doctype/crm_call_log/crm_call_log.json +#. Option for the 'Type' (Select) field in PageType 'CRM Call Log' +#: crm/fcrm/pagetype/crm_call_log/crm_call_log.json msgid "Outgoing" msgstr "Odlazni" -#. Label of the log_owner (Link) field in DocType 'CRM Status Change Log' -#: crm/fcrm/doctype/crm_status_change_log/crm_status_change_log.json +#. Label of the log_owner (Link) field in PageType 'CRM Status Change Log' +#: crm/fcrm/pagetype/crm_status_change_log/crm_status_change_log.json msgid "Owner" msgstr "Vlasnik" @@ -4219,8 +4219,8 @@ msgstr "Vlasnik" msgid "Owner: {0}" msgstr "Vlasnik: {0}" -#. Label of the parent_crm_territory (Link) field in DocType 'CRM Territory' -#: crm/fcrm/doctype/crm_territory/crm_territory.json +#. Label of the parent_crm_territory (Link) field in PageType 'CRM Territory' +#: crm/fcrm/pagetype/crm_territory/crm_territory.json msgid "Parent CRM Territory" msgstr "Matična CRM teritorija" @@ -4251,8 +4251,8 @@ msgstr "Podsetnik za plaćanje" msgid "Payment Reminder from Frappé - (#{{ name }})" msgstr "Podsetnik za plaćanje od Frappé - (#{{ name }})" -#. Option for the 'Status' (Select) field in DocType 'CRM Invitation' -#: crm/fcrm/doctype/crm_invitation/crm_invitation.json +#. Option for the 'Status' (Select) field in PageType 'CRM Invitation' +#: crm/fcrm/pagetype/crm_invitation/crm_invitation.json msgid "Pending" msgstr "Na čekanju" @@ -4264,10 +4264,10 @@ msgstr "Pozivi na čekanju" msgid "Period" msgstr "Period" -#. Label of the person_section (Section Break) field in DocType 'CRM Deal' -#. Label of the person_tab (Tab Break) field in DocType 'CRM Lead' -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_lead/crm_lead.json +#. Label of the person_section (Section Break) field in PageType 'CRM Deal' +#. Label of the person_tab (Tab Break) field in PageType 'CRM Lead' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_lead/crm_lead.json msgid "Person" msgstr "Osoba" @@ -4275,19 +4275,19 @@ msgstr "Osoba" msgid "Personal Settings" msgstr "Lična podešavanja" -#. Label of the phone (Data) field in DocType 'CRM Contacts' -#. Label of the phone (Data) field in DocType 'CRM Lead' -#. Option for the 'Device' (Select) field in DocType 'CRM Telephony Agent' -#: crm/fcrm/doctype/crm_contacts/crm_contacts.json -#: crm/fcrm/doctype/crm_lead/crm_lead.json -#: crm/fcrm/doctype/crm_telephony_agent/crm_telephony_agent.json +#. Label of the phone (Data) field in PageType 'CRM Contacts' +#. Label of the phone (Data) field in PageType 'CRM Lead' +#. Option for the 'Device' (Select) field in PageType 'CRM Telephony Agent' +#: crm/fcrm/pagetype/crm_contacts/crm_contacts.json +#: crm/fcrm/pagetype/crm_lead/crm_lead.json +#: crm/fcrm/pagetype/crm_telephony_agent/crm_telephony_agent.json #: frontend/src/pages/MobileOrganization.vue:495 #: frontend/src/pages/Organization.vue:516 msgid "Phone" msgstr "Telefon" -#. Label of the phone_nos (Table) field in DocType 'CRM Telephony Agent' -#: crm/fcrm/doctype/crm_telephony_agent/crm_telephony_agent.json +#. Label of the phone_nos (Table) field in PageType 'CRM Telephony Agent' +#: crm/fcrm/pagetype/crm_telephony_agent/crm_telephony_agent.json msgid "Phone Numbers" msgstr "Brojevi telefona" @@ -4295,8 +4295,8 @@ msgstr "Brojevi telefona" msgid "Pin View" msgstr "Fiksiraj prikaz" -#. Label of the pinned (Check) field in DocType 'CRM View Settings' -#: crm/fcrm/doctype/crm_view_settings/crm_view_settings.json +#. Label of the pinned (Check) field in PageType 'CRM View Settings' +#: crm/fcrm/pagetype/crm_view_settings/crm_view_settings.json msgid "Pinned" msgstr "Fiksirano" @@ -4346,7 +4346,7 @@ msgstr "Molimo Vas da izaberete postojeći kontakt" msgid "Please select an existing organization" msgstr "Molimo Vas da izaberete postojeću organizaciju" -#: crm/fcrm/doctype/helpdesk_crm_settings/helpdesk_crm_settings.py:126 +#: crm/fcrm/pagetype/helpdesk_crm_settings/helpdesk_crm_settings.py:126 msgid "Please set Email Address" msgstr "Molimo Vas da postavite imejl adresu" @@ -4354,18 +4354,18 @@ msgstr "Molimo Vas da postavite imejl adresu" msgid "Please setup Exotel intergration" msgstr "Molimo Vas da postavite Exotel integraciju" -#: crm/fcrm/doctype/crm_deal/crm_deal.py:181 +#: crm/fcrm/pagetype/crm_deal/crm_deal.py:181 msgid "Please specify a reason for losing the deal." msgstr "Molimo Vas da navedete razlog gubitka poslovne prilike." -#: crm/fcrm/doctype/crm_deal/crm_deal.py:183 +#: crm/fcrm/pagetype/crm_deal/crm_deal.py:183 msgid "Please specify the reason for losing the deal." msgstr "Molimo Vas da precizirate razlog gubitka poslovne prilike." -#. Label of the position (Int) field in DocType 'CRM Deal Status' -#. Label of the position (Int) field in DocType 'CRM Lead Status' -#: crm/fcrm/doctype/crm_deal_status/crm_deal_status.json -#: crm/fcrm/doctype/crm_lead_status/crm_lead_status.json +#. Label of the position (Int) field in PageType 'CRM Deal Status' +#. Label of the position (Int) field in PageType 'CRM Lead Status' +#: crm/fcrm/pagetype/crm_deal_status/crm_deal_status.json +#: crm/fcrm/pagetype/crm_lead_status/crm_lead_status.json msgid "Position" msgstr "Pozicija" @@ -4373,18 +4373,18 @@ msgstr "Pozicija" msgid "Primary" msgstr "Primarna" -#. Label of the email (Data) field in DocType 'CRM Deal' -#: crm/fcrm/doctype/crm_deal/crm_deal.json +#. Label of the email (Data) field in PageType 'CRM Deal' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json msgid "Primary Email" msgstr "Primarni imejl" -#. Label of the mobile_no (Data) field in DocType 'CRM Deal' -#: crm/fcrm/doctype/crm_deal/crm_deal.json +#. Label of the mobile_no (Data) field in PageType 'CRM Deal' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json msgid "Primary Mobile No" msgstr "Primarni broj mobilnog telefona" -#. Label of the phone (Data) field in DocType 'CRM Deal' -#: crm/fcrm/doctype/crm_deal/crm_deal.json +#. Label of the phone (Data) field in PageType 'CRM Deal' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json msgid "Primary Phone" msgstr "Primarni telefon" @@ -4392,57 +4392,57 @@ msgstr "Primarni telefon" msgid "Primary contact set" msgstr "Primarni kontakt je postavljen" -#. Label of the priorities (Table) field in DocType 'CRM Service Level +#. Label of the priorities (Table) field in PageType 'CRM Service Level #. Agreement' -#: crm/fcrm/doctype/crm_service_level_agreement/crm_service_level_agreement.json +#: crm/fcrm/pagetype/crm_service_level_agreement/crm_service_level_agreement.json msgid "Priorities" msgstr "Prioriteti" -#. Label of the priority (Link) field in DocType 'CRM Service Level Priority' -#. Label of the priority (Select) field in DocType 'CRM Task' -#: crm/fcrm/doctype/crm_service_level_priority/crm_service_level_priority.json -#: crm/fcrm/doctype/crm_task/crm_task.json +#. Label of the priority (Link) field in PageType 'CRM Service Level Priority' +#. Label of the priority (Select) field in PageType 'CRM Task' +#: crm/fcrm/pagetype/crm_service_level_priority/crm_service_level_priority.json +#: crm/fcrm/pagetype/crm_task/crm_task.json #: frontend/src/components/Settings/AssignmentRules/AssignmentRuleView.vue:64 #: frontend/src/components/Settings/AssignmentRules/AssignmentRulesList.vue:20 msgid "Priority" msgstr "Prioritet" -#. Label of the private (Check) field in DocType 'CRM Dashboard' -#: crm/fcrm/doctype/crm_dashboard/crm_dashboard.json +#. Label of the private (Check) field in PageType 'CRM Dashboard' +#: crm/fcrm/pagetype/crm_dashboard/crm_dashboard.json #: frontend/src/components/FilesUploader/FilesUploaderArea.vue:89 msgid "Private" msgstr "Privatno" -#. Label of the probability (Percent) field in DocType 'CRM Deal' -#. Label of the probability (Percent) field in DocType 'CRM Deal Status' -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_deal_status/crm_deal_status.json +#. Label of the probability (Percent) field in PageType 'CRM Deal' +#. Label of the probability (Percent) field in PageType 'CRM Deal Status' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_deal_status/crm_deal_status.json msgid "Probability" msgstr "Verovatnoća" -#. Label of the product_code (Link) field in DocType 'CRM Products' -#: crm/fcrm/doctype/crm_products/crm_products.json +#. Label of the product_code (Link) field in PageType 'CRM Products' +#: crm/fcrm/pagetype/crm_products/crm_products.json msgid "Product" msgstr "Proizvod" -#. Label of the product_code (Data) field in DocType 'CRM Product' -#: crm/fcrm/doctype/crm_product/crm_product.json +#. Label of the product_code (Data) field in PageType 'CRM Product' +#: crm/fcrm/pagetype/crm_product/crm_product.json msgid "Product Code" msgstr "Šifra proizvoda" -#. Label of the product_name (Data) field in DocType 'CRM Product' -#. Label of the product_name (Data) field in DocType 'CRM Products' -#: crm/fcrm/doctype/crm_product/crm_product.json -#: crm/fcrm/doctype/crm_products/crm_products.json +#. Label of the product_name (Data) field in PageType 'CRM Product' +#. Label of the product_name (Data) field in PageType 'CRM Products' +#: crm/fcrm/pagetype/crm_product/crm_product.json +#: crm/fcrm/pagetype/crm_products/crm_products.json msgid "Product Name" msgstr "Naziv proizvoda" -#. Label of the products_tab (Tab Break) field in DocType 'CRM Deal' -#. Label of the products (Table) field in DocType 'CRM Deal' -#. Label of the products_tab (Tab Break) field in DocType 'CRM Lead' -#. Label of the products (Table) field in DocType 'CRM Lead' -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_lead/crm_lead.json +#. Label of the products_tab (Tab Break) field in PageType 'CRM Deal' +#. Label of the products (Table) field in PageType 'CRM Deal' +#. Label of the products_tab (Tab Break) field in PageType 'CRM Lead' +#. Label of the products (Table) field in PageType 'CRM Lead' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_lead/crm_lead.json msgid "Products" msgstr "Proizvodi" @@ -4459,8 +4459,8 @@ msgstr "Profil je uspešno ažuriran" msgid "Projected vs actual revenue based on deal probability" msgstr "Očekivani naspram stvarnih prihoda na osnovu verovatnoće poslovne prilike" -#. Label of the public (Check) field in DocType 'CRM View Settings' -#: crm/fcrm/doctype/crm_view_settings/crm_view_settings.json +#. Label of the public (Check) field in PageType 'CRM View Settings' +#: crm/fcrm/pagetype/crm_view_settings/crm_view_settings.json msgid "Public" msgstr "Javni" @@ -4472,23 +4472,23 @@ msgstr "Javni prikazi" msgid "Public view" msgstr "Javni prikaz" -#. Label of the qty (Float) field in DocType 'CRM Products' -#: crm/fcrm/doctype/crm_products/crm_products.json +#. Label of the qty (Float) field in PageType 'CRM Products' +#: crm/fcrm/pagetype/crm_products/crm_products.json msgid "Quantity" msgstr "Količina" -#. Option for the 'Status' (Select) field in DocType 'CRM Call Log' -#: crm/fcrm/doctype/crm_call_log/crm_call_log.json +#. Option for the 'Status' (Select) field in PageType 'CRM Call Log' +#: crm/fcrm/pagetype/crm_call_log/crm_call_log.json msgid "Queued" msgstr "U redu" -#. Option for the 'Type' (Select) field in DocType 'CRM Fields Layout' -#: crm/fcrm/doctype/crm_fields_layout/crm_fields_layout.json +#. Option for the 'Type' (Select) field in PageType 'CRM Fields Layout' +#: crm/fcrm/pagetype/crm_fields_layout/crm_fields_layout.json msgid "Quick Entry" msgstr "Brzi unos" -#. Option for the 'Type' (Select) field in DocType 'CRM Global Settings' -#: crm/fcrm/doctype/crm_global_settings/crm_global_settings.json +#. Option for the 'Type' (Select) field in PageType 'CRM Global Settings' +#: crm/fcrm/pagetype/crm_global_settings/crm_global_settings.json msgid "Quick Filters" msgstr "Brzi filteri" @@ -4500,13 +4500,13 @@ msgstr "Brzi filteri su uspešno ažurirani" msgid "Quick entry layout" msgstr "Raspored za brzi unos" -#. Label of the rate (Currency) field in DocType 'CRM Products' -#: crm/fcrm/doctype/crm_products/crm_products.json +#. Label of the rate (Currency) field in PageType 'CRM Products' +#: crm/fcrm/pagetype/crm_products/crm_products.json msgid "Rate" msgstr "Jedinična cena" -#. Label of the read (Check) field in DocType 'CRM Notification' -#: crm/fcrm/doctype/crm_notification/crm_notification.json +#. Label of the read (Check) field in PageType 'CRM Notification' +#: crm/fcrm/pagetype/crm_notification/crm_notification.json msgid "Read" msgstr "Pročitano" @@ -4514,48 +4514,48 @@ msgstr "Pročitano" msgid "Reason" msgstr "Razlog" -#. Label of the record_calls (Check) field in DocType 'CRM Twilio Settings' -#: crm/fcrm/doctype/crm_twilio_settings/crm_twilio_settings.json +#. Label of the record_calls (Check) field in PageType 'CRM Twilio Settings' +#: crm/fcrm/pagetype/crm_twilio_settings/crm_twilio_settings.json msgid "Record Calls" msgstr "Zabeleži pozive" -#. Label of the record_call (Check) field in DocType 'CRM Exotel Settings' -#: crm/fcrm/doctype/crm_exotel_settings/crm_exotel_settings.json +#. Label of the record_call (Check) field in PageType 'CRM Exotel Settings' +#: crm/fcrm/pagetype/crm_exotel_settings/crm_exotel_settings.json msgid "Record Outgoing Calls" msgstr "Zabeleži odlazne pozive" -#. Label of the recording_url (Data) field in DocType 'CRM Call Log' -#: crm/fcrm/doctype/crm_call_log/crm_call_log.json +#. Label of the recording_url (Data) field in PageType 'CRM Call Log' +#: crm/fcrm/pagetype/crm_call_log/crm_call_log.json msgid "Recording URL" msgstr "Zabeležiti URL" -#. Label of the reference_name (Dynamic Link) field in DocType 'CRM +#. Label of the reference_name (Dynamic Link) field in PageType 'CRM #. Notification' -#. Label of the reference_docname (Dynamic Link) field in DocType 'CRM Task' -#. Label of the reference_docname (Dynamic Link) field in DocType 'FCRM Note' -#: crm/fcrm/doctype/crm_notification/crm_notification.json -#: crm/fcrm/doctype/crm_task/crm_task.json -#: crm/fcrm/doctype/fcrm_note/fcrm_note.json -msgid "Reference Doc" +#. Label of the reference_docname (Dynamic Link) field in PageType 'CRM Task' +#. Label of the reference_docname (Dynamic Link) field in PageType 'FCRM Note' +#: crm/fcrm/pagetype/crm_notification/crm_notification.json +#: crm/fcrm/pagetype/crm_task/crm_task.json +#: crm/fcrm/pagetype/fcrm_note/fcrm_note.json +msgid "Reference Pg" msgstr "Referenca dokumenta" -#. Label of the reference_doctype (Link) field in DocType 'CRM Notification' -#: crm/fcrm/doctype/crm_notification/crm_notification.json -msgid "Reference Doctype" -msgstr "DocType referenca" +#. Label of the reference_pagetype (Link) field in PageType 'CRM Notification' +#: crm/fcrm/pagetype/crm_notification/crm_notification.json +msgid "Reference Pagetype" +msgstr "PageType referenca" -#. Label of the reference_doctype (Link) field in DocType 'CRM Call Log' -#. Label of the reference_doctype (Link) field in DocType 'CRM Task' -#. Label of the reference_doctype (Link) field in DocType 'FCRM Note' -#: crm/fcrm/doctype/crm_call_log/crm_call_log.json -#: crm/fcrm/doctype/crm_task/crm_task.json -#: crm/fcrm/doctype/fcrm_note/fcrm_note.json +#. Label of the reference_pagetype (Link) field in PageType 'CRM Call Log' +#. Label of the reference_pagetype (Link) field in PageType 'CRM Task' +#. Label of the reference_pagetype (Link) field in PageType 'FCRM Note' +#: crm/fcrm/pagetype/crm_call_log/crm_call_log.json +#: crm/fcrm/pagetype/crm_task/crm_task.json +#: crm/fcrm/pagetype/fcrm_note/fcrm_note.json msgid "Reference Document Type" msgstr "Vrsta referentnog dokumenta" -#. Label of the reference_docname (Dynamic Link) field in DocType 'CRM Call +#. Label of the reference_docname (Dynamic Link) field in PageType 'CRM Call #. Log' -#: crm/fcrm/doctype/crm_call_log/crm_call_log.json +#: crm/fcrm/pagetype/crm_call_log/crm_call_log.json msgid "Reference Name" msgstr "Naziv reference" @@ -4625,8 +4625,8 @@ msgstr "Odgovori svima" msgid "Report an Issue" msgstr "Prijavi problem" -#. Option for the 'Type' (Select) field in DocType 'CRM Fields Layout' -#: crm/fcrm/doctype/crm_fields_layout/crm_fields_layout.json +#. Option for the 'Type' (Select) field in PageType 'CRM Fields Layout' +#: crm/fcrm/pagetype/crm_fields_layout/crm_fields_layout.json msgid "Required Fields" msgstr "Obavezna polja" @@ -4642,7 +4642,7 @@ msgstr "Resetuj" msgid "Reset Changes" msgstr "Resetuj izmene" -#: crm/fcrm/doctype/erpnext_crm_settings/erpnext_crm_settings.js:7 +#: crm/fcrm/pagetype/erpnext_crm_settings/erpnext_crm_settings.js:7 msgid "Reset ERPNext Form Script" msgstr "Resetuj ERPNext skriptu obrasca" @@ -4654,35 +4654,35 @@ msgstr "Resetuj na podrazumevano" msgid "Reset to default" msgstr "Vrati na podrazumevano" -#. Label of the response_by (Datetime) field in DocType 'CRM Deal' -#. Label of the response_by (Datetime) field in DocType 'CRM Lead' -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_lead/crm_lead.json +#. Label of the response_by (Datetime) field in PageType 'CRM Deal' +#. Label of the response_by (Datetime) field in PageType 'CRM Lead' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_lead/crm_lead.json msgid "Response By" msgstr "Odgovorio" -#. Label of the response_details_section (Section Break) field in DocType 'CRM +#. Label of the response_details_section (Section Break) field in PageType 'CRM #. Deal' -#. Label of the response_details_section (Section Break) field in DocType 'CRM +#. Label of the response_details_section (Section Break) field in PageType 'CRM #. Lead' -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_lead/crm_lead.json +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_lead/crm_lead.json msgid "Response Details" msgstr "Detalji odgovora" -#. Label of the section_break_ufaf (Section Break) field in DocType 'CRM +#. Label of the section_break_ufaf (Section Break) field in PageType 'CRM #. Service Level Agreement' -#: crm/fcrm/doctype/crm_service_level_agreement/crm_service_level_agreement.json +#: crm/fcrm/pagetype/crm_service_level_agreement/crm_service_level_agreement.json msgid "Response and Follow Up" msgstr "Odgovor i praćenje" -#: crm/fcrm/doctype/fcrm_settings/fcrm_settings.js:14 +#: crm/fcrm/pagetype/fcrm_settings/fcrm_settings.js:14 msgid "Restore" msgstr "Vrati" -#. Label of the restore_defaults (Button) field in DocType 'FCRM Settings' -#: crm/fcrm/doctype/fcrm_settings/fcrm_settings.js:13 -#: crm/fcrm/doctype/fcrm_settings/fcrm_settings.json +#. Label of the restore_defaults (Button) field in PageType 'FCRM Settings' +#: crm/fcrm/pagetype/fcrm_settings/fcrm_settings.js:13 +#: crm/fcrm/pagetype/fcrm_settings/fcrm_settings.json msgid "Restore Defaults" msgstr "Vrati podrazumevano" @@ -4699,13 +4699,13 @@ msgstr "Prihod" msgid "Rich Text" msgstr "Bogati tekst" -#. Label of the rgt (Int) field in DocType 'CRM Territory' -#: crm/fcrm/doctype/crm_territory/crm_territory.json +#. Label of the rgt (Int) field in PageType 'CRM Territory' +#: crm/fcrm/pagetype/crm_territory/crm_territory.json msgid "Right" msgstr "Desno" -#. Option for the 'Status' (Select) field in DocType 'CRM Call Log' -#: crm/fcrm/doctype/crm_call_log/crm_call_log.json +#. Option for the 'Status' (Select) field in PageType 'CRM Call Log' +#: crm/fcrm/pagetype/crm_call_log/crm_call_log.json msgid "Ringing" msgstr "Zvonjenje" @@ -4714,55 +4714,55 @@ msgstr "Zvonjenje" msgid "Ringing..." msgstr "Zvonjenje..." -#. Label of the role (Select) field in DocType 'CRM Invitation' -#: crm/fcrm/doctype/crm_invitation/crm_invitation.json +#. Label of the role (Select) field in PageType 'CRM Invitation' +#: crm/fcrm/pagetype/crm_invitation/crm_invitation.json #: frontend/src/components/Modals/AddExistingUserModal.vue:46 msgid "Role" msgstr "Uloga" -#. Option for the 'Type' (Select) field in DocType 'CRM Dropdown Item' -#. Label of the route (Data) field in DocType 'CRM Dropdown Item' -#: crm/fcrm/doctype/crm_dropdown_item/crm_dropdown_item.json +#. Option for the 'Type' (Select) field in PageType 'CRM Dropdown Item' +#. Label of the route (Data) field in PageType 'CRM Dropdown Item' +#: crm/fcrm/pagetype/crm_dropdown_item/crm_dropdown_item.json msgid "Route" msgstr "Putanja" -#. Label of the route_name (Data) field in DocType 'CRM View Settings' -#: crm/fcrm/doctype/crm_view_settings/crm_view_settings.json +#. Label of the route_name (Data) field in PageType 'CRM View Settings' +#: crm/fcrm/pagetype/crm_view_settings/crm_view_settings.json msgid "Route Name" msgstr "Naziv putanje" -#. Label of the rows (Code) field in DocType 'CRM View Settings' -#: crm/fcrm/doctype/crm_view_settings/crm_view_settings.json +#. Label of the rows (Code) field in PageType 'CRM View Settings' +#: crm/fcrm/pagetype/crm_view_settings/crm_view_settings.json msgid "Rows" msgstr "Redovi" -#. Label of the sla_tab (Tab Break) field in DocType 'CRM Deal' -#. Label of the sla (Link) field in DocType 'CRM Deal' -#. Label of the sla_tab (Tab Break) field in DocType 'CRM Lead' -#. Label of the sla (Link) field in DocType 'CRM Lead' -#. Label of a shortcut in the Frappe CRM Workspace -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_lead/crm_lead.json -#: crm/fcrm/workspace/frappe_crm/frappe_crm.json +#. Label of the sla_tab (Tab Break) field in PageType 'CRM Deal' +#. Label of the sla (Link) field in PageType 'CRM Deal' +#. Label of the sla_tab (Tab Break) field in PageType 'CRM Lead' +#. Label of the sla (Link) field in PageType 'CRM Lead' +#. Label of a shortcut in the Jingrow CRM Workspace +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_lead/crm_lead.json +#: crm/fcrm/workspace/jingrow_crm/jingrow_crm.json msgid "SLA" msgstr "Sporazum o nivou usluge" -#. Label of the sla_creation (Datetime) field in DocType 'CRM Deal' -#. Label of the sla_creation (Datetime) field in DocType 'CRM Lead' -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_lead/crm_lead.json +#. Label of the sla_creation (Datetime) field in PageType 'CRM Deal' +#. Label of the sla_creation (Datetime) field in PageType 'CRM Lead' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_lead/crm_lead.json msgid "SLA Creation" msgstr "Kreiranje sporazuma o nivou usluge" -#. Label of the sla_name (Data) field in DocType 'CRM Service Level Agreement' -#: crm/fcrm/doctype/crm_service_level_agreement/crm_service_level_agreement.json +#. Label of the sla_name (Data) field in PageType 'CRM Service Level Agreement' +#: crm/fcrm/pagetype/crm_service_level_agreement/crm_service_level_agreement.json msgid "SLA Name" msgstr "Naziv sporazuma o nivou usluge" -#. Label of the sla_status (Select) field in DocType 'CRM Deal' -#. Label of the sla_status (Select) field in DocType 'CRM Lead' -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_lead/crm_lead.json +#. Label of the sla_status (Select) field in PageType 'CRM Deal' +#. Label of the sla_status (Select) field in PageType 'CRM Lead' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_lead/crm_lead.json msgid "SLA Status" msgstr "Status sporazuma o nivou usluge" @@ -4771,57 +4771,57 @@ msgid "SUBJECT" msgstr "NASLOV" #. Name of a role -#. Option for the 'Role' (Select) field in DocType 'CRM Invitation' -#: crm/fcrm/doctype/crm_call_log/crm_call_log.json -#: crm/fcrm/doctype/crm_communication_status/crm_communication_status.json -#: crm/fcrm/doctype/crm_dashboard/crm_dashboard.json -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_deal_status/crm_deal_status.json -#: crm/fcrm/doctype/crm_exotel_settings/crm_exotel_settings.json -#: crm/fcrm/doctype/crm_form_script/crm_form_script.json -#: crm/fcrm/doctype/crm_global_settings/crm_global_settings.json -#: crm/fcrm/doctype/crm_holiday_list/crm_holiday_list.json -#: crm/fcrm/doctype/crm_industry/crm_industry.json -#: crm/fcrm/doctype/crm_invitation/crm_invitation.json -#: crm/fcrm/doctype/crm_lead/crm_lead.json -#: crm/fcrm/doctype/crm_lead_source/crm_lead_source.json -#: crm/fcrm/doctype/crm_lead_status/crm_lead_status.json -#: crm/fcrm/doctype/crm_lost_reason/crm_lost_reason.json -#: crm/fcrm/doctype/crm_notification/crm_notification.json -#: crm/fcrm/doctype/crm_organization/crm_organization.json -#: crm/fcrm/doctype/crm_service_level_agreement/crm_service_level_agreement.json -#: crm/fcrm/doctype/crm_task/crm_task.json -#: crm/fcrm/doctype/crm_territory/crm_territory.json -#: crm/fcrm/doctype/crm_twilio_settings/crm_twilio_settings.json -#: crm/fcrm/doctype/crm_view_settings/crm_view_settings.json -#: crm/fcrm/doctype/erpnext_crm_settings/erpnext_crm_settings.json -#: crm/fcrm/doctype/fcrm_note/fcrm_note.json -#: crm/fcrm/doctype/fcrm_settings/fcrm_settings.json -#: crm/fcrm/doctype/helpdesk_crm_settings/helpdesk_crm_settings.json +#. Option for the 'Role' (Select) field in PageType 'CRM Invitation' +#: crm/fcrm/pagetype/crm_call_log/crm_call_log.json +#: crm/fcrm/pagetype/crm_communication_status/crm_communication_status.json +#: crm/fcrm/pagetype/crm_dashboard/crm_dashboard.json +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_deal_status/crm_deal_status.json +#: crm/fcrm/pagetype/crm_exotel_settings/crm_exotel_settings.json +#: crm/fcrm/pagetype/crm_form_script/crm_form_script.json +#: crm/fcrm/pagetype/crm_global_settings/crm_global_settings.json +#: crm/fcrm/pagetype/crm_holiday_list/crm_holiday_list.json +#: crm/fcrm/pagetype/crm_industry/crm_industry.json +#: crm/fcrm/pagetype/crm_invitation/crm_invitation.json +#: crm/fcrm/pagetype/crm_lead/crm_lead.json +#: crm/fcrm/pagetype/crm_lead_source/crm_lead_source.json +#: crm/fcrm/pagetype/crm_lead_status/crm_lead_status.json +#: crm/fcrm/pagetype/crm_lost_reason/crm_lost_reason.json +#: crm/fcrm/pagetype/crm_notification/crm_notification.json +#: crm/fcrm/pagetype/crm_organization/crm_organization.json +#: crm/fcrm/pagetype/crm_service_level_agreement/crm_service_level_agreement.json +#: crm/fcrm/pagetype/crm_task/crm_task.json +#: crm/fcrm/pagetype/crm_territory/crm_territory.json +#: crm/fcrm/pagetype/crm_twilio_settings/crm_twilio_settings.json +#: crm/fcrm/pagetype/crm_view_settings/crm_view_settings.json +#: crm/fcrm/pagetype/erpnext_crm_settings/erpnext_crm_settings.json +#: crm/fcrm/pagetype/fcrm_note/fcrm_note.json +#: crm/fcrm/pagetype/fcrm_settings/fcrm_settings.json +#: crm/fcrm/pagetype/helpdesk_crm_settings/helpdesk_crm_settings.json msgid "Sales Manager" msgstr "Menadžer prodaje" #. Name of a role -#. Option for the 'Role' (Select) field in DocType 'CRM Invitation' -#: crm/fcrm/doctype/crm_call_log/crm_call_log.json -#: crm/fcrm/doctype/crm_communication_status/crm_communication_status.json -#: crm/fcrm/doctype/crm_dashboard/crm_dashboard.json -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_deal_status/crm_deal_status.json -#: crm/fcrm/doctype/crm_global_settings/crm_global_settings.json -#: crm/fcrm/doctype/crm_holiday_list/crm_holiday_list.json -#: crm/fcrm/doctype/crm_industry/crm_industry.json -#: crm/fcrm/doctype/crm_invitation/crm_invitation.json -#: crm/fcrm/doctype/crm_lead/crm_lead.json -#: crm/fcrm/doctype/crm_lead_source/crm_lead_source.json -#: crm/fcrm/doctype/crm_lead_status/crm_lead_status.json -#: crm/fcrm/doctype/crm_lost_reason/crm_lost_reason.json -#: crm/fcrm/doctype/crm_notification/crm_notification.json -#: crm/fcrm/doctype/crm_organization/crm_organization.json -#: crm/fcrm/doctype/crm_task/crm_task.json -#: crm/fcrm/doctype/crm_territory/crm_territory.json -#: crm/fcrm/doctype/crm_view_settings/crm_view_settings.json -#: crm/fcrm/doctype/fcrm_note/fcrm_note.json +#. Option for the 'Role' (Select) field in PageType 'CRM Invitation' +#: crm/fcrm/pagetype/crm_call_log/crm_call_log.json +#: crm/fcrm/pagetype/crm_communication_status/crm_communication_status.json +#: crm/fcrm/pagetype/crm_dashboard/crm_dashboard.json +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_deal_status/crm_deal_status.json +#: crm/fcrm/pagetype/crm_global_settings/crm_global_settings.json +#: crm/fcrm/pagetype/crm_holiday_list/crm_holiday_list.json +#: crm/fcrm/pagetype/crm_industry/crm_industry.json +#: crm/fcrm/pagetype/crm_invitation/crm_invitation.json +#: crm/fcrm/pagetype/crm_lead/crm_lead.json +#: crm/fcrm/pagetype/crm_lead_source/crm_lead_source.json +#: crm/fcrm/pagetype/crm_lead_status/crm_lead_status.json +#: crm/fcrm/pagetype/crm_lost_reason/crm_lost_reason.json +#: crm/fcrm/pagetype/crm_notification/crm_notification.json +#: crm/fcrm/pagetype/crm_organization/crm_organization.json +#: crm/fcrm/pagetype/crm_task/crm_task.json +#: crm/fcrm/pagetype/crm_territory/crm_territory.json +#: crm/fcrm/pagetype/crm_view_settings/crm_view_settings.json +#: crm/fcrm/pagetype/fcrm_note/fcrm_note.json #: frontend/src/components/Modals/AddExistingUserModal.vue:92 #: frontend/src/components/Settings/InviteUserPage.vue:156 #: frontend/src/components/Settings/InviteUserPage.vue:163 @@ -4845,17 +4845,17 @@ msgstr "Korisnik prodaje" msgid "Salesperson" msgstr "Prodavac" -#. Label of the salutation (Link) field in DocType 'CRM Deal' -#. Label of the salutation (Link) field in DocType 'CRM Lead' -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_lead/crm_lead.json +#. Label of the salutation (Link) field in PageType 'CRM Deal' +#. Label of the salutation (Link) field in PageType 'CRM Lead' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_lead/crm_lead.json msgid "Salutation" msgstr "Pozdrav" -#. Option for the 'Weekly Off' (Select) field in DocType 'CRM Holiday List' -#. Option for the 'Workday' (Select) field in DocType 'CRM Service Day' -#: crm/fcrm/doctype/crm_holiday_list/crm_holiday_list.json -#: crm/fcrm/doctype/crm_service_day/crm_service_day.json +#. Option for the 'Weekly Off' (Select) field in PageType 'CRM Holiday List' +#. Option for the 'Workday' (Select) field in PageType 'CRM Service Day' +#: crm/fcrm/pagetype/crm_holiday_list/crm_holiday_list.json +#: crm/fcrm/pagetype/crm_service_day/crm_service_day.json msgid "Saturday" msgstr "Subota" @@ -4904,8 +4904,8 @@ msgstr "Zakaži događaj" msgid "Schedule an event" msgstr "Zakaži događaj" -#. Label of the script (Code) field in DocType 'CRM Form Script' -#: crm/fcrm/doctype/crm_form_script/crm_form_script.json +#. Label of the script (Code) field in PageType 'CRM Form Script' +#: crm/fcrm/pagetype/crm_form_script/crm_form_script.json msgid "Script" msgstr "Skripta" @@ -4973,18 +4973,18 @@ msgstr "Pošalji imejl" msgid "Send invites to" msgstr "Pošalji pozivnice za" -#. Option for the 'Type' (Select) field in DocType 'CRM Dropdown Item' -#: crm/fcrm/doctype/crm_dropdown_item/crm_dropdown_item.json +#. Option for the 'Type' (Select) field in PageType 'CRM Dropdown Item' +#: crm/fcrm/pagetype/crm_dropdown_item/crm_dropdown_item.json msgid "Separator" msgstr "Separator" -#. Label of the naming_series (Select) field in DocType 'CRM Lead' -#: crm/fcrm/doctype/crm_lead/crm_lead.json +#. Label of the naming_series (Select) field in PageType 'CRM Lead' +#: crm/fcrm/pagetype/crm_lead/crm_lead.json msgid "Series" msgstr "Serija" -#. Label of the service_provider (Select) field in DocType 'FCRM Settings' -#: crm/fcrm/doctype/fcrm_settings/fcrm_settings.json +#. Label of the service_provider (Select) field in PageType 'FCRM Settings' +#: crm/fcrm/pagetype/fcrm_settings/fcrm_settings.json msgid "Service Provider" msgstr "Pružalac usluge" @@ -5029,8 +5029,8 @@ msgid "Setting up" msgstr "Podešavanje" #: frontend/src/components/Settings/emailConfig.js:145 -msgid "Setting up Frappe Mail requires you to have an API key and API Secret of your email account. Read more " -msgstr "Podešavanje Frappe Mail zahteva da imate API ključ i API tajnu za svoj imejl nalog. Saznajte više " +msgid "Setting up Jingrow Mail requires you to have an API key and API Secret of your email account. Read more " +msgstr "Podešavanje Jingrow Mail zahteva da imate API ključ i API tajnu za svoj imejl nalog. Saznajte više " #: frontend/src/components/Settings/emailConfig.js:97 msgid "Setting up GMail requires you to enable two factor authentication\n" @@ -5062,8 +5062,8 @@ msgid "Setting up Yandex requires you to enable two factor authentication\n" "\t\t and app specific passwords. Read more " msgstr "Podešavanje Yandex-a zahteva uključivanje dvofaktorske autentifikacije i lozinke za specifične aplikacije. Saznajte više " -#. Label of the defaults_tab (Tab Break) field in DocType 'FCRM Settings' -#: crm/fcrm/doctype/fcrm_settings/fcrm_settings.json +#. Label of the defaults_tab (Tab Break) field in PageType 'FCRM Settings' +#: crm/fcrm/pagetype/fcrm_settings/fcrm_settings.json #: frontend/src/components/Layouts/AppSidebar.vue:537 #: frontend/src/components/Settings/Settings.vue:12 msgid "Settings" @@ -5073,7 +5073,7 @@ msgstr "Podešavanja" msgid "Setup Email" msgstr "Podesite imejl" -#: crm/fcrm/doctype/fcrm_settings/fcrm_settings.py:199 +#: crm/fcrm/pagetype/fcrm_settings/fcrm_settings.py:199 msgid "Setup the Exchange Rate Provider as 'Exchangerate Host' in settings, as default provider does not support currency conversion for {0} to {1}." msgstr "Podesite provajdera deviznih kurseva kao 'Exchangerate Host' u podešavanjima, jer podrazumevani provajder ne podržava konverziju valuta iz {0} u {1}." @@ -5108,21 +5108,21 @@ msgstr "Prikaži manje" msgid "Show preview" msgstr "Prikaži prikaz" -#. Option for the 'Type' (Select) field in DocType 'CRM Fields Layout' -#: crm/fcrm/doctype/crm_fields_layout/crm_fields_layout.json +#. Option for the 'Type' (Select) field in PageType 'CRM Fields Layout' +#: crm/fcrm/pagetype/crm_fields_layout/crm_fields_layout.json msgid "Side Panel" msgstr "Bočni panel" -#. Option for the 'Type' (Select) field in DocType 'CRM Global Settings' -#: crm/fcrm/doctype/crm_global_settings/crm_global_settings.json +#. Option for the 'Type' (Select) field in PageType 'CRM Global Settings' +#: crm/fcrm/pagetype/crm_global_settings/crm_global_settings.json msgid "Sidebar Items" msgstr "Stavke bočne trake" -#. Description of the 'Condition' (Code) field in DocType 'CRM Service Level +#. Description of the 'Condition' (Code) field in PageType 'CRM Service Level #. Agreement' -#: crm/fcrm/doctype/crm_service_level_agreement/crm_service_level_agreement.json -msgid "Simple Python Expression, Example: doc.status == 'Open' and doc.lead_source == 'Ads'" -msgstr "Jednostavan python izraz, na primer: doc.status == 'Otvoreno' and doc.lead_source == 'Reklame'" +#: crm/fcrm/pagetype/crm_service_level_agreement/crm_service_level_agreement.json +msgid "Simple Python Expression, Example: pg.status == 'Open' and pg.lead_source == 'Ads'" +msgstr "Jednostavan python izraz, na primer: pg.status == 'Otvoreno' and pg.lead_source == 'Reklame'" #: frontend/src/components/AssignTo.vue:83 msgid "Since you removed {0} from the assignee, the {0} has also been removed." @@ -5145,16 +5145,16 @@ msgstr "Došlo je do greške pri ažuriranju pravila dodeljivanja" msgid "Sort" msgstr "Sortiraj" -#. Label of the source (Link) field in DocType 'CRM Deal' -#. Label of the source (Link) field in DocType 'CRM Lead' -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_lead/crm_lead.json +#. Label of the source (Link) field in PageType 'CRM Deal' +#. Label of the source (Link) field in PageType 'CRM Lead' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_lead/crm_lead.json #: frontend/src/components/Modals/EditValueModal.vue:10 msgid "Source" msgstr "Izvor" -#. Label of the source_name (Data) field in DocType 'CRM Lead Source' -#: crm/fcrm/doctype/crm_lead_source/crm_lead_source.json +#. Label of the source_name (Data) field in PageType 'CRM Lead Source' +#: crm/fcrm/pagetype/crm_lead_source/crm_lead_source.json msgid "Source Name" msgstr "Naziv izvora" @@ -5167,12 +5167,12 @@ msgstr "Razmak" msgid "Stage" msgstr "Faza" -#: crm/fcrm/doctype/crm_form_script/crm_form_script.js:15 +#: crm/fcrm/pagetype/crm_form_script/crm_form_script.js:15 msgid "Standard Form Scripts can not be modified, duplicate the Form Script instead." msgstr "Standardne skripte obrasca ne mogu da se menjaju, umesto toga neophodan je duplikat skripti." -#. Label of the standard_rate (Currency) field in DocType 'CRM Product' -#: crm/fcrm/doctype/crm_product/crm_product.json +#. Label of the standard_rate (Currency) field in PageType 'CRM Product' +#: crm/fcrm/pagetype/crm_product/crm_product.json msgid "Standard Selling Rate" msgstr "Standardna prodajna cena" @@ -5180,18 +5180,18 @@ msgstr "Standardna prodajna cena" msgid "Standard Views" msgstr "Standardni prikazi" -#. Label of the start_date (Date) field in DocType 'CRM Service Level +#. Label of the start_date (Date) field in PageType 'CRM Service Level #. Agreement' -#. Label of the start_date (Date) field in DocType 'CRM Task' -#: crm/fcrm/doctype/crm_service_level_agreement/crm_service_level_agreement.json -#: crm/fcrm/doctype/crm_task/crm_task.json +#. Label of the start_date (Date) field in PageType 'CRM Task' +#: crm/fcrm/pagetype/crm_service_level_agreement/crm_service_level_agreement.json +#: crm/fcrm/pagetype/crm_task/crm_task.json msgid "Start Date" msgstr "Datum početka" -#. Label of the start_time (Datetime) field in DocType 'CRM Call Log' -#. Label of the start_time (Time) field in DocType 'CRM Service Day' -#: crm/fcrm/doctype/crm_call_log/crm_call_log.json -#: crm/fcrm/doctype/crm_service_day/crm_service_day.json +#. Label of the start_time (Datetime) field in PageType 'CRM Call Log' +#. Label of the start_time (Time) field in PageType 'CRM Service Day' +#: crm/fcrm/pagetype/crm_call_log/crm_call_log.json +#: crm/fcrm/pagetype/crm_service_day/crm_service_day.json #: frontend/src/components/Calendar/CalendarEventPanel.vue:234 #: frontend/src/components/Modals/EventModal.vue:103 msgid "Start Time" @@ -5205,32 +5205,32 @@ msgstr "Vreme početka i završetka su obavezni" msgid "Start with sample 10 leads" msgstr "Započni sa 10 probnih potencijalnih klijenata" -#. Label of the status (Select) field in DocType 'CRM Call Log' -#. Label of the status (Data) field in DocType 'CRM Communication Status' -#. Label of the status (Link) field in DocType 'CRM Deal' -#. Label of the deal_status (Data) field in DocType 'CRM Deal Status' -#. Label of the status (Select) field in DocType 'CRM Invitation' -#. Label of the status (Link) field in DocType 'CRM Lead' -#. Label of the lead_status (Data) field in DocType 'CRM Lead Status' -#. Label of the status (Select) field in DocType 'CRM Task' -#: crm/fcrm/doctype/crm_call_log/crm_call_log.json -#: crm/fcrm/doctype/crm_communication_status/crm_communication_status.json -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_deal_status/crm_deal_status.json -#: crm/fcrm/doctype/crm_invitation/crm_invitation.json -#: crm/fcrm/doctype/crm_lead/crm_lead.json -#: crm/fcrm/doctype/crm_lead_status/crm_lead_status.json -#: crm/fcrm/doctype/crm_task/crm_task.json frontend/src/pages/Contact.vue:505 +#. Label of the status (Select) field in PageType 'CRM Call Log' +#. Label of the status (Data) field in PageType 'CRM Communication Status' +#. Label of the status (Link) field in PageType 'CRM Deal' +#. Label of the deal_status (Data) field in PageType 'CRM Deal Status' +#. Label of the status (Select) field in PageType 'CRM Invitation' +#. Label of the status (Link) field in PageType 'CRM Lead' +#. Label of the lead_status (Data) field in PageType 'CRM Lead Status' +#. Label of the status (Select) field in PageType 'CRM Task' +#: crm/fcrm/pagetype/crm_call_log/crm_call_log.json +#: crm/fcrm/pagetype/crm_communication_status/crm_communication_status.json +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_deal_status/crm_deal_status.json +#: crm/fcrm/pagetype/crm_invitation/crm_invitation.json +#: crm/fcrm/pagetype/crm_lead/crm_lead.json +#: crm/fcrm/pagetype/crm_lead_status/crm_lead_status.json +#: crm/fcrm/pagetype/crm_task/crm_task.json frontend/src/pages/Contact.vue:505 #: frontend/src/pages/MobileContact.vue:513 #: frontend/src/pages/MobileOrganization.vue:457 #: frontend/src/pages/Organization.vue:478 msgid "Status" msgstr "Status" -#. Label of the status_change_log (Table) field in DocType 'CRM Deal' -#. Label of the status_change_log (Table) field in DocType 'CRM Lead' -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_lead/crm_lead.json +#. Label of the status_change_log (Table) field in PageType 'CRM Deal' +#. Label of the status_change_log (Table) field in PageType 'CRM Lead' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_lead/crm_lead.json msgid "Status Change Log" msgstr "Evidencija promena statusa" @@ -5239,8 +5239,8 @@ msgstr "Evidencija promena statusa" msgid "Status is required" msgstr "Status je obavezan" -#. Label of the subdomain (Data) field in DocType 'CRM Exotel Settings' -#: crm/fcrm/doctype/crm_exotel_settings/crm_exotel_settings.json +#. Label of the subdomain (Data) field in PageType 'CRM Exotel Settings' +#: crm/fcrm/pagetype/crm_exotel_settings/crm_exotel_settings.json msgid "Subdomain" msgstr "Poddomen" @@ -5258,10 +5258,10 @@ msgstr "Naslov je neophodan" msgid "Subject: {0}" msgstr "Naslov: {0}" -#. Option for the 'Weekly Off' (Select) field in DocType 'CRM Holiday List' -#. Option for the 'Workday' (Select) field in DocType 'CRM Service Day' -#: crm/fcrm/doctype/crm_holiday_list/crm_holiday_list.json -#: crm/fcrm/doctype/crm_service_day/crm_service_day.json +#. Option for the 'Weekly Off' (Select) field in PageType 'CRM Holiday List' +#. Option for the 'Workday' (Select) field in PageType 'CRM Service Day' +#: crm/fcrm/pagetype/crm_holiday_list/crm_holiday_list.json +#: crm/fcrm/pagetype/crm_service_day/crm_service_day.json msgid "Sunday" msgstr "Nedelja" @@ -5282,21 +5282,21 @@ msgid "System Configuration" msgstr "Sistemska podešavanja" #. Name of a role -#. Option for the 'Role' (Select) field in DocType 'CRM Invitation' -#: crm/fcrm/doctype/crm_dashboard/crm_dashboard.json -#: crm/fcrm/doctype/crm_exotel_settings/crm_exotel_settings.json -#: crm/fcrm/doctype/crm_fields_layout/crm_fields_layout.json -#: crm/fcrm/doctype/crm_global_settings/crm_global_settings.json -#: crm/fcrm/doctype/crm_invitation/crm_invitation.json -#: crm/fcrm/doctype/crm_lead_source/crm_lead_source.json -#: crm/fcrm/doctype/crm_lost_reason/crm_lost_reason.json -#: crm/fcrm/doctype/crm_notification/crm_notification.json -#: crm/fcrm/doctype/crm_product/crm_product.json -#: crm/fcrm/doctype/crm_telephony_agent/crm_telephony_agent.json -#: crm/fcrm/doctype/crm_twilio_settings/crm_twilio_settings.json -#: crm/fcrm/doctype/erpnext_crm_settings/erpnext_crm_settings.json -#: crm/fcrm/doctype/fcrm_settings/fcrm_settings.json -#: crm/fcrm/doctype/helpdesk_crm_settings/helpdesk_crm_settings.json +#. Option for the 'Role' (Select) field in PageType 'CRM Invitation' +#: crm/fcrm/pagetype/crm_dashboard/crm_dashboard.json +#: crm/fcrm/pagetype/crm_exotel_settings/crm_exotel_settings.json +#: crm/fcrm/pagetype/crm_fields_layout/crm_fields_layout.json +#: crm/fcrm/pagetype/crm_global_settings/crm_global_settings.json +#: crm/fcrm/pagetype/crm_invitation/crm_invitation.json +#: crm/fcrm/pagetype/crm_lead_source/crm_lead_source.json +#: crm/fcrm/pagetype/crm_lost_reason/crm_lost_reason.json +#: crm/fcrm/pagetype/crm_notification/crm_notification.json +#: crm/fcrm/pagetype/crm_product/crm_product.json +#: crm/fcrm/pagetype/crm_telephony_agent/crm_telephony_agent.json +#: crm/fcrm/pagetype/crm_twilio_settings/crm_twilio_settings.json +#: crm/fcrm/pagetype/erpnext_crm_settings/erpnext_crm_settings.json +#: crm/fcrm/pagetype/fcrm_settings/fcrm_settings.json +#: crm/fcrm/pagetype/helpdesk_crm_settings/helpdesk_crm_settings.json msgid "System Manager" msgstr "Sistem menadžer" @@ -5308,8 +5308,8 @@ msgstr "ZA" msgid "Take a note..." msgstr "Zapiši belešku..." -#. Option for the 'Type' (Select) field in DocType 'CRM Notification' -#: crm/fcrm/doctype/crm_notification/crm_notification.json +#. Option for the 'Type' (Select) field in PageType 'CRM Notification' +#: crm/fcrm/pagetype/crm_notification/crm_notification.json #: frontend/src/components/Layouts/AppSidebar.vue:555 msgid "Task" msgstr "Zadatak" @@ -5327,8 +5327,8 @@ msgstr "Telegram kanal" msgid "Telephony" msgstr "Telefonija" -#. Label of the telephony_medium (Select) field in DocType 'CRM Call Log' -#: crm/fcrm/doctype/crm_call_log/crm_call_log.json +#. Label of the telephony_medium (Select) field in PageType 'CRM Call Log' +#: crm/fcrm/pagetype/crm_call_log/crm_call_log.json msgid "Telephony Medium" msgstr "Sredstvo telefonije" @@ -5364,27 +5364,27 @@ msgstr "Šablon je uspešno preimenovan" msgid "Template updated successfully" msgstr "Šablon je uspešno ažuriran" -#. Label of a shortcut in the Frappe CRM Workspace -#: crm/fcrm/workspace/frappe_crm/frappe_crm.json +#. Label of a shortcut in the Jingrow CRM Workspace +#: crm/fcrm/workspace/jingrow_crm/jingrow_crm.json msgid "Territories" msgstr "Teritorije" -#. Label of the territory (Link) field in DocType 'CRM Deal' -#. Label of the territory (Link) field in DocType 'CRM Lead' -#. Label of the territory (Link) field in DocType 'CRM Organization' -#: crm/api/dashboard.py:1022 crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_lead/crm_lead.json -#: crm/fcrm/doctype/crm_organization/crm_organization.json +#. Label of the territory (Link) field in PageType 'CRM Deal' +#. Label of the territory (Link) field in PageType 'CRM Lead' +#. Label of the territory (Link) field in PageType 'CRM Organization' +#: crm/api/dashboard.py:1022 crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_lead/crm_lead.json +#: crm/fcrm/pagetype/crm_organization/crm_organization.json msgid "Territory" msgstr "Teritorija" -#. Label of the territory_manager (Link) field in DocType 'CRM Territory' -#: crm/fcrm/doctype/crm_territory/crm_territory.json +#. Label of the territory_manager (Link) field in PageType 'CRM Territory' +#: crm/fcrm/pagetype/crm_territory/crm_territory.json msgid "Territory Manager" msgstr "Menadžer teritorije" -#. Label of the territory_name (Data) field in DocType 'CRM Territory' -#: crm/fcrm/doctype/crm_territory/crm_territory.json +#. Label of the territory_name (Data) field in PageType 'CRM Territory' +#: crm/fcrm/pagetype/crm_territory/crm_territory.json msgid "Territory Name" msgstr "Naziv teritorije" @@ -5392,22 +5392,22 @@ msgstr "Naziv teritorije" msgid "Thanks" msgstr "Hvala" -#: crm/fcrm/doctype/crm_service_level_agreement/crm_service_level_agreement.py:46 +#: crm/fcrm/pagetype/crm_service_level_agreement/crm_service_level_agreement.py:46 msgid "The Condition '{0}' is invalid: {1}" msgstr "Uslov '{0}' je nevažeći: {1}" -#. Description of the 'Exchange Rate' (Float) field in DocType 'CRM Deal' -#: crm/fcrm/doctype/crm_deal/crm_deal.json +#. Description of the 'Exchange Rate' (Float) field in PageType 'CRM Deal' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json msgid "The rate used to convert the deal’s currency to your crm's base currency (set in CRM Settings). It is set once when the currency is first added and doesn't change automatically." msgstr "Kurs koji se unosi za konvertovanje valute poslovne prilike u osnovnu valutu iz Vašeg CRM-a (postavljeno u CRM podešavanjima). Postavlja se jednom, prilikom dodavanja valute i ne menja se automatski." -#. Description of the 'Exchange Rate' (Float) field in DocType 'CRM +#. Description of the 'Exchange Rate' (Float) field in PageType 'CRM #. Organization' -#: crm/fcrm/doctype/crm_organization/crm_organization.json +#: crm/fcrm/pagetype/crm_organization/crm_organization.json msgid "The rate used to convert the organization’s currency to your crm's base currency (set in CRM Settings). It is set once when the currency is first added and doesn't change automatically." msgstr "Kurs koji se koristi za konvertovanje valute organizacije u osnovnu valutu iz Vašeg CRM-a (postavljeno u CRM podešavanjima). Postavlja se jednom, prilikom dodavanja valute i ne menja se automatski." -#: crm/fcrm/doctype/crm_service_level_agreement/crm_service_level_agreement.js:14 +#: crm/fcrm/pagetype/crm_service_level_agreement/crm_service_level_agreement.js:14 msgid "There can only be one default priority in Priorities table" msgstr "U tabeli prioriteta može postojati samo jedan podrazumevani prioritet" @@ -5444,14 +5444,14 @@ msgstr "Ovo će obrisati izabrane stavke i povezane stavke sa njima, da li ste s msgid "This will delete selected items and unlink linked items to it, are you sure?" msgstr "Ovo će obrisati izabrane stavke i poništiti povezane stavke sa njima, da li ste sigurni?" -#: crm/fcrm/doctype/fcrm_settings/fcrm_settings.js:9 +#: crm/fcrm/pagetype/fcrm_settings/fcrm_settings.js:9 msgid "This will restore (if not exist) all the default statuses, custom fields and layouts. Delete & Restore will delete default layouts and then restore them." msgstr "Ova opcija će vratiti (ukoliko ne postoje) sve podrazumevane statuse, prilagođena polja i rasporede. Obriši i vrati će obrisati podrazumevane rasporede i potom ih ponovo kreirati." -#. Option for the 'Weekly Off' (Select) field in DocType 'CRM Holiday List' -#. Option for the 'Workday' (Select) field in DocType 'CRM Service Day' -#: crm/fcrm/doctype/crm_holiday_list/crm_holiday_list.json -#: crm/fcrm/doctype/crm_service_day/crm_service_day.json +#. Option for the 'Weekly Off' (Select) field in PageType 'CRM Holiday List' +#. Option for the 'Workday' (Select) field in PageType 'CRM Service Day' +#: crm/fcrm/pagetype/crm_holiday_list/crm_holiday_list.json +#: crm/fcrm/pagetype/crm_service_day/crm_service_day.json msgid "Thursday" msgstr "Četvrtak" @@ -5463,18 +5463,18 @@ msgstr "Vreme" msgid "Timespan" msgstr "Vremenski opseg" -#. Label of the title (Data) field in DocType 'CRM Task' -#. Label of the title (Data) field in DocType 'FCRM Note' -#: crm/fcrm/doctype/crm_task/crm_task.json -#: crm/fcrm/doctype/fcrm_note/fcrm_note.json +#. Label of the title (Data) field in PageType 'CRM Task' +#. Label of the title (Data) field in PageType 'FCRM Note' +#: crm/fcrm/pagetype/crm_task/crm_task.json +#: crm/fcrm/pagetype/fcrm_note/fcrm_note.json #: frontend/src/components/Modals/EventModal.vue:43 #: frontend/src/components/Modals/NoteModal.vue:26 #: frontend/src/components/Modals/TaskModal.vue:25 msgid "Title" msgstr "Naslov" -#. Label of the title_field (Data) field in DocType 'CRM View Settings' -#: crm/fcrm/doctype/crm_view_settings/crm_view_settings.json +#. Label of the title_field (Data) field in PageType 'CRM View Settings' +#: crm/fcrm/pagetype/crm_view_settings/crm_view_settings.json #: frontend/src/components/Kanban/KanbanSettings.vue:29 msgid "Title Field" msgstr "Polje za naslov" @@ -5484,28 +5484,28 @@ msgstr "Polje za naslov" msgid "Title is required" msgstr "Naslov je neophodan" -#. Label of the to (Data) field in DocType 'CRM Call Log' -#. Label of the to (Data) field in DocType 'CRM Status Change Log' -#: crm/fcrm/doctype/crm_call_log/crm_call_log.json -#: crm/fcrm/doctype/crm_status_change_log/crm_status_change_log.json +#. Label of the to (Data) field in PageType 'CRM Call Log' +#. Label of the to (Data) field in PageType 'CRM Status Change Log' +#: crm/fcrm/pagetype/crm_call_log/crm_call_log.json +#: crm/fcrm/pagetype/crm_status_change_log/crm_status_change_log.json #: frontend/src/components/Activities/EmailArea.vue:53 msgid "To" msgstr "Za" -#. Label of the to_date (Date) field in DocType 'CRM Holiday List' -#. Label of the to_date (Datetime) field in DocType 'CRM Status Change Log' -#: crm/fcrm/doctype/crm_holiday_list/crm_holiday_list.json -#: crm/fcrm/doctype/crm_status_change_log/crm_status_change_log.json +#. Label of the to_date (Date) field in PageType 'CRM Holiday List' +#. Label of the to_date (Datetime) field in PageType 'CRM Status Change Log' +#: crm/fcrm/pagetype/crm_holiday_list/crm_holiday_list.json +#: crm/fcrm/pagetype/crm_status_change_log/crm_status_change_log.json msgid "To Date" msgstr "Datum završetka" -#. Label of the to_type (Data) field in DocType 'CRM Status Change Log' -#: crm/fcrm/doctype/crm_status_change_log/crm_status_change_log.json +#. Label of the to_type (Data) field in PageType 'CRM Status Change Log' +#: crm/fcrm/pagetype/crm_status_change_log/crm_status_change_log.json msgid "To Type" msgstr "Do vrste" -#. Label of the to_user (Link) field in DocType 'CRM Notification' -#: crm/fcrm/doctype/crm_notification/crm_notification.json +#. Label of the to_user (Link) field in PageType 'CRM Notification' +#: crm/fcrm/pagetype/crm_notification/crm_notification.json msgid "To User" msgstr "Za korisnika" @@ -5517,8 +5517,8 @@ msgstr "Da biste saznali više o podešavanju imejl naloga, kliknite" msgid "Today" msgstr "Danas" -#. Option for the 'Status' (Select) field in DocType 'CRM Task' -#: crm/fcrm/doctype/crm_task/crm_task.json +#. Option for the 'Status' (Select) field in PageType 'CRM Task' +#: crm/fcrm/pagetype/crm_task/crm_task.json msgid "Todo" msgstr "Za uraditi" @@ -5535,22 +5535,22 @@ msgstr "Sutra" msgid "Took a call with John Doe and discussed the new project." msgstr "Obavljen poziv sa Petrom Petrovićem i razgovarano o novom projektu." -#. Label of the total (Currency) field in DocType 'CRM Deal' -#. Label of the total (Currency) field in DocType 'CRM Lead' -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_lead/crm_lead.json +#. Label of the total (Currency) field in PageType 'CRM Deal' +#. Label of the total (Currency) field in PageType 'CRM Lead' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_lead/crm_lead.json msgid "Total" msgstr "Ukupno" -#. Label of the total_holidays (Int) field in DocType 'CRM Holiday List' -#: crm/fcrm/doctype/crm_holiday_list/crm_holiday_list.json +#. Label of the total_holidays (Int) field in PageType 'CRM Holiday List' +#: crm/fcrm/pagetype/crm_holiday_list/crm_holiday_list.json msgid "Total Holidays" msgstr "Ukupno praznika" -#. Description of the 'Net Total' (Currency) field in DocType 'CRM Deal' -#. Description of the 'Net Total' (Currency) field in DocType 'CRM Lead' -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_lead/crm_lead.json +#. Description of the 'Net Total' (Currency) field in PageType 'CRM Deal' +#. Description of the 'Net Total' (Currency) field in PageType 'CRM Lead' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_lead/crm_lead.json msgid "Total after discount" msgstr "Ukupno nakon popusta" @@ -5571,10 +5571,10 @@ msgstr "Ukupan broj poslovnih prilika koje nisu dobijene niti izgubljene" msgid "Total number of won deals based on its closure date" msgstr "Ukupan broj dobijenih poslovnih prilika prema datumu zatvaranja" -#. Option for the 'Weekly Off' (Select) field in DocType 'CRM Holiday List' -#. Option for the 'Workday' (Select) field in DocType 'CRM Service Day' -#: crm/fcrm/doctype/crm_holiday_list/crm_holiday_list.json -#: crm/fcrm/doctype/crm_service_day/crm_service_day.json +#. Option for the 'Weekly Off' (Select) field in PageType 'CRM Holiday List' +#. Option for the 'Workday' (Select) field in PageType 'CRM Service Day' +#: crm/fcrm/pagetype/crm_holiday_list/crm_holiday_list.json +#: crm/fcrm/pagetype/crm_service_day/crm_service_day.json msgid "Tuesday" msgstr "Utorak" @@ -5582,30 +5582,30 @@ msgstr "Utorak" msgid "Turn into a group" msgstr "Pretvori u grupu" -#. Label of the twiml_sid (Data) field in DocType 'CRM Twilio Settings' -#: crm/fcrm/doctype/crm_twilio_settings/crm_twilio_settings.json +#. Label of the twiml_sid (Data) field in PageType 'CRM Twilio Settings' +#: crm/fcrm/pagetype/crm_twilio_settings/crm_twilio_settings.json msgid "TwiML SID" msgstr "TwiML SID" -#. Option for the 'Telephony Medium' (Select) field in DocType 'CRM Call Log' -#. Label of the twilio (Check) field in DocType 'CRM Telephony Agent' -#. Option for the 'Default Medium' (Select) field in DocType 'CRM Telephony +#. Option for the 'Telephony Medium' (Select) field in PageType 'CRM Call Log' +#. Label of the twilio (Check) field in PageType 'CRM Telephony Agent' +#. Option for the 'Default Medium' (Select) field in PageType 'CRM Telephony #. Agent' -#: crm/fcrm/doctype/crm_call_log/crm_call_log.json -#: crm/fcrm/doctype/crm_telephony_agent/crm_telephony_agent.json +#: crm/fcrm/pagetype/crm_call_log/crm_call_log.json +#: crm/fcrm/pagetype/crm_telephony_agent/crm_telephony_agent.json #: frontend/src/components/Layouts/AppSidebar.vue:601 #: frontend/src/components/Settings/TelephonySettings.vue:40 #: frontend/src/components/Settings/TelephonySettings.vue:50 msgid "Twilio" msgstr "Twilio" -#: crm/fcrm/doctype/crm_twilio_settings/crm_twilio_settings.py:59 -#: crm/fcrm/doctype/crm_twilio_settings/crm_twilio_settings.py:60 +#: crm/fcrm/pagetype/crm_twilio_settings/crm_twilio_settings.py:59 +#: crm/fcrm/pagetype/crm_twilio_settings/crm_twilio_settings.py:60 msgid "Twilio API credential creation error." msgstr "Greška prilikom kreiranja Twilio API kredencijala." -#. Label of the twilio_number (Data) field in DocType 'CRM Telephony Agent' -#: crm/fcrm/doctype/crm_telephony_agent/crm_telephony_agent.json +#. Label of the twilio_number (Data) field in PageType 'CRM Telephony Agent' +#: crm/fcrm/pagetype/crm_telephony_agent/crm_telephony_agent.json msgid "Twilio Number" msgstr "Twilio broj" @@ -5617,20 +5617,20 @@ msgstr "Twilio nije omogućen" msgid "Twilio settings updated successfully" msgstr "Twilio podešavanja su uspešno ažurirana" -#. Label of the type (Select) field in DocType 'CRM Call Log' -#. Label of the type (Select) field in DocType 'CRM Deal Status' -#. Label of the type (Select) field in DocType 'CRM Dropdown Item' -#. Label of the type (Select) field in DocType 'CRM Fields Layout' -#. Label of the type (Select) field in DocType 'CRM Global Settings' -#. Label of the type (Select) field in DocType 'CRM Notification' -#. Label of the type (Select) field in DocType 'CRM View Settings' -#: crm/fcrm/doctype/crm_call_log/crm_call_log.json -#: crm/fcrm/doctype/crm_deal_status/crm_deal_status.json -#: crm/fcrm/doctype/crm_dropdown_item/crm_dropdown_item.json -#: crm/fcrm/doctype/crm_fields_layout/crm_fields_layout.json -#: crm/fcrm/doctype/crm_global_settings/crm_global_settings.json -#: crm/fcrm/doctype/crm_notification/crm_notification.json -#: crm/fcrm/doctype/crm_view_settings/crm_view_settings.json +#. Label of the type (Select) field in PageType 'CRM Call Log' +#. Label of the type (Select) field in PageType 'CRM Deal Status' +#. Label of the type (Select) field in PageType 'CRM Dropdown Item' +#. Label of the type (Select) field in PageType 'CRM Fields Layout' +#. Label of the type (Select) field in PageType 'CRM Global Settings' +#. Label of the type (Select) field in PageType 'CRM Notification' +#. Label of the type (Select) field in PageType 'CRM View Settings' +#: crm/fcrm/pagetype/crm_call_log/crm_call_log.json +#: crm/fcrm/pagetype/crm_deal_status/crm_deal_status.json +#: crm/fcrm/pagetype/crm_dropdown_item/crm_dropdown_item.json +#: crm/fcrm/pagetype/crm_fields_layout/crm_fields_layout.json +#: crm/fcrm/pagetype/crm_global_settings/crm_global_settings.json +#: crm/fcrm/pagetype/crm_notification/crm_notification.json +#: crm/fcrm/pagetype/crm_view_settings/crm_view_settings.json msgid "Type" msgstr "Vrsta" @@ -5772,12 +5772,12 @@ msgstr "Otpremi sliku" msgid "Uploading {0}%" msgstr "Otpremanje {0}%" -#. Label of the user (Link) field in DocType 'CRM Dashboard' -#. Label of the user (Link) field in DocType 'CRM Telephony Agent' -#. Label of the user (Link) field in DocType 'CRM View Settings' -#: crm/fcrm/doctype/crm_dashboard/crm_dashboard.json -#: crm/fcrm/doctype/crm_telephony_agent/crm_telephony_agent.json -#: crm/fcrm/doctype/crm_view_settings/crm_view_settings.json +#. Label of the user (Link) field in PageType 'CRM Dashboard' +#. Label of the user (Link) field in PageType 'CRM Telephony Agent' +#. Label of the user (Link) field in PageType 'CRM View Settings' +#: crm/fcrm/pagetype/crm_dashboard/crm_dashboard.json +#: crm/fcrm/pagetype/crm_telephony_agent/crm_telephony_agent.json +#: crm/fcrm/pagetype/crm_view_settings/crm_view_settings.json msgid "User" msgstr "Korisnik" @@ -5785,8 +5785,8 @@ msgstr "Korisnik" msgid "User Management" msgstr "Upravljanje korisnicima" -#. Label of the user_name (Data) field in DocType 'CRM Telephony Agent' -#: crm/fcrm/doctype/crm_telephony_agent/crm_telephony_agent.json +#. Label of the user_name (Data) field in PageType 'CRM Telephony Agent' +#: crm/fcrm/pagetype/crm_telephony_agent/crm_telephony_agent.json msgid "User Name" msgstr "Korisničko ime" @@ -5808,9 +5808,9 @@ msgstr "Korisnici su uspešno dodati" msgid "Users are required" msgstr "Korisnici su obavezni" -#. Label of the section_break_nevd (Section Break) field in DocType 'CRM +#. Label of the section_break_nevd (Section Break) field in PageType 'CRM #. Service Level Agreement' -#: crm/fcrm/doctype/crm_service_level_agreement/crm_service_level_agreement.json +#: crm/fcrm/pagetype/crm_service_level_agreement/crm_service_level_agreement.json msgid "Validity" msgstr "Važenje" @@ -5834,33 +5834,33 @@ msgstr "Prikazi" msgid "Web form" msgstr "Veb-obrazac" -#. Label of the webhook_verify_token (Data) field in DocType 'CRM Exotel +#. Label of the webhook_verify_token (Data) field in PageType 'CRM Exotel #. Settings' -#: crm/fcrm/doctype/crm_exotel_settings/crm_exotel_settings.json +#: crm/fcrm/pagetype/crm_exotel_settings/crm_exotel_settings.json msgid "Webhook Verify Token" msgstr "Token za verifikaciju webhook-a" -#. Label of the website (Data) field in DocType 'CRM Deal' -#. Label of the website (Data) field in DocType 'CRM Lead' -#. Label of the website (Data) field in DocType 'CRM Organization' -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_lead/crm_lead.json -#: crm/fcrm/doctype/crm_organization/crm_organization.json +#. Label of the website (Data) field in PageType 'CRM Deal' +#. Label of the website (Data) field in PageType 'CRM Lead' +#. Label of the website (Data) field in PageType 'CRM Organization' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_lead/crm_lead.json +#: crm/fcrm/pagetype/crm_organization/crm_organization.json #: frontend/src/components/Modals/AboutModal.vue:52 msgid "Website" msgstr "Veb-sajt" -#. Option for the 'Weekly Off' (Select) field in DocType 'CRM Holiday List' -#. Option for the 'Workday' (Select) field in DocType 'CRM Service Day' -#: crm/fcrm/doctype/crm_holiday_list/crm_holiday_list.json -#: crm/fcrm/doctype/crm_service_day/crm_service_day.json +#. Option for the 'Weekly Off' (Select) field in PageType 'CRM Holiday List' +#. Option for the 'Workday' (Select) field in PageType 'CRM Service Day' +#: crm/fcrm/pagetype/crm_holiday_list/crm_holiday_list.json +#: crm/fcrm/pagetype/crm_service_day/crm_service_day.json msgid "Wednesday" msgstr "Sreda" -#. Label of the weekly_off (Check) field in DocType 'CRM Holiday' -#. Label of the weekly_off (Select) field in DocType 'CRM Holiday List' -#: crm/fcrm/doctype/crm_holiday/crm_holiday.json -#: crm/fcrm/doctype/crm_holiday_list/crm_holiday_list.json +#. Label of the weekly_off (Check) field in PageType 'CRM Holiday' +#. Label of the weekly_off (Select) field in PageType 'CRM Holiday List' +#: crm/fcrm/pagetype/crm_holiday/crm_holiday.json +#: crm/fcrm/pagetype/crm_holiday_list/crm_holiday_list.json msgid "Weekly Off" msgstr "Nedeljni odmor" @@ -5868,7 +5868,7 @@ msgstr "Nedeljni odmor" msgid "Welcome Message" msgstr "Poruka dobrodošlice" -#: crm/fcrm/doctype/helpdesk_crm_settings/helpdesk_crm_settings.py:155 +#: crm/fcrm/pagetype/helpdesk_crm_settings/helpdesk_crm_settings.py:155 msgid "Welcome to Helpdesk" msgstr "Dobro došli u Helpdesk" @@ -5876,8 +5876,8 @@ msgstr "Dobro došli u Helpdesk" msgid "Welcome {0}, lets add your first lead" msgstr "Dobro došli {0}, hajde da dodamo tvog prvog potencijalnog klijenta" -#. Option for the 'Type' (Select) field in DocType 'CRM Notification' -#: crm/fcrm/doctype/crm_notification/crm_notification.json +#. Option for the 'Type' (Select) field in PageType 'CRM Notification' +#: crm/fcrm/pagetype/crm_notification/crm_notification.json #: frontend/src/components/Layouts/AppSidebar.vue:603 #: frontend/src/components/Settings/Settings.vue:190 #: frontend/src/pages/Deal.vue:572 frontend/src/pages/Lead.vue:429 @@ -5902,8 +5902,8 @@ msgstr "Širina" msgid "Width can be in number, pixel or rem (eg. 3, 30px, 10rem)" msgstr "Širina može biti broj, piksel ili rem (npr. 3, 30px, 10rem)" -#. Option for the 'Type' (Select) field in DocType 'CRM Deal Status' -#: crm/fcrm/doctype/crm_deal_status/crm_deal_status.json +#. Option for the 'Type' (Select) field in PageType 'CRM Deal Status' +#: crm/fcrm/pagetype/crm_deal_status/crm_deal_status.json msgid "Won" msgstr "Dobijeno" @@ -5912,16 +5912,16 @@ msgstr "Dobijeno" msgid "Won deals" msgstr "Dobijene poslovne prilike" -#. Label of the workday (Select) field in DocType 'CRM Service Day' -#: crm/fcrm/doctype/crm_service_day/crm_service_day.json +#. Label of the workday (Select) field in PageType 'CRM Service Day' +#: crm/fcrm/pagetype/crm_service_day/crm_service_day.json msgid "Workday" msgstr "Radni dan" -#. Label of the section_break_rmgo (Section Break) field in DocType 'CRM +#. Label of the section_break_rmgo (Section Break) field in PageType 'CRM #. Service Level Agreement' -#. Label of the working_hours (Table) field in DocType 'CRM Service Level +#. Label of the working_hours (Table) field in PageType 'CRM Service Level #. Agreement' -#: crm/fcrm/doctype/crm_service_level_agreement/crm_service_level_agreement.json +#: crm/fcrm/pagetype/crm_service_level_agreement/crm_service_level_agreement.json msgid "Working Hours" msgstr "Radno vreme" @@ -5967,7 +5967,7 @@ msgstr "Nemate podešen broj mobilnog telefona u svom agentu telefonije" msgid "You do not have permission to access this document" msgstr "Nemate dozvolu za pristup ovom dokumentu" -#: crm/fcrm/doctype/crm_form_script/crm_form_script.py:24 +#: crm/fcrm/pagetype/crm_form_script/crm_form_script.py:24 msgid "You need to be in developer mode to edit a Standard Form Script" msgstr "Morate biti u razvojnom režimu da biste uredili standardnu skriptu obrasca" @@ -5995,10 +5995,10 @@ msgstr "Vaš stari uslov će biti prepisan. Da li ste sigurni da želite da sač msgid "added a" msgstr "dodato je" -#. Option for the 'Color' (Select) field in DocType 'CRM Deal Status' -#. Option for the 'Color' (Select) field in DocType 'CRM Lead Status' -#: crm/fcrm/doctype/crm_deal_status/crm_deal_status.json -#: crm/fcrm/doctype/crm_lead_status/crm_lead_status.json +#. Option for the 'Color' (Select) field in PageType 'CRM Deal Status' +#. Option for the 'Color' (Select) field in PageType 'CRM Lead Status' +#: crm/fcrm/pagetype/crm_deal_status/crm_deal_status.json +#: crm/fcrm/pagetype/crm_lead_status/crm_lead_status.json msgid "amber" msgstr "amber" @@ -6010,17 +6010,17 @@ msgstr "dodeljen Vam je novi zadatak {0}" msgid "assigned a {0} {1} to you" msgstr "dodeljen Vam je {0} {1}" -#. Option for the 'Color' (Select) field in DocType 'CRM Deal Status' -#. Option for the 'Color' (Select) field in DocType 'CRM Lead Status' -#: crm/fcrm/doctype/crm_deal_status/crm_deal_status.json -#: crm/fcrm/doctype/crm_lead_status/crm_lead_status.json +#. Option for the 'Color' (Select) field in PageType 'CRM Deal Status' +#. Option for the 'Color' (Select) field in PageType 'CRM Lead Status' +#: crm/fcrm/pagetype/crm_deal_status/crm_deal_status.json +#: crm/fcrm/pagetype/crm_lead_status/crm_lead_status.json msgid "black" msgstr "crna" -#. Option for the 'Color' (Select) field in DocType 'CRM Deal Status' -#. Option for the 'Color' (Select) field in DocType 'CRM Lead Status' -#: crm/fcrm/doctype/crm_deal_status/crm_deal_status.json -#: crm/fcrm/doctype/crm_lead_status/crm_lead_status.json +#. Option for the 'Color' (Select) field in PageType 'CRM Deal Status' +#. Option for the 'Color' (Select) field in PageType 'CRM Lead Status' +#: crm/fcrm/pagetype/crm_deal_status/crm_deal_status.json +#: crm/fcrm/pagetype/crm_lead_status/crm_lead_status.json msgid "blue" msgstr "plavo" @@ -6037,10 +6037,10 @@ msgstr "komentar" msgid "condition" msgstr "uslov" -#. Option for the 'Color' (Select) field in DocType 'CRM Deal Status' -#. Option for the 'Color' (Select) field in DocType 'CRM Lead Status' -#: crm/fcrm/doctype/crm_deal_status/crm_deal_status.json -#: crm/fcrm/doctype/crm_lead_status/crm_lead_status.json +#. Option for the 'Color' (Select) field in PageType 'CRM Deal Status' +#. Option for the 'Color' (Select) field in PageType 'CRM Lead Status' +#: crm/fcrm/pagetype/crm_deal_status/crm_deal_status.json +#: crm/fcrm/pagetype/crm_lead_status/crm_lead_status.json msgid "cyan" msgstr "cijan" @@ -6059,33 +6059,33 @@ msgstr "radna površina" msgid "email already exists" msgstr "imejl već postoji" -#. Option for the 'Service Provider' (Select) field in DocType 'FCRM Settings' -#: crm/fcrm/doctype/fcrm_settings/fcrm_settings.json +#. Option for the 'Service Provider' (Select) field in PageType 'FCRM Settings' +#: crm/fcrm/pagetype/fcrm_settings/fcrm_settings.json #: frontend/src/components/Settings/CurrencySettings.vue:106 msgid "exchangerate.host" msgstr "exchangerate.host" -#. Option for the 'Service Provider' (Select) field in DocType 'FCRM Settings' -#: crm/fcrm/doctype/fcrm_settings/fcrm_settings.json +#. Option for the 'Service Provider' (Select) field in PageType 'FCRM Settings' +#: crm/fcrm/pagetype/fcrm_settings/fcrm_settings.json msgid "frankfurter.app" msgstr "frankfurter.app" -#. Option for the 'Color' (Select) field in DocType 'CRM Deal Status' -#. Option for the 'Color' (Select) field in DocType 'CRM Lead Status' -#: crm/fcrm/doctype/crm_deal_status/crm_deal_status.json -#: crm/fcrm/doctype/crm_lead_status/crm_lead_status.json +#. Option for the 'Color' (Select) field in PageType 'CRM Deal Status' +#. Option for the 'Color' (Select) field in PageType 'CRM Lead Status' +#: crm/fcrm/pagetype/crm_deal_status/crm_deal_status.json +#: crm/fcrm/pagetype/crm_lead_status/crm_lead_status.json msgid "gray" msgstr "siva" -#. Option for the 'Color' (Select) field in DocType 'CRM Deal Status' -#. Option for the 'Color' (Select) field in DocType 'CRM Lead Status' -#: crm/fcrm/doctype/crm_deal_status/crm_deal_status.json -#: crm/fcrm/doctype/crm_lead_status/crm_lead_status.json +#. Option for the 'Color' (Select) field in PageType 'CRM Deal Status' +#. Option for the 'Color' (Select) field in PageType 'CRM Lead Status' +#: crm/fcrm/pagetype/crm_deal_status/crm_deal_status.json +#: crm/fcrm/pagetype/crm_lead_status/crm_lead_status.json msgid "green" msgstr "zelena" -#. Option for the 'Type' (Select) field in DocType 'CRM View Settings' -#: crm/fcrm/doctype/crm_view_settings/crm_view_settings.json +#. Option for the 'Type' (Select) field in PageType 'CRM View Settings' +#: crm/fcrm/pagetype/crm_view_settings/crm_view_settings.json msgid "group_by" msgstr "group_by" @@ -6170,12 +6170,12 @@ msgstr "petar@petrovic.com" msgid "just now" msgstr "upravo sada" -#. Option for the 'Type' (Select) field in DocType 'CRM View Settings' -#: crm/fcrm/doctype/crm_view_settings/crm_view_settings.json +#. Option for the 'Type' (Select) field in PageType 'CRM View Settings' +#: crm/fcrm/pagetype/crm_view_settings/crm_view_settings.json msgid "kanban" msgstr "kanban" -#: crm/api/doc.py:40 crm/api/doc.py:158 crm/api/doc.py:503 +#: crm/api/pg.py:40 crm/api/pg.py:158 crm/api/pg.py:503 msgid "label" msgstr "oznaka" @@ -6184,8 +6184,8 @@ msgstr "oznaka" msgid "leads" msgstr "potencijalni klijenti" -#. Option for the 'Type' (Select) field in DocType 'CRM View Settings' -#: crm/fcrm/doctype/crm_view_settings/crm_view_settings.json +#. Option for the 'Type' (Select) field in PageType 'CRM View Settings' +#: crm/fcrm/pagetype/crm_view_settings/crm_view_settings.json msgid "list" msgstr "lista" @@ -6206,17 +6206,17 @@ msgstr "sada" msgid "operator" msgstr "operator" -#. Option for the 'Color' (Select) field in DocType 'CRM Deal Status' -#. Option for the 'Color' (Select) field in DocType 'CRM Lead Status' -#: crm/fcrm/doctype/crm_deal_status/crm_deal_status.json -#: crm/fcrm/doctype/crm_lead_status/crm_lead_status.json +#. Option for the 'Color' (Select) field in PageType 'CRM Deal Status' +#. Option for the 'Color' (Select) field in PageType 'CRM Lead Status' +#: crm/fcrm/pagetype/crm_deal_status/crm_deal_status.json +#: crm/fcrm/pagetype/crm_lead_status/crm_lead_status.json msgid "orange" msgstr "narandžasta" -#. Option for the 'Color' (Select) field in DocType 'CRM Deal Status' -#. Option for the 'Color' (Select) field in DocType 'CRM Lead Status' -#: crm/fcrm/doctype/crm_deal_status/crm_deal_status.json -#: crm/fcrm/doctype/crm_lead_status/crm_lead_status.json +#. Option for the 'Color' (Select) field in PageType 'CRM Deal Status' +#. Option for the 'Color' (Select) field in PageType 'CRM Lead Status' +#: crm/fcrm/pagetype/crm_deal_status/crm_deal_status.json +#: crm/fcrm/pagetype/crm_lead_status/crm_lead_status.json msgid "pink" msgstr "roze" @@ -6232,10 +6232,10 @@ msgstr "privatno" msgid "public" msgstr "javno" -#. Option for the 'Color' (Select) field in DocType 'CRM Deal Status' -#. Option for the 'Color' (Select) field in DocType 'CRM Lead Status' -#: crm/fcrm/doctype/crm_deal_status/crm_deal_status.json -#: crm/fcrm/doctype/crm_lead_status/crm_lead_status.json +#. Option for the 'Color' (Select) field in PageType 'CRM Deal Status' +#. Option for the 'Color' (Select) field in PageType 'CRM Lead Status' +#: crm/fcrm/pagetype/crm_deal_status/crm_deal_status.json +#: crm/fcrm/pagetype/crm_lead_status/crm_lead_status.json msgid "purple" msgstr "purpurna" @@ -6243,17 +6243,17 @@ msgstr "purpurna" msgid "received a whatsapp message in {0}" msgstr "primljena WhatsApp poruka u {0}" -#. Option for the 'Color' (Select) field in DocType 'CRM Deal Status' -#. Option for the 'Color' (Select) field in DocType 'CRM Lead Status' -#: crm/fcrm/doctype/crm_deal_status/crm_deal_status.json -#: crm/fcrm/doctype/crm_lead_status/crm_lead_status.json +#. Option for the 'Color' (Select) field in PageType 'CRM Deal Status' +#. Option for the 'Color' (Select) field in PageType 'CRM Lead Status' +#: crm/fcrm/pagetype/crm_deal_status/crm_deal_status.json +#: crm/fcrm/pagetype/crm_lead_status/crm_lead_status.json msgid "red" msgstr "crvena" -#. Option for the 'Color' (Select) field in DocType 'CRM Deal Status' -#. Option for the 'Color' (Select) field in DocType 'CRM Lead Status' -#: crm/fcrm/doctype/crm_deal_status/crm_deal_status.json -#: crm/fcrm/doctype/crm_lead_status/crm_lead_status.json +#. Option for the 'Color' (Select) field in PageType 'CRM Deal Status' +#. Option for the 'Color' (Select) field in PageType 'CRM Lead Status' +#: crm/fcrm/pagetype/crm_deal_status/crm_deal_status.json +#: crm/fcrm/pagetype/crm_lead_status/crm_lead_status.json msgid "teal" msgstr "tirkizna" @@ -6266,10 +6266,10 @@ msgstr "ka" msgid "tomorrow" msgstr "sutra" -#. Option for the 'Color' (Select) field in DocType 'CRM Deal Status' -#. Option for the 'Color' (Select) field in DocType 'CRM Lead Status' -#: crm/fcrm/doctype/crm_deal_status/crm_deal_status.json -#: crm/fcrm/doctype/crm_lead_status/crm_lead_status.json +#. Option for the 'Color' (Select) field in PageType 'CRM Deal Status' +#. Option for the 'Color' (Select) field in PageType 'CRM Lead Status' +#: crm/fcrm/pagetype/crm_deal_status/crm_deal_status.json +#: crm/fcrm/pagetype/crm_lead_status/crm_lead_status.json msgid "violet" msgstr "ljubičasta" @@ -6278,10 +6278,10 @@ msgstr "ljubičasta" msgid "which are not compatible with this UI, you will need to recreate the conditions here if you want to manage and add new conditions from this UI." msgstr "koji nisu kompatibilni sa ovim korisničkim interfejsom, moraćete ponovo da kreirate uslove ovde ukoliko želite da upravljate i dodajete nove uslove iz ovog interfejsa." -#. Option for the 'Color' (Select) field in DocType 'CRM Deal Status' -#. Option for the 'Color' (Select) field in DocType 'CRM Lead Status' -#: crm/fcrm/doctype/crm_deal_status/crm_deal_status.json -#: crm/fcrm/doctype/crm_lead_status/crm_lead_status.json +#. Option for the 'Color' (Select) field in PageType 'CRM Deal Status' +#. Option for the 'Color' (Select) field in PageType 'CRM Lead Status' +#: crm/fcrm/pagetype/crm_deal_status/crm_deal_status.json +#: crm/fcrm/pagetype/crm_lead_status/crm_lead_status.json msgid "yellow" msgstr "žuta" @@ -6379,8 +6379,8 @@ msgid "⚠️ Method \"{0}\" not found in class." msgstr "Metodа \"{0}\" nije pronađenа u klasi." #: frontend/src/data/script.js:83 -msgid "⚠️ No class found for doctype: {0}, it is mandatory to have a class for the parent doctype. it can be empty, but it should be present." -msgstr "Nijedna klasa nije pronađena za DocType: {0}, obavezno mora postojati klasa za matični DocType. Može biti prazna, ali mora postojati." +msgid "⚠️ No class found for pagetype: {0}, it is mandatory to have a class for the parent pagetype. it can be empty, but it should be present." +msgstr "Nijedna klasa nije pronađena za PageType: {0}, obavezno mora postojati klasa za matični PageType. Može biti prazna, ali mora postojati." #: frontend/src/data/script.js:180 msgid "⚠️ No data found for parent field: {0}" diff --git a/crm/locale/sv.po b/crm/locale/sv.po index 6dddc41b..6b73d190 100644 --- a/crm/locale/sv.po +++ b/crm/locale/sv.po @@ -1,6 +1,6 @@ msgid "" msgstr "" -"Project-Id-Version: frappe\n" +"Project-Id-Version: jingrow\n" "Report-Msgid-Bugs-To: shariq@jingrow.com\n" "POT-Creation-Date: 2025-09-21 09:35+0000\n" "PO-Revision-Date: 2025-09-22 20:42\n" @@ -11,10 +11,10 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Generated-By: Babel 2.16.0\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -"X-Crowdin-Project: frappe\n" +"X-Crowdin-Project: jingrow\n" "X-Crowdin-Project-ID: 639578\n" "X-Crowdin-Language: sv-SE\n" -"X-Crowdin-File: /[frappe.crm] develop/crm/locale/main.pot\n" +"X-Crowdin-File: /[jingrow.crm] develop/crm/locale/main.pot\n" "X-Crowdin-File-ID: 97\n" "Language: sv_SE\n" @@ -55,73 +55,73 @@ msgstr "1 vecka sedan" msgid "1 year ago" msgstr "1 år sedan" -#. Option for the 'No. of Employees' (Select) field in DocType 'CRM Deal' -#. Option for the 'No. of Employees' (Select) field in DocType 'CRM Lead' -#. Option for the 'No. of Employees' (Select) field in DocType 'CRM +#. Option for the 'No. of Employees' (Select) field in PageType 'CRM Deal' +#. Option for the 'No. of Employees' (Select) field in PageType 'CRM Lead' +#. Option for the 'No. of Employees' (Select) field in PageType 'CRM #. Organization' -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_lead/crm_lead.json -#: crm/fcrm/doctype/crm_organization/crm_organization.json +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_lead/crm_lead.json +#: crm/fcrm/pagetype/crm_organization/crm_organization.json msgid "1-10" msgstr "1-10" -#. Option for the 'No. of Employees' (Select) field in DocType 'CRM Deal' -#. Option for the 'No. of Employees' (Select) field in DocType 'CRM Lead' -#. Option for the 'No. of Employees' (Select) field in DocType 'CRM +#. Option for the 'No. of Employees' (Select) field in PageType 'CRM Deal' +#. Option for the 'No. of Employees' (Select) field in PageType 'CRM Lead' +#. Option for the 'No. of Employees' (Select) field in PageType 'CRM #. Organization' -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_lead/crm_lead.json -#: crm/fcrm/doctype/crm_organization/crm_organization.json +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_lead/crm_lead.json +#: crm/fcrm/pagetype/crm_organization/crm_organization.json msgid "1000+" msgstr "1000+" -#. Option for the 'No. of Employees' (Select) field in DocType 'CRM Deal' -#. Option for the 'No. of Employees' (Select) field in DocType 'CRM Lead' -#. Option for the 'No. of Employees' (Select) field in DocType 'CRM +#. Option for the 'No. of Employees' (Select) field in PageType 'CRM Deal' +#. Option for the 'No. of Employees' (Select) field in PageType 'CRM Lead' +#. Option for the 'No. of Employees' (Select) field in PageType 'CRM #. Organization' -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_lead/crm_lead.json -#: crm/fcrm/doctype/crm_organization/crm_organization.json +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_lead/crm_lead.json +#: crm/fcrm/pagetype/crm_organization/crm_organization.json msgid "11-50" msgstr "11-50" -#. Option for the 'No. of Employees' (Select) field in DocType 'CRM Deal' -#. Option for the 'No. of Employees' (Select) field in DocType 'CRM Lead' -#. Option for the 'No. of Employees' (Select) field in DocType 'CRM +#. Option for the 'No. of Employees' (Select) field in PageType 'CRM Deal' +#. Option for the 'No. of Employees' (Select) field in PageType 'CRM Lead' +#. Option for the 'No. of Employees' (Select) field in PageType 'CRM #. Organization' -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_lead/crm_lead.json -#: crm/fcrm/doctype/crm_organization/crm_organization.json +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_lead/crm_lead.json +#: crm/fcrm/pagetype/crm_organization/crm_organization.json msgid "201-500" msgstr "201-500" -#. Option for the 'No. of Employees' (Select) field in DocType 'CRM Deal' -#. Option for the 'No. of Employees' (Select) field in DocType 'CRM Lead' -#. Option for the 'No. of Employees' (Select) field in DocType 'CRM +#. Option for the 'No. of Employees' (Select) field in PageType 'CRM Deal' +#. Option for the 'No. of Employees' (Select) field in PageType 'CRM Lead' +#. Option for the 'No. of Employees' (Select) field in PageType 'CRM #. Organization' -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_lead/crm_lead.json -#: crm/fcrm/doctype/crm_organization/crm_organization.json +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_lead/crm_lead.json +#: crm/fcrm/pagetype/crm_organization/crm_organization.json msgid "501-1000" msgstr "501-1000" -#. Option for the 'No. of Employees' (Select) field in DocType 'CRM Deal' -#. Option for the 'No. of Employees' (Select) field in DocType 'CRM Lead' -#. Option for the 'No. of Employees' (Select) field in DocType 'CRM +#. Option for the 'No. of Employees' (Select) field in PageType 'CRM Deal' +#. Option for the 'No. of Employees' (Select) field in PageType 'CRM Lead' +#. Option for the 'No. of Employees' (Select) field in PageType 'CRM #. Organization' -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_lead/crm_lead.json -#: crm/fcrm/doctype/crm_organization/crm_organization.json +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_lead/crm_lead.json +#: crm/fcrm/pagetype/crm_organization/crm_organization.json msgid "51-200" msgstr "51-200" -#. Paragraph text in the Frappe CRM Workspace -#: crm/fcrm/workspace/frappe_crm/frappe_crm.json +#. Paragraph text in the Jingrow CRM Workspace +#: crm/fcrm/workspace/jingrow_crm/jingrow_crm.json msgid "META" msgstr "META" -#. Paragraph text in the Frappe CRM Workspace -#: crm/fcrm/workspace/frappe_crm/frappe_crm.json +#. Paragraph text in the Jingrow CRM Workspace +#: crm/fcrm/workspace/jingrow_crm/jingrow_crm.json msgid "SHORTCUTS" msgstr "GENVÄGAR" @@ -130,8 +130,8 @@ msgstr "GENVÄGAR" msgid "

Dear {{ lead_name }},

\\n\\n

This is a reminder for the payment of {{ grand_total }}.

\\n\\n

Thanks,

\\n

Frappé

" msgstr "

Bästa {{ lead_name }},

\\n\\n

Detta är en påminnelse om betalningen av {{ grand_total }}.

\\n\\n

Tack,

\\n

.

" -#. Header text in the Frappe CRM Workspace -#: crm/fcrm/workspace/frappe_crm/frappe_crm.json +#. Header text in the Jingrow CRM Workspace +#: crm/fcrm/workspace/jingrow_crm/jingrow_crm.json msgid "PORTAL" msgstr "PORTAL" @@ -139,7 +139,7 @@ msgstr "PORTAL" msgid "@John, can you please check this?" msgstr "@John, kan du kolla detta?" -#: crm/fcrm/doctype/crm_lead/crm_lead.py:56 +#: crm/fcrm/pagetype/crm_lead/crm_lead.py:56 msgid "A Lead requires either a person's name or an organization's name" msgstr "Potentiell Kund kräver antingen person namn eller organisation namn" @@ -147,14 +147,14 @@ msgstr "Potentiell Kund kräver antingen person namn eller organisation namn" msgid "A new account has been created for you at {0}" msgstr "Ny konto har skapats för dig på {0}" -#. Label of the api_key (Data) field in DocType 'CRM Exotel Settings' -#. Label of the api_key (Data) field in DocType 'CRM Twilio Settings' -#. Label of the api_key (Data) field in DocType 'ERPNext CRM Settings' -#. Label of the api_key (Data) field in DocType 'Helpdesk CRM Settings' -#: crm/fcrm/doctype/crm_exotel_settings/crm_exotel_settings.json -#: crm/fcrm/doctype/crm_twilio_settings/crm_twilio_settings.json -#: crm/fcrm/doctype/erpnext_crm_settings/erpnext_crm_settings.json -#: crm/fcrm/doctype/helpdesk_crm_settings/helpdesk_crm_settings.json +#. Label of the api_key (Data) field in PageType 'CRM Exotel Settings' +#. Label of the api_key (Data) field in PageType 'CRM Twilio Settings' +#. Label of the api_key (Data) field in PageType 'ERPNext CRM Settings' +#. Label of the api_key (Data) field in PageType 'Helpdesk CRM Settings' +#: crm/fcrm/pagetype/crm_exotel_settings/crm_exotel_settings.json +#: crm/fcrm/pagetype/crm_twilio_settings/crm_twilio_settings.json +#: crm/fcrm/pagetype/erpnext_crm_settings/erpnext_crm_settings.json +#: crm/fcrm/pagetype/helpdesk_crm_settings/helpdesk_crm_settings.json msgid "API Key" msgstr "API Nyckel" @@ -162,17 +162,17 @@ msgstr "API Nyckel" msgid "API Key is required" msgstr "API Nyckel Erfordras" -#. Label of the api_secret (Password) field in DocType 'CRM Twilio Settings' -#. Label of the api_secret (Password) field in DocType 'ERPNext CRM Settings' -#. Label of the api_secret (Password) field in DocType 'Helpdesk CRM Settings' -#: crm/fcrm/doctype/crm_twilio_settings/crm_twilio_settings.json -#: crm/fcrm/doctype/erpnext_crm_settings/erpnext_crm_settings.json -#: crm/fcrm/doctype/helpdesk_crm_settings/helpdesk_crm_settings.json +#. Label of the api_secret (Password) field in PageType 'CRM Twilio Settings' +#. Label of the api_secret (Password) field in PageType 'ERPNext CRM Settings' +#. Label of the api_secret (Password) field in PageType 'Helpdesk CRM Settings' +#: crm/fcrm/pagetype/crm_twilio_settings/crm_twilio_settings.json +#: crm/fcrm/pagetype/erpnext_crm_settings/erpnext_crm_settings.json +#: crm/fcrm/pagetype/helpdesk_crm_settings/helpdesk_crm_settings.json msgid "API Secret" msgstr "API Hemlighet" -#. Label of the api_token (Password) field in DocType 'CRM Exotel Settings' -#: crm/fcrm/doctype/crm_exotel_settings/crm_exotel_settings.json +#. Label of the api_token (Password) field in PageType 'CRM Exotel Settings' +#: crm/fcrm/pagetype/crm_exotel_settings/crm_exotel_settings.json msgid "API Token" msgstr "API Token" @@ -180,7 +180,7 @@ msgstr "API Token" msgid "Accept" msgstr "Acceptera" -#: crm/fcrm/doctype/crm_invitation/crm_invitation.js:7 +#: crm/fcrm/pagetype/crm_invitation/crm_invitation.js:7 msgid "Accept Invitation" msgstr "Acceptera Inbjudan" @@ -188,22 +188,22 @@ msgstr "Acceptera Inbjudan" msgid "Accept call" msgstr "Acceptera samtal" -#. Option for the 'Status' (Select) field in DocType 'CRM Invitation' -#: crm/fcrm/doctype/crm_invitation/crm_invitation.json +#. Option for the 'Status' (Select) field in PageType 'CRM Invitation' +#: crm/fcrm/pagetype/crm_invitation/crm_invitation.json msgid "Accepted" msgstr "Accepterad" -#. Label of the accepted_at (Datetime) field in DocType 'CRM Invitation' -#: crm/fcrm/doctype/crm_invitation/crm_invitation.json +#. Label of the accepted_at (Datetime) field in PageType 'CRM Invitation' +#: crm/fcrm/pagetype/crm_invitation/crm_invitation.json msgid "Accepted At" msgstr "Accepterad" -#. Label of the access_key (Data) field in DocType 'FCRM Settings' -#: crm/fcrm/doctype/fcrm_settings/fcrm_settings.json +#. Label of the access_key (Data) field in PageType 'FCRM Settings' +#: crm/fcrm/pagetype/fcrm_settings/fcrm_settings.json msgid "Access Key" msgstr "Åtkomst Nyckel" -#: crm/fcrm/doctype/fcrm_settings/fcrm_settings.py:156 +#: crm/fcrm/pagetype/fcrm_settings/fcrm_settings.py:156 msgid "Access Key is required for Service Provider: {0}" msgstr "Åtkomst Nyckel erfordras för Tjänsteleverantör: {0}" @@ -219,10 +219,10 @@ msgstr "Åtkomst Nyckel för Valuta Växling Tjänst. Erfordras för att hämta msgid "Account Name" msgstr "Konto Namn" -#. Label of the account_sid (Data) field in DocType 'CRM Exotel Settings' -#. Label of the account_sid (Data) field in DocType 'CRM Twilio Settings' -#: crm/fcrm/doctype/crm_exotel_settings/crm_exotel_settings.json -#: crm/fcrm/doctype/crm_twilio_settings/crm_twilio_settings.json +#. Label of the account_sid (Data) field in PageType 'CRM Exotel Settings' +#. Label of the account_sid (Data) field in PageType 'CRM Twilio Settings' +#: crm/fcrm/pagetype/crm_exotel_settings/crm_exotel_settings.json +#: crm/fcrm/pagetype/crm_twilio_settings/crm_twilio_settings.json msgid "Account SID" msgstr "Konto SID" @@ -296,9 +296,9 @@ msgstr "Lägg till Sortering" msgid "Add Tab" msgstr "Lägg till Flik" -#. Label of the add_weekly_holidays_section (Section Break) field in DocType +#. Label of the add_weekly_holidays_section (Section Break) field in PageType #. 'CRM Holiday List' -#: crm/fcrm/doctype/crm_holiday_list/crm_holiday_list.json +#: crm/fcrm/pagetype/crm_holiday_list/crm_holiday_list.json msgid "Add Weekly Holidays" msgstr "Lägg till Veckovisa Helger" @@ -363,8 +363,8 @@ msgstr "Lägg till anteckning" msgid "Add sample data" msgstr "Lägg till exempel data" -#. Description of the 'Icon' (Code) field in DocType 'CRM Dropdown Item' -#: crm/fcrm/doctype/crm_dropdown_item/crm_dropdown_item.json +#. Description of the 'Icon' (Code) field in PageType 'CRM Dropdown Item' +#: crm/fcrm/pagetype/crm_dropdown_item/crm_dropdown_item.json msgid "Add svg code or use feather icons e.g 'settings'" msgstr "Lägg till svg kod eller använd fjäder ikoner, t.ex. \"inställningar\"" @@ -372,8 +372,8 @@ msgstr "Lägg till svg kod eller använd fjäder ikoner, t.ex. \"inställningar\ msgid "Add task" msgstr "Lägg till Uppgift" -#. Label of the add_to_holidays (Button) field in DocType 'CRM Holiday List' -#: crm/fcrm/doctype/crm_holiday_list/crm_holiday_list.json +#. Label of the add_to_holidays (Button) field in PageType 'CRM Holiday List' +#: crm/fcrm/pagetype/crm_holiday_list/crm_holiday_list.json msgid "Add to Holidays" msgstr "Lägg till Helger" @@ -385,8 +385,8 @@ msgstr "Lägg till första kommentar" msgid "Add, edit, and manage email templates for various CRM communications" msgstr "Lägg till, redigera och hantera e-post mallar för olika Säljstöd kommunikationer" -#. Label of the address (Link) field in DocType 'CRM Organization' -#: crm/fcrm/doctype/crm_organization/crm_organization.json +#. Label of the address (Link) field in PageType 'CRM Organization' +#: crm/fcrm/pagetype/crm_organization/crm_organization.json msgid "Address" msgstr "Adress" @@ -406,14 +406,14 @@ msgid "Agent is unavailable to take the call, please call after some time." msgstr "Agent är inte tillgänglig för att ta samtalet, vänligen ring efter en tid." #. Name of a role -#: crm/fcrm/doctype/crm_exotel_settings/crm_exotel_settings.json -#: crm/fcrm/doctype/crm_fields_layout/crm_fields_layout.json -#: crm/fcrm/doctype/crm_form_script/crm_form_script.json -#: crm/fcrm/doctype/crm_industry/crm_industry.json -#: crm/fcrm/doctype/crm_lead/crm_lead.json -#: crm/fcrm/doctype/crm_lead_source/crm_lead_source.json -#: crm/fcrm/doctype/crm_lead_status/crm_lead_status.json -#: crm/fcrm/doctype/fcrm_settings/fcrm_settings.json +#: crm/fcrm/pagetype/crm_exotel_settings/crm_exotel_settings.json +#: crm/fcrm/pagetype/crm_fields_layout/crm_fields_layout.json +#: crm/fcrm/pagetype/crm_form_script/crm_form_script.json +#: crm/fcrm/pagetype/crm_industry/crm_industry.json +#: crm/fcrm/pagetype/crm_lead/crm_lead.json +#: crm/fcrm/pagetype/crm_lead_source/crm_lead_source.json +#: crm/fcrm/pagetype/crm_lead_status/crm_lead_status.json +#: crm/fcrm/pagetype/fcrm_settings/fcrm_settings.json #: frontend/src/components/Settings/EmailTemplate/EmailTemplates.vue:76 #: frontend/src/components/Settings/Users.vue:85 msgid "All" @@ -426,16 +426,16 @@ msgstr "Alla" msgid "All day" msgstr "Hela dagen" -#. Label of the amount (Currency) field in DocType 'CRM Products' -#: crm/fcrm/doctype/crm_products/crm_products.json +#. Label of the amount (Currency) field in PageType 'CRM Products' +#: crm/fcrm/pagetype/crm_products/crm_products.json #: frontend/src/pages/Contact.vue:499 frontend/src/pages/MobileContact.vue:507 #: frontend/src/pages/MobileOrganization.vue:451 #: frontend/src/pages/Organization.vue:472 msgid "Amount" msgstr "Belopp" -#. Description of the 'Net Amount' (Currency) field in DocType 'CRM Products' -#: crm/fcrm/doctype/crm_products/crm_products.json +#. Description of the 'Net Amount' (Currency) field in PageType 'CRM Products' +#: crm/fcrm/pagetype/crm_products/crm_products.json msgid "Amount after discount" msgstr "Belopp efter rabatt" @@ -447,13 +447,13 @@ msgstr "Ett fel uppstod" msgid "An error occurred while updating the document" msgstr "Ett fel inträffade vid uppdatering av dokument" -#. Description of the 'Favicon' (Attach) field in DocType 'FCRM Settings' -#: crm/fcrm/doctype/fcrm_settings/fcrm_settings.json +#. Description of the 'Favicon' (Attach) field in PageType 'FCRM Settings' +#: crm/fcrm/pagetype/fcrm_settings/fcrm_settings.json msgid "An icon file with .ico extension. Should be 16 x 16 px. Generated using a favicon generator. [favicon-generator.org]" msgstr "Ikon fil med ico ändelse. Ska vara 16 x 16 px. Skapas med användning av favicon generator. [favicon-generator.org]" -#. Description of the 'Logo' (Attach) field in DocType 'FCRM Settings' -#: crm/fcrm/doctype/fcrm_settings/fcrm_settings.json +#. Description of the 'Logo' (Attach) field in PageType 'FCRM Settings' +#: crm/fcrm/pagetype/fcrm_settings/fcrm_settings.json msgid "An image with 1:1 & 2:1 ratio is preferred" msgstr "Bild med förhållandet 1:1 & 2:1 är att föredra" @@ -461,12 +461,12 @@ msgstr "Bild med förhållandet 1:1 & 2:1 är att föredra" msgid "And" msgstr "Och" -#. Label of the annual_revenue (Currency) field in DocType 'CRM Deal' -#. Label of the annual_revenue (Currency) field in DocType 'CRM Lead' -#. Label of the annual_revenue (Currency) field in DocType 'CRM Organization' -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_lead/crm_lead.json -#: crm/fcrm/doctype/crm_organization/crm_organization.json +#. Label of the annual_revenue (Currency) field in PageType 'CRM Deal' +#. Label of the annual_revenue (Currency) field in PageType 'CRM Lead' +#. Label of the annual_revenue (Currency) field in PageType 'CRM Organization' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_lead/crm_lead.json +#: crm/fcrm/pagetype/crm_organization/crm_organization.json msgid "Annual Revenue" msgstr "Årlig Omsätning" @@ -488,13 +488,13 @@ msgstr "Visas bredvid titeln i din webbläsarflik. Rekommenderad storlek är 32x msgid "Apply" msgstr "Tillämpa" -#. Label of the apply_on (Link) field in DocType 'CRM Service Level Agreement' -#: crm/fcrm/doctype/crm_service_level_agreement/crm_service_level_agreement.json +#. Label of the apply_on (Link) field in PageType 'CRM Service Level Agreement' +#: crm/fcrm/pagetype/crm_service_level_agreement/crm_service_level_agreement.json msgid "Apply On" msgstr "Tillämpa På" -#. Label of the view (Select) field in DocType 'CRM Form Script' -#: crm/fcrm/doctype/crm_form_script/crm_form_script.json +#. Label of the view (Select) field in PageType 'CRM Form Script' +#: crm/fcrm/pagetype/crm_form_script/crm_form_script.json msgid "Apply To" msgstr "Tillämpa På" @@ -540,10 +540,10 @@ msgid "Are you sure you want to go back? Unsaved changes will be lost." msgstr "Är du säker på att du vill ångra? Osparade ändringar kommer att gå förlorade." #: frontend/src/composables/frappecloud.js:24 -msgid "Are you sure you want to login to your Frappe Cloud dashboard?" -msgstr "Är du säker på att du vill logga in på din Översikt Panel i Frappe Cloud?" +msgid "Are you sure you want to login to your Jingrow Cloud dashboard?" +msgstr "Är du säker på att du vill logga in på din Översikt Panel i Jingrow Cloud?" -#: crm/fcrm/doctype/erpnext_crm_settings/erpnext_crm_settings.js:9 +#: crm/fcrm/pagetype/erpnext_crm_settings/erpnext_crm_settings.js:9 msgid "Are you sure you want to reset 'Create Quotation from CRM Deal' Form Script?" msgstr "Är du säker på att du vill återställa 'Skapa Offert från Säljstöd Affär' Formulär Skript?" @@ -555,7 +555,7 @@ msgstr "Är du säker på att du vill ange valuta som {0}? Detta kan inte ändra msgid "Are you sure you want to unlink {0} linked item(s)?" msgstr "Är du säker på att du vill ta bort länk till {0} länkade artikel(ar)?" -#: crm/fcrm/doctype/fcrm_settings/fcrm_settings.py:193 +#: crm/fcrm/pagetype/fcrm_settings/fcrm_settings.py:193 msgid "Ask your manager to set up the Exchange Rate Provider, as default provider does not support currency conversion for {0} to {1}." msgstr "Be ansvarig att konfigurera Valuta Växling Leverantör, eftersom standard leverantör inte stöder valuta konvertering från {0} till {1}." @@ -581,8 +581,8 @@ msgstr "Tilldela till" msgid "Assign to me" msgstr "Självtilldela" -#. Label of the assigned_to (Link) field in DocType 'CRM Task' -#: crm/fcrm/doctype/crm_task/crm_task.json +#. Label of the assigned_to (Link) field in PageType 'CRM Task' +#: crm/fcrm/pagetype/crm_task/crm_task.json msgid "Assigned To" msgstr "Tilldelad Till" @@ -594,13 +594,13 @@ msgstr "Tilldelning Regler" msgid "Assignees" msgstr "Tilldelade" -#. Option for the 'Type' (Select) field in DocType 'CRM Notification' -#: crm/fcrm/doctype/crm_notification/crm_notification.json +#. Option for the 'Type' (Select) field in PageType 'CRM Notification' +#: crm/fcrm/pagetype/crm_notification/crm_notification.json msgid "Assignment" msgstr "Tilldelning" -#. Label of a shortcut in the Frappe CRM Workspace -#: crm/fcrm/workspace/frappe_crm/frappe_crm.json +#. Label of a shortcut in the Jingrow CRM Workspace +#: crm/fcrm/workspace/jingrow_crm/jingrow_crm.json msgid "Assignment Rule" msgstr "Tilldelning Regel" @@ -678,14 +678,14 @@ msgstr "Bilagor" msgid "Attendees" msgstr "Deltagare" -#. Label of the auth_token (Password) field in DocType 'CRM Twilio Settings' -#: crm/fcrm/doctype/crm_twilio_settings/crm_twilio_settings.json +#. Label of the auth_token (Password) field in PageType 'CRM Twilio Settings' +#: crm/fcrm/pagetype/crm_twilio_settings/crm_twilio_settings.json msgid "Auth Token" msgstr "Auth Token" -#. Label of the auto_update_expected_deal_value (Check) field in DocType 'FCRM +#. Label of the auto_update_expected_deal_value (Check) field in PageType 'FCRM #. Settings' -#: crm/fcrm/doctype/fcrm_settings/fcrm_settings.json +#: crm/fcrm/pagetype/fcrm_settings/fcrm_settings.json msgid "Auto Update Expected Deal Value" msgstr "Automatisk Uppdatering av Förväntad Affärsvärde" @@ -702,8 +702,8 @@ msgid "Auto update of expected deal value enabled" msgstr "Automatisk uppdatering av förväntad affärsvärde aktiverad" #. Description of the 'Auto Update Expected Deal Value' (Check) field in -#. DocType 'FCRM Settings' -#: crm/fcrm/doctype/fcrm_settings/fcrm_settings.json +#. PageType 'FCRM Settings' +#: crm/fcrm/pagetype/fcrm_settings/fcrm_settings.json #: frontend/src/components/Settings/ForecastingSettings.vue:46 msgid "Automatically update \"Expected Deal Value\" based on the total value of associated products in a deal" msgstr "Automatiskt uppdatera \"Förväntad Affärsvärde\" baserad på totala värdet av associerade artiklar i affär" @@ -793,8 +793,8 @@ msgstr "Tillbaka" msgid "Back to file upload" msgstr "Tillbaka till filuppladdning" -#. Option for the 'Status' (Select) field in DocType 'CRM Task' -#: crm/fcrm/doctype/crm_task/crm_task.json +#. Option for the 'Status' (Select) field in PageType 'CRM Task' +#: crm/fcrm/pagetype/crm_task/crm_task.json msgid "Backlog" msgstr "Eftersläpning" @@ -818,8 +818,8 @@ msgstr "Varumärke" msgid "Brand settings" msgstr "Varumärke Inställningar" -#. Label of the branding_tab (Tab Break) field in DocType 'FCRM Settings' -#: crm/fcrm/doctype/fcrm_settings/fcrm_settings.json +#. Label of the branding_tab (Tab Break) field in PageType 'FCRM Settings' +#: crm/fcrm/pagetype/fcrm_settings/fcrm_settings.json msgid "Branding" msgstr "Varumärkesprofilering" @@ -827,8 +827,8 @@ msgstr "Varumärkesprofilering" msgid "Bulk Edit" msgstr "Mass Redigera" -#. Option for the 'Status' (Select) field in DocType 'CRM Call Log' -#: crm/fcrm/doctype/crm_call_log/crm_call_log.json +#. Option for the 'Status' (Select) field in PageType 'CRM Call Log' +#: crm/fcrm/pagetype/crm_call_log/crm_call_log.json msgid "Busy" msgstr "Upptagen" @@ -838,174 +838,174 @@ msgstr "Upptagen" msgid "CC" msgstr "Kopia Till" -#. Name of a DocType -#: crm/fcrm/doctype/crm_call_log/crm_call_log.json +#. Name of a PageType +#: crm/fcrm/pagetype/crm_call_log/crm_call_log.json msgid "CRM Call Log" msgstr "Samtalslogg" -#. Name of a DocType -#: crm/fcrm/doctype/crm_communication_status/crm_communication_status.json +#. Name of a PageType +#: crm/fcrm/pagetype/crm_communication_status/crm_communication_status.json msgid "CRM Communication Status" msgstr "Konversation Status" -#. Name of a DocType -#: crm/fcrm/doctype/crm_contacts/crm_contacts.json +#. Name of a PageType +#: crm/fcrm/pagetype/crm_contacts/crm_contacts.json msgid "CRM Contacts" msgstr "Kontakter" -#. Name of a DocType -#: crm/fcrm/doctype/crm_dashboard/crm_dashboard.json +#. Name of a PageType +#: crm/fcrm/pagetype/crm_dashboard/crm_dashboard.json #: frontend/src/pages/Dashboard.vue:304 msgid "CRM Dashboard" msgstr "Översikt Panel" -#. Name of a DocType -#: crm/fcrm/doctype/crm_deal/crm_deal.json +#. Name of a PageType +#: crm/fcrm/pagetype/crm_deal/crm_deal.json msgid "CRM Deal" msgstr "Affär" -#. Name of a DocType -#: crm/fcrm/doctype/crm_deal_status/crm_deal_status.json +#. Name of a PageType +#: crm/fcrm/pagetype/crm_deal_status/crm_deal_status.json msgid "CRM Deal Status" msgstr "Affär Status" -#. Name of a DocType -#: crm/fcrm/doctype/crm_dropdown_item/crm_dropdown_item.json +#. Name of a PageType +#: crm/fcrm/pagetype/crm_dropdown_item/crm_dropdown_item.json msgid "CRM Dropdown Item" msgstr "Rullgardin Post" -#. Name of a DocType -#: crm/fcrm/doctype/crm_exotel_settings/crm_exotel_settings.json +#. Name of a PageType +#: crm/fcrm/pagetype/crm_exotel_settings/crm_exotel_settings.json msgid "CRM Exotel Settings" msgstr "Exotel Inställningar" -#. Name of a DocType -#: crm/fcrm/doctype/crm_fields_layout/crm_fields_layout.json +#. Name of a PageType +#: crm/fcrm/pagetype/crm_fields_layout/crm_fields_layout.json msgid "CRM Fields Layout" msgstr "Fält Upplägg" -#. Name of a DocType -#: crm/fcrm/doctype/crm_form_script/crm_form_script.json +#. Name of a PageType +#: crm/fcrm/pagetype/crm_form_script/crm_form_script.json msgid "CRM Form Script" msgstr "Formulär Skript" -#. Name of a DocType -#: crm/fcrm/doctype/crm_global_settings/crm_global_settings.json +#. Name of a PageType +#: crm/fcrm/pagetype/crm_global_settings/crm_global_settings.json msgid "CRM Global Settings" msgstr "Standard Inställningar" -#. Name of a DocType -#: crm/fcrm/doctype/crm_holiday/crm_holiday.json +#. Name of a PageType +#: crm/fcrm/pagetype/crm_holiday/crm_holiday.json msgid "CRM Holiday" msgstr "Helgdag" -#. Name of a DocType -#: crm/fcrm/doctype/crm_holiday_list/crm_holiday_list.json +#. Name of a PageType +#: crm/fcrm/pagetype/crm_holiday_list/crm_holiday_list.json msgid "CRM Holiday List" msgstr "Helgdag Lista" -#. Name of a DocType -#: crm/fcrm/doctype/crm_industry/crm_industry.json +#. Name of a PageType +#: crm/fcrm/pagetype/crm_industry/crm_industry.json msgid "CRM Industry" msgstr "Bransch" -#. Name of a DocType -#: crm/fcrm/doctype/crm_invitation/crm_invitation.json +#. Name of a PageType +#: crm/fcrm/pagetype/crm_invitation/crm_invitation.json msgid "CRM Invitation" msgstr "Inbjudan" -#. Name of a DocType -#: crm/fcrm/doctype/crm_lead/crm_lead.json +#. Name of a PageType +#: crm/fcrm/pagetype/crm_lead/crm_lead.json msgid "CRM Lead" msgstr "Potentiell Kund" -#. Name of a DocType -#: crm/fcrm/doctype/crm_lead_source/crm_lead_source.json +#. Name of a PageType +#: crm/fcrm/pagetype/crm_lead_source/crm_lead_source.json msgid "CRM Lead Source" msgstr "Potentiell Kund Källa" -#. Name of a DocType -#: crm/fcrm/doctype/crm_lead_status/crm_lead_status.json +#. Name of a PageType +#: crm/fcrm/pagetype/crm_lead_status/crm_lead_status.json msgid "CRM Lead Status" msgstr "Potentiell Kund Status" -#. Name of a DocType -#: crm/fcrm/doctype/crm_lost_reason/crm_lost_reason.json +#. Name of a PageType +#: crm/fcrm/pagetype/crm_lost_reason/crm_lost_reason.json msgid "CRM Lost Reason" msgstr "Förlorad Anledning" -#. Name of a DocType -#: crm/fcrm/doctype/crm_notification/crm_notification.json +#. Name of a PageType +#: crm/fcrm/pagetype/crm_notification/crm_notification.json msgid "CRM Notification" msgstr "Aviseringar" -#. Name of a DocType -#: crm/fcrm/doctype/crm_organization/crm_organization.json +#. Name of a PageType +#: crm/fcrm/pagetype/crm_organization/crm_organization.json msgid "CRM Organization" msgstr "Organisation" -#. Label of a shortcut in the Frappe CRM Workspace -#: crm/fcrm/workspace/frappe_crm/frappe_crm.json +#. Label of a shortcut in the Jingrow CRM Workspace +#: crm/fcrm/workspace/jingrow_crm/jingrow_crm.json msgid "CRM Portal Page" msgstr "Portal" -#. Name of a DocType -#: crm/fcrm/doctype/crm_product/crm_product.json +#. Name of a PageType +#: crm/fcrm/pagetype/crm_product/crm_product.json msgid "CRM Product" msgstr "Artikel" -#. Name of a DocType -#: crm/fcrm/doctype/crm_products/crm_products.json +#. Name of a PageType +#: crm/fcrm/pagetype/crm_products/crm_products.json msgid "CRM Products" msgstr "Artiklar" -#. Name of a DocType -#: crm/fcrm/doctype/crm_service_day/crm_service_day.json +#. Name of a PageType +#: crm/fcrm/pagetype/crm_service_day/crm_service_day.json msgid "CRM Service Day" msgstr "Service Dag" -#. Name of a DocType -#: crm/fcrm/doctype/crm_service_level_agreement/crm_service_level_agreement.json +#. Name of a PageType +#: crm/fcrm/pagetype/crm_service_level_agreement/crm_service_level_agreement.json msgid "CRM Service Level Agreement" msgstr "Service Nivå Avtal" -#. Name of a DocType -#: crm/fcrm/doctype/crm_service_level_priority/crm_service_level_priority.json +#. Name of a PageType +#: crm/fcrm/pagetype/crm_service_level_priority/crm_service_level_priority.json msgid "CRM Service Level Priority" msgstr "Service Nivå Prioritet" -#. Name of a DocType -#: crm/fcrm/doctype/crm_status_change_log/crm_status_change_log.json +#. Name of a PageType +#: crm/fcrm/pagetype/crm_status_change_log/crm_status_change_log.json msgid "CRM Status Change Log" msgstr "Statusändring Logg" -#. Name of a DocType -#: crm/fcrm/doctype/crm_task/crm_task.json +#. Name of a PageType +#: crm/fcrm/pagetype/crm_task/crm_task.json msgid "CRM Task" msgstr "Uppgift" -#. Name of a DocType -#: crm/fcrm/doctype/crm_telephony_agent/crm_telephony_agent.json +#. Name of a PageType +#: crm/fcrm/pagetype/crm_telephony_agent/crm_telephony_agent.json msgid "CRM Telephony Agent" msgstr "Telefoni Handläggare" -#. Name of a DocType -#: crm/fcrm/doctype/crm_telephony_phone/crm_telephony_phone.json +#. Name of a PageType +#: crm/fcrm/pagetype/crm_telephony_phone/crm_telephony_phone.json msgid "CRM Telephony Phone" msgstr "Telefoni Telefon" -#. Name of a DocType -#: crm/fcrm/doctype/crm_territory/crm_territory.json +#. Name of a PageType +#: crm/fcrm/pagetype/crm_territory/crm_territory.json msgid "CRM Territory" msgstr "Distrikt" -#. Name of a DocType -#: crm/fcrm/doctype/crm_twilio_settings/crm_twilio_settings.json +#. Name of a PageType +#: crm/fcrm/pagetype/crm_twilio_settings/crm_twilio_settings.json msgid "CRM Twilio Settings" msgstr "Twilio Inställningar" -#. Name of a DocType -#: crm/fcrm/doctype/crm_view_settings/crm_view_settings.json +#. Name of a PageType +#: crm/fcrm/pagetype/crm_view_settings/crm_view_settings.json msgid "CRM View Settings" msgstr "Visa Inställningar" @@ -1021,13 +1021,13 @@ msgstr "CSV" msgid "Call Details" msgstr "Samtal Information" -#. Label of the receiver (Link) field in DocType 'CRM Call Log' -#: crm/fcrm/doctype/crm_call_log/crm_call_log.json +#. Label of the receiver (Link) field in PageType 'CRM Call Log' +#: crm/fcrm/pagetype/crm_call_log/crm_call_log.json msgid "Call Received By" msgstr "Samtal Mottagen Av" -#. Description of the 'Duration' (Duration) field in DocType 'CRM Call Log' -#: crm/fcrm/doctype/crm_call_log/crm_call_log.json +#. Description of the 'Duration' (Duration) field in PageType 'CRM Call Log' +#: crm/fcrm/pagetype/crm_call_log/crm_call_log.json msgid "Call duration in seconds" msgstr "Samtalslängd i sekunder" @@ -1045,8 +1045,8 @@ msgstr "Ring via {0}" msgid "Call with John Doe" msgstr "Samtal med John Doe" -#. Label of the caller (Link) field in DocType 'CRM Call Log' -#: crm/fcrm/doctype/crm_call_log/crm_call_log.json +#. Label of the caller (Link) field in PageType 'CRM Call Log' +#: crm/fcrm/pagetype/crm_call_log/crm_call_log.json msgid "Caller" msgstr "Uppringare" @@ -1083,10 +1083,10 @@ msgstr "Kamera" msgid "Cancel" msgstr "Annullera" -#. Option for the 'Status' (Select) field in DocType 'CRM Call Log' -#. Option for the 'Status' (Select) field in DocType 'CRM Task' -#: crm/fcrm/doctype/crm_call_log/crm_call_log.json -#: crm/fcrm/doctype/crm_task/crm_task.json +#. Option for the 'Status' (Select) field in PageType 'CRM Call Log' +#. Option for the 'Status' (Select) field in PageType 'CRM Task' +#: crm/fcrm/pagetype/crm_call_log/crm_call_log.json +#: crm/fcrm/pagetype/crm_task/crm_task.json msgid "Canceled" msgstr "Annullerad" @@ -1094,7 +1094,7 @@ msgstr "Annullerad" msgid "Cannot change role of user with Admin access" msgstr "Kan inte ändra roll för användare med Administratör behörighet" -#: crm/fcrm/doctype/fcrm_settings/fcrm_settings.py:34 +#: crm/fcrm/pagetype/fcrm_settings/fcrm_settings.py:34 msgid "Cannot delete standard items {0}" msgstr "Kan inte ta bort standard artikel {0}" @@ -1189,8 +1189,8 @@ msgstr "Rensa Tilldelning" msgid "Clear Sort" msgstr "Rensa Sortering" -#. Label of the clear_table (Button) field in DocType 'CRM Holiday List' -#: crm/fcrm/doctype/crm_holiday_list/crm_holiday_list.json +#. Label of the clear_table (Button) field in PageType 'CRM Holiday List' +#: crm/fcrm/pagetype/crm_holiday_list/crm_holiday_list.json msgid "Clear Table" msgstr "Rensa Tabell" @@ -1211,8 +1211,8 @@ msgstr "Stäng" msgid "Close panel" msgstr "Stäng panel" -#. Label of the closed_date (Date) field in DocType 'CRM Deal' -#: crm/fcrm/doctype/crm_deal/crm_deal.json +#. Label of the closed_date (Date) field in PageType 'CRM Deal' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json msgid "Closed Date" msgstr "Avslutad Datum" @@ -1224,10 +1224,10 @@ msgstr "Fäll In" msgid "Collapsible" msgstr "Infällbar" -#. Label of the color (Select) field in DocType 'CRM Deal Status' -#. Label of the color (Select) field in DocType 'CRM Lead Status' -#: crm/fcrm/doctype/crm_deal_status/crm_deal_status.json -#: crm/fcrm/doctype/crm_lead_status/crm_lead_status.json +#. Label of the color (Select) field in PageType 'CRM Deal Status' +#. Label of the color (Select) field in PageType 'CRM Lead Status' +#: crm/fcrm/pagetype/crm_deal_status/crm_deal_status.json +#: crm/fcrm/pagetype/crm_lead_status/crm_lead_status.json msgid "Color" msgstr "Färg" @@ -1235,20 +1235,20 @@ msgstr "Färg" msgid "Column" msgstr "Kolumn" -#. Label of the column_field (Data) field in DocType 'CRM View Settings' -#: crm/fcrm/doctype/crm_view_settings/crm_view_settings.json +#. Label of the column_field (Data) field in PageType 'CRM View Settings' +#: crm/fcrm/pagetype/crm_view_settings/crm_view_settings.json #: frontend/src/components/Kanban/KanbanSettings.vue:12 msgid "Column Field" msgstr "Kolumnfält" -#. Label of the columns (Code) field in DocType 'CRM View Settings' -#: crm/fcrm/doctype/crm_view_settings/crm_view_settings.json +#. Label of the columns (Code) field in PageType 'CRM View Settings' +#: crm/fcrm/pagetype/crm_view_settings/crm_view_settings.json #: frontend/src/components/ColumnSettings.vue:4 msgid "Columns" msgstr "Kolumner" -#. Label of the comment (Link) field in DocType 'CRM Notification' -#: crm/fcrm/doctype/crm_notification/crm_notification.json +#. Label of the comment (Link) field in PageType 'CRM Notification' +#: crm/fcrm/pagetype/crm_notification/crm_notification.json #: frontend/src/components/CommentBox.vue:78 #: frontend/src/components/CommunicationArea.vue:16 #: frontend/src/components/Layouts/AppSidebar.vue:579 @@ -1264,20 +1264,20 @@ msgstr "Kommentarer" msgid "Common reasons for losing deals" msgstr "Vanliga anledningar till att affärer går förlorade" -#. Label of the communication_status (Link) field in DocType 'CRM Deal' -#. Label of the communication_status (Link) field in DocType 'CRM Lead' -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_lead/crm_lead.json +#. Label of the communication_status (Link) field in PageType 'CRM Deal' +#. Label of the communication_status (Link) field in PageType 'CRM Lead' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_lead/crm_lead.json msgid "Communication Status" msgstr "Konversation Status" -#. Label of a shortcut in the Frappe CRM Workspace -#: crm/fcrm/workspace/frappe_crm/frappe_crm.json +#. Label of a shortcut in the Jingrow CRM Workspace +#: crm/fcrm/workspace/jingrow_crm/jingrow_crm.json msgid "Communication Statuses" msgstr "Konversation Status" -#. Label of the erpnext_company (Data) field in DocType 'ERPNext CRM Settings' -#: crm/fcrm/doctype/erpnext_crm_settings/erpnext_crm_settings.json +#. Label of the erpnext_company (Data) field in PageType 'ERPNext CRM Settings' +#: crm/fcrm/pagetype/erpnext_crm_settings/erpnext_crm_settings.json msgid "Company in ERPNext Site" msgstr "Bolag i Affärssystem Webbplats" @@ -1285,18 +1285,18 @@ msgstr "Bolag i Affärssystem Webbplats" msgid "Complete Registration" msgstr "Slutför Registrering" -#. Option for the 'Status' (Select) field in DocType 'CRM Call Log' -#: crm/fcrm/doctype/crm_call_log/crm_call_log.json +#. Option for the 'Status' (Select) field in PageType 'CRM Call Log' +#: crm/fcrm/pagetype/crm_call_log/crm_call_log.json msgid "Completed" msgstr "Klar" -#. Option for the 'Device' (Select) field in DocType 'CRM Telephony Agent' -#: crm/fcrm/doctype/crm_telephony_agent/crm_telephony_agent.json +#. Option for the 'Device' (Select) field in PageType 'CRM Telephony Agent' +#: crm/fcrm/pagetype/crm_telephony_agent/crm_telephony_agent.json msgid "Computer" msgstr "Dator" -#. Label of the condition (Code) field in DocType 'CRM Service Level Agreement' -#: crm/fcrm/doctype/crm_service_level_agreement/crm_service_level_agreement.json +#. Label of the condition (Code) field in PageType 'CRM Service Level Agreement' +#: crm/fcrm/pagetype/crm_service_level_agreement/crm_service_level_agreement.json msgid "Condition" msgstr "Villkor" @@ -1354,17 +1354,17 @@ msgstr "Bekräfta överskrivning" msgid "Connect your email" msgstr "Anslut din e-post" -#. Label of the contact (Link) field in DocType 'CRM Contacts' -#. Label of the contact (Link) field in DocType 'CRM Deal' -#: crm/fcrm/doctype/crm_contacts/crm_contacts.json -#: crm/fcrm/doctype/crm_deal/crm_deal.json +#. Label of the contact (Link) field in PageType 'CRM Contacts' +#. Label of the contact (Link) field in PageType 'CRM Deal' +#: crm/fcrm/pagetype/crm_contacts/crm_contacts.json +#: crm/fcrm/pagetype/crm_deal/crm_deal.json #: frontend/src/components/Layouts/AppSidebar.vue:552 #: frontend/src/components/Modals/ConvertToDealModal.vue:51 #: frontend/src/pages/MobileLead.vue:145 msgid "Contact" msgstr "Kontakt" -#: crm/fcrm/doctype/crm_lead/crm_lead.py:212 +#: crm/fcrm/pagetype/crm_lead/crm_lead.py:212 msgid "Contact Already Exists" msgstr "Kontakt Finns Redan" @@ -1384,7 +1384,7 @@ msgstr "Kontakt tillagd" msgid "Contact already added" msgstr "Kontakt redan tillagd" -#: crm/fcrm/doctype/crm_lead/crm_lead.py:211 +#: crm/fcrm/pagetype/crm_lead/crm_lead.py:211 msgid "Contact already exists with {0}" msgstr "Kontakt finns redan med {0}" @@ -1405,18 +1405,18 @@ msgstr "Kontakt borttagen" msgid "Contact updated" msgstr "Kontakt uppdaterad" -#. Label of the contacts_tab (Tab Break) field in DocType 'CRM Deal' -#. Label of the contacts (Table) field in DocType 'CRM Deal' -#. Label of a shortcut in the Frappe CRM Workspace -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/workspace/frappe_crm/frappe_crm.json +#. Label of the contacts_tab (Tab Break) field in PageType 'CRM Deal' +#. Label of the contacts (Table) field in PageType 'CRM Deal' +#. Label of a shortcut in the Jingrow CRM Workspace +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/workspace/jingrow_crm/jingrow_crm.json #: frontend/src/pages/Contact.vue:234 frontend/src/pages/MobileContact.vue:212 #: frontend/src/pages/MobileOrganization.vue:331 msgid "Contacts" msgstr "Kontakter" -#. Label of the content (Text Editor) field in DocType 'FCRM Note' -#: crm/fcrm/doctype/fcrm_note/fcrm_note.json +#. Label of the content (Text Editor) field in PageType 'FCRM Note' +#: crm/fcrm/pagetype/fcrm_note/fcrm_note.json #: frontend/src/components/Modals/NoteModal.vue:33 #: frontend/src/components/Settings/EmailTemplate/EditEmailTemplate.vue:89 #: frontend/src/components/Settings/EmailTemplate/EditEmailTemplate.vue:102 @@ -1456,8 +1456,8 @@ msgstr "Konvertera Potentiell Kund till Affär" msgid "Convert to Deal" msgstr "Konvertera till Affär" -#. Label of the converted (Check) field in DocType 'CRM Lead' -#: crm/fcrm/doctype/crm_lead/crm_lead.json +#. Label of the converted (Check) field in PageType 'CRM Lead' +#: crm/fcrm/pagetype/crm_lead/crm_lead.json msgid "Converted" msgstr "Konverterad" @@ -1533,9 +1533,9 @@ msgstr "Skapa Vy" msgid "Create an event" msgstr "Skapa händelse" -#. Label of the create_customer_on_status_change (Check) field in DocType +#. Label of the create_customer_on_status_change (Check) field in PageType #. 'ERPNext CRM Settings' -#: crm/fcrm/doctype/erpnext_crm_settings/erpnext_crm_settings.json +#: crm/fcrm/pagetype/erpnext_crm_settings/erpnext_crm_settings.json msgid "Create customer on status change" msgstr "Skapa kund vid statusändring" @@ -1560,13 +1560,13 @@ msgstr "Skapa första anteckning" msgid "Create your first task" msgstr "Skapa första uppgift" -#. Label of the currency (Link) field in DocType 'CRM Deal' -#. Label of the currency (Link) field in DocType 'CRM Organization' -#. Label of the currency (Link) field in DocType 'FCRM Settings' -#. Label of the currency_tab (Tab Break) field in DocType 'FCRM Settings' -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_organization/crm_organization.json -#: crm/fcrm/doctype/fcrm_settings/fcrm_settings.json +#. Label of the currency (Link) field in PageType 'CRM Deal' +#. Label of the currency (Link) field in PageType 'CRM Organization' +#. Label of the currency (Link) field in PageType 'FCRM Settings' +#. Label of the currency_tab (Tab Break) field in PageType 'FCRM Settings' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_organization/crm_organization.json +#: crm/fcrm/pagetype/fcrm_settings/fcrm_settings.json #: frontend/src/components/Settings/CurrencySettings.vue:31 msgid "Currency" msgstr "Valuta" @@ -1631,13 +1631,13 @@ msgstr "Daglig resultat för potentiella kunder, affärer och vinster" msgid "Data" msgstr "Data" -#. Option for the 'Type' (Select) field in DocType 'CRM Fields Layout' -#: crm/fcrm/doctype/crm_fields_layout/crm_fields_layout.json +#. Option for the 'Type' (Select) field in PageType 'CRM Fields Layout' +#: crm/fcrm/pagetype/crm_fields_layout/crm_fields_layout.json msgid "Data Fields" msgstr "Datafält" -#. Label of the date (Date) field in DocType 'CRM Holiday' -#: crm/api/dashboard.py:601 crm/fcrm/doctype/crm_holiday/crm_holiday.json +#. Label of the date (Date) field in PageType 'CRM Holiday' +#: crm/api/dashboard.py:601 crm/fcrm/pagetype/crm_holiday/crm_holiday.json #: frontend/src/components/Calendar/CalendarEventPanel.vue:202 msgid "Date" msgstr "Datum" @@ -1660,23 +1660,23 @@ msgstr "Datum & Tid" msgid "Deal" msgstr "Affär" -#. Label of the deal_owner (Link) field in DocType 'CRM Deal' -#: crm/fcrm/doctype/crm_deal/crm_deal.json +#. Label of the deal_owner (Link) field in PageType 'CRM Deal' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json msgid "Deal Owner" msgstr "Ansvarig" -#. Label of the deal_status (Link) field in DocType 'ERPNext CRM Settings' -#: crm/fcrm/doctype/erpnext_crm_settings/erpnext_crm_settings.json +#. Label of the deal_status (Link) field in PageType 'ERPNext CRM Settings' +#: crm/fcrm/pagetype/erpnext_crm_settings/erpnext_crm_settings.json msgid "Deal Status" msgstr "Affär Status" -#. Label of a shortcut in the Frappe CRM Workspace -#: crm/fcrm/workspace/frappe_crm/frappe_crm.json +#. Label of a shortcut in the Jingrow CRM Workspace +#: crm/fcrm/workspace/jingrow_crm/jingrow_crm.json msgid "Deal Statuses" msgstr "Affär Status" -#. Label of the deal_value (Currency) field in DocType 'CRM Deal' -#: crm/fcrm/doctype/crm_deal/crm_deal.json +#. Label of the deal_value (Currency) field in PageType 'CRM Deal' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json msgid "Deal Value" msgstr "Affärsvärde" @@ -1694,8 +1694,8 @@ msgstr "Affär Ansvarig" msgid "Deal value" msgstr "Affärsvärde" -#. Label of a shortcut in the Frappe CRM Workspace -#: crm/fcrm/workspace/frappe_crm/frappe_crm.json +#. Label of a shortcut in the Jingrow CRM Workspace +#: crm/fcrm/workspace/jingrow_crm/jingrow_crm.json #: frontend/src/pages/Deal.vue:480 frontend/src/pages/MobileContact.vue:288 #: frontend/src/pages/MobileDeal.vue:384 #: frontend/src/pages/MobileOrganization.vue:325 @@ -1732,8 +1732,8 @@ msgstr "Affärer per distrikt" msgid "Dear {{ lead_name }}, \\n\\nThis is a reminder for the payment of {{ grand_total }}. \\n\\nThanks, \\nFrappé" msgstr "Bästa {{ lead_name }}, \\n\\nDetta är en påminnelse om betalningen av {{ grand_total }}. \\n\\nTack, \\n." -#. Label of the default (Check) field in DocType 'CRM Service Level Agreement' -#: crm/fcrm/doctype/crm_service_level_agreement/crm_service_level_agreement.json +#. Label of the default (Check) field in PageType 'CRM Service Level Agreement' +#: crm/fcrm/pagetype/crm_service_level_agreement/crm_service_level_agreement.json msgid "Default" msgstr "Standard" @@ -1745,8 +1745,8 @@ msgstr "Standard Inkorg" msgid "Default Incoming" msgstr "Standard Inkommande" -#. Label of the default_medium (Select) field in DocType 'CRM Telephony Agent' -#: crm/fcrm/doctype/crm_telephony_agent/crm_telephony_agent.json +#. Label of the default_medium (Select) field in PageType 'CRM Telephony Agent' +#: crm/fcrm/pagetype/crm_telephony_agent/crm_telephony_agent.json msgid "Default Medium" msgstr "Standard Medium" @@ -1754,9 +1754,9 @@ msgstr "Standard Medium" msgid "Default Outgoing" msgstr "Standard Utgående" -#. Label of the default_priority (Check) field in DocType 'CRM Service Level +#. Label of the default_priority (Check) field in PageType 'CRM Service Level #. Priority' -#: crm/fcrm/doctype/crm_service_level_priority/crm_service_level_priority.json +#: crm/fcrm/pagetype/crm_service_level_priority/crm_service_level_priority.json msgid "Default Priority" msgstr "Standard Prioritet" @@ -1768,7 +1768,7 @@ msgstr "Standard Skicka" msgid "Default Sending and Inbox" msgstr "Standard Utgående/Inkommande E-post Konto" -#: crm/fcrm/doctype/crm_service_level_agreement/crm_service_level_agreement.py:33 +#: crm/fcrm/pagetype/crm_service_level_agreement/crm_service_level_agreement.py:33 msgid "Default Service Level Agreement already exists for {0}" msgstr "Standard Service Nivå Avtal för {0} finns redan." @@ -1788,8 +1788,8 @@ msgstr "Standard samtal medium uppdaterad" msgid "Default medium" msgstr "Standard Medium" -#: crm/fcrm/doctype/fcrm_settings/fcrm_settings.js:18 -#: crm/fcrm/doctype/fcrm_settings/fcrm_settings.js:30 +#: crm/fcrm/pagetype/fcrm_settings/fcrm_settings.js:18 +#: crm/fcrm/pagetype/fcrm_settings/fcrm_settings.js:30 msgid "Default statuses, custom fields and layouts restored successfully." msgstr "Standard status, anpassade fält och upplägg återställdes." @@ -1825,7 +1825,7 @@ msgstr "Standard status, anpassade fält och upplägg återställdes." msgid "Delete" msgstr "Ta bort" -#: crm/fcrm/doctype/fcrm_settings/fcrm_settings.js:26 +#: crm/fcrm/pagetype/fcrm_settings/fcrm_settings.js:26 msgid "Delete & Restore" msgstr "Ta bort och Återställ" @@ -1883,14 +1883,14 @@ msgstr "Ta bort {0} artikel(ar)" msgid "Delete {0} items" msgstr "Ta bort {0} artikel" -#. Label of the description (Text Editor) field in DocType 'CRM Holiday' -#. Label of the description (Text Editor) field in DocType 'CRM Lost Reason' -#. Label of the description (Text Editor) field in DocType 'CRM Product' -#. Label of the description (Text Editor) field in DocType 'CRM Task' -#: crm/fcrm/doctype/crm_holiday/crm_holiday.json -#: crm/fcrm/doctype/crm_lost_reason/crm_lost_reason.json -#: crm/fcrm/doctype/crm_product/crm_product.json -#: crm/fcrm/doctype/crm_task/crm_task.json +#. Label of the description (Text Editor) field in PageType 'CRM Holiday' +#. Label of the description (Text Editor) field in PageType 'CRM Lost Reason' +#. Label of the description (Text Editor) field in PageType 'CRM Product' +#. Label of the description (Text Editor) field in PageType 'CRM Task' +#: crm/fcrm/pagetype/crm_holiday/crm_holiday.json +#: crm/fcrm/pagetype/crm_lost_reason/crm_lost_reason.json +#: crm/fcrm/pagetype/crm_product/crm_product.json +#: crm/fcrm/pagetype/crm_task/crm_task.json #: frontend/src/components/Calendar/CalendarEventPanel.vue:152 #: frontend/src/components/Modals/EventModal.vue:134 #: frontend/src/components/Modals/TaskModal.vue:36 @@ -1907,29 +1907,29 @@ msgstr "Beskrivning erfordras" msgid "Desk" msgstr "Skrivbord" -#. Label of the details (Tab Break) field in DocType 'CRM Lead' -#. Label of the details (Text Editor) field in DocType 'CRM Lead Source' -#: crm/fcrm/doctype/crm_lead/crm_lead.json -#: crm/fcrm/doctype/crm_lead_source/crm_lead_source.json +#. Label of the details (Tab Break) field in PageType 'CRM Lead' +#. Label of the details (Text Editor) field in PageType 'CRM Lead Source' +#: crm/fcrm/pagetype/crm_lead/crm_lead.json +#: crm/fcrm/pagetype/crm_lead_source/crm_lead_source.json #: frontend/src/pages/MobileContact.vue:283 #: frontend/src/pages/MobileDeal.vue:424 frontend/src/pages/MobileLead.vue:331 #: frontend/src/pages/MobileOrganization.vue:320 msgid "Details" msgstr "Detaljer" -#. Label of the call_receiving_device (Select) field in DocType 'CRM Telephony +#. Label of the call_receiving_device (Select) field in PageType 'CRM Telephony #. Agent' -#: crm/fcrm/doctype/crm_telephony_agent/crm_telephony_agent.json +#: crm/fcrm/pagetype/crm_telephony_agent/crm_telephony_agent.json #: frontend/src/components/FilesUploader/FilesUploaderArea.vue:39 msgid "Device" msgstr "Enhet" -#: crm/fcrm/doctype/crm_form_script/crm_form_script.js:30 +#: crm/fcrm/pagetype/crm_form_script/crm_form_script.js:30 msgid "Disable" msgstr "Inaktivera" -#. Label of the disabled (Check) field in DocType 'CRM Product' -#: crm/fcrm/doctype/crm_product/crm_product.json +#. Label of the disabled (Check) field in PageType 'CRM Product' +#: crm/fcrm/pagetype/crm_product/crm_product.json msgid "Disabled" msgstr "Inaktiverad" @@ -1943,29 +1943,29 @@ msgstr "Ångra" msgid "Discard unsaved changes?" msgstr "Förkasta osparade ändringar?" -#. Label of the discount_percentage (Percent) field in DocType 'CRM Products' -#: crm/fcrm/doctype/crm_products/crm_products.json +#. Label of the discount_percentage (Percent) field in PageType 'CRM Products' +#: crm/fcrm/pagetype/crm_products/crm_products.json msgid "Discount %" msgstr "Rabatt %" -#. Label of the discount_amount (Currency) field in DocType 'CRM Products' -#: crm/fcrm/doctype/crm_products/crm_products.json +#. Label of the discount_amount (Currency) field in PageType 'CRM Products' +#: crm/fcrm/pagetype/crm_products/crm_products.json msgid "Discount Amount" msgstr "Rabatt Belopp" -#. Label of the dt (Link) field in DocType 'CRM Form Script' -#. Label of the dt (Link) field in DocType 'CRM Global Settings' -#. Label of the dt (Link) field in DocType 'CRM View Settings' -#: crm/fcrm/doctype/crm_form_script/crm_form_script.json -#: crm/fcrm/doctype/crm_global_settings/crm_global_settings.json -#: crm/fcrm/doctype/crm_view_settings/crm_view_settings.json -msgid "DocType" -msgstr "DocType" +#. Label of the dt (Link) field in PageType 'CRM Form Script' +#. Label of the dt (Link) field in PageType 'CRM Global Settings' +#. Label of the dt (Link) field in PageType 'CRM View Settings' +#: crm/fcrm/pagetype/crm_form_script/crm_form_script.json +#: crm/fcrm/pagetype/crm_global_settings/crm_global_settings.json +#: crm/fcrm/pagetype/crm_view_settings/crm_view_settings.json +msgid "PageType" +msgstr "PageType" -#. Label of the dt (Link) field in DocType 'CRM Fields Layout' -#: crm/fcrm/doctype/crm_fields_layout/crm_fields_layout.json +#. Label of the dt (Link) field in PageType 'CRM Fields Layout' +#: crm/fcrm/pagetype/crm_fields_layout/crm_fields_layout.json msgid "Document Type" -msgstr "DocType" +msgstr "PageType" #: frontend/src/data/document.js:28 msgid "Document does not exist" @@ -1983,8 +1983,8 @@ msgstr "Dokument uppdaterad" msgid "Documentation" msgstr "Dokumentation" -#. Option for the 'Status' (Select) field in DocType 'CRM Task' -#: crm/fcrm/doctype/crm_task/crm_task.json +#. Option for the 'Status' (Select) field in PageType 'CRM Task' +#: crm/fcrm/pagetype/crm_task/crm_task.json msgid "Done" msgstr "Klar" @@ -2006,13 +2006,13 @@ msgstr "Dra och släpp filer här eller ladda upp från" msgid "Drop files here" msgstr "Släpp filer här" -#. Label of the dropdown_items_tab (Tab Break) field in DocType 'FCRM Settings' -#: crm/fcrm/doctype/fcrm_settings/fcrm_settings.json +#. Label of the dropdown_items_tab (Tab Break) field in PageType 'FCRM Settings' +#: crm/fcrm/pagetype/fcrm_settings/fcrm_settings.json msgid "Dropdown Items" msgstr "Rullgardin Post" -#. Label of the due_date (Datetime) field in DocType 'CRM Task' -#: crm/fcrm/doctype/crm_task/crm_task.json +#. Label of the due_date (Datetime) field in PageType 'CRM Task' +#: crm/fcrm/pagetype/crm_task/crm_task.json msgid "Due Date" msgstr "Förfallo Datum" @@ -2048,10 +2048,10 @@ msgstr "Duplicera händelse" msgid "Duplicate template" msgstr "Duplicera mall" -#. Label of the duration (Duration) field in DocType 'CRM Call Log' -#. Label of the duration (Duration) field in DocType 'CRM Status Change Log' -#: crm/fcrm/doctype/crm_call_log/crm_call_log.json -#: crm/fcrm/doctype/crm_status_change_log/crm_status_change_log.json +#. Label of the duration (Duration) field in PageType 'CRM Call Log' +#. Label of the duration (Duration) field in PageType 'CRM Status Change Log' +#: crm/fcrm/pagetype/crm_call_log/crm_call_log.json +#: crm/fcrm/pagetype/crm_status_change_log/crm_status_change_log.json msgid "Duration" msgstr "Varaktighet" @@ -2060,28 +2060,28 @@ msgstr "Varaktighet" msgid "ERPNext" msgstr "Affärssystem" -#. Name of a DocType -#: crm/fcrm/doctype/erpnext_crm_settings/erpnext_crm_settings.json +#. Name of a PageType +#: crm/fcrm/pagetype/erpnext_crm_settings/erpnext_crm_settings.json msgid "ERPNext CRM Settings" msgstr "Affärssystem Säljstöd Inställningar" -#. Label of the section_break_oubd (Section Break) field in DocType 'ERPNext +#. Label of the section_break_oubd (Section Break) field in PageType 'ERPNext #. CRM Settings' -#: crm/fcrm/doctype/erpnext_crm_settings/erpnext_crm_settings.json +#: crm/fcrm/pagetype/erpnext_crm_settings/erpnext_crm_settings.json msgid "ERPNext Site API's" msgstr "Affärssystem Webbplats API'er" -#. Label of the erpnext_site_url (Data) field in DocType 'ERPNext CRM Settings' -#: crm/fcrm/doctype/erpnext_crm_settings/erpnext_crm_settings.json +#. Label of the erpnext_site_url (Data) field in PageType 'ERPNext CRM Settings' +#: crm/fcrm/pagetype/erpnext_crm_settings/erpnext_crm_settings.json msgid "ERPNext Site URL" msgstr "Affärssystem Webbplats URL" -#: crm/fcrm/doctype/erpnext_crm_settings/erpnext_crm_settings.py:25 +#: crm/fcrm/pagetype/erpnext_crm_settings/erpnext_crm_settings.py:25 msgid "ERPNext is not installed in the current site" msgstr "Afförsystem är inte installerat på aktuell webbplats" -#: crm/fcrm/doctype/erpnext_crm_settings/erpnext_crm_settings.py:98 -#: crm/fcrm/doctype/erpnext_crm_settings/erpnext_crm_settings.py:124 +#: crm/fcrm/pagetype/erpnext_crm_settings/erpnext_crm_settings.py:98 +#: crm/fcrm/pagetype/erpnext_crm_settings/erpnext_crm_settings.py:124 msgid "ERPNext is not integrated with the CRM" msgstr "Affärssystem är inte integrerat med Säljstöd" @@ -2191,12 +2191,12 @@ msgstr "Redigering av Rad {0}" msgid "Editing event" msgstr "Redigerar händelse" -#. Label of the email (Data) field in DocType 'CRM Contacts' -#. Label of the email (Data) field in DocType 'CRM Invitation' -#. Label of the email (Data) field in DocType 'CRM Lead' -#: crm/fcrm/doctype/crm_contacts/crm_contacts.json -#: crm/fcrm/doctype/crm_invitation/crm_invitation.json -#: crm/fcrm/doctype/crm_lead/crm_lead.json frontend/src/pages/Contact.vue:510 +#. Label of the email (Data) field in PageType 'CRM Contacts' +#. Label of the email (Data) field in PageType 'CRM Invitation' +#. Label of the email (Data) field in PageType 'CRM Lead' +#: crm/fcrm/pagetype/crm_contacts/crm_contacts.json +#: crm/fcrm/pagetype/crm_invitation/crm_invitation.json +#: crm/fcrm/pagetype/crm_lead/crm_lead.json frontend/src/pages/Contact.vue:510 #: frontend/src/pages/MobileContact.vue:518 #: frontend/src/pages/MobileOrganization.vue:462 #: frontend/src/pages/MobileOrganization.vue:490 @@ -2213,8 +2213,8 @@ msgstr "E-post Konton" msgid "Email ID is required" msgstr "E-post erfordras" -#. Label of the email_sent_at (Datetime) field in DocType 'CRM Invitation' -#: crm/fcrm/doctype/crm_invitation/crm_invitation.json +#. Label of the email_sent_at (Datetime) field in PageType 'CRM Invitation' +#: crm/fcrm/pagetype/crm_invitation/crm_invitation.json msgid "Email Sent At" msgstr "E-post skickad Kl" @@ -2272,12 +2272,12 @@ msgstr "Tom – Välj fält att filtrera efter" msgid "Empty - Choose a field to sort by" msgstr "Tom – Välj fält att sortera efter" -#: crm/fcrm/doctype/crm_form_script/crm_form_script.js:30 +#: crm/fcrm/pagetype/crm_form_script/crm_form_script.js:30 msgid "Enable" msgstr "Aktivera" -#. Label of the enable_forecasting (Check) field in DocType 'FCRM Settings' -#: crm/fcrm/doctype/fcrm_settings/fcrm_settings.json +#. Label of the enable_forecasting (Check) field in PageType 'FCRM Settings' +#: crm/fcrm/pagetype/fcrm_settings/fcrm_settings.json msgid "Enable Forecasting" msgstr "Aktivera Prognoser" @@ -2293,18 +2293,18 @@ msgstr "Aktivera Utgående" msgid "Enable forecasting" msgstr "Aktivera Prognoser" -#. Label of the enabled (Check) field in DocType 'CRM Exotel Settings' -#. Label of the enabled (Check) field in DocType 'CRM Form Script' -#. Label of the enabled (Check) field in DocType 'CRM Service Level Agreement' -#. Label of the enabled (Check) field in DocType 'CRM Twilio Settings' -#. Label of the enabled (Check) field in DocType 'ERPNext CRM Settings' -#. Label of the enabled (Check) field in DocType 'Helpdesk CRM Settings' -#: crm/fcrm/doctype/crm_exotel_settings/crm_exotel_settings.json -#: crm/fcrm/doctype/crm_form_script/crm_form_script.json -#: crm/fcrm/doctype/crm_service_level_agreement/crm_service_level_agreement.json -#: crm/fcrm/doctype/crm_twilio_settings/crm_twilio_settings.json -#: crm/fcrm/doctype/erpnext_crm_settings/erpnext_crm_settings.json -#: crm/fcrm/doctype/helpdesk_crm_settings/helpdesk_crm_settings.json +#. Label of the enabled (Check) field in PageType 'CRM Exotel Settings' +#. Label of the enabled (Check) field in PageType 'CRM Form Script' +#. Label of the enabled (Check) field in PageType 'CRM Service Level Agreement' +#. Label of the enabled (Check) field in PageType 'CRM Twilio Settings' +#. Label of the enabled (Check) field in PageType 'ERPNext CRM Settings' +#. Label of the enabled (Check) field in PageType 'Helpdesk CRM Settings' +#: crm/fcrm/pagetype/crm_exotel_settings/crm_exotel_settings.json +#: crm/fcrm/pagetype/crm_form_script/crm_form_script.json +#: crm/fcrm/pagetype/crm_service_level_agreement/crm_service_level_agreement.json +#: crm/fcrm/pagetype/crm_twilio_settings/crm_twilio_settings.json +#: crm/fcrm/pagetype/erpnext_crm_settings/erpnext_crm_settings.json +#: crm/fcrm/pagetype/helpdesk_crm_settings/helpdesk_crm_settings.json #: frontend/src/components/Settings/AssignmentRules/AssignmentRuleView.vue:32 #: frontend/src/components/Settings/AssignmentRules/AssignmentRulesList.vue:21 #: frontend/src/components/Settings/EmailTemplate/EditEmailTemplate.vue:18 @@ -2313,15 +2313,15 @@ msgstr "Aktivera Prognoser" msgid "Enabled" msgstr "Aktiverad" -#. Label of the end_date (Date) field in DocType 'CRM Service Level Agreement' -#: crm/fcrm/doctype/crm_service_level_agreement/crm_service_level_agreement.json +#. Label of the end_date (Date) field in PageType 'CRM Service Level Agreement' +#: crm/fcrm/pagetype/crm_service_level_agreement/crm_service_level_agreement.json msgid "End Date" msgstr "Slut Datum" -#. Label of the end_time (Datetime) field in DocType 'CRM Call Log' -#. Label of the end_time (Time) field in DocType 'CRM Service Day' -#: crm/fcrm/doctype/crm_call_log/crm_call_log.json -#: crm/fcrm/doctype/crm_service_day/crm_service_day.json +#. Label of the end_time (Datetime) field in PageType 'CRM Call Log' +#. Label of the end_time (Time) field in PageType 'CRM Service Day' +#: crm/fcrm/pagetype/crm_call_log/crm_call_log.json +#: crm/fcrm/pagetype/crm_service_day/crm_service_day.json #: frontend/src/components/Calendar/CalendarEventPanel.vue:242 #: frontend/src/components/Modals/EventModal.vue:112 msgid "End Time" @@ -2362,15 +2362,15 @@ msgstr "Fel vid konvertering till affär: {0}" msgid "Error updating field" msgstr "Fel vid uppdatering av fält" -#: crm/fcrm/doctype/erpnext_crm_settings/erpnext_crm_settings.py:279 +#: crm/fcrm/pagetype/erpnext_crm_settings/erpnext_crm_settings.py:279 msgid "Error while creating customer in ERPNext, check error log for more details" msgstr "Fel vid skapande av kund i System, kontrollera fellogg för mer information" -#: crm/fcrm/doctype/erpnext_crm_settings/erpnext_crm_settings.py:191 +#: crm/fcrm/pagetype/erpnext_crm_settings/erpnext_crm_settings.py:191 msgid "Error while creating prospect in ERPNext, check error log for more details" msgstr "Fel vid skapande av prospekt i System, kontrollera fellogg för mer information" -#: crm/fcrm/doctype/erpnext_crm_settings/erpnext_crm_settings.py:117 +#: crm/fcrm/pagetype/erpnext_crm_settings/erpnext_crm_settings.py:117 msgid "Error while fetching customer in ERPNext, check error log for more details" msgstr "Fel vid hämtning av kund i System, kontrollera fellogg för mer information" @@ -2395,16 +2395,16 @@ msgstr "Händelser" msgid "Excel" msgstr "Excel" -#. Label of the exchange_rate (Float) field in DocType 'CRM Deal' -#. Label of the exchange_rate (Float) field in DocType 'CRM Organization' -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_organization/crm_organization.json +#. Label of the exchange_rate (Float) field in PageType 'CRM Deal' +#. Label of the exchange_rate (Float) field in PageType 'CRM Organization' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_organization/crm_organization.json msgid "Exchange Rate" msgstr "Växel Kurs" -#. Label of the exchange_rate_provider_section (Section Break) field in DocType +#. Label of the exchange_rate_provider_section (Section Break) field in PageType #. 'FCRM Settings' -#: crm/fcrm/doctype/fcrm_settings/fcrm_settings.json +#: crm/fcrm/pagetype/fcrm_settings/fcrm_settings.json msgid "Exchange Rate Provider" msgstr "Växelkurs Leverantör" @@ -2412,12 +2412,12 @@ msgstr "Växelkurs Leverantör" msgid "Exchange rate provider" msgstr "Växelkurs Leverantör" -#. Option for the 'Telephony Medium' (Select) field in DocType 'CRM Call Log' -#. Label of the exotel (Check) field in DocType 'CRM Telephony Agent' -#. Option for the 'Default Medium' (Select) field in DocType 'CRM Telephony +#. Option for the 'Telephony Medium' (Select) field in PageType 'CRM Call Log' +#. Label of the exotel (Check) field in PageType 'CRM Telephony Agent' +#. Option for the 'Default Medium' (Select) field in PageType 'CRM Telephony #. Agent' -#: crm/fcrm/doctype/crm_call_log/crm_call_log.json -#: crm/fcrm/doctype/crm_telephony_agent/crm_telephony_agent.json +#: crm/fcrm/pagetype/crm_call_log/crm_call_log.json +#: crm/fcrm/pagetype/crm_telephony_agent/crm_telephony_agent.json #: frontend/src/components/Layouts/AppSidebar.vue:602 #: frontend/src/components/Settings/TelephonySettings.vue:41 #: frontend/src/components/Settings/TelephonySettings.vue:63 @@ -2428,8 +2428,8 @@ msgstr "Exotel" msgid "Exotel Exception" msgstr "Exotel Undantag" -#. Label of the exotel_number (Data) field in DocType 'CRM Telephony Agent' -#: crm/fcrm/doctype/crm_telephony_agent/crm_telephony_agent.json +#. Label of the exotel_number (Data) field in PageType 'CRM Telephony Agent' +#: crm/fcrm/pagetype/crm_telephony_agent/crm_telephony_agent.json msgid "Exotel Number" msgstr "Exotel Nummer" @@ -2453,26 +2453,26 @@ msgstr "Exotel Inställningar uppdaterade" msgid "Expand" msgstr "Expandera" -#. Label of the expected_closure_date (Date) field in DocType 'CRM Deal' -#: crm/fcrm/doctype/crm_deal/crm_deal.json +#. Label of the expected_closure_date (Date) field in PageType 'CRM Deal' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json msgid "Expected Closure Date" msgstr "Förväntad Avslutning Datum" -#: crm/fcrm/doctype/crm_deal/crm_deal.py:173 +#: crm/fcrm/pagetype/crm_deal/crm_deal.py:173 msgid "Expected Closure Date is required." msgstr "Förväntad Avslutning Datum erfordras." -#. Label of the expected_deal_value (Currency) field in DocType 'CRM Deal' -#: crm/fcrm/doctype/crm_deal/crm_deal.json +#. Label of the expected_deal_value (Currency) field in PageType 'CRM Deal' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json msgid "Expected Deal Value" msgstr "Förväntad Affärsvärde" -#: crm/fcrm/doctype/crm_deal/crm_deal.py:171 +#: crm/fcrm/pagetype/crm_deal/crm_deal.py:171 msgid "Expected Deal Value is required." msgstr "Förväntad Affärsvärde erfordras." -#. Option for the 'Status' (Select) field in DocType 'CRM Invitation' -#: crm/fcrm/doctype/crm_invitation/crm_invitation.json +#. Option for the 'Status' (Select) field in PageType 'CRM Invitation' +#: crm/fcrm/pagetype/crm_invitation/crm_invitation.json msgid "Expired" msgstr "Utgången" @@ -2489,22 +2489,22 @@ msgstr "Exportera Alla {0} Post(er)" msgid "Export Type" msgstr "Export Typ" -#. Name of a DocType -#: crm/fcrm/doctype/fcrm_note/fcrm_note.json +#. Name of a PageType +#: crm/fcrm/pagetype/fcrm_note/fcrm_note.json msgid "FCRM Note" msgstr "Anteckning" -#. Name of a DocType -#: crm/fcrm/doctype/fcrm_settings/fcrm_settings.json +#. Name of a PageType +#: crm/fcrm/pagetype/fcrm_settings/fcrm_settings.json msgid "FCRM Settings" msgstr "Inställningar" -#. Option for the 'Status' (Select) field in DocType 'CRM Call Log' -#. Option for the 'SLA Status' (Select) field in DocType 'CRM Deal' -#. Option for the 'SLA Status' (Select) field in DocType 'CRM Lead' -#: crm/fcrm/doctype/crm_call_log/crm_call_log.json -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_lead/crm_lead.json +#. Option for the 'Status' (Select) field in PageType 'CRM Call Log' +#. Option for the 'SLA Status' (Select) field in PageType 'CRM Deal' +#. Option for the 'SLA Status' (Select) field in PageType 'CRM Lead' +#: crm/fcrm/pagetype/crm_call_log/crm_call_log.json +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_lead/crm_lead.json msgid "Failed" msgstr "Misslyckad" @@ -2528,7 +2528,7 @@ msgstr "Misslyckades med att skapa mall" msgid "Failed to delete template" msgstr "Misslyckades med att ta bort mall" -#: crm/fcrm/doctype/fcrm_settings/fcrm_settings.py:205 +#: crm/fcrm/pagetype/fcrm_settings/fcrm_settings.py:205 msgid "Failed to fetch exchange rate from {0} to {1} on {2}. Please check your internet connection or try again later." msgstr "Misslyckades med att hämta växelkurs från {0} till {1} {2}. Kontrollera internetanslutning eller försök igen senare." @@ -2561,8 +2561,8 @@ msgstr "Misslyckades med att uppdatera profil" msgid "Failed to update template" msgstr "Misslyckades med att uppdatera mall" -#. Label of the favicon (Attach) field in DocType 'FCRM Settings' -#: crm/fcrm/doctype/fcrm_settings/fcrm_settings.json +#. Label of the favicon (Attach) field in PageType 'FCRM Settings' +#: crm/fcrm/pagetype/fcrm_settings/fcrm_settings.json #: frontend/src/components/Settings/BrandSettings.vue:87 msgid "Favicon" msgstr "Favicon" @@ -2586,23 +2586,23 @@ msgid "File \"{0}\" was skipped because only {1} uploads are allowed" msgstr "Fil \"{0}\" hoppades över eftersom endast {1} uppladdningar är tillåtna" #: frontend/src/components/FilesUploader/FilesUploaderArea.vue:359 -msgid "File \"{0}\" was skipped because only {1} uploads are allowed for DocType \"{2}\"" -msgstr "Fil \"{0}\" hoppades över eftersom endast {1} uppladdningar är tillåtna för DocType \"{2}\"" +msgid "File \"{0}\" was skipped because only {1} uploads are allowed for PageType \"{2}\"" +msgstr "Fil \"{0}\" hoppades över eftersom endast {1} uppladdningar är tillåtna för PageType \"{2}\"" #: frontend/src/components/Filter.vue:6 msgid "Filter" msgstr "Filter" -#. Label of the filters (Code) field in DocType 'CRM View Settings' -#. Label of the filters_tab (Tab Break) field in DocType 'CRM View Settings' -#: crm/fcrm/doctype/crm_view_settings/crm_view_settings.json +#. Label of the filters (Code) field in PageType 'CRM View Settings' +#. Label of the filters_tab (Tab Break) field in PageType 'CRM View Settings' +#: crm/fcrm/pagetype/crm_view_settings/crm_view_settings.json msgid "Filters" msgstr "Filter" -#. Label of the first_name (Data) field in DocType 'CRM Deal' -#. Label of the first_name (Data) field in DocType 'CRM Lead' -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_lead/crm_lead.json +#. Label of the first_name (Data) field in PageType 'CRM Deal' +#. Label of the first_name (Data) field in PageType 'CRM Lead' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_lead/crm_lead.json #: frontend/src/components/ColumnSettings.vue:103 #: frontend/src/components/Filter.vue:57 frontend/src/components/Filter.vue:88 #: frontend/src/components/SortBy.vue:6 frontend/src/components/SortBy.vue:103 @@ -2614,30 +2614,30 @@ msgstr "Förnamn" msgid "First Name is mandatory" msgstr "Förnamn erfordras" -#. Label of the first_responded_on (Datetime) field in DocType 'CRM Deal' -#. Label of the first_responded_on (Datetime) field in DocType 'CRM Lead' -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_lead/crm_lead.json +#. Label of the first_responded_on (Datetime) field in PageType 'CRM Deal' +#. Label of the first_responded_on (Datetime) field in PageType 'CRM Lead' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_lead/crm_lead.json msgid "First Responded On" msgstr "Första Svar" -#. Option for the 'SLA Status' (Select) field in DocType 'CRM Deal' -#. Option for the 'SLA Status' (Select) field in DocType 'CRM Lead' -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_lead/crm_lead.json +#. Option for the 'SLA Status' (Select) field in PageType 'CRM Deal' +#. Option for the 'SLA Status' (Select) field in PageType 'CRM Lead' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_lead/crm_lead.json msgid "First Response Due" msgstr "Första Svar inom" -#. Label of the first_response_time (Duration) field in DocType 'CRM Service +#. Label of the first_response_time (Duration) field in PageType 'CRM Service #. Level Priority' -#: crm/fcrm/doctype/crm_service_level_priority/crm_service_level_priority.json +#: crm/fcrm/pagetype/crm_service_level_priority/crm_service_level_priority.json msgid "First Response TIme" msgstr "Första Svarstid" -#. Label of the first_response_time (Duration) field in DocType 'CRM Deal' -#. Label of the first_response_time (Duration) field in DocType 'CRM Lead' -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_lead/crm_lead.json +#. Label of the first_response_time (Duration) field in PageType 'CRM Deal' +#. Label of the first_response_time (Duration) field in PageType 'CRM Lead' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_lead/crm_lead.json msgid "First Response Time" msgstr "Första Svarstid" @@ -2670,66 +2670,66 @@ msgstr "Prognostisering inaktiverad" msgid "Forecasting enabled successfully" msgstr "Prognostisering aktiverad" -#. Option for the 'Apply To' (Select) field in DocType 'CRM Form Script' -#: crm/fcrm/doctype/crm_form_script/crm_form_script.json +#. Option for the 'Apply To' (Select) field in PageType 'CRM Form Script' +#: crm/fcrm/pagetype/crm_form_script/crm_form_script.json msgid "Form" msgstr "Formulär" -#: crm/fcrm/doctype/erpnext_crm_settings/erpnext_crm_settings.js:19 +#: crm/fcrm/pagetype/erpnext_crm_settings/erpnext_crm_settings.js:19 msgid "Form Script updated successfully" msgstr "Formulär Skript uppdaterad" #. Name of a Workspace -#: crm/fcrm/workspace/frappe_crm/frappe_crm.json -msgid "Frappe CRM" +#: crm/fcrm/workspace/jingrow_crm/jingrow_crm.json +msgid "Jingrow CRM" msgstr "Säljstöd" #: frontend/src/components/Layouts/AppSidebar.vue:608 -msgid "Frappe CRM mobile" +msgid "Jingrow CRM mobile" msgstr "Mobil App" -#. Option for the 'Weekly Off' (Select) field in DocType 'CRM Holiday List' -#. Option for the 'Workday' (Select) field in DocType 'CRM Service Day' -#: crm/fcrm/doctype/crm_holiday_list/crm_holiday_list.json -#: crm/fcrm/doctype/crm_service_day/crm_service_day.json +#. Option for the 'Weekly Off' (Select) field in PageType 'CRM Holiday List' +#. Option for the 'Workday' (Select) field in PageType 'CRM Service Day' +#: crm/fcrm/pagetype/crm_holiday_list/crm_holiday_list.json +#: crm/fcrm/pagetype/crm_service_day/crm_service_day.json msgid "Friday" msgstr "Fredag" -#. Label of the from (Data) field in DocType 'CRM Call Log' -#. Label of the from (Data) field in DocType 'CRM Status Change Log' -#: crm/fcrm/doctype/crm_call_log/crm_call_log.json -#: crm/fcrm/doctype/crm_status_change_log/crm_status_change_log.json +#. Label of the from (Data) field in PageType 'CRM Call Log' +#. Label of the from (Data) field in PageType 'CRM Status Change Log' +#: crm/fcrm/pagetype/crm_call_log/crm_call_log.json +#: crm/fcrm/pagetype/crm_status_change_log/crm_status_change_log.json msgid "From" msgstr "Från" -#. Label of the from_date (Date) field in DocType 'CRM Holiday List' -#. Label of the from_date (Datetime) field in DocType 'CRM Status Change Log' -#: crm/fcrm/doctype/crm_holiday_list/crm_holiday_list.json -#: crm/fcrm/doctype/crm_status_change_log/crm_status_change_log.json +#. Label of the from_date (Date) field in PageType 'CRM Holiday List' +#. Label of the from_date (Datetime) field in PageType 'CRM Status Change Log' +#: crm/fcrm/pagetype/crm_holiday_list/crm_holiday_list.json +#: crm/fcrm/pagetype/crm_status_change_log/crm_status_change_log.json msgid "From Date" msgstr "Från Datum" -#. Label of the from_type (Data) field in DocType 'CRM Status Change Log' -#: crm/fcrm/doctype/crm_status_change_log/crm_status_change_log.json +#. Label of the from_type (Data) field in PageType 'CRM Status Change Log' +#: crm/fcrm/pagetype/crm_status_change_log/crm_status_change_log.json msgid "From Type" msgstr "Från Typ" -#. Label of the from_user (Link) field in DocType 'CRM Notification' -#: crm/fcrm/doctype/crm_notification/crm_notification.json +#. Label of the from_user (Link) field in PageType 'CRM Notification' +#: crm/fcrm/pagetype/crm_notification/crm_notification.json msgid "From User" msgstr "Från Användare" -#. Option for the 'SLA Status' (Select) field in DocType 'CRM Deal' -#. Option for the 'SLA Status' (Select) field in DocType 'CRM Lead' -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_lead/crm_lead.json +#. Option for the 'SLA Status' (Select) field in PageType 'CRM Deal' +#. Option for the 'SLA Status' (Select) field in PageType 'CRM Lead' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_lead/crm_lead.json msgid "Fulfilled" msgstr "Uppfylld" -#. Label of the full_name (Data) field in DocType 'CRM Contacts' -#. Label of the lead_name (Data) field in DocType 'CRM Lead' -#: crm/fcrm/doctype/crm_contacts/crm_contacts.json -#: crm/fcrm/doctype/crm_lead/crm_lead.json +#. Label of the full_name (Data) field in PageType 'CRM Contacts' +#. Label of the lead_name (Data) field in PageType 'CRM Lead' +#: crm/fcrm/pagetype/crm_contacts/crm_contacts.json +#: crm/fcrm/pagetype/crm_lead/crm_lead.json msgid "Full Name" msgstr "Fullständig Namn" @@ -2742,12 +2742,12 @@ msgstr "Säljtratt konvertering" msgid "GMT+5:30" msgstr "GMT+5:30" -#. Label of the gender (Link) field in DocType 'CRM Contacts' -#. Label of the gender (Link) field in DocType 'CRM Deal' -#. Label of the gender (Link) field in DocType 'CRM Lead' -#: crm/fcrm/doctype/crm_contacts/crm_contacts.json -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_lead/crm_lead.json +#. Label of the gender (Link) field in PageType 'CRM Contacts' +#. Label of the gender (Link) field in PageType 'CRM Deal' +#. Label of the gender (Link) field in PageType 'CRM Lead' +#: crm/fcrm/pagetype/crm_contacts/crm_contacts.json +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_lead/crm_lead.json msgid "Gender" msgstr "Kön" @@ -2771,20 +2771,20 @@ msgstr "Gå till inbjudningssidan" msgid "Go to website" msgstr "Gå till webbplats" -#. Option for the 'Type' (Select) field in DocType 'CRM Fields Layout' -#: crm/fcrm/doctype/crm_fields_layout/crm_fields_layout.json +#. Option for the 'Type' (Select) field in PageType 'CRM Fields Layout' +#: crm/fcrm/pagetype/crm_fields_layout/crm_fields_layout.json msgid "Grid Row" msgstr "Rutnätsrad" -#. Label of the group_by_tab (Tab Break) field in DocType 'CRM View Settings' -#: crm/fcrm/doctype/crm_view_settings/crm_view_settings.json +#. Label of the group_by_tab (Tab Break) field in PageType 'CRM View Settings' +#: crm/fcrm/pagetype/crm_view_settings/crm_view_settings.json #: frontend/src/components/ViewControls.vue:379 #: frontend/src/components/ViewControls.vue:611 frontend/src/utils/view.js:16 msgid "Group By" msgstr "Gruppera efter" -#. Label of the group_by_field (Data) field in DocType 'CRM View Settings' -#: crm/fcrm/doctype/crm_view_settings/crm_view_settings.json +#. Label of the group_by_field (Data) field in PageType 'CRM View Settings' +#: crm/fcrm/pagetype/crm_view_settings/crm_view_settings.json msgid "Group By Field" msgstr "Gruppera efter Fält" @@ -2808,28 +2808,28 @@ msgstr "Hjälp" msgid "Helpdesk" msgstr "Helpdesk" -#. Name of a DocType -#: crm/fcrm/doctype/helpdesk_crm_settings/helpdesk_crm_settings.json +#. Name of a PageType +#: crm/fcrm/pagetype/helpdesk_crm_settings/helpdesk_crm_settings.json msgid "Helpdesk CRM Settings" msgstr "Helpdesk Säljstöd Inställningar" -#. Label of the helpdesk_site_apis_section (Section Break) field in DocType +#. Label of the helpdesk_site_apis_section (Section Break) field in PageType #. 'Helpdesk CRM Settings' -#: crm/fcrm/doctype/helpdesk_crm_settings/helpdesk_crm_settings.json +#: crm/fcrm/pagetype/helpdesk_crm_settings/helpdesk_crm_settings.json msgid "Helpdesk Site API's" msgstr "Helpdesk Webbplats API" -#. Label of the helpdesk_site_url (Data) field in DocType 'Helpdesk CRM +#. Label of the helpdesk_site_url (Data) field in PageType 'Helpdesk CRM #. Settings' -#: crm/fcrm/doctype/helpdesk_crm_settings/helpdesk_crm_settings.json +#: crm/fcrm/pagetype/helpdesk_crm_settings/helpdesk_crm_settings.json msgid "Helpdesk Site URL" msgstr "Helpdesk Webbplats URL" -#: crm/fcrm/doctype/helpdesk_crm_settings/helpdesk_crm_settings.py:18 +#: crm/fcrm/pagetype/helpdesk_crm_settings/helpdesk_crm_settings.py:18 msgid "Helpdesk is not installed in the current site" msgstr "Helpdesk är inte installerad på aktuell webbplats" -#: crm/fcrm/doctype/helpdesk_crm_settings/helpdesk_crm_settings.py:40 +#: crm/fcrm/pagetype/helpdesk_crm_settings/helpdesk_crm_settings.py:40 msgid "Helpdesk is not integrated with the CRM" msgstr "Helpdesk är inte integrerad med Säljstöd" @@ -2845,8 +2845,8 @@ msgstr "Helpdesk inställningar uppdaterade" msgid "Hi John, \\n\\nCan you please provide more details on this..." msgstr "Hej John, \\n\\nKan du ge mer information om detta..." -#. Label of the hidden (Check) field in DocType 'CRM Dropdown Item' -#: crm/fcrm/doctype/crm_dropdown_item/crm_dropdown_item.json +#. Label of the hidden (Check) field in PageType 'CRM Dropdown Item' +#: crm/fcrm/pagetype/crm_dropdown_item/crm_dropdown_item.json msgid "Hidden" msgstr "Dold " @@ -2877,26 +2877,26 @@ msgstr "Dölj etikett" msgid "Hide preview" msgstr "Dölj förhandsvisning" -#. Option for the 'Priority' (Select) field in DocType 'CRM Task' -#: crm/fcrm/doctype/crm_task/crm_task.json +#. Option for the 'Priority' (Select) field in PageType 'CRM Task' +#: crm/fcrm/pagetype/crm_task/crm_task.json msgid "High" msgstr "Hög" -#. Label of the holiday_list (Link) field in DocType 'CRM Service Level +#. Label of the holiday_list (Link) field in PageType 'CRM Service Level #. Agreement' -#: crm/fcrm/doctype/crm_service_level_agreement/crm_service_level_agreement.json +#: crm/fcrm/pagetype/crm_service_level_agreement/crm_service_level_agreement.json msgid "Holiday List" msgstr "Helg Lista" -#. Label of the holiday_list_name (Data) field in DocType 'CRM Holiday List' -#: crm/fcrm/doctype/crm_holiday_list/crm_holiday_list.json +#. Label of the holiday_list_name (Data) field in PageType 'CRM Holiday List' +#: crm/fcrm/pagetype/crm_holiday_list/crm_holiday_list.json msgid "Holiday List Name" msgstr "Helg Lista Namn" -#. Label of the holidays_section (Section Break) field in DocType 'CRM Holiday +#. Label of the holidays_section (Section Break) field in PageType 'CRM Holiday #. List' -#. Label of the holidays (Table) field in DocType 'CRM Holiday List' -#: crm/fcrm/doctype/crm_holiday_list/crm_holiday_list.json +#. Label of the holidays (Table) field in PageType 'CRM Holiday List' +#: crm/fcrm/pagetype/crm_holiday_list/crm_holiday_list.json msgid "Holidays" msgstr "Helg Dagar" @@ -2914,15 +2914,15 @@ msgstr "Hem åtgärder" msgid "I understand, add conditions" msgstr "Jag förstår, lägg till villkor" -#. Label of the id (Data) field in DocType 'CRM Call Log' -#: crm/fcrm/doctype/crm_call_log/crm_call_log.json +#. Label of the id (Data) field in PageType 'CRM Call Log' +#: crm/fcrm/pagetype/crm_call_log/crm_call_log.json msgid "ID" msgstr "ID" -#. Label of the icon (Code) field in DocType 'CRM Dropdown Item' -#. Label of the icon (Data) field in DocType 'CRM View Settings' -#: crm/fcrm/doctype/crm_dropdown_item/crm_dropdown_item.json -#: crm/fcrm/doctype/crm_view_settings/crm_view_settings.json +#. Label of the icon (Code) field in PageType 'CRM Dropdown Item' +#. Label of the icon (Data) field in PageType 'CRM View Settings' +#: crm/fcrm/pagetype/crm_dropdown_item/crm_dropdown_item.json +#: crm/fcrm/pagetype/crm_view_settings/crm_view_settings.json msgid "Icon" msgstr "Ikon" @@ -2942,10 +2942,10 @@ msgstr "Om aktiverad kan utgående e-post meddelande skickas från detta konto." msgid "If enabled, records can be created from the incoming emails on this account." msgstr "Om aktiverad kan poster skapas från inkommande e-post meddelande på detta konto." -#. Label of the image (Attach Image) field in DocType 'CRM Lead' -#. Label of the image (Attach Image) field in DocType 'CRM Product' -#: crm/fcrm/doctype/crm_lead/crm_lead.json -#: crm/fcrm/doctype/crm_product/crm_product.json +#. Label of the image (Attach Image) field in PageType 'CRM Lead' +#. Label of the image (Attach Image) field in PageType 'CRM Product' +#: crm/fcrm/pagetype/crm_lead/crm_lead.json +#: crm/fcrm/pagetype/crm_product/crm_product.json msgid "Image" msgstr "Bild" @@ -2957,10 +2957,10 @@ msgstr "Bild" msgid "In" msgstr "I" -#. Option for the 'Status' (Select) field in DocType 'CRM Call Log' -#. Option for the 'Status' (Select) field in DocType 'CRM Task' -#: crm/fcrm/doctype/crm_call_log/crm_call_log.json -#: crm/fcrm/doctype/crm_task/crm_task.json +#. Option for the 'Status' (Select) field in PageType 'CRM Call Log' +#. Option for the 'Status' (Select) field in PageType 'CRM Task' +#: crm/fcrm/pagetype/crm_call_log/crm_call_log.json +#: crm/fcrm/pagetype/crm_task/crm_task.json msgid "In Progress" msgstr "Pågående" @@ -2976,8 +2976,8 @@ msgstr "Inkommande samtal" msgid "Inbox" msgstr "Inkorg" -#. Option for the 'Type' (Select) field in DocType 'CRM Call Log' -#: crm/fcrm/doctype/crm_call_log/crm_call_log.json +#. Option for the 'Type' (Select) field in PageType 'CRM Call Log' +#: crm/fcrm/pagetype/crm_call_log/crm_call_log.json msgid "Incoming" msgstr "Inkommande" @@ -2985,24 +2985,24 @@ msgstr "Inkommande" msgid "Incoming call..." msgstr "Inkommande samtal..." -#. Label of a shortcut in the Frappe CRM Workspace -#: crm/fcrm/workspace/frappe_crm/frappe_crm.json +#. Label of a shortcut in the Jingrow CRM Workspace +#: crm/fcrm/workspace/jingrow_crm/jingrow_crm.json msgid "Industries" msgstr "Branscher" -#. Label of the industry (Link) field in DocType 'CRM Deal' -#. Label of the industry (Data) field in DocType 'CRM Industry' -#. Label of the industry (Link) field in DocType 'CRM Lead' -#. Label of the industry (Link) field in DocType 'CRM Organization' -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_industry/crm_industry.json -#: crm/fcrm/doctype/crm_lead/crm_lead.json -#: crm/fcrm/doctype/crm_organization/crm_organization.json +#. Label of the industry (Link) field in PageType 'CRM Deal' +#. Label of the industry (Data) field in PageType 'CRM Industry' +#. Label of the industry (Link) field in PageType 'CRM Lead' +#. Label of the industry (Link) field in PageType 'CRM Organization' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_industry/crm_industry.json +#: crm/fcrm/pagetype/crm_lead/crm_lead.json +#: crm/fcrm/pagetype/crm_organization/crm_organization.json msgid "Industry" msgstr "Industri" -#. Option for the 'Status' (Select) field in DocType 'CRM Call Log' -#: crm/fcrm/doctype/crm_call_log/crm_call_log.json +#. Option for the 'Status' (Select) field in PageType 'CRM Call Log' +#: crm/fcrm/pagetype/crm_call_log/crm_call_log.json msgid "Initiated" msgstr "Initierad" @@ -3037,7 +3037,7 @@ msgstr "System Integrationer" msgid "Introduction" msgstr "Introduktion" -#: crm/fcrm/doctype/crm_twilio_settings/crm_twilio_settings.py:33 +#: crm/fcrm/pagetype/crm_twilio_settings/crm_twilio_settings.py:33 msgid "Invalid Account SID or Auth Token." msgstr "Ogiltigt Konto SID eller Auth Token." @@ -3054,7 +3054,7 @@ msgstr "Ogiltigt Exotel Nummer" msgid "Invalid chart name" msgstr "Ogiltig diagram namn" -#: crm/fcrm/doctype/crm_exotel_settings/crm_exotel_settings.py:25 +#: crm/fcrm/pagetype/crm_exotel_settings/crm_exotel_settings.py:25 msgid "Invalid credentials" msgstr "Ogiltiga inloggningsuppgifter" @@ -3103,8 +3103,8 @@ msgstr "Bjud in användare att få åtkomst till Säljstöd. Ange deras roller f msgid "Invite your team" msgstr "Bjud in Team" -#. Label of the invited_by (Link) field in DocType 'CRM Invitation' -#: crm/fcrm/doctype/crm_invitation/crm_invitation.json +#. Label of the invited_by (Link) field in PageType 'CRM Invitation' +#: crm/fcrm/pagetype/crm_invitation/crm_invitation.json msgid "Invited By" msgstr "Inbjuden av" @@ -3118,59 +3118,59 @@ msgstr "Inbjuden av" msgid "Is" msgstr "Är" -#. Label of the is_default (Check) field in DocType 'CRM View Settings' -#: crm/fcrm/doctype/crm_view_settings/crm_view_settings.json +#. Label of the is_default (Check) field in PageType 'CRM View Settings' +#: crm/fcrm/pagetype/crm_view_settings/crm_view_settings.json msgid "Is Default" msgstr "Är Standard" -#. Label of the is_erpnext_in_different_site (Check) field in DocType 'ERPNext +#. Label of the is_erpnext_in_different_site (Check) field in PageType 'ERPNext #. CRM Settings' -#: crm/fcrm/doctype/erpnext_crm_settings/erpnext_crm_settings.json +#: crm/fcrm/pagetype/erpnext_crm_settings/erpnext_crm_settings.json msgid "Is ERPNext installed on a different site?" msgstr "Är Affärssystem installerad på annan webbplats?" -#. Label of the is_group (Check) field in DocType 'CRM Territory' -#: crm/fcrm/doctype/crm_territory/crm_territory.json +#. Label of the is_group (Check) field in PageType 'CRM Territory' +#: crm/fcrm/pagetype/crm_territory/crm_territory.json msgid "Is Group" msgstr "Är Grupp" -#. Label of the is_helpdesk_in_different_site (Check) field in DocType +#. Label of the is_helpdesk_in_different_site (Check) field in PageType #. 'Helpdesk CRM Settings' -#: crm/fcrm/doctype/helpdesk_crm_settings/helpdesk_crm_settings.json +#: crm/fcrm/pagetype/helpdesk_crm_settings/helpdesk_crm_settings.json msgid "Is Helpdesk installed on a different site?" msgstr "Är Helpdesk installerat på annan webbplats?" -#. Label of the is_primary (Check) field in DocType 'CRM Contacts' -#. Label of the is_primary (Check) field in DocType 'CRM Telephony Phone' -#: crm/fcrm/doctype/crm_contacts/crm_contacts.json -#: crm/fcrm/doctype/crm_telephony_phone/crm_telephony_phone.json +#. Label of the is_primary (Check) field in PageType 'CRM Contacts' +#. Label of the is_primary (Check) field in PageType 'CRM Telephony Phone' +#: crm/fcrm/pagetype/crm_contacts/crm_contacts.json +#: crm/fcrm/pagetype/crm_telephony_phone/crm_telephony_phone.json msgid "Is Primary" msgstr "Är Primär" -#. Label of the is_standard (Check) field in DocType 'CRM Dropdown Item' -#. Label of the is_standard (Check) field in DocType 'CRM Form Script' -#. Label of the is_standard (Check) field in DocType 'CRM View Settings' -#: crm/fcrm/doctype/crm_dropdown_item/crm_dropdown_item.json -#: crm/fcrm/doctype/crm_form_script/crm_form_script.json -#: crm/fcrm/doctype/crm_view_settings/crm_view_settings.json +#. Label of the is_standard (Check) field in PageType 'CRM Dropdown Item' +#. Label of the is_standard (Check) field in PageType 'CRM Form Script' +#. Label of the is_standard (Check) field in PageType 'CRM View Settings' +#: crm/fcrm/pagetype/crm_dropdown_item/crm_dropdown_item.json +#: crm/fcrm/pagetype/crm_form_script/crm_form_script.json +#: crm/fcrm/pagetype/crm_view_settings/crm_view_settings.json msgid "Is Standard" msgstr "Är Standard" -#. Description of the 'Enable Forecasting' (Check) field in DocType 'FCRM +#. Description of the 'Enable Forecasting' (Check) field in PageType 'FCRM #. Settings' -#: crm/fcrm/doctype/fcrm_settings/fcrm_settings.json +#: crm/fcrm/pagetype/fcrm_settings/fcrm_settings.json msgid "It will make deal's \"Expected Closure Date\" & \"Expected Deal Value\" mandatory to get accurate forecasting insights" msgstr "Det kommer att göra affärens \"Förväntad Avslutning Datum\" och \"Förväntad Affärsvärde\" erfordrade för att få korrekta prognos insikter" -#. Label of the json (JSON) field in DocType 'CRM Global Settings' -#: crm/fcrm/doctype/crm_global_settings/crm_global_settings.json +#. Label of the json (JSON) field in PageType 'CRM Global Settings' +#: crm/fcrm/pagetype/crm_global_settings/crm_global_settings.json msgid "JSON" msgstr "JSON" -#. Label of the job_title (Data) field in DocType 'CRM Deal' -#. Label of the job_title (Data) field in DocType 'CRM Lead' -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_lead/crm_lead.json +#. Label of the job_title (Data) field in PageType 'CRM Deal' +#. Label of the job_title (Data) field in PageType 'CRM Lead' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_lead/crm_lead.json msgid "Job Title" msgstr "Jobb Benämning" @@ -3182,20 +3182,20 @@ msgstr "Jobb Benämning" msgid "John Doe" msgstr "John Doe" -#. Label of the kanban_tab (Tab Break) field in DocType 'CRM View Settings' -#: crm/fcrm/doctype/crm_view_settings/crm_view_settings.json +#. Label of the kanban_tab (Tab Break) field in PageType 'CRM View Settings' +#: crm/fcrm/pagetype/crm_view_settings/crm_view_settings.json #: frontend/src/components/ViewControls.vue:384 #: frontend/src/components/ViewControls.vue:600 frontend/src/utils/view.js:20 msgid "Kanban" msgstr "Anslag Tavla" -#. Label of the kanban_columns (Code) field in DocType 'CRM View Settings' -#: crm/fcrm/doctype/crm_view_settings/crm_view_settings.json +#. Label of the kanban_columns (Code) field in PageType 'CRM View Settings' +#: crm/fcrm/pagetype/crm_view_settings/crm_view_settings.json msgid "Kanban Columns" msgstr "Anslagstavla Kolumner" -#. Label of the kanban_fields (Code) field in DocType 'CRM View Settings' -#: crm/fcrm/doctype/crm_view_settings/crm_view_settings.json +#. Label of the kanban_fields (Code) field in PageType 'CRM View Settings' +#: crm/fcrm/pagetype/crm_view_settings/crm_view_settings.json msgid "Kanban Fields" msgstr "Anslagstavla Fält" @@ -3204,15 +3204,15 @@ msgstr "Anslagstavla Fält" msgid "Kanban Settings" msgstr "Anslagstavla Inställningar" -#. Label of the key (Data) field in DocType 'CRM Invitation' -#: crm/fcrm/doctype/crm_invitation/crm_invitation.json +#. Label of the key (Data) field in PageType 'CRM Invitation' +#: crm/fcrm/pagetype/crm_invitation/crm_invitation.json msgid "Key" msgstr "Nyckel" -#. Label of the label (Data) field in DocType 'CRM Dropdown Item' -#. Label of the label (Data) field in DocType 'CRM View Settings' -#: crm/fcrm/doctype/crm_dropdown_item/crm_dropdown_item.json -#: crm/fcrm/doctype/crm_view_settings/crm_view_settings.json +#. Label of the label (Data) field in PageType 'CRM Dropdown Item' +#. Label of the label (Data) field in PageType 'CRM View Settings' +#: crm/fcrm/pagetype/crm_dropdown_item/crm_dropdown_item.json +#: crm/fcrm/pagetype/crm_view_settings/crm_view_settings.json #: frontend/src/components/ColumnSettings.vue:100 msgid "Label" msgstr "Etikett" @@ -3229,10 +3229,10 @@ msgstr "Senaste 6 Månader" msgid "Last Month" msgstr "Förra Månad" -#. Label of the last_name (Data) field in DocType 'CRM Deal' -#. Label of the last_name (Data) field in DocType 'CRM Lead' -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_lead/crm_lead.json +#. Label of the last_name (Data) field in PageType 'CRM Deal' +#. Label of the last_name (Data) field in PageType 'CRM Lead' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_lead/crm_lead.json msgid "Last Name" msgstr "Efternamn" @@ -3240,9 +3240,9 @@ msgstr "Efternamn" msgid "Last Quarter" msgstr "Förra Kvartal" -#. Label of the last_status_change_log (Link) field in DocType 'CRM Status +#. Label of the last_status_change_log (Link) field in PageType 'CRM Status #. Change Log' -#: crm/fcrm/doctype/crm_status_change_log/crm_status_change_log.json +#: crm/fcrm/pagetype/crm_status_change_log/crm_status_change_log.json msgid "Last Status Change Log" msgstr "Senaste Statusändring Logg" @@ -3270,15 +3270,15 @@ msgstr "Efternamn" msgid "Last user assigned by this rule" msgstr "Senaste användare tilldelad av denna regel" -#. Label of the layout (Code) field in DocType 'CRM Dashboard' -#. Label of the layout (Code) field in DocType 'CRM Fields Layout' -#: crm/fcrm/doctype/crm_dashboard/crm_dashboard.json -#: crm/fcrm/doctype/crm_fields_layout/crm_fields_layout.json +#. Label of the layout (Code) field in PageType 'CRM Dashboard' +#. Label of the layout (Code) field in PageType 'CRM Fields Layout' +#: crm/fcrm/pagetype/crm_dashboard/crm_dashboard.json +#: crm/fcrm/pagetype/crm_fields_layout/crm_fields_layout.json msgid "Layout" msgstr "Upplägg" -#. Label of the lead (Link) field in DocType 'CRM Deal' -#: crm/fcrm/doctype/crm_deal/crm_deal.json +#. Label of the lead (Link) field in PageType 'CRM Deal' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json #: frontend/src/components/Calendar/CalendarEventPanel.vue:263 #: frontend/src/components/Calendar/CalendarEventPanel.vue:288 #: frontend/src/components/Layouts/AppSidebar.vue:550 @@ -3291,32 +3291,32 @@ msgstr "Upplägg" msgid "Lead" msgstr "Potentiell Kund" -#. Label of the lead_details_tab (Tab Break) field in DocType 'CRM Deal' -#: crm/fcrm/doctype/crm_deal/crm_deal.json +#. Label of the lead_details_tab (Tab Break) field in PageType 'CRM Deal' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json msgid "Lead Details" msgstr "Potentiell Kund Detaljer" -#. Label of the lead_name (Data) field in DocType 'CRM Deal' -#: crm/fcrm/doctype/crm_deal/crm_deal.json +#. Label of the lead_name (Data) field in PageType 'CRM Deal' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json msgid "Lead Name" msgstr "Potentiell Kund Namn" -#. Label of the lead_owner (Link) field in DocType 'CRM Lead' -#: crm/fcrm/doctype/crm_lead/crm_lead.json +#. Label of the lead_owner (Link) field in PageType 'CRM Lead' +#: crm/fcrm/pagetype/crm_lead/crm_lead.json msgid "Lead Owner" msgstr "Potentiell Kund Ansvarig" -#: crm/fcrm/doctype/crm_lead/crm_lead.py:73 +#: crm/fcrm/pagetype/crm_lead/crm_lead.py:73 msgid "Lead Owner cannot be same as the Lead Email Address" msgstr "Potentiell Kund Ansvarig kan inte vara samma som Potentiell Kund E-post Adress" -#. Label of a shortcut in the Frappe CRM Workspace -#: crm/fcrm/workspace/frappe_crm/frappe_crm.json +#. Label of a shortcut in the Jingrow CRM Workspace +#: crm/fcrm/workspace/jingrow_crm/jingrow_crm.json msgid "Lead Sources" msgstr "Potentiell Kund Källor" -#. Label of a shortcut in the Frappe CRM Workspace -#: crm/fcrm/workspace/frappe_crm/frappe_crm.json +#. Label of a shortcut in the Jingrow CRM Workspace +#: crm/fcrm/workspace/jingrow_crm/jingrow_crm.json msgid "Lead Statuses" msgstr "Potentiell Kund Status" @@ -3328,8 +3328,8 @@ msgstr "Potentiell Kund Generering Kanal Analys" msgid "Lead to deal conversion pipeline" msgstr "Potentiell Kund till Affär Konvertering Pipeline" -#. Label of a shortcut in the Frappe CRM Workspace -#: crm/fcrm/workspace/frappe_crm/frappe_crm.json +#. Label of a shortcut in the Jingrow CRM Workspace +#: crm/fcrm/workspace/jingrow_crm/jingrow_crm.json #: frontend/src/pages/InvalidPage.vue:9 frontend/src/pages/Lead.vue:340 #: frontend/src/pages/MobileLead.vue:291 msgid "Leads" @@ -3345,8 +3345,8 @@ msgstr "Potentiell Kund per källa" msgid "Learn about conditions" msgstr "Lär dig om villkoren" -#. Label of the lft (Int) field in DocType 'CRM Territory' -#: crm/fcrm/doctype/crm_territory/crm_territory.json +#. Label of the lft (Int) field in PageType 'CRM Territory' +#: crm/fcrm/pagetype/crm_territory/crm_territory.json msgid "Left" msgstr "Vänster" @@ -3367,15 +3367,15 @@ msgstr "Gillar" msgid "Link" msgstr "Länk" -#. Label of the links (Table) field in DocType 'CRM Call Log' -#: crm/fcrm/doctype/crm_call_log/crm_call_log.json +#. Label of the links (Table) field in PageType 'CRM Call Log' +#: crm/fcrm/pagetype/crm_call_log/crm_call_log.json msgid "Links" msgstr "Länkar" -#. Option for the 'Apply To' (Select) field in DocType 'CRM Form Script' -#. Label of the list_tab (Tab Break) field in DocType 'CRM View Settings' -#: crm/fcrm/doctype/crm_form_script/crm_form_script.json -#: crm/fcrm/doctype/crm_view_settings/crm_view_settings.json +#. Option for the 'Apply To' (Select) field in PageType 'CRM Form Script' +#. Label of the list_tab (Tab Break) field in PageType 'CRM View Settings' +#: crm/fcrm/pagetype/crm_form_script/crm_form_script.json +#: crm/fcrm/pagetype/crm_view_settings/crm_view_settings.json #: frontend/src/components/ViewControls.vue:374 #: frontend/src/components/ViewControls.vue:589 frontend/src/utils/view.js:12 msgid "List" @@ -3385,9 +3385,9 @@ msgstr "Lista" msgid "Listen" msgstr "Lyssna" -#. Label of the load_default_columns (Check) field in DocType 'CRM View +#. Label of the load_default_columns (Check) field in PageType 'CRM View #. Settings' -#: crm/fcrm/doctype/crm_view_settings/crm_view_settings.json +#: crm/fcrm/pagetype/crm_view_settings/crm_view_settings.json msgid "Load Default Columns" msgstr "Ladda Standard Kolumner" @@ -3403,10 +3403,10 @@ msgstr "Ladda Mer" msgid "Loading..." msgstr "Laddar..." -#. Label of the log_tab (Tab Break) field in DocType 'CRM Deal' -#. Label of the log_tab (Tab Break) field in DocType 'CRM Lead' -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_lead/crm_lead.json +#. Label of the log_tab (Tab Break) field in PageType 'CRM Deal' +#. Label of the log_tab (Tab Break) field in PageType 'CRM Lead' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_lead/crm_lead.json msgid "Log" msgstr "Logg" @@ -3417,28 +3417,28 @@ msgid "Log a Call" msgstr "Logga Samtal" #: frontend/src/composables/frappecloud.js:23 -msgid "Login to Frappe Cloud?" -msgstr "Logga in på Frappe Cloud?" +msgid "Login to Jingrow Cloud?" +msgstr "Logga in på Jingrow Cloud?" -#. Label of the brand_logo (Attach) field in DocType 'FCRM Settings' -#: crm/fcrm/doctype/fcrm_settings/fcrm_settings.json +#. Label of the brand_logo (Attach) field in PageType 'FCRM Settings' +#: crm/fcrm/pagetype/fcrm_settings/fcrm_settings.json msgid "Logo" msgstr "Logotyp" -#. Option for the 'Type' (Select) field in DocType 'CRM Deal Status' -#: crm/fcrm/doctype/crm_deal_status/crm_deal_status.json +#. Option for the 'Type' (Select) field in PageType 'CRM Deal Status' +#: crm/fcrm/pagetype/crm_deal_status/crm_deal_status.json msgid "Lost" msgstr "Förlorad" -#. Label of the lost_notes (Text) field in DocType 'CRM Deal' -#: crm/fcrm/doctype/crm_deal/crm_deal.json +#. Label of the lost_notes (Text) field in PageType 'CRM Deal' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json msgid "Lost Notes" msgstr "Förlorad Affär Anteckningar" -#. Label of the lost_reason (Link) field in DocType 'CRM Deal' -#. Label of the lost_reason (Data) field in DocType 'CRM Lost Reason' -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_lost_reason/crm_lost_reason.json +#. Label of the lost_reason (Link) field in PageType 'CRM Deal' +#. Label of the lost_reason (Data) field in PageType 'CRM Lost Reason' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_lost_reason/crm_lost_reason.json msgid "Lost Reason" msgstr "Förlorad Anledning" @@ -3464,8 +3464,8 @@ msgstr "Förlorad Affär anledning" msgid "Lost reason is required" msgstr "Förlorad Affär anledning erfordras" -#. Option for the 'Priority' (Select) field in DocType 'CRM Task' -#: crm/fcrm/doctype/crm_task/crm_task.json +#. Option for the 'Priority' (Select) field in PageType 'CRM Task' +#: crm/fcrm/pagetype/crm_task/crm_task.json msgid "Low" msgstr "Låg" @@ -3542,8 +3542,8 @@ msgstr "Ansvarig" msgid "Mandatory field error: {0}" msgstr "Erfordrad fält fel: {0}" -#. Option for the 'Telephony Medium' (Select) field in DocType 'CRM Call Log' -#: crm/fcrm/doctype/crm_call_log/crm_call_log.json +#. Option for the 'Telephony Medium' (Select) field in PageType 'CRM Call Log' +#: crm/fcrm/pagetype/crm_call_log/crm_call_log.json msgid "Manual" msgstr "Manuell" @@ -3562,25 +3562,25 @@ msgstr "Inställningar" msgid "May 1, 2025" msgstr "1 maj 2025" -#. Label of the medium (Data) field in DocType 'CRM Call Log' -#. Option for the 'Priority' (Select) field in DocType 'CRM Task' -#: crm/fcrm/doctype/crm_call_log/crm_call_log.json -#: crm/fcrm/doctype/crm_task/crm_task.json +#. Label of the medium (Data) field in PageType 'CRM Call Log' +#. Option for the 'Priority' (Select) field in PageType 'CRM Task' +#: crm/fcrm/pagetype/crm_call_log/crm_call_log.json +#: crm/fcrm/pagetype/crm_task/crm_task.json msgid "Medium" msgstr "Medium" -#. Option for the 'Type' (Select) field in DocType 'CRM Notification' -#: crm/fcrm/doctype/crm_notification/crm_notification.json +#. Option for the 'Type' (Select) field in PageType 'CRM Notification' +#: crm/fcrm/pagetype/crm_notification/crm_notification.json msgid "Mention" msgstr "Hänvisa" -#. Label of the message (HTML Editor) field in DocType 'CRM Notification' -#: crm/fcrm/doctype/crm_notification/crm_notification.json +#. Label of the message (HTML Editor) field in PageType 'CRM Notification' +#: crm/fcrm/pagetype/crm_notification/crm_notification.json msgid "Message" msgstr "Meddelande" -#. Label of the middle_name (Data) field in DocType 'CRM Lead' -#: crm/fcrm/doctype/crm_lead/crm_lead.json +#. Label of the middle_name (Data) field in PageType 'CRM Lead' +#: crm/fcrm/pagetype/crm_lead/crm_lead.json msgid "Middle Name" msgstr "Mellannamn" @@ -3588,10 +3588,10 @@ msgstr "Mellannamn" msgid "Minimize" msgstr "Minimera" -#. Label of the mobile_no (Data) field in DocType 'CRM Contacts' -#. Label of the mobile_no (Data) field in DocType 'CRM Lead' -#: crm/fcrm/doctype/crm_contacts/crm_contacts.json -#: crm/fcrm/doctype/crm_lead/crm_lead.json +#. Label of the mobile_no (Data) field in PageType 'CRM Contacts' +#. Label of the mobile_no (Data) field in PageType 'CRM Lead' +#: crm/fcrm/pagetype/crm_contacts/crm_contacts.json +#: crm/fcrm/pagetype/crm_lead/crm_lead.json msgid "Mobile No" msgstr "Mobil Nummer" @@ -3600,8 +3600,8 @@ msgstr "Mobil Nummer" msgid "Mobile No should be a number" msgstr "Mobilnummer ska vara ett nummer" -#. Label of the mobile_no (Data) field in DocType 'CRM Telephony Agent' -#: crm/fcrm/doctype/crm_telephony_agent/crm_telephony_agent.json +#. Label of the mobile_no (Data) field in PageType 'CRM Telephony Agent' +#: crm/fcrm/pagetype/crm_telephony_agent/crm_telephony_agent.json msgid "Mobile No." msgstr "Mobil Nummer." @@ -3623,10 +3623,10 @@ msgstr "Mobil App Installation" msgid "Mobile no" msgstr "Mobilnummer" -#. Option for the 'Weekly Off' (Select) field in DocType 'CRM Holiday List' -#. Option for the 'Workday' (Select) field in DocType 'CRM Service Day' -#: crm/fcrm/doctype/crm_holiday_list/crm_holiday_list.json -#: crm/fcrm/doctype/crm_service_day/crm_service_day.json +#. Option for the 'Weekly Off' (Select) field in PageType 'CRM Holiday List' +#. Option for the 'Workday' (Select) field in PageType 'CRM Service Day' +#: crm/fcrm/pagetype/crm_holiday_list/crm_holiday_list.json +#: crm/fcrm/pagetype/crm_service_day/crm_service_day.json msgid "Monday" msgstr "Måndag" @@ -3658,12 +3658,12 @@ msgstr "Gå till föregående flik" msgid "My Open Deals" msgstr "Mina Öppna Affärer" -#. Label of the title (Data) field in DocType 'CRM Dashboard' -#. Label of the name1 (Data) field in DocType 'CRM Dropdown Item' -#. Label of the brand_name (Data) field in DocType 'FCRM Settings' -#: crm/fcrm/doctype/crm_dashboard/crm_dashboard.json -#: crm/fcrm/doctype/crm_dropdown_item/crm_dropdown_item.json -#: crm/fcrm/doctype/fcrm_settings/fcrm_settings.json +#. Label of the title (Data) field in PageType 'CRM Dashboard' +#. Label of the name1 (Data) field in PageType 'CRM Dropdown Item' +#. Label of the brand_name (Data) field in PageType 'FCRM Settings' +#: crm/fcrm/pagetype/crm_dashboard/crm_dashboard.json +#: crm/fcrm/pagetype/crm_dropdown_item/crm_dropdown_item.json +#: crm/fcrm/pagetype/fcrm_settings/fcrm_settings.json #: frontend/src/components/Settings/AssignmentRules/AssignmentRuleView.vue:51 #: frontend/src/components/Settings/AssignmentRules/AssignmentRuleView.vue:52 #: frontend/src/components/Settings/EmailTemplate/EditEmailTemplate.vue:39 @@ -3680,10 +3680,10 @@ msgstr "Namn" msgid "Name is required" msgstr "Namn erfordras" -#. Label of the naming_series (Select) field in DocType 'CRM Deal' -#. Label of the naming_series (Select) field in DocType 'CRM Product' -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_product/crm_product.json +#. Label of the naming_series (Select) field in PageType 'CRM Deal' +#. Label of the naming_series (Select) field in PageType 'CRM Product' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_product/crm_product.json msgid "Naming Series" msgstr "Namngivning Serie" @@ -3691,15 +3691,15 @@ msgstr "Namngivning Serie" msgid "Nested conditions" msgstr "Nästlade villkor" -#. Label of the net_amount (Currency) field in DocType 'CRM Products' -#: crm/fcrm/doctype/crm_products/crm_products.json +#. Label of the net_amount (Currency) field in PageType 'CRM Products' +#: crm/fcrm/pagetype/crm_products/crm_products.json msgid "Net Amount" msgstr "Netto Belopp" -#. Label of the net_total (Currency) field in DocType 'CRM Deal' -#. Label of the net_total (Currency) field in DocType 'CRM Lead' -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_lead/crm_lead.json +#. Label of the net_total (Currency) field in PageType 'CRM Deal' +#. Label of the net_total (Currency) field in PageType 'CRM Lead' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_lead/crm_lead.json msgid "Net Total" msgstr "Netto Totalt" @@ -3814,8 +3814,8 @@ msgstr "Nästa Månad" msgid "Next Quarter" msgstr "Nästa Kvartal" -#. Label of the next_step (Data) field in DocType 'CRM Deal' -#: crm/fcrm/doctype/crm_deal/crm_deal.json +#. Label of the next_step (Data) field in PageType 'CRM Deal' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json msgid "Next Step" msgstr "Nästa Steg" @@ -3831,8 +3831,8 @@ msgstr "Nästa År" msgid "No" msgstr "Nej" -#. Option for the 'Status' (Select) field in DocType 'CRM Call Log' -#: crm/fcrm/doctype/crm_call_log/crm_call_log.json +#. Option for the 'Status' (Select) field in PageType 'CRM Call Log' +#: crm/fcrm/pagetype/crm_call_log/crm_call_log.json msgid "No Answer" msgstr "Ingen Svar" @@ -3930,12 +3930,12 @@ msgstr "Ingen {0} Tillgänglig" msgid "No {0} Found" msgstr "{0}" -#. Label of the no_of_employees (Select) field in DocType 'CRM Deal' -#. Label of the no_of_employees (Select) field in DocType 'CRM Lead' -#. Label of the no_of_employees (Select) field in DocType 'CRM Organization' -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_lead/crm_lead.json -#: crm/fcrm/doctype/crm_organization/crm_organization.json +#. Label of the no_of_employees (Select) field in PageType 'CRM Deal' +#. Label of the no_of_employees (Select) field in PageType 'CRM Lead' +#. Label of the no_of_employees (Select) field in PageType 'CRM Organization' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_lead/crm_lead.json +#: crm/fcrm/pagetype/crm_organization/crm_organization.json msgid "No. of Employees" msgstr "Personal Antal" @@ -3981,24 +3981,24 @@ msgstr "Inte Som" msgid "Not Saved" msgstr "Ej Sparad" -#: crm/fcrm/doctype/crm_deal/crm_deal.py:272 +#: crm/fcrm/pagetype/crm_deal/crm_deal.py:272 msgid "Not allowed to add contact to Deal" msgstr "Inte tillåtet att lägga till kontakt i Affär" -#: crm/fcrm/doctype/crm_lead/crm_lead.py:408 +#: crm/fcrm/pagetype/crm_lead/crm_lead.py:408 msgid "Not allowed to convert Lead to Deal" msgstr "Inte tillåtet att konvertera Potentiell Kund till Affär" -#: crm/fcrm/doctype/crm_deal/crm_deal.py:283 +#: crm/fcrm/pagetype/crm_deal/crm_deal.py:283 msgid "Not allowed to remove contact from Deal" msgstr "Inte tillåtet att ta bort kontakt från Affär" -#: crm/fcrm/doctype/crm_deal/crm_deal.py:294 +#: crm/fcrm/pagetype/crm_deal/crm_deal.py:294 msgid "Not allowed to set primary contact for Deal" msgstr "Inte tillåtet att ange primär kontakt för Affär" -#. Label of the note (Link) field in DocType 'CRM Call Log' -#: crm/fcrm/doctype/crm_call_log/crm_call_log.json +#. Label of the note (Link) field in PageType 'CRM Call Log' +#: crm/fcrm/pagetype/crm_call_log/crm_call_log.json #: frontend/src/components/Layouts/AppSidebar.vue:554 msgid "Note" msgstr "Anteckning" @@ -4017,22 +4017,22 @@ msgstr "Anteckning Vy" msgid "Notification" msgstr "Aviseringar" -#. Label of the notification_text (Text) field in DocType 'CRM Notification' -#: crm/fcrm/doctype/crm_notification/crm_notification.json +#. Label of the notification_text (Text) field in PageType 'CRM Notification' +#: crm/fcrm/pagetype/crm_notification/crm_notification.json msgid "Notification Text" msgstr "Avisering Text" -#. Label of the notification_type_doc (Dynamic Link) field in DocType 'CRM +#. Label of the notification_type_pg (Dynamic Link) field in PageType 'CRM #. Notification' -#: crm/fcrm/doctype/crm_notification/crm_notification.json -msgid "Notification Type Doc" -msgstr "Avisering DocType" +#: crm/fcrm/pagetype/crm_notification/crm_notification.json +msgid "Notification Type Pg" +msgstr "Avisering PageType" -#. Label of the notification_type_doctype (Link) field in DocType 'CRM +#. Label of the notification_type_pagetype (Link) field in PageType 'CRM #. Notification' -#: crm/fcrm/doctype/crm_notification/crm_notification.json -msgid "Notification Type Doctype" -msgstr "Avisering Typ DocType" +#: crm/fcrm/pagetype/crm_notification/crm_notification.json +msgid "Notification Type Pagetype" +msgstr "Avisering Typ PageType" #: frontend/src/components/Layouts/AppSidebar.vue:13 #: frontend/src/components/Mobile/MobileSidebar.vue:23 @@ -4041,8 +4041,8 @@ msgstr "Avisering Typ DocType" msgid "Notifications" msgstr "Aviseringar" -#. Label of the number (Data) field in DocType 'CRM Telephony Phone' -#: crm/fcrm/doctype/crm_telephony_phone/crm_telephony_phone.json +#. Label of the number (Data) field in PageType 'CRM Telephony Phone' +#: crm/fcrm/pagetype/crm_telephony_phone/crm_telephony_phone.json msgid "Number" msgstr "Nummer" @@ -4064,18 +4064,18 @@ msgstr "Antal affärer och totalt värde per säljare" msgid "Old Condition" msgstr "Gamla Villkor" -#. Label of the old_parent (Link) field in DocType 'CRM Territory' -#: crm/fcrm/doctype/crm_territory/crm_territory.json +#. Label of the old_parent (Link) field in PageType 'CRM Territory' +#: crm/fcrm/pagetype/crm_territory/crm_territory.json msgid "Old Parent" msgstr "Tidigare Överordnad" -#. Option for the 'Type' (Select) field in DocType 'CRM Deal Status' -#: crm/fcrm/doctype/crm_deal_status/crm_deal_status.json +#. Option for the 'Type' (Select) field in PageType 'CRM Deal Status' +#: crm/fcrm/pagetype/crm_deal_status/crm_deal_status.json msgid "On Hold" msgstr "Spärrad" -#. Option for the 'Type' (Select) field in DocType 'CRM Deal Status' -#: crm/fcrm/doctype/crm_deal_status/crm_deal_status.json +#. Option for the 'Type' (Select) field in PageType 'CRM Deal Status' +#: crm/fcrm/pagetype/crm_deal_status/crm_deal_status.json msgid "Ongoing" msgstr "Pågående" @@ -4088,13 +4088,13 @@ msgstr "Pågående Affärer" msgid "Only image files are allowed" msgstr "Endast bildfiler är tillåtna" -#: crm/fcrm/doctype/crm_deal/crm_deal.py:60 -#: crm/fcrm/doctype/crm_telephony_agent/crm_telephony_agent.py:23 +#: crm/fcrm/pagetype/crm_deal/crm_deal.py:60 +#: crm/fcrm/pagetype/crm_telephony_agent/crm_telephony_agent.py:23 msgid "Only one {0} can be set as primary." msgstr "Endast en {0} kan anges som primär." -#. Option for the 'Type' (Select) field in DocType 'CRM Deal Status' -#: crm/fcrm/doctype/crm_deal_status/crm_deal_status.json +#. Option for the 'Type' (Select) field in PageType 'CRM Deal Status' +#: crm/fcrm/pagetype/crm_deal_status/crm_deal_status.json msgid "Open" msgstr "Öppen" @@ -4108,13 +4108,13 @@ msgstr "Öppna Affär" msgid "Open Lead" msgstr "Öppna Potentiell Kund" -#: crm/fcrm/doctype/crm_deal/crm_deal.js:6 -#: crm/fcrm/doctype/crm_lead/crm_lead.js:6 +#: crm/fcrm/pagetype/crm_deal/crm_deal.js:6 +#: crm/fcrm/pagetype/crm_lead/crm_lead.js:6 msgid "Open in Portal" msgstr "Öppna i Portalen" -#. Label of the open_in_new_window (Check) field in DocType 'CRM Dropdown Item' -#: crm/fcrm/doctype/crm_dropdown_item/crm_dropdown_item.json +#. Label of the open_in_new_window (Check) field in PageType 'CRM Dropdown Item' +#: crm/fcrm/pagetype/crm_dropdown_item/crm_dropdown_item.json msgid "Open in new window" msgstr "Öppna i nytt fönster" @@ -4136,17 +4136,17 @@ msgstr "Alternativ " msgid "Or create leads manually" msgstr "Eller skapa potentiella kunder manuellt" -#. Label of the order_by_tab (Tab Break) field in DocType 'CRM View Settings' -#. Label of the order_by (Code) field in DocType 'CRM View Settings' -#: crm/fcrm/doctype/crm_view_settings/crm_view_settings.json +#. Label of the order_by_tab (Tab Break) field in PageType 'CRM View Settings' +#. Label of the order_by (Code) field in PageType 'CRM View Settings' +#: crm/fcrm/pagetype/crm_view_settings/crm_view_settings.json msgid "Order By" msgstr "Sortera Efter" -#. Label of the organization (Link) field in DocType 'CRM Deal' -#. Label of the organization_tab (Tab Break) field in DocType 'CRM Deal' -#. Label of the organization (Data) field in DocType 'CRM Lead' -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_lead/crm_lead.json +#. Label of the organization (Link) field in PageType 'CRM Deal' +#. Label of the organization_tab (Tab Break) field in PageType 'CRM Deal' +#. Label of the organization (Data) field in PageType 'CRM Lead' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_lead/crm_lead.json #: frontend/src/components/Layouts/AppSidebar.vue:553 #: frontend/src/components/Modals/ConvertToDealModal.vue:25 #: frontend/src/pages/Contact.vue:494 frontend/src/pages/MobileContact.vue:502 @@ -4158,22 +4158,22 @@ msgstr "Sortera Efter" msgid "Organization" msgstr "Organisation" -#. Label of the organization_details_section (Section Break) field in DocType +#. Label of the organization_details_section (Section Break) field in PageType #. 'CRM Deal' -#: crm/fcrm/doctype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_deal/crm_deal.json msgid "Organization Details" msgstr "Organisation Detaljer" -#. Label of the organization_logo (Attach Image) field in DocType 'CRM +#. Label of the organization_logo (Attach Image) field in PageType 'CRM #. Organization' -#: crm/fcrm/doctype/crm_organization/crm_organization.json +#: crm/fcrm/pagetype/crm_organization/crm_organization.json msgid "Organization Logo" msgstr "Organisation Logotyp" -#. Label of the organization_name (Data) field in DocType 'CRM Deal' -#. Label of the organization_name (Data) field in DocType 'CRM Organization' -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_organization/crm_organization.json +#. Label of the organization_name (Data) field in PageType 'CRM Deal' +#. Label of the organization_name (Data) field in PageType 'CRM Organization' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_organization/crm_organization.json msgid "Organization Name" msgstr "Organisation Namn" @@ -4181,8 +4181,8 @@ msgstr "Organisation Namn" msgid "Organization logo" msgstr "Organisation Logotyp" -#. Label of a shortcut in the Frappe CRM Workspace -#: crm/fcrm/workspace/frappe_crm/frappe_crm.json +#. Label of a shortcut in the Jingrow CRM Workspace +#: crm/fcrm/workspace/jingrow_crm/jingrow_crm.json #: frontend/src/pages/MobileOrganization.vue:205 #: frontend/src/pages/Organization.vue:234 msgid "Organizations" @@ -4196,8 +4196,8 @@ msgstr "Organisatör" msgid "Other features" msgstr "Övriga funktioner" -#. Label of the organization_tab (Tab Break) field in DocType 'CRM Lead' -#: crm/fcrm/doctype/crm_lead/crm_lead.json +#. Label of the organization_tab (Tab Break) field in PageType 'CRM Lead' +#: crm/fcrm/pagetype/crm_lead/crm_lead.json msgid "Others" msgstr "Övriga" @@ -4205,13 +4205,13 @@ msgstr "Övriga" msgid "Outbound Call" msgstr "Utgående Samtal" -#. Option for the 'Type' (Select) field in DocType 'CRM Call Log' -#: crm/fcrm/doctype/crm_call_log/crm_call_log.json +#. Option for the 'Type' (Select) field in PageType 'CRM Call Log' +#: crm/fcrm/pagetype/crm_call_log/crm_call_log.json msgid "Outgoing" msgstr "Utgående" -#. Label of the log_owner (Link) field in DocType 'CRM Status Change Log' -#: crm/fcrm/doctype/crm_status_change_log/crm_status_change_log.json +#. Label of the log_owner (Link) field in PageType 'CRM Status Change Log' +#: crm/fcrm/pagetype/crm_status_change_log/crm_status_change_log.json msgid "Owner" msgstr "Ansvarig" @@ -4219,8 +4219,8 @@ msgstr "Ansvarig" msgid "Owner: {0}" msgstr "Ägare: {0}" -#. Label of the parent_crm_territory (Link) field in DocType 'CRM Territory' -#: crm/fcrm/doctype/crm_territory/crm_territory.json +#. Label of the parent_crm_territory (Link) field in PageType 'CRM Territory' +#: crm/fcrm/pagetype/crm_territory/crm_territory.json msgid "Parent CRM Territory" msgstr "Överordnat Distrikt" @@ -4251,8 +4251,8 @@ msgstr "Betalningspåminnelse" msgid "Payment Reminder from Frappé - (#{{ name }})" msgstr "Betalningspåminnelse från Frappé - (#{{ name }})" -#. Option for the 'Status' (Select) field in DocType 'CRM Invitation' -#: crm/fcrm/doctype/crm_invitation/crm_invitation.json +#. Option for the 'Status' (Select) field in PageType 'CRM Invitation' +#: crm/fcrm/pagetype/crm_invitation/crm_invitation.json msgid "Pending" msgstr "Pågående" @@ -4264,10 +4264,10 @@ msgstr "Väntande Inbjudningar" msgid "Period" msgstr "Period" -#. Label of the person_section (Section Break) field in DocType 'CRM Deal' -#. Label of the person_tab (Tab Break) field in DocType 'CRM Lead' -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_lead/crm_lead.json +#. Label of the person_section (Section Break) field in PageType 'CRM Deal' +#. Label of the person_tab (Tab Break) field in PageType 'CRM Lead' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_lead/crm_lead.json msgid "Person" msgstr "Person" @@ -4275,19 +4275,19 @@ msgstr "Person" msgid "Personal Settings" msgstr "Personliga Inställningar" -#. Label of the phone (Data) field in DocType 'CRM Contacts' -#. Label of the phone (Data) field in DocType 'CRM Lead' -#. Option for the 'Device' (Select) field in DocType 'CRM Telephony Agent' -#: crm/fcrm/doctype/crm_contacts/crm_contacts.json -#: crm/fcrm/doctype/crm_lead/crm_lead.json -#: crm/fcrm/doctype/crm_telephony_agent/crm_telephony_agent.json +#. Label of the phone (Data) field in PageType 'CRM Contacts' +#. Label of the phone (Data) field in PageType 'CRM Lead' +#. Option for the 'Device' (Select) field in PageType 'CRM Telephony Agent' +#: crm/fcrm/pagetype/crm_contacts/crm_contacts.json +#: crm/fcrm/pagetype/crm_lead/crm_lead.json +#: crm/fcrm/pagetype/crm_telephony_agent/crm_telephony_agent.json #: frontend/src/pages/MobileOrganization.vue:495 #: frontend/src/pages/Organization.vue:516 msgid "Phone" msgstr "Telefon" -#. Label of the phone_nos (Table) field in DocType 'CRM Telephony Agent' -#: crm/fcrm/doctype/crm_telephony_agent/crm_telephony_agent.json +#. Label of the phone_nos (Table) field in PageType 'CRM Telephony Agent' +#: crm/fcrm/pagetype/crm_telephony_agent/crm_telephony_agent.json msgid "Phone Numbers" msgstr "Telefonnummer" @@ -4295,8 +4295,8 @@ msgstr "Telefonnummer" msgid "Pin View" msgstr "Fäst Vy" -#. Label of the pinned (Check) field in DocType 'CRM View Settings' -#: crm/fcrm/doctype/crm_view_settings/crm_view_settings.json +#. Label of the pinned (Check) field in PageType 'CRM View Settings' +#: crm/fcrm/pagetype/crm_view_settings/crm_view_settings.json msgid "Pinned" msgstr "Fäst" @@ -4346,7 +4346,7 @@ msgstr "Välj befintlig kontakt" msgid "Please select an existing organization" msgstr "Välj befintlig organisation" -#: crm/fcrm/doctype/helpdesk_crm_settings/helpdesk_crm_settings.py:126 +#: crm/fcrm/pagetype/helpdesk_crm_settings/helpdesk_crm_settings.py:126 msgid "Please set Email Address" msgstr "Ange E-postadress" @@ -4354,18 +4354,18 @@ msgstr "Ange E-postadress" msgid "Please setup Exotel intergration" msgstr "Konfigurera Exotel Integration" -#: crm/fcrm/doctype/crm_deal/crm_deal.py:181 +#: crm/fcrm/pagetype/crm_deal/crm_deal.py:181 msgid "Please specify a reason for losing the deal." msgstr "Ange anledning till att affären förlorades." -#: crm/fcrm/doctype/crm_deal/crm_deal.py:183 +#: crm/fcrm/pagetype/crm_deal/crm_deal.py:183 msgid "Please specify the reason for losing the deal." msgstr "Ange anledning till att affären förlorades." -#. Label of the position (Int) field in DocType 'CRM Deal Status' -#. Label of the position (Int) field in DocType 'CRM Lead Status' -#: crm/fcrm/doctype/crm_deal_status/crm_deal_status.json -#: crm/fcrm/doctype/crm_lead_status/crm_lead_status.json +#. Label of the position (Int) field in PageType 'CRM Deal Status' +#. Label of the position (Int) field in PageType 'CRM Lead Status' +#: crm/fcrm/pagetype/crm_deal_status/crm_deal_status.json +#: crm/fcrm/pagetype/crm_lead_status/crm_lead_status.json msgid "Position" msgstr "Position" @@ -4373,18 +4373,18 @@ msgstr "Position" msgid "Primary" msgstr "Primär" -#. Label of the email (Data) field in DocType 'CRM Deal' -#: crm/fcrm/doctype/crm_deal/crm_deal.json +#. Label of the email (Data) field in PageType 'CRM Deal' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json msgid "Primary Email" msgstr "Primär E-post" -#. Label of the mobile_no (Data) field in DocType 'CRM Deal' -#: crm/fcrm/doctype/crm_deal/crm_deal.json +#. Label of the mobile_no (Data) field in PageType 'CRM Deal' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json msgid "Primary Mobile No" msgstr "Primär Mobil Nummer" -#. Label of the phone (Data) field in DocType 'CRM Deal' -#: crm/fcrm/doctype/crm_deal/crm_deal.json +#. Label of the phone (Data) field in PageType 'CRM Deal' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json msgid "Primary Phone" msgstr "Primär Telefon" @@ -4392,57 +4392,57 @@ msgstr "Primär Telefon" msgid "Primary contact set" msgstr "Primär kontakt angiven" -#. Label of the priorities (Table) field in DocType 'CRM Service Level +#. Label of the priorities (Table) field in PageType 'CRM Service Level #. Agreement' -#: crm/fcrm/doctype/crm_service_level_agreement/crm_service_level_agreement.json +#: crm/fcrm/pagetype/crm_service_level_agreement/crm_service_level_agreement.json msgid "Priorities" msgstr "Prioriteringar" -#. Label of the priority (Link) field in DocType 'CRM Service Level Priority' -#. Label of the priority (Select) field in DocType 'CRM Task' -#: crm/fcrm/doctype/crm_service_level_priority/crm_service_level_priority.json -#: crm/fcrm/doctype/crm_task/crm_task.json +#. Label of the priority (Link) field in PageType 'CRM Service Level Priority' +#. Label of the priority (Select) field in PageType 'CRM Task' +#: crm/fcrm/pagetype/crm_service_level_priority/crm_service_level_priority.json +#: crm/fcrm/pagetype/crm_task/crm_task.json #: frontend/src/components/Settings/AssignmentRules/AssignmentRuleView.vue:64 #: frontend/src/components/Settings/AssignmentRules/AssignmentRulesList.vue:20 msgid "Priority" msgstr "Prioritet" -#. Label of the private (Check) field in DocType 'CRM Dashboard' -#: crm/fcrm/doctype/crm_dashboard/crm_dashboard.json +#. Label of the private (Check) field in PageType 'CRM Dashboard' +#: crm/fcrm/pagetype/crm_dashboard/crm_dashboard.json #: frontend/src/components/FilesUploader/FilesUploaderArea.vue:89 msgid "Private" msgstr "Privat" -#. Label of the probability (Percent) field in DocType 'CRM Deal' -#. Label of the probability (Percent) field in DocType 'CRM Deal Status' -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_deal_status/crm_deal_status.json +#. Label of the probability (Percent) field in PageType 'CRM Deal' +#. Label of the probability (Percent) field in PageType 'CRM Deal Status' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_deal_status/crm_deal_status.json msgid "Probability" msgstr "Sannolikhet" -#. Label of the product_code (Link) field in DocType 'CRM Products' -#: crm/fcrm/doctype/crm_products/crm_products.json +#. Label of the product_code (Link) field in PageType 'CRM Products' +#: crm/fcrm/pagetype/crm_products/crm_products.json msgid "Product" msgstr "Artikel" -#. Label of the product_code (Data) field in DocType 'CRM Product' -#: crm/fcrm/doctype/crm_product/crm_product.json +#. Label of the product_code (Data) field in PageType 'CRM Product' +#: crm/fcrm/pagetype/crm_product/crm_product.json msgid "Product Code" msgstr "Artikelkod" -#. Label of the product_name (Data) field in DocType 'CRM Product' -#. Label of the product_name (Data) field in DocType 'CRM Products' -#: crm/fcrm/doctype/crm_product/crm_product.json -#: crm/fcrm/doctype/crm_products/crm_products.json +#. Label of the product_name (Data) field in PageType 'CRM Product' +#. Label of the product_name (Data) field in PageType 'CRM Products' +#: crm/fcrm/pagetype/crm_product/crm_product.json +#: crm/fcrm/pagetype/crm_products/crm_products.json msgid "Product Name" msgstr "Artikelnamn" -#. Label of the products_tab (Tab Break) field in DocType 'CRM Deal' -#. Label of the products (Table) field in DocType 'CRM Deal' -#. Label of the products_tab (Tab Break) field in DocType 'CRM Lead' -#. Label of the products (Table) field in DocType 'CRM Lead' -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_lead/crm_lead.json +#. Label of the products_tab (Tab Break) field in PageType 'CRM Deal' +#. Label of the products (Table) field in PageType 'CRM Deal' +#. Label of the products_tab (Tab Break) field in PageType 'CRM Lead' +#. Label of the products (Table) field in PageType 'CRM Lead' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_lead/crm_lead.json msgid "Products" msgstr "Artiklar" @@ -4459,8 +4459,8 @@ msgstr "Profil uppdaterad" msgid "Projected vs actual revenue based on deal probability" msgstr "Prognostiserade kontra faktiska intäkter baserat på affärssannolikhet" -#. Label of the public (Check) field in DocType 'CRM View Settings' -#: crm/fcrm/doctype/crm_view_settings/crm_view_settings.json +#. Label of the public (Check) field in PageType 'CRM View Settings' +#: crm/fcrm/pagetype/crm_view_settings/crm_view_settings.json msgid "Public" msgstr "Allmän" @@ -4472,23 +4472,23 @@ msgstr "Offentliga Vyer" msgid "Public view" msgstr "Allmän Vy" -#. Label of the qty (Float) field in DocType 'CRM Products' -#: crm/fcrm/doctype/crm_products/crm_products.json +#. Label of the qty (Float) field in PageType 'CRM Products' +#: crm/fcrm/pagetype/crm_products/crm_products.json msgid "Quantity" msgstr "Kvantitet" -#. Option for the 'Status' (Select) field in DocType 'CRM Call Log' -#: crm/fcrm/doctype/crm_call_log/crm_call_log.json +#. Option for the 'Status' (Select) field in PageType 'CRM Call Log' +#: crm/fcrm/pagetype/crm_call_log/crm_call_log.json msgid "Queued" msgstr "I Kö" -#. Option for the 'Type' (Select) field in DocType 'CRM Fields Layout' -#: crm/fcrm/doctype/crm_fields_layout/crm_fields_layout.json +#. Option for the 'Type' (Select) field in PageType 'CRM Fields Layout' +#: crm/fcrm/pagetype/crm_fields_layout/crm_fields_layout.json msgid "Quick Entry" msgstr "Snabb Post" -#. Option for the 'Type' (Select) field in DocType 'CRM Global Settings' -#: crm/fcrm/doctype/crm_global_settings/crm_global_settings.json +#. Option for the 'Type' (Select) field in PageType 'CRM Global Settings' +#: crm/fcrm/pagetype/crm_global_settings/crm_global_settings.json msgid "Quick Filters" msgstr "Snabb Filter" @@ -4500,13 +4500,13 @@ msgstr "Snabbfilter uppdaterade" msgid "Quick entry layout" msgstr "Snabb Post Utseende" -#. Label of the rate (Currency) field in DocType 'CRM Products' -#: crm/fcrm/doctype/crm_products/crm_products.json +#. Label of the rate (Currency) field in PageType 'CRM Products' +#: crm/fcrm/pagetype/crm_products/crm_products.json msgid "Rate" msgstr "Pris" -#. Label of the read (Check) field in DocType 'CRM Notification' -#: crm/fcrm/doctype/crm_notification/crm_notification.json +#. Label of the read (Check) field in PageType 'CRM Notification' +#: crm/fcrm/pagetype/crm_notification/crm_notification.json msgid "Read" msgstr "Läsa" @@ -4514,48 +4514,48 @@ msgstr "Läsa" msgid "Reason" msgstr "Anledning" -#. Label of the record_calls (Check) field in DocType 'CRM Twilio Settings' -#: crm/fcrm/doctype/crm_twilio_settings/crm_twilio_settings.json +#. Label of the record_calls (Check) field in PageType 'CRM Twilio Settings' +#: crm/fcrm/pagetype/crm_twilio_settings/crm_twilio_settings.json msgid "Record Calls" msgstr "Spela in Samtal" -#. Label of the record_call (Check) field in DocType 'CRM Exotel Settings' -#: crm/fcrm/doctype/crm_exotel_settings/crm_exotel_settings.json +#. Label of the record_call (Check) field in PageType 'CRM Exotel Settings' +#: crm/fcrm/pagetype/crm_exotel_settings/crm_exotel_settings.json msgid "Record Outgoing Calls" msgstr "Spela in Utgående Samtal" -#. Label of the recording_url (Data) field in DocType 'CRM Call Log' -#: crm/fcrm/doctype/crm_call_log/crm_call_log.json +#. Label of the recording_url (Data) field in PageType 'CRM Call Log' +#: crm/fcrm/pagetype/crm_call_log/crm_call_log.json msgid "Recording URL" msgstr "Inspelning URL" -#. Label of the reference_name (Dynamic Link) field in DocType 'CRM +#. Label of the reference_name (Dynamic Link) field in PageType 'CRM #. Notification' -#. Label of the reference_docname (Dynamic Link) field in DocType 'CRM Task' -#. Label of the reference_docname (Dynamic Link) field in DocType 'FCRM Note' -#: crm/fcrm/doctype/crm_notification/crm_notification.json -#: crm/fcrm/doctype/crm_task/crm_task.json -#: crm/fcrm/doctype/fcrm_note/fcrm_note.json -msgid "Reference Doc" +#. Label of the reference_docname (Dynamic Link) field in PageType 'CRM Task' +#. Label of the reference_docname (Dynamic Link) field in PageType 'FCRM Note' +#: crm/fcrm/pagetype/crm_notification/crm_notification.json +#: crm/fcrm/pagetype/crm_task/crm_task.json +#: crm/fcrm/pagetype/fcrm_note/fcrm_note.json +msgid "Reference Pg" msgstr "Referens Dokument" -#. Label of the reference_doctype (Link) field in DocType 'CRM Notification' -#: crm/fcrm/doctype/crm_notification/crm_notification.json -msgid "Reference Doctype" -msgstr "Referens DocType" +#. Label of the reference_pagetype (Link) field in PageType 'CRM Notification' +#: crm/fcrm/pagetype/crm_notification/crm_notification.json +msgid "Reference Pagetype" +msgstr "Referens PageType" -#. Label of the reference_doctype (Link) field in DocType 'CRM Call Log' -#. Label of the reference_doctype (Link) field in DocType 'CRM Task' -#. Label of the reference_doctype (Link) field in DocType 'FCRM Note' -#: crm/fcrm/doctype/crm_call_log/crm_call_log.json -#: crm/fcrm/doctype/crm_task/crm_task.json -#: crm/fcrm/doctype/fcrm_note/fcrm_note.json +#. Label of the reference_pagetype (Link) field in PageType 'CRM Call Log' +#. Label of the reference_pagetype (Link) field in PageType 'CRM Task' +#. Label of the reference_pagetype (Link) field in PageType 'FCRM Note' +#: crm/fcrm/pagetype/crm_call_log/crm_call_log.json +#: crm/fcrm/pagetype/crm_task/crm_task.json +#: crm/fcrm/pagetype/fcrm_note/fcrm_note.json msgid "Reference Document Type" msgstr "Referens Dokument Typ" -#. Label of the reference_docname (Dynamic Link) field in DocType 'CRM Call +#. Label of the reference_docname (Dynamic Link) field in PageType 'CRM Call #. Log' -#: crm/fcrm/doctype/crm_call_log/crm_call_log.json +#: crm/fcrm/pagetype/crm_call_log/crm_call_log.json msgid "Reference Name" msgstr "Referens Namn" @@ -4625,8 +4625,8 @@ msgstr "Svara Alla" msgid "Report an Issue" msgstr "Rapportera Ärende" -#. Option for the 'Type' (Select) field in DocType 'CRM Fields Layout' -#: crm/fcrm/doctype/crm_fields_layout/crm_fields_layout.json +#. Option for the 'Type' (Select) field in PageType 'CRM Fields Layout' +#: crm/fcrm/pagetype/crm_fields_layout/crm_fields_layout.json msgid "Required Fields" msgstr "Erfordrade Fält" @@ -4642,7 +4642,7 @@ msgstr "Återställ" msgid "Reset Changes" msgstr "Återställ ändringar" -#: crm/fcrm/doctype/erpnext_crm_settings/erpnext_crm_settings.js:7 +#: crm/fcrm/pagetype/erpnext_crm_settings/erpnext_crm_settings.js:7 msgid "Reset ERPNext Form Script" msgstr "Återställ Affärssystem Formulär Script" @@ -4654,35 +4654,35 @@ msgstr "Återställ till Standard" msgid "Reset to default" msgstr "Återställ Standard" -#. Label of the response_by (Datetime) field in DocType 'CRM Deal' -#. Label of the response_by (Datetime) field in DocType 'CRM Lead' -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_lead/crm_lead.json +#. Label of the response_by (Datetime) field in PageType 'CRM Deal' +#. Label of the response_by (Datetime) field in PageType 'CRM Lead' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_lead/crm_lead.json msgid "Response By" msgstr "Svar Efter" -#. Label of the response_details_section (Section Break) field in DocType 'CRM +#. Label of the response_details_section (Section Break) field in PageType 'CRM #. Deal' -#. Label of the response_details_section (Section Break) field in DocType 'CRM +#. Label of the response_details_section (Section Break) field in PageType 'CRM #. Lead' -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_lead/crm_lead.json +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_lead/crm_lead.json msgid "Response Details" msgstr "Svar Information" -#. Label of the section_break_ufaf (Section Break) field in DocType 'CRM +#. Label of the section_break_ufaf (Section Break) field in PageType 'CRM #. Service Level Agreement' -#: crm/fcrm/doctype/crm_service_level_agreement/crm_service_level_agreement.json +#: crm/fcrm/pagetype/crm_service_level_agreement/crm_service_level_agreement.json msgid "Response and Follow Up" msgstr "Svar och Uppföljning" -#: crm/fcrm/doctype/fcrm_settings/fcrm_settings.js:14 +#: crm/fcrm/pagetype/fcrm_settings/fcrm_settings.js:14 msgid "Restore" msgstr "Återställ" -#. Label of the restore_defaults (Button) field in DocType 'FCRM Settings' -#: crm/fcrm/doctype/fcrm_settings/fcrm_settings.js:13 -#: crm/fcrm/doctype/fcrm_settings/fcrm_settings.json +#. Label of the restore_defaults (Button) field in PageType 'FCRM Settings' +#: crm/fcrm/pagetype/fcrm_settings/fcrm_settings.js:13 +#: crm/fcrm/pagetype/fcrm_settings/fcrm_settings.json msgid "Restore Defaults" msgstr "Återställ Standardvärden" @@ -4699,13 +4699,13 @@ msgstr "Intäkt" msgid "Rich Text" msgstr "Rich Text " -#. Label of the rgt (Int) field in DocType 'CRM Territory' -#: crm/fcrm/doctype/crm_territory/crm_territory.json +#. Label of the rgt (Int) field in PageType 'CRM Territory' +#: crm/fcrm/pagetype/crm_territory/crm_territory.json msgid "Right" msgstr "Höger" -#. Option for the 'Status' (Select) field in DocType 'CRM Call Log' -#: crm/fcrm/doctype/crm_call_log/crm_call_log.json +#. Option for the 'Status' (Select) field in PageType 'CRM Call Log' +#: crm/fcrm/pagetype/crm_call_log/crm_call_log.json msgid "Ringing" msgstr "Ringer" @@ -4714,55 +4714,55 @@ msgstr "Ringer" msgid "Ringing..." msgstr "Ringer..." -#. Label of the role (Select) field in DocType 'CRM Invitation' -#: crm/fcrm/doctype/crm_invitation/crm_invitation.json +#. Label of the role (Select) field in PageType 'CRM Invitation' +#: crm/fcrm/pagetype/crm_invitation/crm_invitation.json #: frontend/src/components/Modals/AddExistingUserModal.vue:46 msgid "Role" msgstr "Roll" -#. Option for the 'Type' (Select) field in DocType 'CRM Dropdown Item' -#. Label of the route (Data) field in DocType 'CRM Dropdown Item' -#: crm/fcrm/doctype/crm_dropdown_item/crm_dropdown_item.json +#. Option for the 'Type' (Select) field in PageType 'CRM Dropdown Item' +#. Label of the route (Data) field in PageType 'CRM Dropdown Item' +#: crm/fcrm/pagetype/crm_dropdown_item/crm_dropdown_item.json msgid "Route" msgstr "Sökväg" -#. Label of the route_name (Data) field in DocType 'CRM View Settings' -#: crm/fcrm/doctype/crm_view_settings/crm_view_settings.json +#. Label of the route_name (Data) field in PageType 'CRM View Settings' +#: crm/fcrm/pagetype/crm_view_settings/crm_view_settings.json msgid "Route Name" msgstr "Ruttnamn" -#. Label of the rows (Code) field in DocType 'CRM View Settings' -#: crm/fcrm/doctype/crm_view_settings/crm_view_settings.json +#. Label of the rows (Code) field in PageType 'CRM View Settings' +#: crm/fcrm/pagetype/crm_view_settings/crm_view_settings.json msgid "Rows" msgstr "Rader" -#. Label of the sla_tab (Tab Break) field in DocType 'CRM Deal' -#. Label of the sla (Link) field in DocType 'CRM Deal' -#. Label of the sla_tab (Tab Break) field in DocType 'CRM Lead' -#. Label of the sla (Link) field in DocType 'CRM Lead' -#. Label of a shortcut in the Frappe CRM Workspace -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_lead/crm_lead.json -#: crm/fcrm/workspace/frappe_crm/frappe_crm.json +#. Label of the sla_tab (Tab Break) field in PageType 'CRM Deal' +#. Label of the sla (Link) field in PageType 'CRM Deal' +#. Label of the sla_tab (Tab Break) field in PageType 'CRM Lead' +#. Label of the sla (Link) field in PageType 'CRM Lead' +#. Label of a shortcut in the Jingrow CRM Workspace +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_lead/crm_lead.json +#: crm/fcrm/workspace/jingrow_crm/jingrow_crm.json msgid "SLA" msgstr "Service Nivå Avtal" -#. Label of the sla_creation (Datetime) field in DocType 'CRM Deal' -#. Label of the sla_creation (Datetime) field in DocType 'CRM Lead' -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_lead/crm_lead.json +#. Label of the sla_creation (Datetime) field in PageType 'CRM Deal' +#. Label of the sla_creation (Datetime) field in PageType 'CRM Lead' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_lead/crm_lead.json msgid "SLA Creation" msgstr "Skapande av Service Nivå Avtal" -#. Label of the sla_name (Data) field in DocType 'CRM Service Level Agreement' -#: crm/fcrm/doctype/crm_service_level_agreement/crm_service_level_agreement.json +#. Label of the sla_name (Data) field in PageType 'CRM Service Level Agreement' +#: crm/fcrm/pagetype/crm_service_level_agreement/crm_service_level_agreement.json msgid "SLA Name" msgstr "Service Nivå Avtal Benämning" -#. Label of the sla_status (Select) field in DocType 'CRM Deal' -#. Label of the sla_status (Select) field in DocType 'CRM Lead' -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_lead/crm_lead.json +#. Label of the sla_status (Select) field in PageType 'CRM Deal' +#. Label of the sla_status (Select) field in PageType 'CRM Lead' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_lead/crm_lead.json msgid "SLA Status" msgstr "Service Nivå Avtal Status" @@ -4771,57 +4771,57 @@ msgid "SUBJECT" msgstr "ÄMNE" #. Name of a role -#. Option for the 'Role' (Select) field in DocType 'CRM Invitation' -#: crm/fcrm/doctype/crm_call_log/crm_call_log.json -#: crm/fcrm/doctype/crm_communication_status/crm_communication_status.json -#: crm/fcrm/doctype/crm_dashboard/crm_dashboard.json -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_deal_status/crm_deal_status.json -#: crm/fcrm/doctype/crm_exotel_settings/crm_exotel_settings.json -#: crm/fcrm/doctype/crm_form_script/crm_form_script.json -#: crm/fcrm/doctype/crm_global_settings/crm_global_settings.json -#: crm/fcrm/doctype/crm_holiday_list/crm_holiday_list.json -#: crm/fcrm/doctype/crm_industry/crm_industry.json -#: crm/fcrm/doctype/crm_invitation/crm_invitation.json -#: crm/fcrm/doctype/crm_lead/crm_lead.json -#: crm/fcrm/doctype/crm_lead_source/crm_lead_source.json -#: crm/fcrm/doctype/crm_lead_status/crm_lead_status.json -#: crm/fcrm/doctype/crm_lost_reason/crm_lost_reason.json -#: crm/fcrm/doctype/crm_notification/crm_notification.json -#: crm/fcrm/doctype/crm_organization/crm_organization.json -#: crm/fcrm/doctype/crm_service_level_agreement/crm_service_level_agreement.json -#: crm/fcrm/doctype/crm_task/crm_task.json -#: crm/fcrm/doctype/crm_territory/crm_territory.json -#: crm/fcrm/doctype/crm_twilio_settings/crm_twilio_settings.json -#: crm/fcrm/doctype/crm_view_settings/crm_view_settings.json -#: crm/fcrm/doctype/erpnext_crm_settings/erpnext_crm_settings.json -#: crm/fcrm/doctype/fcrm_note/fcrm_note.json -#: crm/fcrm/doctype/fcrm_settings/fcrm_settings.json -#: crm/fcrm/doctype/helpdesk_crm_settings/helpdesk_crm_settings.json +#. Option for the 'Role' (Select) field in PageType 'CRM Invitation' +#: crm/fcrm/pagetype/crm_call_log/crm_call_log.json +#: crm/fcrm/pagetype/crm_communication_status/crm_communication_status.json +#: crm/fcrm/pagetype/crm_dashboard/crm_dashboard.json +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_deal_status/crm_deal_status.json +#: crm/fcrm/pagetype/crm_exotel_settings/crm_exotel_settings.json +#: crm/fcrm/pagetype/crm_form_script/crm_form_script.json +#: crm/fcrm/pagetype/crm_global_settings/crm_global_settings.json +#: crm/fcrm/pagetype/crm_holiday_list/crm_holiday_list.json +#: crm/fcrm/pagetype/crm_industry/crm_industry.json +#: crm/fcrm/pagetype/crm_invitation/crm_invitation.json +#: crm/fcrm/pagetype/crm_lead/crm_lead.json +#: crm/fcrm/pagetype/crm_lead_source/crm_lead_source.json +#: crm/fcrm/pagetype/crm_lead_status/crm_lead_status.json +#: crm/fcrm/pagetype/crm_lost_reason/crm_lost_reason.json +#: crm/fcrm/pagetype/crm_notification/crm_notification.json +#: crm/fcrm/pagetype/crm_organization/crm_organization.json +#: crm/fcrm/pagetype/crm_service_level_agreement/crm_service_level_agreement.json +#: crm/fcrm/pagetype/crm_task/crm_task.json +#: crm/fcrm/pagetype/crm_territory/crm_territory.json +#: crm/fcrm/pagetype/crm_twilio_settings/crm_twilio_settings.json +#: crm/fcrm/pagetype/crm_view_settings/crm_view_settings.json +#: crm/fcrm/pagetype/erpnext_crm_settings/erpnext_crm_settings.json +#: crm/fcrm/pagetype/fcrm_note/fcrm_note.json +#: crm/fcrm/pagetype/fcrm_settings/fcrm_settings.json +#: crm/fcrm/pagetype/helpdesk_crm_settings/helpdesk_crm_settings.json msgid "Sales Manager" msgstr "Försäljning Ansvarig" #. Name of a role -#. Option for the 'Role' (Select) field in DocType 'CRM Invitation' -#: crm/fcrm/doctype/crm_call_log/crm_call_log.json -#: crm/fcrm/doctype/crm_communication_status/crm_communication_status.json -#: crm/fcrm/doctype/crm_dashboard/crm_dashboard.json -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_deal_status/crm_deal_status.json -#: crm/fcrm/doctype/crm_global_settings/crm_global_settings.json -#: crm/fcrm/doctype/crm_holiday_list/crm_holiday_list.json -#: crm/fcrm/doctype/crm_industry/crm_industry.json -#: crm/fcrm/doctype/crm_invitation/crm_invitation.json -#: crm/fcrm/doctype/crm_lead/crm_lead.json -#: crm/fcrm/doctype/crm_lead_source/crm_lead_source.json -#: crm/fcrm/doctype/crm_lead_status/crm_lead_status.json -#: crm/fcrm/doctype/crm_lost_reason/crm_lost_reason.json -#: crm/fcrm/doctype/crm_notification/crm_notification.json -#: crm/fcrm/doctype/crm_organization/crm_organization.json -#: crm/fcrm/doctype/crm_task/crm_task.json -#: crm/fcrm/doctype/crm_territory/crm_territory.json -#: crm/fcrm/doctype/crm_view_settings/crm_view_settings.json -#: crm/fcrm/doctype/fcrm_note/fcrm_note.json +#. Option for the 'Role' (Select) field in PageType 'CRM Invitation' +#: crm/fcrm/pagetype/crm_call_log/crm_call_log.json +#: crm/fcrm/pagetype/crm_communication_status/crm_communication_status.json +#: crm/fcrm/pagetype/crm_dashboard/crm_dashboard.json +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_deal_status/crm_deal_status.json +#: crm/fcrm/pagetype/crm_global_settings/crm_global_settings.json +#: crm/fcrm/pagetype/crm_holiday_list/crm_holiday_list.json +#: crm/fcrm/pagetype/crm_industry/crm_industry.json +#: crm/fcrm/pagetype/crm_invitation/crm_invitation.json +#: crm/fcrm/pagetype/crm_lead/crm_lead.json +#: crm/fcrm/pagetype/crm_lead_source/crm_lead_source.json +#: crm/fcrm/pagetype/crm_lead_status/crm_lead_status.json +#: crm/fcrm/pagetype/crm_lost_reason/crm_lost_reason.json +#: crm/fcrm/pagetype/crm_notification/crm_notification.json +#: crm/fcrm/pagetype/crm_organization/crm_organization.json +#: crm/fcrm/pagetype/crm_task/crm_task.json +#: crm/fcrm/pagetype/crm_territory/crm_territory.json +#: crm/fcrm/pagetype/crm_view_settings/crm_view_settings.json +#: crm/fcrm/pagetype/fcrm_note/fcrm_note.json #: frontend/src/components/Modals/AddExistingUserModal.vue:92 #: frontend/src/components/Settings/InviteUserPage.vue:156 #: frontend/src/components/Settings/InviteUserPage.vue:163 @@ -4845,17 +4845,17 @@ msgstr "Försäljning Användare" msgid "Salesperson" msgstr "Säljare" -#. Label of the salutation (Link) field in DocType 'CRM Deal' -#. Label of the salutation (Link) field in DocType 'CRM Lead' -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_lead/crm_lead.json +#. Label of the salutation (Link) field in PageType 'CRM Deal' +#. Label of the salutation (Link) field in PageType 'CRM Lead' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_lead/crm_lead.json msgid "Salutation" msgstr "Tilltal" -#. Option for the 'Weekly Off' (Select) field in DocType 'CRM Holiday List' -#. Option for the 'Workday' (Select) field in DocType 'CRM Service Day' -#: crm/fcrm/doctype/crm_holiday_list/crm_holiday_list.json -#: crm/fcrm/doctype/crm_service_day/crm_service_day.json +#. Option for the 'Weekly Off' (Select) field in PageType 'CRM Holiday List' +#. Option for the 'Workday' (Select) field in PageType 'CRM Service Day' +#: crm/fcrm/pagetype/crm_holiday_list/crm_holiday_list.json +#: crm/fcrm/pagetype/crm_service_day/crm_service_day.json msgid "Saturday" msgstr "Lördag" @@ -4904,8 +4904,8 @@ msgstr "Schemalägg Händelse" msgid "Schedule an event" msgstr "Schemalägg händelse" -#. Label of the script (Code) field in DocType 'CRM Form Script' -#: crm/fcrm/doctype/crm_form_script/crm_form_script.json +#. Label of the script (Code) field in PageType 'CRM Form Script' +#: crm/fcrm/pagetype/crm_form_script/crm_form_script.json msgid "Script" msgstr "Skript" @@ -4973,18 +4973,18 @@ msgstr "Skicka e-post" msgid "Send invites to" msgstr "Skicka inbjudan till" -#. Option for the 'Type' (Select) field in DocType 'CRM Dropdown Item' -#: crm/fcrm/doctype/crm_dropdown_item/crm_dropdown_item.json +#. Option for the 'Type' (Select) field in PageType 'CRM Dropdown Item' +#: crm/fcrm/pagetype/crm_dropdown_item/crm_dropdown_item.json msgid "Separator" msgstr "Separator" -#. Label of the naming_series (Select) field in DocType 'CRM Lead' -#: crm/fcrm/doctype/crm_lead/crm_lead.json +#. Label of the naming_series (Select) field in PageType 'CRM Lead' +#: crm/fcrm/pagetype/crm_lead/crm_lead.json msgid "Series" msgstr "Namngivning Serie" -#. Label of the service_provider (Select) field in DocType 'FCRM Settings' -#: crm/fcrm/doctype/fcrm_settings/fcrm_settings.json +#. Label of the service_provider (Select) field in PageType 'FCRM Settings' +#: crm/fcrm/pagetype/fcrm_settings/fcrm_settings.json msgid "Service Provider" msgstr "Service Leverantör" @@ -5029,8 +5029,8 @@ msgid "Setting up" msgstr "Konfigurera" #: frontend/src/components/Settings/emailConfig.js:145 -msgid "Setting up Frappe Mail requires you to have an API key and API Secret of your email account. Read more " -msgstr "För att konfigurera Frappe Mail erfordras API Nyckel och API Hemlighet för e-postkonto. Läs mer om Frappe Mail " +msgid "Setting up Jingrow Mail requires you to have an API key and API Secret of your email account. Read more " +msgstr "För att konfigurera Jingrow Mail erfordras API Nyckel och API Hemlighet för e-postkonto. Läs mer om Jingrow Mail " #: frontend/src/components/Settings/emailConfig.js:97 msgid "Setting up GMail requires you to enable two factor authentication\n" @@ -5068,8 +5068,8 @@ msgid "Setting up Yandex requires you to enable two factor authentication\n" msgstr "För att konfigurera Yandex erfordras aktivering av tvåfaktorsautentisering\n" "\t\t och appspecifika lösenord. Läs mer " -#. Label of the defaults_tab (Tab Break) field in DocType 'FCRM Settings' -#: crm/fcrm/doctype/fcrm_settings/fcrm_settings.json +#. Label of the defaults_tab (Tab Break) field in PageType 'FCRM Settings' +#: crm/fcrm/pagetype/fcrm_settings/fcrm_settings.json #: frontend/src/components/Layouts/AppSidebar.vue:537 #: frontend/src/components/Settings/Settings.vue:12 msgid "Settings" @@ -5079,7 +5079,7 @@ msgstr "Inställningar" msgid "Setup Email" msgstr "Konfigurera e-post" -#: crm/fcrm/doctype/fcrm_settings/fcrm_settings.py:199 +#: crm/fcrm/pagetype/fcrm_settings/fcrm_settings.py:199 msgid "Setup the Exchange Rate Provider as 'Exchangerate Host' in settings, as default provider does not support currency conversion for {0} to {1}." msgstr "Ange Växelkurs Leverantör som \"Valuta Växling Leverantör\" i inställningar, eftersom standard leverantör inte stöder valutakonvertering från {0} till {1}." @@ -5114,21 +5114,21 @@ msgstr "Visa mindre" msgid "Show preview" msgstr "Visa förhandsvisning" -#. Option for the 'Type' (Select) field in DocType 'CRM Fields Layout' -#: crm/fcrm/doctype/crm_fields_layout/crm_fields_layout.json +#. Option for the 'Type' (Select) field in PageType 'CRM Fields Layout' +#: crm/fcrm/pagetype/crm_fields_layout/crm_fields_layout.json msgid "Side Panel" msgstr "Sidopanel" -#. Option for the 'Type' (Select) field in DocType 'CRM Global Settings' -#: crm/fcrm/doctype/crm_global_settings/crm_global_settings.json +#. Option for the 'Type' (Select) field in PageType 'CRM Global Settings' +#: crm/fcrm/pagetype/crm_global_settings/crm_global_settings.json msgid "Sidebar Items" msgstr "Sidofält Element" -#. Description of the 'Condition' (Code) field in DocType 'CRM Service Level +#. Description of the 'Condition' (Code) field in PageType 'CRM Service Level #. Agreement' -#: crm/fcrm/doctype/crm_service_level_agreement/crm_service_level_agreement.json -msgid "Simple Python Expression, Example: doc.status == 'Open' and doc.lead_source == 'Ads'" -msgstr "Enkelt Python Uttryck, Exempel: doc.status == 'Open' och doc.lead_source == 'Ads'" +#: crm/fcrm/pagetype/crm_service_level_agreement/crm_service_level_agreement.json +msgid "Simple Python Expression, Example: pg.status == 'Open' and pg.lead_source == 'Ads'" +msgstr "Enkelt Python Uttryck, Exempel: pg.status == 'Open' och pg.lead_source == 'Ads'" #: frontend/src/components/AssignTo.vue:83 msgid "Since you removed {0} from the assignee, the {0} has also been removed." @@ -5151,16 +5151,16 @@ msgstr "Ett fel uppstod när tilldelningsregeln uppdaterades" msgid "Sort" msgstr "Sortera" -#. Label of the source (Link) field in DocType 'CRM Deal' -#. Label of the source (Link) field in DocType 'CRM Lead' -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_lead/crm_lead.json +#. Label of the source (Link) field in PageType 'CRM Deal' +#. Label of the source (Link) field in PageType 'CRM Lead' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_lead/crm_lead.json #: frontend/src/components/Modals/EditValueModal.vue:10 msgid "Source" msgstr "Från" -#. Label of the source_name (Data) field in DocType 'CRM Lead Source' -#: crm/fcrm/doctype/crm_lead_source/crm_lead_source.json +#. Label of the source_name (Data) field in PageType 'CRM Lead Source' +#: crm/fcrm/pagetype/crm_lead_source/crm_lead_source.json msgid "Source Name" msgstr "Käll Namn" @@ -5173,12 +5173,12 @@ msgstr "Mellanrum" msgid "Stage" msgstr "Fas" -#: crm/fcrm/doctype/crm_form_script/crm_form_script.js:15 +#: crm/fcrm/pagetype/crm_form_script/crm_form_script.js:15 msgid "Standard Form Scripts can not be modified, duplicate the Form Script instead." msgstr "Standard Formulär Skript kan inte ändras, kopiera Formulär Skript istället." -#. Label of the standard_rate (Currency) field in DocType 'CRM Product' -#: crm/fcrm/doctype/crm_product/crm_product.json +#. Label of the standard_rate (Currency) field in PageType 'CRM Product' +#: crm/fcrm/pagetype/crm_product/crm_product.json msgid "Standard Selling Rate" msgstr "Standard Försäljning Pris" @@ -5186,18 +5186,18 @@ msgstr "Standard Försäljning Pris" msgid "Standard Views" msgstr "Standard Vyer" -#. Label of the start_date (Date) field in DocType 'CRM Service Level +#. Label of the start_date (Date) field in PageType 'CRM Service Level #. Agreement' -#. Label of the start_date (Date) field in DocType 'CRM Task' -#: crm/fcrm/doctype/crm_service_level_agreement/crm_service_level_agreement.json -#: crm/fcrm/doctype/crm_task/crm_task.json +#. Label of the start_date (Date) field in PageType 'CRM Task' +#: crm/fcrm/pagetype/crm_service_level_agreement/crm_service_level_agreement.json +#: crm/fcrm/pagetype/crm_task/crm_task.json msgid "Start Date" msgstr "Start Datum" -#. Label of the start_time (Datetime) field in DocType 'CRM Call Log' -#. Label of the start_time (Time) field in DocType 'CRM Service Day' -#: crm/fcrm/doctype/crm_call_log/crm_call_log.json -#: crm/fcrm/doctype/crm_service_day/crm_service_day.json +#. Label of the start_time (Datetime) field in PageType 'CRM Call Log' +#. Label of the start_time (Time) field in PageType 'CRM Service Day' +#: crm/fcrm/pagetype/crm_call_log/crm_call_log.json +#: crm/fcrm/pagetype/crm_service_day/crm_service_day.json #: frontend/src/components/Calendar/CalendarEventPanel.vue:234 #: frontend/src/components/Modals/EventModal.vue:103 msgid "Start Time" @@ -5211,32 +5211,32 @@ msgstr "Start och sluttid erfordras" msgid "Start with sample 10 leads" msgstr "Börja med exempel på 10 potentiella kunder" -#. Label of the status (Select) field in DocType 'CRM Call Log' -#. Label of the status (Data) field in DocType 'CRM Communication Status' -#. Label of the status (Link) field in DocType 'CRM Deal' -#. Label of the deal_status (Data) field in DocType 'CRM Deal Status' -#. Label of the status (Select) field in DocType 'CRM Invitation' -#. Label of the status (Link) field in DocType 'CRM Lead' -#. Label of the lead_status (Data) field in DocType 'CRM Lead Status' -#. Label of the status (Select) field in DocType 'CRM Task' -#: crm/fcrm/doctype/crm_call_log/crm_call_log.json -#: crm/fcrm/doctype/crm_communication_status/crm_communication_status.json -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_deal_status/crm_deal_status.json -#: crm/fcrm/doctype/crm_invitation/crm_invitation.json -#: crm/fcrm/doctype/crm_lead/crm_lead.json -#: crm/fcrm/doctype/crm_lead_status/crm_lead_status.json -#: crm/fcrm/doctype/crm_task/crm_task.json frontend/src/pages/Contact.vue:505 +#. Label of the status (Select) field in PageType 'CRM Call Log' +#. Label of the status (Data) field in PageType 'CRM Communication Status' +#. Label of the status (Link) field in PageType 'CRM Deal' +#. Label of the deal_status (Data) field in PageType 'CRM Deal Status' +#. Label of the status (Select) field in PageType 'CRM Invitation' +#. Label of the status (Link) field in PageType 'CRM Lead' +#. Label of the lead_status (Data) field in PageType 'CRM Lead Status' +#. Label of the status (Select) field in PageType 'CRM Task' +#: crm/fcrm/pagetype/crm_call_log/crm_call_log.json +#: crm/fcrm/pagetype/crm_communication_status/crm_communication_status.json +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_deal_status/crm_deal_status.json +#: crm/fcrm/pagetype/crm_invitation/crm_invitation.json +#: crm/fcrm/pagetype/crm_lead/crm_lead.json +#: crm/fcrm/pagetype/crm_lead_status/crm_lead_status.json +#: crm/fcrm/pagetype/crm_task/crm_task.json frontend/src/pages/Contact.vue:505 #: frontend/src/pages/MobileContact.vue:513 #: frontend/src/pages/MobileOrganization.vue:457 #: frontend/src/pages/Organization.vue:478 msgid "Status" msgstr "Status" -#. Label of the status_change_log (Table) field in DocType 'CRM Deal' -#. Label of the status_change_log (Table) field in DocType 'CRM Lead' -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_lead/crm_lead.json +#. Label of the status_change_log (Table) field in PageType 'CRM Deal' +#. Label of the status_change_log (Table) field in PageType 'CRM Lead' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_lead/crm_lead.json msgid "Status Change Log" msgstr "Statusändring Logg" @@ -5245,8 +5245,8 @@ msgstr "Statusändring Logg" msgid "Status is required" msgstr "Status erfordras" -#. Label of the subdomain (Data) field in DocType 'CRM Exotel Settings' -#: crm/fcrm/doctype/crm_exotel_settings/crm_exotel_settings.json +#. Label of the subdomain (Data) field in PageType 'CRM Exotel Settings' +#: crm/fcrm/pagetype/crm_exotel_settings/crm_exotel_settings.json msgid "Subdomain" msgstr "Underdomän" @@ -5264,10 +5264,10 @@ msgstr "Ämne erfordras" msgid "Subject: {0}" msgstr "Ämne: {0}" -#. Option for the 'Weekly Off' (Select) field in DocType 'CRM Holiday List' -#. Option for the 'Workday' (Select) field in DocType 'CRM Service Day' -#: crm/fcrm/doctype/crm_holiday_list/crm_holiday_list.json -#: crm/fcrm/doctype/crm_service_day/crm_service_day.json +#. Option for the 'Weekly Off' (Select) field in PageType 'CRM Holiday List' +#. Option for the 'Workday' (Select) field in PageType 'CRM Service Day' +#: crm/fcrm/pagetype/crm_holiday_list/crm_holiday_list.json +#: crm/fcrm/pagetype/crm_service_day/crm_service_day.json msgid "Sunday" msgstr "Söndag" @@ -5288,21 +5288,21 @@ msgid "System Configuration" msgstr "System Konfiguration" #. Name of a role -#. Option for the 'Role' (Select) field in DocType 'CRM Invitation' -#: crm/fcrm/doctype/crm_dashboard/crm_dashboard.json -#: crm/fcrm/doctype/crm_exotel_settings/crm_exotel_settings.json -#: crm/fcrm/doctype/crm_fields_layout/crm_fields_layout.json -#: crm/fcrm/doctype/crm_global_settings/crm_global_settings.json -#: crm/fcrm/doctype/crm_invitation/crm_invitation.json -#: crm/fcrm/doctype/crm_lead_source/crm_lead_source.json -#: crm/fcrm/doctype/crm_lost_reason/crm_lost_reason.json -#: crm/fcrm/doctype/crm_notification/crm_notification.json -#: crm/fcrm/doctype/crm_product/crm_product.json -#: crm/fcrm/doctype/crm_telephony_agent/crm_telephony_agent.json -#: crm/fcrm/doctype/crm_twilio_settings/crm_twilio_settings.json -#: crm/fcrm/doctype/erpnext_crm_settings/erpnext_crm_settings.json -#: crm/fcrm/doctype/fcrm_settings/fcrm_settings.json -#: crm/fcrm/doctype/helpdesk_crm_settings/helpdesk_crm_settings.json +#. Option for the 'Role' (Select) field in PageType 'CRM Invitation' +#: crm/fcrm/pagetype/crm_dashboard/crm_dashboard.json +#: crm/fcrm/pagetype/crm_exotel_settings/crm_exotel_settings.json +#: crm/fcrm/pagetype/crm_fields_layout/crm_fields_layout.json +#: crm/fcrm/pagetype/crm_global_settings/crm_global_settings.json +#: crm/fcrm/pagetype/crm_invitation/crm_invitation.json +#: crm/fcrm/pagetype/crm_lead_source/crm_lead_source.json +#: crm/fcrm/pagetype/crm_lost_reason/crm_lost_reason.json +#: crm/fcrm/pagetype/crm_notification/crm_notification.json +#: crm/fcrm/pagetype/crm_product/crm_product.json +#: crm/fcrm/pagetype/crm_telephony_agent/crm_telephony_agent.json +#: crm/fcrm/pagetype/crm_twilio_settings/crm_twilio_settings.json +#: crm/fcrm/pagetype/erpnext_crm_settings/erpnext_crm_settings.json +#: crm/fcrm/pagetype/fcrm_settings/fcrm_settings.json +#: crm/fcrm/pagetype/helpdesk_crm_settings/helpdesk_crm_settings.json msgid "System Manager" msgstr "System Ansvarig" @@ -5314,8 +5314,8 @@ msgstr "TILL" msgid "Take a note..." msgstr "Ta anteckning..." -#. Option for the 'Type' (Select) field in DocType 'CRM Notification' -#: crm/fcrm/doctype/crm_notification/crm_notification.json +#. Option for the 'Type' (Select) field in PageType 'CRM Notification' +#: crm/fcrm/pagetype/crm_notification/crm_notification.json #: frontend/src/components/Layouts/AppSidebar.vue:555 msgid "Task" msgstr "Uppgift" @@ -5333,8 +5333,8 @@ msgstr "Telegram Kanal" msgid "Telephony" msgstr "Telefoni" -#. Label of the telephony_medium (Select) field in DocType 'CRM Call Log' -#: crm/fcrm/doctype/crm_call_log/crm_call_log.json +#. Label of the telephony_medium (Select) field in PageType 'CRM Call Log' +#: crm/fcrm/pagetype/crm_call_log/crm_call_log.json msgid "Telephony Medium" msgstr "Telefoni Medium" @@ -5370,27 +5370,27 @@ msgstr "Mall namn ändrad" msgid "Template updated successfully" msgstr "Mall uppdaterad" -#. Label of a shortcut in the Frappe CRM Workspace -#: crm/fcrm/workspace/frappe_crm/frappe_crm.json +#. Label of a shortcut in the Jingrow CRM Workspace +#: crm/fcrm/workspace/jingrow_crm/jingrow_crm.json msgid "Territories" msgstr "Distrikt" -#. Label of the territory (Link) field in DocType 'CRM Deal' -#. Label of the territory (Link) field in DocType 'CRM Lead' -#. Label of the territory (Link) field in DocType 'CRM Organization' -#: crm/api/dashboard.py:1022 crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_lead/crm_lead.json -#: crm/fcrm/doctype/crm_organization/crm_organization.json +#. Label of the territory (Link) field in PageType 'CRM Deal' +#. Label of the territory (Link) field in PageType 'CRM Lead' +#. Label of the territory (Link) field in PageType 'CRM Organization' +#: crm/api/dashboard.py:1022 crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_lead/crm_lead.json +#: crm/fcrm/pagetype/crm_organization/crm_organization.json msgid "Territory" msgstr "Distrikt" -#. Label of the territory_manager (Link) field in DocType 'CRM Territory' -#: crm/fcrm/doctype/crm_territory/crm_territory.json +#. Label of the territory_manager (Link) field in PageType 'CRM Territory' +#: crm/fcrm/pagetype/crm_territory/crm_territory.json msgid "Territory Manager" msgstr "Distrikt Ansvarig" -#. Label of the territory_name (Data) field in DocType 'CRM Territory' -#: crm/fcrm/doctype/crm_territory/crm_territory.json +#. Label of the territory_name (Data) field in PageType 'CRM Territory' +#: crm/fcrm/pagetype/crm_territory/crm_territory.json msgid "Territory Name" msgstr "Distrikt Namn" @@ -5398,22 +5398,22 @@ msgstr "Distrikt Namn" msgid "Thanks" msgstr "Tack" -#: crm/fcrm/doctype/crm_service_level_agreement/crm_service_level_agreement.py:46 +#: crm/fcrm/pagetype/crm_service_level_agreement/crm_service_level_agreement.py:46 msgid "The Condition '{0}' is invalid: {1}" msgstr "Villkor '{0}' är ogiltigt: {1}" -#. Description of the 'Exchange Rate' (Float) field in DocType 'CRM Deal' -#: crm/fcrm/doctype/crm_deal/crm_deal.json +#. Description of the 'Exchange Rate' (Float) field in PageType 'CRM Deal' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json msgid "The rate used to convert the deal’s currency to your crm's base currency (set in CRM Settings). It is set once when the currency is first added and doesn't change automatically." msgstr "Kurs som används för att konvertera affärens valuta till Säljstöd basvaluta (angiven i Säljstöd Inställningar). Anges en gång när valuta läggs till första gången och ändras inte automatiskt." -#. Description of the 'Exchange Rate' (Float) field in DocType 'CRM +#. Description of the 'Exchange Rate' (Float) field in PageType 'CRM #. Organization' -#: crm/fcrm/doctype/crm_organization/crm_organization.json +#: crm/fcrm/pagetype/crm_organization/crm_organization.json msgid "The rate used to convert the organization’s currency to your crm's base currency (set in CRM Settings). It is set once when the currency is first added and doesn't change automatically." msgstr "Kurs som används för att konvertera bolag valuta till Säljstöd bas valuta (angiven i Säljstöd Inställningar). Anges en gång när valuta läggs till första gången och ändras inte automatiskt." -#: crm/fcrm/doctype/crm_service_level_agreement/crm_service_level_agreement.js:14 +#: crm/fcrm/pagetype/crm_service_level_agreement/crm_service_level_agreement.js:14 msgid "There can only be one default priority in Priorities table" msgstr "Det kan bara finnas en standard prioritet i Prioriteter tabellen " @@ -5450,14 +5450,14 @@ msgstr "Detta kommer att ta bort valda artiklar och artiklar som är länkade ti msgid "This will delete selected items and unlink linked items to it, are you sure?" msgstr "Detta kommer att ta bort valda artiklar och ta bort länk till länkade artiklar, är du säker?" -#: crm/fcrm/doctype/fcrm_settings/fcrm_settings.js:9 +#: crm/fcrm/pagetype/fcrm_settings/fcrm_settings.js:9 msgid "This will restore (if not exist) all the default statuses, custom fields and layouts. Delete & Restore will delete default layouts and then restore them." msgstr "Detta kommer att återställa (om det inte finns) alla standard status, anpassade fält och upplägg. Ta bort & Återställ kommer att ta bort standard upplägg och sedan återställa." -#. Option for the 'Weekly Off' (Select) field in DocType 'CRM Holiday List' -#. Option for the 'Workday' (Select) field in DocType 'CRM Service Day' -#: crm/fcrm/doctype/crm_holiday_list/crm_holiday_list.json -#: crm/fcrm/doctype/crm_service_day/crm_service_day.json +#. Option for the 'Weekly Off' (Select) field in PageType 'CRM Holiday List' +#. Option for the 'Workday' (Select) field in PageType 'CRM Service Day' +#: crm/fcrm/pagetype/crm_holiday_list/crm_holiday_list.json +#: crm/fcrm/pagetype/crm_service_day/crm_service_day.json msgid "Thursday" msgstr "Torsdag" @@ -5469,18 +5469,18 @@ msgstr "Tid" msgid "Timespan" msgstr "Tid Intervall" -#. Label of the title (Data) field in DocType 'CRM Task' -#. Label of the title (Data) field in DocType 'FCRM Note' -#: crm/fcrm/doctype/crm_task/crm_task.json -#: crm/fcrm/doctype/fcrm_note/fcrm_note.json +#. Label of the title (Data) field in PageType 'CRM Task' +#. Label of the title (Data) field in PageType 'FCRM Note' +#: crm/fcrm/pagetype/crm_task/crm_task.json +#: crm/fcrm/pagetype/fcrm_note/fcrm_note.json #: frontend/src/components/Modals/EventModal.vue:43 #: frontend/src/components/Modals/NoteModal.vue:26 #: frontend/src/components/Modals/TaskModal.vue:25 msgid "Title" msgstr "Benämning" -#. Label of the title_field (Data) field in DocType 'CRM View Settings' -#: crm/fcrm/doctype/crm_view_settings/crm_view_settings.json +#. Label of the title_field (Data) field in PageType 'CRM View Settings' +#: crm/fcrm/pagetype/crm_view_settings/crm_view_settings.json #: frontend/src/components/Kanban/KanbanSettings.vue:29 msgid "Title Field" msgstr "Titel Fält" @@ -5490,28 +5490,28 @@ msgstr "Titel Fält" msgid "Title is required" msgstr "Benämning erfordras" -#. Label of the to (Data) field in DocType 'CRM Call Log' -#. Label of the to (Data) field in DocType 'CRM Status Change Log' -#: crm/fcrm/doctype/crm_call_log/crm_call_log.json -#: crm/fcrm/doctype/crm_status_change_log/crm_status_change_log.json +#. Label of the to (Data) field in PageType 'CRM Call Log' +#. Label of the to (Data) field in PageType 'CRM Status Change Log' +#: crm/fcrm/pagetype/crm_call_log/crm_call_log.json +#: crm/fcrm/pagetype/crm_status_change_log/crm_status_change_log.json #: frontend/src/components/Activities/EmailArea.vue:53 msgid "To" msgstr "Till" -#. Label of the to_date (Date) field in DocType 'CRM Holiday List' -#. Label of the to_date (Datetime) field in DocType 'CRM Status Change Log' -#: crm/fcrm/doctype/crm_holiday_list/crm_holiday_list.json -#: crm/fcrm/doctype/crm_status_change_log/crm_status_change_log.json +#. Label of the to_date (Date) field in PageType 'CRM Holiday List' +#. Label of the to_date (Datetime) field in PageType 'CRM Status Change Log' +#: crm/fcrm/pagetype/crm_holiday_list/crm_holiday_list.json +#: crm/fcrm/pagetype/crm_status_change_log/crm_status_change_log.json msgid "To Date" msgstr "Till Datum" -#. Label of the to_type (Data) field in DocType 'CRM Status Change Log' -#: crm/fcrm/doctype/crm_status_change_log/crm_status_change_log.json +#. Label of the to_type (Data) field in PageType 'CRM Status Change Log' +#: crm/fcrm/pagetype/crm_status_change_log/crm_status_change_log.json msgid "To Type" msgstr "Till Typ" -#. Label of the to_user (Link) field in DocType 'CRM Notification' -#: crm/fcrm/doctype/crm_notification/crm_notification.json +#. Label of the to_user (Link) field in PageType 'CRM Notification' +#: crm/fcrm/pagetype/crm_notification/crm_notification.json msgid "To User" msgstr "Till Användare" @@ -5523,8 +5523,8 @@ msgstr "För att veta mer om hur du konfigurerar e-post konton, klicka här" msgid "Today" msgstr "Idag" -#. Option for the 'Status' (Select) field in DocType 'CRM Task' -#: crm/fcrm/doctype/crm_task/crm_task.json +#. Option for the 'Status' (Select) field in PageType 'CRM Task' +#: crm/fcrm/pagetype/crm_task/crm_task.json msgid "Todo" msgstr "Att Göra" @@ -5541,22 +5541,22 @@ msgstr "I morgon" msgid "Took a call with John Doe and discussed the new project." msgstr "Tog samtal med John Doe och diskuterade ny projekt." -#. Label of the total (Currency) field in DocType 'CRM Deal' -#. Label of the total (Currency) field in DocType 'CRM Lead' -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_lead/crm_lead.json +#. Label of the total (Currency) field in PageType 'CRM Deal' +#. Label of the total (Currency) field in PageType 'CRM Lead' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_lead/crm_lead.json msgid "Total" msgstr "Totalt" -#. Label of the total_holidays (Int) field in DocType 'CRM Holiday List' -#: crm/fcrm/doctype/crm_holiday_list/crm_holiday_list.json +#. Label of the total_holidays (Int) field in PageType 'CRM Holiday List' +#: crm/fcrm/pagetype/crm_holiday_list/crm_holiday_list.json msgid "Total Holidays" msgstr "Totalt Helg Dagar" -#. Description of the 'Net Total' (Currency) field in DocType 'CRM Deal' -#. Description of the 'Net Total' (Currency) field in DocType 'CRM Lead' -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_lead/crm_lead.json +#. Description of the 'Net Total' (Currency) field in PageType 'CRM Deal' +#. Description of the 'Net Total' (Currency) field in PageType 'CRM Lead' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_lead/crm_lead.json msgid "Total after discount" msgstr "Totalt efter rabatt" @@ -5577,10 +5577,10 @@ msgstr "Totalt antal förlorade affärer" msgid "Total number of won deals based on its closure date" msgstr "Totalt antal vunna affärer baserat på avslutning datum" -#. Option for the 'Weekly Off' (Select) field in DocType 'CRM Holiday List' -#. Option for the 'Workday' (Select) field in DocType 'CRM Service Day' -#: crm/fcrm/doctype/crm_holiday_list/crm_holiday_list.json -#: crm/fcrm/doctype/crm_service_day/crm_service_day.json +#. Option for the 'Weekly Off' (Select) field in PageType 'CRM Holiday List' +#. Option for the 'Workday' (Select) field in PageType 'CRM Service Day' +#: crm/fcrm/pagetype/crm_holiday_list/crm_holiday_list.json +#: crm/fcrm/pagetype/crm_service_day/crm_service_day.json msgid "Tuesday" msgstr "Tisdag" @@ -5588,30 +5588,30 @@ msgstr "Tisdag" msgid "Turn into a group" msgstr "Gör om till grupp" -#. Label of the twiml_sid (Data) field in DocType 'CRM Twilio Settings' -#: crm/fcrm/doctype/crm_twilio_settings/crm_twilio_settings.json +#. Label of the twiml_sid (Data) field in PageType 'CRM Twilio Settings' +#: crm/fcrm/pagetype/crm_twilio_settings/crm_twilio_settings.json msgid "TwiML SID" msgstr "TwiML SID" -#. Option for the 'Telephony Medium' (Select) field in DocType 'CRM Call Log' -#. Label of the twilio (Check) field in DocType 'CRM Telephony Agent' -#. Option for the 'Default Medium' (Select) field in DocType 'CRM Telephony +#. Option for the 'Telephony Medium' (Select) field in PageType 'CRM Call Log' +#. Label of the twilio (Check) field in PageType 'CRM Telephony Agent' +#. Option for the 'Default Medium' (Select) field in PageType 'CRM Telephony #. Agent' -#: crm/fcrm/doctype/crm_call_log/crm_call_log.json -#: crm/fcrm/doctype/crm_telephony_agent/crm_telephony_agent.json +#: crm/fcrm/pagetype/crm_call_log/crm_call_log.json +#: crm/fcrm/pagetype/crm_telephony_agent/crm_telephony_agent.json #: frontend/src/components/Layouts/AppSidebar.vue:601 #: frontend/src/components/Settings/TelephonySettings.vue:40 #: frontend/src/components/Settings/TelephonySettings.vue:50 msgid "Twilio" msgstr "Twilio" -#: crm/fcrm/doctype/crm_twilio_settings/crm_twilio_settings.py:59 -#: crm/fcrm/doctype/crm_twilio_settings/crm_twilio_settings.py:60 +#: crm/fcrm/pagetype/crm_twilio_settings/crm_twilio_settings.py:59 +#: crm/fcrm/pagetype/crm_twilio_settings/crm_twilio_settings.py:60 msgid "Twilio API credential creation error." msgstr "Fel vid skapande av autentiseringsuppgifter för Twilio API." -#. Label of the twilio_number (Data) field in DocType 'CRM Telephony Agent' -#: crm/fcrm/doctype/crm_telephony_agent/crm_telephony_agent.json +#. Label of the twilio_number (Data) field in PageType 'CRM Telephony Agent' +#: crm/fcrm/pagetype/crm_telephony_agent/crm_telephony_agent.json msgid "Twilio Number" msgstr "Twilio Nummer" @@ -5623,20 +5623,20 @@ msgstr "Twilio är inte aktiverat" msgid "Twilio settings updated successfully" msgstr "Twilio Inställningarna uppdaterade" -#. Label of the type (Select) field in DocType 'CRM Call Log' -#. Label of the type (Select) field in DocType 'CRM Deal Status' -#. Label of the type (Select) field in DocType 'CRM Dropdown Item' -#. Label of the type (Select) field in DocType 'CRM Fields Layout' -#. Label of the type (Select) field in DocType 'CRM Global Settings' -#. Label of the type (Select) field in DocType 'CRM Notification' -#. Label of the type (Select) field in DocType 'CRM View Settings' -#: crm/fcrm/doctype/crm_call_log/crm_call_log.json -#: crm/fcrm/doctype/crm_deal_status/crm_deal_status.json -#: crm/fcrm/doctype/crm_dropdown_item/crm_dropdown_item.json -#: crm/fcrm/doctype/crm_fields_layout/crm_fields_layout.json -#: crm/fcrm/doctype/crm_global_settings/crm_global_settings.json -#: crm/fcrm/doctype/crm_notification/crm_notification.json -#: crm/fcrm/doctype/crm_view_settings/crm_view_settings.json +#. Label of the type (Select) field in PageType 'CRM Call Log' +#. Label of the type (Select) field in PageType 'CRM Deal Status' +#. Label of the type (Select) field in PageType 'CRM Dropdown Item' +#. Label of the type (Select) field in PageType 'CRM Fields Layout' +#. Label of the type (Select) field in PageType 'CRM Global Settings' +#. Label of the type (Select) field in PageType 'CRM Notification' +#. Label of the type (Select) field in PageType 'CRM View Settings' +#: crm/fcrm/pagetype/crm_call_log/crm_call_log.json +#: crm/fcrm/pagetype/crm_deal_status/crm_deal_status.json +#: crm/fcrm/pagetype/crm_dropdown_item/crm_dropdown_item.json +#: crm/fcrm/pagetype/crm_fields_layout/crm_fields_layout.json +#: crm/fcrm/pagetype/crm_global_settings/crm_global_settings.json +#: crm/fcrm/pagetype/crm_notification/crm_notification.json +#: crm/fcrm/pagetype/crm_view_settings/crm_view_settings.json msgid "Type" msgstr "Typ" @@ -5778,12 +5778,12 @@ msgstr "Ladda upp Bild" msgid "Uploading {0}%" msgstr "Ladda Upp {0}%" -#. Label of the user (Link) field in DocType 'CRM Dashboard' -#. Label of the user (Link) field in DocType 'CRM Telephony Agent' -#. Label of the user (Link) field in DocType 'CRM View Settings' -#: crm/fcrm/doctype/crm_dashboard/crm_dashboard.json -#: crm/fcrm/doctype/crm_telephony_agent/crm_telephony_agent.json -#: crm/fcrm/doctype/crm_view_settings/crm_view_settings.json +#. Label of the user (Link) field in PageType 'CRM Dashboard' +#. Label of the user (Link) field in PageType 'CRM Telephony Agent' +#. Label of the user (Link) field in PageType 'CRM View Settings' +#: crm/fcrm/pagetype/crm_dashboard/crm_dashboard.json +#: crm/fcrm/pagetype/crm_telephony_agent/crm_telephony_agent.json +#: crm/fcrm/pagetype/crm_view_settings/crm_view_settings.json msgid "User" msgstr "Användare" @@ -5791,8 +5791,8 @@ msgstr "Användare" msgid "User Management" msgstr "Användare Hantering" -#. Label of the user_name (Data) field in DocType 'CRM Telephony Agent' -#: crm/fcrm/doctype/crm_telephony_agent/crm_telephony_agent.json +#. Label of the user_name (Data) field in PageType 'CRM Telephony Agent' +#: crm/fcrm/pagetype/crm_telephony_agent/crm_telephony_agent.json msgid "User Name" msgstr "Användare Namn" @@ -5814,9 +5814,9 @@ msgstr "Användare tillagd" msgid "Users are required" msgstr "Användare erfordras" -#. Label of the section_break_nevd (Section Break) field in DocType 'CRM +#. Label of the section_break_nevd (Section Break) field in PageType 'CRM #. Service Level Agreement' -#: crm/fcrm/doctype/crm_service_level_agreement/crm_service_level_agreement.json +#: crm/fcrm/pagetype/crm_service_level_agreement/crm_service_level_agreement.json msgid "Validity" msgstr "Giltighet" @@ -5840,33 +5840,33 @@ msgstr "Vyer" msgid "Web form" msgstr "Webbformulär" -#. Label of the webhook_verify_token (Data) field in DocType 'CRM Exotel +#. Label of the webhook_verify_token (Data) field in PageType 'CRM Exotel #. Settings' -#: crm/fcrm/doctype/crm_exotel_settings/crm_exotel_settings.json +#: crm/fcrm/pagetype/crm_exotel_settings/crm_exotel_settings.json msgid "Webhook Verify Token" msgstr "Webhook Verifiering Token" -#. Label of the website (Data) field in DocType 'CRM Deal' -#. Label of the website (Data) field in DocType 'CRM Lead' -#. Label of the website (Data) field in DocType 'CRM Organization' -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_lead/crm_lead.json -#: crm/fcrm/doctype/crm_organization/crm_organization.json +#. Label of the website (Data) field in PageType 'CRM Deal' +#. Label of the website (Data) field in PageType 'CRM Lead' +#. Label of the website (Data) field in PageType 'CRM Organization' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_lead/crm_lead.json +#: crm/fcrm/pagetype/crm_organization/crm_organization.json #: frontend/src/components/Modals/AboutModal.vue:52 msgid "Website" msgstr "Webbplats" -#. Option for the 'Weekly Off' (Select) field in DocType 'CRM Holiday List' -#. Option for the 'Workday' (Select) field in DocType 'CRM Service Day' -#: crm/fcrm/doctype/crm_holiday_list/crm_holiday_list.json -#: crm/fcrm/doctype/crm_service_day/crm_service_day.json +#. Option for the 'Weekly Off' (Select) field in PageType 'CRM Holiday List' +#. Option for the 'Workday' (Select) field in PageType 'CRM Service Day' +#: crm/fcrm/pagetype/crm_holiday_list/crm_holiday_list.json +#: crm/fcrm/pagetype/crm_service_day/crm_service_day.json msgid "Wednesday" msgstr "Onsdag" -#. Label of the weekly_off (Check) field in DocType 'CRM Holiday' -#. Label of the weekly_off (Select) field in DocType 'CRM Holiday List' -#: crm/fcrm/doctype/crm_holiday/crm_holiday.json -#: crm/fcrm/doctype/crm_holiday_list/crm_holiday_list.json +#. Label of the weekly_off (Check) field in PageType 'CRM Holiday' +#. Label of the weekly_off (Select) field in PageType 'CRM Holiday List' +#: crm/fcrm/pagetype/crm_holiday/crm_holiday.json +#: crm/fcrm/pagetype/crm_holiday_list/crm_holiday_list.json msgid "Weekly Off" msgstr "Helg" @@ -5874,7 +5874,7 @@ msgstr "Helg" msgid "Welcome Message" msgstr "Välkomstmeddelande" -#: crm/fcrm/doctype/helpdesk_crm_settings/helpdesk_crm_settings.py:155 +#: crm/fcrm/pagetype/helpdesk_crm_settings/helpdesk_crm_settings.py:155 msgid "Welcome to Helpdesk" msgstr "Välkommen till Helpdesk" @@ -5882,8 +5882,8 @@ msgstr "Välkommen till Helpdesk" msgid "Welcome {0}, lets add your first lead" msgstr "Välkommen {0}, låt oss lägga till första potentiella kund" -#. Option for the 'Type' (Select) field in DocType 'CRM Notification' -#: crm/fcrm/doctype/crm_notification/crm_notification.json +#. Option for the 'Type' (Select) field in PageType 'CRM Notification' +#: crm/fcrm/pagetype/crm_notification/crm_notification.json #: frontend/src/components/Layouts/AppSidebar.vue:603 #: frontend/src/components/Settings/Settings.vue:190 #: frontend/src/pages/Deal.vue:572 frontend/src/pages/Lead.vue:429 @@ -5908,8 +5908,8 @@ msgstr "Bredd" msgid "Width can be in number, pixel or rem (eg. 3, 30px, 10rem)" msgstr "Bredd kan anges i antal, pixel eller rem (t.ex. 3, 30px, 10rem)" -#. Option for the 'Type' (Select) field in DocType 'CRM Deal Status' -#: crm/fcrm/doctype/crm_deal_status/crm_deal_status.json +#. Option for the 'Type' (Select) field in PageType 'CRM Deal Status' +#: crm/fcrm/pagetype/crm_deal_status/crm_deal_status.json msgid "Won" msgstr "Vunnen" @@ -5918,16 +5918,16 @@ msgstr "Vunnen" msgid "Won deals" msgstr "Vunna affärer" -#. Label of the workday (Select) field in DocType 'CRM Service Day' -#: crm/fcrm/doctype/crm_service_day/crm_service_day.json +#. Label of the workday (Select) field in PageType 'CRM Service Day' +#: crm/fcrm/pagetype/crm_service_day/crm_service_day.json msgid "Workday" msgstr "Arbetsdag" -#. Label of the section_break_rmgo (Section Break) field in DocType 'CRM +#. Label of the section_break_rmgo (Section Break) field in PageType 'CRM #. Service Level Agreement' -#. Label of the working_hours (Table) field in DocType 'CRM Service Level +#. Label of the working_hours (Table) field in PageType 'CRM Service Level #. Agreement' -#: crm/fcrm/doctype/crm_service_level_agreement/crm_service_level_agreement.json +#: crm/fcrm/pagetype/crm_service_level_agreement/crm_service_level_agreement.json msgid "Working Hours" msgstr "Arbets Timmar" @@ -5973,7 +5973,7 @@ msgstr "Du har inget Mobil Nummer angiven i din Telefoni Agent" msgid "You do not have permission to access this document" msgstr "Du har inte behörighet att komma åt detta dokument" -#: crm/fcrm/doctype/crm_form_script/crm_form_script.py:24 +#: crm/fcrm/pagetype/crm_form_script/crm_form_script.py:24 msgid "You need to be in developer mode to edit a Standard Form Script" msgstr "Du måste vara i Utvecklarläge att redigera Standard Formulär Skript" @@ -6001,10 +6001,10 @@ msgstr "Gamla villkor kommer att skrivas över. Är du säker på att du vill sp msgid "added a" msgstr "la till " -#. Option for the 'Color' (Select) field in DocType 'CRM Deal Status' -#. Option for the 'Color' (Select) field in DocType 'CRM Lead Status' -#: crm/fcrm/doctype/crm_deal_status/crm_deal_status.json -#: crm/fcrm/doctype/crm_lead_status/crm_lead_status.json +#. Option for the 'Color' (Select) field in PageType 'CRM Deal Status' +#. Option for the 'Color' (Select) field in PageType 'CRM Lead Status' +#: crm/fcrm/pagetype/crm_deal_status/crm_deal_status.json +#: crm/fcrm/pagetype/crm_lead_status/crm_lead_status.json msgid "amber" msgstr "bärnsten" @@ -6016,17 +6016,17 @@ msgstr "tilldelade dig en ny uppgift {0}" msgid "assigned a {0} {1} to you" msgstr "tilldelade {0} {1} till dig" -#. Option for the 'Color' (Select) field in DocType 'CRM Deal Status' -#. Option for the 'Color' (Select) field in DocType 'CRM Lead Status' -#: crm/fcrm/doctype/crm_deal_status/crm_deal_status.json -#: crm/fcrm/doctype/crm_lead_status/crm_lead_status.json +#. Option for the 'Color' (Select) field in PageType 'CRM Deal Status' +#. Option for the 'Color' (Select) field in PageType 'CRM Lead Status' +#: crm/fcrm/pagetype/crm_deal_status/crm_deal_status.json +#: crm/fcrm/pagetype/crm_lead_status/crm_lead_status.json msgid "black" msgstr "svart" -#. Option for the 'Color' (Select) field in DocType 'CRM Deal Status' -#. Option for the 'Color' (Select) field in DocType 'CRM Lead Status' -#: crm/fcrm/doctype/crm_deal_status/crm_deal_status.json -#: crm/fcrm/doctype/crm_lead_status/crm_lead_status.json +#. Option for the 'Color' (Select) field in PageType 'CRM Deal Status' +#. Option for the 'Color' (Select) field in PageType 'CRM Lead Status' +#: crm/fcrm/pagetype/crm_deal_status/crm_deal_status.json +#: crm/fcrm/pagetype/crm_lead_status/crm_lead_status.json msgid "blue" msgstr "blå" @@ -6043,10 +6043,10 @@ msgstr "kommentar" msgid "condition" msgstr "villkor" -#. Option for the 'Color' (Select) field in DocType 'CRM Deal Status' -#. Option for the 'Color' (Select) field in DocType 'CRM Lead Status' -#: crm/fcrm/doctype/crm_deal_status/crm_deal_status.json -#: crm/fcrm/doctype/crm_lead_status/crm_lead_status.json +#. Option for the 'Color' (Select) field in PageType 'CRM Deal Status' +#. Option for the 'Color' (Select) field in PageType 'CRM Lead Status' +#: crm/fcrm/pagetype/crm_deal_status/crm_deal_status.json +#: crm/fcrm/pagetype/crm_lead_status/crm_lead_status.json msgid "cyan" msgstr "cyan" @@ -6065,33 +6065,33 @@ msgstr "skrivbord" msgid "email already exists" msgstr "e-post adress finns redan" -#. Option for the 'Service Provider' (Select) field in DocType 'FCRM Settings' -#: crm/fcrm/doctype/fcrm_settings/fcrm_settings.json +#. Option for the 'Service Provider' (Select) field in PageType 'FCRM Settings' +#: crm/fcrm/pagetype/fcrm_settings/fcrm_settings.json #: frontend/src/components/Settings/CurrencySettings.vue:106 msgid "exchangerate.host" msgstr "exchangerate.host" -#. Option for the 'Service Provider' (Select) field in DocType 'FCRM Settings' -#: crm/fcrm/doctype/fcrm_settings/fcrm_settings.json +#. Option for the 'Service Provider' (Select) field in PageType 'FCRM Settings' +#: crm/fcrm/pagetype/fcrm_settings/fcrm_settings.json msgid "frankfurter.app" msgstr "frankfurter.app" -#. Option for the 'Color' (Select) field in DocType 'CRM Deal Status' -#. Option for the 'Color' (Select) field in DocType 'CRM Lead Status' -#: crm/fcrm/doctype/crm_deal_status/crm_deal_status.json -#: crm/fcrm/doctype/crm_lead_status/crm_lead_status.json +#. Option for the 'Color' (Select) field in PageType 'CRM Deal Status' +#. Option for the 'Color' (Select) field in PageType 'CRM Lead Status' +#: crm/fcrm/pagetype/crm_deal_status/crm_deal_status.json +#: crm/fcrm/pagetype/crm_lead_status/crm_lead_status.json msgid "gray" msgstr "grå" -#. Option for the 'Color' (Select) field in DocType 'CRM Deal Status' -#. Option for the 'Color' (Select) field in DocType 'CRM Lead Status' -#: crm/fcrm/doctype/crm_deal_status/crm_deal_status.json -#: crm/fcrm/doctype/crm_lead_status/crm_lead_status.json +#. Option for the 'Color' (Select) field in PageType 'CRM Deal Status' +#. Option for the 'Color' (Select) field in PageType 'CRM Lead Status' +#: crm/fcrm/pagetype/crm_deal_status/crm_deal_status.json +#: crm/fcrm/pagetype/crm_lead_status/crm_lead_status.json msgid "green" msgstr "grön" -#. Option for the 'Type' (Select) field in DocType 'CRM View Settings' -#: crm/fcrm/doctype/crm_view_settings/crm_view_settings.json +#. Option for the 'Type' (Select) field in PageType 'CRM View Settings' +#: crm/fcrm/pagetype/crm_view_settings/crm_view_settings.json msgid "group_by" msgstr "grupp_efter" @@ -6176,12 +6176,12 @@ msgstr "john@doe.com" msgid "just now" msgstr "just nu" -#. Option for the 'Type' (Select) field in DocType 'CRM View Settings' -#: crm/fcrm/doctype/crm_view_settings/crm_view_settings.json +#. Option for the 'Type' (Select) field in PageType 'CRM View Settings' +#: crm/fcrm/pagetype/crm_view_settings/crm_view_settings.json msgid "kanban" msgstr "anslagstavla" -#: crm/api/doc.py:40 crm/api/doc.py:158 crm/api/doc.py:503 +#: crm/api/pg.py:40 crm/api/pg.py:158 crm/api/pg.py:503 msgid "label" msgstr "etikett" @@ -6190,8 +6190,8 @@ msgstr "etikett" msgid "leads" msgstr "potentiella Kunder" -#. Option for the 'Type' (Select) field in DocType 'CRM View Settings' -#: crm/fcrm/doctype/crm_view_settings/crm_view_settings.json +#. Option for the 'Type' (Select) field in PageType 'CRM View Settings' +#: crm/fcrm/pagetype/crm_view_settings/crm_view_settings.json msgid "list" msgstr "lista" @@ -6212,17 +6212,17 @@ msgstr "nu" msgid "operator" msgstr "personal" -#. Option for the 'Color' (Select) field in DocType 'CRM Deal Status' -#. Option for the 'Color' (Select) field in DocType 'CRM Lead Status' -#: crm/fcrm/doctype/crm_deal_status/crm_deal_status.json -#: crm/fcrm/doctype/crm_lead_status/crm_lead_status.json +#. Option for the 'Color' (Select) field in PageType 'CRM Deal Status' +#. Option for the 'Color' (Select) field in PageType 'CRM Lead Status' +#: crm/fcrm/pagetype/crm_deal_status/crm_deal_status.json +#: crm/fcrm/pagetype/crm_lead_status/crm_lead_status.json msgid "orange" msgstr "orange" -#. Option for the 'Color' (Select) field in DocType 'CRM Deal Status' -#. Option for the 'Color' (Select) field in DocType 'CRM Lead Status' -#: crm/fcrm/doctype/crm_deal_status/crm_deal_status.json -#: crm/fcrm/doctype/crm_lead_status/crm_lead_status.json +#. Option for the 'Color' (Select) field in PageType 'CRM Deal Status' +#. Option for the 'Color' (Select) field in PageType 'CRM Lead Status' +#: crm/fcrm/pagetype/crm_deal_status/crm_deal_status.json +#: crm/fcrm/pagetype/crm_lead_status/crm_lead_status.json msgid "pink" msgstr "rosa" @@ -6238,10 +6238,10 @@ msgstr "privat" msgid "public" msgstr "publik" -#. Option for the 'Color' (Select) field in DocType 'CRM Deal Status' -#. Option for the 'Color' (Select) field in DocType 'CRM Lead Status' -#: crm/fcrm/doctype/crm_deal_status/crm_deal_status.json -#: crm/fcrm/doctype/crm_lead_status/crm_lead_status.json +#. Option for the 'Color' (Select) field in PageType 'CRM Deal Status' +#. Option for the 'Color' (Select) field in PageType 'CRM Lead Status' +#: crm/fcrm/pagetype/crm_deal_status/crm_deal_status.json +#: crm/fcrm/pagetype/crm_lead_status/crm_lead_status.json msgid "purple" msgstr "lila" @@ -6249,17 +6249,17 @@ msgstr "lila" msgid "received a whatsapp message in {0}" msgstr "fick whatsapp meddelande i {0}" -#. Option for the 'Color' (Select) field in DocType 'CRM Deal Status' -#. Option for the 'Color' (Select) field in DocType 'CRM Lead Status' -#: crm/fcrm/doctype/crm_deal_status/crm_deal_status.json -#: crm/fcrm/doctype/crm_lead_status/crm_lead_status.json +#. Option for the 'Color' (Select) field in PageType 'CRM Deal Status' +#. Option for the 'Color' (Select) field in PageType 'CRM Lead Status' +#: crm/fcrm/pagetype/crm_deal_status/crm_deal_status.json +#: crm/fcrm/pagetype/crm_lead_status/crm_lead_status.json msgid "red" msgstr "röd" -#. Option for the 'Color' (Select) field in DocType 'CRM Deal Status' -#. Option for the 'Color' (Select) field in DocType 'CRM Lead Status' -#: crm/fcrm/doctype/crm_deal_status/crm_deal_status.json -#: crm/fcrm/doctype/crm_lead_status/crm_lead_status.json +#. Option for the 'Color' (Select) field in PageType 'CRM Deal Status' +#. Option for the 'Color' (Select) field in PageType 'CRM Lead Status' +#: crm/fcrm/pagetype/crm_deal_status/crm_deal_status.json +#: crm/fcrm/pagetype/crm_lead_status/crm_lead_status.json msgid "teal" msgstr "blågrön" @@ -6272,10 +6272,10 @@ msgstr "till" msgid "tomorrow" msgstr "i morgon" -#. Option for the 'Color' (Select) field in DocType 'CRM Deal Status' -#. Option for the 'Color' (Select) field in DocType 'CRM Lead Status' -#: crm/fcrm/doctype/crm_deal_status/crm_deal_status.json -#: crm/fcrm/doctype/crm_lead_status/crm_lead_status.json +#. Option for the 'Color' (Select) field in PageType 'CRM Deal Status' +#. Option for the 'Color' (Select) field in PageType 'CRM Lead Status' +#: crm/fcrm/pagetype/crm_deal_status/crm_deal_status.json +#: crm/fcrm/pagetype/crm_lead_status/crm_lead_status.json msgid "violet" msgstr "violett" @@ -6284,10 +6284,10 @@ msgstr "violett" msgid "which are not compatible with this UI, you will need to recreate the conditions here if you want to manage and add new conditions from this UI." msgstr "som inte är kompatibla med detta användargränssnitt, återskapa villkoren här om du vill hantera och lägga till nya villkor från detta användargränssnitt." -#. Option for the 'Color' (Select) field in DocType 'CRM Deal Status' -#. Option for the 'Color' (Select) field in DocType 'CRM Lead Status' -#: crm/fcrm/doctype/crm_deal_status/crm_deal_status.json -#: crm/fcrm/doctype/crm_lead_status/crm_lead_status.json +#. Option for the 'Color' (Select) field in PageType 'CRM Deal Status' +#. Option for the 'Color' (Select) field in PageType 'CRM Lead Status' +#: crm/fcrm/pagetype/crm_deal_status/crm_deal_status.json +#: crm/fcrm/pagetype/crm_lead_status/crm_lead_status.json msgid "yellow" msgstr "gul" @@ -6385,8 +6385,8 @@ msgid "⚠️ Method \"{0}\" not found in class." msgstr "⚠️ Metod \"{0}\" hittades inte i klassen." #: frontend/src/data/script.js:83 -msgid "⚠️ No class found for doctype: {0}, it is mandatory to have a class for the parent doctype. it can be empty, but it should be present." -msgstr "⚠️ Ingen klass hittades för doctype: {0}, det erfordras att ha klass för överordnad doctype. Kan vara tom, men den ska finnas." +msgid "⚠️ No class found for pagetype: {0}, it is mandatory to have a class for the parent pagetype. it can be empty, but it should be present." +msgstr "⚠️ Ingen klass hittades för pagetype: {0}, det erfordras att ha klass för överordnad pagetype. Kan vara tom, men den ska finnas." #: frontend/src/data/script.js:180 msgid "⚠️ No data found for parent field: {0}" diff --git a/crm/locale/th.po b/crm/locale/th.po index 8bf55814..1a099cc1 100644 --- a/crm/locale/th.po +++ b/crm/locale/th.po @@ -1,6 +1,6 @@ msgid "" msgstr "" -"Project-Id-Version: frappe\n" +"Project-Id-Version: jingrow\n" "Report-Msgid-Bugs-To: shariq@jingrow.com\n" "POT-Creation-Date: 2025-09-21 09:35+0000\n" "PO-Revision-Date: 2025-09-22 20:42\n" @@ -11,10 +11,10 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Generated-By: Babel 2.16.0\n" "Plural-Forms: nplurals=1; plural=0;\n" -"X-Crowdin-Project: frappe\n" +"X-Crowdin-Project: jingrow\n" "X-Crowdin-Project-ID: 639578\n" "X-Crowdin-Language: th\n" -"X-Crowdin-File: /[frappe.crm] develop/crm/locale/main.pot\n" +"X-Crowdin-File: /[jingrow.crm] develop/crm/locale/main.pot\n" "X-Crowdin-File-ID: 97\n" "Language: th_TH\n" @@ -55,73 +55,73 @@ msgstr "1 สัปดาห์ที่แล้ว" msgid "1 year ago" msgstr "1 ปีที่แล้ว" -#. Option for the 'No. of Employees' (Select) field in DocType 'CRM Deal' -#. Option for the 'No. of Employees' (Select) field in DocType 'CRM Lead' -#. Option for the 'No. of Employees' (Select) field in DocType 'CRM +#. Option for the 'No. of Employees' (Select) field in PageType 'CRM Deal' +#. Option for the 'No. of Employees' (Select) field in PageType 'CRM Lead' +#. Option for the 'No. of Employees' (Select) field in PageType 'CRM #. Organization' -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_lead/crm_lead.json -#: crm/fcrm/doctype/crm_organization/crm_organization.json +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_lead/crm_lead.json +#: crm/fcrm/pagetype/crm_organization/crm_organization.json msgid "1-10" msgstr "1-10" -#. Option for the 'No. of Employees' (Select) field in DocType 'CRM Deal' -#. Option for the 'No. of Employees' (Select) field in DocType 'CRM Lead' -#. Option for the 'No. of Employees' (Select) field in DocType 'CRM +#. Option for the 'No. of Employees' (Select) field in PageType 'CRM Deal' +#. Option for the 'No. of Employees' (Select) field in PageType 'CRM Lead' +#. Option for the 'No. of Employees' (Select) field in PageType 'CRM #. Organization' -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_lead/crm_lead.json -#: crm/fcrm/doctype/crm_organization/crm_organization.json +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_lead/crm_lead.json +#: crm/fcrm/pagetype/crm_organization/crm_organization.json msgid "1000+" msgstr "1000+" -#. Option for the 'No. of Employees' (Select) field in DocType 'CRM Deal' -#. Option for the 'No. of Employees' (Select) field in DocType 'CRM Lead' -#. Option for the 'No. of Employees' (Select) field in DocType 'CRM +#. Option for the 'No. of Employees' (Select) field in PageType 'CRM Deal' +#. Option for the 'No. of Employees' (Select) field in PageType 'CRM Lead' +#. Option for the 'No. of Employees' (Select) field in PageType 'CRM #. Organization' -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_lead/crm_lead.json -#: crm/fcrm/doctype/crm_organization/crm_organization.json +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_lead/crm_lead.json +#: crm/fcrm/pagetype/crm_organization/crm_organization.json msgid "11-50" msgstr "11-50" -#. Option for the 'No. of Employees' (Select) field in DocType 'CRM Deal' -#. Option for the 'No. of Employees' (Select) field in DocType 'CRM Lead' -#. Option for the 'No. of Employees' (Select) field in DocType 'CRM +#. Option for the 'No. of Employees' (Select) field in PageType 'CRM Deal' +#. Option for the 'No. of Employees' (Select) field in PageType 'CRM Lead' +#. Option for the 'No. of Employees' (Select) field in PageType 'CRM #. Organization' -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_lead/crm_lead.json -#: crm/fcrm/doctype/crm_organization/crm_organization.json +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_lead/crm_lead.json +#: crm/fcrm/pagetype/crm_organization/crm_organization.json msgid "201-500" msgstr "201-500" -#. Option for the 'No. of Employees' (Select) field in DocType 'CRM Deal' -#. Option for the 'No. of Employees' (Select) field in DocType 'CRM Lead' -#. Option for the 'No. of Employees' (Select) field in DocType 'CRM +#. Option for the 'No. of Employees' (Select) field in PageType 'CRM Deal' +#. Option for the 'No. of Employees' (Select) field in PageType 'CRM Lead' +#. Option for the 'No. of Employees' (Select) field in PageType 'CRM #. Organization' -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_lead/crm_lead.json -#: crm/fcrm/doctype/crm_organization/crm_organization.json +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_lead/crm_lead.json +#: crm/fcrm/pagetype/crm_organization/crm_organization.json msgid "501-1000" msgstr "" -#. Option for the 'No. of Employees' (Select) field in DocType 'CRM Deal' -#. Option for the 'No. of Employees' (Select) field in DocType 'CRM Lead' -#. Option for the 'No. of Employees' (Select) field in DocType 'CRM +#. Option for the 'No. of Employees' (Select) field in PageType 'CRM Deal' +#. Option for the 'No. of Employees' (Select) field in PageType 'CRM Lead' +#. Option for the 'No. of Employees' (Select) field in PageType 'CRM #. Organization' -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_lead/crm_lead.json -#: crm/fcrm/doctype/crm_organization/crm_organization.json +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_lead/crm_lead.json +#: crm/fcrm/pagetype/crm_organization/crm_organization.json msgid "51-200" msgstr "51-200" -#. Paragraph text in the Frappe CRM Workspace -#: crm/fcrm/workspace/frappe_crm/frappe_crm.json +#. Paragraph text in the Jingrow CRM Workspace +#: crm/fcrm/workspace/jingrow_crm/jingrow_crm.json msgid "META" msgstr "" -#. Paragraph text in the Frappe CRM Workspace -#: crm/fcrm/workspace/frappe_crm/frappe_crm.json +#. Paragraph text in the Jingrow CRM Workspace +#: crm/fcrm/workspace/jingrow_crm/jingrow_crm.json msgid "SHORTCUTS" msgstr "" @@ -130,8 +130,8 @@ msgstr "" msgid "

Dear {{ lead_name }},

\\n\\n

This is a reminder for the payment of {{ grand_total }}.

\\n\\n

Thanks,

\\n

Frappé

" msgstr "

เรียน {{ lead_name }}

\\n\\n

นี่คือการแจ้งเตือนการชำระเงิน {{ grand_total }}

\\n\\n

ขอบคุณครับ

\\n

Frappé

" -#. Header text in the Frappe CRM Workspace -#: crm/fcrm/workspace/frappe_crm/frappe_crm.json +#. Header text in the Jingrow CRM Workspace +#: crm/fcrm/workspace/jingrow_crm/jingrow_crm.json msgid "PORTAL" msgstr "" @@ -139,7 +139,7 @@ msgstr "" msgid "@John, can you please check this?" msgstr "" -#: crm/fcrm/doctype/crm_lead/crm_lead.py:56 +#: crm/fcrm/pagetype/crm_lead/crm_lead.py:56 msgid "A Lead requires either a person's name or an organization's name" msgstr "" @@ -147,14 +147,14 @@ msgstr "" msgid "A new account has been created for you at {0}" msgstr "" -#. Label of the api_key (Data) field in DocType 'CRM Exotel Settings' -#. Label of the api_key (Data) field in DocType 'CRM Twilio Settings' -#. Label of the api_key (Data) field in DocType 'ERPNext CRM Settings' -#. Label of the api_key (Data) field in DocType 'Helpdesk CRM Settings' -#: crm/fcrm/doctype/crm_exotel_settings/crm_exotel_settings.json -#: crm/fcrm/doctype/crm_twilio_settings/crm_twilio_settings.json -#: crm/fcrm/doctype/erpnext_crm_settings/erpnext_crm_settings.json -#: crm/fcrm/doctype/helpdesk_crm_settings/helpdesk_crm_settings.json +#. Label of the api_key (Data) field in PageType 'CRM Exotel Settings' +#. Label of the api_key (Data) field in PageType 'CRM Twilio Settings' +#. Label of the api_key (Data) field in PageType 'ERPNext CRM Settings' +#. Label of the api_key (Data) field in PageType 'Helpdesk CRM Settings' +#: crm/fcrm/pagetype/crm_exotel_settings/crm_exotel_settings.json +#: crm/fcrm/pagetype/crm_twilio_settings/crm_twilio_settings.json +#: crm/fcrm/pagetype/erpnext_crm_settings/erpnext_crm_settings.json +#: crm/fcrm/pagetype/helpdesk_crm_settings/helpdesk_crm_settings.json msgid "API Key" msgstr "" @@ -162,17 +162,17 @@ msgstr "" msgid "API Key is required" msgstr "" -#. Label of the api_secret (Password) field in DocType 'CRM Twilio Settings' -#. Label of the api_secret (Password) field in DocType 'ERPNext CRM Settings' -#. Label of the api_secret (Password) field in DocType 'Helpdesk CRM Settings' -#: crm/fcrm/doctype/crm_twilio_settings/crm_twilio_settings.json -#: crm/fcrm/doctype/erpnext_crm_settings/erpnext_crm_settings.json -#: crm/fcrm/doctype/helpdesk_crm_settings/helpdesk_crm_settings.json +#. Label of the api_secret (Password) field in PageType 'CRM Twilio Settings' +#. Label of the api_secret (Password) field in PageType 'ERPNext CRM Settings' +#. Label of the api_secret (Password) field in PageType 'Helpdesk CRM Settings' +#: crm/fcrm/pagetype/crm_twilio_settings/crm_twilio_settings.json +#: crm/fcrm/pagetype/erpnext_crm_settings/erpnext_crm_settings.json +#: crm/fcrm/pagetype/helpdesk_crm_settings/helpdesk_crm_settings.json msgid "API Secret" msgstr "" -#. Label of the api_token (Password) field in DocType 'CRM Exotel Settings' -#: crm/fcrm/doctype/crm_exotel_settings/crm_exotel_settings.json +#. Label of the api_token (Password) field in PageType 'CRM Exotel Settings' +#: crm/fcrm/pagetype/crm_exotel_settings/crm_exotel_settings.json msgid "API Token" msgstr "" @@ -180,7 +180,7 @@ msgstr "" msgid "Accept" msgstr "" -#: crm/fcrm/doctype/crm_invitation/crm_invitation.js:7 +#: crm/fcrm/pagetype/crm_invitation/crm_invitation.js:7 msgid "Accept Invitation" msgstr "" @@ -188,22 +188,22 @@ msgstr "" msgid "Accept call" msgstr "" -#. Option for the 'Status' (Select) field in DocType 'CRM Invitation' -#: crm/fcrm/doctype/crm_invitation/crm_invitation.json +#. Option for the 'Status' (Select) field in PageType 'CRM Invitation' +#: crm/fcrm/pagetype/crm_invitation/crm_invitation.json msgid "Accepted" msgstr "" -#. Label of the accepted_at (Datetime) field in DocType 'CRM Invitation' -#: crm/fcrm/doctype/crm_invitation/crm_invitation.json +#. Label of the accepted_at (Datetime) field in PageType 'CRM Invitation' +#: crm/fcrm/pagetype/crm_invitation/crm_invitation.json msgid "Accepted At" msgstr "" -#. Label of the access_key (Data) field in DocType 'FCRM Settings' -#: crm/fcrm/doctype/fcrm_settings/fcrm_settings.json +#. Label of the access_key (Data) field in PageType 'FCRM Settings' +#: crm/fcrm/pagetype/fcrm_settings/fcrm_settings.json msgid "Access Key" msgstr "" -#: crm/fcrm/doctype/fcrm_settings/fcrm_settings.py:156 +#: crm/fcrm/pagetype/fcrm_settings/fcrm_settings.py:156 msgid "Access Key is required for Service Provider: {0}" msgstr "" @@ -219,10 +219,10 @@ msgstr "" msgid "Account Name" msgstr "" -#. Label of the account_sid (Data) field in DocType 'CRM Exotel Settings' -#. Label of the account_sid (Data) field in DocType 'CRM Twilio Settings' -#: crm/fcrm/doctype/crm_exotel_settings/crm_exotel_settings.json -#: crm/fcrm/doctype/crm_twilio_settings/crm_twilio_settings.json +#. Label of the account_sid (Data) field in PageType 'CRM Exotel Settings' +#. Label of the account_sid (Data) field in PageType 'CRM Twilio Settings' +#: crm/fcrm/pagetype/crm_exotel_settings/crm_exotel_settings.json +#: crm/fcrm/pagetype/crm_twilio_settings/crm_twilio_settings.json msgid "Account SID" msgstr "" @@ -296,9 +296,9 @@ msgstr "" msgid "Add Tab" msgstr "" -#. Label of the add_weekly_holidays_section (Section Break) field in DocType +#. Label of the add_weekly_holidays_section (Section Break) field in PageType #. 'CRM Holiday List' -#: crm/fcrm/doctype/crm_holiday_list/crm_holiday_list.json +#: crm/fcrm/pagetype/crm_holiday_list/crm_holiday_list.json msgid "Add Weekly Holidays" msgstr "" @@ -363,8 +363,8 @@ msgstr "" msgid "Add sample data" msgstr "" -#. Description of the 'Icon' (Code) field in DocType 'CRM Dropdown Item' -#: crm/fcrm/doctype/crm_dropdown_item/crm_dropdown_item.json +#. Description of the 'Icon' (Code) field in PageType 'CRM Dropdown Item' +#: crm/fcrm/pagetype/crm_dropdown_item/crm_dropdown_item.json msgid "Add svg code or use feather icons e.g 'settings'" msgstr "" @@ -372,8 +372,8 @@ msgstr "" msgid "Add task" msgstr "" -#. Label of the add_to_holidays (Button) field in DocType 'CRM Holiday List' -#: crm/fcrm/doctype/crm_holiday_list/crm_holiday_list.json +#. Label of the add_to_holidays (Button) field in PageType 'CRM Holiday List' +#: crm/fcrm/pagetype/crm_holiday_list/crm_holiday_list.json msgid "Add to Holidays" msgstr "" @@ -385,8 +385,8 @@ msgstr "" msgid "Add, edit, and manage email templates for various CRM communications" msgstr "" -#. Label of the address (Link) field in DocType 'CRM Organization' -#: crm/fcrm/doctype/crm_organization/crm_organization.json +#. Label of the address (Link) field in PageType 'CRM Organization' +#: crm/fcrm/pagetype/crm_organization/crm_organization.json msgid "Address" msgstr "" @@ -406,14 +406,14 @@ msgid "Agent is unavailable to take the call, please call after some time." msgstr "" #. Name of a role -#: crm/fcrm/doctype/crm_exotel_settings/crm_exotel_settings.json -#: crm/fcrm/doctype/crm_fields_layout/crm_fields_layout.json -#: crm/fcrm/doctype/crm_form_script/crm_form_script.json -#: crm/fcrm/doctype/crm_industry/crm_industry.json -#: crm/fcrm/doctype/crm_lead/crm_lead.json -#: crm/fcrm/doctype/crm_lead_source/crm_lead_source.json -#: crm/fcrm/doctype/crm_lead_status/crm_lead_status.json -#: crm/fcrm/doctype/fcrm_settings/fcrm_settings.json +#: crm/fcrm/pagetype/crm_exotel_settings/crm_exotel_settings.json +#: crm/fcrm/pagetype/crm_fields_layout/crm_fields_layout.json +#: crm/fcrm/pagetype/crm_form_script/crm_form_script.json +#: crm/fcrm/pagetype/crm_industry/crm_industry.json +#: crm/fcrm/pagetype/crm_lead/crm_lead.json +#: crm/fcrm/pagetype/crm_lead_source/crm_lead_source.json +#: crm/fcrm/pagetype/crm_lead_status/crm_lead_status.json +#: crm/fcrm/pagetype/fcrm_settings/fcrm_settings.json #: frontend/src/components/Settings/EmailTemplate/EmailTemplates.vue:76 #: frontend/src/components/Settings/Users.vue:85 msgid "All" @@ -426,16 +426,16 @@ msgstr "" msgid "All day" msgstr "" -#. Label of the amount (Currency) field in DocType 'CRM Products' -#: crm/fcrm/doctype/crm_products/crm_products.json +#. Label of the amount (Currency) field in PageType 'CRM Products' +#: crm/fcrm/pagetype/crm_products/crm_products.json #: frontend/src/pages/Contact.vue:499 frontend/src/pages/MobileContact.vue:507 #: frontend/src/pages/MobileOrganization.vue:451 #: frontend/src/pages/Organization.vue:472 msgid "Amount" msgstr "จำนวน" -#. Description of the 'Net Amount' (Currency) field in DocType 'CRM Products' -#: crm/fcrm/doctype/crm_products/crm_products.json +#. Description of the 'Net Amount' (Currency) field in PageType 'CRM Products' +#: crm/fcrm/pagetype/crm_products/crm_products.json msgid "Amount after discount" msgstr "" @@ -447,13 +447,13 @@ msgstr "" msgid "An error occurred while updating the document" msgstr "" -#. Description of the 'Favicon' (Attach) field in DocType 'FCRM Settings' -#: crm/fcrm/doctype/fcrm_settings/fcrm_settings.json +#. Description of the 'Favicon' (Attach) field in PageType 'FCRM Settings' +#: crm/fcrm/pagetype/fcrm_settings/fcrm_settings.json msgid "An icon file with .ico extension. Should be 16 x 16 px. Generated using a favicon generator. [favicon-generator.org]" msgstr "" -#. Description of the 'Logo' (Attach) field in DocType 'FCRM Settings' -#: crm/fcrm/doctype/fcrm_settings/fcrm_settings.json +#. Description of the 'Logo' (Attach) field in PageType 'FCRM Settings' +#: crm/fcrm/pagetype/fcrm_settings/fcrm_settings.json msgid "An image with 1:1 & 2:1 ratio is preferred" msgstr "" @@ -461,12 +461,12 @@ msgstr "" msgid "And" msgstr "" -#. Label of the annual_revenue (Currency) field in DocType 'CRM Deal' -#. Label of the annual_revenue (Currency) field in DocType 'CRM Lead' -#. Label of the annual_revenue (Currency) field in DocType 'CRM Organization' -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_lead/crm_lead.json -#: crm/fcrm/doctype/crm_organization/crm_organization.json +#. Label of the annual_revenue (Currency) field in PageType 'CRM Deal' +#. Label of the annual_revenue (Currency) field in PageType 'CRM Lead' +#. Label of the annual_revenue (Currency) field in PageType 'CRM Organization' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_lead/crm_lead.json +#: crm/fcrm/pagetype/crm_organization/crm_organization.json msgid "Annual Revenue" msgstr "" @@ -488,13 +488,13 @@ msgstr "" msgid "Apply" msgstr "" -#. Label of the apply_on (Link) field in DocType 'CRM Service Level Agreement' -#: crm/fcrm/doctype/crm_service_level_agreement/crm_service_level_agreement.json +#. Label of the apply_on (Link) field in PageType 'CRM Service Level Agreement' +#: crm/fcrm/pagetype/crm_service_level_agreement/crm_service_level_agreement.json msgid "Apply On" msgstr "" -#. Label of the view (Select) field in DocType 'CRM Form Script' -#: crm/fcrm/doctype/crm_form_script/crm_form_script.json +#. Label of the view (Select) field in PageType 'CRM Form Script' +#: crm/fcrm/pagetype/crm_form_script/crm_form_script.json msgid "Apply To" msgstr "" @@ -540,10 +540,10 @@ msgid "Are you sure you want to go back? Unsaved changes will be lost." msgstr "" #: frontend/src/composables/frappecloud.js:24 -msgid "Are you sure you want to login to your Frappe Cloud dashboard?" +msgid "Are you sure you want to login to your Jingrow Cloud dashboard?" msgstr "" -#: crm/fcrm/doctype/erpnext_crm_settings/erpnext_crm_settings.js:9 +#: crm/fcrm/pagetype/erpnext_crm_settings/erpnext_crm_settings.js:9 msgid "Are you sure you want to reset 'Create Quotation from CRM Deal' Form Script?" msgstr "คุณแน่ใจหรือไม่ว่าต้องการรีเซ็ตสคริปต์ฟอร์ม 'สร้างใบเสนอราคาจากข้อตกลง CRM'" @@ -555,7 +555,7 @@ msgstr "" msgid "Are you sure you want to unlink {0} linked item(s)?" msgstr "" -#: crm/fcrm/doctype/fcrm_settings/fcrm_settings.py:193 +#: crm/fcrm/pagetype/fcrm_settings/fcrm_settings.py:193 msgid "Ask your manager to set up the Exchange Rate Provider, as default provider does not support currency conversion for {0} to {1}." msgstr "" @@ -581,8 +581,8 @@ msgstr "" msgid "Assign to me" msgstr "" -#. Label of the assigned_to (Link) field in DocType 'CRM Task' -#: crm/fcrm/doctype/crm_task/crm_task.json +#. Label of the assigned_to (Link) field in PageType 'CRM Task' +#: crm/fcrm/pagetype/crm_task/crm_task.json msgid "Assigned To" msgstr "" @@ -594,13 +594,13 @@ msgstr "" msgid "Assignees" msgstr "" -#. Option for the 'Type' (Select) field in DocType 'CRM Notification' -#: crm/fcrm/doctype/crm_notification/crm_notification.json +#. Option for the 'Type' (Select) field in PageType 'CRM Notification' +#: crm/fcrm/pagetype/crm_notification/crm_notification.json msgid "Assignment" msgstr "" -#. Label of a shortcut in the Frappe CRM Workspace -#: crm/fcrm/workspace/frappe_crm/frappe_crm.json +#. Label of a shortcut in the Jingrow CRM Workspace +#: crm/fcrm/workspace/jingrow_crm/jingrow_crm.json msgid "Assignment Rule" msgstr "" @@ -678,14 +678,14 @@ msgstr "" msgid "Attendees" msgstr "" -#. Label of the auth_token (Password) field in DocType 'CRM Twilio Settings' -#: crm/fcrm/doctype/crm_twilio_settings/crm_twilio_settings.json +#. Label of the auth_token (Password) field in PageType 'CRM Twilio Settings' +#: crm/fcrm/pagetype/crm_twilio_settings/crm_twilio_settings.json msgid "Auth Token" msgstr "" -#. Label of the auto_update_expected_deal_value (Check) field in DocType 'FCRM +#. Label of the auto_update_expected_deal_value (Check) field in PageType 'FCRM #. Settings' -#: crm/fcrm/doctype/fcrm_settings/fcrm_settings.json +#: crm/fcrm/pagetype/fcrm_settings/fcrm_settings.json msgid "Auto Update Expected Deal Value" msgstr "" @@ -702,8 +702,8 @@ msgid "Auto update of expected deal value enabled" msgstr "" #. Description of the 'Auto Update Expected Deal Value' (Check) field in -#. DocType 'FCRM Settings' -#: crm/fcrm/doctype/fcrm_settings/fcrm_settings.json +#. PageType 'FCRM Settings' +#: crm/fcrm/pagetype/fcrm_settings/fcrm_settings.json #: frontend/src/components/Settings/ForecastingSettings.vue:46 msgid "Automatically update \"Expected Deal Value\" based on the total value of associated products in a deal" msgstr "" @@ -793,8 +793,8 @@ msgstr "" msgid "Back to file upload" msgstr "" -#. Option for the 'Status' (Select) field in DocType 'CRM Task' -#: crm/fcrm/doctype/crm_task/crm_task.json +#. Option for the 'Status' (Select) field in PageType 'CRM Task' +#: crm/fcrm/pagetype/crm_task/crm_task.json msgid "Backlog" msgstr "" @@ -818,8 +818,8 @@ msgstr "" msgid "Brand settings" msgstr "" -#. Label of the branding_tab (Tab Break) field in DocType 'FCRM Settings' -#: crm/fcrm/doctype/fcrm_settings/fcrm_settings.json +#. Label of the branding_tab (Tab Break) field in PageType 'FCRM Settings' +#: crm/fcrm/pagetype/fcrm_settings/fcrm_settings.json msgid "Branding" msgstr "" @@ -827,8 +827,8 @@ msgstr "" msgid "Bulk Edit" msgstr "" -#. Option for the 'Status' (Select) field in DocType 'CRM Call Log' -#: crm/fcrm/doctype/crm_call_log/crm_call_log.json +#. Option for the 'Status' (Select) field in PageType 'CRM Call Log' +#: crm/fcrm/pagetype/crm_call_log/crm_call_log.json msgid "Busy" msgstr "" @@ -838,174 +838,174 @@ msgstr "" msgid "CC" msgstr "สำเนาถึง" -#. Name of a DocType -#: crm/fcrm/doctype/crm_call_log/crm_call_log.json +#. Name of a PageType +#: crm/fcrm/pagetype/crm_call_log/crm_call_log.json msgid "CRM Call Log" msgstr "" -#. Name of a DocType -#: crm/fcrm/doctype/crm_communication_status/crm_communication_status.json +#. Name of a PageType +#: crm/fcrm/pagetype/crm_communication_status/crm_communication_status.json msgid "CRM Communication Status" msgstr "" -#. Name of a DocType -#: crm/fcrm/doctype/crm_contacts/crm_contacts.json +#. Name of a PageType +#: crm/fcrm/pagetype/crm_contacts/crm_contacts.json msgid "CRM Contacts" msgstr "" -#. Name of a DocType -#: crm/fcrm/doctype/crm_dashboard/crm_dashboard.json +#. Name of a PageType +#: crm/fcrm/pagetype/crm_dashboard/crm_dashboard.json #: frontend/src/pages/Dashboard.vue:304 msgid "CRM Dashboard" msgstr "" -#. Name of a DocType -#: crm/fcrm/doctype/crm_deal/crm_deal.json +#. Name of a PageType +#: crm/fcrm/pagetype/crm_deal/crm_deal.json msgid "CRM Deal" msgstr "" -#. Name of a DocType -#: crm/fcrm/doctype/crm_deal_status/crm_deal_status.json +#. Name of a PageType +#: crm/fcrm/pagetype/crm_deal_status/crm_deal_status.json msgid "CRM Deal Status" msgstr "" -#. Name of a DocType -#: crm/fcrm/doctype/crm_dropdown_item/crm_dropdown_item.json +#. Name of a PageType +#: crm/fcrm/pagetype/crm_dropdown_item/crm_dropdown_item.json msgid "CRM Dropdown Item" msgstr "" -#. Name of a DocType -#: crm/fcrm/doctype/crm_exotel_settings/crm_exotel_settings.json +#. Name of a PageType +#: crm/fcrm/pagetype/crm_exotel_settings/crm_exotel_settings.json msgid "CRM Exotel Settings" msgstr "" -#. Name of a DocType -#: crm/fcrm/doctype/crm_fields_layout/crm_fields_layout.json +#. Name of a PageType +#: crm/fcrm/pagetype/crm_fields_layout/crm_fields_layout.json msgid "CRM Fields Layout" msgstr "" -#. Name of a DocType -#: crm/fcrm/doctype/crm_form_script/crm_form_script.json +#. Name of a PageType +#: crm/fcrm/pagetype/crm_form_script/crm_form_script.json msgid "CRM Form Script" msgstr "" -#. Name of a DocType -#: crm/fcrm/doctype/crm_global_settings/crm_global_settings.json +#. Name of a PageType +#: crm/fcrm/pagetype/crm_global_settings/crm_global_settings.json msgid "CRM Global Settings" msgstr "" -#. Name of a DocType -#: crm/fcrm/doctype/crm_holiday/crm_holiday.json +#. Name of a PageType +#: crm/fcrm/pagetype/crm_holiday/crm_holiday.json msgid "CRM Holiday" msgstr "" -#. Name of a DocType -#: crm/fcrm/doctype/crm_holiday_list/crm_holiday_list.json +#. Name of a PageType +#: crm/fcrm/pagetype/crm_holiday_list/crm_holiday_list.json msgid "CRM Holiday List" msgstr "" -#. Name of a DocType -#: crm/fcrm/doctype/crm_industry/crm_industry.json +#. Name of a PageType +#: crm/fcrm/pagetype/crm_industry/crm_industry.json msgid "CRM Industry" msgstr "" -#. Name of a DocType -#: crm/fcrm/doctype/crm_invitation/crm_invitation.json +#. Name of a PageType +#: crm/fcrm/pagetype/crm_invitation/crm_invitation.json msgid "CRM Invitation" msgstr "" -#. Name of a DocType -#: crm/fcrm/doctype/crm_lead/crm_lead.json +#. Name of a PageType +#: crm/fcrm/pagetype/crm_lead/crm_lead.json msgid "CRM Lead" msgstr "" -#. Name of a DocType -#: crm/fcrm/doctype/crm_lead_source/crm_lead_source.json +#. Name of a PageType +#: crm/fcrm/pagetype/crm_lead_source/crm_lead_source.json msgid "CRM Lead Source" msgstr "" -#. Name of a DocType -#: crm/fcrm/doctype/crm_lead_status/crm_lead_status.json +#. Name of a PageType +#: crm/fcrm/pagetype/crm_lead_status/crm_lead_status.json msgid "CRM Lead Status" msgstr "" -#. Name of a DocType -#: crm/fcrm/doctype/crm_lost_reason/crm_lost_reason.json +#. Name of a PageType +#: crm/fcrm/pagetype/crm_lost_reason/crm_lost_reason.json msgid "CRM Lost Reason" msgstr "" -#. Name of a DocType -#: crm/fcrm/doctype/crm_notification/crm_notification.json +#. Name of a PageType +#: crm/fcrm/pagetype/crm_notification/crm_notification.json msgid "CRM Notification" msgstr "" -#. Name of a DocType -#: crm/fcrm/doctype/crm_organization/crm_organization.json +#. Name of a PageType +#: crm/fcrm/pagetype/crm_organization/crm_organization.json msgid "CRM Organization" msgstr "" -#. Label of a shortcut in the Frappe CRM Workspace -#: crm/fcrm/workspace/frappe_crm/frappe_crm.json +#. Label of a shortcut in the Jingrow CRM Workspace +#: crm/fcrm/workspace/jingrow_crm/jingrow_crm.json msgid "CRM Portal Page" msgstr "" -#. Name of a DocType -#: crm/fcrm/doctype/crm_product/crm_product.json +#. Name of a PageType +#: crm/fcrm/pagetype/crm_product/crm_product.json msgid "CRM Product" msgstr "" -#. Name of a DocType -#: crm/fcrm/doctype/crm_products/crm_products.json +#. Name of a PageType +#: crm/fcrm/pagetype/crm_products/crm_products.json msgid "CRM Products" msgstr "" -#. Name of a DocType -#: crm/fcrm/doctype/crm_service_day/crm_service_day.json +#. Name of a PageType +#: crm/fcrm/pagetype/crm_service_day/crm_service_day.json msgid "CRM Service Day" msgstr "" -#. Name of a DocType -#: crm/fcrm/doctype/crm_service_level_agreement/crm_service_level_agreement.json +#. Name of a PageType +#: crm/fcrm/pagetype/crm_service_level_agreement/crm_service_level_agreement.json msgid "CRM Service Level Agreement" msgstr "" -#. Name of a DocType -#: crm/fcrm/doctype/crm_service_level_priority/crm_service_level_priority.json +#. Name of a PageType +#: crm/fcrm/pagetype/crm_service_level_priority/crm_service_level_priority.json msgid "CRM Service Level Priority" msgstr "" -#. Name of a DocType -#: crm/fcrm/doctype/crm_status_change_log/crm_status_change_log.json +#. Name of a PageType +#: crm/fcrm/pagetype/crm_status_change_log/crm_status_change_log.json msgid "CRM Status Change Log" msgstr "" -#. Name of a DocType -#: crm/fcrm/doctype/crm_task/crm_task.json +#. Name of a PageType +#: crm/fcrm/pagetype/crm_task/crm_task.json msgid "CRM Task" msgstr "" -#. Name of a DocType -#: crm/fcrm/doctype/crm_telephony_agent/crm_telephony_agent.json +#. Name of a PageType +#: crm/fcrm/pagetype/crm_telephony_agent/crm_telephony_agent.json msgid "CRM Telephony Agent" msgstr "" -#. Name of a DocType -#: crm/fcrm/doctype/crm_telephony_phone/crm_telephony_phone.json +#. Name of a PageType +#: crm/fcrm/pagetype/crm_telephony_phone/crm_telephony_phone.json msgid "CRM Telephony Phone" msgstr "" -#. Name of a DocType -#: crm/fcrm/doctype/crm_territory/crm_territory.json +#. Name of a PageType +#: crm/fcrm/pagetype/crm_territory/crm_territory.json msgid "CRM Territory" msgstr "" -#. Name of a DocType -#: crm/fcrm/doctype/crm_twilio_settings/crm_twilio_settings.json +#. Name of a PageType +#: crm/fcrm/pagetype/crm_twilio_settings/crm_twilio_settings.json msgid "CRM Twilio Settings" msgstr "" -#. Name of a DocType -#: crm/fcrm/doctype/crm_view_settings/crm_view_settings.json +#. Name of a PageType +#: crm/fcrm/pagetype/crm_view_settings/crm_view_settings.json msgid "CRM View Settings" msgstr "" @@ -1021,13 +1021,13 @@ msgstr "" msgid "Call Details" msgstr "รายละเอียดการโทร" -#. Label of the receiver (Link) field in DocType 'CRM Call Log' -#: crm/fcrm/doctype/crm_call_log/crm_call_log.json +#. Label of the receiver (Link) field in PageType 'CRM Call Log' +#: crm/fcrm/pagetype/crm_call_log/crm_call_log.json msgid "Call Received By" msgstr "การโทรได้รับโดย" -#. Description of the 'Duration' (Duration) field in DocType 'CRM Call Log' -#: crm/fcrm/doctype/crm_call_log/crm_call_log.json +#. Description of the 'Duration' (Duration) field in PageType 'CRM Call Log' +#: crm/fcrm/pagetype/crm_call_log/crm_call_log.json msgid "Call duration in seconds" msgstr "" @@ -1045,8 +1045,8 @@ msgstr "" msgid "Call with John Doe" msgstr "" -#. Label of the caller (Link) field in DocType 'CRM Call Log' -#: crm/fcrm/doctype/crm_call_log/crm_call_log.json +#. Label of the caller (Link) field in PageType 'CRM Call Log' +#: crm/fcrm/pagetype/crm_call_log/crm_call_log.json msgid "Caller" msgstr "" @@ -1083,10 +1083,10 @@ msgstr "กล้อง" msgid "Cancel" msgstr "" -#. Option for the 'Status' (Select) field in DocType 'CRM Call Log' -#. Option for the 'Status' (Select) field in DocType 'CRM Task' -#: crm/fcrm/doctype/crm_call_log/crm_call_log.json -#: crm/fcrm/doctype/crm_task/crm_task.json +#. Option for the 'Status' (Select) field in PageType 'CRM Call Log' +#. Option for the 'Status' (Select) field in PageType 'CRM Task' +#: crm/fcrm/pagetype/crm_call_log/crm_call_log.json +#: crm/fcrm/pagetype/crm_task/crm_task.json msgid "Canceled" msgstr "" @@ -1094,7 +1094,7 @@ msgstr "" msgid "Cannot change role of user with Admin access" msgstr "" -#: crm/fcrm/doctype/fcrm_settings/fcrm_settings.py:34 +#: crm/fcrm/pagetype/fcrm_settings/fcrm_settings.py:34 msgid "Cannot delete standard items {0}" msgstr "" @@ -1189,8 +1189,8 @@ msgstr "" msgid "Clear Sort" msgstr "" -#. Label of the clear_table (Button) field in DocType 'CRM Holiday List' -#: crm/fcrm/doctype/crm_holiday_list/crm_holiday_list.json +#. Label of the clear_table (Button) field in PageType 'CRM Holiday List' +#: crm/fcrm/pagetype/crm_holiday_list/crm_holiday_list.json msgid "Clear Table" msgstr "" @@ -1211,8 +1211,8 @@ msgstr "" msgid "Close panel" msgstr "" -#. Label of the closed_date (Date) field in DocType 'CRM Deal' -#: crm/fcrm/doctype/crm_deal/crm_deal.json +#. Label of the closed_date (Date) field in PageType 'CRM Deal' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json msgid "Closed Date" msgstr "" @@ -1224,10 +1224,10 @@ msgstr "" msgid "Collapsible" msgstr "" -#. Label of the color (Select) field in DocType 'CRM Deal Status' -#. Label of the color (Select) field in DocType 'CRM Lead Status' -#: crm/fcrm/doctype/crm_deal_status/crm_deal_status.json -#: crm/fcrm/doctype/crm_lead_status/crm_lead_status.json +#. Label of the color (Select) field in PageType 'CRM Deal Status' +#. Label of the color (Select) field in PageType 'CRM Lead Status' +#: crm/fcrm/pagetype/crm_deal_status/crm_deal_status.json +#: crm/fcrm/pagetype/crm_lead_status/crm_lead_status.json msgid "Color" msgstr "" @@ -1235,20 +1235,20 @@ msgstr "" msgid "Column" msgstr "" -#. Label of the column_field (Data) field in DocType 'CRM View Settings' -#: crm/fcrm/doctype/crm_view_settings/crm_view_settings.json +#. Label of the column_field (Data) field in PageType 'CRM View Settings' +#: crm/fcrm/pagetype/crm_view_settings/crm_view_settings.json #: frontend/src/components/Kanban/KanbanSettings.vue:12 msgid "Column Field" msgstr "" -#. Label of the columns (Code) field in DocType 'CRM View Settings' -#: crm/fcrm/doctype/crm_view_settings/crm_view_settings.json +#. Label of the columns (Code) field in PageType 'CRM View Settings' +#: crm/fcrm/pagetype/crm_view_settings/crm_view_settings.json #: frontend/src/components/ColumnSettings.vue:4 msgid "Columns" msgstr "" -#. Label of the comment (Link) field in DocType 'CRM Notification' -#: crm/fcrm/doctype/crm_notification/crm_notification.json +#. Label of the comment (Link) field in PageType 'CRM Notification' +#: crm/fcrm/pagetype/crm_notification/crm_notification.json #: frontend/src/components/CommentBox.vue:78 #: frontend/src/components/CommunicationArea.vue:16 #: frontend/src/components/Layouts/AppSidebar.vue:579 @@ -1264,20 +1264,20 @@ msgstr "" msgid "Common reasons for losing deals" msgstr "" -#. Label of the communication_status (Link) field in DocType 'CRM Deal' -#. Label of the communication_status (Link) field in DocType 'CRM Lead' -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_lead/crm_lead.json +#. Label of the communication_status (Link) field in PageType 'CRM Deal' +#. Label of the communication_status (Link) field in PageType 'CRM Lead' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_lead/crm_lead.json msgid "Communication Status" msgstr "" -#. Label of a shortcut in the Frappe CRM Workspace -#: crm/fcrm/workspace/frappe_crm/frappe_crm.json +#. Label of a shortcut in the Jingrow CRM Workspace +#: crm/fcrm/workspace/jingrow_crm/jingrow_crm.json msgid "Communication Statuses" msgstr "" -#. Label of the erpnext_company (Data) field in DocType 'ERPNext CRM Settings' -#: crm/fcrm/doctype/erpnext_crm_settings/erpnext_crm_settings.json +#. Label of the erpnext_company (Data) field in PageType 'ERPNext CRM Settings' +#: crm/fcrm/pagetype/erpnext_crm_settings/erpnext_crm_settings.json msgid "Company in ERPNext Site" msgstr "" @@ -1285,18 +1285,18 @@ msgstr "" msgid "Complete Registration" msgstr "" -#. Option for the 'Status' (Select) field in DocType 'CRM Call Log' -#: crm/fcrm/doctype/crm_call_log/crm_call_log.json +#. Option for the 'Status' (Select) field in PageType 'CRM Call Log' +#: crm/fcrm/pagetype/crm_call_log/crm_call_log.json msgid "Completed" msgstr "" -#. Option for the 'Device' (Select) field in DocType 'CRM Telephony Agent' -#: crm/fcrm/doctype/crm_telephony_agent/crm_telephony_agent.json +#. Option for the 'Device' (Select) field in PageType 'CRM Telephony Agent' +#: crm/fcrm/pagetype/crm_telephony_agent/crm_telephony_agent.json msgid "Computer" msgstr "" -#. Label of the condition (Code) field in DocType 'CRM Service Level Agreement' -#: crm/fcrm/doctype/crm_service_level_agreement/crm_service_level_agreement.json +#. Label of the condition (Code) field in PageType 'CRM Service Level Agreement' +#: crm/fcrm/pagetype/crm_service_level_agreement/crm_service_level_agreement.json msgid "Condition" msgstr "" @@ -1354,17 +1354,17 @@ msgstr "" msgid "Connect your email" msgstr "" -#. Label of the contact (Link) field in DocType 'CRM Contacts' -#. Label of the contact (Link) field in DocType 'CRM Deal' -#: crm/fcrm/doctype/crm_contacts/crm_contacts.json -#: crm/fcrm/doctype/crm_deal/crm_deal.json +#. Label of the contact (Link) field in PageType 'CRM Contacts' +#. Label of the contact (Link) field in PageType 'CRM Deal' +#: crm/fcrm/pagetype/crm_contacts/crm_contacts.json +#: crm/fcrm/pagetype/crm_deal/crm_deal.json #: frontend/src/components/Layouts/AppSidebar.vue:552 #: frontend/src/components/Modals/ConvertToDealModal.vue:51 #: frontend/src/pages/MobileLead.vue:145 msgid "Contact" msgstr "" -#: crm/fcrm/doctype/crm_lead/crm_lead.py:212 +#: crm/fcrm/pagetype/crm_lead/crm_lead.py:212 msgid "Contact Already Exists" msgstr "" @@ -1384,7 +1384,7 @@ msgstr "" msgid "Contact already added" msgstr "" -#: crm/fcrm/doctype/crm_lead/crm_lead.py:211 +#: crm/fcrm/pagetype/crm_lead/crm_lead.py:211 msgid "Contact already exists with {0}" msgstr "" @@ -1405,18 +1405,18 @@ msgstr "" msgid "Contact updated" msgstr "" -#. Label of the contacts_tab (Tab Break) field in DocType 'CRM Deal' -#. Label of the contacts (Table) field in DocType 'CRM Deal' -#. Label of a shortcut in the Frappe CRM Workspace -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/workspace/frappe_crm/frappe_crm.json +#. Label of the contacts_tab (Tab Break) field in PageType 'CRM Deal' +#. Label of the contacts (Table) field in PageType 'CRM Deal' +#. Label of a shortcut in the Jingrow CRM Workspace +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/workspace/jingrow_crm/jingrow_crm.json #: frontend/src/pages/Contact.vue:234 frontend/src/pages/MobileContact.vue:212 #: frontend/src/pages/MobileOrganization.vue:331 msgid "Contacts" msgstr "" -#. Label of the content (Text Editor) field in DocType 'FCRM Note' -#: crm/fcrm/doctype/fcrm_note/fcrm_note.json +#. Label of the content (Text Editor) field in PageType 'FCRM Note' +#: crm/fcrm/pagetype/fcrm_note/fcrm_note.json #: frontend/src/components/Modals/NoteModal.vue:33 #: frontend/src/components/Settings/EmailTemplate/EditEmailTemplate.vue:89 #: frontend/src/components/Settings/EmailTemplate/EditEmailTemplate.vue:102 @@ -1456,8 +1456,8 @@ msgstr "" msgid "Convert to Deal" msgstr "" -#. Label of the converted (Check) field in DocType 'CRM Lead' -#: crm/fcrm/doctype/crm_lead/crm_lead.json +#. Label of the converted (Check) field in PageType 'CRM Lead' +#: crm/fcrm/pagetype/crm_lead/crm_lead.json msgid "Converted" msgstr "แปลงแล้ว" @@ -1533,9 +1533,9 @@ msgstr "" msgid "Create an event" msgstr "" -#. Label of the create_customer_on_status_change (Check) field in DocType +#. Label of the create_customer_on_status_change (Check) field in PageType #. 'ERPNext CRM Settings' -#: crm/fcrm/doctype/erpnext_crm_settings/erpnext_crm_settings.json +#: crm/fcrm/pagetype/erpnext_crm_settings/erpnext_crm_settings.json msgid "Create customer on status change" msgstr "" @@ -1560,13 +1560,13 @@ msgstr "" msgid "Create your first task" msgstr "" -#. Label of the currency (Link) field in DocType 'CRM Deal' -#. Label of the currency (Link) field in DocType 'CRM Organization' -#. Label of the currency (Link) field in DocType 'FCRM Settings' -#. Label of the currency_tab (Tab Break) field in DocType 'FCRM Settings' -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_organization/crm_organization.json -#: crm/fcrm/doctype/fcrm_settings/fcrm_settings.json +#. Label of the currency (Link) field in PageType 'CRM Deal' +#. Label of the currency (Link) field in PageType 'CRM Organization' +#. Label of the currency (Link) field in PageType 'FCRM Settings' +#. Label of the currency_tab (Tab Break) field in PageType 'FCRM Settings' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_organization/crm_organization.json +#: crm/fcrm/pagetype/fcrm_settings/fcrm_settings.json #: frontend/src/components/Settings/CurrencySettings.vue:31 msgid "Currency" msgstr "" @@ -1631,13 +1631,13 @@ msgstr "" msgid "Data" msgstr "ข้อมูล" -#. Option for the 'Type' (Select) field in DocType 'CRM Fields Layout' -#: crm/fcrm/doctype/crm_fields_layout/crm_fields_layout.json +#. Option for the 'Type' (Select) field in PageType 'CRM Fields Layout' +#: crm/fcrm/pagetype/crm_fields_layout/crm_fields_layout.json msgid "Data Fields" msgstr "" -#. Label of the date (Date) field in DocType 'CRM Holiday' -#: crm/api/dashboard.py:601 crm/fcrm/doctype/crm_holiday/crm_holiday.json +#. Label of the date (Date) field in PageType 'CRM Holiday' +#: crm/api/dashboard.py:601 crm/fcrm/pagetype/crm_holiday/crm_holiday.json #: frontend/src/components/Calendar/CalendarEventPanel.vue:202 msgid "Date" msgstr "วันที่" @@ -1660,23 +1660,23 @@ msgstr "" msgid "Deal" msgstr "" -#. Label of the deal_owner (Link) field in DocType 'CRM Deal' -#: crm/fcrm/doctype/crm_deal/crm_deal.json +#. Label of the deal_owner (Link) field in PageType 'CRM Deal' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json msgid "Deal Owner" msgstr "เจ้าของดีล" -#. Label of the deal_status (Link) field in DocType 'ERPNext CRM Settings' -#: crm/fcrm/doctype/erpnext_crm_settings/erpnext_crm_settings.json +#. Label of the deal_status (Link) field in PageType 'ERPNext CRM Settings' +#: crm/fcrm/pagetype/erpnext_crm_settings/erpnext_crm_settings.json msgid "Deal Status" msgstr "" -#. Label of a shortcut in the Frappe CRM Workspace -#: crm/fcrm/workspace/frappe_crm/frappe_crm.json +#. Label of a shortcut in the Jingrow CRM Workspace +#: crm/fcrm/workspace/jingrow_crm/jingrow_crm.json msgid "Deal Statuses" msgstr "" -#. Label of the deal_value (Currency) field in DocType 'CRM Deal' -#: crm/fcrm/doctype/crm_deal/crm_deal.json +#. Label of the deal_value (Currency) field in PageType 'CRM Deal' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json msgid "Deal Value" msgstr "" @@ -1694,8 +1694,8 @@ msgstr "" msgid "Deal value" msgstr "" -#. Label of a shortcut in the Frappe CRM Workspace -#: crm/fcrm/workspace/frappe_crm/frappe_crm.json +#. Label of a shortcut in the Jingrow CRM Workspace +#: crm/fcrm/workspace/jingrow_crm/jingrow_crm.json #: frontend/src/pages/Deal.vue:480 frontend/src/pages/MobileContact.vue:288 #: frontend/src/pages/MobileDeal.vue:384 #: frontend/src/pages/MobileOrganization.vue:325 @@ -1732,8 +1732,8 @@ msgstr "" msgid "Dear {{ lead_name }}, \\n\\nThis is a reminder for the payment of {{ grand_total }}. \\n\\nThanks, \\nFrappé" msgstr "" -#. Label of the default (Check) field in DocType 'CRM Service Level Agreement' -#: crm/fcrm/doctype/crm_service_level_agreement/crm_service_level_agreement.json +#. Label of the default (Check) field in PageType 'CRM Service Level Agreement' +#: crm/fcrm/pagetype/crm_service_level_agreement/crm_service_level_agreement.json msgid "Default" msgstr "ค่าเริ่มต้น" @@ -1745,8 +1745,8 @@ msgstr "" msgid "Default Incoming" msgstr "" -#. Label of the default_medium (Select) field in DocType 'CRM Telephony Agent' -#: crm/fcrm/doctype/crm_telephony_agent/crm_telephony_agent.json +#. Label of the default_medium (Select) field in PageType 'CRM Telephony Agent' +#: crm/fcrm/pagetype/crm_telephony_agent/crm_telephony_agent.json msgid "Default Medium" msgstr "" @@ -1754,9 +1754,9 @@ msgstr "" msgid "Default Outgoing" msgstr "" -#. Label of the default_priority (Check) field in DocType 'CRM Service Level +#. Label of the default_priority (Check) field in PageType 'CRM Service Level #. Priority' -#: crm/fcrm/doctype/crm_service_level_priority/crm_service_level_priority.json +#: crm/fcrm/pagetype/crm_service_level_priority/crm_service_level_priority.json msgid "Default Priority" msgstr "" @@ -1768,7 +1768,7 @@ msgstr "" msgid "Default Sending and Inbox" msgstr "" -#: crm/fcrm/doctype/crm_service_level_agreement/crm_service_level_agreement.py:33 +#: crm/fcrm/pagetype/crm_service_level_agreement/crm_service_level_agreement.py:33 msgid "Default Service Level Agreement already exists for {0}" msgstr "" @@ -1788,8 +1788,8 @@ msgstr "" msgid "Default medium" msgstr "" -#: crm/fcrm/doctype/fcrm_settings/fcrm_settings.js:18 -#: crm/fcrm/doctype/fcrm_settings/fcrm_settings.js:30 +#: crm/fcrm/pagetype/fcrm_settings/fcrm_settings.js:18 +#: crm/fcrm/pagetype/fcrm_settings/fcrm_settings.js:30 msgid "Default statuses, custom fields and layouts restored successfully." msgstr "" @@ -1825,7 +1825,7 @@ msgstr "" msgid "Delete" msgstr "ลบ" -#: crm/fcrm/doctype/fcrm_settings/fcrm_settings.js:26 +#: crm/fcrm/pagetype/fcrm_settings/fcrm_settings.js:26 msgid "Delete & Restore" msgstr "" @@ -1883,14 +1883,14 @@ msgstr "" msgid "Delete {0} items" msgstr "" -#. Label of the description (Text Editor) field in DocType 'CRM Holiday' -#. Label of the description (Text Editor) field in DocType 'CRM Lost Reason' -#. Label of the description (Text Editor) field in DocType 'CRM Product' -#. Label of the description (Text Editor) field in DocType 'CRM Task' -#: crm/fcrm/doctype/crm_holiday/crm_holiday.json -#: crm/fcrm/doctype/crm_lost_reason/crm_lost_reason.json -#: crm/fcrm/doctype/crm_product/crm_product.json -#: crm/fcrm/doctype/crm_task/crm_task.json +#. Label of the description (Text Editor) field in PageType 'CRM Holiday' +#. Label of the description (Text Editor) field in PageType 'CRM Lost Reason' +#. Label of the description (Text Editor) field in PageType 'CRM Product' +#. Label of the description (Text Editor) field in PageType 'CRM Task' +#: crm/fcrm/pagetype/crm_holiday/crm_holiday.json +#: crm/fcrm/pagetype/crm_lost_reason/crm_lost_reason.json +#: crm/fcrm/pagetype/crm_product/crm_product.json +#: crm/fcrm/pagetype/crm_task/crm_task.json #: frontend/src/components/Calendar/CalendarEventPanel.vue:152 #: frontend/src/components/Modals/EventModal.vue:134 #: frontend/src/components/Modals/TaskModal.vue:36 @@ -1907,29 +1907,29 @@ msgstr "" msgid "Desk" msgstr "" -#. Label of the details (Tab Break) field in DocType 'CRM Lead' -#. Label of the details (Text Editor) field in DocType 'CRM Lead Source' -#: crm/fcrm/doctype/crm_lead/crm_lead.json -#: crm/fcrm/doctype/crm_lead_source/crm_lead_source.json +#. Label of the details (Tab Break) field in PageType 'CRM Lead' +#. Label of the details (Text Editor) field in PageType 'CRM Lead Source' +#: crm/fcrm/pagetype/crm_lead/crm_lead.json +#: crm/fcrm/pagetype/crm_lead_source/crm_lead_source.json #: frontend/src/pages/MobileContact.vue:283 #: frontend/src/pages/MobileDeal.vue:424 frontend/src/pages/MobileLead.vue:331 #: frontend/src/pages/MobileOrganization.vue:320 msgid "Details" msgstr "" -#. Label of the call_receiving_device (Select) field in DocType 'CRM Telephony +#. Label of the call_receiving_device (Select) field in PageType 'CRM Telephony #. Agent' -#: crm/fcrm/doctype/crm_telephony_agent/crm_telephony_agent.json +#: crm/fcrm/pagetype/crm_telephony_agent/crm_telephony_agent.json #: frontend/src/components/FilesUploader/FilesUploaderArea.vue:39 msgid "Device" msgstr "" -#: crm/fcrm/doctype/crm_form_script/crm_form_script.js:30 +#: crm/fcrm/pagetype/crm_form_script/crm_form_script.js:30 msgid "Disable" msgstr "" -#. Label of the disabled (Check) field in DocType 'CRM Product' -#: crm/fcrm/doctype/crm_product/crm_product.json +#. Label of the disabled (Check) field in PageType 'CRM Product' +#: crm/fcrm/pagetype/crm_product/crm_product.json msgid "Disabled" msgstr "" @@ -1943,27 +1943,27 @@ msgstr "" msgid "Discard unsaved changes?" msgstr "" -#. Label of the discount_percentage (Percent) field in DocType 'CRM Products' -#: crm/fcrm/doctype/crm_products/crm_products.json +#. Label of the discount_percentage (Percent) field in PageType 'CRM Products' +#: crm/fcrm/pagetype/crm_products/crm_products.json msgid "Discount %" msgstr "ส่วนลด %" -#. Label of the discount_amount (Currency) field in DocType 'CRM Products' -#: crm/fcrm/doctype/crm_products/crm_products.json +#. Label of the discount_amount (Currency) field in PageType 'CRM Products' +#: crm/fcrm/pagetype/crm_products/crm_products.json msgid "Discount Amount" msgstr "" -#. Label of the dt (Link) field in DocType 'CRM Form Script' -#. Label of the dt (Link) field in DocType 'CRM Global Settings' -#. Label of the dt (Link) field in DocType 'CRM View Settings' -#: crm/fcrm/doctype/crm_form_script/crm_form_script.json -#: crm/fcrm/doctype/crm_global_settings/crm_global_settings.json -#: crm/fcrm/doctype/crm_view_settings/crm_view_settings.json -msgid "DocType" +#. Label of the dt (Link) field in PageType 'CRM Form Script' +#. Label of the dt (Link) field in PageType 'CRM Global Settings' +#. Label of the dt (Link) field in PageType 'CRM View Settings' +#: crm/fcrm/pagetype/crm_form_script/crm_form_script.json +#: crm/fcrm/pagetype/crm_global_settings/crm_global_settings.json +#: crm/fcrm/pagetype/crm_view_settings/crm_view_settings.json +msgid "PageType" msgstr "" -#. Label of the dt (Link) field in DocType 'CRM Fields Layout' -#: crm/fcrm/doctype/crm_fields_layout/crm_fields_layout.json +#. Label of the dt (Link) field in PageType 'CRM Fields Layout' +#: crm/fcrm/pagetype/crm_fields_layout/crm_fields_layout.json msgid "Document Type" msgstr "" @@ -1983,8 +1983,8 @@ msgstr "" msgid "Documentation" msgstr "เอกสารประกอบ" -#. Option for the 'Status' (Select) field in DocType 'CRM Task' -#: crm/fcrm/doctype/crm_task/crm_task.json +#. Option for the 'Status' (Select) field in PageType 'CRM Task' +#: crm/fcrm/pagetype/crm_task/crm_task.json msgid "Done" msgstr "เสร็จสิ้น" @@ -2006,13 +2006,13 @@ msgstr "ลากและวางไฟล์ที่นี่หรืออ msgid "Drop files here" msgstr "วางไฟล์ที่นี่" -#. Label of the dropdown_items_tab (Tab Break) field in DocType 'FCRM Settings' -#: crm/fcrm/doctype/fcrm_settings/fcrm_settings.json +#. Label of the dropdown_items_tab (Tab Break) field in PageType 'FCRM Settings' +#: crm/fcrm/pagetype/fcrm_settings/fcrm_settings.json msgid "Dropdown Items" msgstr "" -#. Label of the due_date (Datetime) field in DocType 'CRM Task' -#: crm/fcrm/doctype/crm_task/crm_task.json +#. Label of the due_date (Datetime) field in PageType 'CRM Task' +#: crm/fcrm/pagetype/crm_task/crm_task.json msgid "Due Date" msgstr "วันที่ครบกำหนด" @@ -2048,10 +2048,10 @@ msgstr "" msgid "Duplicate template" msgstr "" -#. Label of the duration (Duration) field in DocType 'CRM Call Log' -#. Label of the duration (Duration) field in DocType 'CRM Status Change Log' -#: crm/fcrm/doctype/crm_call_log/crm_call_log.json -#: crm/fcrm/doctype/crm_status_change_log/crm_status_change_log.json +#. Label of the duration (Duration) field in PageType 'CRM Call Log' +#. Label of the duration (Duration) field in PageType 'CRM Status Change Log' +#: crm/fcrm/pagetype/crm_call_log/crm_call_log.json +#: crm/fcrm/pagetype/crm_status_change_log/crm_status_change_log.json msgid "Duration" msgstr "ระยะเวลา" @@ -2060,28 +2060,28 @@ msgstr "ระยะเวลา" msgid "ERPNext" msgstr "" -#. Name of a DocType -#: crm/fcrm/doctype/erpnext_crm_settings/erpnext_crm_settings.json +#. Name of a PageType +#: crm/fcrm/pagetype/erpnext_crm_settings/erpnext_crm_settings.json msgid "ERPNext CRM Settings" msgstr "" -#. Label of the section_break_oubd (Section Break) field in DocType 'ERPNext +#. Label of the section_break_oubd (Section Break) field in PageType 'ERPNext #. CRM Settings' -#: crm/fcrm/doctype/erpnext_crm_settings/erpnext_crm_settings.json +#: crm/fcrm/pagetype/erpnext_crm_settings/erpnext_crm_settings.json msgid "ERPNext Site API's" msgstr "" -#. Label of the erpnext_site_url (Data) field in DocType 'ERPNext CRM Settings' -#: crm/fcrm/doctype/erpnext_crm_settings/erpnext_crm_settings.json +#. Label of the erpnext_site_url (Data) field in PageType 'ERPNext CRM Settings' +#: crm/fcrm/pagetype/erpnext_crm_settings/erpnext_crm_settings.json msgid "ERPNext Site URL" msgstr "" -#: crm/fcrm/doctype/erpnext_crm_settings/erpnext_crm_settings.py:25 +#: crm/fcrm/pagetype/erpnext_crm_settings/erpnext_crm_settings.py:25 msgid "ERPNext is not installed in the current site" msgstr "" -#: crm/fcrm/doctype/erpnext_crm_settings/erpnext_crm_settings.py:98 -#: crm/fcrm/doctype/erpnext_crm_settings/erpnext_crm_settings.py:124 +#: crm/fcrm/pagetype/erpnext_crm_settings/erpnext_crm_settings.py:98 +#: crm/fcrm/pagetype/erpnext_crm_settings/erpnext_crm_settings.py:124 msgid "ERPNext is not integrated with the CRM" msgstr "" @@ -2191,12 +2191,12 @@ msgstr "" msgid "Editing event" msgstr "" -#. Label of the email (Data) field in DocType 'CRM Contacts' -#. Label of the email (Data) field in DocType 'CRM Invitation' -#. Label of the email (Data) field in DocType 'CRM Lead' -#: crm/fcrm/doctype/crm_contacts/crm_contacts.json -#: crm/fcrm/doctype/crm_invitation/crm_invitation.json -#: crm/fcrm/doctype/crm_lead/crm_lead.json frontend/src/pages/Contact.vue:510 +#. Label of the email (Data) field in PageType 'CRM Contacts' +#. Label of the email (Data) field in PageType 'CRM Invitation' +#. Label of the email (Data) field in PageType 'CRM Lead' +#: crm/fcrm/pagetype/crm_contacts/crm_contacts.json +#: crm/fcrm/pagetype/crm_invitation/crm_invitation.json +#: crm/fcrm/pagetype/crm_lead/crm_lead.json frontend/src/pages/Contact.vue:510 #: frontend/src/pages/MobileContact.vue:518 #: frontend/src/pages/MobileOrganization.vue:462 #: frontend/src/pages/MobileOrganization.vue:490 @@ -2213,8 +2213,8 @@ msgstr "" msgid "Email ID is required" msgstr "" -#. Label of the email_sent_at (Datetime) field in DocType 'CRM Invitation' -#: crm/fcrm/doctype/crm_invitation/crm_invitation.json +#. Label of the email_sent_at (Datetime) field in PageType 'CRM Invitation' +#: crm/fcrm/pagetype/crm_invitation/crm_invitation.json msgid "Email Sent At" msgstr "ส่งอีเมลเมื่อ" @@ -2272,12 +2272,12 @@ msgstr "" msgid "Empty - Choose a field to sort by" msgstr "" -#: crm/fcrm/doctype/crm_form_script/crm_form_script.js:30 +#: crm/fcrm/pagetype/crm_form_script/crm_form_script.js:30 msgid "Enable" msgstr "เปิดใช้งาน" -#. Label of the enable_forecasting (Check) field in DocType 'FCRM Settings' -#: crm/fcrm/doctype/fcrm_settings/fcrm_settings.json +#. Label of the enable_forecasting (Check) field in PageType 'FCRM Settings' +#: crm/fcrm/pagetype/fcrm_settings/fcrm_settings.json msgid "Enable Forecasting" msgstr "" @@ -2293,18 +2293,18 @@ msgstr "เปิดใช้งานขาออก" msgid "Enable forecasting" msgstr "" -#. Label of the enabled (Check) field in DocType 'CRM Exotel Settings' -#. Label of the enabled (Check) field in DocType 'CRM Form Script' -#. Label of the enabled (Check) field in DocType 'CRM Service Level Agreement' -#. Label of the enabled (Check) field in DocType 'CRM Twilio Settings' -#. Label of the enabled (Check) field in DocType 'ERPNext CRM Settings' -#. Label of the enabled (Check) field in DocType 'Helpdesk CRM Settings' -#: crm/fcrm/doctype/crm_exotel_settings/crm_exotel_settings.json -#: crm/fcrm/doctype/crm_form_script/crm_form_script.json -#: crm/fcrm/doctype/crm_service_level_agreement/crm_service_level_agreement.json -#: crm/fcrm/doctype/crm_twilio_settings/crm_twilio_settings.json -#: crm/fcrm/doctype/erpnext_crm_settings/erpnext_crm_settings.json -#: crm/fcrm/doctype/helpdesk_crm_settings/helpdesk_crm_settings.json +#. Label of the enabled (Check) field in PageType 'CRM Exotel Settings' +#. Label of the enabled (Check) field in PageType 'CRM Form Script' +#. Label of the enabled (Check) field in PageType 'CRM Service Level Agreement' +#. Label of the enabled (Check) field in PageType 'CRM Twilio Settings' +#. Label of the enabled (Check) field in PageType 'ERPNext CRM Settings' +#. Label of the enabled (Check) field in PageType 'Helpdesk CRM Settings' +#: crm/fcrm/pagetype/crm_exotel_settings/crm_exotel_settings.json +#: crm/fcrm/pagetype/crm_form_script/crm_form_script.json +#: crm/fcrm/pagetype/crm_service_level_agreement/crm_service_level_agreement.json +#: crm/fcrm/pagetype/crm_twilio_settings/crm_twilio_settings.json +#: crm/fcrm/pagetype/erpnext_crm_settings/erpnext_crm_settings.json +#: crm/fcrm/pagetype/helpdesk_crm_settings/helpdesk_crm_settings.json #: frontend/src/components/Settings/AssignmentRules/AssignmentRuleView.vue:32 #: frontend/src/components/Settings/AssignmentRules/AssignmentRulesList.vue:21 #: frontend/src/components/Settings/EmailTemplate/EditEmailTemplate.vue:18 @@ -2313,15 +2313,15 @@ msgstr "" msgid "Enabled" msgstr "เปิดใช้งานแล้ว" -#. Label of the end_date (Date) field in DocType 'CRM Service Level Agreement' -#: crm/fcrm/doctype/crm_service_level_agreement/crm_service_level_agreement.json +#. Label of the end_date (Date) field in PageType 'CRM Service Level Agreement' +#: crm/fcrm/pagetype/crm_service_level_agreement/crm_service_level_agreement.json msgid "End Date" msgstr "" -#. Label of the end_time (Datetime) field in DocType 'CRM Call Log' -#. Label of the end_time (Time) field in DocType 'CRM Service Day' -#: crm/fcrm/doctype/crm_call_log/crm_call_log.json -#: crm/fcrm/doctype/crm_service_day/crm_service_day.json +#. Label of the end_time (Datetime) field in PageType 'CRM Call Log' +#. Label of the end_time (Time) field in PageType 'CRM Service Day' +#: crm/fcrm/pagetype/crm_call_log/crm_call_log.json +#: crm/fcrm/pagetype/crm_service_day/crm_service_day.json #: frontend/src/components/Calendar/CalendarEventPanel.vue:242 #: frontend/src/components/Modals/EventModal.vue:112 msgid "End Time" @@ -2362,15 +2362,15 @@ msgstr "" msgid "Error updating field" msgstr "" -#: crm/fcrm/doctype/erpnext_crm_settings/erpnext_crm_settings.py:279 +#: crm/fcrm/pagetype/erpnext_crm_settings/erpnext_crm_settings.py:279 msgid "Error while creating customer in ERPNext, check error log for more details" msgstr "" -#: crm/fcrm/doctype/erpnext_crm_settings/erpnext_crm_settings.py:191 +#: crm/fcrm/pagetype/erpnext_crm_settings/erpnext_crm_settings.py:191 msgid "Error while creating prospect in ERPNext, check error log for more details" msgstr "" -#: crm/fcrm/doctype/erpnext_crm_settings/erpnext_crm_settings.py:117 +#: crm/fcrm/pagetype/erpnext_crm_settings/erpnext_crm_settings.py:117 msgid "Error while fetching customer in ERPNext, check error log for more details" msgstr "" @@ -2395,16 +2395,16 @@ msgstr "เหตุการณ์" msgid "Excel" msgstr "เอ็กเซล" -#. Label of the exchange_rate (Float) field in DocType 'CRM Deal' -#. Label of the exchange_rate (Float) field in DocType 'CRM Organization' -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_organization/crm_organization.json +#. Label of the exchange_rate (Float) field in PageType 'CRM Deal' +#. Label of the exchange_rate (Float) field in PageType 'CRM Organization' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_organization/crm_organization.json msgid "Exchange Rate" msgstr "อัตราแลกเปลี่ยน" -#. Label of the exchange_rate_provider_section (Section Break) field in DocType +#. Label of the exchange_rate_provider_section (Section Break) field in PageType #. 'FCRM Settings' -#: crm/fcrm/doctype/fcrm_settings/fcrm_settings.json +#: crm/fcrm/pagetype/fcrm_settings/fcrm_settings.json msgid "Exchange Rate Provider" msgstr "" @@ -2412,12 +2412,12 @@ msgstr "" msgid "Exchange rate provider" msgstr "" -#. Option for the 'Telephony Medium' (Select) field in DocType 'CRM Call Log' -#. Label of the exotel (Check) field in DocType 'CRM Telephony Agent' -#. Option for the 'Default Medium' (Select) field in DocType 'CRM Telephony +#. Option for the 'Telephony Medium' (Select) field in PageType 'CRM Call Log' +#. Label of the exotel (Check) field in PageType 'CRM Telephony Agent' +#. Option for the 'Default Medium' (Select) field in PageType 'CRM Telephony #. Agent' -#: crm/fcrm/doctype/crm_call_log/crm_call_log.json -#: crm/fcrm/doctype/crm_telephony_agent/crm_telephony_agent.json +#: crm/fcrm/pagetype/crm_call_log/crm_call_log.json +#: crm/fcrm/pagetype/crm_telephony_agent/crm_telephony_agent.json #: frontend/src/components/Layouts/AppSidebar.vue:602 #: frontend/src/components/Settings/TelephonySettings.vue:41 #: frontend/src/components/Settings/TelephonySettings.vue:63 @@ -2428,8 +2428,8 @@ msgstr "" msgid "Exotel Exception" msgstr "" -#. Label of the exotel_number (Data) field in DocType 'CRM Telephony Agent' -#: crm/fcrm/doctype/crm_telephony_agent/crm_telephony_agent.json +#. Label of the exotel_number (Data) field in PageType 'CRM Telephony Agent' +#: crm/fcrm/pagetype/crm_telephony_agent/crm_telephony_agent.json msgid "Exotel Number" msgstr "" @@ -2453,26 +2453,26 @@ msgstr "" msgid "Expand" msgstr "ขยาย" -#. Label of the expected_closure_date (Date) field in DocType 'CRM Deal' -#: crm/fcrm/doctype/crm_deal/crm_deal.json +#. Label of the expected_closure_date (Date) field in PageType 'CRM Deal' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json msgid "Expected Closure Date" msgstr "" -#: crm/fcrm/doctype/crm_deal/crm_deal.py:173 +#: crm/fcrm/pagetype/crm_deal/crm_deal.py:173 msgid "Expected Closure Date is required." msgstr "" -#. Label of the expected_deal_value (Currency) field in DocType 'CRM Deal' -#: crm/fcrm/doctype/crm_deal/crm_deal.json +#. Label of the expected_deal_value (Currency) field in PageType 'CRM Deal' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json msgid "Expected Deal Value" msgstr "" -#: crm/fcrm/doctype/crm_deal/crm_deal.py:171 +#: crm/fcrm/pagetype/crm_deal/crm_deal.py:171 msgid "Expected Deal Value is required." msgstr "" -#. Option for the 'Status' (Select) field in DocType 'CRM Invitation' -#: crm/fcrm/doctype/crm_invitation/crm_invitation.json +#. Option for the 'Status' (Select) field in PageType 'CRM Invitation' +#: crm/fcrm/pagetype/crm_invitation/crm_invitation.json msgid "Expired" msgstr "หมดอายุ" @@ -2489,22 +2489,22 @@ msgstr "" msgid "Export Type" msgstr "ประเภทการส่งออก" -#. Name of a DocType -#: crm/fcrm/doctype/fcrm_note/fcrm_note.json +#. Name of a PageType +#: crm/fcrm/pagetype/fcrm_note/fcrm_note.json msgid "FCRM Note" msgstr "" -#. Name of a DocType -#: crm/fcrm/doctype/fcrm_settings/fcrm_settings.json +#. Name of a PageType +#: crm/fcrm/pagetype/fcrm_settings/fcrm_settings.json msgid "FCRM Settings" msgstr "" -#. Option for the 'Status' (Select) field in DocType 'CRM Call Log' -#. Option for the 'SLA Status' (Select) field in DocType 'CRM Deal' -#. Option for the 'SLA Status' (Select) field in DocType 'CRM Lead' -#: crm/fcrm/doctype/crm_call_log/crm_call_log.json -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_lead/crm_lead.json +#. Option for the 'Status' (Select) field in PageType 'CRM Call Log' +#. Option for the 'SLA Status' (Select) field in PageType 'CRM Deal' +#. Option for the 'SLA Status' (Select) field in PageType 'CRM Lead' +#: crm/fcrm/pagetype/crm_call_log/crm_call_log.json +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_lead/crm_lead.json msgid "Failed" msgstr "" @@ -2528,7 +2528,7 @@ msgstr "" msgid "Failed to delete template" msgstr "" -#: crm/fcrm/doctype/fcrm_settings/fcrm_settings.py:205 +#: crm/fcrm/pagetype/fcrm_settings/fcrm_settings.py:205 msgid "Failed to fetch exchange rate from {0} to {1} on {2}. Please check your internet connection or try again later." msgstr "" @@ -2561,8 +2561,8 @@ msgstr "" msgid "Failed to update template" msgstr "" -#. Label of the favicon (Attach) field in DocType 'FCRM Settings' -#: crm/fcrm/doctype/fcrm_settings/fcrm_settings.json +#. Label of the favicon (Attach) field in PageType 'FCRM Settings' +#: crm/fcrm/pagetype/fcrm_settings/fcrm_settings.json #: frontend/src/components/Settings/BrandSettings.vue:87 msgid "Favicon" msgstr "" @@ -2586,23 +2586,23 @@ msgid "File \"{0}\" was skipped because only {1} uploads are allowed" msgstr "" #: frontend/src/components/FilesUploader/FilesUploaderArea.vue:359 -msgid "File \"{0}\" was skipped because only {1} uploads are allowed for DocType \"{2}\"" +msgid "File \"{0}\" was skipped because only {1} uploads are allowed for PageType \"{2}\"" msgstr "" #: frontend/src/components/Filter.vue:6 msgid "Filter" msgstr "ตัวกรอง" -#. Label of the filters (Code) field in DocType 'CRM View Settings' -#. Label of the filters_tab (Tab Break) field in DocType 'CRM View Settings' -#: crm/fcrm/doctype/crm_view_settings/crm_view_settings.json +#. Label of the filters (Code) field in PageType 'CRM View Settings' +#. Label of the filters_tab (Tab Break) field in PageType 'CRM View Settings' +#: crm/fcrm/pagetype/crm_view_settings/crm_view_settings.json msgid "Filters" msgstr "" -#. Label of the first_name (Data) field in DocType 'CRM Deal' -#. Label of the first_name (Data) field in DocType 'CRM Lead' -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_lead/crm_lead.json +#. Label of the first_name (Data) field in PageType 'CRM Deal' +#. Label of the first_name (Data) field in PageType 'CRM Lead' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_lead/crm_lead.json #: frontend/src/components/ColumnSettings.vue:103 #: frontend/src/components/Filter.vue:57 frontend/src/components/Filter.vue:88 #: frontend/src/components/SortBy.vue:6 frontend/src/components/SortBy.vue:103 @@ -2614,30 +2614,30 @@ msgstr "ชื่อจริง" msgid "First Name is mandatory" msgstr "" -#. Label of the first_responded_on (Datetime) field in DocType 'CRM Deal' -#. Label of the first_responded_on (Datetime) field in DocType 'CRM Lead' -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_lead/crm_lead.json +#. Label of the first_responded_on (Datetime) field in PageType 'CRM Deal' +#. Label of the first_responded_on (Datetime) field in PageType 'CRM Lead' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_lead/crm_lead.json msgid "First Responded On" msgstr "ตอบกลับครั้งแรกเมื่อ" -#. Option for the 'SLA Status' (Select) field in DocType 'CRM Deal' -#. Option for the 'SLA Status' (Select) field in DocType 'CRM Lead' -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_lead/crm_lead.json +#. Option for the 'SLA Status' (Select) field in PageType 'CRM Deal' +#. Option for the 'SLA Status' (Select) field in PageType 'CRM Lead' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_lead/crm_lead.json msgid "First Response Due" msgstr "กำหนดการตอบกลับครั้งแรก" -#. Label of the first_response_time (Duration) field in DocType 'CRM Service +#. Label of the first_response_time (Duration) field in PageType 'CRM Service #. Level Priority' -#: crm/fcrm/doctype/crm_service_level_priority/crm_service_level_priority.json +#: crm/fcrm/pagetype/crm_service_level_priority/crm_service_level_priority.json msgid "First Response TIme" msgstr "" -#. Label of the first_response_time (Duration) field in DocType 'CRM Deal' -#. Label of the first_response_time (Duration) field in DocType 'CRM Lead' -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_lead/crm_lead.json +#. Label of the first_response_time (Duration) field in PageType 'CRM Deal' +#. Label of the first_response_time (Duration) field in PageType 'CRM Lead' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_lead/crm_lead.json msgid "First Response Time" msgstr "เวลาการตอบกลับครั้งแรก" @@ -2670,66 +2670,66 @@ msgstr "" msgid "Forecasting enabled successfully" msgstr "" -#. Option for the 'Apply To' (Select) field in DocType 'CRM Form Script' -#: crm/fcrm/doctype/crm_form_script/crm_form_script.json +#. Option for the 'Apply To' (Select) field in PageType 'CRM Form Script' +#: crm/fcrm/pagetype/crm_form_script/crm_form_script.json msgid "Form" msgstr "ฟอร์ม" -#: crm/fcrm/doctype/erpnext_crm_settings/erpnext_crm_settings.js:19 +#: crm/fcrm/pagetype/erpnext_crm_settings/erpnext_crm_settings.js:19 msgid "Form Script updated successfully" msgstr "" #. Name of a Workspace -#: crm/fcrm/workspace/frappe_crm/frappe_crm.json -msgid "Frappe CRM" +#: crm/fcrm/workspace/jingrow_crm/jingrow_crm.json +msgid "Jingrow CRM" msgstr "" #: frontend/src/components/Layouts/AppSidebar.vue:608 -msgid "Frappe CRM mobile" +msgid "Jingrow CRM mobile" msgstr "" -#. Option for the 'Weekly Off' (Select) field in DocType 'CRM Holiday List' -#. Option for the 'Workday' (Select) field in DocType 'CRM Service Day' -#: crm/fcrm/doctype/crm_holiday_list/crm_holiday_list.json -#: crm/fcrm/doctype/crm_service_day/crm_service_day.json +#. Option for the 'Weekly Off' (Select) field in PageType 'CRM Holiday List' +#. Option for the 'Workday' (Select) field in PageType 'CRM Service Day' +#: crm/fcrm/pagetype/crm_holiday_list/crm_holiday_list.json +#: crm/fcrm/pagetype/crm_service_day/crm_service_day.json msgid "Friday" msgstr "วันศุกร์" -#. Label of the from (Data) field in DocType 'CRM Call Log' -#. Label of the from (Data) field in DocType 'CRM Status Change Log' -#: crm/fcrm/doctype/crm_call_log/crm_call_log.json -#: crm/fcrm/doctype/crm_status_change_log/crm_status_change_log.json +#. Label of the from (Data) field in PageType 'CRM Call Log' +#. Label of the from (Data) field in PageType 'CRM Status Change Log' +#: crm/fcrm/pagetype/crm_call_log/crm_call_log.json +#: crm/fcrm/pagetype/crm_status_change_log/crm_status_change_log.json msgid "From" msgstr "จาก" -#. Label of the from_date (Date) field in DocType 'CRM Holiday List' -#. Label of the from_date (Datetime) field in DocType 'CRM Status Change Log' -#: crm/fcrm/doctype/crm_holiday_list/crm_holiday_list.json -#: crm/fcrm/doctype/crm_status_change_log/crm_status_change_log.json +#. Label of the from_date (Date) field in PageType 'CRM Holiday List' +#. Label of the from_date (Datetime) field in PageType 'CRM Status Change Log' +#: crm/fcrm/pagetype/crm_holiday_list/crm_holiday_list.json +#: crm/fcrm/pagetype/crm_status_change_log/crm_status_change_log.json msgid "From Date" msgstr "จากวันที่" -#. Label of the from_type (Data) field in DocType 'CRM Status Change Log' -#: crm/fcrm/doctype/crm_status_change_log/crm_status_change_log.json +#. Label of the from_type (Data) field in PageType 'CRM Status Change Log' +#: crm/fcrm/pagetype/crm_status_change_log/crm_status_change_log.json msgid "From Type" msgstr "" -#. Label of the from_user (Link) field in DocType 'CRM Notification' -#: crm/fcrm/doctype/crm_notification/crm_notification.json +#. Label of the from_user (Link) field in PageType 'CRM Notification' +#: crm/fcrm/pagetype/crm_notification/crm_notification.json msgid "From User" msgstr "จากผู้ใช้" -#. Option for the 'SLA Status' (Select) field in DocType 'CRM Deal' -#. Option for the 'SLA Status' (Select) field in DocType 'CRM Lead' -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_lead/crm_lead.json +#. Option for the 'SLA Status' (Select) field in PageType 'CRM Deal' +#. Option for the 'SLA Status' (Select) field in PageType 'CRM Lead' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_lead/crm_lead.json msgid "Fulfilled" msgstr "สำเร็จ" -#. Label of the full_name (Data) field in DocType 'CRM Contacts' -#. Label of the lead_name (Data) field in DocType 'CRM Lead' -#: crm/fcrm/doctype/crm_contacts/crm_contacts.json -#: crm/fcrm/doctype/crm_lead/crm_lead.json +#. Label of the full_name (Data) field in PageType 'CRM Contacts' +#. Label of the lead_name (Data) field in PageType 'CRM Lead' +#: crm/fcrm/pagetype/crm_contacts/crm_contacts.json +#: crm/fcrm/pagetype/crm_lead/crm_lead.json msgid "Full Name" msgstr "ชื่อ-นามสกุล" @@ -2742,12 +2742,12 @@ msgstr "" msgid "GMT+5:30" msgstr "" -#. Label of the gender (Link) field in DocType 'CRM Contacts' -#. Label of the gender (Link) field in DocType 'CRM Deal' -#. Label of the gender (Link) field in DocType 'CRM Lead' -#: crm/fcrm/doctype/crm_contacts/crm_contacts.json -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_lead/crm_lead.json +#. Label of the gender (Link) field in PageType 'CRM Contacts' +#. Label of the gender (Link) field in PageType 'CRM Deal' +#. Label of the gender (Link) field in PageType 'CRM Lead' +#: crm/fcrm/pagetype/crm_contacts/crm_contacts.json +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_lead/crm_lead.json msgid "Gender" msgstr "เพศ" @@ -2771,20 +2771,20 @@ msgstr "" msgid "Go to website" msgstr "" -#. Option for the 'Type' (Select) field in DocType 'CRM Fields Layout' -#: crm/fcrm/doctype/crm_fields_layout/crm_fields_layout.json +#. Option for the 'Type' (Select) field in PageType 'CRM Fields Layout' +#: crm/fcrm/pagetype/crm_fields_layout/crm_fields_layout.json msgid "Grid Row" msgstr "" -#. Label of the group_by_tab (Tab Break) field in DocType 'CRM View Settings' -#: crm/fcrm/doctype/crm_view_settings/crm_view_settings.json +#. Label of the group_by_tab (Tab Break) field in PageType 'CRM View Settings' +#: crm/fcrm/pagetype/crm_view_settings/crm_view_settings.json #: frontend/src/components/ViewControls.vue:379 #: frontend/src/components/ViewControls.vue:611 frontend/src/utils/view.js:16 msgid "Group By" msgstr "จัดกลุ่มตาม" -#. Label of the group_by_field (Data) field in DocType 'CRM View Settings' -#: crm/fcrm/doctype/crm_view_settings/crm_view_settings.json +#. Label of the group_by_field (Data) field in PageType 'CRM View Settings' +#: crm/fcrm/pagetype/crm_view_settings/crm_view_settings.json msgid "Group By Field" msgstr "" @@ -2808,28 +2808,28 @@ msgstr "ช่วยเหลือ" msgid "Helpdesk" msgstr "" -#. Name of a DocType -#: crm/fcrm/doctype/helpdesk_crm_settings/helpdesk_crm_settings.json +#. Name of a PageType +#: crm/fcrm/pagetype/helpdesk_crm_settings/helpdesk_crm_settings.json msgid "Helpdesk CRM Settings" msgstr "" -#. Label of the helpdesk_site_apis_section (Section Break) field in DocType +#. Label of the helpdesk_site_apis_section (Section Break) field in PageType #. 'Helpdesk CRM Settings' -#: crm/fcrm/doctype/helpdesk_crm_settings/helpdesk_crm_settings.json +#: crm/fcrm/pagetype/helpdesk_crm_settings/helpdesk_crm_settings.json msgid "Helpdesk Site API's" msgstr "" -#. Label of the helpdesk_site_url (Data) field in DocType 'Helpdesk CRM +#. Label of the helpdesk_site_url (Data) field in PageType 'Helpdesk CRM #. Settings' -#: crm/fcrm/doctype/helpdesk_crm_settings/helpdesk_crm_settings.json +#: crm/fcrm/pagetype/helpdesk_crm_settings/helpdesk_crm_settings.json msgid "Helpdesk Site URL" msgstr "" -#: crm/fcrm/doctype/helpdesk_crm_settings/helpdesk_crm_settings.py:18 +#: crm/fcrm/pagetype/helpdesk_crm_settings/helpdesk_crm_settings.py:18 msgid "Helpdesk is not installed in the current site" msgstr "" -#: crm/fcrm/doctype/helpdesk_crm_settings/helpdesk_crm_settings.py:40 +#: crm/fcrm/pagetype/helpdesk_crm_settings/helpdesk_crm_settings.py:40 msgid "Helpdesk is not integrated with the CRM" msgstr "" @@ -2845,8 +2845,8 @@ msgstr "" msgid "Hi John, \\n\\nCan you please provide more details on this..." msgstr "" -#. Label of the hidden (Check) field in DocType 'CRM Dropdown Item' -#: crm/fcrm/doctype/crm_dropdown_item/crm_dropdown_item.json +#. Label of the hidden (Check) field in PageType 'CRM Dropdown Item' +#: crm/fcrm/pagetype/crm_dropdown_item/crm_dropdown_item.json msgid "Hidden" msgstr "ซ่อน" @@ -2877,26 +2877,26 @@ msgstr "" msgid "Hide preview" msgstr "" -#. Option for the 'Priority' (Select) field in DocType 'CRM Task' -#: crm/fcrm/doctype/crm_task/crm_task.json +#. Option for the 'Priority' (Select) field in PageType 'CRM Task' +#: crm/fcrm/pagetype/crm_task/crm_task.json msgid "High" msgstr "สูง" -#. Label of the holiday_list (Link) field in DocType 'CRM Service Level +#. Label of the holiday_list (Link) field in PageType 'CRM Service Level #. Agreement' -#: crm/fcrm/doctype/crm_service_level_agreement/crm_service_level_agreement.json +#: crm/fcrm/pagetype/crm_service_level_agreement/crm_service_level_agreement.json msgid "Holiday List" msgstr "รายการวันหยุด" -#. Label of the holiday_list_name (Data) field in DocType 'CRM Holiday List' -#: crm/fcrm/doctype/crm_holiday_list/crm_holiday_list.json +#. Label of the holiday_list_name (Data) field in PageType 'CRM Holiday List' +#: crm/fcrm/pagetype/crm_holiday_list/crm_holiday_list.json msgid "Holiday List Name" msgstr "ชื่อรายการวันหยุด" -#. Label of the holidays_section (Section Break) field in DocType 'CRM Holiday +#. Label of the holidays_section (Section Break) field in PageType 'CRM Holiday #. List' -#. Label of the holidays (Table) field in DocType 'CRM Holiday List' -#: crm/fcrm/doctype/crm_holiday_list/crm_holiday_list.json +#. Label of the holidays (Table) field in PageType 'CRM Holiday List' +#: crm/fcrm/pagetype/crm_holiday_list/crm_holiday_list.json msgid "Holidays" msgstr "วันหยุด" @@ -2914,15 +2914,15 @@ msgstr "" msgid "I understand, add conditions" msgstr "" -#. Label of the id (Data) field in DocType 'CRM Call Log' -#: crm/fcrm/doctype/crm_call_log/crm_call_log.json +#. Label of the id (Data) field in PageType 'CRM Call Log' +#: crm/fcrm/pagetype/crm_call_log/crm_call_log.json msgid "ID" msgstr "รหัส" -#. Label of the icon (Code) field in DocType 'CRM Dropdown Item' -#. Label of the icon (Data) field in DocType 'CRM View Settings' -#: crm/fcrm/doctype/crm_dropdown_item/crm_dropdown_item.json -#: crm/fcrm/doctype/crm_view_settings/crm_view_settings.json +#. Label of the icon (Code) field in PageType 'CRM Dropdown Item' +#. Label of the icon (Data) field in PageType 'CRM View Settings' +#: crm/fcrm/pagetype/crm_dropdown_item/crm_dropdown_item.json +#: crm/fcrm/pagetype/crm_view_settings/crm_view_settings.json msgid "Icon" msgstr "ไอคอน" @@ -2942,10 +2942,10 @@ msgstr "" msgid "If enabled, records can be created from the incoming emails on this account." msgstr "" -#. Label of the image (Attach Image) field in DocType 'CRM Lead' -#. Label of the image (Attach Image) field in DocType 'CRM Product' -#: crm/fcrm/doctype/crm_lead/crm_lead.json -#: crm/fcrm/doctype/crm_product/crm_product.json +#. Label of the image (Attach Image) field in PageType 'CRM Lead' +#. Label of the image (Attach Image) field in PageType 'CRM Product' +#: crm/fcrm/pagetype/crm_lead/crm_lead.json +#: crm/fcrm/pagetype/crm_product/crm_product.json msgid "Image" msgstr "ภาพ" @@ -2957,10 +2957,10 @@ msgstr "ภาพ" msgid "In" msgstr "ใน" -#. Option for the 'Status' (Select) field in DocType 'CRM Call Log' -#. Option for the 'Status' (Select) field in DocType 'CRM Task' -#: crm/fcrm/doctype/crm_call_log/crm_call_log.json -#: crm/fcrm/doctype/crm_task/crm_task.json +#. Option for the 'Status' (Select) field in PageType 'CRM Call Log' +#. Option for the 'Status' (Select) field in PageType 'CRM Task' +#: crm/fcrm/pagetype/crm_call_log/crm_call_log.json +#: crm/fcrm/pagetype/crm_task/crm_task.json msgid "In Progress" msgstr "กำลังดำเนินการ" @@ -2976,8 +2976,8 @@ msgstr "" msgid "Inbox" msgstr "กล่องจดหมาย" -#. Option for the 'Type' (Select) field in DocType 'CRM Call Log' -#: crm/fcrm/doctype/crm_call_log/crm_call_log.json +#. Option for the 'Type' (Select) field in PageType 'CRM Call Log' +#: crm/fcrm/pagetype/crm_call_log/crm_call_log.json msgid "Incoming" msgstr "ขาเข้า" @@ -2985,24 +2985,24 @@ msgstr "ขาเข้า" msgid "Incoming call..." msgstr "" -#. Label of a shortcut in the Frappe CRM Workspace -#: crm/fcrm/workspace/frappe_crm/frappe_crm.json +#. Label of a shortcut in the Jingrow CRM Workspace +#: crm/fcrm/workspace/jingrow_crm/jingrow_crm.json msgid "Industries" msgstr "" -#. Label of the industry (Link) field in DocType 'CRM Deal' -#. Label of the industry (Data) field in DocType 'CRM Industry' -#. Label of the industry (Link) field in DocType 'CRM Lead' -#. Label of the industry (Link) field in DocType 'CRM Organization' -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_industry/crm_industry.json -#: crm/fcrm/doctype/crm_lead/crm_lead.json -#: crm/fcrm/doctype/crm_organization/crm_organization.json +#. Label of the industry (Link) field in PageType 'CRM Deal' +#. Label of the industry (Data) field in PageType 'CRM Industry' +#. Label of the industry (Link) field in PageType 'CRM Lead' +#. Label of the industry (Link) field in PageType 'CRM Organization' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_industry/crm_industry.json +#: crm/fcrm/pagetype/crm_lead/crm_lead.json +#: crm/fcrm/pagetype/crm_organization/crm_organization.json msgid "Industry" msgstr "อุตสาหกรรม" -#. Option for the 'Status' (Select) field in DocType 'CRM Call Log' -#: crm/fcrm/doctype/crm_call_log/crm_call_log.json +#. Option for the 'Status' (Select) field in PageType 'CRM Call Log' +#: crm/fcrm/pagetype/crm_call_log/crm_call_log.json msgid "Initiated" msgstr "เริ่มต้นแล้ว" @@ -3037,7 +3037,7 @@ msgstr "การรวม" msgid "Introduction" msgstr "การแนะนำ" -#: crm/fcrm/doctype/crm_twilio_settings/crm_twilio_settings.py:33 +#: crm/fcrm/pagetype/crm_twilio_settings/crm_twilio_settings.py:33 msgid "Invalid Account SID or Auth Token." msgstr "" @@ -3054,7 +3054,7 @@ msgstr "" msgid "Invalid chart name" msgstr "" -#: crm/fcrm/doctype/crm_exotel_settings/crm_exotel_settings.py:25 +#: crm/fcrm/pagetype/crm_exotel_settings/crm_exotel_settings.py:25 msgid "Invalid credentials" msgstr "" @@ -3103,8 +3103,8 @@ msgstr "" msgid "Invite your team" msgstr "" -#. Label of the invited_by (Link) field in DocType 'CRM Invitation' -#: crm/fcrm/doctype/crm_invitation/crm_invitation.json +#. Label of the invited_by (Link) field in PageType 'CRM Invitation' +#: crm/fcrm/pagetype/crm_invitation/crm_invitation.json msgid "Invited By" msgstr "" @@ -3118,59 +3118,59 @@ msgstr "" msgid "Is" msgstr "" -#. Label of the is_default (Check) field in DocType 'CRM View Settings' -#: crm/fcrm/doctype/crm_view_settings/crm_view_settings.json +#. Label of the is_default (Check) field in PageType 'CRM View Settings' +#: crm/fcrm/pagetype/crm_view_settings/crm_view_settings.json msgid "Is Default" msgstr "เป็นค่าเริ่มต้น" -#. Label of the is_erpnext_in_different_site (Check) field in DocType 'ERPNext +#. Label of the is_erpnext_in_different_site (Check) field in PageType 'ERPNext #. CRM Settings' -#: crm/fcrm/doctype/erpnext_crm_settings/erpnext_crm_settings.json +#: crm/fcrm/pagetype/erpnext_crm_settings/erpnext_crm_settings.json msgid "Is ERPNext installed on a different site?" msgstr "" -#. Label of the is_group (Check) field in DocType 'CRM Territory' -#: crm/fcrm/doctype/crm_territory/crm_territory.json +#. Label of the is_group (Check) field in PageType 'CRM Territory' +#: crm/fcrm/pagetype/crm_territory/crm_territory.json msgid "Is Group" msgstr "เป็นกลุ่ม" -#. Label of the is_helpdesk_in_different_site (Check) field in DocType +#. Label of the is_helpdesk_in_different_site (Check) field in PageType #. 'Helpdesk CRM Settings' -#: crm/fcrm/doctype/helpdesk_crm_settings/helpdesk_crm_settings.json +#: crm/fcrm/pagetype/helpdesk_crm_settings/helpdesk_crm_settings.json msgid "Is Helpdesk installed on a different site?" msgstr "" -#. Label of the is_primary (Check) field in DocType 'CRM Contacts' -#. Label of the is_primary (Check) field in DocType 'CRM Telephony Phone' -#: crm/fcrm/doctype/crm_contacts/crm_contacts.json -#: crm/fcrm/doctype/crm_telephony_phone/crm_telephony_phone.json +#. Label of the is_primary (Check) field in PageType 'CRM Contacts' +#. Label of the is_primary (Check) field in PageType 'CRM Telephony Phone' +#: crm/fcrm/pagetype/crm_contacts/crm_contacts.json +#: crm/fcrm/pagetype/crm_telephony_phone/crm_telephony_phone.json msgid "Is Primary" msgstr "เป็นหลัก" -#. Label of the is_standard (Check) field in DocType 'CRM Dropdown Item' -#. Label of the is_standard (Check) field in DocType 'CRM Form Script' -#. Label of the is_standard (Check) field in DocType 'CRM View Settings' -#: crm/fcrm/doctype/crm_dropdown_item/crm_dropdown_item.json -#: crm/fcrm/doctype/crm_form_script/crm_form_script.json -#: crm/fcrm/doctype/crm_view_settings/crm_view_settings.json +#. Label of the is_standard (Check) field in PageType 'CRM Dropdown Item' +#. Label of the is_standard (Check) field in PageType 'CRM Form Script' +#. Label of the is_standard (Check) field in PageType 'CRM View Settings' +#: crm/fcrm/pagetype/crm_dropdown_item/crm_dropdown_item.json +#: crm/fcrm/pagetype/crm_form_script/crm_form_script.json +#: crm/fcrm/pagetype/crm_view_settings/crm_view_settings.json msgid "Is Standard" msgstr "เป็นมาตรฐาน" -#. Description of the 'Enable Forecasting' (Check) field in DocType 'FCRM +#. Description of the 'Enable Forecasting' (Check) field in PageType 'FCRM #. Settings' -#: crm/fcrm/doctype/fcrm_settings/fcrm_settings.json +#: crm/fcrm/pagetype/fcrm_settings/fcrm_settings.json msgid "It will make deal's \"Expected Closure Date\" & \"Expected Deal Value\" mandatory to get accurate forecasting insights" msgstr "" -#. Label of the json (JSON) field in DocType 'CRM Global Settings' -#: crm/fcrm/doctype/crm_global_settings/crm_global_settings.json +#. Label of the json (JSON) field in PageType 'CRM Global Settings' +#: crm/fcrm/pagetype/crm_global_settings/crm_global_settings.json msgid "JSON" msgstr "" -#. Label of the job_title (Data) field in DocType 'CRM Deal' -#. Label of the job_title (Data) field in DocType 'CRM Lead' -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_lead/crm_lead.json +#. Label of the job_title (Data) field in PageType 'CRM Deal' +#. Label of the job_title (Data) field in PageType 'CRM Lead' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_lead/crm_lead.json msgid "Job Title" msgstr "" @@ -3182,20 +3182,20 @@ msgstr "" msgid "John Doe" msgstr "" -#. Label of the kanban_tab (Tab Break) field in DocType 'CRM View Settings' -#: crm/fcrm/doctype/crm_view_settings/crm_view_settings.json +#. Label of the kanban_tab (Tab Break) field in PageType 'CRM View Settings' +#: crm/fcrm/pagetype/crm_view_settings/crm_view_settings.json #: frontend/src/components/ViewControls.vue:384 #: frontend/src/components/ViewControls.vue:600 frontend/src/utils/view.js:20 msgid "Kanban" msgstr "คัมบัง" -#. Label of the kanban_columns (Code) field in DocType 'CRM View Settings' -#: crm/fcrm/doctype/crm_view_settings/crm_view_settings.json +#. Label of the kanban_columns (Code) field in PageType 'CRM View Settings' +#: crm/fcrm/pagetype/crm_view_settings/crm_view_settings.json msgid "Kanban Columns" msgstr "" -#. Label of the kanban_fields (Code) field in DocType 'CRM View Settings' -#: crm/fcrm/doctype/crm_view_settings/crm_view_settings.json +#. Label of the kanban_fields (Code) field in PageType 'CRM View Settings' +#: crm/fcrm/pagetype/crm_view_settings/crm_view_settings.json msgid "Kanban Fields" msgstr "" @@ -3204,15 +3204,15 @@ msgstr "" msgid "Kanban Settings" msgstr "การตั้งค่าคัมบัง" -#. Label of the key (Data) field in DocType 'CRM Invitation' -#: crm/fcrm/doctype/crm_invitation/crm_invitation.json +#. Label of the key (Data) field in PageType 'CRM Invitation' +#: crm/fcrm/pagetype/crm_invitation/crm_invitation.json msgid "Key" msgstr "คีย์" -#. Label of the label (Data) field in DocType 'CRM Dropdown Item' -#. Label of the label (Data) field in DocType 'CRM View Settings' -#: crm/fcrm/doctype/crm_dropdown_item/crm_dropdown_item.json -#: crm/fcrm/doctype/crm_view_settings/crm_view_settings.json +#. Label of the label (Data) field in PageType 'CRM Dropdown Item' +#. Label of the label (Data) field in PageType 'CRM View Settings' +#: crm/fcrm/pagetype/crm_dropdown_item/crm_dropdown_item.json +#: crm/fcrm/pagetype/crm_view_settings/crm_view_settings.json #: frontend/src/components/ColumnSettings.vue:100 msgid "Label" msgstr "ป้ายกำกับ" @@ -3229,10 +3229,10 @@ msgstr "6 เดือนที่ผ่านมา" msgid "Last Month" msgstr "เดือนที่แล้ว" -#. Label of the last_name (Data) field in DocType 'CRM Deal' -#. Label of the last_name (Data) field in DocType 'CRM Lead' -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_lead/crm_lead.json +#. Label of the last_name (Data) field in PageType 'CRM Deal' +#. Label of the last_name (Data) field in PageType 'CRM Lead' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_lead/crm_lead.json msgid "Last Name" msgstr "นามสกุล" @@ -3240,9 +3240,9 @@ msgstr "นามสกุล" msgid "Last Quarter" msgstr "ไตรมาสที่แล้ว" -#. Label of the last_status_change_log (Link) field in DocType 'CRM Status +#. Label of the last_status_change_log (Link) field in PageType 'CRM Status #. Change Log' -#: crm/fcrm/doctype/crm_status_change_log/crm_status_change_log.json +#: crm/fcrm/pagetype/crm_status_change_log/crm_status_change_log.json msgid "Last Status Change Log" msgstr "" @@ -3270,15 +3270,15 @@ msgstr "" msgid "Last user assigned by this rule" msgstr "" -#. Label of the layout (Code) field in DocType 'CRM Dashboard' -#. Label of the layout (Code) field in DocType 'CRM Fields Layout' -#: crm/fcrm/doctype/crm_dashboard/crm_dashboard.json -#: crm/fcrm/doctype/crm_fields_layout/crm_fields_layout.json +#. Label of the layout (Code) field in PageType 'CRM Dashboard' +#. Label of the layout (Code) field in PageType 'CRM Fields Layout' +#: crm/fcrm/pagetype/crm_dashboard/crm_dashboard.json +#: crm/fcrm/pagetype/crm_fields_layout/crm_fields_layout.json msgid "Layout" msgstr "" -#. Label of the lead (Link) field in DocType 'CRM Deal' -#: crm/fcrm/doctype/crm_deal/crm_deal.json +#. Label of the lead (Link) field in PageType 'CRM Deal' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json #: frontend/src/components/Calendar/CalendarEventPanel.vue:263 #: frontend/src/components/Calendar/CalendarEventPanel.vue:288 #: frontend/src/components/Layouts/AppSidebar.vue:550 @@ -3291,32 +3291,32 @@ msgstr "" msgid "Lead" msgstr "ลูกค้าเป้าหมาย" -#. Label of the lead_details_tab (Tab Break) field in DocType 'CRM Deal' -#: crm/fcrm/doctype/crm_deal/crm_deal.json +#. Label of the lead_details_tab (Tab Break) field in PageType 'CRM Deal' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json msgid "Lead Details" msgstr "รายละเอียดลูกค้าเป้าหมาย" -#. Label of the lead_name (Data) field in DocType 'CRM Deal' -#: crm/fcrm/doctype/crm_deal/crm_deal.json +#. Label of the lead_name (Data) field in PageType 'CRM Deal' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json msgid "Lead Name" msgstr "ชื่อลูกค้าเป้าหมาย" -#. Label of the lead_owner (Link) field in DocType 'CRM Lead' -#: crm/fcrm/doctype/crm_lead/crm_lead.json +#. Label of the lead_owner (Link) field in PageType 'CRM Lead' +#: crm/fcrm/pagetype/crm_lead/crm_lead.json msgid "Lead Owner" msgstr "เจ้าของลูกค้าเป้าหมาย" -#: crm/fcrm/doctype/crm_lead/crm_lead.py:73 +#: crm/fcrm/pagetype/crm_lead/crm_lead.py:73 msgid "Lead Owner cannot be same as the Lead Email Address" msgstr "เจ้าของลูกค้าเป้าหมายไม่สามารถเป็นที่อยู่อีเมลของลูกค้าเป้าหมายได้" -#. Label of a shortcut in the Frappe CRM Workspace -#: crm/fcrm/workspace/frappe_crm/frappe_crm.json +#. Label of a shortcut in the Jingrow CRM Workspace +#: crm/fcrm/workspace/jingrow_crm/jingrow_crm.json msgid "Lead Sources" msgstr "" -#. Label of a shortcut in the Frappe CRM Workspace -#: crm/fcrm/workspace/frappe_crm/frappe_crm.json +#. Label of a shortcut in the Jingrow CRM Workspace +#: crm/fcrm/workspace/jingrow_crm/jingrow_crm.json msgid "Lead Statuses" msgstr "" @@ -3328,8 +3328,8 @@ msgstr "" msgid "Lead to deal conversion pipeline" msgstr "" -#. Label of a shortcut in the Frappe CRM Workspace -#: crm/fcrm/workspace/frappe_crm/frappe_crm.json +#. Label of a shortcut in the Jingrow CRM Workspace +#: crm/fcrm/workspace/jingrow_crm/jingrow_crm.json #: frontend/src/pages/InvalidPage.vue:9 frontend/src/pages/Lead.vue:340 #: frontend/src/pages/MobileLead.vue:291 msgid "Leads" @@ -3345,8 +3345,8 @@ msgstr "" msgid "Learn about conditions" msgstr "" -#. Label of the lft (Int) field in DocType 'CRM Territory' -#: crm/fcrm/doctype/crm_territory/crm_territory.json +#. Label of the lft (Int) field in PageType 'CRM Territory' +#: crm/fcrm/pagetype/crm_territory/crm_territory.json msgid "Left" msgstr "ซ้าย" @@ -3367,15 +3367,15 @@ msgstr "ถูกใจ" msgid "Link" msgstr "ลิงก์" -#. Label of the links (Table) field in DocType 'CRM Call Log' -#: crm/fcrm/doctype/crm_call_log/crm_call_log.json +#. Label of the links (Table) field in PageType 'CRM Call Log' +#: crm/fcrm/pagetype/crm_call_log/crm_call_log.json msgid "Links" msgstr "ลิงก์" -#. Option for the 'Apply To' (Select) field in DocType 'CRM Form Script' -#. Label of the list_tab (Tab Break) field in DocType 'CRM View Settings' -#: crm/fcrm/doctype/crm_form_script/crm_form_script.json -#: crm/fcrm/doctype/crm_view_settings/crm_view_settings.json +#. Option for the 'Apply To' (Select) field in PageType 'CRM Form Script' +#. Label of the list_tab (Tab Break) field in PageType 'CRM View Settings' +#: crm/fcrm/pagetype/crm_form_script/crm_form_script.json +#: crm/fcrm/pagetype/crm_view_settings/crm_view_settings.json #: frontend/src/components/ViewControls.vue:374 #: frontend/src/components/ViewControls.vue:589 frontend/src/utils/view.js:12 msgid "List" @@ -3385,9 +3385,9 @@ msgstr "" msgid "Listen" msgstr "" -#. Label of the load_default_columns (Check) field in DocType 'CRM View +#. Label of the load_default_columns (Check) field in PageType 'CRM View #. Settings' -#: crm/fcrm/doctype/crm_view_settings/crm_view_settings.json +#: crm/fcrm/pagetype/crm_view_settings/crm_view_settings.json msgid "Load Default Columns" msgstr "" @@ -3403,10 +3403,10 @@ msgstr "" msgid "Loading..." msgstr "" -#. Label of the log_tab (Tab Break) field in DocType 'CRM Deal' -#. Label of the log_tab (Tab Break) field in DocType 'CRM Lead' -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_lead/crm_lead.json +#. Label of the log_tab (Tab Break) field in PageType 'CRM Deal' +#. Label of the log_tab (Tab Break) field in PageType 'CRM Lead' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_lead/crm_lead.json msgid "Log" msgstr "" @@ -3417,28 +3417,28 @@ msgid "Log a Call" msgstr "" #: frontend/src/composables/frappecloud.js:23 -msgid "Login to Frappe Cloud?" +msgid "Login to Jingrow Cloud?" msgstr "" -#. Label of the brand_logo (Attach) field in DocType 'FCRM Settings' -#: crm/fcrm/doctype/fcrm_settings/fcrm_settings.json +#. Label of the brand_logo (Attach) field in PageType 'FCRM Settings' +#: crm/fcrm/pagetype/fcrm_settings/fcrm_settings.json msgid "Logo" msgstr "โลโก้" -#. Option for the 'Type' (Select) field in DocType 'CRM Deal Status' -#: crm/fcrm/doctype/crm_deal_status/crm_deal_status.json +#. Option for the 'Type' (Select) field in PageType 'CRM Deal Status' +#: crm/fcrm/pagetype/crm_deal_status/crm_deal_status.json msgid "Lost" msgstr "สูญหาย" -#. Label of the lost_notes (Text) field in DocType 'CRM Deal' -#: crm/fcrm/doctype/crm_deal/crm_deal.json +#. Label of the lost_notes (Text) field in PageType 'CRM Deal' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json msgid "Lost Notes" msgstr "" -#. Label of the lost_reason (Link) field in DocType 'CRM Deal' -#. Label of the lost_reason (Data) field in DocType 'CRM Lost Reason' -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_lost_reason/crm_lost_reason.json +#. Label of the lost_reason (Link) field in PageType 'CRM Deal' +#. Label of the lost_reason (Data) field in PageType 'CRM Lost Reason' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_lost_reason/crm_lost_reason.json msgid "Lost Reason" msgstr "เหตุผลที่สูญหาย" @@ -3464,8 +3464,8 @@ msgstr "" msgid "Lost reason is required" msgstr "" -#. Option for the 'Priority' (Select) field in DocType 'CRM Task' -#: crm/fcrm/doctype/crm_task/crm_task.json +#. Option for the 'Priority' (Select) field in PageType 'CRM Task' +#: crm/fcrm/pagetype/crm_task/crm_task.json msgid "Low" msgstr "ต่ำ" @@ -3542,8 +3542,8 @@ msgstr "" msgid "Mandatory field error: {0}" msgstr "" -#. Option for the 'Telephony Medium' (Select) field in DocType 'CRM Call Log' -#: crm/fcrm/doctype/crm_call_log/crm_call_log.json +#. Option for the 'Telephony Medium' (Select) field in PageType 'CRM Call Log' +#: crm/fcrm/pagetype/crm_call_log/crm_call_log.json msgid "Manual" msgstr "คู่มือ" @@ -3562,25 +3562,25 @@ msgstr "" msgid "May 1, 2025" msgstr "" -#. Label of the medium (Data) field in DocType 'CRM Call Log' -#. Option for the 'Priority' (Select) field in DocType 'CRM Task' -#: crm/fcrm/doctype/crm_call_log/crm_call_log.json -#: crm/fcrm/doctype/crm_task/crm_task.json +#. Label of the medium (Data) field in PageType 'CRM Call Log' +#. Option for the 'Priority' (Select) field in PageType 'CRM Task' +#: crm/fcrm/pagetype/crm_call_log/crm_call_log.json +#: crm/fcrm/pagetype/crm_task/crm_task.json msgid "Medium" msgstr "ปานกลาง" -#. Option for the 'Type' (Select) field in DocType 'CRM Notification' -#: crm/fcrm/doctype/crm_notification/crm_notification.json +#. Option for the 'Type' (Select) field in PageType 'CRM Notification' +#: crm/fcrm/pagetype/crm_notification/crm_notification.json msgid "Mention" msgstr "กล่าวถึง" -#. Label of the message (HTML Editor) field in DocType 'CRM Notification' -#: crm/fcrm/doctype/crm_notification/crm_notification.json +#. Label of the message (HTML Editor) field in PageType 'CRM Notification' +#: crm/fcrm/pagetype/crm_notification/crm_notification.json msgid "Message" msgstr "ข้อความ" -#. Label of the middle_name (Data) field in DocType 'CRM Lead' -#: crm/fcrm/doctype/crm_lead/crm_lead.json +#. Label of the middle_name (Data) field in PageType 'CRM Lead' +#: crm/fcrm/pagetype/crm_lead/crm_lead.json msgid "Middle Name" msgstr "ชื่อกลาง" @@ -3588,10 +3588,10 @@ msgstr "ชื่อกลาง" msgid "Minimize" msgstr "" -#. Label of the mobile_no (Data) field in DocType 'CRM Contacts' -#. Label of the mobile_no (Data) field in DocType 'CRM Lead' -#: crm/fcrm/doctype/crm_contacts/crm_contacts.json -#: crm/fcrm/doctype/crm_lead/crm_lead.json +#. Label of the mobile_no (Data) field in PageType 'CRM Contacts' +#. Label of the mobile_no (Data) field in PageType 'CRM Lead' +#: crm/fcrm/pagetype/crm_contacts/crm_contacts.json +#: crm/fcrm/pagetype/crm_lead/crm_lead.json msgid "Mobile No" msgstr "" @@ -3600,8 +3600,8 @@ msgstr "" msgid "Mobile No should be a number" msgstr "" -#. Label of the mobile_no (Data) field in DocType 'CRM Telephony Agent' -#: crm/fcrm/doctype/crm_telephony_agent/crm_telephony_agent.json +#. Label of the mobile_no (Data) field in PageType 'CRM Telephony Agent' +#: crm/fcrm/pagetype/crm_telephony_agent/crm_telephony_agent.json msgid "Mobile No." msgstr "" @@ -3623,10 +3623,10 @@ msgstr "" msgid "Mobile no" msgstr "" -#. Option for the 'Weekly Off' (Select) field in DocType 'CRM Holiday List' -#. Option for the 'Workday' (Select) field in DocType 'CRM Service Day' -#: crm/fcrm/doctype/crm_holiday_list/crm_holiday_list.json -#: crm/fcrm/doctype/crm_service_day/crm_service_day.json +#. Option for the 'Weekly Off' (Select) field in PageType 'CRM Holiday List' +#. Option for the 'Workday' (Select) field in PageType 'CRM Service Day' +#: crm/fcrm/pagetype/crm_holiday_list/crm_holiday_list.json +#: crm/fcrm/pagetype/crm_service_day/crm_service_day.json msgid "Monday" msgstr "วันจันทร์" @@ -3658,12 +3658,12 @@ msgstr "" msgid "My Open Deals" msgstr "" -#. Label of the title (Data) field in DocType 'CRM Dashboard' -#. Label of the name1 (Data) field in DocType 'CRM Dropdown Item' -#. Label of the brand_name (Data) field in DocType 'FCRM Settings' -#: crm/fcrm/doctype/crm_dashboard/crm_dashboard.json -#: crm/fcrm/doctype/crm_dropdown_item/crm_dropdown_item.json -#: crm/fcrm/doctype/fcrm_settings/fcrm_settings.json +#. Label of the title (Data) field in PageType 'CRM Dashboard' +#. Label of the name1 (Data) field in PageType 'CRM Dropdown Item' +#. Label of the brand_name (Data) field in PageType 'FCRM Settings' +#: crm/fcrm/pagetype/crm_dashboard/crm_dashboard.json +#: crm/fcrm/pagetype/crm_dropdown_item/crm_dropdown_item.json +#: crm/fcrm/pagetype/fcrm_settings/fcrm_settings.json #: frontend/src/components/Settings/AssignmentRules/AssignmentRuleView.vue:51 #: frontend/src/components/Settings/AssignmentRules/AssignmentRuleView.vue:52 #: frontend/src/components/Settings/EmailTemplate/EditEmailTemplate.vue:39 @@ -3680,10 +3680,10 @@ msgstr "ชื่อ" msgid "Name is required" msgstr "" -#. Label of the naming_series (Select) field in DocType 'CRM Deal' -#. Label of the naming_series (Select) field in DocType 'CRM Product' -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_product/crm_product.json +#. Label of the naming_series (Select) field in PageType 'CRM Deal' +#. Label of the naming_series (Select) field in PageType 'CRM Product' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_product/crm_product.json msgid "Naming Series" msgstr "ชุดการตั้งชื่อ" @@ -3691,15 +3691,15 @@ msgstr "ชุดการตั้งชื่อ" msgid "Nested conditions" msgstr "" -#. Label of the net_amount (Currency) field in DocType 'CRM Products' -#: crm/fcrm/doctype/crm_products/crm_products.json +#. Label of the net_amount (Currency) field in PageType 'CRM Products' +#: crm/fcrm/pagetype/crm_products/crm_products.json msgid "Net Amount" msgstr "จำนวนเงินสุทธิ" -#. Label of the net_total (Currency) field in DocType 'CRM Deal' -#. Label of the net_total (Currency) field in DocType 'CRM Lead' -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_lead/crm_lead.json +#. Label of the net_total (Currency) field in PageType 'CRM Deal' +#. Label of the net_total (Currency) field in PageType 'CRM Lead' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_lead/crm_lead.json msgid "Net Total" msgstr "ยอดรวมสุทธิ" @@ -3814,8 +3814,8 @@ msgstr "เดือนถัดไป" msgid "Next Quarter" msgstr "ไตรมาสถัดไป" -#. Label of the next_step (Data) field in DocType 'CRM Deal' -#: crm/fcrm/doctype/crm_deal/crm_deal.json +#. Label of the next_step (Data) field in PageType 'CRM Deal' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json msgid "Next Step" msgstr "" @@ -3831,8 +3831,8 @@ msgstr "" msgid "No" msgstr "" -#. Option for the 'Status' (Select) field in DocType 'CRM Call Log' -#: crm/fcrm/doctype/crm_call_log/crm_call_log.json +#. Option for the 'Status' (Select) field in PageType 'CRM Call Log' +#: crm/fcrm/pagetype/crm_call_log/crm_call_log.json msgid "No Answer" msgstr "" @@ -3930,12 +3930,12 @@ msgstr "" msgid "No {0} Found" msgstr "ไม่พบ {0}" -#. Label of the no_of_employees (Select) field in DocType 'CRM Deal' -#. Label of the no_of_employees (Select) field in DocType 'CRM Lead' -#. Label of the no_of_employees (Select) field in DocType 'CRM Organization' -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_lead/crm_lead.json -#: crm/fcrm/doctype/crm_organization/crm_organization.json +#. Label of the no_of_employees (Select) field in PageType 'CRM Deal' +#. Label of the no_of_employees (Select) field in PageType 'CRM Lead' +#. Label of the no_of_employees (Select) field in PageType 'CRM Organization' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_lead/crm_lead.json +#: crm/fcrm/pagetype/crm_organization/crm_organization.json msgid "No. of Employees" msgstr "จำนวนพนักงาน" @@ -3981,24 +3981,24 @@ msgstr "ไม่เหมือน" msgid "Not Saved" msgstr "ไม่ได้บันทึก" -#: crm/fcrm/doctype/crm_deal/crm_deal.py:272 +#: crm/fcrm/pagetype/crm_deal/crm_deal.py:272 msgid "Not allowed to add contact to Deal" msgstr "" -#: crm/fcrm/doctype/crm_lead/crm_lead.py:408 +#: crm/fcrm/pagetype/crm_lead/crm_lead.py:408 msgid "Not allowed to convert Lead to Deal" msgstr "" -#: crm/fcrm/doctype/crm_deal/crm_deal.py:283 +#: crm/fcrm/pagetype/crm_deal/crm_deal.py:283 msgid "Not allowed to remove contact from Deal" msgstr "" -#: crm/fcrm/doctype/crm_deal/crm_deal.py:294 +#: crm/fcrm/pagetype/crm_deal/crm_deal.py:294 msgid "Not allowed to set primary contact for Deal" msgstr "" -#. Label of the note (Link) field in DocType 'CRM Call Log' -#: crm/fcrm/doctype/crm_call_log/crm_call_log.json +#. Label of the note (Link) field in PageType 'CRM Call Log' +#: crm/fcrm/pagetype/crm_call_log/crm_call_log.json #: frontend/src/components/Layouts/AppSidebar.vue:554 msgid "Note" msgstr "หมายเหตุ" @@ -4017,21 +4017,21 @@ msgstr "" msgid "Notification" msgstr "การแจ้งเตือน" -#. Label of the notification_text (Text) field in DocType 'CRM Notification' -#: crm/fcrm/doctype/crm_notification/crm_notification.json +#. Label of the notification_text (Text) field in PageType 'CRM Notification' +#: crm/fcrm/pagetype/crm_notification/crm_notification.json msgid "Notification Text" msgstr "" -#. Label of the notification_type_doc (Dynamic Link) field in DocType 'CRM +#. Label of the notification_type_pg (Dynamic Link) field in PageType 'CRM #. Notification' -#: crm/fcrm/doctype/crm_notification/crm_notification.json -msgid "Notification Type Doc" +#: crm/fcrm/pagetype/crm_notification/crm_notification.json +msgid "Notification Type Pg" msgstr "" -#. Label of the notification_type_doctype (Link) field in DocType 'CRM +#. Label of the notification_type_pagetype (Link) field in PageType 'CRM #. Notification' -#: crm/fcrm/doctype/crm_notification/crm_notification.json -msgid "Notification Type Doctype" +#: crm/fcrm/pagetype/crm_notification/crm_notification.json +msgid "Notification Type Pagetype" msgstr "" #: frontend/src/components/Layouts/AppSidebar.vue:13 @@ -4041,8 +4041,8 @@ msgstr "" msgid "Notifications" msgstr "การแจ้งเตือน" -#. Label of the number (Data) field in DocType 'CRM Telephony Phone' -#: crm/fcrm/doctype/crm_telephony_phone/crm_telephony_phone.json +#. Label of the number (Data) field in PageType 'CRM Telephony Phone' +#: crm/fcrm/pagetype/crm_telephony_phone/crm_telephony_phone.json msgid "Number" msgstr "หมายเลข" @@ -4064,18 +4064,18 @@ msgstr "" msgid "Old Condition" msgstr "" -#. Label of the old_parent (Link) field in DocType 'CRM Territory' -#: crm/fcrm/doctype/crm_territory/crm_territory.json +#. Label of the old_parent (Link) field in PageType 'CRM Territory' +#: crm/fcrm/pagetype/crm_territory/crm_territory.json msgid "Old Parent" msgstr "" -#. Option for the 'Type' (Select) field in DocType 'CRM Deal Status' -#: crm/fcrm/doctype/crm_deal_status/crm_deal_status.json +#. Option for the 'Type' (Select) field in PageType 'CRM Deal Status' +#: crm/fcrm/pagetype/crm_deal_status/crm_deal_status.json msgid "On Hold" msgstr "ระงับ" -#. Option for the 'Type' (Select) field in DocType 'CRM Deal Status' -#: crm/fcrm/doctype/crm_deal_status/crm_deal_status.json +#. Option for the 'Type' (Select) field in PageType 'CRM Deal Status' +#: crm/fcrm/pagetype/crm_deal_status/crm_deal_status.json msgid "Ongoing" msgstr "" @@ -4088,13 +4088,13 @@ msgstr "" msgid "Only image files are allowed" msgstr "" -#: crm/fcrm/doctype/crm_deal/crm_deal.py:60 -#: crm/fcrm/doctype/crm_telephony_agent/crm_telephony_agent.py:23 +#: crm/fcrm/pagetype/crm_deal/crm_deal.py:60 +#: crm/fcrm/pagetype/crm_telephony_agent/crm_telephony_agent.py:23 msgid "Only one {0} can be set as primary." msgstr "สามารถตั้งค่า {0} ได้เพียงหนึ่งรายการเป็นหลัก" -#. Option for the 'Type' (Select) field in DocType 'CRM Deal Status' -#: crm/fcrm/doctype/crm_deal_status/crm_deal_status.json +#. Option for the 'Type' (Select) field in PageType 'CRM Deal Status' +#: crm/fcrm/pagetype/crm_deal_status/crm_deal_status.json msgid "Open" msgstr "เปิด" @@ -4108,13 +4108,13 @@ msgstr "" msgid "Open Lead" msgstr "" -#: crm/fcrm/doctype/crm_deal/crm_deal.js:6 -#: crm/fcrm/doctype/crm_lead/crm_lead.js:6 +#: crm/fcrm/pagetype/crm_deal/crm_deal.js:6 +#: crm/fcrm/pagetype/crm_lead/crm_lead.js:6 msgid "Open in Portal" msgstr "" -#. Label of the open_in_new_window (Check) field in DocType 'CRM Dropdown Item' -#: crm/fcrm/doctype/crm_dropdown_item/crm_dropdown_item.json +#. Label of the open_in_new_window (Check) field in PageType 'CRM Dropdown Item' +#: crm/fcrm/pagetype/crm_dropdown_item/crm_dropdown_item.json msgid "Open in new window" msgstr "" @@ -4136,17 +4136,17 @@ msgstr "ตัวเลือก" msgid "Or create leads manually" msgstr "" -#. Label of the order_by_tab (Tab Break) field in DocType 'CRM View Settings' -#. Label of the order_by (Code) field in DocType 'CRM View Settings' -#: crm/fcrm/doctype/crm_view_settings/crm_view_settings.json +#. Label of the order_by_tab (Tab Break) field in PageType 'CRM View Settings' +#. Label of the order_by (Code) field in PageType 'CRM View Settings' +#: crm/fcrm/pagetype/crm_view_settings/crm_view_settings.json msgid "Order By" msgstr "เรียงตาม" -#. Label of the organization (Link) field in DocType 'CRM Deal' -#. Label of the organization_tab (Tab Break) field in DocType 'CRM Deal' -#. Label of the organization (Data) field in DocType 'CRM Lead' -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_lead/crm_lead.json +#. Label of the organization (Link) field in PageType 'CRM Deal' +#. Label of the organization_tab (Tab Break) field in PageType 'CRM Deal' +#. Label of the organization (Data) field in PageType 'CRM Lead' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_lead/crm_lead.json #: frontend/src/components/Layouts/AppSidebar.vue:553 #: frontend/src/components/Modals/ConvertToDealModal.vue:25 #: frontend/src/pages/Contact.vue:494 frontend/src/pages/MobileContact.vue:502 @@ -4158,22 +4158,22 @@ msgstr "เรียงตาม" msgid "Organization" msgstr "องค์กร" -#. Label of the organization_details_section (Section Break) field in DocType +#. Label of the organization_details_section (Section Break) field in PageType #. 'CRM Deal' -#: crm/fcrm/doctype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_deal/crm_deal.json msgid "Organization Details" msgstr "" -#. Label of the organization_logo (Attach Image) field in DocType 'CRM +#. Label of the organization_logo (Attach Image) field in PageType 'CRM #. Organization' -#: crm/fcrm/doctype/crm_organization/crm_organization.json +#: crm/fcrm/pagetype/crm_organization/crm_organization.json msgid "Organization Logo" msgstr "" -#. Label of the organization_name (Data) field in DocType 'CRM Deal' -#. Label of the organization_name (Data) field in DocType 'CRM Organization' -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_organization/crm_organization.json +#. Label of the organization_name (Data) field in PageType 'CRM Deal' +#. Label of the organization_name (Data) field in PageType 'CRM Organization' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_organization/crm_organization.json msgid "Organization Name" msgstr "ชื่อองค์กร" @@ -4181,8 +4181,8 @@ msgstr "ชื่อองค์กร" msgid "Organization logo" msgstr "" -#. Label of a shortcut in the Frappe CRM Workspace -#: crm/fcrm/workspace/frappe_crm/frappe_crm.json +#. Label of a shortcut in the Jingrow CRM Workspace +#: crm/fcrm/workspace/jingrow_crm/jingrow_crm.json #: frontend/src/pages/MobileOrganization.vue:205 #: frontend/src/pages/Organization.vue:234 msgid "Organizations" @@ -4196,8 +4196,8 @@ msgstr "" msgid "Other features" msgstr "" -#. Label of the organization_tab (Tab Break) field in DocType 'CRM Lead' -#: crm/fcrm/doctype/crm_lead/crm_lead.json +#. Label of the organization_tab (Tab Break) field in PageType 'CRM Lead' +#: crm/fcrm/pagetype/crm_lead/crm_lead.json msgid "Others" msgstr "" @@ -4205,13 +4205,13 @@ msgstr "" msgid "Outbound Call" msgstr "" -#. Option for the 'Type' (Select) field in DocType 'CRM Call Log' -#: crm/fcrm/doctype/crm_call_log/crm_call_log.json +#. Option for the 'Type' (Select) field in PageType 'CRM Call Log' +#: crm/fcrm/pagetype/crm_call_log/crm_call_log.json msgid "Outgoing" msgstr "ขาออก" -#. Label of the log_owner (Link) field in DocType 'CRM Status Change Log' -#: crm/fcrm/doctype/crm_status_change_log/crm_status_change_log.json +#. Label of the log_owner (Link) field in PageType 'CRM Status Change Log' +#: crm/fcrm/pagetype/crm_status_change_log/crm_status_change_log.json msgid "Owner" msgstr "เจ้าของ" @@ -4219,8 +4219,8 @@ msgstr "เจ้าของ" msgid "Owner: {0}" msgstr "" -#. Label of the parent_crm_territory (Link) field in DocType 'CRM Territory' -#: crm/fcrm/doctype/crm_territory/crm_territory.json +#. Label of the parent_crm_territory (Link) field in PageType 'CRM Territory' +#: crm/fcrm/pagetype/crm_territory/crm_territory.json msgid "Parent CRM Territory" msgstr "" @@ -4251,8 +4251,8 @@ msgstr "" msgid "Payment Reminder from Frappé - (#{{ name }})" msgstr "" -#. Option for the 'Status' (Select) field in DocType 'CRM Invitation' -#: crm/fcrm/doctype/crm_invitation/crm_invitation.json +#. Option for the 'Status' (Select) field in PageType 'CRM Invitation' +#: crm/fcrm/pagetype/crm_invitation/crm_invitation.json msgid "Pending" msgstr "" @@ -4264,10 +4264,10 @@ msgstr "" msgid "Period" msgstr "" -#. Label of the person_section (Section Break) field in DocType 'CRM Deal' -#. Label of the person_tab (Tab Break) field in DocType 'CRM Lead' -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_lead/crm_lead.json +#. Label of the person_section (Section Break) field in PageType 'CRM Deal' +#. Label of the person_tab (Tab Break) field in PageType 'CRM Lead' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_lead/crm_lead.json msgid "Person" msgstr "" @@ -4275,19 +4275,19 @@ msgstr "" msgid "Personal Settings" msgstr "" -#. Label of the phone (Data) field in DocType 'CRM Contacts' -#. Label of the phone (Data) field in DocType 'CRM Lead' -#. Option for the 'Device' (Select) field in DocType 'CRM Telephony Agent' -#: crm/fcrm/doctype/crm_contacts/crm_contacts.json -#: crm/fcrm/doctype/crm_lead/crm_lead.json -#: crm/fcrm/doctype/crm_telephony_agent/crm_telephony_agent.json +#. Label of the phone (Data) field in PageType 'CRM Contacts' +#. Label of the phone (Data) field in PageType 'CRM Lead' +#. Option for the 'Device' (Select) field in PageType 'CRM Telephony Agent' +#: crm/fcrm/pagetype/crm_contacts/crm_contacts.json +#: crm/fcrm/pagetype/crm_lead/crm_lead.json +#: crm/fcrm/pagetype/crm_telephony_agent/crm_telephony_agent.json #: frontend/src/pages/MobileOrganization.vue:495 #: frontend/src/pages/Organization.vue:516 msgid "Phone" msgstr "โทรศัพท์" -#. Label of the phone_nos (Table) field in DocType 'CRM Telephony Agent' -#: crm/fcrm/doctype/crm_telephony_agent/crm_telephony_agent.json +#. Label of the phone_nos (Table) field in PageType 'CRM Telephony Agent' +#: crm/fcrm/pagetype/crm_telephony_agent/crm_telephony_agent.json msgid "Phone Numbers" msgstr "" @@ -4295,8 +4295,8 @@ msgstr "" msgid "Pin View" msgstr "" -#. Label of the pinned (Check) field in DocType 'CRM View Settings' -#: crm/fcrm/doctype/crm_view_settings/crm_view_settings.json +#. Label of the pinned (Check) field in PageType 'CRM View Settings' +#: crm/fcrm/pagetype/crm_view_settings/crm_view_settings.json msgid "Pinned" msgstr "" @@ -4346,7 +4346,7 @@ msgstr "" msgid "Please select an existing organization" msgstr "" -#: crm/fcrm/doctype/helpdesk_crm_settings/helpdesk_crm_settings.py:126 +#: crm/fcrm/pagetype/helpdesk_crm_settings/helpdesk_crm_settings.py:126 msgid "Please set Email Address" msgstr "โปรดตั้งค่าที่อยู่อีเมล" @@ -4354,18 +4354,18 @@ msgstr "โปรดตั้งค่าที่อยู่อีเมล" msgid "Please setup Exotel intergration" msgstr "" -#: crm/fcrm/doctype/crm_deal/crm_deal.py:181 +#: crm/fcrm/pagetype/crm_deal/crm_deal.py:181 msgid "Please specify a reason for losing the deal." msgstr "" -#: crm/fcrm/doctype/crm_deal/crm_deal.py:183 +#: crm/fcrm/pagetype/crm_deal/crm_deal.py:183 msgid "Please specify the reason for losing the deal." msgstr "" -#. Label of the position (Int) field in DocType 'CRM Deal Status' -#. Label of the position (Int) field in DocType 'CRM Lead Status' -#: crm/fcrm/doctype/crm_deal_status/crm_deal_status.json -#: crm/fcrm/doctype/crm_lead_status/crm_lead_status.json +#. Label of the position (Int) field in PageType 'CRM Deal Status' +#. Label of the position (Int) field in PageType 'CRM Lead Status' +#: crm/fcrm/pagetype/crm_deal_status/crm_deal_status.json +#: crm/fcrm/pagetype/crm_lead_status/crm_lead_status.json msgid "Position" msgstr "ตำแหน่ง" @@ -4373,18 +4373,18 @@ msgstr "ตำแหน่ง" msgid "Primary" msgstr "หลัก" -#. Label of the email (Data) field in DocType 'CRM Deal' -#: crm/fcrm/doctype/crm_deal/crm_deal.json +#. Label of the email (Data) field in PageType 'CRM Deal' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json msgid "Primary Email" msgstr "อีเมลหลัก" -#. Label of the mobile_no (Data) field in DocType 'CRM Deal' -#: crm/fcrm/doctype/crm_deal/crm_deal.json +#. Label of the mobile_no (Data) field in PageType 'CRM Deal' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json msgid "Primary Mobile No" msgstr "" -#. Label of the phone (Data) field in DocType 'CRM Deal' -#: crm/fcrm/doctype/crm_deal/crm_deal.json +#. Label of the phone (Data) field in PageType 'CRM Deal' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json msgid "Primary Phone" msgstr "โทรศัพท์หลัก" @@ -4392,57 +4392,57 @@ msgstr "โทรศัพท์หลัก" msgid "Primary contact set" msgstr "" -#. Label of the priorities (Table) field in DocType 'CRM Service Level +#. Label of the priorities (Table) field in PageType 'CRM Service Level #. Agreement' -#: crm/fcrm/doctype/crm_service_level_agreement/crm_service_level_agreement.json +#: crm/fcrm/pagetype/crm_service_level_agreement/crm_service_level_agreement.json msgid "Priorities" msgstr "ลำดับความสำคัญ" -#. Label of the priority (Link) field in DocType 'CRM Service Level Priority' -#. Label of the priority (Select) field in DocType 'CRM Task' -#: crm/fcrm/doctype/crm_service_level_priority/crm_service_level_priority.json -#: crm/fcrm/doctype/crm_task/crm_task.json +#. Label of the priority (Link) field in PageType 'CRM Service Level Priority' +#. Label of the priority (Select) field in PageType 'CRM Task' +#: crm/fcrm/pagetype/crm_service_level_priority/crm_service_level_priority.json +#: crm/fcrm/pagetype/crm_task/crm_task.json #: frontend/src/components/Settings/AssignmentRules/AssignmentRuleView.vue:64 #: frontend/src/components/Settings/AssignmentRules/AssignmentRulesList.vue:20 msgid "Priority" msgstr "ลำดับความสำคัญ" -#. Label of the private (Check) field in DocType 'CRM Dashboard' -#: crm/fcrm/doctype/crm_dashboard/crm_dashboard.json +#. Label of the private (Check) field in PageType 'CRM Dashboard' +#: crm/fcrm/pagetype/crm_dashboard/crm_dashboard.json #: frontend/src/components/FilesUploader/FilesUploaderArea.vue:89 msgid "Private" msgstr "ส่วนตัว" -#. Label of the probability (Percent) field in DocType 'CRM Deal' -#. Label of the probability (Percent) field in DocType 'CRM Deal Status' -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_deal_status/crm_deal_status.json +#. Label of the probability (Percent) field in PageType 'CRM Deal' +#. Label of the probability (Percent) field in PageType 'CRM Deal Status' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_deal_status/crm_deal_status.json msgid "Probability" msgstr "ความน่าจะเป็น" -#. Label of the product_code (Link) field in DocType 'CRM Products' -#: crm/fcrm/doctype/crm_products/crm_products.json +#. Label of the product_code (Link) field in PageType 'CRM Products' +#: crm/fcrm/pagetype/crm_products/crm_products.json msgid "Product" msgstr "สินค้า" -#. Label of the product_code (Data) field in DocType 'CRM Product' -#: crm/fcrm/doctype/crm_product/crm_product.json +#. Label of the product_code (Data) field in PageType 'CRM Product' +#: crm/fcrm/pagetype/crm_product/crm_product.json msgid "Product Code" msgstr "" -#. Label of the product_name (Data) field in DocType 'CRM Product' -#. Label of the product_name (Data) field in DocType 'CRM Products' -#: crm/fcrm/doctype/crm_product/crm_product.json -#: crm/fcrm/doctype/crm_products/crm_products.json +#. Label of the product_name (Data) field in PageType 'CRM Product' +#. Label of the product_name (Data) field in PageType 'CRM Products' +#: crm/fcrm/pagetype/crm_product/crm_product.json +#: crm/fcrm/pagetype/crm_products/crm_products.json msgid "Product Name" msgstr "" -#. Label of the products_tab (Tab Break) field in DocType 'CRM Deal' -#. Label of the products (Table) field in DocType 'CRM Deal' -#. Label of the products_tab (Tab Break) field in DocType 'CRM Lead' -#. Label of the products (Table) field in DocType 'CRM Lead' -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_lead/crm_lead.json +#. Label of the products_tab (Tab Break) field in PageType 'CRM Deal' +#. Label of the products (Table) field in PageType 'CRM Deal' +#. Label of the products_tab (Tab Break) field in PageType 'CRM Lead' +#. Label of the products (Table) field in PageType 'CRM Lead' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_lead/crm_lead.json msgid "Products" msgstr "สินค้า" @@ -4459,8 +4459,8 @@ msgstr "" msgid "Projected vs actual revenue based on deal probability" msgstr "" -#. Label of the public (Check) field in DocType 'CRM View Settings' -#: crm/fcrm/doctype/crm_view_settings/crm_view_settings.json +#. Label of the public (Check) field in PageType 'CRM View Settings' +#: crm/fcrm/pagetype/crm_view_settings/crm_view_settings.json msgid "Public" msgstr "สาธารณะ" @@ -4472,23 +4472,23 @@ msgstr "" msgid "Public view" msgstr "" -#. Label of the qty (Float) field in DocType 'CRM Products' -#: crm/fcrm/doctype/crm_products/crm_products.json +#. Label of the qty (Float) field in PageType 'CRM Products' +#: crm/fcrm/pagetype/crm_products/crm_products.json msgid "Quantity" msgstr "ปริมาณ" -#. Option for the 'Status' (Select) field in DocType 'CRM Call Log' -#: crm/fcrm/doctype/crm_call_log/crm_call_log.json +#. Option for the 'Status' (Select) field in PageType 'CRM Call Log' +#: crm/fcrm/pagetype/crm_call_log/crm_call_log.json msgid "Queued" msgstr "อยู่ในคิว" -#. Option for the 'Type' (Select) field in DocType 'CRM Fields Layout' -#: crm/fcrm/doctype/crm_fields_layout/crm_fields_layout.json +#. Option for the 'Type' (Select) field in PageType 'CRM Fields Layout' +#: crm/fcrm/pagetype/crm_fields_layout/crm_fields_layout.json msgid "Quick Entry" msgstr "การป้อนข้อมูลอย่างรวดเร็ว" -#. Option for the 'Type' (Select) field in DocType 'CRM Global Settings' -#: crm/fcrm/doctype/crm_global_settings/crm_global_settings.json +#. Option for the 'Type' (Select) field in PageType 'CRM Global Settings' +#: crm/fcrm/pagetype/crm_global_settings/crm_global_settings.json msgid "Quick Filters" msgstr "" @@ -4500,13 +4500,13 @@ msgstr "" msgid "Quick entry layout" msgstr "" -#. Label of the rate (Currency) field in DocType 'CRM Products' -#: crm/fcrm/doctype/crm_products/crm_products.json +#. Label of the rate (Currency) field in PageType 'CRM Products' +#: crm/fcrm/pagetype/crm_products/crm_products.json msgid "Rate" msgstr "อัตรา/ราคา" -#. Label of the read (Check) field in DocType 'CRM Notification' -#: crm/fcrm/doctype/crm_notification/crm_notification.json +#. Label of the read (Check) field in PageType 'CRM Notification' +#: crm/fcrm/pagetype/crm_notification/crm_notification.json msgid "Read" msgstr "อ่านแล้ว" @@ -4514,48 +4514,48 @@ msgstr "อ่านแล้ว" msgid "Reason" msgstr "เหตุผล" -#. Label of the record_calls (Check) field in DocType 'CRM Twilio Settings' -#: crm/fcrm/doctype/crm_twilio_settings/crm_twilio_settings.json +#. Label of the record_calls (Check) field in PageType 'CRM Twilio Settings' +#: crm/fcrm/pagetype/crm_twilio_settings/crm_twilio_settings.json msgid "Record Calls" msgstr "" -#. Label of the record_call (Check) field in DocType 'CRM Exotel Settings' -#: crm/fcrm/doctype/crm_exotel_settings/crm_exotel_settings.json +#. Label of the record_call (Check) field in PageType 'CRM Exotel Settings' +#: crm/fcrm/pagetype/crm_exotel_settings/crm_exotel_settings.json msgid "Record Outgoing Calls" msgstr "" -#. Label of the recording_url (Data) field in DocType 'CRM Call Log' -#: crm/fcrm/doctype/crm_call_log/crm_call_log.json +#. Label of the recording_url (Data) field in PageType 'CRM Call Log' +#: crm/fcrm/pagetype/crm_call_log/crm_call_log.json msgid "Recording URL" msgstr "การบันทึก URL" -#. Label of the reference_name (Dynamic Link) field in DocType 'CRM +#. Label of the reference_name (Dynamic Link) field in PageType 'CRM #. Notification' -#. Label of the reference_docname (Dynamic Link) field in DocType 'CRM Task' -#. Label of the reference_docname (Dynamic Link) field in DocType 'FCRM Note' -#: crm/fcrm/doctype/crm_notification/crm_notification.json -#: crm/fcrm/doctype/crm_task/crm_task.json -#: crm/fcrm/doctype/fcrm_note/fcrm_note.json -msgid "Reference Doc" +#. Label of the reference_docname (Dynamic Link) field in PageType 'CRM Task' +#. Label of the reference_docname (Dynamic Link) field in PageType 'FCRM Note' +#: crm/fcrm/pagetype/crm_notification/crm_notification.json +#: crm/fcrm/pagetype/crm_task/crm_task.json +#: crm/fcrm/pagetype/fcrm_note/fcrm_note.json +msgid "Reference Pg" msgstr "" -#. Label of the reference_doctype (Link) field in DocType 'CRM Notification' -#: crm/fcrm/doctype/crm_notification/crm_notification.json -msgid "Reference Doctype" +#. Label of the reference_pagetype (Link) field in PageType 'CRM Notification' +#: crm/fcrm/pagetype/crm_notification/crm_notification.json +msgid "Reference Pagetype" msgstr "ประเภทเอกสารอ้างอิง" -#. Label of the reference_doctype (Link) field in DocType 'CRM Call Log' -#. Label of the reference_doctype (Link) field in DocType 'CRM Task' -#. Label of the reference_doctype (Link) field in DocType 'FCRM Note' -#: crm/fcrm/doctype/crm_call_log/crm_call_log.json -#: crm/fcrm/doctype/crm_task/crm_task.json -#: crm/fcrm/doctype/fcrm_note/fcrm_note.json +#. Label of the reference_pagetype (Link) field in PageType 'CRM Call Log' +#. Label of the reference_pagetype (Link) field in PageType 'CRM Task' +#. Label of the reference_pagetype (Link) field in PageType 'FCRM Note' +#: crm/fcrm/pagetype/crm_call_log/crm_call_log.json +#: crm/fcrm/pagetype/crm_task/crm_task.json +#: crm/fcrm/pagetype/fcrm_note/fcrm_note.json msgid "Reference Document Type" msgstr "ประเภทเอกสารอ้างอิง" -#. Label of the reference_docname (Dynamic Link) field in DocType 'CRM Call +#. Label of the reference_docname (Dynamic Link) field in PageType 'CRM Call #. Log' -#: crm/fcrm/doctype/crm_call_log/crm_call_log.json +#: crm/fcrm/pagetype/crm_call_log/crm_call_log.json msgid "Reference Name" msgstr "ชื่ออ้างอิง" @@ -4625,8 +4625,8 @@ msgstr "ตอบกลับทั้งหมด" msgid "Report an Issue" msgstr "รายงานปัญหา" -#. Option for the 'Type' (Select) field in DocType 'CRM Fields Layout' -#: crm/fcrm/doctype/crm_fields_layout/crm_fields_layout.json +#. Option for the 'Type' (Select) field in PageType 'CRM Fields Layout' +#: crm/fcrm/pagetype/crm_fields_layout/crm_fields_layout.json msgid "Required Fields" msgstr "" @@ -4642,7 +4642,7 @@ msgstr "เริ่มใหม่" msgid "Reset Changes" msgstr "" -#: crm/fcrm/doctype/erpnext_crm_settings/erpnext_crm_settings.js:7 +#: crm/fcrm/pagetype/erpnext_crm_settings/erpnext_crm_settings.js:7 msgid "Reset ERPNext Form Script" msgstr "" @@ -4654,35 +4654,35 @@ msgstr "" msgid "Reset to default" msgstr "" -#. Label of the response_by (Datetime) field in DocType 'CRM Deal' -#. Label of the response_by (Datetime) field in DocType 'CRM Lead' -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_lead/crm_lead.json +#. Label of the response_by (Datetime) field in PageType 'CRM Deal' +#. Label of the response_by (Datetime) field in PageType 'CRM Lead' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_lead/crm_lead.json msgid "Response By" msgstr "การตอบกลับโดย" -#. Label of the response_details_section (Section Break) field in DocType 'CRM +#. Label of the response_details_section (Section Break) field in PageType 'CRM #. Deal' -#. Label of the response_details_section (Section Break) field in DocType 'CRM +#. Label of the response_details_section (Section Break) field in PageType 'CRM #. Lead' -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_lead/crm_lead.json +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_lead/crm_lead.json msgid "Response Details" msgstr "รายละเอียดการตอบกลับ" -#. Label of the section_break_ufaf (Section Break) field in DocType 'CRM +#. Label of the section_break_ufaf (Section Break) field in PageType 'CRM #. Service Level Agreement' -#: crm/fcrm/doctype/crm_service_level_agreement/crm_service_level_agreement.json +#: crm/fcrm/pagetype/crm_service_level_agreement/crm_service_level_agreement.json msgid "Response and Follow Up" msgstr "" -#: crm/fcrm/doctype/fcrm_settings/fcrm_settings.js:14 +#: crm/fcrm/pagetype/fcrm_settings/fcrm_settings.js:14 msgid "Restore" msgstr "กู้คืน" -#. Label of the restore_defaults (Button) field in DocType 'FCRM Settings' -#: crm/fcrm/doctype/fcrm_settings/fcrm_settings.js:13 -#: crm/fcrm/doctype/fcrm_settings/fcrm_settings.json +#. Label of the restore_defaults (Button) field in PageType 'FCRM Settings' +#: crm/fcrm/pagetype/fcrm_settings/fcrm_settings.js:13 +#: crm/fcrm/pagetype/fcrm_settings/fcrm_settings.json msgid "Restore Defaults" msgstr "" @@ -4699,13 +4699,13 @@ msgstr "รายได้" msgid "Rich Text" msgstr "ข้อความที่มีรูปแบบ" -#. Label of the rgt (Int) field in DocType 'CRM Territory' -#: crm/fcrm/doctype/crm_territory/crm_territory.json +#. Label of the rgt (Int) field in PageType 'CRM Territory' +#: crm/fcrm/pagetype/crm_territory/crm_territory.json msgid "Right" msgstr "ขวา" -#. Option for the 'Status' (Select) field in DocType 'CRM Call Log' -#: crm/fcrm/doctype/crm_call_log/crm_call_log.json +#. Option for the 'Status' (Select) field in PageType 'CRM Call Log' +#: crm/fcrm/pagetype/crm_call_log/crm_call_log.json msgid "Ringing" msgstr "กำลังโทร" @@ -4714,55 +4714,55 @@ msgstr "กำลังโทร" msgid "Ringing..." msgstr "" -#. Label of the role (Select) field in DocType 'CRM Invitation' -#: crm/fcrm/doctype/crm_invitation/crm_invitation.json +#. Label of the role (Select) field in PageType 'CRM Invitation' +#: crm/fcrm/pagetype/crm_invitation/crm_invitation.json #: frontend/src/components/Modals/AddExistingUserModal.vue:46 msgid "Role" msgstr "บทบาท" -#. Option for the 'Type' (Select) field in DocType 'CRM Dropdown Item' -#. Label of the route (Data) field in DocType 'CRM Dropdown Item' -#: crm/fcrm/doctype/crm_dropdown_item/crm_dropdown_item.json +#. Option for the 'Type' (Select) field in PageType 'CRM Dropdown Item' +#. Label of the route (Data) field in PageType 'CRM Dropdown Item' +#: crm/fcrm/pagetype/crm_dropdown_item/crm_dropdown_item.json msgid "Route" msgstr "เส้นทาง" -#. Label of the route_name (Data) field in DocType 'CRM View Settings' -#: crm/fcrm/doctype/crm_view_settings/crm_view_settings.json +#. Label of the route_name (Data) field in PageType 'CRM View Settings' +#: crm/fcrm/pagetype/crm_view_settings/crm_view_settings.json msgid "Route Name" msgstr "" -#. Label of the rows (Code) field in DocType 'CRM View Settings' -#: crm/fcrm/doctype/crm_view_settings/crm_view_settings.json +#. Label of the rows (Code) field in PageType 'CRM View Settings' +#: crm/fcrm/pagetype/crm_view_settings/crm_view_settings.json msgid "Rows" msgstr "" -#. Label of the sla_tab (Tab Break) field in DocType 'CRM Deal' -#. Label of the sla (Link) field in DocType 'CRM Deal' -#. Label of the sla_tab (Tab Break) field in DocType 'CRM Lead' -#. Label of the sla (Link) field in DocType 'CRM Lead' -#. Label of a shortcut in the Frappe CRM Workspace -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_lead/crm_lead.json -#: crm/fcrm/workspace/frappe_crm/frappe_crm.json +#. Label of the sla_tab (Tab Break) field in PageType 'CRM Deal' +#. Label of the sla (Link) field in PageType 'CRM Deal' +#. Label of the sla_tab (Tab Break) field in PageType 'CRM Lead' +#. Label of the sla (Link) field in PageType 'CRM Lead' +#. Label of a shortcut in the Jingrow CRM Workspace +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_lead/crm_lead.json +#: crm/fcrm/workspace/jingrow_crm/jingrow_crm.json msgid "SLA" msgstr "" -#. Label of the sla_creation (Datetime) field in DocType 'CRM Deal' -#. Label of the sla_creation (Datetime) field in DocType 'CRM Lead' -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_lead/crm_lead.json +#. Label of the sla_creation (Datetime) field in PageType 'CRM Deal' +#. Label of the sla_creation (Datetime) field in PageType 'CRM Lead' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_lead/crm_lead.json msgid "SLA Creation" msgstr "" -#. Label of the sla_name (Data) field in DocType 'CRM Service Level Agreement' -#: crm/fcrm/doctype/crm_service_level_agreement/crm_service_level_agreement.json +#. Label of the sla_name (Data) field in PageType 'CRM Service Level Agreement' +#: crm/fcrm/pagetype/crm_service_level_agreement/crm_service_level_agreement.json msgid "SLA Name" msgstr "" -#. Label of the sla_status (Select) field in DocType 'CRM Deal' -#. Label of the sla_status (Select) field in DocType 'CRM Lead' -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_lead/crm_lead.json +#. Label of the sla_status (Select) field in PageType 'CRM Deal' +#. Label of the sla_status (Select) field in PageType 'CRM Lead' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_lead/crm_lead.json msgid "SLA Status" msgstr "" @@ -4771,57 +4771,57 @@ msgid "SUBJECT" msgstr "" #. Name of a role -#. Option for the 'Role' (Select) field in DocType 'CRM Invitation' -#: crm/fcrm/doctype/crm_call_log/crm_call_log.json -#: crm/fcrm/doctype/crm_communication_status/crm_communication_status.json -#: crm/fcrm/doctype/crm_dashboard/crm_dashboard.json -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_deal_status/crm_deal_status.json -#: crm/fcrm/doctype/crm_exotel_settings/crm_exotel_settings.json -#: crm/fcrm/doctype/crm_form_script/crm_form_script.json -#: crm/fcrm/doctype/crm_global_settings/crm_global_settings.json -#: crm/fcrm/doctype/crm_holiday_list/crm_holiday_list.json -#: crm/fcrm/doctype/crm_industry/crm_industry.json -#: crm/fcrm/doctype/crm_invitation/crm_invitation.json -#: crm/fcrm/doctype/crm_lead/crm_lead.json -#: crm/fcrm/doctype/crm_lead_source/crm_lead_source.json -#: crm/fcrm/doctype/crm_lead_status/crm_lead_status.json -#: crm/fcrm/doctype/crm_lost_reason/crm_lost_reason.json -#: crm/fcrm/doctype/crm_notification/crm_notification.json -#: crm/fcrm/doctype/crm_organization/crm_organization.json -#: crm/fcrm/doctype/crm_service_level_agreement/crm_service_level_agreement.json -#: crm/fcrm/doctype/crm_task/crm_task.json -#: crm/fcrm/doctype/crm_territory/crm_territory.json -#: crm/fcrm/doctype/crm_twilio_settings/crm_twilio_settings.json -#: crm/fcrm/doctype/crm_view_settings/crm_view_settings.json -#: crm/fcrm/doctype/erpnext_crm_settings/erpnext_crm_settings.json -#: crm/fcrm/doctype/fcrm_note/fcrm_note.json -#: crm/fcrm/doctype/fcrm_settings/fcrm_settings.json -#: crm/fcrm/doctype/helpdesk_crm_settings/helpdesk_crm_settings.json +#. Option for the 'Role' (Select) field in PageType 'CRM Invitation' +#: crm/fcrm/pagetype/crm_call_log/crm_call_log.json +#: crm/fcrm/pagetype/crm_communication_status/crm_communication_status.json +#: crm/fcrm/pagetype/crm_dashboard/crm_dashboard.json +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_deal_status/crm_deal_status.json +#: crm/fcrm/pagetype/crm_exotel_settings/crm_exotel_settings.json +#: crm/fcrm/pagetype/crm_form_script/crm_form_script.json +#: crm/fcrm/pagetype/crm_global_settings/crm_global_settings.json +#: crm/fcrm/pagetype/crm_holiday_list/crm_holiday_list.json +#: crm/fcrm/pagetype/crm_industry/crm_industry.json +#: crm/fcrm/pagetype/crm_invitation/crm_invitation.json +#: crm/fcrm/pagetype/crm_lead/crm_lead.json +#: crm/fcrm/pagetype/crm_lead_source/crm_lead_source.json +#: crm/fcrm/pagetype/crm_lead_status/crm_lead_status.json +#: crm/fcrm/pagetype/crm_lost_reason/crm_lost_reason.json +#: crm/fcrm/pagetype/crm_notification/crm_notification.json +#: crm/fcrm/pagetype/crm_organization/crm_organization.json +#: crm/fcrm/pagetype/crm_service_level_agreement/crm_service_level_agreement.json +#: crm/fcrm/pagetype/crm_task/crm_task.json +#: crm/fcrm/pagetype/crm_territory/crm_territory.json +#: crm/fcrm/pagetype/crm_twilio_settings/crm_twilio_settings.json +#: crm/fcrm/pagetype/crm_view_settings/crm_view_settings.json +#: crm/fcrm/pagetype/erpnext_crm_settings/erpnext_crm_settings.json +#: crm/fcrm/pagetype/fcrm_note/fcrm_note.json +#: crm/fcrm/pagetype/fcrm_settings/fcrm_settings.json +#: crm/fcrm/pagetype/helpdesk_crm_settings/helpdesk_crm_settings.json msgid "Sales Manager" msgstr "ผู้จัดการฝ่ายขาย" #. Name of a role -#. Option for the 'Role' (Select) field in DocType 'CRM Invitation' -#: crm/fcrm/doctype/crm_call_log/crm_call_log.json -#: crm/fcrm/doctype/crm_communication_status/crm_communication_status.json -#: crm/fcrm/doctype/crm_dashboard/crm_dashboard.json -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_deal_status/crm_deal_status.json -#: crm/fcrm/doctype/crm_global_settings/crm_global_settings.json -#: crm/fcrm/doctype/crm_holiday_list/crm_holiday_list.json -#: crm/fcrm/doctype/crm_industry/crm_industry.json -#: crm/fcrm/doctype/crm_invitation/crm_invitation.json -#: crm/fcrm/doctype/crm_lead/crm_lead.json -#: crm/fcrm/doctype/crm_lead_source/crm_lead_source.json -#: crm/fcrm/doctype/crm_lead_status/crm_lead_status.json -#: crm/fcrm/doctype/crm_lost_reason/crm_lost_reason.json -#: crm/fcrm/doctype/crm_notification/crm_notification.json -#: crm/fcrm/doctype/crm_organization/crm_organization.json -#: crm/fcrm/doctype/crm_task/crm_task.json -#: crm/fcrm/doctype/crm_territory/crm_territory.json -#: crm/fcrm/doctype/crm_view_settings/crm_view_settings.json -#: crm/fcrm/doctype/fcrm_note/fcrm_note.json +#. Option for the 'Role' (Select) field in PageType 'CRM Invitation' +#: crm/fcrm/pagetype/crm_call_log/crm_call_log.json +#: crm/fcrm/pagetype/crm_communication_status/crm_communication_status.json +#: crm/fcrm/pagetype/crm_dashboard/crm_dashboard.json +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_deal_status/crm_deal_status.json +#: crm/fcrm/pagetype/crm_global_settings/crm_global_settings.json +#: crm/fcrm/pagetype/crm_holiday_list/crm_holiday_list.json +#: crm/fcrm/pagetype/crm_industry/crm_industry.json +#: crm/fcrm/pagetype/crm_invitation/crm_invitation.json +#: crm/fcrm/pagetype/crm_lead/crm_lead.json +#: crm/fcrm/pagetype/crm_lead_source/crm_lead_source.json +#: crm/fcrm/pagetype/crm_lead_status/crm_lead_status.json +#: crm/fcrm/pagetype/crm_lost_reason/crm_lost_reason.json +#: crm/fcrm/pagetype/crm_notification/crm_notification.json +#: crm/fcrm/pagetype/crm_organization/crm_organization.json +#: crm/fcrm/pagetype/crm_task/crm_task.json +#: crm/fcrm/pagetype/crm_territory/crm_territory.json +#: crm/fcrm/pagetype/crm_view_settings/crm_view_settings.json +#: crm/fcrm/pagetype/fcrm_note/fcrm_note.json #: frontend/src/components/Modals/AddExistingUserModal.vue:92 #: frontend/src/components/Settings/InviteUserPage.vue:156 #: frontend/src/components/Settings/InviteUserPage.vue:163 @@ -4845,17 +4845,17 @@ msgstr "" msgid "Salesperson" msgstr "" -#. Label of the salutation (Link) field in DocType 'CRM Deal' -#. Label of the salutation (Link) field in DocType 'CRM Lead' -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_lead/crm_lead.json +#. Label of the salutation (Link) field in PageType 'CRM Deal' +#. Label of the salutation (Link) field in PageType 'CRM Lead' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_lead/crm_lead.json msgid "Salutation" msgstr "คำทักทาย" -#. Option for the 'Weekly Off' (Select) field in DocType 'CRM Holiday List' -#. Option for the 'Workday' (Select) field in DocType 'CRM Service Day' -#: crm/fcrm/doctype/crm_holiday_list/crm_holiday_list.json -#: crm/fcrm/doctype/crm_service_day/crm_service_day.json +#. Option for the 'Weekly Off' (Select) field in PageType 'CRM Holiday List' +#. Option for the 'Workday' (Select) field in PageType 'CRM Service Day' +#: crm/fcrm/pagetype/crm_holiday_list/crm_holiday_list.json +#: crm/fcrm/pagetype/crm_service_day/crm_service_day.json msgid "Saturday" msgstr "วันเสาร์" @@ -4904,8 +4904,8 @@ msgstr "" msgid "Schedule an event" msgstr "" -#. Label of the script (Code) field in DocType 'CRM Form Script' -#: crm/fcrm/doctype/crm_form_script/crm_form_script.json +#. Label of the script (Code) field in PageType 'CRM Form Script' +#: crm/fcrm/pagetype/crm_form_script/crm_form_script.json msgid "Script" msgstr "" @@ -4973,18 +4973,18 @@ msgstr "" msgid "Send invites to" msgstr "" -#. Option for the 'Type' (Select) field in DocType 'CRM Dropdown Item' -#: crm/fcrm/doctype/crm_dropdown_item/crm_dropdown_item.json +#. Option for the 'Type' (Select) field in PageType 'CRM Dropdown Item' +#: crm/fcrm/pagetype/crm_dropdown_item/crm_dropdown_item.json msgid "Separator" msgstr "" -#. Label of the naming_series (Select) field in DocType 'CRM Lead' -#: crm/fcrm/doctype/crm_lead/crm_lead.json +#. Label of the naming_series (Select) field in PageType 'CRM Lead' +#: crm/fcrm/pagetype/crm_lead/crm_lead.json msgid "Series" msgstr "ชุด" -#. Label of the service_provider (Select) field in DocType 'FCRM Settings' -#: crm/fcrm/doctype/fcrm_settings/fcrm_settings.json +#. Label of the service_provider (Select) field in PageType 'FCRM Settings' +#: crm/fcrm/pagetype/fcrm_settings/fcrm_settings.json msgid "Service Provider" msgstr "" @@ -5029,7 +5029,7 @@ msgid "Setting up" msgstr "" #: frontend/src/components/Settings/emailConfig.js:145 -msgid "Setting up Frappe Mail requires you to have an API key and API Secret of your email account. Read more " +msgid "Setting up Jingrow Mail requires you to have an API key and API Secret of your email account. Read more " msgstr "" #: frontend/src/components/Settings/emailConfig.js:97 @@ -5062,8 +5062,8 @@ msgid "Setting up Yandex requires you to enable two factor authentication\n" "\t\t and app specific passwords. Read more " msgstr "" -#. Label of the defaults_tab (Tab Break) field in DocType 'FCRM Settings' -#: crm/fcrm/doctype/fcrm_settings/fcrm_settings.json +#. Label of the defaults_tab (Tab Break) field in PageType 'FCRM Settings' +#: crm/fcrm/pagetype/fcrm_settings/fcrm_settings.json #: frontend/src/components/Layouts/AppSidebar.vue:537 #: frontend/src/components/Settings/Settings.vue:12 msgid "Settings" @@ -5073,7 +5073,7 @@ msgstr "การตั้งค่า" msgid "Setup Email" msgstr "" -#: crm/fcrm/doctype/fcrm_settings/fcrm_settings.py:199 +#: crm/fcrm/pagetype/fcrm_settings/fcrm_settings.py:199 msgid "Setup the Exchange Rate Provider as 'Exchangerate Host' in settings, as default provider does not support currency conversion for {0} to {1}." msgstr "" @@ -5108,20 +5108,20 @@ msgstr "" msgid "Show preview" msgstr "" -#. Option for the 'Type' (Select) field in DocType 'CRM Fields Layout' -#: crm/fcrm/doctype/crm_fields_layout/crm_fields_layout.json +#. Option for the 'Type' (Select) field in PageType 'CRM Fields Layout' +#: crm/fcrm/pagetype/crm_fields_layout/crm_fields_layout.json msgid "Side Panel" msgstr "" -#. Option for the 'Type' (Select) field in DocType 'CRM Global Settings' -#: crm/fcrm/doctype/crm_global_settings/crm_global_settings.json +#. Option for the 'Type' (Select) field in PageType 'CRM Global Settings' +#: crm/fcrm/pagetype/crm_global_settings/crm_global_settings.json msgid "Sidebar Items" msgstr "" -#. Description of the 'Condition' (Code) field in DocType 'CRM Service Level +#. Description of the 'Condition' (Code) field in PageType 'CRM Service Level #. Agreement' -#: crm/fcrm/doctype/crm_service_level_agreement/crm_service_level_agreement.json -msgid "Simple Python Expression, Example: doc.status == 'Open' and doc.lead_source == 'Ads'" +#: crm/fcrm/pagetype/crm_service_level_agreement/crm_service_level_agreement.json +msgid "Simple Python Expression, Example: pg.status == 'Open' and pg.lead_source == 'Ads'" msgstr "" #: frontend/src/components/AssignTo.vue:83 @@ -5145,16 +5145,16 @@ msgstr "" msgid "Sort" msgstr "" -#. Label of the source (Link) field in DocType 'CRM Deal' -#. Label of the source (Link) field in DocType 'CRM Lead' -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_lead/crm_lead.json +#. Label of the source (Link) field in PageType 'CRM Deal' +#. Label of the source (Link) field in PageType 'CRM Lead' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_lead/crm_lead.json #: frontend/src/components/Modals/EditValueModal.vue:10 msgid "Source" msgstr "แหล่งที่มา" -#. Label of the source_name (Data) field in DocType 'CRM Lead Source' -#: crm/fcrm/doctype/crm_lead_source/crm_lead_source.json +#. Label of the source_name (Data) field in PageType 'CRM Lead Source' +#: crm/fcrm/pagetype/crm_lead_source/crm_lead_source.json msgid "Source Name" msgstr "ชื่อต้นทาง" @@ -5167,12 +5167,12 @@ msgstr "ตัวเว้นวรรค" msgid "Stage" msgstr "ขั้นตอน" -#: crm/fcrm/doctype/crm_form_script/crm_form_script.js:15 +#: crm/fcrm/pagetype/crm_form_script/crm_form_script.js:15 msgid "Standard Form Scripts can not be modified, duplicate the Form Script instead." msgstr "" -#. Label of the standard_rate (Currency) field in DocType 'CRM Product' -#: crm/fcrm/doctype/crm_product/crm_product.json +#. Label of the standard_rate (Currency) field in PageType 'CRM Product' +#: crm/fcrm/pagetype/crm_product/crm_product.json msgid "Standard Selling Rate" msgstr "อัตราการขายมาตรฐาน" @@ -5180,18 +5180,18 @@ msgstr "อัตราการขายมาตรฐาน" msgid "Standard Views" msgstr "" -#. Label of the start_date (Date) field in DocType 'CRM Service Level +#. Label of the start_date (Date) field in PageType 'CRM Service Level #. Agreement' -#. Label of the start_date (Date) field in DocType 'CRM Task' -#: crm/fcrm/doctype/crm_service_level_agreement/crm_service_level_agreement.json -#: crm/fcrm/doctype/crm_task/crm_task.json +#. Label of the start_date (Date) field in PageType 'CRM Task' +#: crm/fcrm/pagetype/crm_service_level_agreement/crm_service_level_agreement.json +#: crm/fcrm/pagetype/crm_task/crm_task.json msgid "Start Date" msgstr "วันที่เริ่มต้น" -#. Label of the start_time (Datetime) field in DocType 'CRM Call Log' -#. Label of the start_time (Time) field in DocType 'CRM Service Day' -#: crm/fcrm/doctype/crm_call_log/crm_call_log.json -#: crm/fcrm/doctype/crm_service_day/crm_service_day.json +#. Label of the start_time (Datetime) field in PageType 'CRM Call Log' +#. Label of the start_time (Time) field in PageType 'CRM Service Day' +#: crm/fcrm/pagetype/crm_call_log/crm_call_log.json +#: crm/fcrm/pagetype/crm_service_day/crm_service_day.json #: frontend/src/components/Calendar/CalendarEventPanel.vue:234 #: frontend/src/components/Modals/EventModal.vue:103 msgid "Start Time" @@ -5205,32 +5205,32 @@ msgstr "" msgid "Start with sample 10 leads" msgstr "" -#. Label of the status (Select) field in DocType 'CRM Call Log' -#. Label of the status (Data) field in DocType 'CRM Communication Status' -#. Label of the status (Link) field in DocType 'CRM Deal' -#. Label of the deal_status (Data) field in DocType 'CRM Deal Status' -#. Label of the status (Select) field in DocType 'CRM Invitation' -#. Label of the status (Link) field in DocType 'CRM Lead' -#. Label of the lead_status (Data) field in DocType 'CRM Lead Status' -#. Label of the status (Select) field in DocType 'CRM Task' -#: crm/fcrm/doctype/crm_call_log/crm_call_log.json -#: crm/fcrm/doctype/crm_communication_status/crm_communication_status.json -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_deal_status/crm_deal_status.json -#: crm/fcrm/doctype/crm_invitation/crm_invitation.json -#: crm/fcrm/doctype/crm_lead/crm_lead.json -#: crm/fcrm/doctype/crm_lead_status/crm_lead_status.json -#: crm/fcrm/doctype/crm_task/crm_task.json frontend/src/pages/Contact.vue:505 +#. Label of the status (Select) field in PageType 'CRM Call Log' +#. Label of the status (Data) field in PageType 'CRM Communication Status' +#. Label of the status (Link) field in PageType 'CRM Deal' +#. Label of the deal_status (Data) field in PageType 'CRM Deal Status' +#. Label of the status (Select) field in PageType 'CRM Invitation' +#. Label of the status (Link) field in PageType 'CRM Lead' +#. Label of the lead_status (Data) field in PageType 'CRM Lead Status' +#. Label of the status (Select) field in PageType 'CRM Task' +#: crm/fcrm/pagetype/crm_call_log/crm_call_log.json +#: crm/fcrm/pagetype/crm_communication_status/crm_communication_status.json +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_deal_status/crm_deal_status.json +#: crm/fcrm/pagetype/crm_invitation/crm_invitation.json +#: crm/fcrm/pagetype/crm_lead/crm_lead.json +#: crm/fcrm/pagetype/crm_lead_status/crm_lead_status.json +#: crm/fcrm/pagetype/crm_task/crm_task.json frontend/src/pages/Contact.vue:505 #: frontend/src/pages/MobileContact.vue:513 #: frontend/src/pages/MobileOrganization.vue:457 #: frontend/src/pages/Organization.vue:478 msgid "Status" msgstr "สถานะ" -#. Label of the status_change_log (Table) field in DocType 'CRM Deal' -#. Label of the status_change_log (Table) field in DocType 'CRM Lead' -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_lead/crm_lead.json +#. Label of the status_change_log (Table) field in PageType 'CRM Deal' +#. Label of the status_change_log (Table) field in PageType 'CRM Lead' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_lead/crm_lead.json msgid "Status Change Log" msgstr "" @@ -5239,8 +5239,8 @@ msgstr "" msgid "Status is required" msgstr "" -#. Label of the subdomain (Data) field in DocType 'CRM Exotel Settings' -#: crm/fcrm/doctype/crm_exotel_settings/crm_exotel_settings.json +#. Label of the subdomain (Data) field in PageType 'CRM Exotel Settings' +#: crm/fcrm/pagetype/crm_exotel_settings/crm_exotel_settings.json msgid "Subdomain" msgstr "ซับโดเมน" @@ -5258,10 +5258,10 @@ msgstr "" msgid "Subject: {0}" msgstr "" -#. Option for the 'Weekly Off' (Select) field in DocType 'CRM Holiday List' -#. Option for the 'Workday' (Select) field in DocType 'CRM Service Day' -#: crm/fcrm/doctype/crm_holiday_list/crm_holiday_list.json -#: crm/fcrm/doctype/crm_service_day/crm_service_day.json +#. Option for the 'Weekly Off' (Select) field in PageType 'CRM Holiday List' +#. Option for the 'Workday' (Select) field in PageType 'CRM Service Day' +#: crm/fcrm/pagetype/crm_holiday_list/crm_holiday_list.json +#: crm/fcrm/pagetype/crm_service_day/crm_service_day.json msgid "Sunday" msgstr "" @@ -5282,21 +5282,21 @@ msgid "System Configuration" msgstr "" #. Name of a role -#. Option for the 'Role' (Select) field in DocType 'CRM Invitation' -#: crm/fcrm/doctype/crm_dashboard/crm_dashboard.json -#: crm/fcrm/doctype/crm_exotel_settings/crm_exotel_settings.json -#: crm/fcrm/doctype/crm_fields_layout/crm_fields_layout.json -#: crm/fcrm/doctype/crm_global_settings/crm_global_settings.json -#: crm/fcrm/doctype/crm_invitation/crm_invitation.json -#: crm/fcrm/doctype/crm_lead_source/crm_lead_source.json -#: crm/fcrm/doctype/crm_lost_reason/crm_lost_reason.json -#: crm/fcrm/doctype/crm_notification/crm_notification.json -#: crm/fcrm/doctype/crm_product/crm_product.json -#: crm/fcrm/doctype/crm_telephony_agent/crm_telephony_agent.json -#: crm/fcrm/doctype/crm_twilio_settings/crm_twilio_settings.json -#: crm/fcrm/doctype/erpnext_crm_settings/erpnext_crm_settings.json -#: crm/fcrm/doctype/fcrm_settings/fcrm_settings.json -#: crm/fcrm/doctype/helpdesk_crm_settings/helpdesk_crm_settings.json +#. Option for the 'Role' (Select) field in PageType 'CRM Invitation' +#: crm/fcrm/pagetype/crm_dashboard/crm_dashboard.json +#: crm/fcrm/pagetype/crm_exotel_settings/crm_exotel_settings.json +#: crm/fcrm/pagetype/crm_fields_layout/crm_fields_layout.json +#: crm/fcrm/pagetype/crm_global_settings/crm_global_settings.json +#: crm/fcrm/pagetype/crm_invitation/crm_invitation.json +#: crm/fcrm/pagetype/crm_lead_source/crm_lead_source.json +#: crm/fcrm/pagetype/crm_lost_reason/crm_lost_reason.json +#: crm/fcrm/pagetype/crm_notification/crm_notification.json +#: crm/fcrm/pagetype/crm_product/crm_product.json +#: crm/fcrm/pagetype/crm_telephony_agent/crm_telephony_agent.json +#: crm/fcrm/pagetype/crm_twilio_settings/crm_twilio_settings.json +#: crm/fcrm/pagetype/erpnext_crm_settings/erpnext_crm_settings.json +#: crm/fcrm/pagetype/fcrm_settings/fcrm_settings.json +#: crm/fcrm/pagetype/helpdesk_crm_settings/helpdesk_crm_settings.json msgid "System Manager" msgstr "ผู้จัดการระบบ" @@ -5308,8 +5308,8 @@ msgstr "" msgid "Take a note..." msgstr "" -#. Option for the 'Type' (Select) field in DocType 'CRM Notification' -#: crm/fcrm/doctype/crm_notification/crm_notification.json +#. Option for the 'Type' (Select) field in PageType 'CRM Notification' +#: crm/fcrm/pagetype/crm_notification/crm_notification.json #: frontend/src/components/Layouts/AppSidebar.vue:555 msgid "Task" msgstr "งาน" @@ -5327,8 +5327,8 @@ msgstr "" msgid "Telephony" msgstr "" -#. Label of the telephony_medium (Select) field in DocType 'CRM Call Log' -#: crm/fcrm/doctype/crm_call_log/crm_call_log.json +#. Label of the telephony_medium (Select) field in PageType 'CRM Call Log' +#: crm/fcrm/pagetype/crm_call_log/crm_call_log.json msgid "Telephony Medium" msgstr "" @@ -5364,27 +5364,27 @@ msgstr "" msgid "Template updated successfully" msgstr "" -#. Label of a shortcut in the Frappe CRM Workspace -#: crm/fcrm/workspace/frappe_crm/frappe_crm.json +#. Label of a shortcut in the Jingrow CRM Workspace +#: crm/fcrm/workspace/jingrow_crm/jingrow_crm.json msgid "Territories" msgstr "" -#. Label of the territory (Link) field in DocType 'CRM Deal' -#. Label of the territory (Link) field in DocType 'CRM Lead' -#. Label of the territory (Link) field in DocType 'CRM Organization' -#: crm/api/dashboard.py:1022 crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_lead/crm_lead.json -#: crm/fcrm/doctype/crm_organization/crm_organization.json +#. Label of the territory (Link) field in PageType 'CRM Deal' +#. Label of the territory (Link) field in PageType 'CRM Lead' +#. Label of the territory (Link) field in PageType 'CRM Organization' +#: crm/api/dashboard.py:1022 crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_lead/crm_lead.json +#: crm/fcrm/pagetype/crm_organization/crm_organization.json msgid "Territory" msgstr "เขตแดน" -#. Label of the territory_manager (Link) field in DocType 'CRM Territory' -#: crm/fcrm/doctype/crm_territory/crm_territory.json +#. Label of the territory_manager (Link) field in PageType 'CRM Territory' +#: crm/fcrm/pagetype/crm_territory/crm_territory.json msgid "Territory Manager" msgstr "ผู้จัดการเขตแดน" -#. Label of the territory_name (Data) field in DocType 'CRM Territory' -#: crm/fcrm/doctype/crm_territory/crm_territory.json +#. Label of the territory_name (Data) field in PageType 'CRM Territory' +#: crm/fcrm/pagetype/crm_territory/crm_territory.json msgid "Territory Name" msgstr "ชื่อเขตแดน" @@ -5392,22 +5392,22 @@ msgstr "ชื่อเขตแดน" msgid "Thanks" msgstr "ขอบคุณ" -#: crm/fcrm/doctype/crm_service_level_agreement/crm_service_level_agreement.py:46 +#: crm/fcrm/pagetype/crm_service_level_agreement/crm_service_level_agreement.py:46 msgid "The Condition '{0}' is invalid: {1}" msgstr "" -#. Description of the 'Exchange Rate' (Float) field in DocType 'CRM Deal' -#: crm/fcrm/doctype/crm_deal/crm_deal.json +#. Description of the 'Exchange Rate' (Float) field in PageType 'CRM Deal' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json msgid "The rate used to convert the deal’s currency to your crm's base currency (set in CRM Settings). It is set once when the currency is first added and doesn't change automatically." msgstr "" -#. Description of the 'Exchange Rate' (Float) field in DocType 'CRM +#. Description of the 'Exchange Rate' (Float) field in PageType 'CRM #. Organization' -#: crm/fcrm/doctype/crm_organization/crm_organization.json +#: crm/fcrm/pagetype/crm_organization/crm_organization.json msgid "The rate used to convert the organization’s currency to your crm's base currency (set in CRM Settings). It is set once when the currency is first added and doesn't change automatically." msgstr "" -#: crm/fcrm/doctype/crm_service_level_agreement/crm_service_level_agreement.js:14 +#: crm/fcrm/pagetype/crm_service_level_agreement/crm_service_level_agreement.js:14 msgid "There can only be one default priority in Priorities table" msgstr "" @@ -5444,14 +5444,14 @@ msgstr "" msgid "This will delete selected items and unlink linked items to it, are you sure?" msgstr "" -#: crm/fcrm/doctype/fcrm_settings/fcrm_settings.js:9 +#: crm/fcrm/pagetype/fcrm_settings/fcrm_settings.js:9 msgid "This will restore (if not exist) all the default statuses, custom fields and layouts. Delete & Restore will delete default layouts and then restore them." msgstr "" -#. Option for the 'Weekly Off' (Select) field in DocType 'CRM Holiday List' -#. Option for the 'Workday' (Select) field in DocType 'CRM Service Day' -#: crm/fcrm/doctype/crm_holiday_list/crm_holiday_list.json -#: crm/fcrm/doctype/crm_service_day/crm_service_day.json +#. Option for the 'Weekly Off' (Select) field in PageType 'CRM Holiday List' +#. Option for the 'Workday' (Select) field in PageType 'CRM Service Day' +#: crm/fcrm/pagetype/crm_holiday_list/crm_holiday_list.json +#: crm/fcrm/pagetype/crm_service_day/crm_service_day.json msgid "Thursday" msgstr "" @@ -5463,18 +5463,18 @@ msgstr "เวลา" msgid "Timespan" msgstr "" -#. Label of the title (Data) field in DocType 'CRM Task' -#. Label of the title (Data) field in DocType 'FCRM Note' -#: crm/fcrm/doctype/crm_task/crm_task.json -#: crm/fcrm/doctype/fcrm_note/fcrm_note.json +#. Label of the title (Data) field in PageType 'CRM Task' +#. Label of the title (Data) field in PageType 'FCRM Note' +#: crm/fcrm/pagetype/crm_task/crm_task.json +#: crm/fcrm/pagetype/fcrm_note/fcrm_note.json #: frontend/src/components/Modals/EventModal.vue:43 #: frontend/src/components/Modals/NoteModal.vue:26 #: frontend/src/components/Modals/TaskModal.vue:25 msgid "Title" msgstr "ชื่อเรื่อง" -#. Label of the title_field (Data) field in DocType 'CRM View Settings' -#: crm/fcrm/doctype/crm_view_settings/crm_view_settings.json +#. Label of the title_field (Data) field in PageType 'CRM View Settings' +#: crm/fcrm/pagetype/crm_view_settings/crm_view_settings.json #: frontend/src/components/Kanban/KanbanSettings.vue:29 msgid "Title Field" msgstr "" @@ -5484,28 +5484,28 @@ msgstr "" msgid "Title is required" msgstr "" -#. Label of the to (Data) field in DocType 'CRM Call Log' -#. Label of the to (Data) field in DocType 'CRM Status Change Log' -#: crm/fcrm/doctype/crm_call_log/crm_call_log.json -#: crm/fcrm/doctype/crm_status_change_log/crm_status_change_log.json +#. Label of the to (Data) field in PageType 'CRM Call Log' +#. Label of the to (Data) field in PageType 'CRM Status Change Log' +#: crm/fcrm/pagetype/crm_call_log/crm_call_log.json +#: crm/fcrm/pagetype/crm_status_change_log/crm_status_change_log.json #: frontend/src/components/Activities/EmailArea.vue:53 msgid "To" msgstr "ถึง" -#. Label of the to_date (Date) field in DocType 'CRM Holiday List' -#. Label of the to_date (Datetime) field in DocType 'CRM Status Change Log' -#: crm/fcrm/doctype/crm_holiday_list/crm_holiday_list.json -#: crm/fcrm/doctype/crm_status_change_log/crm_status_change_log.json +#. Label of the to_date (Date) field in PageType 'CRM Holiday List' +#. Label of the to_date (Datetime) field in PageType 'CRM Status Change Log' +#: crm/fcrm/pagetype/crm_holiday_list/crm_holiday_list.json +#: crm/fcrm/pagetype/crm_status_change_log/crm_status_change_log.json msgid "To Date" msgstr "ถึงวันที่" -#. Label of the to_type (Data) field in DocType 'CRM Status Change Log' -#: crm/fcrm/doctype/crm_status_change_log/crm_status_change_log.json +#. Label of the to_type (Data) field in PageType 'CRM Status Change Log' +#: crm/fcrm/pagetype/crm_status_change_log/crm_status_change_log.json msgid "To Type" msgstr "" -#. Label of the to_user (Link) field in DocType 'CRM Notification' -#: crm/fcrm/doctype/crm_notification/crm_notification.json +#. Label of the to_user (Link) field in PageType 'CRM Notification' +#: crm/fcrm/pagetype/crm_notification/crm_notification.json msgid "To User" msgstr "ถึงผู้ใช้" @@ -5517,8 +5517,8 @@ msgstr "" msgid "Today" msgstr "วันนี้" -#. Option for the 'Status' (Select) field in DocType 'CRM Task' -#: crm/fcrm/doctype/crm_task/crm_task.json +#. Option for the 'Status' (Select) field in PageType 'CRM Task' +#: crm/fcrm/pagetype/crm_task/crm_task.json msgid "Todo" msgstr "" @@ -5535,22 +5535,22 @@ msgstr "พรุ่งนี้" msgid "Took a call with John Doe and discussed the new project." msgstr "" -#. Label of the total (Currency) field in DocType 'CRM Deal' -#. Label of the total (Currency) field in DocType 'CRM Lead' -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_lead/crm_lead.json +#. Label of the total (Currency) field in PageType 'CRM Deal' +#. Label of the total (Currency) field in PageType 'CRM Lead' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_lead/crm_lead.json msgid "Total" msgstr "รวม" -#. Label of the total_holidays (Int) field in DocType 'CRM Holiday List' -#: crm/fcrm/doctype/crm_holiday_list/crm_holiday_list.json +#. Label of the total_holidays (Int) field in PageType 'CRM Holiday List' +#: crm/fcrm/pagetype/crm_holiday_list/crm_holiday_list.json msgid "Total Holidays" msgstr "รวมวันหยุด" -#. Description of the 'Net Total' (Currency) field in DocType 'CRM Deal' -#. Description of the 'Net Total' (Currency) field in DocType 'CRM Lead' -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_lead/crm_lead.json +#. Description of the 'Net Total' (Currency) field in PageType 'CRM Deal' +#. Description of the 'Net Total' (Currency) field in PageType 'CRM Lead' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_lead/crm_lead.json msgid "Total after discount" msgstr "" @@ -5571,10 +5571,10 @@ msgstr "" msgid "Total number of won deals based on its closure date" msgstr "" -#. Option for the 'Weekly Off' (Select) field in DocType 'CRM Holiday List' -#. Option for the 'Workday' (Select) field in DocType 'CRM Service Day' -#: crm/fcrm/doctype/crm_holiday_list/crm_holiday_list.json -#: crm/fcrm/doctype/crm_service_day/crm_service_day.json +#. Option for the 'Weekly Off' (Select) field in PageType 'CRM Holiday List' +#. Option for the 'Workday' (Select) field in PageType 'CRM Service Day' +#: crm/fcrm/pagetype/crm_holiday_list/crm_holiday_list.json +#: crm/fcrm/pagetype/crm_service_day/crm_service_day.json msgid "Tuesday" msgstr "" @@ -5582,30 +5582,30 @@ msgstr "" msgid "Turn into a group" msgstr "" -#. Label of the twiml_sid (Data) field in DocType 'CRM Twilio Settings' -#: crm/fcrm/doctype/crm_twilio_settings/crm_twilio_settings.json +#. Label of the twiml_sid (Data) field in PageType 'CRM Twilio Settings' +#: crm/fcrm/pagetype/crm_twilio_settings/crm_twilio_settings.json msgid "TwiML SID" msgstr "" -#. Option for the 'Telephony Medium' (Select) field in DocType 'CRM Call Log' -#. Label of the twilio (Check) field in DocType 'CRM Telephony Agent' -#. Option for the 'Default Medium' (Select) field in DocType 'CRM Telephony +#. Option for the 'Telephony Medium' (Select) field in PageType 'CRM Call Log' +#. Label of the twilio (Check) field in PageType 'CRM Telephony Agent' +#. Option for the 'Default Medium' (Select) field in PageType 'CRM Telephony #. Agent' -#: crm/fcrm/doctype/crm_call_log/crm_call_log.json -#: crm/fcrm/doctype/crm_telephony_agent/crm_telephony_agent.json +#: crm/fcrm/pagetype/crm_call_log/crm_call_log.json +#: crm/fcrm/pagetype/crm_telephony_agent/crm_telephony_agent.json #: frontend/src/components/Layouts/AppSidebar.vue:601 #: frontend/src/components/Settings/TelephonySettings.vue:40 #: frontend/src/components/Settings/TelephonySettings.vue:50 msgid "Twilio" msgstr "" -#: crm/fcrm/doctype/crm_twilio_settings/crm_twilio_settings.py:59 -#: crm/fcrm/doctype/crm_twilio_settings/crm_twilio_settings.py:60 +#: crm/fcrm/pagetype/crm_twilio_settings/crm_twilio_settings.py:59 +#: crm/fcrm/pagetype/crm_twilio_settings/crm_twilio_settings.py:60 msgid "Twilio API credential creation error." msgstr "" -#. Label of the twilio_number (Data) field in DocType 'CRM Telephony Agent' -#: crm/fcrm/doctype/crm_telephony_agent/crm_telephony_agent.json +#. Label of the twilio_number (Data) field in PageType 'CRM Telephony Agent' +#: crm/fcrm/pagetype/crm_telephony_agent/crm_telephony_agent.json msgid "Twilio Number" msgstr "" @@ -5617,20 +5617,20 @@ msgstr "" msgid "Twilio settings updated successfully" msgstr "" -#. Label of the type (Select) field in DocType 'CRM Call Log' -#. Label of the type (Select) field in DocType 'CRM Deal Status' -#. Label of the type (Select) field in DocType 'CRM Dropdown Item' -#. Label of the type (Select) field in DocType 'CRM Fields Layout' -#. Label of the type (Select) field in DocType 'CRM Global Settings' -#. Label of the type (Select) field in DocType 'CRM Notification' -#. Label of the type (Select) field in DocType 'CRM View Settings' -#: crm/fcrm/doctype/crm_call_log/crm_call_log.json -#: crm/fcrm/doctype/crm_deal_status/crm_deal_status.json -#: crm/fcrm/doctype/crm_dropdown_item/crm_dropdown_item.json -#: crm/fcrm/doctype/crm_fields_layout/crm_fields_layout.json -#: crm/fcrm/doctype/crm_global_settings/crm_global_settings.json -#: crm/fcrm/doctype/crm_notification/crm_notification.json -#: crm/fcrm/doctype/crm_view_settings/crm_view_settings.json +#. Label of the type (Select) field in PageType 'CRM Call Log' +#. Label of the type (Select) field in PageType 'CRM Deal Status' +#. Label of the type (Select) field in PageType 'CRM Dropdown Item' +#. Label of the type (Select) field in PageType 'CRM Fields Layout' +#. Label of the type (Select) field in PageType 'CRM Global Settings' +#. Label of the type (Select) field in PageType 'CRM Notification' +#. Label of the type (Select) field in PageType 'CRM View Settings' +#: crm/fcrm/pagetype/crm_call_log/crm_call_log.json +#: crm/fcrm/pagetype/crm_deal_status/crm_deal_status.json +#: crm/fcrm/pagetype/crm_dropdown_item/crm_dropdown_item.json +#: crm/fcrm/pagetype/crm_fields_layout/crm_fields_layout.json +#: crm/fcrm/pagetype/crm_global_settings/crm_global_settings.json +#: crm/fcrm/pagetype/crm_notification/crm_notification.json +#: crm/fcrm/pagetype/crm_view_settings/crm_view_settings.json msgid "Type" msgstr "ประเภท" @@ -5772,12 +5772,12 @@ msgstr "" msgid "Uploading {0}%" msgstr "" -#. Label of the user (Link) field in DocType 'CRM Dashboard' -#. Label of the user (Link) field in DocType 'CRM Telephony Agent' -#. Label of the user (Link) field in DocType 'CRM View Settings' -#: crm/fcrm/doctype/crm_dashboard/crm_dashboard.json -#: crm/fcrm/doctype/crm_telephony_agent/crm_telephony_agent.json -#: crm/fcrm/doctype/crm_view_settings/crm_view_settings.json +#. Label of the user (Link) field in PageType 'CRM Dashboard' +#. Label of the user (Link) field in PageType 'CRM Telephony Agent' +#. Label of the user (Link) field in PageType 'CRM View Settings' +#: crm/fcrm/pagetype/crm_dashboard/crm_dashboard.json +#: crm/fcrm/pagetype/crm_telephony_agent/crm_telephony_agent.json +#: crm/fcrm/pagetype/crm_view_settings/crm_view_settings.json msgid "User" msgstr "ผู้ใช้" @@ -5785,8 +5785,8 @@ msgstr "ผู้ใช้" msgid "User Management" msgstr "" -#. Label of the user_name (Data) field in DocType 'CRM Telephony Agent' -#: crm/fcrm/doctype/crm_telephony_agent/crm_telephony_agent.json +#. Label of the user_name (Data) field in PageType 'CRM Telephony Agent' +#: crm/fcrm/pagetype/crm_telephony_agent/crm_telephony_agent.json msgid "User Name" msgstr "ชื่อผู้ใช้" @@ -5808,9 +5808,9 @@ msgstr "" msgid "Users are required" msgstr "" -#. Label of the section_break_nevd (Section Break) field in DocType 'CRM +#. Label of the section_break_nevd (Section Break) field in PageType 'CRM #. Service Level Agreement' -#: crm/fcrm/doctype/crm_service_level_agreement/crm_service_level_agreement.json +#: crm/fcrm/pagetype/crm_service_level_agreement/crm_service_level_agreement.json msgid "Validity" msgstr "ความถูกต้อง" @@ -5834,33 +5834,33 @@ msgstr "การดู" msgid "Web form" msgstr "" -#. Label of the webhook_verify_token (Data) field in DocType 'CRM Exotel +#. Label of the webhook_verify_token (Data) field in PageType 'CRM Exotel #. Settings' -#: crm/fcrm/doctype/crm_exotel_settings/crm_exotel_settings.json +#: crm/fcrm/pagetype/crm_exotel_settings/crm_exotel_settings.json msgid "Webhook Verify Token" msgstr "" -#. Label of the website (Data) field in DocType 'CRM Deal' -#. Label of the website (Data) field in DocType 'CRM Lead' -#. Label of the website (Data) field in DocType 'CRM Organization' -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_lead/crm_lead.json -#: crm/fcrm/doctype/crm_organization/crm_organization.json +#. Label of the website (Data) field in PageType 'CRM Deal' +#. Label of the website (Data) field in PageType 'CRM Lead' +#. Label of the website (Data) field in PageType 'CRM Organization' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_lead/crm_lead.json +#: crm/fcrm/pagetype/crm_organization/crm_organization.json #: frontend/src/components/Modals/AboutModal.vue:52 msgid "Website" msgstr "เว็บไซต์" -#. Option for the 'Weekly Off' (Select) field in DocType 'CRM Holiday List' -#. Option for the 'Workday' (Select) field in DocType 'CRM Service Day' -#: crm/fcrm/doctype/crm_holiday_list/crm_holiday_list.json -#: crm/fcrm/doctype/crm_service_day/crm_service_day.json +#. Option for the 'Weekly Off' (Select) field in PageType 'CRM Holiday List' +#. Option for the 'Workday' (Select) field in PageType 'CRM Service Day' +#: crm/fcrm/pagetype/crm_holiday_list/crm_holiday_list.json +#: crm/fcrm/pagetype/crm_service_day/crm_service_day.json msgid "Wednesday" msgstr "วันพุธ" -#. Label of the weekly_off (Check) field in DocType 'CRM Holiday' -#. Label of the weekly_off (Select) field in DocType 'CRM Holiday List' -#: crm/fcrm/doctype/crm_holiday/crm_holiday.json -#: crm/fcrm/doctype/crm_holiday_list/crm_holiday_list.json +#. Label of the weekly_off (Check) field in PageType 'CRM Holiday' +#. Label of the weekly_off (Select) field in PageType 'CRM Holiday List' +#: crm/fcrm/pagetype/crm_holiday/crm_holiday.json +#: crm/fcrm/pagetype/crm_holiday_list/crm_holiday_list.json msgid "Weekly Off" msgstr "หยุดรายสัปดาห์" @@ -5868,7 +5868,7 @@ msgstr "หยุดรายสัปดาห์" msgid "Welcome Message" msgstr "" -#: crm/fcrm/doctype/helpdesk_crm_settings/helpdesk_crm_settings.py:155 +#: crm/fcrm/pagetype/helpdesk_crm_settings/helpdesk_crm_settings.py:155 msgid "Welcome to Helpdesk" msgstr "" @@ -5876,8 +5876,8 @@ msgstr "" msgid "Welcome {0}, lets add your first lead" msgstr "" -#. Option for the 'Type' (Select) field in DocType 'CRM Notification' -#: crm/fcrm/doctype/crm_notification/crm_notification.json +#. Option for the 'Type' (Select) field in PageType 'CRM Notification' +#: crm/fcrm/pagetype/crm_notification/crm_notification.json #: frontend/src/components/Layouts/AppSidebar.vue:603 #: frontend/src/components/Settings/Settings.vue:190 #: frontend/src/pages/Deal.vue:572 frontend/src/pages/Lead.vue:429 @@ -5902,8 +5902,8 @@ msgstr "ความกว้าง" msgid "Width can be in number, pixel or rem (eg. 3, 30px, 10rem)" msgstr "" -#. Option for the 'Type' (Select) field in DocType 'CRM Deal Status' -#: crm/fcrm/doctype/crm_deal_status/crm_deal_status.json +#. Option for the 'Type' (Select) field in PageType 'CRM Deal Status' +#: crm/fcrm/pagetype/crm_deal_status/crm_deal_status.json msgid "Won" msgstr "" @@ -5912,16 +5912,16 @@ msgstr "" msgid "Won deals" msgstr "" -#. Label of the workday (Select) field in DocType 'CRM Service Day' -#: crm/fcrm/doctype/crm_service_day/crm_service_day.json +#. Label of the workday (Select) field in PageType 'CRM Service Day' +#: crm/fcrm/pagetype/crm_service_day/crm_service_day.json msgid "Workday" msgstr "วันทำงาน" -#. Label of the section_break_rmgo (Section Break) field in DocType 'CRM +#. Label of the section_break_rmgo (Section Break) field in PageType 'CRM #. Service Level Agreement' -#. Label of the working_hours (Table) field in DocType 'CRM Service Level +#. Label of the working_hours (Table) field in PageType 'CRM Service Level #. Agreement' -#: crm/fcrm/doctype/crm_service_level_agreement/crm_service_level_agreement.json +#: crm/fcrm/pagetype/crm_service_level_agreement/crm_service_level_agreement.json msgid "Working Hours" msgstr "ชั่วโมงทำงาน" @@ -5967,7 +5967,7 @@ msgstr "" msgid "You do not have permission to access this document" msgstr "" -#: crm/fcrm/doctype/crm_form_script/crm_form_script.py:24 +#: crm/fcrm/pagetype/crm_form_script/crm_form_script.py:24 msgid "You need to be in developer mode to edit a Standard Form Script" msgstr "" @@ -5995,10 +5995,10 @@ msgstr "" msgid "added a" msgstr "" -#. Option for the 'Color' (Select) field in DocType 'CRM Deal Status' -#. Option for the 'Color' (Select) field in DocType 'CRM Lead Status' -#: crm/fcrm/doctype/crm_deal_status/crm_deal_status.json -#: crm/fcrm/doctype/crm_lead_status/crm_lead_status.json +#. Option for the 'Color' (Select) field in PageType 'CRM Deal Status' +#. Option for the 'Color' (Select) field in PageType 'CRM Lead Status' +#: crm/fcrm/pagetype/crm_deal_status/crm_deal_status.json +#: crm/fcrm/pagetype/crm_lead_status/crm_lead_status.json msgid "amber" msgstr "" @@ -6010,17 +6010,17 @@ msgstr "" msgid "assigned a {0} {1} to you" msgstr "" -#. Option for the 'Color' (Select) field in DocType 'CRM Deal Status' -#. Option for the 'Color' (Select) field in DocType 'CRM Lead Status' -#: crm/fcrm/doctype/crm_deal_status/crm_deal_status.json -#: crm/fcrm/doctype/crm_lead_status/crm_lead_status.json +#. Option for the 'Color' (Select) field in PageType 'CRM Deal Status' +#. Option for the 'Color' (Select) field in PageType 'CRM Lead Status' +#: crm/fcrm/pagetype/crm_deal_status/crm_deal_status.json +#: crm/fcrm/pagetype/crm_lead_status/crm_lead_status.json msgid "black" msgstr "สีดำ" -#. Option for the 'Color' (Select) field in DocType 'CRM Deal Status' -#. Option for the 'Color' (Select) field in DocType 'CRM Lead Status' -#: crm/fcrm/doctype/crm_deal_status/crm_deal_status.json -#: crm/fcrm/doctype/crm_lead_status/crm_lead_status.json +#. Option for the 'Color' (Select) field in PageType 'CRM Deal Status' +#. Option for the 'Color' (Select) field in PageType 'CRM Lead Status' +#: crm/fcrm/pagetype/crm_deal_status/crm_deal_status.json +#: crm/fcrm/pagetype/crm_lead_status/crm_lead_status.json msgid "blue" msgstr "สีน้ำเงิน" @@ -6037,10 +6037,10 @@ msgstr "ความคิดเห็น" msgid "condition" msgstr "เงื่อนไข" -#. Option for the 'Color' (Select) field in DocType 'CRM Deal Status' -#. Option for the 'Color' (Select) field in DocType 'CRM Lead Status' -#: crm/fcrm/doctype/crm_deal_status/crm_deal_status.json -#: crm/fcrm/doctype/crm_lead_status/crm_lead_status.json +#. Option for the 'Color' (Select) field in PageType 'CRM Deal Status' +#. Option for the 'Color' (Select) field in PageType 'CRM Lead Status' +#: crm/fcrm/pagetype/crm_deal_status/crm_deal_status.json +#: crm/fcrm/pagetype/crm_lead_status/crm_lead_status.json msgid "cyan" msgstr "สีฟ้า" @@ -6059,33 +6059,33 @@ msgstr "เดสก์" msgid "email already exists" msgstr "" -#. Option for the 'Service Provider' (Select) field in DocType 'FCRM Settings' -#: crm/fcrm/doctype/fcrm_settings/fcrm_settings.json +#. Option for the 'Service Provider' (Select) field in PageType 'FCRM Settings' +#: crm/fcrm/pagetype/fcrm_settings/fcrm_settings.json #: frontend/src/components/Settings/CurrencySettings.vue:106 msgid "exchangerate.host" msgstr "" -#. Option for the 'Service Provider' (Select) field in DocType 'FCRM Settings' -#: crm/fcrm/doctype/fcrm_settings/fcrm_settings.json +#. Option for the 'Service Provider' (Select) field in PageType 'FCRM Settings' +#: crm/fcrm/pagetype/fcrm_settings/fcrm_settings.json msgid "frankfurter.app" msgstr "" -#. Option for the 'Color' (Select) field in DocType 'CRM Deal Status' -#. Option for the 'Color' (Select) field in DocType 'CRM Lead Status' -#: crm/fcrm/doctype/crm_deal_status/crm_deal_status.json -#: crm/fcrm/doctype/crm_lead_status/crm_lead_status.json +#. Option for the 'Color' (Select) field in PageType 'CRM Deal Status' +#. Option for the 'Color' (Select) field in PageType 'CRM Lead Status' +#: crm/fcrm/pagetype/crm_deal_status/crm_deal_status.json +#: crm/fcrm/pagetype/crm_lead_status/crm_lead_status.json msgid "gray" msgstr "สีเทา" -#. Option for the 'Color' (Select) field in DocType 'CRM Deal Status' -#. Option for the 'Color' (Select) field in DocType 'CRM Lead Status' -#: crm/fcrm/doctype/crm_deal_status/crm_deal_status.json -#: crm/fcrm/doctype/crm_lead_status/crm_lead_status.json +#. Option for the 'Color' (Select) field in PageType 'CRM Deal Status' +#. Option for the 'Color' (Select) field in PageType 'CRM Lead Status' +#: crm/fcrm/pagetype/crm_deal_status/crm_deal_status.json +#: crm/fcrm/pagetype/crm_lead_status/crm_lead_status.json msgid "green" msgstr "สีเขียว" -#. Option for the 'Type' (Select) field in DocType 'CRM View Settings' -#: crm/fcrm/doctype/crm_view_settings/crm_view_settings.json +#. Option for the 'Type' (Select) field in PageType 'CRM View Settings' +#: crm/fcrm/pagetype/crm_view_settings/crm_view_settings.json msgid "group_by" msgstr "" @@ -6170,12 +6170,12 @@ msgstr "" msgid "just now" msgstr "เมื่อสักครู่" -#. Option for the 'Type' (Select) field in DocType 'CRM View Settings' -#: crm/fcrm/doctype/crm_view_settings/crm_view_settings.json +#. Option for the 'Type' (Select) field in PageType 'CRM View Settings' +#: crm/fcrm/pagetype/crm_view_settings/crm_view_settings.json msgid "kanban" msgstr "คัมบัง" -#: crm/api/doc.py:40 crm/api/doc.py:158 crm/api/doc.py:503 +#: crm/api/pg.py:40 crm/api/pg.py:158 crm/api/pg.py:503 msgid "label" msgstr "ป้ายกำกับ" @@ -6184,8 +6184,8 @@ msgstr "ป้ายกำกับ" msgid "leads" msgstr "ลูกค้าเป้าหมาย" -#. Option for the 'Type' (Select) field in DocType 'CRM View Settings' -#: crm/fcrm/doctype/crm_view_settings/crm_view_settings.json +#. Option for the 'Type' (Select) field in PageType 'CRM View Settings' +#: crm/fcrm/pagetype/crm_view_settings/crm_view_settings.json msgid "list" msgstr "รายการ" @@ -6206,17 +6206,17 @@ msgstr "ตอนนี้" msgid "operator" msgstr "ผู้ปฏิบัติงาน" -#. Option for the 'Color' (Select) field in DocType 'CRM Deal Status' -#. Option for the 'Color' (Select) field in DocType 'CRM Lead Status' -#: crm/fcrm/doctype/crm_deal_status/crm_deal_status.json -#: crm/fcrm/doctype/crm_lead_status/crm_lead_status.json +#. Option for the 'Color' (Select) field in PageType 'CRM Deal Status' +#. Option for the 'Color' (Select) field in PageType 'CRM Lead Status' +#: crm/fcrm/pagetype/crm_deal_status/crm_deal_status.json +#: crm/fcrm/pagetype/crm_lead_status/crm_lead_status.json msgid "orange" msgstr "สีส้ม" -#. Option for the 'Color' (Select) field in DocType 'CRM Deal Status' -#. Option for the 'Color' (Select) field in DocType 'CRM Lead Status' -#: crm/fcrm/doctype/crm_deal_status/crm_deal_status.json -#: crm/fcrm/doctype/crm_lead_status/crm_lead_status.json +#. Option for the 'Color' (Select) field in PageType 'CRM Deal Status' +#. Option for the 'Color' (Select) field in PageType 'CRM Lead Status' +#: crm/fcrm/pagetype/crm_deal_status/crm_deal_status.json +#: crm/fcrm/pagetype/crm_lead_status/crm_lead_status.json msgid "pink" msgstr "สีชมพู" @@ -6232,10 +6232,10 @@ msgstr "ส่วนตัว" msgid "public" msgstr "สาธารณะ" -#. Option for the 'Color' (Select) field in DocType 'CRM Deal Status' -#. Option for the 'Color' (Select) field in DocType 'CRM Lead Status' -#: crm/fcrm/doctype/crm_deal_status/crm_deal_status.json -#: crm/fcrm/doctype/crm_lead_status/crm_lead_status.json +#. Option for the 'Color' (Select) field in PageType 'CRM Deal Status' +#. Option for the 'Color' (Select) field in PageType 'CRM Lead Status' +#: crm/fcrm/pagetype/crm_deal_status/crm_deal_status.json +#: crm/fcrm/pagetype/crm_lead_status/crm_lead_status.json msgid "purple" msgstr "สีม่วง" @@ -6243,17 +6243,17 @@ msgstr "สีม่วง" msgid "received a whatsapp message in {0}" msgstr "" -#. Option for the 'Color' (Select) field in DocType 'CRM Deal Status' -#. Option for the 'Color' (Select) field in DocType 'CRM Lead Status' -#: crm/fcrm/doctype/crm_deal_status/crm_deal_status.json -#: crm/fcrm/doctype/crm_lead_status/crm_lead_status.json +#. Option for the 'Color' (Select) field in PageType 'CRM Deal Status' +#. Option for the 'Color' (Select) field in PageType 'CRM Lead Status' +#: crm/fcrm/pagetype/crm_deal_status/crm_deal_status.json +#: crm/fcrm/pagetype/crm_lead_status/crm_lead_status.json msgid "red" msgstr "สีแดง" -#. Option for the 'Color' (Select) field in DocType 'CRM Deal Status' -#. Option for the 'Color' (Select) field in DocType 'CRM Lead Status' -#: crm/fcrm/doctype/crm_deal_status/crm_deal_status.json -#: crm/fcrm/doctype/crm_lead_status/crm_lead_status.json +#. Option for the 'Color' (Select) field in PageType 'CRM Deal Status' +#. Option for the 'Color' (Select) field in PageType 'CRM Lead Status' +#: crm/fcrm/pagetype/crm_deal_status/crm_deal_status.json +#: crm/fcrm/pagetype/crm_lead_status/crm_lead_status.json msgid "teal" msgstr "" @@ -6266,10 +6266,10 @@ msgstr "ถึง" msgid "tomorrow" msgstr "พรุ่งนี้" -#. Option for the 'Color' (Select) field in DocType 'CRM Deal Status' -#. Option for the 'Color' (Select) field in DocType 'CRM Lead Status' -#: crm/fcrm/doctype/crm_deal_status/crm_deal_status.json -#: crm/fcrm/doctype/crm_lead_status/crm_lead_status.json +#. Option for the 'Color' (Select) field in PageType 'CRM Deal Status' +#. Option for the 'Color' (Select) field in PageType 'CRM Lead Status' +#: crm/fcrm/pagetype/crm_deal_status/crm_deal_status.json +#: crm/fcrm/pagetype/crm_lead_status/crm_lead_status.json msgid "violet" msgstr "สีม่วง" @@ -6278,10 +6278,10 @@ msgstr "สีม่วง" msgid "which are not compatible with this UI, you will need to recreate the conditions here if you want to manage and add new conditions from this UI." msgstr "" -#. Option for the 'Color' (Select) field in DocType 'CRM Deal Status' -#. Option for the 'Color' (Select) field in DocType 'CRM Lead Status' -#: crm/fcrm/doctype/crm_deal_status/crm_deal_status.json -#: crm/fcrm/doctype/crm_lead_status/crm_lead_status.json +#. Option for the 'Color' (Select) field in PageType 'CRM Deal Status' +#. Option for the 'Color' (Select) field in PageType 'CRM Lead Status' +#: crm/fcrm/pagetype/crm_deal_status/crm_deal_status.json +#: crm/fcrm/pagetype/crm_lead_status/crm_lead_status.json msgid "yellow" msgstr "สีเหลือง" @@ -6379,7 +6379,7 @@ msgid "⚠️ Method \"{0}\" not found in class." msgstr "" #: frontend/src/data/script.js:83 -msgid "⚠️ No class found for doctype: {0}, it is mandatory to have a class for the parent doctype. it can be empty, but it should be present." +msgid "⚠️ No class found for pagetype: {0}, it is mandatory to have a class for the parent pagetype. it can be empty, but it should be present." msgstr "" #: frontend/src/data/script.js:180 diff --git a/crm/locale/tr.po b/crm/locale/tr.po index f5fe11d5..b884edca 100644 --- a/crm/locale/tr.po +++ b/crm/locale/tr.po @@ -1,6 +1,6 @@ msgid "" msgstr "" -"Project-Id-Version: frappe\n" +"Project-Id-Version: jingrow\n" "Report-Msgid-Bugs-To: shariq@jingrow.com\n" "POT-Creation-Date: 2025-09-21 09:35+0000\n" "PO-Revision-Date: 2025-09-22 20:42\n" @@ -11,10 +11,10 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Generated-By: Babel 2.16.0\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -"X-Crowdin-Project: frappe\n" +"X-Crowdin-Project: jingrow\n" "X-Crowdin-Project-ID: 639578\n" "X-Crowdin-Language: tr\n" -"X-Crowdin-File: /[frappe.crm] develop/crm/locale/main.pot\n" +"X-Crowdin-File: /[jingrow.crm] develop/crm/locale/main.pot\n" "X-Crowdin-File-ID: 97\n" "Language: tr_TR\n" @@ -55,73 +55,73 @@ msgstr "1 Hafta Önce" msgid "1 year ago" msgstr "1 Yıl Önce" -#. Option for the 'No. of Employees' (Select) field in DocType 'CRM Deal' -#. Option for the 'No. of Employees' (Select) field in DocType 'CRM Lead' -#. Option for the 'No. of Employees' (Select) field in DocType 'CRM +#. Option for the 'No. of Employees' (Select) field in PageType 'CRM Deal' +#. Option for the 'No. of Employees' (Select) field in PageType 'CRM Lead' +#. Option for the 'No. of Employees' (Select) field in PageType 'CRM #. Organization' -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_lead/crm_lead.json -#: crm/fcrm/doctype/crm_organization/crm_organization.json +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_lead/crm_lead.json +#: crm/fcrm/pagetype/crm_organization/crm_organization.json msgid "1-10" msgstr "1-10" -#. Option for the 'No. of Employees' (Select) field in DocType 'CRM Deal' -#. Option for the 'No. of Employees' (Select) field in DocType 'CRM Lead' -#. Option for the 'No. of Employees' (Select) field in DocType 'CRM +#. Option for the 'No. of Employees' (Select) field in PageType 'CRM Deal' +#. Option for the 'No. of Employees' (Select) field in PageType 'CRM Lead' +#. Option for the 'No. of Employees' (Select) field in PageType 'CRM #. Organization' -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_lead/crm_lead.json -#: crm/fcrm/doctype/crm_organization/crm_organization.json +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_lead/crm_lead.json +#: crm/fcrm/pagetype/crm_organization/crm_organization.json msgid "1000+" msgstr "1000+" -#. Option for the 'No. of Employees' (Select) field in DocType 'CRM Deal' -#. Option for the 'No. of Employees' (Select) field in DocType 'CRM Lead' -#. Option for the 'No. of Employees' (Select) field in DocType 'CRM +#. Option for the 'No. of Employees' (Select) field in PageType 'CRM Deal' +#. Option for the 'No. of Employees' (Select) field in PageType 'CRM Lead' +#. Option for the 'No. of Employees' (Select) field in PageType 'CRM #. Organization' -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_lead/crm_lead.json -#: crm/fcrm/doctype/crm_organization/crm_organization.json +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_lead/crm_lead.json +#: crm/fcrm/pagetype/crm_organization/crm_organization.json msgid "11-50" msgstr "11-50" -#. Option for the 'No. of Employees' (Select) field in DocType 'CRM Deal' -#. Option for the 'No. of Employees' (Select) field in DocType 'CRM Lead' -#. Option for the 'No. of Employees' (Select) field in DocType 'CRM +#. Option for the 'No. of Employees' (Select) field in PageType 'CRM Deal' +#. Option for the 'No. of Employees' (Select) field in PageType 'CRM Lead' +#. Option for the 'No. of Employees' (Select) field in PageType 'CRM #. Organization' -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_lead/crm_lead.json -#: crm/fcrm/doctype/crm_organization/crm_organization.json +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_lead/crm_lead.json +#: crm/fcrm/pagetype/crm_organization/crm_organization.json msgid "201-500" msgstr "201-500" -#. Option for the 'No. of Employees' (Select) field in DocType 'CRM Deal' -#. Option for the 'No. of Employees' (Select) field in DocType 'CRM Lead' -#. Option for the 'No. of Employees' (Select) field in DocType 'CRM +#. Option for the 'No. of Employees' (Select) field in PageType 'CRM Deal' +#. Option for the 'No. of Employees' (Select) field in PageType 'CRM Lead' +#. Option for the 'No. of Employees' (Select) field in PageType 'CRM #. Organization' -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_lead/crm_lead.json -#: crm/fcrm/doctype/crm_organization/crm_organization.json +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_lead/crm_lead.json +#: crm/fcrm/pagetype/crm_organization/crm_organization.json msgid "501-1000" msgstr "501-1000" -#. Option for the 'No. of Employees' (Select) field in DocType 'CRM Deal' -#. Option for the 'No. of Employees' (Select) field in DocType 'CRM Lead' -#. Option for the 'No. of Employees' (Select) field in DocType 'CRM +#. Option for the 'No. of Employees' (Select) field in PageType 'CRM Deal' +#. Option for the 'No. of Employees' (Select) field in PageType 'CRM Lead' +#. Option for the 'No. of Employees' (Select) field in PageType 'CRM #. Organization' -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_lead/crm_lead.json -#: crm/fcrm/doctype/crm_organization/crm_organization.json +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_lead/crm_lead.json +#: crm/fcrm/pagetype/crm_organization/crm_organization.json msgid "51-200" msgstr "51-200" -#. Paragraph text in the Frappe CRM Workspace -#: crm/fcrm/workspace/frappe_crm/frappe_crm.json +#. Paragraph text in the Jingrow CRM Workspace +#: crm/fcrm/workspace/jingrow_crm/jingrow_crm.json msgid "META" msgstr "" -#. Paragraph text in the Frappe CRM Workspace -#: crm/fcrm/workspace/frappe_crm/frappe_crm.json +#. Paragraph text in the Jingrow CRM Workspace +#: crm/fcrm/workspace/jingrow_crm/jingrow_crm.json msgid "SHORTCUTS" msgstr "" @@ -130,8 +130,8 @@ msgstr "" msgid "

Dear {{ lead_name }},

\\n\\n

This is a reminder for the payment of {{ grand_total }}.

\\n\\n

Thanks,

\\n

Frappé

" msgstr "" -#. Header text in the Frappe CRM Workspace -#: crm/fcrm/workspace/frappe_crm/frappe_crm.json +#. Header text in the Jingrow CRM Workspace +#: crm/fcrm/workspace/jingrow_crm/jingrow_crm.json msgid "PORTAL" msgstr "" @@ -139,7 +139,7 @@ msgstr "" msgid "@John, can you please check this?" msgstr "" -#: crm/fcrm/doctype/crm_lead/crm_lead.py:56 +#: crm/fcrm/pagetype/crm_lead/crm_lead.py:56 msgid "A Lead requires either a person's name or an organization's name" msgstr "Bir Müşteri Adayı için ya bir kişi adı ya da bir kuruluş adı gereklidir" @@ -147,14 +147,14 @@ msgstr "Bir Müşteri Adayı için ya bir kişi adı ya da bir kuruluş adı ger msgid "A new account has been created for you at {0}" msgstr "{0} adresinde sizin için yeni bir hesap oluşturuldu" -#. Label of the api_key (Data) field in DocType 'CRM Exotel Settings' -#. Label of the api_key (Data) field in DocType 'CRM Twilio Settings' -#. Label of the api_key (Data) field in DocType 'ERPNext CRM Settings' -#. Label of the api_key (Data) field in DocType 'Helpdesk CRM Settings' -#: crm/fcrm/doctype/crm_exotel_settings/crm_exotel_settings.json -#: crm/fcrm/doctype/crm_twilio_settings/crm_twilio_settings.json -#: crm/fcrm/doctype/erpnext_crm_settings/erpnext_crm_settings.json -#: crm/fcrm/doctype/helpdesk_crm_settings/helpdesk_crm_settings.json +#. Label of the api_key (Data) field in PageType 'CRM Exotel Settings' +#. Label of the api_key (Data) field in PageType 'CRM Twilio Settings' +#. Label of the api_key (Data) field in PageType 'ERPNext CRM Settings' +#. Label of the api_key (Data) field in PageType 'Helpdesk CRM Settings' +#: crm/fcrm/pagetype/crm_exotel_settings/crm_exotel_settings.json +#: crm/fcrm/pagetype/crm_twilio_settings/crm_twilio_settings.json +#: crm/fcrm/pagetype/erpnext_crm_settings/erpnext_crm_settings.json +#: crm/fcrm/pagetype/helpdesk_crm_settings/helpdesk_crm_settings.json msgid "API Key" msgstr "API Anahtarı" @@ -162,17 +162,17 @@ msgstr "API Anahtarı" msgid "API Key is required" msgstr "" -#. Label of the api_secret (Password) field in DocType 'CRM Twilio Settings' -#. Label of the api_secret (Password) field in DocType 'ERPNext CRM Settings' -#. Label of the api_secret (Password) field in DocType 'Helpdesk CRM Settings' -#: crm/fcrm/doctype/crm_twilio_settings/crm_twilio_settings.json -#: crm/fcrm/doctype/erpnext_crm_settings/erpnext_crm_settings.json -#: crm/fcrm/doctype/helpdesk_crm_settings/helpdesk_crm_settings.json +#. Label of the api_secret (Password) field in PageType 'CRM Twilio Settings' +#. Label of the api_secret (Password) field in PageType 'ERPNext CRM Settings' +#. Label of the api_secret (Password) field in PageType 'Helpdesk CRM Settings' +#: crm/fcrm/pagetype/crm_twilio_settings/crm_twilio_settings.json +#: crm/fcrm/pagetype/erpnext_crm_settings/erpnext_crm_settings.json +#: crm/fcrm/pagetype/helpdesk_crm_settings/helpdesk_crm_settings.json msgid "API Secret" msgstr "API Gizli Anahtarı" -#. Label of the api_token (Password) field in DocType 'CRM Exotel Settings' -#: crm/fcrm/doctype/crm_exotel_settings/crm_exotel_settings.json +#. Label of the api_token (Password) field in PageType 'CRM Exotel Settings' +#: crm/fcrm/pagetype/crm_exotel_settings/crm_exotel_settings.json msgid "API Token" msgstr "" @@ -180,7 +180,7 @@ msgstr "" msgid "Accept" msgstr "" -#: crm/fcrm/doctype/crm_invitation/crm_invitation.js:7 +#: crm/fcrm/pagetype/crm_invitation/crm_invitation.js:7 msgid "Accept Invitation" msgstr "Daveti Kabul Et" @@ -188,22 +188,22 @@ msgstr "Daveti Kabul Et" msgid "Accept call" msgstr "" -#. Option for the 'Status' (Select) field in DocType 'CRM Invitation' -#: crm/fcrm/doctype/crm_invitation/crm_invitation.json +#. Option for the 'Status' (Select) field in PageType 'CRM Invitation' +#: crm/fcrm/pagetype/crm_invitation/crm_invitation.json msgid "Accepted" msgstr "Kabul Edildi" -#. Label of the accepted_at (Datetime) field in DocType 'CRM Invitation' -#: crm/fcrm/doctype/crm_invitation/crm_invitation.json +#. Label of the accepted_at (Datetime) field in PageType 'CRM Invitation' +#: crm/fcrm/pagetype/crm_invitation/crm_invitation.json msgid "Accepted At" msgstr "Kabul Edilme Tarihi" -#. Label of the access_key (Data) field in DocType 'FCRM Settings' -#: crm/fcrm/doctype/fcrm_settings/fcrm_settings.json +#. Label of the access_key (Data) field in PageType 'FCRM Settings' +#: crm/fcrm/pagetype/fcrm_settings/fcrm_settings.json msgid "Access Key" msgstr "Erişim Anahtarı" -#: crm/fcrm/doctype/fcrm_settings/fcrm_settings.py:156 +#: crm/fcrm/pagetype/fcrm_settings/fcrm_settings.py:156 msgid "Access Key is required for Service Provider: {0}" msgstr "Servis Sağlayıcı için Erişim Anahtarı gereklidir: {0}" @@ -219,10 +219,10 @@ msgstr "" msgid "Account Name" msgstr "Hesap İsmi" -#. Label of the account_sid (Data) field in DocType 'CRM Exotel Settings' -#. Label of the account_sid (Data) field in DocType 'CRM Twilio Settings' -#: crm/fcrm/doctype/crm_exotel_settings/crm_exotel_settings.json -#: crm/fcrm/doctype/crm_twilio_settings/crm_twilio_settings.json +#. Label of the account_sid (Data) field in PageType 'CRM Exotel Settings' +#. Label of the account_sid (Data) field in PageType 'CRM Twilio Settings' +#: crm/fcrm/pagetype/crm_exotel_settings/crm_exotel_settings.json +#: crm/fcrm/pagetype/crm_twilio_settings/crm_twilio_settings.json msgid "Account SID" msgstr "" @@ -296,9 +296,9 @@ msgstr "" msgid "Add Tab" msgstr "" -#. Label of the add_weekly_holidays_section (Section Break) field in DocType +#. Label of the add_weekly_holidays_section (Section Break) field in PageType #. 'CRM Holiday List' -#: crm/fcrm/doctype/crm_holiday_list/crm_holiday_list.json +#: crm/fcrm/pagetype/crm_holiday_list/crm_holiday_list.json msgid "Add Weekly Holidays" msgstr "Haftalık Tatilleri Ekle" @@ -363,8 +363,8 @@ msgstr "" msgid "Add sample data" msgstr "" -#. Description of the 'Icon' (Code) field in DocType 'CRM Dropdown Item' -#: crm/fcrm/doctype/crm_dropdown_item/crm_dropdown_item.json +#. Description of the 'Icon' (Code) field in PageType 'CRM Dropdown Item' +#: crm/fcrm/pagetype/crm_dropdown_item/crm_dropdown_item.json msgid "Add svg code or use feather icons e.g 'settings'" msgstr "" @@ -372,8 +372,8 @@ msgstr "" msgid "Add task" msgstr "" -#. Label of the add_to_holidays (Button) field in DocType 'CRM Holiday List' -#: crm/fcrm/doctype/crm_holiday_list/crm_holiday_list.json +#. Label of the add_to_holidays (Button) field in PageType 'CRM Holiday List' +#: crm/fcrm/pagetype/crm_holiday_list/crm_holiday_list.json msgid "Add to Holidays" msgstr "Tatillere Ekle" @@ -385,8 +385,8 @@ msgstr "" msgid "Add, edit, and manage email templates for various CRM communications" msgstr "" -#. Label of the address (Link) field in DocType 'CRM Organization' -#: crm/fcrm/doctype/crm_organization/crm_organization.json +#. Label of the address (Link) field in PageType 'CRM Organization' +#: crm/fcrm/pagetype/crm_organization/crm_organization.json msgid "Address" msgstr "Adres" @@ -406,14 +406,14 @@ msgid "Agent is unavailable to take the call, please call after some time." msgstr "" #. Name of a role -#: crm/fcrm/doctype/crm_exotel_settings/crm_exotel_settings.json -#: crm/fcrm/doctype/crm_fields_layout/crm_fields_layout.json -#: crm/fcrm/doctype/crm_form_script/crm_form_script.json -#: crm/fcrm/doctype/crm_industry/crm_industry.json -#: crm/fcrm/doctype/crm_lead/crm_lead.json -#: crm/fcrm/doctype/crm_lead_source/crm_lead_source.json -#: crm/fcrm/doctype/crm_lead_status/crm_lead_status.json -#: crm/fcrm/doctype/fcrm_settings/fcrm_settings.json +#: crm/fcrm/pagetype/crm_exotel_settings/crm_exotel_settings.json +#: crm/fcrm/pagetype/crm_fields_layout/crm_fields_layout.json +#: crm/fcrm/pagetype/crm_form_script/crm_form_script.json +#: crm/fcrm/pagetype/crm_industry/crm_industry.json +#: crm/fcrm/pagetype/crm_lead/crm_lead.json +#: crm/fcrm/pagetype/crm_lead_source/crm_lead_source.json +#: crm/fcrm/pagetype/crm_lead_status/crm_lead_status.json +#: crm/fcrm/pagetype/fcrm_settings/fcrm_settings.json #: frontend/src/components/Settings/EmailTemplate/EmailTemplates.vue:76 #: frontend/src/components/Settings/Users.vue:85 msgid "All" @@ -426,16 +426,16 @@ msgstr "Tümü" msgid "All day" msgstr "" -#. Label of the amount (Currency) field in DocType 'CRM Products' -#: crm/fcrm/doctype/crm_products/crm_products.json +#. Label of the amount (Currency) field in PageType 'CRM Products' +#: crm/fcrm/pagetype/crm_products/crm_products.json #: frontend/src/pages/Contact.vue:499 frontend/src/pages/MobileContact.vue:507 #: frontend/src/pages/MobileOrganization.vue:451 #: frontend/src/pages/Organization.vue:472 msgid "Amount" msgstr "Tutar" -#. Description of the 'Net Amount' (Currency) field in DocType 'CRM Products' -#: crm/fcrm/doctype/crm_products/crm_products.json +#. Description of the 'Net Amount' (Currency) field in PageType 'CRM Products' +#: crm/fcrm/pagetype/crm_products/crm_products.json msgid "Amount after discount" msgstr "" @@ -447,13 +447,13 @@ msgstr "" msgid "An error occurred while updating the document" msgstr "" -#. Description of the 'Favicon' (Attach) field in DocType 'FCRM Settings' -#: crm/fcrm/doctype/fcrm_settings/fcrm_settings.json +#. Description of the 'Favicon' (Attach) field in PageType 'FCRM Settings' +#: crm/fcrm/pagetype/fcrm_settings/fcrm_settings.json msgid "An icon file with .ico extension. Should be 16 x 16 px. Generated using a favicon generator. [favicon-generator.org]" msgstr ".ico uzantılı bir simge dosyası. 16 x 16 piksel olmalıdır. Bir favicon oluşturucu kullanılarak oluşturulmuştur. [favicon-generator.org]" -#. Description of the 'Logo' (Attach) field in DocType 'FCRM Settings' -#: crm/fcrm/doctype/fcrm_settings/fcrm_settings.json +#. Description of the 'Logo' (Attach) field in PageType 'FCRM Settings' +#: crm/fcrm/pagetype/fcrm_settings/fcrm_settings.json msgid "An image with 1:1 & 2:1 ratio is preferred" msgstr "" @@ -461,12 +461,12 @@ msgstr "" msgid "And" msgstr "" -#. Label of the annual_revenue (Currency) field in DocType 'CRM Deal' -#. Label of the annual_revenue (Currency) field in DocType 'CRM Lead' -#. Label of the annual_revenue (Currency) field in DocType 'CRM Organization' -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_lead/crm_lead.json -#: crm/fcrm/doctype/crm_organization/crm_organization.json +#. Label of the annual_revenue (Currency) field in PageType 'CRM Deal' +#. Label of the annual_revenue (Currency) field in PageType 'CRM Lead' +#. Label of the annual_revenue (Currency) field in PageType 'CRM Organization' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_lead/crm_lead.json +#: crm/fcrm/pagetype/crm_organization/crm_organization.json msgid "Annual Revenue" msgstr "Ciro" @@ -488,13 +488,13 @@ msgstr "" msgid "Apply" msgstr "Uygula" -#. Label of the apply_on (Link) field in DocType 'CRM Service Level Agreement' -#: crm/fcrm/doctype/crm_service_level_agreement/crm_service_level_agreement.json +#. Label of the apply_on (Link) field in PageType 'CRM Service Level Agreement' +#: crm/fcrm/pagetype/crm_service_level_agreement/crm_service_level_agreement.json msgid "Apply On" msgstr "Uygula" -#. Label of the view (Select) field in DocType 'CRM Form Script' -#: crm/fcrm/doctype/crm_form_script/crm_form_script.json +#. Label of the view (Select) field in PageType 'CRM Form Script' +#: crm/fcrm/pagetype/crm_form_script/crm_form_script.json msgid "Apply To" msgstr "Uygulanan" @@ -540,10 +540,10 @@ msgid "Are you sure you want to go back? Unsaved changes will be lost." msgstr "" #: frontend/src/composables/frappecloud.js:24 -msgid "Are you sure you want to login to your Frappe Cloud dashboard?" +msgid "Are you sure you want to login to your Jingrow Cloud dashboard?" msgstr "" -#: crm/fcrm/doctype/erpnext_crm_settings/erpnext_crm_settings.js:9 +#: crm/fcrm/pagetype/erpnext_crm_settings/erpnext_crm_settings.js:9 msgid "Are you sure you want to reset 'Create Quotation from CRM Deal' Form Script?" msgstr "" @@ -555,7 +555,7 @@ msgstr "" msgid "Are you sure you want to unlink {0} linked item(s)?" msgstr "" -#: crm/fcrm/doctype/fcrm_settings/fcrm_settings.py:193 +#: crm/fcrm/pagetype/fcrm_settings/fcrm_settings.py:193 msgid "Ask your manager to set up the Exchange Rate Provider, as default provider does not support currency conversion for {0} to {1}." msgstr "" @@ -581,8 +581,8 @@ msgstr "" msgid "Assign to me" msgstr "Bana Ata" -#. Label of the assigned_to (Link) field in DocType 'CRM Task' -#: crm/fcrm/doctype/crm_task/crm_task.json +#. Label of the assigned_to (Link) field in PageType 'CRM Task' +#: crm/fcrm/pagetype/crm_task/crm_task.json msgid "Assigned To" msgstr "Atama" @@ -594,13 +594,13 @@ msgstr "" msgid "Assignees" msgstr "" -#. Option for the 'Type' (Select) field in DocType 'CRM Notification' -#: crm/fcrm/doctype/crm_notification/crm_notification.json +#. Option for the 'Type' (Select) field in PageType 'CRM Notification' +#: crm/fcrm/pagetype/crm_notification/crm_notification.json msgid "Assignment" msgstr "Atama" -#. Label of a shortcut in the Frappe CRM Workspace -#: crm/fcrm/workspace/frappe_crm/frappe_crm.json +#. Label of a shortcut in the Jingrow CRM Workspace +#: crm/fcrm/workspace/jingrow_crm/jingrow_crm.json msgid "Assignment Rule" msgstr "Atama Kuralı" @@ -678,14 +678,14 @@ msgstr "Belge Ekleri" msgid "Attendees" msgstr "Katılımcılar" -#. Label of the auth_token (Password) field in DocType 'CRM Twilio Settings' -#: crm/fcrm/doctype/crm_twilio_settings/crm_twilio_settings.json +#. Label of the auth_token (Password) field in PageType 'CRM Twilio Settings' +#: crm/fcrm/pagetype/crm_twilio_settings/crm_twilio_settings.json msgid "Auth Token" msgstr "" -#. Label of the auto_update_expected_deal_value (Check) field in DocType 'FCRM +#. Label of the auto_update_expected_deal_value (Check) field in PageType 'FCRM #. Settings' -#: crm/fcrm/doctype/fcrm_settings/fcrm_settings.json +#: crm/fcrm/pagetype/fcrm_settings/fcrm_settings.json msgid "Auto Update Expected Deal Value" msgstr "" @@ -702,8 +702,8 @@ msgid "Auto update of expected deal value enabled" msgstr "" #. Description of the 'Auto Update Expected Deal Value' (Check) field in -#. DocType 'FCRM Settings' -#: crm/fcrm/doctype/fcrm_settings/fcrm_settings.json +#. PageType 'FCRM Settings' +#: crm/fcrm/pagetype/fcrm_settings/fcrm_settings.json #: frontend/src/components/Settings/ForecastingSettings.vue:46 msgid "Automatically update \"Expected Deal Value\" based on the total value of associated products in a deal" msgstr "" @@ -793,8 +793,8 @@ msgstr "Geri" msgid "Back to file upload" msgstr "" -#. Option for the 'Status' (Select) field in DocType 'CRM Task' -#: crm/fcrm/doctype/crm_task/crm_task.json +#. Option for the 'Status' (Select) field in PageType 'CRM Task' +#: crm/fcrm/pagetype/crm_task/crm_task.json msgid "Backlog" msgstr "" @@ -818,8 +818,8 @@ msgstr "" msgid "Brand settings" msgstr "" -#. Label of the branding_tab (Tab Break) field in DocType 'FCRM Settings' -#: crm/fcrm/doctype/fcrm_settings/fcrm_settings.json +#. Label of the branding_tab (Tab Break) field in PageType 'FCRM Settings' +#: crm/fcrm/pagetype/fcrm_settings/fcrm_settings.json msgid "Branding" msgstr "" @@ -827,8 +827,8 @@ msgstr "" msgid "Bulk Edit" msgstr "Toplu Düzenleme" -#. Option for the 'Status' (Select) field in DocType 'CRM Call Log' -#: crm/fcrm/doctype/crm_call_log/crm_call_log.json +#. Option for the 'Status' (Select) field in PageType 'CRM Call Log' +#: crm/fcrm/pagetype/crm_call_log/crm_call_log.json msgid "Busy" msgstr "Meşgul" @@ -838,174 +838,174 @@ msgstr "Meşgul" msgid "CC" msgstr "Bilgi" -#. Name of a DocType -#: crm/fcrm/doctype/crm_call_log/crm_call_log.json +#. Name of a PageType +#: crm/fcrm/pagetype/crm_call_log/crm_call_log.json msgid "CRM Call Log" msgstr "" -#. Name of a DocType -#: crm/fcrm/doctype/crm_communication_status/crm_communication_status.json +#. Name of a PageType +#: crm/fcrm/pagetype/crm_communication_status/crm_communication_status.json msgid "CRM Communication Status" msgstr "" -#. Name of a DocType -#: crm/fcrm/doctype/crm_contacts/crm_contacts.json +#. Name of a PageType +#: crm/fcrm/pagetype/crm_contacts/crm_contacts.json msgid "CRM Contacts" msgstr "" -#. Name of a DocType -#: crm/fcrm/doctype/crm_dashboard/crm_dashboard.json +#. Name of a PageType +#: crm/fcrm/pagetype/crm_dashboard/crm_dashboard.json #: frontend/src/pages/Dashboard.vue:304 msgid "CRM Dashboard" msgstr "" -#. Name of a DocType -#: crm/fcrm/doctype/crm_deal/crm_deal.json +#. Name of a PageType +#: crm/fcrm/pagetype/crm_deal/crm_deal.json msgid "CRM Deal" msgstr "" -#. Name of a DocType -#: crm/fcrm/doctype/crm_deal_status/crm_deal_status.json +#. Name of a PageType +#: crm/fcrm/pagetype/crm_deal_status/crm_deal_status.json msgid "CRM Deal Status" msgstr "" -#. Name of a DocType -#: crm/fcrm/doctype/crm_dropdown_item/crm_dropdown_item.json +#. Name of a PageType +#: crm/fcrm/pagetype/crm_dropdown_item/crm_dropdown_item.json msgid "CRM Dropdown Item" msgstr "" -#. Name of a DocType -#: crm/fcrm/doctype/crm_exotel_settings/crm_exotel_settings.json +#. Name of a PageType +#: crm/fcrm/pagetype/crm_exotel_settings/crm_exotel_settings.json msgid "CRM Exotel Settings" msgstr "" -#. Name of a DocType -#: crm/fcrm/doctype/crm_fields_layout/crm_fields_layout.json +#. Name of a PageType +#: crm/fcrm/pagetype/crm_fields_layout/crm_fields_layout.json msgid "CRM Fields Layout" msgstr "" -#. Name of a DocType -#: crm/fcrm/doctype/crm_form_script/crm_form_script.json +#. Name of a PageType +#: crm/fcrm/pagetype/crm_form_script/crm_form_script.json msgid "CRM Form Script" msgstr "" -#. Name of a DocType -#: crm/fcrm/doctype/crm_global_settings/crm_global_settings.json +#. Name of a PageType +#: crm/fcrm/pagetype/crm_global_settings/crm_global_settings.json msgid "CRM Global Settings" msgstr "" -#. Name of a DocType -#: crm/fcrm/doctype/crm_holiday/crm_holiday.json +#. Name of a PageType +#: crm/fcrm/pagetype/crm_holiday/crm_holiday.json msgid "CRM Holiday" msgstr "" -#. Name of a DocType -#: crm/fcrm/doctype/crm_holiday_list/crm_holiday_list.json +#. Name of a PageType +#: crm/fcrm/pagetype/crm_holiday_list/crm_holiday_list.json msgid "CRM Holiday List" msgstr "" -#. Name of a DocType -#: crm/fcrm/doctype/crm_industry/crm_industry.json +#. Name of a PageType +#: crm/fcrm/pagetype/crm_industry/crm_industry.json msgid "CRM Industry" msgstr "" -#. Name of a DocType -#: crm/fcrm/doctype/crm_invitation/crm_invitation.json +#. Name of a PageType +#: crm/fcrm/pagetype/crm_invitation/crm_invitation.json msgid "CRM Invitation" msgstr "" -#. Name of a DocType -#: crm/fcrm/doctype/crm_lead/crm_lead.json +#. Name of a PageType +#: crm/fcrm/pagetype/crm_lead/crm_lead.json msgid "CRM Lead" msgstr "" -#. Name of a DocType -#: crm/fcrm/doctype/crm_lead_source/crm_lead_source.json +#. Name of a PageType +#: crm/fcrm/pagetype/crm_lead_source/crm_lead_source.json msgid "CRM Lead Source" msgstr "" -#. Name of a DocType -#: crm/fcrm/doctype/crm_lead_status/crm_lead_status.json +#. Name of a PageType +#: crm/fcrm/pagetype/crm_lead_status/crm_lead_status.json msgid "CRM Lead Status" msgstr "" -#. Name of a DocType -#: crm/fcrm/doctype/crm_lost_reason/crm_lost_reason.json +#. Name of a PageType +#: crm/fcrm/pagetype/crm_lost_reason/crm_lost_reason.json msgid "CRM Lost Reason" msgstr "" -#. Name of a DocType -#: crm/fcrm/doctype/crm_notification/crm_notification.json +#. Name of a PageType +#: crm/fcrm/pagetype/crm_notification/crm_notification.json msgid "CRM Notification" msgstr "" -#. Name of a DocType -#: crm/fcrm/doctype/crm_organization/crm_organization.json +#. Name of a PageType +#: crm/fcrm/pagetype/crm_organization/crm_organization.json msgid "CRM Organization" msgstr "" -#. Label of a shortcut in the Frappe CRM Workspace -#: crm/fcrm/workspace/frappe_crm/frappe_crm.json +#. Label of a shortcut in the Jingrow CRM Workspace +#: crm/fcrm/workspace/jingrow_crm/jingrow_crm.json msgid "CRM Portal Page" msgstr "" -#. Name of a DocType -#: crm/fcrm/doctype/crm_product/crm_product.json +#. Name of a PageType +#: crm/fcrm/pagetype/crm_product/crm_product.json msgid "CRM Product" msgstr "" -#. Name of a DocType -#: crm/fcrm/doctype/crm_products/crm_products.json +#. Name of a PageType +#: crm/fcrm/pagetype/crm_products/crm_products.json msgid "CRM Products" msgstr "" -#. Name of a DocType -#: crm/fcrm/doctype/crm_service_day/crm_service_day.json +#. Name of a PageType +#: crm/fcrm/pagetype/crm_service_day/crm_service_day.json msgid "CRM Service Day" msgstr "" -#. Name of a DocType -#: crm/fcrm/doctype/crm_service_level_agreement/crm_service_level_agreement.json +#. Name of a PageType +#: crm/fcrm/pagetype/crm_service_level_agreement/crm_service_level_agreement.json msgid "CRM Service Level Agreement" msgstr "" -#. Name of a DocType -#: crm/fcrm/doctype/crm_service_level_priority/crm_service_level_priority.json +#. Name of a PageType +#: crm/fcrm/pagetype/crm_service_level_priority/crm_service_level_priority.json msgid "CRM Service Level Priority" msgstr "" -#. Name of a DocType -#: crm/fcrm/doctype/crm_status_change_log/crm_status_change_log.json +#. Name of a PageType +#: crm/fcrm/pagetype/crm_status_change_log/crm_status_change_log.json msgid "CRM Status Change Log" msgstr "" -#. Name of a DocType -#: crm/fcrm/doctype/crm_task/crm_task.json +#. Name of a PageType +#: crm/fcrm/pagetype/crm_task/crm_task.json msgid "CRM Task" msgstr "" -#. Name of a DocType -#: crm/fcrm/doctype/crm_telephony_agent/crm_telephony_agent.json +#. Name of a PageType +#: crm/fcrm/pagetype/crm_telephony_agent/crm_telephony_agent.json msgid "CRM Telephony Agent" msgstr "" -#. Name of a DocType -#: crm/fcrm/doctype/crm_telephony_phone/crm_telephony_phone.json +#. Name of a PageType +#: crm/fcrm/pagetype/crm_telephony_phone/crm_telephony_phone.json msgid "CRM Telephony Phone" msgstr "" -#. Name of a DocType -#: crm/fcrm/doctype/crm_territory/crm_territory.json +#. Name of a PageType +#: crm/fcrm/pagetype/crm_territory/crm_territory.json msgid "CRM Territory" msgstr "" -#. Name of a DocType -#: crm/fcrm/doctype/crm_twilio_settings/crm_twilio_settings.json +#. Name of a PageType +#: crm/fcrm/pagetype/crm_twilio_settings/crm_twilio_settings.json msgid "CRM Twilio Settings" msgstr "" -#. Name of a DocType -#: crm/fcrm/doctype/crm_view_settings/crm_view_settings.json +#. Name of a PageType +#: crm/fcrm/pagetype/crm_view_settings/crm_view_settings.json msgid "CRM View Settings" msgstr "" @@ -1021,13 +1021,13 @@ msgstr "CSV Dosyası" msgid "Call Details" msgstr "Çağrı Ayrıntıları" -#. Label of the receiver (Link) field in DocType 'CRM Call Log' -#: crm/fcrm/doctype/crm_call_log/crm_call_log.json +#. Label of the receiver (Link) field in PageType 'CRM Call Log' +#: crm/fcrm/pagetype/crm_call_log/crm_call_log.json msgid "Call Received By" msgstr "Çağrı Alındı" -#. Description of the 'Duration' (Duration) field in DocType 'CRM Call Log' -#: crm/fcrm/doctype/crm_call_log/crm_call_log.json +#. Description of the 'Duration' (Duration) field in PageType 'CRM Call Log' +#: crm/fcrm/pagetype/crm_call_log/crm_call_log.json msgid "Call duration in seconds" msgstr "" @@ -1045,8 +1045,8 @@ msgstr "" msgid "Call with John Doe" msgstr "" -#. Label of the caller (Link) field in DocType 'CRM Call Log' -#: crm/fcrm/doctype/crm_call_log/crm_call_log.json +#. Label of the caller (Link) field in PageType 'CRM Call Log' +#: crm/fcrm/pagetype/crm_call_log/crm_call_log.json msgid "Caller" msgstr "" @@ -1083,10 +1083,10 @@ msgstr "Kamera" msgid "Cancel" msgstr "İptal" -#. Option for the 'Status' (Select) field in DocType 'CRM Call Log' -#. Option for the 'Status' (Select) field in DocType 'CRM Task' -#: crm/fcrm/doctype/crm_call_log/crm_call_log.json -#: crm/fcrm/doctype/crm_task/crm_task.json +#. Option for the 'Status' (Select) field in PageType 'CRM Call Log' +#. Option for the 'Status' (Select) field in PageType 'CRM Task' +#: crm/fcrm/pagetype/crm_call_log/crm_call_log.json +#: crm/fcrm/pagetype/crm_task/crm_task.json msgid "Canceled" msgstr "İptal Edildi" @@ -1094,7 +1094,7 @@ msgstr "İptal Edildi" msgid "Cannot change role of user with Admin access" msgstr "" -#: crm/fcrm/doctype/fcrm_settings/fcrm_settings.py:34 +#: crm/fcrm/pagetype/fcrm_settings/fcrm_settings.py:34 msgid "Cannot delete standard items {0}" msgstr "" @@ -1189,8 +1189,8 @@ msgstr "Atamayı Temizle" msgid "Clear Sort" msgstr "" -#. Label of the clear_table (Button) field in DocType 'CRM Holiday List' -#: crm/fcrm/doctype/crm_holiday_list/crm_holiday_list.json +#. Label of the clear_table (Button) field in PageType 'CRM Holiday List' +#: crm/fcrm/pagetype/crm_holiday_list/crm_holiday_list.json msgid "Clear Table" msgstr "Tabloyu Temizle" @@ -1211,8 +1211,8 @@ msgstr "Kapat" msgid "Close panel" msgstr "" -#. Label of the closed_date (Date) field in DocType 'CRM Deal' -#: crm/fcrm/doctype/crm_deal/crm_deal.json +#. Label of the closed_date (Date) field in PageType 'CRM Deal' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json msgid "Closed Date" msgstr "" @@ -1224,10 +1224,10 @@ msgstr "Daralt" msgid "Collapsible" msgstr "Açılır Kapanır" -#. Label of the color (Select) field in DocType 'CRM Deal Status' -#. Label of the color (Select) field in DocType 'CRM Lead Status' -#: crm/fcrm/doctype/crm_deal_status/crm_deal_status.json -#: crm/fcrm/doctype/crm_lead_status/crm_lead_status.json +#. Label of the color (Select) field in PageType 'CRM Deal Status' +#. Label of the color (Select) field in PageType 'CRM Lead Status' +#: crm/fcrm/pagetype/crm_deal_status/crm_deal_status.json +#: crm/fcrm/pagetype/crm_lead_status/crm_lead_status.json msgid "Color" msgstr "Renk" @@ -1235,20 +1235,20 @@ msgstr "Renk" msgid "Column" msgstr "Sütun" -#. Label of the column_field (Data) field in DocType 'CRM View Settings' -#: crm/fcrm/doctype/crm_view_settings/crm_view_settings.json +#. Label of the column_field (Data) field in PageType 'CRM View Settings' +#: crm/fcrm/pagetype/crm_view_settings/crm_view_settings.json #: frontend/src/components/Kanban/KanbanSettings.vue:12 msgid "Column Field" msgstr "" -#. Label of the columns (Code) field in DocType 'CRM View Settings' -#: crm/fcrm/doctype/crm_view_settings/crm_view_settings.json +#. Label of the columns (Code) field in PageType 'CRM View Settings' +#: crm/fcrm/pagetype/crm_view_settings/crm_view_settings.json #: frontend/src/components/ColumnSettings.vue:4 msgid "Columns" msgstr "Sütunlar" -#. Label of the comment (Link) field in DocType 'CRM Notification' -#: crm/fcrm/doctype/crm_notification/crm_notification.json +#. Label of the comment (Link) field in PageType 'CRM Notification' +#: crm/fcrm/pagetype/crm_notification/crm_notification.json #: frontend/src/components/CommentBox.vue:78 #: frontend/src/components/CommunicationArea.vue:16 #: frontend/src/components/Layouts/AppSidebar.vue:579 @@ -1264,20 +1264,20 @@ msgstr "Yorumlar" msgid "Common reasons for losing deals" msgstr "" -#. Label of the communication_status (Link) field in DocType 'CRM Deal' -#. Label of the communication_status (Link) field in DocType 'CRM Lead' -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_lead/crm_lead.json +#. Label of the communication_status (Link) field in PageType 'CRM Deal' +#. Label of the communication_status (Link) field in PageType 'CRM Lead' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_lead/crm_lead.json msgid "Communication Status" msgstr "" -#. Label of a shortcut in the Frappe CRM Workspace -#: crm/fcrm/workspace/frappe_crm/frappe_crm.json +#. Label of a shortcut in the Jingrow CRM Workspace +#: crm/fcrm/workspace/jingrow_crm/jingrow_crm.json msgid "Communication Statuses" msgstr "" -#. Label of the erpnext_company (Data) field in DocType 'ERPNext CRM Settings' -#: crm/fcrm/doctype/erpnext_crm_settings/erpnext_crm_settings.json +#. Label of the erpnext_company (Data) field in PageType 'ERPNext CRM Settings' +#: crm/fcrm/pagetype/erpnext_crm_settings/erpnext_crm_settings.json msgid "Company in ERPNext Site" msgstr "" @@ -1285,18 +1285,18 @@ msgstr "" msgid "Complete Registration" msgstr "Kaydı Tamamla" -#. Option for the 'Status' (Select) field in DocType 'CRM Call Log' -#: crm/fcrm/doctype/crm_call_log/crm_call_log.json +#. Option for the 'Status' (Select) field in PageType 'CRM Call Log' +#: crm/fcrm/pagetype/crm_call_log/crm_call_log.json msgid "Completed" msgstr "Tamamlandı" -#. Option for the 'Device' (Select) field in DocType 'CRM Telephony Agent' -#: crm/fcrm/doctype/crm_telephony_agent/crm_telephony_agent.json +#. Option for the 'Device' (Select) field in PageType 'CRM Telephony Agent' +#: crm/fcrm/pagetype/crm_telephony_agent/crm_telephony_agent.json msgid "Computer" msgstr "Bilgisayar" -#. Label of the condition (Code) field in DocType 'CRM Service Level Agreement' -#: crm/fcrm/doctype/crm_service_level_agreement/crm_service_level_agreement.json +#. Label of the condition (Code) field in PageType 'CRM Service Level Agreement' +#: crm/fcrm/pagetype/crm_service_level_agreement/crm_service_level_agreement.json msgid "Condition" msgstr "Koşul" @@ -1354,17 +1354,17 @@ msgstr "" msgid "Connect your email" msgstr "" -#. Label of the contact (Link) field in DocType 'CRM Contacts' -#. Label of the contact (Link) field in DocType 'CRM Deal' -#: crm/fcrm/doctype/crm_contacts/crm_contacts.json -#: crm/fcrm/doctype/crm_deal/crm_deal.json +#. Label of the contact (Link) field in PageType 'CRM Contacts' +#. Label of the contact (Link) field in PageType 'CRM Deal' +#: crm/fcrm/pagetype/crm_contacts/crm_contacts.json +#: crm/fcrm/pagetype/crm_deal/crm_deal.json #: frontend/src/components/Layouts/AppSidebar.vue:552 #: frontend/src/components/Modals/ConvertToDealModal.vue:51 #: frontend/src/pages/MobileLead.vue:145 msgid "Contact" msgstr "Kişi" -#: crm/fcrm/doctype/crm_lead/crm_lead.py:212 +#: crm/fcrm/pagetype/crm_lead/crm_lead.py:212 msgid "Contact Already Exists" msgstr "" @@ -1384,7 +1384,7 @@ msgstr "" msgid "Contact already added" msgstr "" -#: crm/fcrm/doctype/crm_lead/crm_lead.py:211 +#: crm/fcrm/pagetype/crm_lead/crm_lead.py:211 msgid "Contact already exists with {0}" msgstr "" @@ -1405,18 +1405,18 @@ msgstr "" msgid "Contact updated" msgstr "" -#. Label of the contacts_tab (Tab Break) field in DocType 'CRM Deal' -#. Label of the contacts (Table) field in DocType 'CRM Deal' -#. Label of a shortcut in the Frappe CRM Workspace -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/workspace/frappe_crm/frappe_crm.json +#. Label of the contacts_tab (Tab Break) field in PageType 'CRM Deal' +#. Label of the contacts (Table) field in PageType 'CRM Deal' +#. Label of a shortcut in the Jingrow CRM Workspace +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/workspace/jingrow_crm/jingrow_crm.json #: frontend/src/pages/Contact.vue:234 frontend/src/pages/MobileContact.vue:212 #: frontend/src/pages/MobileOrganization.vue:331 msgid "Contacts" msgstr "Kişiler" -#. Label of the content (Text Editor) field in DocType 'FCRM Note' -#: crm/fcrm/doctype/fcrm_note/fcrm_note.json +#. Label of the content (Text Editor) field in PageType 'FCRM Note' +#: crm/fcrm/pagetype/fcrm_note/fcrm_note.json #: frontend/src/components/Modals/NoteModal.vue:33 #: frontend/src/components/Settings/EmailTemplate/EditEmailTemplate.vue:89 #: frontend/src/components/Settings/EmailTemplate/EditEmailTemplate.vue:102 @@ -1456,8 +1456,8 @@ msgstr "" msgid "Convert to Deal" msgstr "" -#. Label of the converted (Check) field in DocType 'CRM Lead' -#: crm/fcrm/doctype/crm_lead/crm_lead.json +#. Label of the converted (Check) field in PageType 'CRM Lead' +#: crm/fcrm/pagetype/crm_lead/crm_lead.json msgid "Converted" msgstr "Dönüştürülmüş" @@ -1533,9 +1533,9 @@ msgstr "" msgid "Create an event" msgstr "" -#. Label of the create_customer_on_status_change (Check) field in DocType +#. Label of the create_customer_on_status_change (Check) field in PageType #. 'ERPNext CRM Settings' -#: crm/fcrm/doctype/erpnext_crm_settings/erpnext_crm_settings.json +#: crm/fcrm/pagetype/erpnext_crm_settings/erpnext_crm_settings.json msgid "Create customer on status change" msgstr "" @@ -1560,13 +1560,13 @@ msgstr "" msgid "Create your first task" msgstr "" -#. Label of the currency (Link) field in DocType 'CRM Deal' -#. Label of the currency (Link) field in DocType 'CRM Organization' -#. Label of the currency (Link) field in DocType 'FCRM Settings' -#. Label of the currency_tab (Tab Break) field in DocType 'FCRM Settings' -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_organization/crm_organization.json -#: crm/fcrm/doctype/fcrm_settings/fcrm_settings.json +#. Label of the currency (Link) field in PageType 'CRM Deal' +#. Label of the currency (Link) field in PageType 'CRM Organization' +#. Label of the currency (Link) field in PageType 'FCRM Settings' +#. Label of the currency_tab (Tab Break) field in PageType 'FCRM Settings' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_organization/crm_organization.json +#: crm/fcrm/pagetype/fcrm_settings/fcrm_settings.json #: frontend/src/components/Settings/CurrencySettings.vue:31 msgid "Currency" msgstr "Para Birimi" @@ -1631,13 +1631,13 @@ msgstr "" msgid "Data" msgstr "Veri" -#. Option for the 'Type' (Select) field in DocType 'CRM Fields Layout' -#: crm/fcrm/doctype/crm_fields_layout/crm_fields_layout.json +#. Option for the 'Type' (Select) field in PageType 'CRM Fields Layout' +#: crm/fcrm/pagetype/crm_fields_layout/crm_fields_layout.json msgid "Data Fields" msgstr "" -#. Label of the date (Date) field in DocType 'CRM Holiday' -#: crm/api/dashboard.py:601 crm/fcrm/doctype/crm_holiday/crm_holiday.json +#. Label of the date (Date) field in PageType 'CRM Holiday' +#: crm/api/dashboard.py:601 crm/fcrm/pagetype/crm_holiday/crm_holiday.json #: frontend/src/components/Calendar/CalendarEventPanel.vue:202 msgid "Date" msgstr "Tarih" @@ -1660,23 +1660,23 @@ msgstr "" msgid "Deal" msgstr "" -#. Label of the deal_owner (Link) field in DocType 'CRM Deal' -#: crm/fcrm/doctype/crm_deal/crm_deal.json +#. Label of the deal_owner (Link) field in PageType 'CRM Deal' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json msgid "Deal Owner" msgstr "Anlaşma Sahibi" -#. Label of the deal_status (Link) field in DocType 'ERPNext CRM Settings' -#: crm/fcrm/doctype/erpnext_crm_settings/erpnext_crm_settings.json +#. Label of the deal_status (Link) field in PageType 'ERPNext CRM Settings' +#: crm/fcrm/pagetype/erpnext_crm_settings/erpnext_crm_settings.json msgid "Deal Status" msgstr "" -#. Label of a shortcut in the Frappe CRM Workspace -#: crm/fcrm/workspace/frappe_crm/frappe_crm.json +#. Label of a shortcut in the Jingrow CRM Workspace +#: crm/fcrm/workspace/jingrow_crm/jingrow_crm.json msgid "Deal Statuses" msgstr "" -#. Label of the deal_value (Currency) field in DocType 'CRM Deal' -#: crm/fcrm/doctype/crm_deal/crm_deal.json +#. Label of the deal_value (Currency) field in PageType 'CRM Deal' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json msgid "Deal Value" msgstr "" @@ -1694,8 +1694,8 @@ msgstr "" msgid "Deal value" msgstr "" -#. Label of a shortcut in the Frappe CRM Workspace -#: crm/fcrm/workspace/frappe_crm/frappe_crm.json +#. Label of a shortcut in the Jingrow CRM Workspace +#: crm/fcrm/workspace/jingrow_crm/jingrow_crm.json #: frontend/src/pages/Deal.vue:480 frontend/src/pages/MobileContact.vue:288 #: frontend/src/pages/MobileDeal.vue:384 #: frontend/src/pages/MobileOrganization.vue:325 @@ -1732,8 +1732,8 @@ msgstr "" msgid "Dear {{ lead_name }}, \\n\\nThis is a reminder for the payment of {{ grand_total }}. \\n\\nThanks, \\nFrappé" msgstr "" -#. Label of the default (Check) field in DocType 'CRM Service Level Agreement' -#: crm/fcrm/doctype/crm_service_level_agreement/crm_service_level_agreement.json +#. Label of the default (Check) field in PageType 'CRM Service Level Agreement' +#: crm/fcrm/pagetype/crm_service_level_agreement/crm_service_level_agreement.json msgid "Default" msgstr "Varsayılan" @@ -1745,8 +1745,8 @@ msgstr "Varsayılan Gelen Kutusu" msgid "Default Incoming" msgstr "Varsayılan Gelen Kutusu" -#. Label of the default_medium (Select) field in DocType 'CRM Telephony Agent' -#: crm/fcrm/doctype/crm_telephony_agent/crm_telephony_agent.json +#. Label of the default_medium (Select) field in PageType 'CRM Telephony Agent' +#: crm/fcrm/pagetype/crm_telephony_agent/crm_telephony_agent.json msgid "Default Medium" msgstr "" @@ -1754,9 +1754,9 @@ msgstr "" msgid "Default Outgoing" msgstr "Varsayılan Giden" -#. Label of the default_priority (Check) field in DocType 'CRM Service Level +#. Label of the default_priority (Check) field in PageType 'CRM Service Level #. Priority' -#: crm/fcrm/doctype/crm_service_level_priority/crm_service_level_priority.json +#: crm/fcrm/pagetype/crm_service_level_priority/crm_service_level_priority.json msgid "Default Priority" msgstr "Varsayılan Öncelik" @@ -1768,7 +1768,7 @@ msgstr "Varsayılan Gönderme" msgid "Default Sending and Inbox" msgstr "Varsayılan Gönderme ve Gelen Kutusu" -#: crm/fcrm/doctype/crm_service_level_agreement/crm_service_level_agreement.py:33 +#: crm/fcrm/pagetype/crm_service_level_agreement/crm_service_level_agreement.py:33 msgid "Default Service Level Agreement already exists for {0}" msgstr "" @@ -1788,8 +1788,8 @@ msgstr "" msgid "Default medium" msgstr "" -#: crm/fcrm/doctype/fcrm_settings/fcrm_settings.js:18 -#: crm/fcrm/doctype/fcrm_settings/fcrm_settings.js:30 +#: crm/fcrm/pagetype/fcrm_settings/fcrm_settings.js:18 +#: crm/fcrm/pagetype/fcrm_settings/fcrm_settings.js:30 msgid "Default statuses, custom fields and layouts restored successfully." msgstr "" @@ -1825,7 +1825,7 @@ msgstr "" msgid "Delete" msgstr "Sil" -#: crm/fcrm/doctype/fcrm_settings/fcrm_settings.js:26 +#: crm/fcrm/pagetype/fcrm_settings/fcrm_settings.js:26 msgid "Delete & Restore" msgstr "" @@ -1883,14 +1883,14 @@ msgstr "" msgid "Delete {0} items" msgstr "" -#. Label of the description (Text Editor) field in DocType 'CRM Holiday' -#. Label of the description (Text Editor) field in DocType 'CRM Lost Reason' -#. Label of the description (Text Editor) field in DocType 'CRM Product' -#. Label of the description (Text Editor) field in DocType 'CRM Task' -#: crm/fcrm/doctype/crm_holiday/crm_holiday.json -#: crm/fcrm/doctype/crm_lost_reason/crm_lost_reason.json -#: crm/fcrm/doctype/crm_product/crm_product.json -#: crm/fcrm/doctype/crm_task/crm_task.json +#. Label of the description (Text Editor) field in PageType 'CRM Holiday' +#. Label of the description (Text Editor) field in PageType 'CRM Lost Reason' +#. Label of the description (Text Editor) field in PageType 'CRM Product' +#. Label of the description (Text Editor) field in PageType 'CRM Task' +#: crm/fcrm/pagetype/crm_holiday/crm_holiday.json +#: crm/fcrm/pagetype/crm_lost_reason/crm_lost_reason.json +#: crm/fcrm/pagetype/crm_product/crm_product.json +#: crm/fcrm/pagetype/crm_task/crm_task.json #: frontend/src/components/Calendar/CalendarEventPanel.vue:152 #: frontend/src/components/Modals/EventModal.vue:134 #: frontend/src/components/Modals/TaskModal.vue:36 @@ -1907,29 +1907,29 @@ msgstr "" msgid "Desk" msgstr "Masa" -#. Label of the details (Tab Break) field in DocType 'CRM Lead' -#. Label of the details (Text Editor) field in DocType 'CRM Lead Source' -#: crm/fcrm/doctype/crm_lead/crm_lead.json -#: crm/fcrm/doctype/crm_lead_source/crm_lead_source.json +#. Label of the details (Tab Break) field in PageType 'CRM Lead' +#. Label of the details (Text Editor) field in PageType 'CRM Lead Source' +#: crm/fcrm/pagetype/crm_lead/crm_lead.json +#: crm/fcrm/pagetype/crm_lead_source/crm_lead_source.json #: frontend/src/pages/MobileContact.vue:283 #: frontend/src/pages/MobileDeal.vue:424 frontend/src/pages/MobileLead.vue:331 #: frontend/src/pages/MobileOrganization.vue:320 msgid "Details" msgstr "Ayrıntılar" -#. Label of the call_receiving_device (Select) field in DocType 'CRM Telephony +#. Label of the call_receiving_device (Select) field in PageType 'CRM Telephony #. Agent' -#: crm/fcrm/doctype/crm_telephony_agent/crm_telephony_agent.json +#: crm/fcrm/pagetype/crm_telephony_agent/crm_telephony_agent.json #: frontend/src/components/FilesUploader/FilesUploaderArea.vue:39 msgid "Device" msgstr "" -#: crm/fcrm/doctype/crm_form_script/crm_form_script.js:30 +#: crm/fcrm/pagetype/crm_form_script/crm_form_script.js:30 msgid "Disable" msgstr "Kapat" -#. Label of the disabled (Check) field in DocType 'CRM Product' -#: crm/fcrm/doctype/crm_product/crm_product.json +#. Label of the disabled (Check) field in PageType 'CRM Product' +#: crm/fcrm/pagetype/crm_product/crm_product.json msgid "Disabled" msgstr "Kapalı" @@ -1943,27 +1943,27 @@ msgstr "Vazgeç" msgid "Discard unsaved changes?" msgstr "" -#. Label of the discount_percentage (Percent) field in DocType 'CRM Products' -#: crm/fcrm/doctype/crm_products/crm_products.json +#. Label of the discount_percentage (Percent) field in PageType 'CRM Products' +#: crm/fcrm/pagetype/crm_products/crm_products.json msgid "Discount %" msgstr "İndirim %" -#. Label of the discount_amount (Currency) field in DocType 'CRM Products' -#: crm/fcrm/doctype/crm_products/crm_products.json +#. Label of the discount_amount (Currency) field in PageType 'CRM Products' +#: crm/fcrm/pagetype/crm_products/crm_products.json msgid "Discount Amount" msgstr "İndirim Tutarı" -#. Label of the dt (Link) field in DocType 'CRM Form Script' -#. Label of the dt (Link) field in DocType 'CRM Global Settings' -#. Label of the dt (Link) field in DocType 'CRM View Settings' -#: crm/fcrm/doctype/crm_form_script/crm_form_script.json -#: crm/fcrm/doctype/crm_global_settings/crm_global_settings.json -#: crm/fcrm/doctype/crm_view_settings/crm_view_settings.json -msgid "DocType" -msgstr "DocType" +#. Label of the dt (Link) field in PageType 'CRM Form Script' +#. Label of the dt (Link) field in PageType 'CRM Global Settings' +#. Label of the dt (Link) field in PageType 'CRM View Settings' +#: crm/fcrm/pagetype/crm_form_script/crm_form_script.json +#: crm/fcrm/pagetype/crm_global_settings/crm_global_settings.json +#: crm/fcrm/pagetype/crm_view_settings/crm_view_settings.json +msgid "PageType" +msgstr "PageType" -#. Label of the dt (Link) field in DocType 'CRM Fields Layout' -#: crm/fcrm/doctype/crm_fields_layout/crm_fields_layout.json +#. Label of the dt (Link) field in PageType 'CRM Fields Layout' +#: crm/fcrm/pagetype/crm_fields_layout/crm_fields_layout.json msgid "Document Type" msgstr "Belge Türü" @@ -1983,8 +1983,8 @@ msgstr "" msgid "Documentation" msgstr "Dökümantasyon" -#. Option for the 'Status' (Select) field in DocType 'CRM Task' -#: crm/fcrm/doctype/crm_task/crm_task.json +#. Option for the 'Status' (Select) field in PageType 'CRM Task' +#: crm/fcrm/pagetype/crm_task/crm_task.json msgid "Done" msgstr "Bitti" @@ -2006,13 +2006,13 @@ msgstr "Dosyaları buraya sürükleyip bırakın veya şuradan yükleyin" msgid "Drop files here" msgstr "Dosyaları buraya sürükleyin" -#. Label of the dropdown_items_tab (Tab Break) field in DocType 'FCRM Settings' -#: crm/fcrm/doctype/fcrm_settings/fcrm_settings.json +#. Label of the dropdown_items_tab (Tab Break) field in PageType 'FCRM Settings' +#: crm/fcrm/pagetype/fcrm_settings/fcrm_settings.json msgid "Dropdown Items" msgstr "" -#. Label of the due_date (Datetime) field in DocType 'CRM Task' -#: crm/fcrm/doctype/crm_task/crm_task.json +#. Label of the due_date (Datetime) field in PageType 'CRM Task' +#: crm/fcrm/pagetype/crm_task/crm_task.json msgid "Due Date" msgstr "Termin Tarihi" @@ -2048,10 +2048,10 @@ msgstr "" msgid "Duplicate template" msgstr "" -#. Label of the duration (Duration) field in DocType 'CRM Call Log' -#. Label of the duration (Duration) field in DocType 'CRM Status Change Log' -#: crm/fcrm/doctype/crm_call_log/crm_call_log.json -#: crm/fcrm/doctype/crm_status_change_log/crm_status_change_log.json +#. Label of the duration (Duration) field in PageType 'CRM Call Log' +#. Label of the duration (Duration) field in PageType 'CRM Status Change Log' +#: crm/fcrm/pagetype/crm_call_log/crm_call_log.json +#: crm/fcrm/pagetype/crm_status_change_log/crm_status_change_log.json msgid "Duration" msgstr "Süre" @@ -2060,28 +2060,28 @@ msgstr "Süre" msgid "ERPNext" msgstr "" -#. Name of a DocType -#: crm/fcrm/doctype/erpnext_crm_settings/erpnext_crm_settings.json +#. Name of a PageType +#: crm/fcrm/pagetype/erpnext_crm_settings/erpnext_crm_settings.json msgid "ERPNext CRM Settings" msgstr "" -#. Label of the section_break_oubd (Section Break) field in DocType 'ERPNext +#. Label of the section_break_oubd (Section Break) field in PageType 'ERPNext #. CRM Settings' -#: crm/fcrm/doctype/erpnext_crm_settings/erpnext_crm_settings.json +#: crm/fcrm/pagetype/erpnext_crm_settings/erpnext_crm_settings.json msgid "ERPNext Site API's" msgstr "" -#. Label of the erpnext_site_url (Data) field in DocType 'ERPNext CRM Settings' -#: crm/fcrm/doctype/erpnext_crm_settings/erpnext_crm_settings.json +#. Label of the erpnext_site_url (Data) field in PageType 'ERPNext CRM Settings' +#: crm/fcrm/pagetype/erpnext_crm_settings/erpnext_crm_settings.json msgid "ERPNext Site URL" msgstr "" -#: crm/fcrm/doctype/erpnext_crm_settings/erpnext_crm_settings.py:25 +#: crm/fcrm/pagetype/erpnext_crm_settings/erpnext_crm_settings.py:25 msgid "ERPNext is not installed in the current site" msgstr "" -#: crm/fcrm/doctype/erpnext_crm_settings/erpnext_crm_settings.py:98 -#: crm/fcrm/doctype/erpnext_crm_settings/erpnext_crm_settings.py:124 +#: crm/fcrm/pagetype/erpnext_crm_settings/erpnext_crm_settings.py:98 +#: crm/fcrm/pagetype/erpnext_crm_settings/erpnext_crm_settings.py:124 msgid "ERPNext is not integrated with the CRM" msgstr "" @@ -2191,12 +2191,12 @@ msgstr "" msgid "Editing event" msgstr "" -#. Label of the email (Data) field in DocType 'CRM Contacts' -#. Label of the email (Data) field in DocType 'CRM Invitation' -#. Label of the email (Data) field in DocType 'CRM Lead' -#: crm/fcrm/doctype/crm_contacts/crm_contacts.json -#: crm/fcrm/doctype/crm_invitation/crm_invitation.json -#: crm/fcrm/doctype/crm_lead/crm_lead.json frontend/src/pages/Contact.vue:510 +#. Label of the email (Data) field in PageType 'CRM Contacts' +#. Label of the email (Data) field in PageType 'CRM Invitation' +#. Label of the email (Data) field in PageType 'CRM Lead' +#: crm/fcrm/pagetype/crm_contacts/crm_contacts.json +#: crm/fcrm/pagetype/crm_invitation/crm_invitation.json +#: crm/fcrm/pagetype/crm_lead/crm_lead.json frontend/src/pages/Contact.vue:510 #: frontend/src/pages/MobileContact.vue:518 #: frontend/src/pages/MobileOrganization.vue:462 #: frontend/src/pages/MobileOrganization.vue:490 @@ -2213,8 +2213,8 @@ msgstr "" msgid "Email ID is required" msgstr "" -#. Label of the email_sent_at (Datetime) field in DocType 'CRM Invitation' -#: crm/fcrm/doctype/crm_invitation/crm_invitation.json +#. Label of the email_sent_at (Datetime) field in PageType 'CRM Invitation' +#: crm/fcrm/pagetype/crm_invitation/crm_invitation.json msgid "Email Sent At" msgstr "E-posta Gönderim Zamanı" @@ -2272,12 +2272,12 @@ msgstr "" msgid "Empty - Choose a field to sort by" msgstr "" -#: crm/fcrm/doctype/crm_form_script/crm_form_script.js:30 +#: crm/fcrm/pagetype/crm_form_script/crm_form_script.js:30 msgid "Enable" msgstr "Etkinleştir" -#. Label of the enable_forecasting (Check) field in DocType 'FCRM Settings' -#: crm/fcrm/doctype/fcrm_settings/fcrm_settings.json +#. Label of the enable_forecasting (Check) field in PageType 'FCRM Settings' +#: crm/fcrm/pagetype/fcrm_settings/fcrm_settings.json msgid "Enable Forecasting" msgstr "" @@ -2293,18 +2293,18 @@ msgstr "Gideni Etkinleştir" msgid "Enable forecasting" msgstr "" -#. Label of the enabled (Check) field in DocType 'CRM Exotel Settings' -#. Label of the enabled (Check) field in DocType 'CRM Form Script' -#. Label of the enabled (Check) field in DocType 'CRM Service Level Agreement' -#. Label of the enabled (Check) field in DocType 'CRM Twilio Settings' -#. Label of the enabled (Check) field in DocType 'ERPNext CRM Settings' -#. Label of the enabled (Check) field in DocType 'Helpdesk CRM Settings' -#: crm/fcrm/doctype/crm_exotel_settings/crm_exotel_settings.json -#: crm/fcrm/doctype/crm_form_script/crm_form_script.json -#: crm/fcrm/doctype/crm_service_level_agreement/crm_service_level_agreement.json -#: crm/fcrm/doctype/crm_twilio_settings/crm_twilio_settings.json -#: crm/fcrm/doctype/erpnext_crm_settings/erpnext_crm_settings.json -#: crm/fcrm/doctype/helpdesk_crm_settings/helpdesk_crm_settings.json +#. Label of the enabled (Check) field in PageType 'CRM Exotel Settings' +#. Label of the enabled (Check) field in PageType 'CRM Form Script' +#. Label of the enabled (Check) field in PageType 'CRM Service Level Agreement' +#. Label of the enabled (Check) field in PageType 'CRM Twilio Settings' +#. Label of the enabled (Check) field in PageType 'ERPNext CRM Settings' +#. Label of the enabled (Check) field in PageType 'Helpdesk CRM Settings' +#: crm/fcrm/pagetype/crm_exotel_settings/crm_exotel_settings.json +#: crm/fcrm/pagetype/crm_form_script/crm_form_script.json +#: crm/fcrm/pagetype/crm_service_level_agreement/crm_service_level_agreement.json +#: crm/fcrm/pagetype/crm_twilio_settings/crm_twilio_settings.json +#: crm/fcrm/pagetype/erpnext_crm_settings/erpnext_crm_settings.json +#: crm/fcrm/pagetype/helpdesk_crm_settings/helpdesk_crm_settings.json #: frontend/src/components/Settings/AssignmentRules/AssignmentRuleView.vue:32 #: frontend/src/components/Settings/AssignmentRules/AssignmentRulesList.vue:21 #: frontend/src/components/Settings/EmailTemplate/EditEmailTemplate.vue:18 @@ -2313,15 +2313,15 @@ msgstr "" msgid "Enabled" msgstr "Etkin" -#. Label of the end_date (Date) field in DocType 'CRM Service Level Agreement' -#: crm/fcrm/doctype/crm_service_level_agreement/crm_service_level_agreement.json +#. Label of the end_date (Date) field in PageType 'CRM Service Level Agreement' +#: crm/fcrm/pagetype/crm_service_level_agreement/crm_service_level_agreement.json msgid "End Date" msgstr "Bitiş Tarihi" -#. Label of the end_time (Datetime) field in DocType 'CRM Call Log' -#. Label of the end_time (Time) field in DocType 'CRM Service Day' -#: crm/fcrm/doctype/crm_call_log/crm_call_log.json -#: crm/fcrm/doctype/crm_service_day/crm_service_day.json +#. Label of the end_time (Datetime) field in PageType 'CRM Call Log' +#. Label of the end_time (Time) field in PageType 'CRM Service Day' +#: crm/fcrm/pagetype/crm_call_log/crm_call_log.json +#: crm/fcrm/pagetype/crm_service_day/crm_service_day.json #: frontend/src/components/Calendar/CalendarEventPanel.vue:242 #: frontend/src/components/Modals/EventModal.vue:112 msgid "End Time" @@ -2362,15 +2362,15 @@ msgstr "" msgid "Error updating field" msgstr "" -#: crm/fcrm/doctype/erpnext_crm_settings/erpnext_crm_settings.py:279 +#: crm/fcrm/pagetype/erpnext_crm_settings/erpnext_crm_settings.py:279 msgid "Error while creating customer in ERPNext, check error log for more details" msgstr "" -#: crm/fcrm/doctype/erpnext_crm_settings/erpnext_crm_settings.py:191 +#: crm/fcrm/pagetype/erpnext_crm_settings/erpnext_crm_settings.py:191 msgid "Error while creating prospect in ERPNext, check error log for more details" msgstr "" -#: crm/fcrm/doctype/erpnext_crm_settings/erpnext_crm_settings.py:117 +#: crm/fcrm/pagetype/erpnext_crm_settings/erpnext_crm_settings.py:117 msgid "Error while fetching customer in ERPNext, check error log for more details" msgstr "" @@ -2395,16 +2395,16 @@ msgstr "Etkinlikler" msgid "Excel" msgstr "Excel" -#. Label of the exchange_rate (Float) field in DocType 'CRM Deal' -#. Label of the exchange_rate (Float) field in DocType 'CRM Organization' -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_organization/crm_organization.json +#. Label of the exchange_rate (Float) field in PageType 'CRM Deal' +#. Label of the exchange_rate (Float) field in PageType 'CRM Organization' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_organization/crm_organization.json msgid "Exchange Rate" msgstr "Döviz Kuru" -#. Label of the exchange_rate_provider_section (Section Break) field in DocType +#. Label of the exchange_rate_provider_section (Section Break) field in PageType #. 'FCRM Settings' -#: crm/fcrm/doctype/fcrm_settings/fcrm_settings.json +#: crm/fcrm/pagetype/fcrm_settings/fcrm_settings.json msgid "Exchange Rate Provider" msgstr "" @@ -2412,12 +2412,12 @@ msgstr "" msgid "Exchange rate provider" msgstr "" -#. Option for the 'Telephony Medium' (Select) field in DocType 'CRM Call Log' -#. Label of the exotel (Check) field in DocType 'CRM Telephony Agent' -#. Option for the 'Default Medium' (Select) field in DocType 'CRM Telephony +#. Option for the 'Telephony Medium' (Select) field in PageType 'CRM Call Log' +#. Label of the exotel (Check) field in PageType 'CRM Telephony Agent' +#. Option for the 'Default Medium' (Select) field in PageType 'CRM Telephony #. Agent' -#: crm/fcrm/doctype/crm_call_log/crm_call_log.json -#: crm/fcrm/doctype/crm_telephony_agent/crm_telephony_agent.json +#: crm/fcrm/pagetype/crm_call_log/crm_call_log.json +#: crm/fcrm/pagetype/crm_telephony_agent/crm_telephony_agent.json #: frontend/src/components/Layouts/AppSidebar.vue:602 #: frontend/src/components/Settings/TelephonySettings.vue:41 #: frontend/src/components/Settings/TelephonySettings.vue:63 @@ -2428,8 +2428,8 @@ msgstr "" msgid "Exotel Exception" msgstr "" -#. Label of the exotel_number (Data) field in DocType 'CRM Telephony Agent' -#: crm/fcrm/doctype/crm_telephony_agent/crm_telephony_agent.json +#. Label of the exotel_number (Data) field in PageType 'CRM Telephony Agent' +#: crm/fcrm/pagetype/crm_telephony_agent/crm_telephony_agent.json msgid "Exotel Number" msgstr "" @@ -2453,26 +2453,26 @@ msgstr "" msgid "Expand" msgstr "Genişlet" -#. Label of the expected_closure_date (Date) field in DocType 'CRM Deal' -#: crm/fcrm/doctype/crm_deal/crm_deal.json +#. Label of the expected_closure_date (Date) field in PageType 'CRM Deal' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json msgid "Expected Closure Date" msgstr "" -#: crm/fcrm/doctype/crm_deal/crm_deal.py:173 +#: crm/fcrm/pagetype/crm_deal/crm_deal.py:173 msgid "Expected Closure Date is required." msgstr "" -#. Label of the expected_deal_value (Currency) field in DocType 'CRM Deal' -#: crm/fcrm/doctype/crm_deal/crm_deal.json +#. Label of the expected_deal_value (Currency) field in PageType 'CRM Deal' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json msgid "Expected Deal Value" msgstr "" -#: crm/fcrm/doctype/crm_deal/crm_deal.py:171 +#: crm/fcrm/pagetype/crm_deal/crm_deal.py:171 msgid "Expected Deal Value is required." msgstr "" -#. Option for the 'Status' (Select) field in DocType 'CRM Invitation' -#: crm/fcrm/doctype/crm_invitation/crm_invitation.json +#. Option for the 'Status' (Select) field in PageType 'CRM Invitation' +#: crm/fcrm/pagetype/crm_invitation/crm_invitation.json msgid "Expired" msgstr "Günü Geçmiş" @@ -2489,22 +2489,22 @@ msgstr "" msgid "Export Type" msgstr "Dışa Aktarma Türü" -#. Name of a DocType -#: crm/fcrm/doctype/fcrm_note/fcrm_note.json +#. Name of a PageType +#: crm/fcrm/pagetype/fcrm_note/fcrm_note.json msgid "FCRM Note" msgstr "" -#. Name of a DocType -#: crm/fcrm/doctype/fcrm_settings/fcrm_settings.json +#. Name of a PageType +#: crm/fcrm/pagetype/fcrm_settings/fcrm_settings.json msgid "FCRM Settings" msgstr "" -#. Option for the 'Status' (Select) field in DocType 'CRM Call Log' -#. Option for the 'SLA Status' (Select) field in DocType 'CRM Deal' -#. Option for the 'SLA Status' (Select) field in DocType 'CRM Lead' -#: crm/fcrm/doctype/crm_call_log/crm_call_log.json -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_lead/crm_lead.json +#. Option for the 'Status' (Select) field in PageType 'CRM Call Log' +#. Option for the 'SLA Status' (Select) field in PageType 'CRM Deal' +#. Option for the 'SLA Status' (Select) field in PageType 'CRM Lead' +#: crm/fcrm/pagetype/crm_call_log/crm_call_log.json +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_lead/crm_lead.json msgid "Failed" msgstr "Başarısız" @@ -2528,7 +2528,7 @@ msgstr "" msgid "Failed to delete template" msgstr "" -#: crm/fcrm/doctype/fcrm_settings/fcrm_settings.py:205 +#: crm/fcrm/pagetype/fcrm_settings/fcrm_settings.py:205 msgid "Failed to fetch exchange rate from {0} to {1} on {2}. Please check your internet connection or try again later." msgstr "" @@ -2561,8 +2561,8 @@ msgstr "" msgid "Failed to update template" msgstr "" -#. Label of the favicon (Attach) field in DocType 'FCRM Settings' -#: crm/fcrm/doctype/fcrm_settings/fcrm_settings.json +#. Label of the favicon (Attach) field in PageType 'FCRM Settings' +#: crm/fcrm/pagetype/fcrm_settings/fcrm_settings.json #: frontend/src/components/Settings/BrandSettings.vue:87 msgid "Favicon" msgstr "" @@ -2586,23 +2586,23 @@ msgid "File \"{0}\" was skipped because only {1} uploads are allowed" msgstr "" #: frontend/src/components/FilesUploader/FilesUploaderArea.vue:359 -msgid "File \"{0}\" was skipped because only {1} uploads are allowed for DocType \"{2}\"" +msgid "File \"{0}\" was skipped because only {1} uploads are allowed for PageType \"{2}\"" msgstr "" #: frontend/src/components/Filter.vue:6 msgid "Filter" msgstr "Filtre" -#. Label of the filters (Code) field in DocType 'CRM View Settings' -#. Label of the filters_tab (Tab Break) field in DocType 'CRM View Settings' -#: crm/fcrm/doctype/crm_view_settings/crm_view_settings.json +#. Label of the filters (Code) field in PageType 'CRM View Settings' +#. Label of the filters_tab (Tab Break) field in PageType 'CRM View Settings' +#: crm/fcrm/pagetype/crm_view_settings/crm_view_settings.json msgid "Filters" msgstr "Filtreler" -#. Label of the first_name (Data) field in DocType 'CRM Deal' -#. Label of the first_name (Data) field in DocType 'CRM Lead' -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_lead/crm_lead.json +#. Label of the first_name (Data) field in PageType 'CRM Deal' +#. Label of the first_name (Data) field in PageType 'CRM Lead' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_lead/crm_lead.json #: frontend/src/components/ColumnSettings.vue:103 #: frontend/src/components/Filter.vue:57 frontend/src/components/Filter.vue:88 #: frontend/src/components/SortBy.vue:6 frontend/src/components/SortBy.vue:103 @@ -2614,30 +2614,30 @@ msgstr "Adı" msgid "First Name is mandatory" msgstr "" -#. Label of the first_responded_on (Datetime) field in DocType 'CRM Deal' -#. Label of the first_responded_on (Datetime) field in DocType 'CRM Lead' -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_lead/crm_lead.json +#. Label of the first_responded_on (Datetime) field in PageType 'CRM Deal' +#. Label of the first_responded_on (Datetime) field in PageType 'CRM Lead' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_lead/crm_lead.json msgid "First Responded On" msgstr "İlk Yanıt Tarihi" -#. Option for the 'SLA Status' (Select) field in DocType 'CRM Deal' -#. Option for the 'SLA Status' (Select) field in DocType 'CRM Lead' -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_lead/crm_lead.json +#. Option for the 'SLA Status' (Select) field in PageType 'CRM Deal' +#. Option for the 'SLA Status' (Select) field in PageType 'CRM Lead' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_lead/crm_lead.json msgid "First Response Due" msgstr "İlk Müdahale Zamanı" -#. Label of the first_response_time (Duration) field in DocType 'CRM Service +#. Label of the first_response_time (Duration) field in PageType 'CRM Service #. Level Priority' -#: crm/fcrm/doctype/crm_service_level_priority/crm_service_level_priority.json +#: crm/fcrm/pagetype/crm_service_level_priority/crm_service_level_priority.json msgid "First Response TIme" msgstr "" -#. Label of the first_response_time (Duration) field in DocType 'CRM Deal' -#. Label of the first_response_time (Duration) field in DocType 'CRM Lead' -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_lead/crm_lead.json +#. Label of the first_response_time (Duration) field in PageType 'CRM Deal' +#. Label of the first_response_time (Duration) field in PageType 'CRM Lead' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_lead/crm_lead.json msgid "First Response Time" msgstr "İlk Müdahale Süresi" @@ -2670,66 +2670,66 @@ msgstr "" msgid "Forecasting enabled successfully" msgstr "" -#. Option for the 'Apply To' (Select) field in DocType 'CRM Form Script' -#: crm/fcrm/doctype/crm_form_script/crm_form_script.json +#. Option for the 'Apply To' (Select) field in PageType 'CRM Form Script' +#: crm/fcrm/pagetype/crm_form_script/crm_form_script.json msgid "Form" msgstr "Form" -#: crm/fcrm/doctype/erpnext_crm_settings/erpnext_crm_settings.js:19 +#: crm/fcrm/pagetype/erpnext_crm_settings/erpnext_crm_settings.js:19 msgid "Form Script updated successfully" msgstr "" #. Name of a Workspace -#: crm/fcrm/workspace/frappe_crm/frappe_crm.json -msgid "Frappe CRM" +#: crm/fcrm/workspace/jingrow_crm/jingrow_crm.json +msgid "Jingrow CRM" msgstr "" #: frontend/src/components/Layouts/AppSidebar.vue:608 -msgid "Frappe CRM mobile" +msgid "Jingrow CRM mobile" msgstr "" -#. Option for the 'Weekly Off' (Select) field in DocType 'CRM Holiday List' -#. Option for the 'Workday' (Select) field in DocType 'CRM Service Day' -#: crm/fcrm/doctype/crm_holiday_list/crm_holiday_list.json -#: crm/fcrm/doctype/crm_service_day/crm_service_day.json +#. Option for the 'Weekly Off' (Select) field in PageType 'CRM Holiday List' +#. Option for the 'Workday' (Select) field in PageType 'CRM Service Day' +#: crm/fcrm/pagetype/crm_holiday_list/crm_holiday_list.json +#: crm/fcrm/pagetype/crm_service_day/crm_service_day.json msgid "Friday" msgstr "Cuma" -#. Label of the from (Data) field in DocType 'CRM Call Log' -#. Label of the from (Data) field in DocType 'CRM Status Change Log' -#: crm/fcrm/doctype/crm_call_log/crm_call_log.json -#: crm/fcrm/doctype/crm_status_change_log/crm_status_change_log.json +#. Label of the from (Data) field in PageType 'CRM Call Log' +#. Label of the from (Data) field in PageType 'CRM Status Change Log' +#: crm/fcrm/pagetype/crm_call_log/crm_call_log.json +#: crm/fcrm/pagetype/crm_status_change_log/crm_status_change_log.json msgid "From" msgstr "Gönderen" -#. Label of the from_date (Date) field in DocType 'CRM Holiday List' -#. Label of the from_date (Datetime) field in DocType 'CRM Status Change Log' -#: crm/fcrm/doctype/crm_holiday_list/crm_holiday_list.json -#: crm/fcrm/doctype/crm_status_change_log/crm_status_change_log.json +#. Label of the from_date (Date) field in PageType 'CRM Holiday List' +#. Label of the from_date (Datetime) field in PageType 'CRM Status Change Log' +#: crm/fcrm/pagetype/crm_holiday_list/crm_holiday_list.json +#: crm/fcrm/pagetype/crm_status_change_log/crm_status_change_log.json msgid "From Date" msgstr "Başlangıç Tarihi" -#. Label of the from_type (Data) field in DocType 'CRM Status Change Log' -#: crm/fcrm/doctype/crm_status_change_log/crm_status_change_log.json +#. Label of the from_type (Data) field in PageType 'CRM Status Change Log' +#: crm/fcrm/pagetype/crm_status_change_log/crm_status_change_log.json msgid "From Type" msgstr "" -#. Label of the from_user (Link) field in DocType 'CRM Notification' -#: crm/fcrm/doctype/crm_notification/crm_notification.json +#. Label of the from_user (Link) field in PageType 'CRM Notification' +#: crm/fcrm/pagetype/crm_notification/crm_notification.json msgid "From User" msgstr "Kullanıcıdan" -#. Option for the 'SLA Status' (Select) field in DocType 'CRM Deal' -#. Option for the 'SLA Status' (Select) field in DocType 'CRM Lead' -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_lead/crm_lead.json +#. Option for the 'SLA Status' (Select) field in PageType 'CRM Deal' +#. Option for the 'SLA Status' (Select) field in PageType 'CRM Lead' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_lead/crm_lead.json msgid "Fulfilled" msgstr "Karşılandı" -#. Label of the full_name (Data) field in DocType 'CRM Contacts' -#. Label of the lead_name (Data) field in DocType 'CRM Lead' -#: crm/fcrm/doctype/crm_contacts/crm_contacts.json -#: crm/fcrm/doctype/crm_lead/crm_lead.json +#. Label of the full_name (Data) field in PageType 'CRM Contacts' +#. Label of the lead_name (Data) field in PageType 'CRM Lead' +#: crm/fcrm/pagetype/crm_contacts/crm_contacts.json +#: crm/fcrm/pagetype/crm_lead/crm_lead.json msgid "Full Name" msgstr "Tam Adı" @@ -2742,12 +2742,12 @@ msgstr "" msgid "GMT+5:30" msgstr "" -#. Label of the gender (Link) field in DocType 'CRM Contacts' -#. Label of the gender (Link) field in DocType 'CRM Deal' -#. Label of the gender (Link) field in DocType 'CRM Lead' -#: crm/fcrm/doctype/crm_contacts/crm_contacts.json -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_lead/crm_lead.json +#. Label of the gender (Link) field in PageType 'CRM Contacts' +#. Label of the gender (Link) field in PageType 'CRM Deal' +#. Label of the gender (Link) field in PageType 'CRM Lead' +#: crm/fcrm/pagetype/crm_contacts/crm_contacts.json +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_lead/crm_lead.json msgid "Gender" msgstr "Cinsiyeti" @@ -2771,20 +2771,20 @@ msgstr "" msgid "Go to website" msgstr "" -#. Option for the 'Type' (Select) field in DocType 'CRM Fields Layout' -#: crm/fcrm/doctype/crm_fields_layout/crm_fields_layout.json +#. Option for the 'Type' (Select) field in PageType 'CRM Fields Layout' +#: crm/fcrm/pagetype/crm_fields_layout/crm_fields_layout.json msgid "Grid Row" msgstr "" -#. Label of the group_by_tab (Tab Break) field in DocType 'CRM View Settings' -#: crm/fcrm/doctype/crm_view_settings/crm_view_settings.json +#. Label of the group_by_tab (Tab Break) field in PageType 'CRM View Settings' +#: crm/fcrm/pagetype/crm_view_settings/crm_view_settings.json #: frontend/src/components/ViewControls.vue:379 #: frontend/src/components/ViewControls.vue:611 frontend/src/utils/view.js:16 msgid "Group By" msgstr "Grup" -#. Label of the group_by_field (Data) field in DocType 'CRM View Settings' -#: crm/fcrm/doctype/crm_view_settings/crm_view_settings.json +#. Label of the group_by_field (Data) field in PageType 'CRM View Settings' +#: crm/fcrm/pagetype/crm_view_settings/crm_view_settings.json msgid "Group By Field" msgstr "" @@ -2808,28 +2808,28 @@ msgstr "Yardım" msgid "Helpdesk" msgstr "" -#. Name of a DocType -#: crm/fcrm/doctype/helpdesk_crm_settings/helpdesk_crm_settings.json +#. Name of a PageType +#: crm/fcrm/pagetype/helpdesk_crm_settings/helpdesk_crm_settings.json msgid "Helpdesk CRM Settings" msgstr "" -#. Label of the helpdesk_site_apis_section (Section Break) field in DocType +#. Label of the helpdesk_site_apis_section (Section Break) field in PageType #. 'Helpdesk CRM Settings' -#: crm/fcrm/doctype/helpdesk_crm_settings/helpdesk_crm_settings.json +#: crm/fcrm/pagetype/helpdesk_crm_settings/helpdesk_crm_settings.json msgid "Helpdesk Site API's" msgstr "" -#. Label of the helpdesk_site_url (Data) field in DocType 'Helpdesk CRM +#. Label of the helpdesk_site_url (Data) field in PageType 'Helpdesk CRM #. Settings' -#: crm/fcrm/doctype/helpdesk_crm_settings/helpdesk_crm_settings.json +#: crm/fcrm/pagetype/helpdesk_crm_settings/helpdesk_crm_settings.json msgid "Helpdesk Site URL" msgstr "" -#: crm/fcrm/doctype/helpdesk_crm_settings/helpdesk_crm_settings.py:18 +#: crm/fcrm/pagetype/helpdesk_crm_settings/helpdesk_crm_settings.py:18 msgid "Helpdesk is not installed in the current site" msgstr "" -#: crm/fcrm/doctype/helpdesk_crm_settings/helpdesk_crm_settings.py:40 +#: crm/fcrm/pagetype/helpdesk_crm_settings/helpdesk_crm_settings.py:40 msgid "Helpdesk is not integrated with the CRM" msgstr "" @@ -2845,8 +2845,8 @@ msgstr "" msgid "Hi John, \\n\\nCan you please provide more details on this..." msgstr "" -#. Label of the hidden (Check) field in DocType 'CRM Dropdown Item' -#: crm/fcrm/doctype/crm_dropdown_item/crm_dropdown_item.json +#. Label of the hidden (Check) field in PageType 'CRM Dropdown Item' +#: crm/fcrm/pagetype/crm_dropdown_item/crm_dropdown_item.json msgid "Hidden" msgstr "Gizli" @@ -2877,26 +2877,26 @@ msgstr "" msgid "Hide preview" msgstr "" -#. Option for the 'Priority' (Select) field in DocType 'CRM Task' -#: crm/fcrm/doctype/crm_task/crm_task.json +#. Option for the 'Priority' (Select) field in PageType 'CRM Task' +#: crm/fcrm/pagetype/crm_task/crm_task.json msgid "High" msgstr "Yüksek" -#. Label of the holiday_list (Link) field in DocType 'CRM Service Level +#. Label of the holiday_list (Link) field in PageType 'CRM Service Level #. Agreement' -#: crm/fcrm/doctype/crm_service_level_agreement/crm_service_level_agreement.json +#: crm/fcrm/pagetype/crm_service_level_agreement/crm_service_level_agreement.json msgid "Holiday List" msgstr "Tatil Listesi" -#. Label of the holiday_list_name (Data) field in DocType 'CRM Holiday List' -#: crm/fcrm/doctype/crm_holiday_list/crm_holiday_list.json +#. Label of the holiday_list_name (Data) field in PageType 'CRM Holiday List' +#: crm/fcrm/pagetype/crm_holiday_list/crm_holiday_list.json msgid "Holiday List Name" msgstr "Tatil Listesi Adı" -#. Label of the holidays_section (Section Break) field in DocType 'CRM Holiday +#. Label of the holidays_section (Section Break) field in PageType 'CRM Holiday #. List' -#. Label of the holidays (Table) field in DocType 'CRM Holiday List' -#: crm/fcrm/doctype/crm_holiday_list/crm_holiday_list.json +#. Label of the holidays (Table) field in PageType 'CRM Holiday List' +#: crm/fcrm/pagetype/crm_holiday_list/crm_holiday_list.json msgid "Holidays" msgstr "Tatiller" @@ -2914,15 +2914,15 @@ msgstr "" msgid "I understand, add conditions" msgstr "" -#. Label of the id (Data) field in DocType 'CRM Call Log' -#: crm/fcrm/doctype/crm_call_log/crm_call_log.json +#. Label of the id (Data) field in PageType 'CRM Call Log' +#: crm/fcrm/pagetype/crm_call_log/crm_call_log.json msgid "ID" msgstr "ID" -#. Label of the icon (Code) field in DocType 'CRM Dropdown Item' -#. Label of the icon (Data) field in DocType 'CRM View Settings' -#: crm/fcrm/doctype/crm_dropdown_item/crm_dropdown_item.json -#: crm/fcrm/doctype/crm_view_settings/crm_view_settings.json +#. Label of the icon (Code) field in PageType 'CRM Dropdown Item' +#. Label of the icon (Data) field in PageType 'CRM View Settings' +#: crm/fcrm/pagetype/crm_dropdown_item/crm_dropdown_item.json +#: crm/fcrm/pagetype/crm_view_settings/crm_view_settings.json msgid "Icon" msgstr "Simge" @@ -2942,10 +2942,10 @@ msgstr "" msgid "If enabled, records can be created from the incoming emails on this account." msgstr "" -#. Label of the image (Attach Image) field in DocType 'CRM Lead' -#. Label of the image (Attach Image) field in DocType 'CRM Product' -#: crm/fcrm/doctype/crm_lead/crm_lead.json -#: crm/fcrm/doctype/crm_product/crm_product.json +#. Label of the image (Attach Image) field in PageType 'CRM Lead' +#. Label of the image (Attach Image) field in PageType 'CRM Product' +#: crm/fcrm/pagetype/crm_lead/crm_lead.json +#: crm/fcrm/pagetype/crm_product/crm_product.json msgid "Image" msgstr "Resim" @@ -2957,10 +2957,10 @@ msgstr "Resim" msgid "In" msgstr "İçerir" -#. Option for the 'Status' (Select) field in DocType 'CRM Call Log' -#. Option for the 'Status' (Select) field in DocType 'CRM Task' -#: crm/fcrm/doctype/crm_call_log/crm_call_log.json -#: crm/fcrm/doctype/crm_task/crm_task.json +#. Option for the 'Status' (Select) field in PageType 'CRM Call Log' +#. Option for the 'Status' (Select) field in PageType 'CRM Task' +#: crm/fcrm/pagetype/crm_call_log/crm_call_log.json +#: crm/fcrm/pagetype/crm_task/crm_task.json msgid "In Progress" msgstr "İşlemde" @@ -2976,8 +2976,8 @@ msgstr "" msgid "Inbox" msgstr "Gelen Kutusu" -#. Option for the 'Type' (Select) field in DocType 'CRM Call Log' -#: crm/fcrm/doctype/crm_call_log/crm_call_log.json +#. Option for the 'Type' (Select) field in PageType 'CRM Call Log' +#: crm/fcrm/pagetype/crm_call_log/crm_call_log.json msgid "Incoming" msgstr "Gelen" @@ -2985,24 +2985,24 @@ msgstr "Gelen" msgid "Incoming call..." msgstr "" -#. Label of a shortcut in the Frappe CRM Workspace -#: crm/fcrm/workspace/frappe_crm/frappe_crm.json +#. Label of a shortcut in the Jingrow CRM Workspace +#: crm/fcrm/workspace/jingrow_crm/jingrow_crm.json msgid "Industries" msgstr "" -#. Label of the industry (Link) field in DocType 'CRM Deal' -#. Label of the industry (Data) field in DocType 'CRM Industry' -#. Label of the industry (Link) field in DocType 'CRM Lead' -#. Label of the industry (Link) field in DocType 'CRM Organization' -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_industry/crm_industry.json -#: crm/fcrm/doctype/crm_lead/crm_lead.json -#: crm/fcrm/doctype/crm_organization/crm_organization.json +#. Label of the industry (Link) field in PageType 'CRM Deal' +#. Label of the industry (Data) field in PageType 'CRM Industry' +#. Label of the industry (Link) field in PageType 'CRM Lead' +#. Label of the industry (Link) field in PageType 'CRM Organization' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_industry/crm_industry.json +#: crm/fcrm/pagetype/crm_lead/crm_lead.json +#: crm/fcrm/pagetype/crm_organization/crm_organization.json msgid "Industry" msgstr "Endüstri" -#. Option for the 'Status' (Select) field in DocType 'CRM Call Log' -#: crm/fcrm/doctype/crm_call_log/crm_call_log.json +#. Option for the 'Status' (Select) field in PageType 'CRM Call Log' +#: crm/fcrm/pagetype/crm_call_log/crm_call_log.json msgid "Initiated" msgstr "Başlatıldı" @@ -3037,7 +3037,7 @@ msgstr "Entegrasyonlar" msgid "Introduction" msgstr "Tanıtım/Giriş" -#: crm/fcrm/doctype/crm_twilio_settings/crm_twilio_settings.py:33 +#: crm/fcrm/pagetype/crm_twilio_settings/crm_twilio_settings.py:33 msgid "Invalid Account SID or Auth Token." msgstr "" @@ -3054,7 +3054,7 @@ msgstr "" msgid "Invalid chart name" msgstr "" -#: crm/fcrm/doctype/crm_exotel_settings/crm_exotel_settings.py:25 +#: crm/fcrm/pagetype/crm_exotel_settings/crm_exotel_settings.py:25 msgid "Invalid credentials" msgstr "" @@ -3103,8 +3103,8 @@ msgstr "" msgid "Invite your team" msgstr "" -#. Label of the invited_by (Link) field in DocType 'CRM Invitation' -#: crm/fcrm/doctype/crm_invitation/crm_invitation.json +#. Label of the invited_by (Link) field in PageType 'CRM Invitation' +#: crm/fcrm/pagetype/crm_invitation/crm_invitation.json msgid "Invited By" msgstr "" @@ -3118,59 +3118,59 @@ msgstr "" msgid "Is" msgstr "Değeri" -#. Label of the is_default (Check) field in DocType 'CRM View Settings' -#: crm/fcrm/doctype/crm_view_settings/crm_view_settings.json +#. Label of the is_default (Check) field in PageType 'CRM View Settings' +#: crm/fcrm/pagetype/crm_view_settings/crm_view_settings.json msgid "Is Default" msgstr "Varsayılan" -#. Label of the is_erpnext_in_different_site (Check) field in DocType 'ERPNext +#. Label of the is_erpnext_in_different_site (Check) field in PageType 'ERPNext #. CRM Settings' -#: crm/fcrm/doctype/erpnext_crm_settings/erpnext_crm_settings.json +#: crm/fcrm/pagetype/erpnext_crm_settings/erpnext_crm_settings.json msgid "Is ERPNext installed on a different site?" msgstr "" -#. Label of the is_group (Check) field in DocType 'CRM Territory' -#: crm/fcrm/doctype/crm_territory/crm_territory.json +#. Label of the is_group (Check) field in PageType 'CRM Territory' +#: crm/fcrm/pagetype/crm_territory/crm_territory.json msgid "Is Group" msgstr "Grup" -#. Label of the is_helpdesk_in_different_site (Check) field in DocType +#. Label of the is_helpdesk_in_different_site (Check) field in PageType #. 'Helpdesk CRM Settings' -#: crm/fcrm/doctype/helpdesk_crm_settings/helpdesk_crm_settings.json +#: crm/fcrm/pagetype/helpdesk_crm_settings/helpdesk_crm_settings.json msgid "Is Helpdesk installed on a different site?" msgstr "" -#. Label of the is_primary (Check) field in DocType 'CRM Contacts' -#. Label of the is_primary (Check) field in DocType 'CRM Telephony Phone' -#: crm/fcrm/doctype/crm_contacts/crm_contacts.json -#: crm/fcrm/doctype/crm_telephony_phone/crm_telephony_phone.json +#. Label of the is_primary (Check) field in PageType 'CRM Contacts' +#. Label of the is_primary (Check) field in PageType 'CRM Telephony Phone' +#: crm/fcrm/pagetype/crm_contacts/crm_contacts.json +#: crm/fcrm/pagetype/crm_telephony_phone/crm_telephony_phone.json msgid "Is Primary" msgstr "Birincil" -#. Label of the is_standard (Check) field in DocType 'CRM Dropdown Item' -#. Label of the is_standard (Check) field in DocType 'CRM Form Script' -#. Label of the is_standard (Check) field in DocType 'CRM View Settings' -#: crm/fcrm/doctype/crm_dropdown_item/crm_dropdown_item.json -#: crm/fcrm/doctype/crm_form_script/crm_form_script.json -#: crm/fcrm/doctype/crm_view_settings/crm_view_settings.json +#. Label of the is_standard (Check) field in PageType 'CRM Dropdown Item' +#. Label of the is_standard (Check) field in PageType 'CRM Form Script' +#. Label of the is_standard (Check) field in PageType 'CRM View Settings' +#: crm/fcrm/pagetype/crm_dropdown_item/crm_dropdown_item.json +#: crm/fcrm/pagetype/crm_form_script/crm_form_script.json +#: crm/fcrm/pagetype/crm_view_settings/crm_view_settings.json msgid "Is Standard" msgstr "Standart" -#. Description of the 'Enable Forecasting' (Check) field in DocType 'FCRM +#. Description of the 'Enable Forecasting' (Check) field in PageType 'FCRM #. Settings' -#: crm/fcrm/doctype/fcrm_settings/fcrm_settings.json +#: crm/fcrm/pagetype/fcrm_settings/fcrm_settings.json msgid "It will make deal's \"Expected Closure Date\" & \"Expected Deal Value\" mandatory to get accurate forecasting insights" msgstr "" -#. Label of the json (JSON) field in DocType 'CRM Global Settings' -#: crm/fcrm/doctype/crm_global_settings/crm_global_settings.json +#. Label of the json (JSON) field in PageType 'CRM Global Settings' +#: crm/fcrm/pagetype/crm_global_settings/crm_global_settings.json msgid "JSON" msgstr "JSON" -#. Label of the job_title (Data) field in DocType 'CRM Deal' -#. Label of the job_title (Data) field in DocType 'CRM Lead' -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_lead/crm_lead.json +#. Label of the job_title (Data) field in PageType 'CRM Deal' +#. Label of the job_title (Data) field in PageType 'CRM Lead' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_lead/crm_lead.json msgid "Job Title" msgstr "İş İlanı Başlığı" @@ -3182,20 +3182,20 @@ msgstr "İş İlanı Başlığı" msgid "John Doe" msgstr "" -#. Label of the kanban_tab (Tab Break) field in DocType 'CRM View Settings' -#: crm/fcrm/doctype/crm_view_settings/crm_view_settings.json +#. Label of the kanban_tab (Tab Break) field in PageType 'CRM View Settings' +#: crm/fcrm/pagetype/crm_view_settings/crm_view_settings.json #: frontend/src/components/ViewControls.vue:384 #: frontend/src/components/ViewControls.vue:600 frontend/src/utils/view.js:20 msgid "Kanban" msgstr "Kanban" -#. Label of the kanban_columns (Code) field in DocType 'CRM View Settings' -#: crm/fcrm/doctype/crm_view_settings/crm_view_settings.json +#. Label of the kanban_columns (Code) field in PageType 'CRM View Settings' +#: crm/fcrm/pagetype/crm_view_settings/crm_view_settings.json msgid "Kanban Columns" msgstr "" -#. Label of the kanban_fields (Code) field in DocType 'CRM View Settings' -#: crm/fcrm/doctype/crm_view_settings/crm_view_settings.json +#. Label of the kanban_fields (Code) field in PageType 'CRM View Settings' +#: crm/fcrm/pagetype/crm_view_settings/crm_view_settings.json msgid "Kanban Fields" msgstr "" @@ -3204,15 +3204,15 @@ msgstr "" msgid "Kanban Settings" msgstr "Kanban Ayarları" -#. Label of the key (Data) field in DocType 'CRM Invitation' -#: crm/fcrm/doctype/crm_invitation/crm_invitation.json +#. Label of the key (Data) field in PageType 'CRM Invitation' +#: crm/fcrm/pagetype/crm_invitation/crm_invitation.json msgid "Key" msgstr "Anahtar" -#. Label of the label (Data) field in DocType 'CRM Dropdown Item' -#. Label of the label (Data) field in DocType 'CRM View Settings' -#: crm/fcrm/doctype/crm_dropdown_item/crm_dropdown_item.json -#: crm/fcrm/doctype/crm_view_settings/crm_view_settings.json +#. Label of the label (Data) field in PageType 'CRM Dropdown Item' +#. Label of the label (Data) field in PageType 'CRM View Settings' +#: crm/fcrm/pagetype/crm_dropdown_item/crm_dropdown_item.json +#: crm/fcrm/pagetype/crm_view_settings/crm_view_settings.json #: frontend/src/components/ColumnSettings.vue:100 msgid "Label" msgstr "Etiket" @@ -3229,10 +3229,10 @@ msgstr "" msgid "Last Month" msgstr "Geçen Ay" -#. Label of the last_name (Data) field in DocType 'CRM Deal' -#. Label of the last_name (Data) field in DocType 'CRM Lead' -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_lead/crm_lead.json +#. Label of the last_name (Data) field in PageType 'CRM Deal' +#. Label of the last_name (Data) field in PageType 'CRM Lead' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_lead/crm_lead.json msgid "Last Name" msgstr "Soyadı" @@ -3240,9 +3240,9 @@ msgstr "Soyadı" msgid "Last Quarter" msgstr "Son Çeyrek" -#. Label of the last_status_change_log (Link) field in DocType 'CRM Status +#. Label of the last_status_change_log (Link) field in PageType 'CRM Status #. Change Log' -#: crm/fcrm/doctype/crm_status_change_log/crm_status_change_log.json +#: crm/fcrm/pagetype/crm_status_change_log/crm_status_change_log.json msgid "Last Status Change Log" msgstr "" @@ -3270,15 +3270,15 @@ msgstr "" msgid "Last user assigned by this rule" msgstr "" -#. Label of the layout (Code) field in DocType 'CRM Dashboard' -#. Label of the layout (Code) field in DocType 'CRM Fields Layout' -#: crm/fcrm/doctype/crm_dashboard/crm_dashboard.json -#: crm/fcrm/doctype/crm_fields_layout/crm_fields_layout.json +#. Label of the layout (Code) field in PageType 'CRM Dashboard' +#. Label of the layout (Code) field in PageType 'CRM Fields Layout' +#: crm/fcrm/pagetype/crm_dashboard/crm_dashboard.json +#: crm/fcrm/pagetype/crm_fields_layout/crm_fields_layout.json msgid "Layout" msgstr "" -#. Label of the lead (Link) field in DocType 'CRM Deal' -#: crm/fcrm/doctype/crm_deal/crm_deal.json +#. Label of the lead (Link) field in PageType 'CRM Deal' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json #: frontend/src/components/Calendar/CalendarEventPanel.vue:263 #: frontend/src/components/Calendar/CalendarEventPanel.vue:288 #: frontend/src/components/Layouts/AppSidebar.vue:550 @@ -3291,32 +3291,32 @@ msgstr "" msgid "Lead" msgstr "Potansiyel Müşteri" -#. Label of the lead_details_tab (Tab Break) field in DocType 'CRM Deal' -#: crm/fcrm/doctype/crm_deal/crm_deal.json +#. Label of the lead_details_tab (Tab Break) field in PageType 'CRM Deal' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json msgid "Lead Details" msgstr "Potansiyel Müşteri Detayları" -#. Label of the lead_name (Data) field in DocType 'CRM Deal' -#: crm/fcrm/doctype/crm_deal/crm_deal.json +#. Label of the lead_name (Data) field in PageType 'CRM Deal' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json msgid "Lead Name" msgstr "Müşteri Adayı Adı" -#. Label of the lead_owner (Link) field in DocType 'CRM Lead' -#: crm/fcrm/doctype/crm_lead/crm_lead.json +#. Label of the lead_owner (Link) field in PageType 'CRM Lead' +#: crm/fcrm/pagetype/crm_lead/crm_lead.json msgid "Lead Owner" msgstr "Sorumlu Kişi" -#: crm/fcrm/doctype/crm_lead/crm_lead.py:73 +#: crm/fcrm/pagetype/crm_lead/crm_lead.py:73 msgid "Lead Owner cannot be same as the Lead Email Address" msgstr "Potansiyel Müşteri Sahibi, Potansiyel Müşteri E-posta Adresi ile aynı olamaz" -#. Label of a shortcut in the Frappe CRM Workspace -#: crm/fcrm/workspace/frappe_crm/frappe_crm.json +#. Label of a shortcut in the Jingrow CRM Workspace +#: crm/fcrm/workspace/jingrow_crm/jingrow_crm.json msgid "Lead Sources" msgstr "" -#. Label of a shortcut in the Frappe CRM Workspace -#: crm/fcrm/workspace/frappe_crm/frappe_crm.json +#. Label of a shortcut in the Jingrow CRM Workspace +#: crm/fcrm/workspace/jingrow_crm/jingrow_crm.json msgid "Lead Statuses" msgstr "" @@ -3328,8 +3328,8 @@ msgstr "" msgid "Lead to deal conversion pipeline" msgstr "" -#. Label of a shortcut in the Frappe CRM Workspace -#: crm/fcrm/workspace/frappe_crm/frappe_crm.json +#. Label of a shortcut in the Jingrow CRM Workspace +#: crm/fcrm/workspace/jingrow_crm/jingrow_crm.json #: frontend/src/pages/InvalidPage.vue:9 frontend/src/pages/Lead.vue:340 #: frontend/src/pages/MobileLead.vue:291 msgid "Leads" @@ -3345,8 +3345,8 @@ msgstr "" msgid "Learn about conditions" msgstr "" -#. Label of the lft (Int) field in DocType 'CRM Territory' -#: crm/fcrm/doctype/crm_territory/crm_territory.json +#. Label of the lft (Int) field in PageType 'CRM Territory' +#: crm/fcrm/pagetype/crm_territory/crm_territory.json msgid "Left" msgstr "Ayrıldı" @@ -3367,15 +3367,15 @@ msgstr "Benzer" msgid "Link" msgstr "Bağlantı" -#. Label of the links (Table) field in DocType 'CRM Call Log' -#: crm/fcrm/doctype/crm_call_log/crm_call_log.json +#. Label of the links (Table) field in PageType 'CRM Call Log' +#: crm/fcrm/pagetype/crm_call_log/crm_call_log.json msgid "Links" msgstr "Bağlantılar" -#. Option for the 'Apply To' (Select) field in DocType 'CRM Form Script' -#. Label of the list_tab (Tab Break) field in DocType 'CRM View Settings' -#: crm/fcrm/doctype/crm_form_script/crm_form_script.json -#: crm/fcrm/doctype/crm_view_settings/crm_view_settings.json +#. Option for the 'Apply To' (Select) field in PageType 'CRM Form Script' +#. Label of the list_tab (Tab Break) field in PageType 'CRM View Settings' +#: crm/fcrm/pagetype/crm_form_script/crm_form_script.json +#: crm/fcrm/pagetype/crm_view_settings/crm_view_settings.json #: frontend/src/components/ViewControls.vue:374 #: frontend/src/components/ViewControls.vue:589 frontend/src/utils/view.js:12 msgid "List" @@ -3385,9 +3385,9 @@ msgstr "Liste" msgid "Listen" msgstr "" -#. Label of the load_default_columns (Check) field in DocType 'CRM View +#. Label of the load_default_columns (Check) field in PageType 'CRM View #. Settings' -#: crm/fcrm/doctype/crm_view_settings/crm_view_settings.json +#: crm/fcrm/pagetype/crm_view_settings/crm_view_settings.json msgid "Load Default Columns" msgstr "" @@ -3403,10 +3403,10 @@ msgstr "Daha Fazla Yükle" msgid "Loading..." msgstr "Yükleniyor..." -#. Label of the log_tab (Tab Break) field in DocType 'CRM Deal' -#. Label of the log_tab (Tab Break) field in DocType 'CRM Lead' -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_lead/crm_lead.json +#. Label of the log_tab (Tab Break) field in PageType 'CRM Deal' +#. Label of the log_tab (Tab Break) field in PageType 'CRM Lead' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_lead/crm_lead.json msgid "Log" msgstr "Kayıt" @@ -3417,28 +3417,28 @@ msgid "Log a Call" msgstr "" #: frontend/src/composables/frappecloud.js:23 -msgid "Login to Frappe Cloud?" -msgstr "Frappe Cloud'a Giriş Yapın?" +msgid "Login to Jingrow Cloud?" +msgstr "Jingrow Cloud'a Giriş Yapın?" -#. Label of the brand_logo (Attach) field in DocType 'FCRM Settings' -#: crm/fcrm/doctype/fcrm_settings/fcrm_settings.json +#. Label of the brand_logo (Attach) field in PageType 'FCRM Settings' +#: crm/fcrm/pagetype/fcrm_settings/fcrm_settings.json msgid "Logo" msgstr "Logo" -#. Option for the 'Type' (Select) field in DocType 'CRM Deal Status' -#: crm/fcrm/doctype/crm_deal_status/crm_deal_status.json +#. Option for the 'Type' (Select) field in PageType 'CRM Deal Status' +#: crm/fcrm/pagetype/crm_deal_status/crm_deal_status.json msgid "Lost" msgstr "Kayıp" -#. Label of the lost_notes (Text) field in DocType 'CRM Deal' -#: crm/fcrm/doctype/crm_deal/crm_deal.json +#. Label of the lost_notes (Text) field in PageType 'CRM Deal' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json msgid "Lost Notes" msgstr "" -#. Label of the lost_reason (Link) field in DocType 'CRM Deal' -#. Label of the lost_reason (Data) field in DocType 'CRM Lost Reason' -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_lost_reason/crm_lost_reason.json +#. Label of the lost_reason (Link) field in PageType 'CRM Deal' +#. Label of the lost_reason (Data) field in PageType 'CRM Lost Reason' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_lost_reason/crm_lost_reason.json msgid "Lost Reason" msgstr "Kaybedilme Nedeni" @@ -3464,8 +3464,8 @@ msgstr "" msgid "Lost reason is required" msgstr "" -#. Option for the 'Priority' (Select) field in DocType 'CRM Task' -#: crm/fcrm/doctype/crm_task/crm_task.json +#. Option for the 'Priority' (Select) field in PageType 'CRM Task' +#: crm/fcrm/pagetype/crm_task/crm_task.json msgid "Low" msgstr "Düşük" @@ -3542,8 +3542,8 @@ msgstr "Müdür" msgid "Mandatory field error: {0}" msgstr "" -#. Option for the 'Telephony Medium' (Select) field in DocType 'CRM Call Log' -#: crm/fcrm/doctype/crm_call_log/crm_call_log.json +#. Option for the 'Telephony Medium' (Select) field in PageType 'CRM Call Log' +#: crm/fcrm/pagetype/crm_call_log/crm_call_log.json msgid "Manual" msgstr "Elle" @@ -3562,25 +3562,25 @@ msgstr "Ana Veriler" msgid "May 1, 2025" msgstr "" -#. Label of the medium (Data) field in DocType 'CRM Call Log' -#. Option for the 'Priority' (Select) field in DocType 'CRM Task' -#: crm/fcrm/doctype/crm_call_log/crm_call_log.json -#: crm/fcrm/doctype/crm_task/crm_task.json +#. Label of the medium (Data) field in PageType 'CRM Call Log' +#. Option for the 'Priority' (Select) field in PageType 'CRM Task' +#: crm/fcrm/pagetype/crm_call_log/crm_call_log.json +#: crm/fcrm/pagetype/crm_task/crm_task.json msgid "Medium" msgstr "Orta" -#. Option for the 'Type' (Select) field in DocType 'CRM Notification' -#: crm/fcrm/doctype/crm_notification/crm_notification.json +#. Option for the 'Type' (Select) field in PageType 'CRM Notification' +#: crm/fcrm/pagetype/crm_notification/crm_notification.json msgid "Mention" msgstr "Bahsetme" -#. Label of the message (HTML Editor) field in DocType 'CRM Notification' -#: crm/fcrm/doctype/crm_notification/crm_notification.json +#. Label of the message (HTML Editor) field in PageType 'CRM Notification' +#: crm/fcrm/pagetype/crm_notification/crm_notification.json msgid "Message" msgstr "Mesaj" -#. Label of the middle_name (Data) field in DocType 'CRM Lead' -#: crm/fcrm/doctype/crm_lead/crm_lead.json +#. Label of the middle_name (Data) field in PageType 'CRM Lead' +#: crm/fcrm/pagetype/crm_lead/crm_lead.json msgid "Middle Name" msgstr "İkinci Adı" @@ -3588,10 +3588,10 @@ msgstr "İkinci Adı" msgid "Minimize" msgstr "" -#. Label of the mobile_no (Data) field in DocType 'CRM Contacts' -#. Label of the mobile_no (Data) field in DocType 'CRM Lead' -#: crm/fcrm/doctype/crm_contacts/crm_contacts.json -#: crm/fcrm/doctype/crm_lead/crm_lead.json +#. Label of the mobile_no (Data) field in PageType 'CRM Contacts' +#. Label of the mobile_no (Data) field in PageType 'CRM Lead' +#: crm/fcrm/pagetype/crm_contacts/crm_contacts.json +#: crm/fcrm/pagetype/crm_lead/crm_lead.json msgid "Mobile No" msgstr "Cep No" @@ -3600,8 +3600,8 @@ msgstr "Cep No" msgid "Mobile No should be a number" msgstr "" -#. Label of the mobile_no (Data) field in DocType 'CRM Telephony Agent' -#: crm/fcrm/doctype/crm_telephony_agent/crm_telephony_agent.json +#. Label of the mobile_no (Data) field in PageType 'CRM Telephony Agent' +#: crm/fcrm/pagetype/crm_telephony_agent/crm_telephony_agent.json msgid "Mobile No." msgstr "Cep No." @@ -3623,10 +3623,10 @@ msgstr "" msgid "Mobile no" msgstr "" -#. Option for the 'Weekly Off' (Select) field in DocType 'CRM Holiday List' -#. Option for the 'Workday' (Select) field in DocType 'CRM Service Day' -#: crm/fcrm/doctype/crm_holiday_list/crm_holiday_list.json -#: crm/fcrm/doctype/crm_service_day/crm_service_day.json +#. Option for the 'Weekly Off' (Select) field in PageType 'CRM Holiday List' +#. Option for the 'Workday' (Select) field in PageType 'CRM Service Day' +#: crm/fcrm/pagetype/crm_holiday_list/crm_holiday_list.json +#: crm/fcrm/pagetype/crm_service_day/crm_service_day.json msgid "Monday" msgstr "Pazartesi" @@ -3658,12 +3658,12 @@ msgstr "" msgid "My Open Deals" msgstr "" -#. Label of the title (Data) field in DocType 'CRM Dashboard' -#. Label of the name1 (Data) field in DocType 'CRM Dropdown Item' -#. Label of the brand_name (Data) field in DocType 'FCRM Settings' -#: crm/fcrm/doctype/crm_dashboard/crm_dashboard.json -#: crm/fcrm/doctype/crm_dropdown_item/crm_dropdown_item.json -#: crm/fcrm/doctype/fcrm_settings/fcrm_settings.json +#. Label of the title (Data) field in PageType 'CRM Dashboard' +#. Label of the name1 (Data) field in PageType 'CRM Dropdown Item' +#. Label of the brand_name (Data) field in PageType 'FCRM Settings' +#: crm/fcrm/pagetype/crm_dashboard/crm_dashboard.json +#: crm/fcrm/pagetype/crm_dropdown_item/crm_dropdown_item.json +#: crm/fcrm/pagetype/fcrm_settings/fcrm_settings.json #: frontend/src/components/Settings/AssignmentRules/AssignmentRuleView.vue:51 #: frontend/src/components/Settings/AssignmentRules/AssignmentRuleView.vue:52 #: frontend/src/components/Settings/EmailTemplate/EditEmailTemplate.vue:39 @@ -3680,10 +3680,10 @@ msgstr "Adı" msgid "Name is required" msgstr "" -#. Label of the naming_series (Select) field in DocType 'CRM Deal' -#. Label of the naming_series (Select) field in DocType 'CRM Product' -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_product/crm_product.json +#. Label of the naming_series (Select) field in PageType 'CRM Deal' +#. Label of the naming_series (Select) field in PageType 'CRM Product' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_product/crm_product.json msgid "Naming Series" msgstr "Adlandırma Serisi" @@ -3691,15 +3691,15 @@ msgstr "Adlandırma Serisi" msgid "Nested conditions" msgstr "" -#. Label of the net_amount (Currency) field in DocType 'CRM Products' -#: crm/fcrm/doctype/crm_products/crm_products.json +#. Label of the net_amount (Currency) field in PageType 'CRM Products' +#: crm/fcrm/pagetype/crm_products/crm_products.json msgid "Net Amount" msgstr "Net Tutar" -#. Label of the net_total (Currency) field in DocType 'CRM Deal' -#. Label of the net_total (Currency) field in DocType 'CRM Lead' -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_lead/crm_lead.json +#. Label of the net_total (Currency) field in PageType 'CRM Deal' +#. Label of the net_total (Currency) field in PageType 'CRM Lead' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_lead/crm_lead.json msgid "Net Total" msgstr "Net Toplam" @@ -3814,8 +3814,8 @@ msgstr "" msgid "Next Quarter" msgstr "" -#. Label of the next_step (Data) field in DocType 'CRM Deal' -#: crm/fcrm/doctype/crm_deal/crm_deal.json +#. Label of the next_step (Data) field in PageType 'CRM Deal' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json msgid "Next Step" msgstr "" @@ -3831,8 +3831,8 @@ msgstr "" msgid "No" msgstr "Hayır" -#. Option for the 'Status' (Select) field in DocType 'CRM Call Log' -#: crm/fcrm/doctype/crm_call_log/crm_call_log.json +#. Option for the 'Status' (Select) field in PageType 'CRM Call Log' +#: crm/fcrm/pagetype/crm_call_log/crm_call_log.json msgid "No Answer" msgstr "Cevap Yok" @@ -3930,12 +3930,12 @@ msgstr "" msgid "No {0} Found" msgstr "{0} Bulunamadı" -#. Label of the no_of_employees (Select) field in DocType 'CRM Deal' -#. Label of the no_of_employees (Select) field in DocType 'CRM Lead' -#. Label of the no_of_employees (Select) field in DocType 'CRM Organization' -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_lead/crm_lead.json -#: crm/fcrm/doctype/crm_organization/crm_organization.json +#. Label of the no_of_employees (Select) field in PageType 'CRM Deal' +#. Label of the no_of_employees (Select) field in PageType 'CRM Lead' +#. Label of the no_of_employees (Select) field in PageType 'CRM Organization' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_lead/crm_lead.json +#: crm/fcrm/pagetype/crm_organization/crm_organization.json msgid "No. of Employees" msgstr "Personel Sayısı" @@ -3981,24 +3981,24 @@ msgstr "Benzer Değil" msgid "Not Saved" msgstr "Kaydedilmedi" -#: crm/fcrm/doctype/crm_deal/crm_deal.py:272 +#: crm/fcrm/pagetype/crm_deal/crm_deal.py:272 msgid "Not allowed to add contact to Deal" msgstr "" -#: crm/fcrm/doctype/crm_lead/crm_lead.py:408 +#: crm/fcrm/pagetype/crm_lead/crm_lead.py:408 msgid "Not allowed to convert Lead to Deal" msgstr "" -#: crm/fcrm/doctype/crm_deal/crm_deal.py:283 +#: crm/fcrm/pagetype/crm_deal/crm_deal.py:283 msgid "Not allowed to remove contact from Deal" msgstr "" -#: crm/fcrm/doctype/crm_deal/crm_deal.py:294 +#: crm/fcrm/pagetype/crm_deal/crm_deal.py:294 msgid "Not allowed to set primary contact for Deal" msgstr "" -#. Label of the note (Link) field in DocType 'CRM Call Log' -#: crm/fcrm/doctype/crm_call_log/crm_call_log.json +#. Label of the note (Link) field in PageType 'CRM Call Log' +#: crm/fcrm/pagetype/crm_call_log/crm_call_log.json #: frontend/src/components/Layouts/AppSidebar.vue:554 msgid "Note" msgstr "Not" @@ -4017,21 +4017,21 @@ msgstr "" msgid "Notification" msgstr "Bildirim" -#. Label of the notification_text (Text) field in DocType 'CRM Notification' -#: crm/fcrm/doctype/crm_notification/crm_notification.json +#. Label of the notification_text (Text) field in PageType 'CRM Notification' +#: crm/fcrm/pagetype/crm_notification/crm_notification.json msgid "Notification Text" msgstr "" -#. Label of the notification_type_doc (Dynamic Link) field in DocType 'CRM +#. Label of the notification_type_pg (Dynamic Link) field in PageType 'CRM #. Notification' -#: crm/fcrm/doctype/crm_notification/crm_notification.json -msgid "Notification Type Doc" +#: crm/fcrm/pagetype/crm_notification/crm_notification.json +msgid "Notification Type Pg" msgstr "" -#. Label of the notification_type_doctype (Link) field in DocType 'CRM +#. Label of the notification_type_pagetype (Link) field in PageType 'CRM #. Notification' -#: crm/fcrm/doctype/crm_notification/crm_notification.json -msgid "Notification Type Doctype" +#: crm/fcrm/pagetype/crm_notification/crm_notification.json +msgid "Notification Type Pagetype" msgstr "" #: frontend/src/components/Layouts/AppSidebar.vue:13 @@ -4041,8 +4041,8 @@ msgstr "" msgid "Notifications" msgstr "Bildirimler" -#. Label of the number (Data) field in DocType 'CRM Telephony Phone' -#: crm/fcrm/doctype/crm_telephony_phone/crm_telephony_phone.json +#. Label of the number (Data) field in PageType 'CRM Telephony Phone' +#: crm/fcrm/pagetype/crm_telephony_phone/crm_telephony_phone.json msgid "Number" msgstr "Numara" @@ -4064,18 +4064,18 @@ msgstr "" msgid "Old Condition" msgstr "" -#. Label of the old_parent (Link) field in DocType 'CRM Territory' -#: crm/fcrm/doctype/crm_territory/crm_territory.json +#. Label of the old_parent (Link) field in PageType 'CRM Territory' +#: crm/fcrm/pagetype/crm_territory/crm_territory.json msgid "Old Parent" msgstr "Eski Üst Öğe" -#. Option for the 'Type' (Select) field in DocType 'CRM Deal Status' -#: crm/fcrm/doctype/crm_deal_status/crm_deal_status.json +#. Option for the 'Type' (Select) field in PageType 'CRM Deal Status' +#: crm/fcrm/pagetype/crm_deal_status/crm_deal_status.json msgid "On Hold" msgstr "Beklemede" -#. Option for the 'Type' (Select) field in DocType 'CRM Deal Status' -#: crm/fcrm/doctype/crm_deal_status/crm_deal_status.json +#. Option for the 'Type' (Select) field in PageType 'CRM Deal Status' +#: crm/fcrm/pagetype/crm_deal_status/crm_deal_status.json msgid "Ongoing" msgstr "" @@ -4088,13 +4088,13 @@ msgstr "" msgid "Only image files are allowed" msgstr "" -#: crm/fcrm/doctype/crm_deal/crm_deal.py:60 -#: crm/fcrm/doctype/crm_telephony_agent/crm_telephony_agent.py:23 +#: crm/fcrm/pagetype/crm_deal/crm_deal.py:60 +#: crm/fcrm/pagetype/crm_telephony_agent/crm_telephony_agent.py:23 msgid "Only one {0} can be set as primary." msgstr "Sadece bir {0} birincil olarak ayarlanabilir." -#. Option for the 'Type' (Select) field in DocType 'CRM Deal Status' -#: crm/fcrm/doctype/crm_deal_status/crm_deal_status.json +#. Option for the 'Type' (Select) field in PageType 'CRM Deal Status' +#: crm/fcrm/pagetype/crm_deal_status/crm_deal_status.json msgid "Open" msgstr "Açık" @@ -4108,13 +4108,13 @@ msgstr "" msgid "Open Lead" msgstr "" -#: crm/fcrm/doctype/crm_deal/crm_deal.js:6 -#: crm/fcrm/doctype/crm_lead/crm_lead.js:6 +#: crm/fcrm/pagetype/crm_deal/crm_deal.js:6 +#: crm/fcrm/pagetype/crm_lead/crm_lead.js:6 msgid "Open in Portal" msgstr "" -#. Label of the open_in_new_window (Check) field in DocType 'CRM Dropdown Item' -#: crm/fcrm/doctype/crm_dropdown_item/crm_dropdown_item.json +#. Label of the open_in_new_window (Check) field in PageType 'CRM Dropdown Item' +#: crm/fcrm/pagetype/crm_dropdown_item/crm_dropdown_item.json msgid "Open in new window" msgstr "" @@ -4136,17 +4136,17 @@ msgstr "Şeçenekler" msgid "Or create leads manually" msgstr "" -#. Label of the order_by_tab (Tab Break) field in DocType 'CRM View Settings' -#. Label of the order_by (Code) field in DocType 'CRM View Settings' -#: crm/fcrm/doctype/crm_view_settings/crm_view_settings.json +#. Label of the order_by_tab (Tab Break) field in PageType 'CRM View Settings' +#. Label of the order_by (Code) field in PageType 'CRM View Settings' +#: crm/fcrm/pagetype/crm_view_settings/crm_view_settings.json msgid "Order By" msgstr "Sipariş Veren" -#. Label of the organization (Link) field in DocType 'CRM Deal' -#. Label of the organization_tab (Tab Break) field in DocType 'CRM Deal' -#. Label of the organization (Data) field in DocType 'CRM Lead' -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_lead/crm_lead.json +#. Label of the organization (Link) field in PageType 'CRM Deal' +#. Label of the organization_tab (Tab Break) field in PageType 'CRM Deal' +#. Label of the organization (Data) field in PageType 'CRM Lead' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_lead/crm_lead.json #: frontend/src/components/Layouts/AppSidebar.vue:553 #: frontend/src/components/Modals/ConvertToDealModal.vue:25 #: frontend/src/pages/Contact.vue:494 frontend/src/pages/MobileContact.vue:502 @@ -4158,22 +4158,22 @@ msgstr "Sipariş Veren" msgid "Organization" msgstr "Organizasyon" -#. Label of the organization_details_section (Section Break) field in DocType +#. Label of the organization_details_section (Section Break) field in PageType #. 'CRM Deal' -#: crm/fcrm/doctype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_deal/crm_deal.json msgid "Organization Details" msgstr "" -#. Label of the organization_logo (Attach Image) field in DocType 'CRM +#. Label of the organization_logo (Attach Image) field in PageType 'CRM #. Organization' -#: crm/fcrm/doctype/crm_organization/crm_organization.json +#: crm/fcrm/pagetype/crm_organization/crm_organization.json msgid "Organization Logo" msgstr "" -#. Label of the organization_name (Data) field in DocType 'CRM Deal' -#. Label of the organization_name (Data) field in DocType 'CRM Organization' -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_organization/crm_organization.json +#. Label of the organization_name (Data) field in PageType 'CRM Deal' +#. Label of the organization_name (Data) field in PageType 'CRM Organization' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_organization/crm_organization.json msgid "Organization Name" msgstr "Şirket Adı" @@ -4181,8 +4181,8 @@ msgstr "Şirket Adı" msgid "Organization logo" msgstr "" -#. Label of a shortcut in the Frappe CRM Workspace -#: crm/fcrm/workspace/frappe_crm/frappe_crm.json +#. Label of a shortcut in the Jingrow CRM Workspace +#: crm/fcrm/workspace/jingrow_crm/jingrow_crm.json #: frontend/src/pages/MobileOrganization.vue:205 #: frontend/src/pages/Organization.vue:234 msgid "Organizations" @@ -4196,8 +4196,8 @@ msgstr "" msgid "Other features" msgstr "" -#. Label of the organization_tab (Tab Break) field in DocType 'CRM Lead' -#: crm/fcrm/doctype/crm_lead/crm_lead.json +#. Label of the organization_tab (Tab Break) field in PageType 'CRM Lead' +#: crm/fcrm/pagetype/crm_lead/crm_lead.json msgid "Others" msgstr "Diğer" @@ -4205,13 +4205,13 @@ msgstr "Diğer" msgid "Outbound Call" msgstr "" -#. Option for the 'Type' (Select) field in DocType 'CRM Call Log' -#: crm/fcrm/doctype/crm_call_log/crm_call_log.json +#. Option for the 'Type' (Select) field in PageType 'CRM Call Log' +#: crm/fcrm/pagetype/crm_call_log/crm_call_log.json msgid "Outgoing" msgstr "Giden" -#. Label of the log_owner (Link) field in DocType 'CRM Status Change Log' -#: crm/fcrm/doctype/crm_status_change_log/crm_status_change_log.json +#. Label of the log_owner (Link) field in PageType 'CRM Status Change Log' +#: crm/fcrm/pagetype/crm_status_change_log/crm_status_change_log.json msgid "Owner" msgstr "Sahibi" @@ -4219,8 +4219,8 @@ msgstr "Sahibi" msgid "Owner: {0}" msgstr "" -#. Label of the parent_crm_territory (Link) field in DocType 'CRM Territory' -#: crm/fcrm/doctype/crm_territory/crm_territory.json +#. Label of the parent_crm_territory (Link) field in PageType 'CRM Territory' +#: crm/fcrm/pagetype/crm_territory/crm_territory.json msgid "Parent CRM Territory" msgstr "" @@ -4251,8 +4251,8 @@ msgstr "" msgid "Payment Reminder from Frappé - (#{{ name }})" msgstr "" -#. Option for the 'Status' (Select) field in DocType 'CRM Invitation' -#: crm/fcrm/doctype/crm_invitation/crm_invitation.json +#. Option for the 'Status' (Select) field in PageType 'CRM Invitation' +#: crm/fcrm/pagetype/crm_invitation/crm_invitation.json msgid "Pending" msgstr "Bekliyor" @@ -4264,10 +4264,10 @@ msgstr "" msgid "Period" msgstr "Dönem" -#. Label of the person_section (Section Break) field in DocType 'CRM Deal' -#. Label of the person_tab (Tab Break) field in DocType 'CRM Lead' -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_lead/crm_lead.json +#. Label of the person_section (Section Break) field in PageType 'CRM Deal' +#. Label of the person_tab (Tab Break) field in PageType 'CRM Lead' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_lead/crm_lead.json msgid "Person" msgstr "" @@ -4275,19 +4275,19 @@ msgstr "" msgid "Personal Settings" msgstr "" -#. Label of the phone (Data) field in DocType 'CRM Contacts' -#. Label of the phone (Data) field in DocType 'CRM Lead' -#. Option for the 'Device' (Select) field in DocType 'CRM Telephony Agent' -#: crm/fcrm/doctype/crm_contacts/crm_contacts.json -#: crm/fcrm/doctype/crm_lead/crm_lead.json -#: crm/fcrm/doctype/crm_telephony_agent/crm_telephony_agent.json +#. Label of the phone (Data) field in PageType 'CRM Contacts' +#. Label of the phone (Data) field in PageType 'CRM Lead' +#. Option for the 'Device' (Select) field in PageType 'CRM Telephony Agent' +#: crm/fcrm/pagetype/crm_contacts/crm_contacts.json +#: crm/fcrm/pagetype/crm_lead/crm_lead.json +#: crm/fcrm/pagetype/crm_telephony_agent/crm_telephony_agent.json #: frontend/src/pages/MobileOrganization.vue:495 #: frontend/src/pages/Organization.vue:516 msgid "Phone" msgstr "Telefon" -#. Label of the phone_nos (Table) field in DocType 'CRM Telephony Agent' -#: crm/fcrm/doctype/crm_telephony_agent/crm_telephony_agent.json +#. Label of the phone_nos (Table) field in PageType 'CRM Telephony Agent' +#: crm/fcrm/pagetype/crm_telephony_agent/crm_telephony_agent.json msgid "Phone Numbers" msgstr "" @@ -4295,8 +4295,8 @@ msgstr "" msgid "Pin View" msgstr "" -#. Label of the pinned (Check) field in DocType 'CRM View Settings' -#: crm/fcrm/doctype/crm_view_settings/crm_view_settings.json +#. Label of the pinned (Check) field in PageType 'CRM View Settings' +#: crm/fcrm/pagetype/crm_view_settings/crm_view_settings.json msgid "Pinned" msgstr "" @@ -4346,7 +4346,7 @@ msgstr "" msgid "Please select an existing organization" msgstr "" -#: crm/fcrm/doctype/helpdesk_crm_settings/helpdesk_crm_settings.py:126 +#: crm/fcrm/pagetype/helpdesk_crm_settings/helpdesk_crm_settings.py:126 msgid "Please set Email Address" msgstr "Lütfen E-posta Adresini ayarlayın" @@ -4354,18 +4354,18 @@ msgstr "Lütfen E-posta Adresini ayarlayın" msgid "Please setup Exotel intergration" msgstr "" -#: crm/fcrm/doctype/crm_deal/crm_deal.py:181 +#: crm/fcrm/pagetype/crm_deal/crm_deal.py:181 msgid "Please specify a reason for losing the deal." msgstr "" -#: crm/fcrm/doctype/crm_deal/crm_deal.py:183 +#: crm/fcrm/pagetype/crm_deal/crm_deal.py:183 msgid "Please specify the reason for losing the deal." msgstr "" -#. Label of the position (Int) field in DocType 'CRM Deal Status' -#. Label of the position (Int) field in DocType 'CRM Lead Status' -#: crm/fcrm/doctype/crm_deal_status/crm_deal_status.json -#: crm/fcrm/doctype/crm_lead_status/crm_lead_status.json +#. Label of the position (Int) field in PageType 'CRM Deal Status' +#. Label of the position (Int) field in PageType 'CRM Lead Status' +#: crm/fcrm/pagetype/crm_deal_status/crm_deal_status.json +#: crm/fcrm/pagetype/crm_lead_status/crm_lead_status.json msgid "Position" msgstr "Pozisyon" @@ -4373,18 +4373,18 @@ msgstr "Pozisyon" msgid "Primary" msgstr "Birincil" -#. Label of the email (Data) field in DocType 'CRM Deal' -#: crm/fcrm/doctype/crm_deal/crm_deal.json +#. Label of the email (Data) field in PageType 'CRM Deal' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json msgid "Primary Email" msgstr "Birincil E-Posta" -#. Label of the mobile_no (Data) field in DocType 'CRM Deal' -#: crm/fcrm/doctype/crm_deal/crm_deal.json +#. Label of the mobile_no (Data) field in PageType 'CRM Deal' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json msgid "Primary Mobile No" msgstr "" -#. Label of the phone (Data) field in DocType 'CRM Deal' -#: crm/fcrm/doctype/crm_deal/crm_deal.json +#. Label of the phone (Data) field in PageType 'CRM Deal' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json msgid "Primary Phone" msgstr "Birincil Telefon" @@ -4392,57 +4392,57 @@ msgstr "Birincil Telefon" msgid "Primary contact set" msgstr "" -#. Label of the priorities (Table) field in DocType 'CRM Service Level +#. Label of the priorities (Table) field in PageType 'CRM Service Level #. Agreement' -#: crm/fcrm/doctype/crm_service_level_agreement/crm_service_level_agreement.json +#: crm/fcrm/pagetype/crm_service_level_agreement/crm_service_level_agreement.json msgid "Priorities" msgstr "Öncelikler" -#. Label of the priority (Link) field in DocType 'CRM Service Level Priority' -#. Label of the priority (Select) field in DocType 'CRM Task' -#: crm/fcrm/doctype/crm_service_level_priority/crm_service_level_priority.json -#: crm/fcrm/doctype/crm_task/crm_task.json +#. Label of the priority (Link) field in PageType 'CRM Service Level Priority' +#. Label of the priority (Select) field in PageType 'CRM Task' +#: crm/fcrm/pagetype/crm_service_level_priority/crm_service_level_priority.json +#: crm/fcrm/pagetype/crm_task/crm_task.json #: frontend/src/components/Settings/AssignmentRules/AssignmentRuleView.vue:64 #: frontend/src/components/Settings/AssignmentRules/AssignmentRulesList.vue:20 msgid "Priority" msgstr "Öncelik" -#. Label of the private (Check) field in DocType 'CRM Dashboard' -#: crm/fcrm/doctype/crm_dashboard/crm_dashboard.json +#. Label of the private (Check) field in PageType 'CRM Dashboard' +#: crm/fcrm/pagetype/crm_dashboard/crm_dashboard.json #: frontend/src/components/FilesUploader/FilesUploaderArea.vue:89 msgid "Private" msgstr "Özel" -#. Label of the probability (Percent) field in DocType 'CRM Deal' -#. Label of the probability (Percent) field in DocType 'CRM Deal Status' -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_deal_status/crm_deal_status.json +#. Label of the probability (Percent) field in PageType 'CRM Deal' +#. Label of the probability (Percent) field in PageType 'CRM Deal Status' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_deal_status/crm_deal_status.json msgid "Probability" msgstr "Olasılık" -#. Label of the product_code (Link) field in DocType 'CRM Products' -#: crm/fcrm/doctype/crm_products/crm_products.json +#. Label of the product_code (Link) field in PageType 'CRM Products' +#: crm/fcrm/pagetype/crm_products/crm_products.json msgid "Product" msgstr "Ürün" -#. Label of the product_code (Data) field in DocType 'CRM Product' -#: crm/fcrm/doctype/crm_product/crm_product.json +#. Label of the product_code (Data) field in PageType 'CRM Product' +#: crm/fcrm/pagetype/crm_product/crm_product.json msgid "Product Code" msgstr "" -#. Label of the product_name (Data) field in DocType 'CRM Product' -#. Label of the product_name (Data) field in DocType 'CRM Products' -#: crm/fcrm/doctype/crm_product/crm_product.json -#: crm/fcrm/doctype/crm_products/crm_products.json +#. Label of the product_name (Data) field in PageType 'CRM Product' +#. Label of the product_name (Data) field in PageType 'CRM Products' +#: crm/fcrm/pagetype/crm_product/crm_product.json +#: crm/fcrm/pagetype/crm_products/crm_products.json msgid "Product Name" msgstr "" -#. Label of the products_tab (Tab Break) field in DocType 'CRM Deal' -#. Label of the products (Table) field in DocType 'CRM Deal' -#. Label of the products_tab (Tab Break) field in DocType 'CRM Lead' -#. Label of the products (Table) field in DocType 'CRM Lead' -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_lead/crm_lead.json +#. Label of the products_tab (Tab Break) field in PageType 'CRM Deal' +#. Label of the products (Table) field in PageType 'CRM Deal' +#. Label of the products_tab (Tab Break) field in PageType 'CRM Lead' +#. Label of the products (Table) field in PageType 'CRM Lead' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_lead/crm_lead.json msgid "Products" msgstr "Ürünler" @@ -4459,8 +4459,8 @@ msgstr "" msgid "Projected vs actual revenue based on deal probability" msgstr "" -#. Label of the public (Check) field in DocType 'CRM View Settings' -#: crm/fcrm/doctype/crm_view_settings/crm_view_settings.json +#. Label of the public (Check) field in PageType 'CRM View Settings' +#: crm/fcrm/pagetype/crm_view_settings/crm_view_settings.json msgid "Public" msgstr "Herkese Açık" @@ -4472,23 +4472,23 @@ msgstr "" msgid "Public view" msgstr "" -#. Label of the qty (Float) field in DocType 'CRM Products' -#: crm/fcrm/doctype/crm_products/crm_products.json +#. Label of the qty (Float) field in PageType 'CRM Products' +#: crm/fcrm/pagetype/crm_products/crm_products.json msgid "Quantity" msgstr "Miktar" -#. Option for the 'Status' (Select) field in DocType 'CRM Call Log' -#: crm/fcrm/doctype/crm_call_log/crm_call_log.json +#. Option for the 'Status' (Select) field in PageType 'CRM Call Log' +#: crm/fcrm/pagetype/crm_call_log/crm_call_log.json msgid "Queued" msgstr "Sıraya alındı" -#. Option for the 'Type' (Select) field in DocType 'CRM Fields Layout' -#: crm/fcrm/doctype/crm_fields_layout/crm_fields_layout.json +#. Option for the 'Type' (Select) field in PageType 'CRM Fields Layout' +#: crm/fcrm/pagetype/crm_fields_layout/crm_fields_layout.json msgid "Quick Entry" msgstr "Hızlı Giriş" -#. Option for the 'Type' (Select) field in DocType 'CRM Global Settings' -#: crm/fcrm/doctype/crm_global_settings/crm_global_settings.json +#. Option for the 'Type' (Select) field in PageType 'CRM Global Settings' +#: crm/fcrm/pagetype/crm_global_settings/crm_global_settings.json msgid "Quick Filters" msgstr "Hızlı Filtreler" @@ -4500,13 +4500,13 @@ msgstr "" msgid "Quick entry layout" msgstr "" -#. Label of the rate (Currency) field in DocType 'CRM Products' -#: crm/fcrm/doctype/crm_products/crm_products.json +#. Label of the rate (Currency) field in PageType 'CRM Products' +#: crm/fcrm/pagetype/crm_products/crm_products.json msgid "Rate" msgstr "Fiyat" -#. Label of the read (Check) field in DocType 'CRM Notification' -#: crm/fcrm/doctype/crm_notification/crm_notification.json +#. Label of the read (Check) field in PageType 'CRM Notification' +#: crm/fcrm/pagetype/crm_notification/crm_notification.json msgid "Read" msgstr "Okuma" @@ -4514,48 +4514,48 @@ msgstr "Okuma" msgid "Reason" msgstr "Nedeni" -#. Label of the record_calls (Check) field in DocType 'CRM Twilio Settings' -#: crm/fcrm/doctype/crm_twilio_settings/crm_twilio_settings.json +#. Label of the record_calls (Check) field in PageType 'CRM Twilio Settings' +#: crm/fcrm/pagetype/crm_twilio_settings/crm_twilio_settings.json msgid "Record Calls" msgstr "" -#. Label of the record_call (Check) field in DocType 'CRM Exotel Settings' -#: crm/fcrm/doctype/crm_exotel_settings/crm_exotel_settings.json +#. Label of the record_call (Check) field in PageType 'CRM Exotel Settings' +#: crm/fcrm/pagetype/crm_exotel_settings/crm_exotel_settings.json msgid "Record Outgoing Calls" msgstr "" -#. Label of the recording_url (Data) field in DocType 'CRM Call Log' -#: crm/fcrm/doctype/crm_call_log/crm_call_log.json +#. Label of the recording_url (Data) field in PageType 'CRM Call Log' +#: crm/fcrm/pagetype/crm_call_log/crm_call_log.json msgid "Recording URL" msgstr "URL kaydediliyor" -#. Label of the reference_name (Dynamic Link) field in DocType 'CRM +#. Label of the reference_name (Dynamic Link) field in PageType 'CRM #. Notification' -#. Label of the reference_docname (Dynamic Link) field in DocType 'CRM Task' -#. Label of the reference_docname (Dynamic Link) field in DocType 'FCRM Note' -#: crm/fcrm/doctype/crm_notification/crm_notification.json -#: crm/fcrm/doctype/crm_task/crm_task.json -#: crm/fcrm/doctype/fcrm_note/fcrm_note.json -msgid "Reference Doc" +#. Label of the reference_docname (Dynamic Link) field in PageType 'CRM Task' +#. Label of the reference_docname (Dynamic Link) field in PageType 'FCRM Note' +#: crm/fcrm/pagetype/crm_notification/crm_notification.json +#: crm/fcrm/pagetype/crm_task/crm_task.json +#: crm/fcrm/pagetype/fcrm_note/fcrm_note.json +msgid "Reference Pg" msgstr "" -#. Label of the reference_doctype (Link) field in DocType 'CRM Notification' -#: crm/fcrm/doctype/crm_notification/crm_notification.json -msgid "Reference Doctype" +#. Label of the reference_pagetype (Link) field in PageType 'CRM Notification' +#: crm/fcrm/pagetype/crm_notification/crm_notification.json +msgid "Reference Pagetype" msgstr "Referans Belge Türü" -#. Label of the reference_doctype (Link) field in DocType 'CRM Call Log' -#. Label of the reference_doctype (Link) field in DocType 'CRM Task' -#. Label of the reference_doctype (Link) field in DocType 'FCRM Note' -#: crm/fcrm/doctype/crm_call_log/crm_call_log.json -#: crm/fcrm/doctype/crm_task/crm_task.json -#: crm/fcrm/doctype/fcrm_note/fcrm_note.json +#. Label of the reference_pagetype (Link) field in PageType 'CRM Call Log' +#. Label of the reference_pagetype (Link) field in PageType 'CRM Task' +#. Label of the reference_pagetype (Link) field in PageType 'FCRM Note' +#: crm/fcrm/pagetype/crm_call_log/crm_call_log.json +#: crm/fcrm/pagetype/crm_task/crm_task.json +#: crm/fcrm/pagetype/fcrm_note/fcrm_note.json msgid "Reference Document Type" msgstr "Referans Belge Türü" -#. Label of the reference_docname (Dynamic Link) field in DocType 'CRM Call +#. Label of the reference_docname (Dynamic Link) field in PageType 'CRM Call #. Log' -#: crm/fcrm/doctype/crm_call_log/crm_call_log.json +#: crm/fcrm/pagetype/crm_call_log/crm_call_log.json msgid "Reference Name" msgstr "Referans Adı" @@ -4625,8 +4625,8 @@ msgstr "Tümünü Yanıtla" msgid "Report an Issue" msgstr "Sorun Bildir" -#. Option for the 'Type' (Select) field in DocType 'CRM Fields Layout' -#: crm/fcrm/doctype/crm_fields_layout/crm_fields_layout.json +#. Option for the 'Type' (Select) field in PageType 'CRM Fields Layout' +#: crm/fcrm/pagetype/crm_fields_layout/crm_fields_layout.json msgid "Required Fields" msgstr "" @@ -4642,7 +4642,7 @@ msgstr "Sıfırla" msgid "Reset Changes" msgstr "Değişiklikleri Sıfırla" -#: crm/fcrm/doctype/erpnext_crm_settings/erpnext_crm_settings.js:7 +#: crm/fcrm/pagetype/erpnext_crm_settings/erpnext_crm_settings.js:7 msgid "Reset ERPNext Form Script" msgstr "" @@ -4654,35 +4654,35 @@ msgstr "" msgid "Reset to default" msgstr "Varsayılana Dön" -#. Label of the response_by (Datetime) field in DocType 'CRM Deal' -#. Label of the response_by (Datetime) field in DocType 'CRM Lead' -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_lead/crm_lead.json +#. Label of the response_by (Datetime) field in PageType 'CRM Deal' +#. Label of the response_by (Datetime) field in PageType 'CRM Lead' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_lead/crm_lead.json msgid "Response By" msgstr "Yanıtlayan" -#. Label of the response_details_section (Section Break) field in DocType 'CRM +#. Label of the response_details_section (Section Break) field in PageType 'CRM #. Deal' -#. Label of the response_details_section (Section Break) field in DocType 'CRM +#. Label of the response_details_section (Section Break) field in PageType 'CRM #. Lead' -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_lead/crm_lead.json +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_lead/crm_lead.json msgid "Response Details" msgstr "Yanıt Ayrıntıları" -#. Label of the section_break_ufaf (Section Break) field in DocType 'CRM +#. Label of the section_break_ufaf (Section Break) field in PageType 'CRM #. Service Level Agreement' -#: crm/fcrm/doctype/crm_service_level_agreement/crm_service_level_agreement.json +#: crm/fcrm/pagetype/crm_service_level_agreement/crm_service_level_agreement.json msgid "Response and Follow Up" msgstr "" -#: crm/fcrm/doctype/fcrm_settings/fcrm_settings.js:14 +#: crm/fcrm/pagetype/fcrm_settings/fcrm_settings.js:14 msgid "Restore" msgstr "Geri Yükle" -#. Label of the restore_defaults (Button) field in DocType 'FCRM Settings' -#: crm/fcrm/doctype/fcrm_settings/fcrm_settings.js:13 -#: crm/fcrm/doctype/fcrm_settings/fcrm_settings.json +#. Label of the restore_defaults (Button) field in PageType 'FCRM Settings' +#: crm/fcrm/pagetype/fcrm_settings/fcrm_settings.js:13 +#: crm/fcrm/pagetype/fcrm_settings/fcrm_settings.json msgid "Restore Defaults" msgstr "" @@ -4699,13 +4699,13 @@ msgstr "Gelir" msgid "Rich Text" msgstr "Zengin Metin" -#. Label of the rgt (Int) field in DocType 'CRM Territory' -#: crm/fcrm/doctype/crm_territory/crm_territory.json +#. Label of the rgt (Int) field in PageType 'CRM Territory' +#: crm/fcrm/pagetype/crm_territory/crm_territory.json msgid "Right" msgstr "Sağ" -#. Option for the 'Status' (Select) field in DocType 'CRM Call Log' -#: crm/fcrm/doctype/crm_call_log/crm_call_log.json +#. Option for the 'Status' (Select) field in PageType 'CRM Call Log' +#: crm/fcrm/pagetype/crm_call_log/crm_call_log.json msgid "Ringing" msgstr "Çalıyor..." @@ -4714,55 +4714,55 @@ msgstr "Çalıyor..." msgid "Ringing..." msgstr "" -#. Label of the role (Select) field in DocType 'CRM Invitation' -#: crm/fcrm/doctype/crm_invitation/crm_invitation.json +#. Label of the role (Select) field in PageType 'CRM Invitation' +#: crm/fcrm/pagetype/crm_invitation/crm_invitation.json #: frontend/src/components/Modals/AddExistingUserModal.vue:46 msgid "Role" msgstr "Rol" -#. Option for the 'Type' (Select) field in DocType 'CRM Dropdown Item' -#. Label of the route (Data) field in DocType 'CRM Dropdown Item' -#: crm/fcrm/doctype/crm_dropdown_item/crm_dropdown_item.json +#. Option for the 'Type' (Select) field in PageType 'CRM Dropdown Item' +#. Label of the route (Data) field in PageType 'CRM Dropdown Item' +#: crm/fcrm/pagetype/crm_dropdown_item/crm_dropdown_item.json msgid "Route" msgstr "Rota" -#. Label of the route_name (Data) field in DocType 'CRM View Settings' -#: crm/fcrm/doctype/crm_view_settings/crm_view_settings.json +#. Label of the route_name (Data) field in PageType 'CRM View Settings' +#: crm/fcrm/pagetype/crm_view_settings/crm_view_settings.json msgid "Route Name" msgstr "" -#. Label of the rows (Code) field in DocType 'CRM View Settings' -#: crm/fcrm/doctype/crm_view_settings/crm_view_settings.json +#. Label of the rows (Code) field in PageType 'CRM View Settings' +#: crm/fcrm/pagetype/crm_view_settings/crm_view_settings.json msgid "Rows" msgstr "" -#. Label of the sla_tab (Tab Break) field in DocType 'CRM Deal' -#. Label of the sla (Link) field in DocType 'CRM Deal' -#. Label of the sla_tab (Tab Break) field in DocType 'CRM Lead' -#. Label of the sla (Link) field in DocType 'CRM Lead' -#. Label of a shortcut in the Frappe CRM Workspace -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_lead/crm_lead.json -#: crm/fcrm/workspace/frappe_crm/frappe_crm.json +#. Label of the sla_tab (Tab Break) field in PageType 'CRM Deal' +#. Label of the sla (Link) field in PageType 'CRM Deal' +#. Label of the sla_tab (Tab Break) field in PageType 'CRM Lead' +#. Label of the sla (Link) field in PageType 'CRM Lead' +#. Label of a shortcut in the Jingrow CRM Workspace +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_lead/crm_lead.json +#: crm/fcrm/workspace/jingrow_crm/jingrow_crm.json msgid "SLA" msgstr "" -#. Label of the sla_creation (Datetime) field in DocType 'CRM Deal' -#. Label of the sla_creation (Datetime) field in DocType 'CRM Lead' -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_lead/crm_lead.json +#. Label of the sla_creation (Datetime) field in PageType 'CRM Deal' +#. Label of the sla_creation (Datetime) field in PageType 'CRM Lead' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_lead/crm_lead.json msgid "SLA Creation" msgstr "" -#. Label of the sla_name (Data) field in DocType 'CRM Service Level Agreement' -#: crm/fcrm/doctype/crm_service_level_agreement/crm_service_level_agreement.json +#. Label of the sla_name (Data) field in PageType 'CRM Service Level Agreement' +#: crm/fcrm/pagetype/crm_service_level_agreement/crm_service_level_agreement.json msgid "SLA Name" msgstr "" -#. Label of the sla_status (Select) field in DocType 'CRM Deal' -#. Label of the sla_status (Select) field in DocType 'CRM Lead' -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_lead/crm_lead.json +#. Label of the sla_status (Select) field in PageType 'CRM Deal' +#. Label of the sla_status (Select) field in PageType 'CRM Lead' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_lead/crm_lead.json msgid "SLA Status" msgstr "" @@ -4771,57 +4771,57 @@ msgid "SUBJECT" msgstr "" #. Name of a role -#. Option for the 'Role' (Select) field in DocType 'CRM Invitation' -#: crm/fcrm/doctype/crm_call_log/crm_call_log.json -#: crm/fcrm/doctype/crm_communication_status/crm_communication_status.json -#: crm/fcrm/doctype/crm_dashboard/crm_dashboard.json -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_deal_status/crm_deal_status.json -#: crm/fcrm/doctype/crm_exotel_settings/crm_exotel_settings.json -#: crm/fcrm/doctype/crm_form_script/crm_form_script.json -#: crm/fcrm/doctype/crm_global_settings/crm_global_settings.json -#: crm/fcrm/doctype/crm_holiday_list/crm_holiday_list.json -#: crm/fcrm/doctype/crm_industry/crm_industry.json -#: crm/fcrm/doctype/crm_invitation/crm_invitation.json -#: crm/fcrm/doctype/crm_lead/crm_lead.json -#: crm/fcrm/doctype/crm_lead_source/crm_lead_source.json -#: crm/fcrm/doctype/crm_lead_status/crm_lead_status.json -#: crm/fcrm/doctype/crm_lost_reason/crm_lost_reason.json -#: crm/fcrm/doctype/crm_notification/crm_notification.json -#: crm/fcrm/doctype/crm_organization/crm_organization.json -#: crm/fcrm/doctype/crm_service_level_agreement/crm_service_level_agreement.json -#: crm/fcrm/doctype/crm_task/crm_task.json -#: crm/fcrm/doctype/crm_territory/crm_territory.json -#: crm/fcrm/doctype/crm_twilio_settings/crm_twilio_settings.json -#: crm/fcrm/doctype/crm_view_settings/crm_view_settings.json -#: crm/fcrm/doctype/erpnext_crm_settings/erpnext_crm_settings.json -#: crm/fcrm/doctype/fcrm_note/fcrm_note.json -#: crm/fcrm/doctype/fcrm_settings/fcrm_settings.json -#: crm/fcrm/doctype/helpdesk_crm_settings/helpdesk_crm_settings.json +#. Option for the 'Role' (Select) field in PageType 'CRM Invitation' +#: crm/fcrm/pagetype/crm_call_log/crm_call_log.json +#: crm/fcrm/pagetype/crm_communication_status/crm_communication_status.json +#: crm/fcrm/pagetype/crm_dashboard/crm_dashboard.json +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_deal_status/crm_deal_status.json +#: crm/fcrm/pagetype/crm_exotel_settings/crm_exotel_settings.json +#: crm/fcrm/pagetype/crm_form_script/crm_form_script.json +#: crm/fcrm/pagetype/crm_global_settings/crm_global_settings.json +#: crm/fcrm/pagetype/crm_holiday_list/crm_holiday_list.json +#: crm/fcrm/pagetype/crm_industry/crm_industry.json +#: crm/fcrm/pagetype/crm_invitation/crm_invitation.json +#: crm/fcrm/pagetype/crm_lead/crm_lead.json +#: crm/fcrm/pagetype/crm_lead_source/crm_lead_source.json +#: crm/fcrm/pagetype/crm_lead_status/crm_lead_status.json +#: crm/fcrm/pagetype/crm_lost_reason/crm_lost_reason.json +#: crm/fcrm/pagetype/crm_notification/crm_notification.json +#: crm/fcrm/pagetype/crm_organization/crm_organization.json +#: crm/fcrm/pagetype/crm_service_level_agreement/crm_service_level_agreement.json +#: crm/fcrm/pagetype/crm_task/crm_task.json +#: crm/fcrm/pagetype/crm_territory/crm_territory.json +#: crm/fcrm/pagetype/crm_twilio_settings/crm_twilio_settings.json +#: crm/fcrm/pagetype/crm_view_settings/crm_view_settings.json +#: crm/fcrm/pagetype/erpnext_crm_settings/erpnext_crm_settings.json +#: crm/fcrm/pagetype/fcrm_note/fcrm_note.json +#: crm/fcrm/pagetype/fcrm_settings/fcrm_settings.json +#: crm/fcrm/pagetype/helpdesk_crm_settings/helpdesk_crm_settings.json msgid "Sales Manager" msgstr "Satış Yöneticisi" #. Name of a role -#. Option for the 'Role' (Select) field in DocType 'CRM Invitation' -#: crm/fcrm/doctype/crm_call_log/crm_call_log.json -#: crm/fcrm/doctype/crm_communication_status/crm_communication_status.json -#: crm/fcrm/doctype/crm_dashboard/crm_dashboard.json -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_deal_status/crm_deal_status.json -#: crm/fcrm/doctype/crm_global_settings/crm_global_settings.json -#: crm/fcrm/doctype/crm_holiday_list/crm_holiday_list.json -#: crm/fcrm/doctype/crm_industry/crm_industry.json -#: crm/fcrm/doctype/crm_invitation/crm_invitation.json -#: crm/fcrm/doctype/crm_lead/crm_lead.json -#: crm/fcrm/doctype/crm_lead_source/crm_lead_source.json -#: crm/fcrm/doctype/crm_lead_status/crm_lead_status.json -#: crm/fcrm/doctype/crm_lost_reason/crm_lost_reason.json -#: crm/fcrm/doctype/crm_notification/crm_notification.json -#: crm/fcrm/doctype/crm_organization/crm_organization.json -#: crm/fcrm/doctype/crm_task/crm_task.json -#: crm/fcrm/doctype/crm_territory/crm_territory.json -#: crm/fcrm/doctype/crm_view_settings/crm_view_settings.json -#: crm/fcrm/doctype/fcrm_note/fcrm_note.json +#. Option for the 'Role' (Select) field in PageType 'CRM Invitation' +#: crm/fcrm/pagetype/crm_call_log/crm_call_log.json +#: crm/fcrm/pagetype/crm_communication_status/crm_communication_status.json +#: crm/fcrm/pagetype/crm_dashboard/crm_dashboard.json +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_deal_status/crm_deal_status.json +#: crm/fcrm/pagetype/crm_global_settings/crm_global_settings.json +#: crm/fcrm/pagetype/crm_holiday_list/crm_holiday_list.json +#: crm/fcrm/pagetype/crm_industry/crm_industry.json +#: crm/fcrm/pagetype/crm_invitation/crm_invitation.json +#: crm/fcrm/pagetype/crm_lead/crm_lead.json +#: crm/fcrm/pagetype/crm_lead_source/crm_lead_source.json +#: crm/fcrm/pagetype/crm_lead_status/crm_lead_status.json +#: crm/fcrm/pagetype/crm_lost_reason/crm_lost_reason.json +#: crm/fcrm/pagetype/crm_notification/crm_notification.json +#: crm/fcrm/pagetype/crm_organization/crm_organization.json +#: crm/fcrm/pagetype/crm_task/crm_task.json +#: crm/fcrm/pagetype/crm_territory/crm_territory.json +#: crm/fcrm/pagetype/crm_view_settings/crm_view_settings.json +#: crm/fcrm/pagetype/fcrm_note/fcrm_note.json #: frontend/src/components/Modals/AddExistingUserModal.vue:92 #: frontend/src/components/Settings/InviteUserPage.vue:156 #: frontend/src/components/Settings/InviteUserPage.vue:163 @@ -4845,17 +4845,17 @@ msgstr "" msgid "Salesperson" msgstr "" -#. Label of the salutation (Link) field in DocType 'CRM Deal' -#. Label of the salutation (Link) field in DocType 'CRM Lead' -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_lead/crm_lead.json +#. Label of the salutation (Link) field in PageType 'CRM Deal' +#. Label of the salutation (Link) field in PageType 'CRM Lead' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_lead/crm_lead.json msgid "Salutation" msgstr "Hitap" -#. Option for the 'Weekly Off' (Select) field in DocType 'CRM Holiday List' -#. Option for the 'Workday' (Select) field in DocType 'CRM Service Day' -#: crm/fcrm/doctype/crm_holiday_list/crm_holiday_list.json -#: crm/fcrm/doctype/crm_service_day/crm_service_day.json +#. Option for the 'Weekly Off' (Select) field in PageType 'CRM Holiday List' +#. Option for the 'Workday' (Select) field in PageType 'CRM Service Day' +#: crm/fcrm/pagetype/crm_holiday_list/crm_holiday_list.json +#: crm/fcrm/pagetype/crm_service_day/crm_service_day.json msgid "Saturday" msgstr "Cumartesi" @@ -4904,8 +4904,8 @@ msgstr "" msgid "Schedule an event" msgstr "" -#. Label of the script (Code) field in DocType 'CRM Form Script' -#: crm/fcrm/doctype/crm_form_script/crm_form_script.json +#. Label of the script (Code) field in PageType 'CRM Form Script' +#: crm/fcrm/pagetype/crm_form_script/crm_form_script.json msgid "Script" msgstr "" @@ -4973,18 +4973,18 @@ msgstr "" msgid "Send invites to" msgstr "" -#. Option for the 'Type' (Select) field in DocType 'CRM Dropdown Item' -#: crm/fcrm/doctype/crm_dropdown_item/crm_dropdown_item.json +#. Option for the 'Type' (Select) field in PageType 'CRM Dropdown Item' +#: crm/fcrm/pagetype/crm_dropdown_item/crm_dropdown_item.json msgid "Separator" msgstr "Ayırıcı" -#. Label of the naming_series (Select) field in DocType 'CRM Lead' -#: crm/fcrm/doctype/crm_lead/crm_lead.json +#. Label of the naming_series (Select) field in PageType 'CRM Lead' +#: crm/fcrm/pagetype/crm_lead/crm_lead.json msgid "Series" msgstr "Seri" -#. Label of the service_provider (Select) field in DocType 'FCRM Settings' -#: crm/fcrm/doctype/fcrm_settings/fcrm_settings.json +#. Label of the service_provider (Select) field in PageType 'FCRM Settings' +#: crm/fcrm/pagetype/fcrm_settings/fcrm_settings.json msgid "Service Provider" msgstr "Hizmet Sağlayıcı" @@ -5029,7 +5029,7 @@ msgid "Setting up" msgstr "Kurulum" #: frontend/src/components/Settings/emailConfig.js:145 -msgid "Setting up Frappe Mail requires you to have an API key and API Secret of your email account. Read more " +msgid "Setting up Jingrow Mail requires you to have an API key and API Secret of your email account. Read more " msgstr "" #: frontend/src/components/Settings/emailConfig.js:97 @@ -5062,8 +5062,8 @@ msgid "Setting up Yandex requires you to enable two factor authentication\n" "\t\t and app specific passwords. Read more " msgstr "" -#. Label of the defaults_tab (Tab Break) field in DocType 'FCRM Settings' -#: crm/fcrm/doctype/fcrm_settings/fcrm_settings.json +#. Label of the defaults_tab (Tab Break) field in PageType 'FCRM Settings' +#: crm/fcrm/pagetype/fcrm_settings/fcrm_settings.json #: frontend/src/components/Layouts/AppSidebar.vue:537 #: frontend/src/components/Settings/Settings.vue:12 msgid "Settings" @@ -5073,7 +5073,7 @@ msgstr "Ayarlar" msgid "Setup Email" msgstr "" -#: crm/fcrm/doctype/fcrm_settings/fcrm_settings.py:199 +#: crm/fcrm/pagetype/fcrm_settings/fcrm_settings.py:199 msgid "Setup the Exchange Rate Provider as 'Exchangerate Host' in settings, as default provider does not support currency conversion for {0} to {1}." msgstr "" @@ -5108,20 +5108,20 @@ msgstr "" msgid "Show preview" msgstr "" -#. Option for the 'Type' (Select) field in DocType 'CRM Fields Layout' -#: crm/fcrm/doctype/crm_fields_layout/crm_fields_layout.json +#. Option for the 'Type' (Select) field in PageType 'CRM Fields Layout' +#: crm/fcrm/pagetype/crm_fields_layout/crm_fields_layout.json msgid "Side Panel" msgstr "" -#. Option for the 'Type' (Select) field in DocType 'CRM Global Settings' -#: crm/fcrm/doctype/crm_global_settings/crm_global_settings.json +#. Option for the 'Type' (Select) field in PageType 'CRM Global Settings' +#: crm/fcrm/pagetype/crm_global_settings/crm_global_settings.json msgid "Sidebar Items" msgstr "Kenar Çubuğu Öğeleri" -#. Description of the 'Condition' (Code) field in DocType 'CRM Service Level +#. Description of the 'Condition' (Code) field in PageType 'CRM Service Level #. Agreement' -#: crm/fcrm/doctype/crm_service_level_agreement/crm_service_level_agreement.json -msgid "Simple Python Expression, Example: doc.status == 'Open' and doc.lead_source == 'Ads'" +#: crm/fcrm/pagetype/crm_service_level_agreement/crm_service_level_agreement.json +msgid "Simple Python Expression, Example: pg.status == 'Open' and pg.lead_source == 'Ads'" msgstr "" #: frontend/src/components/AssignTo.vue:83 @@ -5145,16 +5145,16 @@ msgstr "" msgid "Sort" msgstr "" -#. Label of the source (Link) field in DocType 'CRM Deal' -#. Label of the source (Link) field in DocType 'CRM Lead' -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_lead/crm_lead.json +#. Label of the source (Link) field in PageType 'CRM Deal' +#. Label of the source (Link) field in PageType 'CRM Lead' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_lead/crm_lead.json #: frontend/src/components/Modals/EditValueModal.vue:10 msgid "Source" msgstr "Kaynak" -#. Label of the source_name (Data) field in DocType 'CRM Lead Source' -#: crm/fcrm/doctype/crm_lead_source/crm_lead_source.json +#. Label of the source_name (Data) field in PageType 'CRM Lead Source' +#: crm/fcrm/pagetype/crm_lead_source/crm_lead_source.json msgid "Source Name" msgstr "Kaynak Adı" @@ -5167,12 +5167,12 @@ msgstr "Boşluk" msgid "Stage" msgstr "Aşama" -#: crm/fcrm/doctype/crm_form_script/crm_form_script.js:15 +#: crm/fcrm/pagetype/crm_form_script/crm_form_script.js:15 msgid "Standard Form Scripts can not be modified, duplicate the Form Script instead." msgstr "" -#. Label of the standard_rate (Currency) field in DocType 'CRM Product' -#: crm/fcrm/doctype/crm_product/crm_product.json +#. Label of the standard_rate (Currency) field in PageType 'CRM Product' +#: crm/fcrm/pagetype/crm_product/crm_product.json msgid "Standard Selling Rate" msgstr "Satış Fiyatı" @@ -5180,18 +5180,18 @@ msgstr "Satış Fiyatı" msgid "Standard Views" msgstr "" -#. Label of the start_date (Date) field in DocType 'CRM Service Level +#. Label of the start_date (Date) field in PageType 'CRM Service Level #. Agreement' -#. Label of the start_date (Date) field in DocType 'CRM Task' -#: crm/fcrm/doctype/crm_service_level_agreement/crm_service_level_agreement.json -#: crm/fcrm/doctype/crm_task/crm_task.json +#. Label of the start_date (Date) field in PageType 'CRM Task' +#: crm/fcrm/pagetype/crm_service_level_agreement/crm_service_level_agreement.json +#: crm/fcrm/pagetype/crm_task/crm_task.json msgid "Start Date" msgstr "Başlangıç Tarihi" -#. Label of the start_time (Datetime) field in DocType 'CRM Call Log' -#. Label of the start_time (Time) field in DocType 'CRM Service Day' -#: crm/fcrm/doctype/crm_call_log/crm_call_log.json -#: crm/fcrm/doctype/crm_service_day/crm_service_day.json +#. Label of the start_time (Datetime) field in PageType 'CRM Call Log' +#. Label of the start_time (Time) field in PageType 'CRM Service Day' +#: crm/fcrm/pagetype/crm_call_log/crm_call_log.json +#: crm/fcrm/pagetype/crm_service_day/crm_service_day.json #: frontend/src/components/Calendar/CalendarEventPanel.vue:234 #: frontend/src/components/Modals/EventModal.vue:103 msgid "Start Time" @@ -5205,32 +5205,32 @@ msgstr "" msgid "Start with sample 10 leads" msgstr "" -#. Label of the status (Select) field in DocType 'CRM Call Log' -#. Label of the status (Data) field in DocType 'CRM Communication Status' -#. Label of the status (Link) field in DocType 'CRM Deal' -#. Label of the deal_status (Data) field in DocType 'CRM Deal Status' -#. Label of the status (Select) field in DocType 'CRM Invitation' -#. Label of the status (Link) field in DocType 'CRM Lead' -#. Label of the lead_status (Data) field in DocType 'CRM Lead Status' -#. Label of the status (Select) field in DocType 'CRM Task' -#: crm/fcrm/doctype/crm_call_log/crm_call_log.json -#: crm/fcrm/doctype/crm_communication_status/crm_communication_status.json -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_deal_status/crm_deal_status.json -#: crm/fcrm/doctype/crm_invitation/crm_invitation.json -#: crm/fcrm/doctype/crm_lead/crm_lead.json -#: crm/fcrm/doctype/crm_lead_status/crm_lead_status.json -#: crm/fcrm/doctype/crm_task/crm_task.json frontend/src/pages/Contact.vue:505 +#. Label of the status (Select) field in PageType 'CRM Call Log' +#. Label of the status (Data) field in PageType 'CRM Communication Status' +#. Label of the status (Link) field in PageType 'CRM Deal' +#. Label of the deal_status (Data) field in PageType 'CRM Deal Status' +#. Label of the status (Select) field in PageType 'CRM Invitation' +#. Label of the status (Link) field in PageType 'CRM Lead' +#. Label of the lead_status (Data) field in PageType 'CRM Lead Status' +#. Label of the status (Select) field in PageType 'CRM Task' +#: crm/fcrm/pagetype/crm_call_log/crm_call_log.json +#: crm/fcrm/pagetype/crm_communication_status/crm_communication_status.json +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_deal_status/crm_deal_status.json +#: crm/fcrm/pagetype/crm_invitation/crm_invitation.json +#: crm/fcrm/pagetype/crm_lead/crm_lead.json +#: crm/fcrm/pagetype/crm_lead_status/crm_lead_status.json +#: crm/fcrm/pagetype/crm_task/crm_task.json frontend/src/pages/Contact.vue:505 #: frontend/src/pages/MobileContact.vue:513 #: frontend/src/pages/MobileOrganization.vue:457 #: frontend/src/pages/Organization.vue:478 msgid "Status" msgstr "Durum" -#. Label of the status_change_log (Table) field in DocType 'CRM Deal' -#. Label of the status_change_log (Table) field in DocType 'CRM Lead' -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_lead/crm_lead.json +#. Label of the status_change_log (Table) field in PageType 'CRM Deal' +#. Label of the status_change_log (Table) field in PageType 'CRM Lead' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_lead/crm_lead.json msgid "Status Change Log" msgstr "" @@ -5239,8 +5239,8 @@ msgstr "" msgid "Status is required" msgstr "" -#. Label of the subdomain (Data) field in DocType 'CRM Exotel Settings' -#: crm/fcrm/doctype/crm_exotel_settings/crm_exotel_settings.json +#. Label of the subdomain (Data) field in PageType 'CRM Exotel Settings' +#: crm/fcrm/pagetype/crm_exotel_settings/crm_exotel_settings.json msgid "Subdomain" msgstr "Alt Alan Adı" @@ -5258,10 +5258,10 @@ msgstr "Konu gereklidir" msgid "Subject: {0}" msgstr "" -#. Option for the 'Weekly Off' (Select) field in DocType 'CRM Holiday List' -#. Option for the 'Workday' (Select) field in DocType 'CRM Service Day' -#: crm/fcrm/doctype/crm_holiday_list/crm_holiday_list.json -#: crm/fcrm/doctype/crm_service_day/crm_service_day.json +#. Option for the 'Weekly Off' (Select) field in PageType 'CRM Holiday List' +#. Option for the 'Workday' (Select) field in PageType 'CRM Service Day' +#: crm/fcrm/pagetype/crm_holiday_list/crm_holiday_list.json +#: crm/fcrm/pagetype/crm_service_day/crm_service_day.json msgid "Sunday" msgstr "Pazar" @@ -5282,21 +5282,21 @@ msgid "System Configuration" msgstr "" #. Name of a role -#. Option for the 'Role' (Select) field in DocType 'CRM Invitation' -#: crm/fcrm/doctype/crm_dashboard/crm_dashboard.json -#: crm/fcrm/doctype/crm_exotel_settings/crm_exotel_settings.json -#: crm/fcrm/doctype/crm_fields_layout/crm_fields_layout.json -#: crm/fcrm/doctype/crm_global_settings/crm_global_settings.json -#: crm/fcrm/doctype/crm_invitation/crm_invitation.json -#: crm/fcrm/doctype/crm_lead_source/crm_lead_source.json -#: crm/fcrm/doctype/crm_lost_reason/crm_lost_reason.json -#: crm/fcrm/doctype/crm_notification/crm_notification.json -#: crm/fcrm/doctype/crm_product/crm_product.json -#: crm/fcrm/doctype/crm_telephony_agent/crm_telephony_agent.json -#: crm/fcrm/doctype/crm_twilio_settings/crm_twilio_settings.json -#: crm/fcrm/doctype/erpnext_crm_settings/erpnext_crm_settings.json -#: crm/fcrm/doctype/fcrm_settings/fcrm_settings.json -#: crm/fcrm/doctype/helpdesk_crm_settings/helpdesk_crm_settings.json +#. Option for the 'Role' (Select) field in PageType 'CRM Invitation' +#: crm/fcrm/pagetype/crm_dashboard/crm_dashboard.json +#: crm/fcrm/pagetype/crm_exotel_settings/crm_exotel_settings.json +#: crm/fcrm/pagetype/crm_fields_layout/crm_fields_layout.json +#: crm/fcrm/pagetype/crm_global_settings/crm_global_settings.json +#: crm/fcrm/pagetype/crm_invitation/crm_invitation.json +#: crm/fcrm/pagetype/crm_lead_source/crm_lead_source.json +#: crm/fcrm/pagetype/crm_lost_reason/crm_lost_reason.json +#: crm/fcrm/pagetype/crm_notification/crm_notification.json +#: crm/fcrm/pagetype/crm_product/crm_product.json +#: crm/fcrm/pagetype/crm_telephony_agent/crm_telephony_agent.json +#: crm/fcrm/pagetype/crm_twilio_settings/crm_twilio_settings.json +#: crm/fcrm/pagetype/erpnext_crm_settings/erpnext_crm_settings.json +#: crm/fcrm/pagetype/fcrm_settings/fcrm_settings.json +#: crm/fcrm/pagetype/helpdesk_crm_settings/helpdesk_crm_settings.json msgid "System Manager" msgstr "Sistem Yöneticisi" @@ -5308,8 +5308,8 @@ msgstr "" msgid "Take a note..." msgstr "" -#. Option for the 'Type' (Select) field in DocType 'CRM Notification' -#: crm/fcrm/doctype/crm_notification/crm_notification.json +#. Option for the 'Type' (Select) field in PageType 'CRM Notification' +#: crm/fcrm/pagetype/crm_notification/crm_notification.json #: frontend/src/components/Layouts/AppSidebar.vue:555 msgid "Task" msgstr "Görev" @@ -5327,8 +5327,8 @@ msgstr "" msgid "Telephony" msgstr "" -#. Label of the telephony_medium (Select) field in DocType 'CRM Call Log' -#: crm/fcrm/doctype/crm_call_log/crm_call_log.json +#. Label of the telephony_medium (Select) field in PageType 'CRM Call Log' +#: crm/fcrm/pagetype/crm_call_log/crm_call_log.json msgid "Telephony Medium" msgstr "" @@ -5364,27 +5364,27 @@ msgstr "" msgid "Template updated successfully" msgstr "" -#. Label of a shortcut in the Frappe CRM Workspace -#: crm/fcrm/workspace/frappe_crm/frappe_crm.json +#. Label of a shortcut in the Jingrow CRM Workspace +#: crm/fcrm/workspace/jingrow_crm/jingrow_crm.json msgid "Territories" msgstr "" -#. Label of the territory (Link) field in DocType 'CRM Deal' -#. Label of the territory (Link) field in DocType 'CRM Lead' -#. Label of the territory (Link) field in DocType 'CRM Organization' -#: crm/api/dashboard.py:1022 crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_lead/crm_lead.json -#: crm/fcrm/doctype/crm_organization/crm_organization.json +#. Label of the territory (Link) field in PageType 'CRM Deal' +#. Label of the territory (Link) field in PageType 'CRM Lead' +#. Label of the territory (Link) field in PageType 'CRM Organization' +#: crm/api/dashboard.py:1022 crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_lead/crm_lead.json +#: crm/fcrm/pagetype/crm_organization/crm_organization.json msgid "Territory" msgstr "Bölge" -#. Label of the territory_manager (Link) field in DocType 'CRM Territory' -#: crm/fcrm/doctype/crm_territory/crm_territory.json +#. Label of the territory_manager (Link) field in PageType 'CRM Territory' +#: crm/fcrm/pagetype/crm_territory/crm_territory.json msgid "Territory Manager" msgstr "Bölge Müdürü" -#. Label of the territory_name (Data) field in DocType 'CRM Territory' -#: crm/fcrm/doctype/crm_territory/crm_territory.json +#. Label of the territory_name (Data) field in PageType 'CRM Territory' +#: crm/fcrm/pagetype/crm_territory/crm_territory.json msgid "Territory Name" msgstr "Bölge İsmi" @@ -5392,22 +5392,22 @@ msgstr "Bölge İsmi" msgid "Thanks" msgstr "Teşekkürler" -#: crm/fcrm/doctype/crm_service_level_agreement/crm_service_level_agreement.py:46 +#: crm/fcrm/pagetype/crm_service_level_agreement/crm_service_level_agreement.py:46 msgid "The Condition '{0}' is invalid: {1}" msgstr "" -#. Description of the 'Exchange Rate' (Float) field in DocType 'CRM Deal' -#: crm/fcrm/doctype/crm_deal/crm_deal.json +#. Description of the 'Exchange Rate' (Float) field in PageType 'CRM Deal' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json msgid "The rate used to convert the deal’s currency to your crm's base currency (set in CRM Settings). It is set once when the currency is first added and doesn't change automatically." msgstr "" -#. Description of the 'Exchange Rate' (Float) field in DocType 'CRM +#. Description of the 'Exchange Rate' (Float) field in PageType 'CRM #. Organization' -#: crm/fcrm/doctype/crm_organization/crm_organization.json +#: crm/fcrm/pagetype/crm_organization/crm_organization.json msgid "The rate used to convert the organization’s currency to your crm's base currency (set in CRM Settings). It is set once when the currency is first added and doesn't change automatically." msgstr "" -#: crm/fcrm/doctype/crm_service_level_agreement/crm_service_level_agreement.js:14 +#: crm/fcrm/pagetype/crm_service_level_agreement/crm_service_level_agreement.js:14 msgid "There can only be one default priority in Priorities table" msgstr "" @@ -5444,14 +5444,14 @@ msgstr "" msgid "This will delete selected items and unlink linked items to it, are you sure?" msgstr "" -#: crm/fcrm/doctype/fcrm_settings/fcrm_settings.js:9 +#: crm/fcrm/pagetype/fcrm_settings/fcrm_settings.js:9 msgid "This will restore (if not exist) all the default statuses, custom fields and layouts. Delete & Restore will delete default layouts and then restore them." msgstr "" -#. Option for the 'Weekly Off' (Select) field in DocType 'CRM Holiday List' -#. Option for the 'Workday' (Select) field in DocType 'CRM Service Day' -#: crm/fcrm/doctype/crm_holiday_list/crm_holiday_list.json -#: crm/fcrm/doctype/crm_service_day/crm_service_day.json +#. Option for the 'Weekly Off' (Select) field in PageType 'CRM Holiday List' +#. Option for the 'Workday' (Select) field in PageType 'CRM Service Day' +#: crm/fcrm/pagetype/crm_holiday_list/crm_holiday_list.json +#: crm/fcrm/pagetype/crm_service_day/crm_service_day.json msgid "Thursday" msgstr "Perşembe" @@ -5463,18 +5463,18 @@ msgstr "Zaman" msgid "Timespan" msgstr "Zaman Aralığında" -#. Label of the title (Data) field in DocType 'CRM Task' -#. Label of the title (Data) field in DocType 'FCRM Note' -#: crm/fcrm/doctype/crm_task/crm_task.json -#: crm/fcrm/doctype/fcrm_note/fcrm_note.json +#. Label of the title (Data) field in PageType 'CRM Task' +#. Label of the title (Data) field in PageType 'FCRM Note' +#: crm/fcrm/pagetype/crm_task/crm_task.json +#: crm/fcrm/pagetype/fcrm_note/fcrm_note.json #: frontend/src/components/Modals/EventModal.vue:43 #: frontend/src/components/Modals/NoteModal.vue:26 #: frontend/src/components/Modals/TaskModal.vue:25 msgid "Title" msgstr "Başlık" -#. Label of the title_field (Data) field in DocType 'CRM View Settings' -#: crm/fcrm/doctype/crm_view_settings/crm_view_settings.json +#. Label of the title_field (Data) field in PageType 'CRM View Settings' +#: crm/fcrm/pagetype/crm_view_settings/crm_view_settings.json #: frontend/src/components/Kanban/KanbanSettings.vue:29 msgid "Title Field" msgstr "Başlık Alanı" @@ -5484,28 +5484,28 @@ msgstr "Başlık Alanı" msgid "Title is required" msgstr "" -#. Label of the to (Data) field in DocType 'CRM Call Log' -#. Label of the to (Data) field in DocType 'CRM Status Change Log' -#: crm/fcrm/doctype/crm_call_log/crm_call_log.json -#: crm/fcrm/doctype/crm_status_change_log/crm_status_change_log.json +#. Label of the to (Data) field in PageType 'CRM Call Log' +#. Label of the to (Data) field in PageType 'CRM Status Change Log' +#: crm/fcrm/pagetype/crm_call_log/crm_call_log.json +#: crm/fcrm/pagetype/crm_status_change_log/crm_status_change_log.json #: frontend/src/components/Activities/EmailArea.vue:53 msgid "To" msgstr "Alıcı" -#. Label of the to_date (Date) field in DocType 'CRM Holiday List' -#. Label of the to_date (Datetime) field in DocType 'CRM Status Change Log' -#: crm/fcrm/doctype/crm_holiday_list/crm_holiday_list.json -#: crm/fcrm/doctype/crm_status_change_log/crm_status_change_log.json +#. Label of the to_date (Date) field in PageType 'CRM Holiday List' +#. Label of the to_date (Datetime) field in PageType 'CRM Status Change Log' +#: crm/fcrm/pagetype/crm_holiday_list/crm_holiday_list.json +#: crm/fcrm/pagetype/crm_status_change_log/crm_status_change_log.json msgid "To Date" msgstr "Bitiş Tarihi" -#. Label of the to_type (Data) field in DocType 'CRM Status Change Log' -#: crm/fcrm/doctype/crm_status_change_log/crm_status_change_log.json +#. Label of the to_type (Data) field in PageType 'CRM Status Change Log' +#: crm/fcrm/pagetype/crm_status_change_log/crm_status_change_log.json msgid "To Type" msgstr "" -#. Label of the to_user (Link) field in DocType 'CRM Notification' -#: crm/fcrm/doctype/crm_notification/crm_notification.json +#. Label of the to_user (Link) field in PageType 'CRM Notification' +#: crm/fcrm/pagetype/crm_notification/crm_notification.json msgid "To User" msgstr "" @@ -5517,8 +5517,8 @@ msgstr "" msgid "Today" msgstr "Bugün" -#. Option for the 'Status' (Select) field in DocType 'CRM Task' -#: crm/fcrm/doctype/crm_task/crm_task.json +#. Option for the 'Status' (Select) field in PageType 'CRM Task' +#: crm/fcrm/pagetype/crm_task/crm_task.json msgid "Todo" msgstr "" @@ -5535,22 +5535,22 @@ msgstr "" msgid "Took a call with John Doe and discussed the new project." msgstr "" -#. Label of the total (Currency) field in DocType 'CRM Deal' -#. Label of the total (Currency) field in DocType 'CRM Lead' -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_lead/crm_lead.json +#. Label of the total (Currency) field in PageType 'CRM Deal' +#. Label of the total (Currency) field in PageType 'CRM Lead' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_lead/crm_lead.json msgid "Total" msgstr "Toplam" -#. Label of the total_holidays (Int) field in DocType 'CRM Holiday List' -#: crm/fcrm/doctype/crm_holiday_list/crm_holiday_list.json +#. Label of the total_holidays (Int) field in PageType 'CRM Holiday List' +#: crm/fcrm/pagetype/crm_holiday_list/crm_holiday_list.json msgid "Total Holidays" msgstr "Toplam Tatil Günü" -#. Description of the 'Net Total' (Currency) field in DocType 'CRM Deal' -#. Description of the 'Net Total' (Currency) field in DocType 'CRM Lead' -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_lead/crm_lead.json +#. Description of the 'Net Total' (Currency) field in PageType 'CRM Deal' +#. Description of the 'Net Total' (Currency) field in PageType 'CRM Lead' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_lead/crm_lead.json msgid "Total after discount" msgstr "" @@ -5571,10 +5571,10 @@ msgstr "" msgid "Total number of won deals based on its closure date" msgstr "" -#. Option for the 'Weekly Off' (Select) field in DocType 'CRM Holiday List' -#. Option for the 'Workday' (Select) field in DocType 'CRM Service Day' -#: crm/fcrm/doctype/crm_holiday_list/crm_holiday_list.json -#: crm/fcrm/doctype/crm_service_day/crm_service_day.json +#. Option for the 'Weekly Off' (Select) field in PageType 'CRM Holiday List' +#. Option for the 'Workday' (Select) field in PageType 'CRM Service Day' +#: crm/fcrm/pagetype/crm_holiday_list/crm_holiday_list.json +#: crm/fcrm/pagetype/crm_service_day/crm_service_day.json msgid "Tuesday" msgstr "Salı" @@ -5582,30 +5582,30 @@ msgstr "Salı" msgid "Turn into a group" msgstr "" -#. Label of the twiml_sid (Data) field in DocType 'CRM Twilio Settings' -#: crm/fcrm/doctype/crm_twilio_settings/crm_twilio_settings.json +#. Label of the twiml_sid (Data) field in PageType 'CRM Twilio Settings' +#: crm/fcrm/pagetype/crm_twilio_settings/crm_twilio_settings.json msgid "TwiML SID" msgstr "" -#. Option for the 'Telephony Medium' (Select) field in DocType 'CRM Call Log' -#. Label of the twilio (Check) field in DocType 'CRM Telephony Agent' -#. Option for the 'Default Medium' (Select) field in DocType 'CRM Telephony +#. Option for the 'Telephony Medium' (Select) field in PageType 'CRM Call Log' +#. Label of the twilio (Check) field in PageType 'CRM Telephony Agent' +#. Option for the 'Default Medium' (Select) field in PageType 'CRM Telephony #. Agent' -#: crm/fcrm/doctype/crm_call_log/crm_call_log.json -#: crm/fcrm/doctype/crm_telephony_agent/crm_telephony_agent.json +#: crm/fcrm/pagetype/crm_call_log/crm_call_log.json +#: crm/fcrm/pagetype/crm_telephony_agent/crm_telephony_agent.json #: frontend/src/components/Layouts/AppSidebar.vue:601 #: frontend/src/components/Settings/TelephonySettings.vue:40 #: frontend/src/components/Settings/TelephonySettings.vue:50 msgid "Twilio" msgstr "" -#: crm/fcrm/doctype/crm_twilio_settings/crm_twilio_settings.py:59 -#: crm/fcrm/doctype/crm_twilio_settings/crm_twilio_settings.py:60 +#: crm/fcrm/pagetype/crm_twilio_settings/crm_twilio_settings.py:59 +#: crm/fcrm/pagetype/crm_twilio_settings/crm_twilio_settings.py:60 msgid "Twilio API credential creation error." msgstr "" -#. Label of the twilio_number (Data) field in DocType 'CRM Telephony Agent' -#: crm/fcrm/doctype/crm_telephony_agent/crm_telephony_agent.json +#. Label of the twilio_number (Data) field in PageType 'CRM Telephony Agent' +#: crm/fcrm/pagetype/crm_telephony_agent/crm_telephony_agent.json msgid "Twilio Number" msgstr "" @@ -5617,20 +5617,20 @@ msgstr "" msgid "Twilio settings updated successfully" msgstr "" -#. Label of the type (Select) field in DocType 'CRM Call Log' -#. Label of the type (Select) field in DocType 'CRM Deal Status' -#. Label of the type (Select) field in DocType 'CRM Dropdown Item' -#. Label of the type (Select) field in DocType 'CRM Fields Layout' -#. Label of the type (Select) field in DocType 'CRM Global Settings' -#. Label of the type (Select) field in DocType 'CRM Notification' -#. Label of the type (Select) field in DocType 'CRM View Settings' -#: crm/fcrm/doctype/crm_call_log/crm_call_log.json -#: crm/fcrm/doctype/crm_deal_status/crm_deal_status.json -#: crm/fcrm/doctype/crm_dropdown_item/crm_dropdown_item.json -#: crm/fcrm/doctype/crm_fields_layout/crm_fields_layout.json -#: crm/fcrm/doctype/crm_global_settings/crm_global_settings.json -#: crm/fcrm/doctype/crm_notification/crm_notification.json -#: crm/fcrm/doctype/crm_view_settings/crm_view_settings.json +#. Label of the type (Select) field in PageType 'CRM Call Log' +#. Label of the type (Select) field in PageType 'CRM Deal Status' +#. Label of the type (Select) field in PageType 'CRM Dropdown Item' +#. Label of the type (Select) field in PageType 'CRM Fields Layout' +#. Label of the type (Select) field in PageType 'CRM Global Settings' +#. Label of the type (Select) field in PageType 'CRM Notification' +#. Label of the type (Select) field in PageType 'CRM View Settings' +#: crm/fcrm/pagetype/crm_call_log/crm_call_log.json +#: crm/fcrm/pagetype/crm_deal_status/crm_deal_status.json +#: crm/fcrm/pagetype/crm_dropdown_item/crm_dropdown_item.json +#: crm/fcrm/pagetype/crm_fields_layout/crm_fields_layout.json +#: crm/fcrm/pagetype/crm_global_settings/crm_global_settings.json +#: crm/fcrm/pagetype/crm_notification/crm_notification.json +#: crm/fcrm/pagetype/crm_view_settings/crm_view_settings.json msgid "Type" msgstr "Türü" @@ -5772,12 +5772,12 @@ msgstr "" msgid "Uploading {0}%" msgstr "%{0} Yükleniyor" -#. Label of the user (Link) field in DocType 'CRM Dashboard' -#. Label of the user (Link) field in DocType 'CRM Telephony Agent' -#. Label of the user (Link) field in DocType 'CRM View Settings' -#: crm/fcrm/doctype/crm_dashboard/crm_dashboard.json -#: crm/fcrm/doctype/crm_telephony_agent/crm_telephony_agent.json -#: crm/fcrm/doctype/crm_view_settings/crm_view_settings.json +#. Label of the user (Link) field in PageType 'CRM Dashboard' +#. Label of the user (Link) field in PageType 'CRM Telephony Agent' +#. Label of the user (Link) field in PageType 'CRM View Settings' +#: crm/fcrm/pagetype/crm_dashboard/crm_dashboard.json +#: crm/fcrm/pagetype/crm_telephony_agent/crm_telephony_agent.json +#: crm/fcrm/pagetype/crm_view_settings/crm_view_settings.json msgid "User" msgstr "Kullanıcı" @@ -5785,8 +5785,8 @@ msgstr "Kullanıcı" msgid "User Management" msgstr "" -#. Label of the user_name (Data) field in DocType 'CRM Telephony Agent' -#: crm/fcrm/doctype/crm_telephony_agent/crm_telephony_agent.json +#. Label of the user_name (Data) field in PageType 'CRM Telephony Agent' +#: crm/fcrm/pagetype/crm_telephony_agent/crm_telephony_agent.json msgid "User Name" msgstr "Kullanıcı Adı" @@ -5808,9 +5808,9 @@ msgstr "" msgid "Users are required" msgstr "" -#. Label of the section_break_nevd (Section Break) field in DocType 'CRM +#. Label of the section_break_nevd (Section Break) field in PageType 'CRM #. Service Level Agreement' -#: crm/fcrm/doctype/crm_service_level_agreement/crm_service_level_agreement.json +#: crm/fcrm/pagetype/crm_service_level_agreement/crm_service_level_agreement.json msgid "Validity" msgstr "Geçerlilik" @@ -5834,33 +5834,33 @@ msgstr "Görüntüleme" msgid "Web form" msgstr "" -#. Label of the webhook_verify_token (Data) field in DocType 'CRM Exotel +#. Label of the webhook_verify_token (Data) field in PageType 'CRM Exotel #. Settings' -#: crm/fcrm/doctype/crm_exotel_settings/crm_exotel_settings.json +#: crm/fcrm/pagetype/crm_exotel_settings/crm_exotel_settings.json msgid "Webhook Verify Token" msgstr "" -#. Label of the website (Data) field in DocType 'CRM Deal' -#. Label of the website (Data) field in DocType 'CRM Lead' -#. Label of the website (Data) field in DocType 'CRM Organization' -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_lead/crm_lead.json -#: crm/fcrm/doctype/crm_organization/crm_organization.json +#. Label of the website (Data) field in PageType 'CRM Deal' +#. Label of the website (Data) field in PageType 'CRM Lead' +#. Label of the website (Data) field in PageType 'CRM Organization' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_lead/crm_lead.json +#: crm/fcrm/pagetype/crm_organization/crm_organization.json #: frontend/src/components/Modals/AboutModal.vue:52 msgid "Website" msgstr "Website" -#. Option for the 'Weekly Off' (Select) field in DocType 'CRM Holiday List' -#. Option for the 'Workday' (Select) field in DocType 'CRM Service Day' -#: crm/fcrm/doctype/crm_holiday_list/crm_holiday_list.json -#: crm/fcrm/doctype/crm_service_day/crm_service_day.json +#. Option for the 'Weekly Off' (Select) field in PageType 'CRM Holiday List' +#. Option for the 'Workday' (Select) field in PageType 'CRM Service Day' +#: crm/fcrm/pagetype/crm_holiday_list/crm_holiday_list.json +#: crm/fcrm/pagetype/crm_service_day/crm_service_day.json msgid "Wednesday" msgstr "Çarşamba" -#. Label of the weekly_off (Check) field in DocType 'CRM Holiday' -#. Label of the weekly_off (Select) field in DocType 'CRM Holiday List' -#: crm/fcrm/doctype/crm_holiday/crm_holiday.json -#: crm/fcrm/doctype/crm_holiday_list/crm_holiday_list.json +#. Label of the weekly_off (Check) field in PageType 'CRM Holiday' +#. Label of the weekly_off (Select) field in PageType 'CRM Holiday List' +#: crm/fcrm/pagetype/crm_holiday/crm_holiday.json +#: crm/fcrm/pagetype/crm_holiday_list/crm_holiday_list.json msgid "Weekly Off" msgstr "Haftalık İzin" @@ -5868,7 +5868,7 @@ msgstr "Haftalık İzin" msgid "Welcome Message" msgstr "" -#: crm/fcrm/doctype/helpdesk_crm_settings/helpdesk_crm_settings.py:155 +#: crm/fcrm/pagetype/helpdesk_crm_settings/helpdesk_crm_settings.py:155 msgid "Welcome to Helpdesk" msgstr "" @@ -5876,8 +5876,8 @@ msgstr "" msgid "Welcome {0}, lets add your first lead" msgstr "" -#. Option for the 'Type' (Select) field in DocType 'CRM Notification' -#: crm/fcrm/doctype/crm_notification/crm_notification.json +#. Option for the 'Type' (Select) field in PageType 'CRM Notification' +#: crm/fcrm/pagetype/crm_notification/crm_notification.json #: frontend/src/components/Layouts/AppSidebar.vue:603 #: frontend/src/components/Settings/Settings.vue:190 #: frontend/src/pages/Deal.vue:572 frontend/src/pages/Lead.vue:429 @@ -5902,8 +5902,8 @@ msgstr "Genişlik" msgid "Width can be in number, pixel or rem (eg. 3, 30px, 10rem)" msgstr "" -#. Option for the 'Type' (Select) field in DocType 'CRM Deal Status' -#: crm/fcrm/doctype/crm_deal_status/crm_deal_status.json +#. Option for the 'Type' (Select) field in PageType 'CRM Deal Status' +#: crm/fcrm/pagetype/crm_deal_status/crm_deal_status.json msgid "Won" msgstr "" @@ -5912,16 +5912,16 @@ msgstr "" msgid "Won deals" msgstr "" -#. Label of the workday (Select) field in DocType 'CRM Service Day' -#: crm/fcrm/doctype/crm_service_day/crm_service_day.json +#. Label of the workday (Select) field in PageType 'CRM Service Day' +#: crm/fcrm/pagetype/crm_service_day/crm_service_day.json msgid "Workday" msgstr "Çalışma Günü" -#. Label of the section_break_rmgo (Section Break) field in DocType 'CRM +#. Label of the section_break_rmgo (Section Break) field in PageType 'CRM #. Service Level Agreement' -#. Label of the working_hours (Table) field in DocType 'CRM Service Level +#. Label of the working_hours (Table) field in PageType 'CRM Service Level #. Agreement' -#: crm/fcrm/doctype/crm_service_level_agreement/crm_service_level_agreement.json +#: crm/fcrm/pagetype/crm_service_level_agreement/crm_service_level_agreement.json msgid "Working Hours" msgstr "Çalışma Saatleri" @@ -5967,7 +5967,7 @@ msgstr "" msgid "You do not have permission to access this document" msgstr "" -#: crm/fcrm/doctype/crm_form_script/crm_form_script.py:24 +#: crm/fcrm/pagetype/crm_form_script/crm_form_script.py:24 msgid "You need to be in developer mode to edit a Standard Form Script" msgstr "" @@ -5995,10 +5995,10 @@ msgstr "" msgid "added a" msgstr "" -#. Option for the 'Color' (Select) field in DocType 'CRM Deal Status' -#. Option for the 'Color' (Select) field in DocType 'CRM Lead Status' -#: crm/fcrm/doctype/crm_deal_status/crm_deal_status.json -#: crm/fcrm/doctype/crm_lead_status/crm_lead_status.json +#. Option for the 'Color' (Select) field in PageType 'CRM Deal Status' +#. Option for the 'Color' (Select) field in PageType 'CRM Lead Status' +#: crm/fcrm/pagetype/crm_deal_status/crm_deal_status.json +#: crm/fcrm/pagetype/crm_lead_status/crm_lead_status.json msgid "amber" msgstr "" @@ -6010,17 +6010,17 @@ msgstr "" msgid "assigned a {0} {1} to you" msgstr "" -#. Option for the 'Color' (Select) field in DocType 'CRM Deal Status' -#. Option for the 'Color' (Select) field in DocType 'CRM Lead Status' -#: crm/fcrm/doctype/crm_deal_status/crm_deal_status.json -#: crm/fcrm/doctype/crm_lead_status/crm_lead_status.json +#. Option for the 'Color' (Select) field in PageType 'CRM Deal Status' +#. Option for the 'Color' (Select) field in PageType 'CRM Lead Status' +#: crm/fcrm/pagetype/crm_deal_status/crm_deal_status.json +#: crm/fcrm/pagetype/crm_lead_status/crm_lead_status.json msgid "black" msgstr "siyah" -#. Option for the 'Color' (Select) field in DocType 'CRM Deal Status' -#. Option for the 'Color' (Select) field in DocType 'CRM Lead Status' -#: crm/fcrm/doctype/crm_deal_status/crm_deal_status.json -#: crm/fcrm/doctype/crm_lead_status/crm_lead_status.json +#. Option for the 'Color' (Select) field in PageType 'CRM Deal Status' +#. Option for the 'Color' (Select) field in PageType 'CRM Lead Status' +#: crm/fcrm/pagetype/crm_deal_status/crm_deal_status.json +#: crm/fcrm/pagetype/crm_lead_status/crm_lead_status.json msgid "blue" msgstr "mavi" @@ -6037,10 +6037,10 @@ msgstr "yorum" msgid "condition" msgstr "koşul" -#. Option for the 'Color' (Select) field in DocType 'CRM Deal Status' -#. Option for the 'Color' (Select) field in DocType 'CRM Lead Status' -#: crm/fcrm/doctype/crm_deal_status/crm_deal_status.json -#: crm/fcrm/doctype/crm_lead_status/crm_lead_status.json +#. Option for the 'Color' (Select) field in PageType 'CRM Deal Status' +#. Option for the 'Color' (Select) field in PageType 'CRM Lead Status' +#: crm/fcrm/pagetype/crm_deal_status/crm_deal_status.json +#: crm/fcrm/pagetype/crm_lead_status/crm_lead_status.json msgid "cyan" msgstr "açık Mavi" @@ -6059,33 +6059,33 @@ msgstr "masa" msgid "email already exists" msgstr "" -#. Option for the 'Service Provider' (Select) field in DocType 'FCRM Settings' -#: crm/fcrm/doctype/fcrm_settings/fcrm_settings.json +#. Option for the 'Service Provider' (Select) field in PageType 'FCRM Settings' +#: crm/fcrm/pagetype/fcrm_settings/fcrm_settings.json #: frontend/src/components/Settings/CurrencySettings.vue:106 msgid "exchangerate.host" msgstr "exchangerate.host" -#. Option for the 'Service Provider' (Select) field in DocType 'FCRM Settings' -#: crm/fcrm/doctype/fcrm_settings/fcrm_settings.json +#. Option for the 'Service Provider' (Select) field in PageType 'FCRM Settings' +#: crm/fcrm/pagetype/fcrm_settings/fcrm_settings.json msgid "frankfurter.app" msgstr "frankfurter.app" -#. Option for the 'Color' (Select) field in DocType 'CRM Deal Status' -#. Option for the 'Color' (Select) field in DocType 'CRM Lead Status' -#: crm/fcrm/doctype/crm_deal_status/crm_deal_status.json -#: crm/fcrm/doctype/crm_lead_status/crm_lead_status.json +#. Option for the 'Color' (Select) field in PageType 'CRM Deal Status' +#. Option for the 'Color' (Select) field in PageType 'CRM Lead Status' +#: crm/fcrm/pagetype/crm_deal_status/crm_deal_status.json +#: crm/fcrm/pagetype/crm_lead_status/crm_lead_status.json msgid "gray" msgstr "gri" -#. Option for the 'Color' (Select) field in DocType 'CRM Deal Status' -#. Option for the 'Color' (Select) field in DocType 'CRM Lead Status' -#: crm/fcrm/doctype/crm_deal_status/crm_deal_status.json -#: crm/fcrm/doctype/crm_lead_status/crm_lead_status.json +#. Option for the 'Color' (Select) field in PageType 'CRM Deal Status' +#. Option for the 'Color' (Select) field in PageType 'CRM Lead Status' +#: crm/fcrm/pagetype/crm_deal_status/crm_deal_status.json +#: crm/fcrm/pagetype/crm_lead_status/crm_lead_status.json msgid "green" msgstr "yeşil" -#. Option for the 'Type' (Select) field in DocType 'CRM View Settings' -#: crm/fcrm/doctype/crm_view_settings/crm_view_settings.json +#. Option for the 'Type' (Select) field in PageType 'CRM View Settings' +#: crm/fcrm/pagetype/crm_view_settings/crm_view_settings.json msgid "group_by" msgstr "" @@ -6170,12 +6170,12 @@ msgstr "" msgid "just now" msgstr "Şimdi" -#. Option for the 'Type' (Select) field in DocType 'CRM View Settings' -#: crm/fcrm/doctype/crm_view_settings/crm_view_settings.json +#. Option for the 'Type' (Select) field in PageType 'CRM View Settings' +#: crm/fcrm/pagetype/crm_view_settings/crm_view_settings.json msgid "kanban" msgstr "kanban" -#: crm/api/doc.py:40 crm/api/doc.py:158 crm/api/doc.py:503 +#: crm/api/pg.py:40 crm/api/pg.py:158 crm/api/pg.py:503 msgid "label" msgstr "etiket" @@ -6184,8 +6184,8 @@ msgstr "etiket" msgid "leads" msgstr "adaylar" -#. Option for the 'Type' (Select) field in DocType 'CRM View Settings' -#: crm/fcrm/doctype/crm_view_settings/crm_view_settings.json +#. Option for the 'Type' (Select) field in PageType 'CRM View Settings' +#: crm/fcrm/pagetype/crm_view_settings/crm_view_settings.json msgid "list" msgstr "liste" @@ -6206,17 +6206,17 @@ msgstr "şimdi" msgid "operator" msgstr "operatör" -#. Option for the 'Color' (Select) field in DocType 'CRM Deal Status' -#. Option for the 'Color' (Select) field in DocType 'CRM Lead Status' -#: crm/fcrm/doctype/crm_deal_status/crm_deal_status.json -#: crm/fcrm/doctype/crm_lead_status/crm_lead_status.json +#. Option for the 'Color' (Select) field in PageType 'CRM Deal Status' +#. Option for the 'Color' (Select) field in PageType 'CRM Lead Status' +#: crm/fcrm/pagetype/crm_deal_status/crm_deal_status.json +#: crm/fcrm/pagetype/crm_lead_status/crm_lead_status.json msgid "orange" msgstr "turuncu" -#. Option for the 'Color' (Select) field in DocType 'CRM Deal Status' -#. Option for the 'Color' (Select) field in DocType 'CRM Lead Status' -#: crm/fcrm/doctype/crm_deal_status/crm_deal_status.json -#: crm/fcrm/doctype/crm_lead_status/crm_lead_status.json +#. Option for the 'Color' (Select) field in PageType 'CRM Deal Status' +#. Option for the 'Color' (Select) field in PageType 'CRM Lead Status' +#: crm/fcrm/pagetype/crm_deal_status/crm_deal_status.json +#: crm/fcrm/pagetype/crm_lead_status/crm_lead_status.json msgid "pink" msgstr "pembe" @@ -6232,10 +6232,10 @@ msgstr "özel" msgid "public" msgstr "herkese Açık" -#. Option for the 'Color' (Select) field in DocType 'CRM Deal Status' -#. Option for the 'Color' (Select) field in DocType 'CRM Lead Status' -#: crm/fcrm/doctype/crm_deal_status/crm_deal_status.json -#: crm/fcrm/doctype/crm_lead_status/crm_lead_status.json +#. Option for the 'Color' (Select) field in PageType 'CRM Deal Status' +#. Option for the 'Color' (Select) field in PageType 'CRM Lead Status' +#: crm/fcrm/pagetype/crm_deal_status/crm_deal_status.json +#: crm/fcrm/pagetype/crm_lead_status/crm_lead_status.json msgid "purple" msgstr "mor" @@ -6243,17 +6243,17 @@ msgstr "mor" msgid "received a whatsapp message in {0}" msgstr "" -#. Option for the 'Color' (Select) field in DocType 'CRM Deal Status' -#. Option for the 'Color' (Select) field in DocType 'CRM Lead Status' -#: crm/fcrm/doctype/crm_deal_status/crm_deal_status.json -#: crm/fcrm/doctype/crm_lead_status/crm_lead_status.json +#. Option for the 'Color' (Select) field in PageType 'CRM Deal Status' +#. Option for the 'Color' (Select) field in PageType 'CRM Lead Status' +#: crm/fcrm/pagetype/crm_deal_status/crm_deal_status.json +#: crm/fcrm/pagetype/crm_lead_status/crm_lead_status.json msgid "red" msgstr "kırmızı" -#. Option for the 'Color' (Select) field in DocType 'CRM Deal Status' -#. Option for the 'Color' (Select) field in DocType 'CRM Lead Status' -#: crm/fcrm/doctype/crm_deal_status/crm_deal_status.json -#: crm/fcrm/doctype/crm_lead_status/crm_lead_status.json +#. Option for the 'Color' (Select) field in PageType 'CRM Deal Status' +#. Option for the 'Color' (Select) field in PageType 'CRM Lead Status' +#: crm/fcrm/pagetype/crm_deal_status/crm_deal_status.json +#: crm/fcrm/pagetype/crm_lead_status/crm_lead_status.json msgid "teal" msgstr "" @@ -6266,10 +6266,10 @@ msgstr "giden" msgid "tomorrow" msgstr "yarın" -#. Option for the 'Color' (Select) field in DocType 'CRM Deal Status' -#. Option for the 'Color' (Select) field in DocType 'CRM Lead Status' -#: crm/fcrm/doctype/crm_deal_status/crm_deal_status.json -#: crm/fcrm/doctype/crm_lead_status/crm_lead_status.json +#. Option for the 'Color' (Select) field in PageType 'CRM Deal Status' +#. Option for the 'Color' (Select) field in PageType 'CRM Lead Status' +#: crm/fcrm/pagetype/crm_deal_status/crm_deal_status.json +#: crm/fcrm/pagetype/crm_lead_status/crm_lead_status.json msgid "violet" msgstr "mor" @@ -6278,10 +6278,10 @@ msgstr "mor" msgid "which are not compatible with this UI, you will need to recreate the conditions here if you want to manage and add new conditions from this UI." msgstr "" -#. Option for the 'Color' (Select) field in DocType 'CRM Deal Status' -#. Option for the 'Color' (Select) field in DocType 'CRM Lead Status' -#: crm/fcrm/doctype/crm_deal_status/crm_deal_status.json -#: crm/fcrm/doctype/crm_lead_status/crm_lead_status.json +#. Option for the 'Color' (Select) field in PageType 'CRM Deal Status' +#. Option for the 'Color' (Select) field in PageType 'CRM Lead Status' +#: crm/fcrm/pagetype/crm_deal_status/crm_deal_status.json +#: crm/fcrm/pagetype/crm_lead_status/crm_lead_status.json msgid "yellow" msgstr "sarı" @@ -6379,7 +6379,7 @@ msgid "⚠️ Method \"{0}\" not found in class." msgstr "" #: frontend/src/data/script.js:83 -msgid "⚠️ No class found for doctype: {0}, it is mandatory to have a class for the parent doctype. it can be empty, but it should be present." +msgid "⚠️ No class found for pagetype: {0}, it is mandatory to have a class for the parent pagetype. it can be empty, but it should be present." msgstr "" #: frontend/src/data/script.js:180 diff --git a/crm/locale/vi.po b/crm/locale/vi.po index 85e4da05..c992b6d1 100644 --- a/crm/locale/vi.po +++ b/crm/locale/vi.po @@ -1,6 +1,6 @@ msgid "" msgstr "" -"Project-Id-Version: frappe\n" +"Project-Id-Version: jingrow\n" "Report-Msgid-Bugs-To: shariq@jingrow.com\n" "POT-Creation-Date: 2025-09-21 09:35+0000\n" "PO-Revision-Date: 2025-09-22 20:42\n" @@ -11,10 +11,10 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Generated-By: Babel 2.16.0\n" "Plural-Forms: nplurals=1; plural=0;\n" -"X-Crowdin-Project: frappe\n" +"X-Crowdin-Project: jingrow\n" "X-Crowdin-Project-ID: 639578\n" "X-Crowdin-Language: vi\n" -"X-Crowdin-File: /[frappe.crm] develop/crm/locale/main.pot\n" +"X-Crowdin-File: /[jingrow.crm] develop/crm/locale/main.pot\n" "X-Crowdin-File-ID: 97\n" "Language: vi_VN\n" @@ -55,73 +55,73 @@ msgstr "" msgid "1 year ago" msgstr "" -#. Option for the 'No. of Employees' (Select) field in DocType 'CRM Deal' -#. Option for the 'No. of Employees' (Select) field in DocType 'CRM Lead' -#. Option for the 'No. of Employees' (Select) field in DocType 'CRM +#. Option for the 'No. of Employees' (Select) field in PageType 'CRM Deal' +#. Option for the 'No. of Employees' (Select) field in PageType 'CRM Lead' +#. Option for the 'No. of Employees' (Select) field in PageType 'CRM #. Organization' -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_lead/crm_lead.json -#: crm/fcrm/doctype/crm_organization/crm_organization.json +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_lead/crm_lead.json +#: crm/fcrm/pagetype/crm_organization/crm_organization.json msgid "1-10" msgstr "" -#. Option for the 'No. of Employees' (Select) field in DocType 'CRM Deal' -#. Option for the 'No. of Employees' (Select) field in DocType 'CRM Lead' -#. Option for the 'No. of Employees' (Select) field in DocType 'CRM +#. Option for the 'No. of Employees' (Select) field in PageType 'CRM Deal' +#. Option for the 'No. of Employees' (Select) field in PageType 'CRM Lead' +#. Option for the 'No. of Employees' (Select) field in PageType 'CRM #. Organization' -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_lead/crm_lead.json -#: crm/fcrm/doctype/crm_organization/crm_organization.json +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_lead/crm_lead.json +#: crm/fcrm/pagetype/crm_organization/crm_organization.json msgid "1000+" msgstr "" -#. Option for the 'No. of Employees' (Select) field in DocType 'CRM Deal' -#. Option for the 'No. of Employees' (Select) field in DocType 'CRM Lead' -#. Option for the 'No. of Employees' (Select) field in DocType 'CRM +#. Option for the 'No. of Employees' (Select) field in PageType 'CRM Deal' +#. Option for the 'No. of Employees' (Select) field in PageType 'CRM Lead' +#. Option for the 'No. of Employees' (Select) field in PageType 'CRM #. Organization' -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_lead/crm_lead.json -#: crm/fcrm/doctype/crm_organization/crm_organization.json +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_lead/crm_lead.json +#: crm/fcrm/pagetype/crm_organization/crm_organization.json msgid "11-50" msgstr "" -#. Option for the 'No. of Employees' (Select) field in DocType 'CRM Deal' -#. Option for the 'No. of Employees' (Select) field in DocType 'CRM Lead' -#. Option for the 'No. of Employees' (Select) field in DocType 'CRM +#. Option for the 'No. of Employees' (Select) field in PageType 'CRM Deal' +#. Option for the 'No. of Employees' (Select) field in PageType 'CRM Lead' +#. Option for the 'No. of Employees' (Select) field in PageType 'CRM #. Organization' -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_lead/crm_lead.json -#: crm/fcrm/doctype/crm_organization/crm_organization.json +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_lead/crm_lead.json +#: crm/fcrm/pagetype/crm_organization/crm_organization.json msgid "201-500" msgstr "" -#. Option for the 'No. of Employees' (Select) field in DocType 'CRM Deal' -#. Option for the 'No. of Employees' (Select) field in DocType 'CRM Lead' -#. Option for the 'No. of Employees' (Select) field in DocType 'CRM +#. Option for the 'No. of Employees' (Select) field in PageType 'CRM Deal' +#. Option for the 'No. of Employees' (Select) field in PageType 'CRM Lead' +#. Option for the 'No. of Employees' (Select) field in PageType 'CRM #. Organization' -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_lead/crm_lead.json -#: crm/fcrm/doctype/crm_organization/crm_organization.json +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_lead/crm_lead.json +#: crm/fcrm/pagetype/crm_organization/crm_organization.json msgid "501-1000" msgstr "" -#. Option for the 'No. of Employees' (Select) field in DocType 'CRM Deal' -#. Option for the 'No. of Employees' (Select) field in DocType 'CRM Lead' -#. Option for the 'No. of Employees' (Select) field in DocType 'CRM +#. Option for the 'No. of Employees' (Select) field in PageType 'CRM Deal' +#. Option for the 'No. of Employees' (Select) field in PageType 'CRM Lead' +#. Option for the 'No. of Employees' (Select) field in PageType 'CRM #. Organization' -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_lead/crm_lead.json -#: crm/fcrm/doctype/crm_organization/crm_organization.json +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_lead/crm_lead.json +#: crm/fcrm/pagetype/crm_organization/crm_organization.json msgid "51-200" msgstr "" -#. Paragraph text in the Frappe CRM Workspace -#: crm/fcrm/workspace/frappe_crm/frappe_crm.json +#. Paragraph text in the Jingrow CRM Workspace +#: crm/fcrm/workspace/jingrow_crm/jingrow_crm.json msgid "META" msgstr "" -#. Paragraph text in the Frappe CRM Workspace -#: crm/fcrm/workspace/frappe_crm/frappe_crm.json +#. Paragraph text in the Jingrow CRM Workspace +#: crm/fcrm/workspace/jingrow_crm/jingrow_crm.json msgid "SHORTCUTS" msgstr "" @@ -130,8 +130,8 @@ msgstr "" msgid "

Dear {{ lead_name }},

\\n\\n

This is a reminder for the payment of {{ grand_total }}.

\\n\\n

Thanks,

\\n

Frappé

" msgstr "" -#. Header text in the Frappe CRM Workspace -#: crm/fcrm/workspace/frappe_crm/frappe_crm.json +#. Header text in the Jingrow CRM Workspace +#: crm/fcrm/workspace/jingrow_crm/jingrow_crm.json msgid "PORTAL" msgstr "" @@ -139,7 +139,7 @@ msgstr "" msgid "@John, can you please check this?" msgstr "" -#: crm/fcrm/doctype/crm_lead/crm_lead.py:56 +#: crm/fcrm/pagetype/crm_lead/crm_lead.py:56 msgid "A Lead requires either a person's name or an organization's name" msgstr "" @@ -147,14 +147,14 @@ msgstr "" msgid "A new account has been created for you at {0}" msgstr "" -#. Label of the api_key (Data) field in DocType 'CRM Exotel Settings' -#. Label of the api_key (Data) field in DocType 'CRM Twilio Settings' -#. Label of the api_key (Data) field in DocType 'ERPNext CRM Settings' -#. Label of the api_key (Data) field in DocType 'Helpdesk CRM Settings' -#: crm/fcrm/doctype/crm_exotel_settings/crm_exotel_settings.json -#: crm/fcrm/doctype/crm_twilio_settings/crm_twilio_settings.json -#: crm/fcrm/doctype/erpnext_crm_settings/erpnext_crm_settings.json -#: crm/fcrm/doctype/helpdesk_crm_settings/helpdesk_crm_settings.json +#. Label of the api_key (Data) field in PageType 'CRM Exotel Settings' +#. Label of the api_key (Data) field in PageType 'CRM Twilio Settings' +#. Label of the api_key (Data) field in PageType 'ERPNext CRM Settings' +#. Label of the api_key (Data) field in PageType 'Helpdesk CRM Settings' +#: crm/fcrm/pagetype/crm_exotel_settings/crm_exotel_settings.json +#: crm/fcrm/pagetype/crm_twilio_settings/crm_twilio_settings.json +#: crm/fcrm/pagetype/erpnext_crm_settings/erpnext_crm_settings.json +#: crm/fcrm/pagetype/helpdesk_crm_settings/helpdesk_crm_settings.json msgid "API Key" msgstr "" @@ -162,17 +162,17 @@ msgstr "" msgid "API Key is required" msgstr "" -#. Label of the api_secret (Password) field in DocType 'CRM Twilio Settings' -#. Label of the api_secret (Password) field in DocType 'ERPNext CRM Settings' -#. Label of the api_secret (Password) field in DocType 'Helpdesk CRM Settings' -#: crm/fcrm/doctype/crm_twilio_settings/crm_twilio_settings.json -#: crm/fcrm/doctype/erpnext_crm_settings/erpnext_crm_settings.json -#: crm/fcrm/doctype/helpdesk_crm_settings/helpdesk_crm_settings.json +#. Label of the api_secret (Password) field in PageType 'CRM Twilio Settings' +#. Label of the api_secret (Password) field in PageType 'ERPNext CRM Settings' +#. Label of the api_secret (Password) field in PageType 'Helpdesk CRM Settings' +#: crm/fcrm/pagetype/crm_twilio_settings/crm_twilio_settings.json +#: crm/fcrm/pagetype/erpnext_crm_settings/erpnext_crm_settings.json +#: crm/fcrm/pagetype/helpdesk_crm_settings/helpdesk_crm_settings.json msgid "API Secret" msgstr "" -#. Label of the api_token (Password) field in DocType 'CRM Exotel Settings' -#: crm/fcrm/doctype/crm_exotel_settings/crm_exotel_settings.json +#. Label of the api_token (Password) field in PageType 'CRM Exotel Settings' +#: crm/fcrm/pagetype/crm_exotel_settings/crm_exotel_settings.json msgid "API Token" msgstr "" @@ -180,7 +180,7 @@ msgstr "" msgid "Accept" msgstr "" -#: crm/fcrm/doctype/crm_invitation/crm_invitation.js:7 +#: crm/fcrm/pagetype/crm_invitation/crm_invitation.js:7 msgid "Accept Invitation" msgstr "" @@ -188,22 +188,22 @@ msgstr "" msgid "Accept call" msgstr "" -#. Option for the 'Status' (Select) field in DocType 'CRM Invitation' -#: crm/fcrm/doctype/crm_invitation/crm_invitation.json +#. Option for the 'Status' (Select) field in PageType 'CRM Invitation' +#: crm/fcrm/pagetype/crm_invitation/crm_invitation.json msgid "Accepted" msgstr "" -#. Label of the accepted_at (Datetime) field in DocType 'CRM Invitation' -#: crm/fcrm/doctype/crm_invitation/crm_invitation.json +#. Label of the accepted_at (Datetime) field in PageType 'CRM Invitation' +#: crm/fcrm/pagetype/crm_invitation/crm_invitation.json msgid "Accepted At" msgstr "" -#. Label of the access_key (Data) field in DocType 'FCRM Settings' -#: crm/fcrm/doctype/fcrm_settings/fcrm_settings.json +#. Label of the access_key (Data) field in PageType 'FCRM Settings' +#: crm/fcrm/pagetype/fcrm_settings/fcrm_settings.json msgid "Access Key" msgstr "" -#: crm/fcrm/doctype/fcrm_settings/fcrm_settings.py:156 +#: crm/fcrm/pagetype/fcrm_settings/fcrm_settings.py:156 msgid "Access Key is required for Service Provider: {0}" msgstr "" @@ -219,10 +219,10 @@ msgstr "" msgid "Account Name" msgstr "" -#. Label of the account_sid (Data) field in DocType 'CRM Exotel Settings' -#. Label of the account_sid (Data) field in DocType 'CRM Twilio Settings' -#: crm/fcrm/doctype/crm_exotel_settings/crm_exotel_settings.json -#: crm/fcrm/doctype/crm_twilio_settings/crm_twilio_settings.json +#. Label of the account_sid (Data) field in PageType 'CRM Exotel Settings' +#. Label of the account_sid (Data) field in PageType 'CRM Twilio Settings' +#: crm/fcrm/pagetype/crm_exotel_settings/crm_exotel_settings.json +#: crm/fcrm/pagetype/crm_twilio_settings/crm_twilio_settings.json msgid "Account SID" msgstr "" @@ -296,9 +296,9 @@ msgstr "" msgid "Add Tab" msgstr "" -#. Label of the add_weekly_holidays_section (Section Break) field in DocType +#. Label of the add_weekly_holidays_section (Section Break) field in PageType #. 'CRM Holiday List' -#: crm/fcrm/doctype/crm_holiday_list/crm_holiday_list.json +#: crm/fcrm/pagetype/crm_holiday_list/crm_holiday_list.json msgid "Add Weekly Holidays" msgstr "" @@ -363,8 +363,8 @@ msgstr "" msgid "Add sample data" msgstr "" -#. Description of the 'Icon' (Code) field in DocType 'CRM Dropdown Item' -#: crm/fcrm/doctype/crm_dropdown_item/crm_dropdown_item.json +#. Description of the 'Icon' (Code) field in PageType 'CRM Dropdown Item' +#: crm/fcrm/pagetype/crm_dropdown_item/crm_dropdown_item.json msgid "Add svg code or use feather icons e.g 'settings'" msgstr "" @@ -372,8 +372,8 @@ msgstr "" msgid "Add task" msgstr "" -#. Label of the add_to_holidays (Button) field in DocType 'CRM Holiday List' -#: crm/fcrm/doctype/crm_holiday_list/crm_holiday_list.json +#. Label of the add_to_holidays (Button) field in PageType 'CRM Holiday List' +#: crm/fcrm/pagetype/crm_holiday_list/crm_holiday_list.json msgid "Add to Holidays" msgstr "" @@ -385,8 +385,8 @@ msgstr "" msgid "Add, edit, and manage email templates for various CRM communications" msgstr "" -#. Label of the address (Link) field in DocType 'CRM Organization' -#: crm/fcrm/doctype/crm_organization/crm_organization.json +#. Label of the address (Link) field in PageType 'CRM Organization' +#: crm/fcrm/pagetype/crm_organization/crm_organization.json msgid "Address" msgstr "" @@ -406,14 +406,14 @@ msgid "Agent is unavailable to take the call, please call after some time." msgstr "" #. Name of a role -#: crm/fcrm/doctype/crm_exotel_settings/crm_exotel_settings.json -#: crm/fcrm/doctype/crm_fields_layout/crm_fields_layout.json -#: crm/fcrm/doctype/crm_form_script/crm_form_script.json -#: crm/fcrm/doctype/crm_industry/crm_industry.json -#: crm/fcrm/doctype/crm_lead/crm_lead.json -#: crm/fcrm/doctype/crm_lead_source/crm_lead_source.json -#: crm/fcrm/doctype/crm_lead_status/crm_lead_status.json -#: crm/fcrm/doctype/fcrm_settings/fcrm_settings.json +#: crm/fcrm/pagetype/crm_exotel_settings/crm_exotel_settings.json +#: crm/fcrm/pagetype/crm_fields_layout/crm_fields_layout.json +#: crm/fcrm/pagetype/crm_form_script/crm_form_script.json +#: crm/fcrm/pagetype/crm_industry/crm_industry.json +#: crm/fcrm/pagetype/crm_lead/crm_lead.json +#: crm/fcrm/pagetype/crm_lead_source/crm_lead_source.json +#: crm/fcrm/pagetype/crm_lead_status/crm_lead_status.json +#: crm/fcrm/pagetype/fcrm_settings/fcrm_settings.json #: frontend/src/components/Settings/EmailTemplate/EmailTemplates.vue:76 #: frontend/src/components/Settings/Users.vue:85 msgid "All" @@ -426,16 +426,16 @@ msgstr "" msgid "All day" msgstr "" -#. Label of the amount (Currency) field in DocType 'CRM Products' -#: crm/fcrm/doctype/crm_products/crm_products.json +#. Label of the amount (Currency) field in PageType 'CRM Products' +#: crm/fcrm/pagetype/crm_products/crm_products.json #: frontend/src/pages/Contact.vue:499 frontend/src/pages/MobileContact.vue:507 #: frontend/src/pages/MobileOrganization.vue:451 #: frontend/src/pages/Organization.vue:472 msgid "Amount" msgstr "" -#. Description of the 'Net Amount' (Currency) field in DocType 'CRM Products' -#: crm/fcrm/doctype/crm_products/crm_products.json +#. Description of the 'Net Amount' (Currency) field in PageType 'CRM Products' +#: crm/fcrm/pagetype/crm_products/crm_products.json msgid "Amount after discount" msgstr "" @@ -447,13 +447,13 @@ msgstr "" msgid "An error occurred while updating the document" msgstr "" -#. Description of the 'Favicon' (Attach) field in DocType 'FCRM Settings' -#: crm/fcrm/doctype/fcrm_settings/fcrm_settings.json +#. Description of the 'Favicon' (Attach) field in PageType 'FCRM Settings' +#: crm/fcrm/pagetype/fcrm_settings/fcrm_settings.json msgid "An icon file with .ico extension. Should be 16 x 16 px. Generated using a favicon generator. [favicon-generator.org]" msgstr "" -#. Description of the 'Logo' (Attach) field in DocType 'FCRM Settings' -#: crm/fcrm/doctype/fcrm_settings/fcrm_settings.json +#. Description of the 'Logo' (Attach) field in PageType 'FCRM Settings' +#: crm/fcrm/pagetype/fcrm_settings/fcrm_settings.json msgid "An image with 1:1 & 2:1 ratio is preferred" msgstr "" @@ -461,12 +461,12 @@ msgstr "" msgid "And" msgstr "" -#. Label of the annual_revenue (Currency) field in DocType 'CRM Deal' -#. Label of the annual_revenue (Currency) field in DocType 'CRM Lead' -#. Label of the annual_revenue (Currency) field in DocType 'CRM Organization' -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_lead/crm_lead.json -#: crm/fcrm/doctype/crm_organization/crm_organization.json +#. Label of the annual_revenue (Currency) field in PageType 'CRM Deal' +#. Label of the annual_revenue (Currency) field in PageType 'CRM Lead' +#. Label of the annual_revenue (Currency) field in PageType 'CRM Organization' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_lead/crm_lead.json +#: crm/fcrm/pagetype/crm_organization/crm_organization.json msgid "Annual Revenue" msgstr "" @@ -488,13 +488,13 @@ msgstr "" msgid "Apply" msgstr "" -#. Label of the apply_on (Link) field in DocType 'CRM Service Level Agreement' -#: crm/fcrm/doctype/crm_service_level_agreement/crm_service_level_agreement.json +#. Label of the apply_on (Link) field in PageType 'CRM Service Level Agreement' +#: crm/fcrm/pagetype/crm_service_level_agreement/crm_service_level_agreement.json msgid "Apply On" msgstr "" -#. Label of the view (Select) field in DocType 'CRM Form Script' -#: crm/fcrm/doctype/crm_form_script/crm_form_script.json +#. Label of the view (Select) field in PageType 'CRM Form Script' +#: crm/fcrm/pagetype/crm_form_script/crm_form_script.json msgid "Apply To" msgstr "" @@ -540,10 +540,10 @@ msgid "Are you sure you want to go back? Unsaved changes will be lost." msgstr "" #: frontend/src/composables/frappecloud.js:24 -msgid "Are you sure you want to login to your Frappe Cloud dashboard?" +msgid "Are you sure you want to login to your Jingrow Cloud dashboard?" msgstr "" -#: crm/fcrm/doctype/erpnext_crm_settings/erpnext_crm_settings.js:9 +#: crm/fcrm/pagetype/erpnext_crm_settings/erpnext_crm_settings.js:9 msgid "Are you sure you want to reset 'Create Quotation from CRM Deal' Form Script?" msgstr "" @@ -555,7 +555,7 @@ msgstr "" msgid "Are you sure you want to unlink {0} linked item(s)?" msgstr "" -#: crm/fcrm/doctype/fcrm_settings/fcrm_settings.py:193 +#: crm/fcrm/pagetype/fcrm_settings/fcrm_settings.py:193 msgid "Ask your manager to set up the Exchange Rate Provider, as default provider does not support currency conversion for {0} to {1}." msgstr "" @@ -581,8 +581,8 @@ msgstr "" msgid "Assign to me" msgstr "" -#. Label of the assigned_to (Link) field in DocType 'CRM Task' -#: crm/fcrm/doctype/crm_task/crm_task.json +#. Label of the assigned_to (Link) field in PageType 'CRM Task' +#: crm/fcrm/pagetype/crm_task/crm_task.json msgid "Assigned To" msgstr "" @@ -594,13 +594,13 @@ msgstr "" msgid "Assignees" msgstr "" -#. Option for the 'Type' (Select) field in DocType 'CRM Notification' -#: crm/fcrm/doctype/crm_notification/crm_notification.json +#. Option for the 'Type' (Select) field in PageType 'CRM Notification' +#: crm/fcrm/pagetype/crm_notification/crm_notification.json msgid "Assignment" msgstr "" -#. Label of a shortcut in the Frappe CRM Workspace -#: crm/fcrm/workspace/frappe_crm/frappe_crm.json +#. Label of a shortcut in the Jingrow CRM Workspace +#: crm/fcrm/workspace/jingrow_crm/jingrow_crm.json msgid "Assignment Rule" msgstr "" @@ -678,14 +678,14 @@ msgstr "" msgid "Attendees" msgstr "" -#. Label of the auth_token (Password) field in DocType 'CRM Twilio Settings' -#: crm/fcrm/doctype/crm_twilio_settings/crm_twilio_settings.json +#. Label of the auth_token (Password) field in PageType 'CRM Twilio Settings' +#: crm/fcrm/pagetype/crm_twilio_settings/crm_twilio_settings.json msgid "Auth Token" msgstr "" -#. Label of the auto_update_expected_deal_value (Check) field in DocType 'FCRM +#. Label of the auto_update_expected_deal_value (Check) field in PageType 'FCRM #. Settings' -#: crm/fcrm/doctype/fcrm_settings/fcrm_settings.json +#: crm/fcrm/pagetype/fcrm_settings/fcrm_settings.json msgid "Auto Update Expected Deal Value" msgstr "" @@ -702,8 +702,8 @@ msgid "Auto update of expected deal value enabled" msgstr "" #. Description of the 'Auto Update Expected Deal Value' (Check) field in -#. DocType 'FCRM Settings' -#: crm/fcrm/doctype/fcrm_settings/fcrm_settings.json +#. PageType 'FCRM Settings' +#: crm/fcrm/pagetype/fcrm_settings/fcrm_settings.json #: frontend/src/components/Settings/ForecastingSettings.vue:46 msgid "Automatically update \"Expected Deal Value\" based on the total value of associated products in a deal" msgstr "" @@ -793,8 +793,8 @@ msgstr "" msgid "Back to file upload" msgstr "" -#. Option for the 'Status' (Select) field in DocType 'CRM Task' -#: crm/fcrm/doctype/crm_task/crm_task.json +#. Option for the 'Status' (Select) field in PageType 'CRM Task' +#: crm/fcrm/pagetype/crm_task/crm_task.json msgid "Backlog" msgstr "" @@ -818,8 +818,8 @@ msgstr "" msgid "Brand settings" msgstr "" -#. Label of the branding_tab (Tab Break) field in DocType 'FCRM Settings' -#: crm/fcrm/doctype/fcrm_settings/fcrm_settings.json +#. Label of the branding_tab (Tab Break) field in PageType 'FCRM Settings' +#: crm/fcrm/pagetype/fcrm_settings/fcrm_settings.json msgid "Branding" msgstr "" @@ -827,8 +827,8 @@ msgstr "" msgid "Bulk Edit" msgstr "" -#. Option for the 'Status' (Select) field in DocType 'CRM Call Log' -#: crm/fcrm/doctype/crm_call_log/crm_call_log.json +#. Option for the 'Status' (Select) field in PageType 'CRM Call Log' +#: crm/fcrm/pagetype/crm_call_log/crm_call_log.json msgid "Busy" msgstr "" @@ -838,174 +838,174 @@ msgstr "" msgid "CC" msgstr "" -#. Name of a DocType -#: crm/fcrm/doctype/crm_call_log/crm_call_log.json +#. Name of a PageType +#: crm/fcrm/pagetype/crm_call_log/crm_call_log.json msgid "CRM Call Log" msgstr "" -#. Name of a DocType -#: crm/fcrm/doctype/crm_communication_status/crm_communication_status.json +#. Name of a PageType +#: crm/fcrm/pagetype/crm_communication_status/crm_communication_status.json msgid "CRM Communication Status" msgstr "" -#. Name of a DocType -#: crm/fcrm/doctype/crm_contacts/crm_contacts.json +#. Name of a PageType +#: crm/fcrm/pagetype/crm_contacts/crm_contacts.json msgid "CRM Contacts" msgstr "" -#. Name of a DocType -#: crm/fcrm/doctype/crm_dashboard/crm_dashboard.json +#. Name of a PageType +#: crm/fcrm/pagetype/crm_dashboard/crm_dashboard.json #: frontend/src/pages/Dashboard.vue:304 msgid "CRM Dashboard" msgstr "" -#. Name of a DocType -#: crm/fcrm/doctype/crm_deal/crm_deal.json +#. Name of a PageType +#: crm/fcrm/pagetype/crm_deal/crm_deal.json msgid "CRM Deal" msgstr "" -#. Name of a DocType -#: crm/fcrm/doctype/crm_deal_status/crm_deal_status.json +#. Name of a PageType +#: crm/fcrm/pagetype/crm_deal_status/crm_deal_status.json msgid "CRM Deal Status" msgstr "" -#. Name of a DocType -#: crm/fcrm/doctype/crm_dropdown_item/crm_dropdown_item.json +#. Name of a PageType +#: crm/fcrm/pagetype/crm_dropdown_item/crm_dropdown_item.json msgid "CRM Dropdown Item" msgstr "" -#. Name of a DocType -#: crm/fcrm/doctype/crm_exotel_settings/crm_exotel_settings.json +#. Name of a PageType +#: crm/fcrm/pagetype/crm_exotel_settings/crm_exotel_settings.json msgid "CRM Exotel Settings" msgstr "" -#. Name of a DocType -#: crm/fcrm/doctype/crm_fields_layout/crm_fields_layout.json +#. Name of a PageType +#: crm/fcrm/pagetype/crm_fields_layout/crm_fields_layout.json msgid "CRM Fields Layout" msgstr "" -#. Name of a DocType -#: crm/fcrm/doctype/crm_form_script/crm_form_script.json +#. Name of a PageType +#: crm/fcrm/pagetype/crm_form_script/crm_form_script.json msgid "CRM Form Script" msgstr "" -#. Name of a DocType -#: crm/fcrm/doctype/crm_global_settings/crm_global_settings.json +#. Name of a PageType +#: crm/fcrm/pagetype/crm_global_settings/crm_global_settings.json msgid "CRM Global Settings" msgstr "" -#. Name of a DocType -#: crm/fcrm/doctype/crm_holiday/crm_holiday.json +#. Name of a PageType +#: crm/fcrm/pagetype/crm_holiday/crm_holiday.json msgid "CRM Holiday" msgstr "" -#. Name of a DocType -#: crm/fcrm/doctype/crm_holiday_list/crm_holiday_list.json +#. Name of a PageType +#: crm/fcrm/pagetype/crm_holiday_list/crm_holiday_list.json msgid "CRM Holiday List" msgstr "" -#. Name of a DocType -#: crm/fcrm/doctype/crm_industry/crm_industry.json +#. Name of a PageType +#: crm/fcrm/pagetype/crm_industry/crm_industry.json msgid "CRM Industry" msgstr "" -#. Name of a DocType -#: crm/fcrm/doctype/crm_invitation/crm_invitation.json +#. Name of a PageType +#: crm/fcrm/pagetype/crm_invitation/crm_invitation.json msgid "CRM Invitation" msgstr "" -#. Name of a DocType -#: crm/fcrm/doctype/crm_lead/crm_lead.json +#. Name of a PageType +#: crm/fcrm/pagetype/crm_lead/crm_lead.json msgid "CRM Lead" msgstr "" -#. Name of a DocType -#: crm/fcrm/doctype/crm_lead_source/crm_lead_source.json +#. Name of a PageType +#: crm/fcrm/pagetype/crm_lead_source/crm_lead_source.json msgid "CRM Lead Source" msgstr "" -#. Name of a DocType -#: crm/fcrm/doctype/crm_lead_status/crm_lead_status.json +#. Name of a PageType +#: crm/fcrm/pagetype/crm_lead_status/crm_lead_status.json msgid "CRM Lead Status" msgstr "" -#. Name of a DocType -#: crm/fcrm/doctype/crm_lost_reason/crm_lost_reason.json +#. Name of a PageType +#: crm/fcrm/pagetype/crm_lost_reason/crm_lost_reason.json msgid "CRM Lost Reason" msgstr "" -#. Name of a DocType -#: crm/fcrm/doctype/crm_notification/crm_notification.json +#. Name of a PageType +#: crm/fcrm/pagetype/crm_notification/crm_notification.json msgid "CRM Notification" msgstr "" -#. Name of a DocType -#: crm/fcrm/doctype/crm_organization/crm_organization.json +#. Name of a PageType +#: crm/fcrm/pagetype/crm_organization/crm_organization.json msgid "CRM Organization" msgstr "" -#. Label of a shortcut in the Frappe CRM Workspace -#: crm/fcrm/workspace/frappe_crm/frappe_crm.json +#. Label of a shortcut in the Jingrow CRM Workspace +#: crm/fcrm/workspace/jingrow_crm/jingrow_crm.json msgid "CRM Portal Page" msgstr "" -#. Name of a DocType -#: crm/fcrm/doctype/crm_product/crm_product.json +#. Name of a PageType +#: crm/fcrm/pagetype/crm_product/crm_product.json msgid "CRM Product" msgstr "" -#. Name of a DocType -#: crm/fcrm/doctype/crm_products/crm_products.json +#. Name of a PageType +#: crm/fcrm/pagetype/crm_products/crm_products.json msgid "CRM Products" msgstr "" -#. Name of a DocType -#: crm/fcrm/doctype/crm_service_day/crm_service_day.json +#. Name of a PageType +#: crm/fcrm/pagetype/crm_service_day/crm_service_day.json msgid "CRM Service Day" msgstr "" -#. Name of a DocType -#: crm/fcrm/doctype/crm_service_level_agreement/crm_service_level_agreement.json +#. Name of a PageType +#: crm/fcrm/pagetype/crm_service_level_agreement/crm_service_level_agreement.json msgid "CRM Service Level Agreement" msgstr "" -#. Name of a DocType -#: crm/fcrm/doctype/crm_service_level_priority/crm_service_level_priority.json +#. Name of a PageType +#: crm/fcrm/pagetype/crm_service_level_priority/crm_service_level_priority.json msgid "CRM Service Level Priority" msgstr "" -#. Name of a DocType -#: crm/fcrm/doctype/crm_status_change_log/crm_status_change_log.json +#. Name of a PageType +#: crm/fcrm/pagetype/crm_status_change_log/crm_status_change_log.json msgid "CRM Status Change Log" msgstr "" -#. Name of a DocType -#: crm/fcrm/doctype/crm_task/crm_task.json +#. Name of a PageType +#: crm/fcrm/pagetype/crm_task/crm_task.json msgid "CRM Task" msgstr "" -#. Name of a DocType -#: crm/fcrm/doctype/crm_telephony_agent/crm_telephony_agent.json +#. Name of a PageType +#: crm/fcrm/pagetype/crm_telephony_agent/crm_telephony_agent.json msgid "CRM Telephony Agent" msgstr "" -#. Name of a DocType -#: crm/fcrm/doctype/crm_telephony_phone/crm_telephony_phone.json +#. Name of a PageType +#: crm/fcrm/pagetype/crm_telephony_phone/crm_telephony_phone.json msgid "CRM Telephony Phone" msgstr "" -#. Name of a DocType -#: crm/fcrm/doctype/crm_territory/crm_territory.json +#. Name of a PageType +#: crm/fcrm/pagetype/crm_territory/crm_territory.json msgid "CRM Territory" msgstr "" -#. Name of a DocType -#: crm/fcrm/doctype/crm_twilio_settings/crm_twilio_settings.json +#. Name of a PageType +#: crm/fcrm/pagetype/crm_twilio_settings/crm_twilio_settings.json msgid "CRM Twilio Settings" msgstr "" -#. Name of a DocType -#: crm/fcrm/doctype/crm_view_settings/crm_view_settings.json +#. Name of a PageType +#: crm/fcrm/pagetype/crm_view_settings/crm_view_settings.json msgid "CRM View Settings" msgstr "" @@ -1021,13 +1021,13 @@ msgstr "" msgid "Call Details" msgstr "" -#. Label of the receiver (Link) field in DocType 'CRM Call Log' -#: crm/fcrm/doctype/crm_call_log/crm_call_log.json +#. Label of the receiver (Link) field in PageType 'CRM Call Log' +#: crm/fcrm/pagetype/crm_call_log/crm_call_log.json msgid "Call Received By" msgstr "" -#. Description of the 'Duration' (Duration) field in DocType 'CRM Call Log' -#: crm/fcrm/doctype/crm_call_log/crm_call_log.json +#. Description of the 'Duration' (Duration) field in PageType 'CRM Call Log' +#: crm/fcrm/pagetype/crm_call_log/crm_call_log.json msgid "Call duration in seconds" msgstr "" @@ -1045,8 +1045,8 @@ msgstr "" msgid "Call with John Doe" msgstr "" -#. Label of the caller (Link) field in DocType 'CRM Call Log' -#: crm/fcrm/doctype/crm_call_log/crm_call_log.json +#. Label of the caller (Link) field in PageType 'CRM Call Log' +#: crm/fcrm/pagetype/crm_call_log/crm_call_log.json msgid "Caller" msgstr "" @@ -1083,10 +1083,10 @@ msgstr "" msgid "Cancel" msgstr "" -#. Option for the 'Status' (Select) field in DocType 'CRM Call Log' -#. Option for the 'Status' (Select) field in DocType 'CRM Task' -#: crm/fcrm/doctype/crm_call_log/crm_call_log.json -#: crm/fcrm/doctype/crm_task/crm_task.json +#. Option for the 'Status' (Select) field in PageType 'CRM Call Log' +#. Option for the 'Status' (Select) field in PageType 'CRM Task' +#: crm/fcrm/pagetype/crm_call_log/crm_call_log.json +#: crm/fcrm/pagetype/crm_task/crm_task.json msgid "Canceled" msgstr "" @@ -1094,7 +1094,7 @@ msgstr "" msgid "Cannot change role of user with Admin access" msgstr "" -#: crm/fcrm/doctype/fcrm_settings/fcrm_settings.py:34 +#: crm/fcrm/pagetype/fcrm_settings/fcrm_settings.py:34 msgid "Cannot delete standard items {0}" msgstr "" @@ -1189,8 +1189,8 @@ msgstr "" msgid "Clear Sort" msgstr "" -#. Label of the clear_table (Button) field in DocType 'CRM Holiday List' -#: crm/fcrm/doctype/crm_holiday_list/crm_holiday_list.json +#. Label of the clear_table (Button) field in PageType 'CRM Holiday List' +#: crm/fcrm/pagetype/crm_holiday_list/crm_holiday_list.json msgid "Clear Table" msgstr "" @@ -1211,8 +1211,8 @@ msgstr "" msgid "Close panel" msgstr "" -#. Label of the closed_date (Date) field in DocType 'CRM Deal' -#: crm/fcrm/doctype/crm_deal/crm_deal.json +#. Label of the closed_date (Date) field in PageType 'CRM Deal' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json msgid "Closed Date" msgstr "" @@ -1224,10 +1224,10 @@ msgstr "" msgid "Collapsible" msgstr "" -#. Label of the color (Select) field in DocType 'CRM Deal Status' -#. Label of the color (Select) field in DocType 'CRM Lead Status' -#: crm/fcrm/doctype/crm_deal_status/crm_deal_status.json -#: crm/fcrm/doctype/crm_lead_status/crm_lead_status.json +#. Label of the color (Select) field in PageType 'CRM Deal Status' +#. Label of the color (Select) field in PageType 'CRM Lead Status' +#: crm/fcrm/pagetype/crm_deal_status/crm_deal_status.json +#: crm/fcrm/pagetype/crm_lead_status/crm_lead_status.json msgid "Color" msgstr "" @@ -1235,20 +1235,20 @@ msgstr "" msgid "Column" msgstr "" -#. Label of the column_field (Data) field in DocType 'CRM View Settings' -#: crm/fcrm/doctype/crm_view_settings/crm_view_settings.json +#. Label of the column_field (Data) field in PageType 'CRM View Settings' +#: crm/fcrm/pagetype/crm_view_settings/crm_view_settings.json #: frontend/src/components/Kanban/KanbanSettings.vue:12 msgid "Column Field" msgstr "" -#. Label of the columns (Code) field in DocType 'CRM View Settings' -#: crm/fcrm/doctype/crm_view_settings/crm_view_settings.json +#. Label of the columns (Code) field in PageType 'CRM View Settings' +#: crm/fcrm/pagetype/crm_view_settings/crm_view_settings.json #: frontend/src/components/ColumnSettings.vue:4 msgid "Columns" msgstr "" -#. Label of the comment (Link) field in DocType 'CRM Notification' -#: crm/fcrm/doctype/crm_notification/crm_notification.json +#. Label of the comment (Link) field in PageType 'CRM Notification' +#: crm/fcrm/pagetype/crm_notification/crm_notification.json #: frontend/src/components/CommentBox.vue:78 #: frontend/src/components/CommunicationArea.vue:16 #: frontend/src/components/Layouts/AppSidebar.vue:579 @@ -1264,20 +1264,20 @@ msgstr "" msgid "Common reasons for losing deals" msgstr "" -#. Label of the communication_status (Link) field in DocType 'CRM Deal' -#. Label of the communication_status (Link) field in DocType 'CRM Lead' -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_lead/crm_lead.json +#. Label of the communication_status (Link) field in PageType 'CRM Deal' +#. Label of the communication_status (Link) field in PageType 'CRM Lead' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_lead/crm_lead.json msgid "Communication Status" msgstr "" -#. Label of a shortcut in the Frappe CRM Workspace -#: crm/fcrm/workspace/frappe_crm/frappe_crm.json +#. Label of a shortcut in the Jingrow CRM Workspace +#: crm/fcrm/workspace/jingrow_crm/jingrow_crm.json msgid "Communication Statuses" msgstr "" -#. Label of the erpnext_company (Data) field in DocType 'ERPNext CRM Settings' -#: crm/fcrm/doctype/erpnext_crm_settings/erpnext_crm_settings.json +#. Label of the erpnext_company (Data) field in PageType 'ERPNext CRM Settings' +#: crm/fcrm/pagetype/erpnext_crm_settings/erpnext_crm_settings.json msgid "Company in ERPNext Site" msgstr "" @@ -1285,18 +1285,18 @@ msgstr "" msgid "Complete Registration" msgstr "" -#. Option for the 'Status' (Select) field in DocType 'CRM Call Log' -#: crm/fcrm/doctype/crm_call_log/crm_call_log.json +#. Option for the 'Status' (Select) field in PageType 'CRM Call Log' +#: crm/fcrm/pagetype/crm_call_log/crm_call_log.json msgid "Completed" msgstr "" -#. Option for the 'Device' (Select) field in DocType 'CRM Telephony Agent' -#: crm/fcrm/doctype/crm_telephony_agent/crm_telephony_agent.json +#. Option for the 'Device' (Select) field in PageType 'CRM Telephony Agent' +#: crm/fcrm/pagetype/crm_telephony_agent/crm_telephony_agent.json msgid "Computer" msgstr "" -#. Label of the condition (Code) field in DocType 'CRM Service Level Agreement' -#: crm/fcrm/doctype/crm_service_level_agreement/crm_service_level_agreement.json +#. Label of the condition (Code) field in PageType 'CRM Service Level Agreement' +#: crm/fcrm/pagetype/crm_service_level_agreement/crm_service_level_agreement.json msgid "Condition" msgstr "" @@ -1354,17 +1354,17 @@ msgstr "" msgid "Connect your email" msgstr "" -#. Label of the contact (Link) field in DocType 'CRM Contacts' -#. Label of the contact (Link) field in DocType 'CRM Deal' -#: crm/fcrm/doctype/crm_contacts/crm_contacts.json -#: crm/fcrm/doctype/crm_deal/crm_deal.json +#. Label of the contact (Link) field in PageType 'CRM Contacts' +#. Label of the contact (Link) field in PageType 'CRM Deal' +#: crm/fcrm/pagetype/crm_contacts/crm_contacts.json +#: crm/fcrm/pagetype/crm_deal/crm_deal.json #: frontend/src/components/Layouts/AppSidebar.vue:552 #: frontend/src/components/Modals/ConvertToDealModal.vue:51 #: frontend/src/pages/MobileLead.vue:145 msgid "Contact" msgstr "" -#: crm/fcrm/doctype/crm_lead/crm_lead.py:212 +#: crm/fcrm/pagetype/crm_lead/crm_lead.py:212 msgid "Contact Already Exists" msgstr "" @@ -1384,7 +1384,7 @@ msgstr "" msgid "Contact already added" msgstr "" -#: crm/fcrm/doctype/crm_lead/crm_lead.py:211 +#: crm/fcrm/pagetype/crm_lead/crm_lead.py:211 msgid "Contact already exists with {0}" msgstr "" @@ -1405,18 +1405,18 @@ msgstr "" msgid "Contact updated" msgstr "" -#. Label of the contacts_tab (Tab Break) field in DocType 'CRM Deal' -#. Label of the contacts (Table) field in DocType 'CRM Deal' -#. Label of a shortcut in the Frappe CRM Workspace -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/workspace/frappe_crm/frappe_crm.json +#. Label of the contacts_tab (Tab Break) field in PageType 'CRM Deal' +#. Label of the contacts (Table) field in PageType 'CRM Deal' +#. Label of a shortcut in the Jingrow CRM Workspace +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/workspace/jingrow_crm/jingrow_crm.json #: frontend/src/pages/Contact.vue:234 frontend/src/pages/MobileContact.vue:212 #: frontend/src/pages/MobileOrganization.vue:331 msgid "Contacts" msgstr "" -#. Label of the content (Text Editor) field in DocType 'FCRM Note' -#: crm/fcrm/doctype/fcrm_note/fcrm_note.json +#. Label of the content (Text Editor) field in PageType 'FCRM Note' +#: crm/fcrm/pagetype/fcrm_note/fcrm_note.json #: frontend/src/components/Modals/NoteModal.vue:33 #: frontend/src/components/Settings/EmailTemplate/EditEmailTemplate.vue:89 #: frontend/src/components/Settings/EmailTemplate/EditEmailTemplate.vue:102 @@ -1456,8 +1456,8 @@ msgstr "" msgid "Convert to Deal" msgstr "" -#. Label of the converted (Check) field in DocType 'CRM Lead' -#: crm/fcrm/doctype/crm_lead/crm_lead.json +#. Label of the converted (Check) field in PageType 'CRM Lead' +#: crm/fcrm/pagetype/crm_lead/crm_lead.json msgid "Converted" msgstr "" @@ -1533,9 +1533,9 @@ msgstr "" msgid "Create an event" msgstr "" -#. Label of the create_customer_on_status_change (Check) field in DocType +#. Label of the create_customer_on_status_change (Check) field in PageType #. 'ERPNext CRM Settings' -#: crm/fcrm/doctype/erpnext_crm_settings/erpnext_crm_settings.json +#: crm/fcrm/pagetype/erpnext_crm_settings/erpnext_crm_settings.json msgid "Create customer on status change" msgstr "" @@ -1560,13 +1560,13 @@ msgstr "" msgid "Create your first task" msgstr "" -#. Label of the currency (Link) field in DocType 'CRM Deal' -#. Label of the currency (Link) field in DocType 'CRM Organization' -#. Label of the currency (Link) field in DocType 'FCRM Settings' -#. Label of the currency_tab (Tab Break) field in DocType 'FCRM Settings' -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_organization/crm_organization.json -#: crm/fcrm/doctype/fcrm_settings/fcrm_settings.json +#. Label of the currency (Link) field in PageType 'CRM Deal' +#. Label of the currency (Link) field in PageType 'CRM Organization' +#. Label of the currency (Link) field in PageType 'FCRM Settings' +#. Label of the currency_tab (Tab Break) field in PageType 'FCRM Settings' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_organization/crm_organization.json +#: crm/fcrm/pagetype/fcrm_settings/fcrm_settings.json #: frontend/src/components/Settings/CurrencySettings.vue:31 msgid "Currency" msgstr "" @@ -1631,13 +1631,13 @@ msgstr "" msgid "Data" msgstr "" -#. Option for the 'Type' (Select) field in DocType 'CRM Fields Layout' -#: crm/fcrm/doctype/crm_fields_layout/crm_fields_layout.json +#. Option for the 'Type' (Select) field in PageType 'CRM Fields Layout' +#: crm/fcrm/pagetype/crm_fields_layout/crm_fields_layout.json msgid "Data Fields" msgstr "" -#. Label of the date (Date) field in DocType 'CRM Holiday' -#: crm/api/dashboard.py:601 crm/fcrm/doctype/crm_holiday/crm_holiday.json +#. Label of the date (Date) field in PageType 'CRM Holiday' +#: crm/api/dashboard.py:601 crm/fcrm/pagetype/crm_holiday/crm_holiday.json #: frontend/src/components/Calendar/CalendarEventPanel.vue:202 msgid "Date" msgstr "" @@ -1660,23 +1660,23 @@ msgstr "" msgid "Deal" msgstr "" -#. Label of the deal_owner (Link) field in DocType 'CRM Deal' -#: crm/fcrm/doctype/crm_deal/crm_deal.json +#. Label of the deal_owner (Link) field in PageType 'CRM Deal' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json msgid "Deal Owner" msgstr "" -#. Label of the deal_status (Link) field in DocType 'ERPNext CRM Settings' -#: crm/fcrm/doctype/erpnext_crm_settings/erpnext_crm_settings.json +#. Label of the deal_status (Link) field in PageType 'ERPNext CRM Settings' +#: crm/fcrm/pagetype/erpnext_crm_settings/erpnext_crm_settings.json msgid "Deal Status" msgstr "" -#. Label of a shortcut in the Frappe CRM Workspace -#: crm/fcrm/workspace/frappe_crm/frappe_crm.json +#. Label of a shortcut in the Jingrow CRM Workspace +#: crm/fcrm/workspace/jingrow_crm/jingrow_crm.json msgid "Deal Statuses" msgstr "" -#. Label of the deal_value (Currency) field in DocType 'CRM Deal' -#: crm/fcrm/doctype/crm_deal/crm_deal.json +#. Label of the deal_value (Currency) field in PageType 'CRM Deal' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json msgid "Deal Value" msgstr "" @@ -1694,8 +1694,8 @@ msgstr "" msgid "Deal value" msgstr "" -#. Label of a shortcut in the Frappe CRM Workspace -#: crm/fcrm/workspace/frappe_crm/frappe_crm.json +#. Label of a shortcut in the Jingrow CRM Workspace +#: crm/fcrm/workspace/jingrow_crm/jingrow_crm.json #: frontend/src/pages/Deal.vue:480 frontend/src/pages/MobileContact.vue:288 #: frontend/src/pages/MobileDeal.vue:384 #: frontend/src/pages/MobileOrganization.vue:325 @@ -1732,8 +1732,8 @@ msgstr "" msgid "Dear {{ lead_name }}, \\n\\nThis is a reminder for the payment of {{ grand_total }}. \\n\\nThanks, \\nFrappé" msgstr "" -#. Label of the default (Check) field in DocType 'CRM Service Level Agreement' -#: crm/fcrm/doctype/crm_service_level_agreement/crm_service_level_agreement.json +#. Label of the default (Check) field in PageType 'CRM Service Level Agreement' +#: crm/fcrm/pagetype/crm_service_level_agreement/crm_service_level_agreement.json msgid "Default" msgstr "" @@ -1745,8 +1745,8 @@ msgstr "" msgid "Default Incoming" msgstr "" -#. Label of the default_medium (Select) field in DocType 'CRM Telephony Agent' -#: crm/fcrm/doctype/crm_telephony_agent/crm_telephony_agent.json +#. Label of the default_medium (Select) field in PageType 'CRM Telephony Agent' +#: crm/fcrm/pagetype/crm_telephony_agent/crm_telephony_agent.json msgid "Default Medium" msgstr "" @@ -1754,9 +1754,9 @@ msgstr "" msgid "Default Outgoing" msgstr "" -#. Label of the default_priority (Check) field in DocType 'CRM Service Level +#. Label of the default_priority (Check) field in PageType 'CRM Service Level #. Priority' -#: crm/fcrm/doctype/crm_service_level_priority/crm_service_level_priority.json +#: crm/fcrm/pagetype/crm_service_level_priority/crm_service_level_priority.json msgid "Default Priority" msgstr "" @@ -1768,7 +1768,7 @@ msgstr "" msgid "Default Sending and Inbox" msgstr "" -#: crm/fcrm/doctype/crm_service_level_agreement/crm_service_level_agreement.py:33 +#: crm/fcrm/pagetype/crm_service_level_agreement/crm_service_level_agreement.py:33 msgid "Default Service Level Agreement already exists for {0}" msgstr "" @@ -1788,8 +1788,8 @@ msgstr "" msgid "Default medium" msgstr "" -#: crm/fcrm/doctype/fcrm_settings/fcrm_settings.js:18 -#: crm/fcrm/doctype/fcrm_settings/fcrm_settings.js:30 +#: crm/fcrm/pagetype/fcrm_settings/fcrm_settings.js:18 +#: crm/fcrm/pagetype/fcrm_settings/fcrm_settings.js:30 msgid "Default statuses, custom fields and layouts restored successfully." msgstr "" @@ -1825,7 +1825,7 @@ msgstr "" msgid "Delete" msgstr "" -#: crm/fcrm/doctype/fcrm_settings/fcrm_settings.js:26 +#: crm/fcrm/pagetype/fcrm_settings/fcrm_settings.js:26 msgid "Delete & Restore" msgstr "" @@ -1883,14 +1883,14 @@ msgstr "" msgid "Delete {0} items" msgstr "" -#. Label of the description (Text Editor) field in DocType 'CRM Holiday' -#. Label of the description (Text Editor) field in DocType 'CRM Lost Reason' -#. Label of the description (Text Editor) field in DocType 'CRM Product' -#. Label of the description (Text Editor) field in DocType 'CRM Task' -#: crm/fcrm/doctype/crm_holiday/crm_holiday.json -#: crm/fcrm/doctype/crm_lost_reason/crm_lost_reason.json -#: crm/fcrm/doctype/crm_product/crm_product.json -#: crm/fcrm/doctype/crm_task/crm_task.json +#. Label of the description (Text Editor) field in PageType 'CRM Holiday' +#. Label of the description (Text Editor) field in PageType 'CRM Lost Reason' +#. Label of the description (Text Editor) field in PageType 'CRM Product' +#. Label of the description (Text Editor) field in PageType 'CRM Task' +#: crm/fcrm/pagetype/crm_holiday/crm_holiday.json +#: crm/fcrm/pagetype/crm_lost_reason/crm_lost_reason.json +#: crm/fcrm/pagetype/crm_product/crm_product.json +#: crm/fcrm/pagetype/crm_task/crm_task.json #: frontend/src/components/Calendar/CalendarEventPanel.vue:152 #: frontend/src/components/Modals/EventModal.vue:134 #: frontend/src/components/Modals/TaskModal.vue:36 @@ -1907,29 +1907,29 @@ msgstr "" msgid "Desk" msgstr "" -#. Label of the details (Tab Break) field in DocType 'CRM Lead' -#. Label of the details (Text Editor) field in DocType 'CRM Lead Source' -#: crm/fcrm/doctype/crm_lead/crm_lead.json -#: crm/fcrm/doctype/crm_lead_source/crm_lead_source.json +#. Label of the details (Tab Break) field in PageType 'CRM Lead' +#. Label of the details (Text Editor) field in PageType 'CRM Lead Source' +#: crm/fcrm/pagetype/crm_lead/crm_lead.json +#: crm/fcrm/pagetype/crm_lead_source/crm_lead_source.json #: frontend/src/pages/MobileContact.vue:283 #: frontend/src/pages/MobileDeal.vue:424 frontend/src/pages/MobileLead.vue:331 #: frontend/src/pages/MobileOrganization.vue:320 msgid "Details" msgstr "" -#. Label of the call_receiving_device (Select) field in DocType 'CRM Telephony +#. Label of the call_receiving_device (Select) field in PageType 'CRM Telephony #. Agent' -#: crm/fcrm/doctype/crm_telephony_agent/crm_telephony_agent.json +#: crm/fcrm/pagetype/crm_telephony_agent/crm_telephony_agent.json #: frontend/src/components/FilesUploader/FilesUploaderArea.vue:39 msgid "Device" msgstr "" -#: crm/fcrm/doctype/crm_form_script/crm_form_script.js:30 +#: crm/fcrm/pagetype/crm_form_script/crm_form_script.js:30 msgid "Disable" msgstr "" -#. Label of the disabled (Check) field in DocType 'CRM Product' -#: crm/fcrm/doctype/crm_product/crm_product.json +#. Label of the disabled (Check) field in PageType 'CRM Product' +#: crm/fcrm/pagetype/crm_product/crm_product.json msgid "Disabled" msgstr "" @@ -1943,27 +1943,27 @@ msgstr "" msgid "Discard unsaved changes?" msgstr "" -#. Label of the discount_percentage (Percent) field in DocType 'CRM Products' -#: crm/fcrm/doctype/crm_products/crm_products.json +#. Label of the discount_percentage (Percent) field in PageType 'CRM Products' +#: crm/fcrm/pagetype/crm_products/crm_products.json msgid "Discount %" msgstr "Giảm giá %" -#. Label of the discount_amount (Currency) field in DocType 'CRM Products' -#: crm/fcrm/doctype/crm_products/crm_products.json +#. Label of the discount_amount (Currency) field in PageType 'CRM Products' +#: crm/fcrm/pagetype/crm_products/crm_products.json msgid "Discount Amount" msgstr "" -#. Label of the dt (Link) field in DocType 'CRM Form Script' -#. Label of the dt (Link) field in DocType 'CRM Global Settings' -#. Label of the dt (Link) field in DocType 'CRM View Settings' -#: crm/fcrm/doctype/crm_form_script/crm_form_script.json -#: crm/fcrm/doctype/crm_global_settings/crm_global_settings.json -#: crm/fcrm/doctype/crm_view_settings/crm_view_settings.json -msgid "DocType" +#. Label of the dt (Link) field in PageType 'CRM Form Script' +#. Label of the dt (Link) field in PageType 'CRM Global Settings' +#. Label of the dt (Link) field in PageType 'CRM View Settings' +#: crm/fcrm/pagetype/crm_form_script/crm_form_script.json +#: crm/fcrm/pagetype/crm_global_settings/crm_global_settings.json +#: crm/fcrm/pagetype/crm_view_settings/crm_view_settings.json +msgid "PageType" msgstr "" -#. Label of the dt (Link) field in DocType 'CRM Fields Layout' -#: crm/fcrm/doctype/crm_fields_layout/crm_fields_layout.json +#. Label of the dt (Link) field in PageType 'CRM Fields Layout' +#: crm/fcrm/pagetype/crm_fields_layout/crm_fields_layout.json msgid "Document Type" msgstr "" @@ -1983,8 +1983,8 @@ msgstr "" msgid "Documentation" msgstr "" -#. Option for the 'Status' (Select) field in DocType 'CRM Task' -#: crm/fcrm/doctype/crm_task/crm_task.json +#. Option for the 'Status' (Select) field in PageType 'CRM Task' +#: crm/fcrm/pagetype/crm_task/crm_task.json msgid "Done" msgstr "" @@ -2006,13 +2006,13 @@ msgstr "" msgid "Drop files here" msgstr "" -#. Label of the dropdown_items_tab (Tab Break) field in DocType 'FCRM Settings' -#: crm/fcrm/doctype/fcrm_settings/fcrm_settings.json +#. Label of the dropdown_items_tab (Tab Break) field in PageType 'FCRM Settings' +#: crm/fcrm/pagetype/fcrm_settings/fcrm_settings.json msgid "Dropdown Items" msgstr "" -#. Label of the due_date (Datetime) field in DocType 'CRM Task' -#: crm/fcrm/doctype/crm_task/crm_task.json +#. Label of the due_date (Datetime) field in PageType 'CRM Task' +#: crm/fcrm/pagetype/crm_task/crm_task.json msgid "Due Date" msgstr "" @@ -2048,10 +2048,10 @@ msgstr "" msgid "Duplicate template" msgstr "" -#. Label of the duration (Duration) field in DocType 'CRM Call Log' -#. Label of the duration (Duration) field in DocType 'CRM Status Change Log' -#: crm/fcrm/doctype/crm_call_log/crm_call_log.json -#: crm/fcrm/doctype/crm_status_change_log/crm_status_change_log.json +#. Label of the duration (Duration) field in PageType 'CRM Call Log' +#. Label of the duration (Duration) field in PageType 'CRM Status Change Log' +#: crm/fcrm/pagetype/crm_call_log/crm_call_log.json +#: crm/fcrm/pagetype/crm_status_change_log/crm_status_change_log.json msgid "Duration" msgstr "" @@ -2060,28 +2060,28 @@ msgstr "" msgid "ERPNext" msgstr "" -#. Name of a DocType -#: crm/fcrm/doctype/erpnext_crm_settings/erpnext_crm_settings.json +#. Name of a PageType +#: crm/fcrm/pagetype/erpnext_crm_settings/erpnext_crm_settings.json msgid "ERPNext CRM Settings" msgstr "" -#. Label of the section_break_oubd (Section Break) field in DocType 'ERPNext +#. Label of the section_break_oubd (Section Break) field in PageType 'ERPNext #. CRM Settings' -#: crm/fcrm/doctype/erpnext_crm_settings/erpnext_crm_settings.json +#: crm/fcrm/pagetype/erpnext_crm_settings/erpnext_crm_settings.json msgid "ERPNext Site API's" msgstr "" -#. Label of the erpnext_site_url (Data) field in DocType 'ERPNext CRM Settings' -#: crm/fcrm/doctype/erpnext_crm_settings/erpnext_crm_settings.json +#. Label of the erpnext_site_url (Data) field in PageType 'ERPNext CRM Settings' +#: crm/fcrm/pagetype/erpnext_crm_settings/erpnext_crm_settings.json msgid "ERPNext Site URL" msgstr "" -#: crm/fcrm/doctype/erpnext_crm_settings/erpnext_crm_settings.py:25 +#: crm/fcrm/pagetype/erpnext_crm_settings/erpnext_crm_settings.py:25 msgid "ERPNext is not installed in the current site" msgstr "" -#: crm/fcrm/doctype/erpnext_crm_settings/erpnext_crm_settings.py:98 -#: crm/fcrm/doctype/erpnext_crm_settings/erpnext_crm_settings.py:124 +#: crm/fcrm/pagetype/erpnext_crm_settings/erpnext_crm_settings.py:98 +#: crm/fcrm/pagetype/erpnext_crm_settings/erpnext_crm_settings.py:124 msgid "ERPNext is not integrated with the CRM" msgstr "" @@ -2191,12 +2191,12 @@ msgstr "" msgid "Editing event" msgstr "" -#. Label of the email (Data) field in DocType 'CRM Contacts' -#. Label of the email (Data) field in DocType 'CRM Invitation' -#. Label of the email (Data) field in DocType 'CRM Lead' -#: crm/fcrm/doctype/crm_contacts/crm_contacts.json -#: crm/fcrm/doctype/crm_invitation/crm_invitation.json -#: crm/fcrm/doctype/crm_lead/crm_lead.json frontend/src/pages/Contact.vue:510 +#. Label of the email (Data) field in PageType 'CRM Contacts' +#. Label of the email (Data) field in PageType 'CRM Invitation' +#. Label of the email (Data) field in PageType 'CRM Lead' +#: crm/fcrm/pagetype/crm_contacts/crm_contacts.json +#: crm/fcrm/pagetype/crm_invitation/crm_invitation.json +#: crm/fcrm/pagetype/crm_lead/crm_lead.json frontend/src/pages/Contact.vue:510 #: frontend/src/pages/MobileContact.vue:518 #: frontend/src/pages/MobileOrganization.vue:462 #: frontend/src/pages/MobileOrganization.vue:490 @@ -2213,8 +2213,8 @@ msgstr "" msgid "Email ID is required" msgstr "" -#. Label of the email_sent_at (Datetime) field in DocType 'CRM Invitation' -#: crm/fcrm/doctype/crm_invitation/crm_invitation.json +#. Label of the email_sent_at (Datetime) field in PageType 'CRM Invitation' +#: crm/fcrm/pagetype/crm_invitation/crm_invitation.json msgid "Email Sent At" msgstr "" @@ -2272,12 +2272,12 @@ msgstr "" msgid "Empty - Choose a field to sort by" msgstr "" -#: crm/fcrm/doctype/crm_form_script/crm_form_script.js:30 +#: crm/fcrm/pagetype/crm_form_script/crm_form_script.js:30 msgid "Enable" msgstr "" -#. Label of the enable_forecasting (Check) field in DocType 'FCRM Settings' -#: crm/fcrm/doctype/fcrm_settings/fcrm_settings.json +#. Label of the enable_forecasting (Check) field in PageType 'FCRM Settings' +#: crm/fcrm/pagetype/fcrm_settings/fcrm_settings.json msgid "Enable Forecasting" msgstr "" @@ -2293,18 +2293,18 @@ msgstr "" msgid "Enable forecasting" msgstr "" -#. Label of the enabled (Check) field in DocType 'CRM Exotel Settings' -#. Label of the enabled (Check) field in DocType 'CRM Form Script' -#. Label of the enabled (Check) field in DocType 'CRM Service Level Agreement' -#. Label of the enabled (Check) field in DocType 'CRM Twilio Settings' -#. Label of the enabled (Check) field in DocType 'ERPNext CRM Settings' -#. Label of the enabled (Check) field in DocType 'Helpdesk CRM Settings' -#: crm/fcrm/doctype/crm_exotel_settings/crm_exotel_settings.json -#: crm/fcrm/doctype/crm_form_script/crm_form_script.json -#: crm/fcrm/doctype/crm_service_level_agreement/crm_service_level_agreement.json -#: crm/fcrm/doctype/crm_twilio_settings/crm_twilio_settings.json -#: crm/fcrm/doctype/erpnext_crm_settings/erpnext_crm_settings.json -#: crm/fcrm/doctype/helpdesk_crm_settings/helpdesk_crm_settings.json +#. Label of the enabled (Check) field in PageType 'CRM Exotel Settings' +#. Label of the enabled (Check) field in PageType 'CRM Form Script' +#. Label of the enabled (Check) field in PageType 'CRM Service Level Agreement' +#. Label of the enabled (Check) field in PageType 'CRM Twilio Settings' +#. Label of the enabled (Check) field in PageType 'ERPNext CRM Settings' +#. Label of the enabled (Check) field in PageType 'Helpdesk CRM Settings' +#: crm/fcrm/pagetype/crm_exotel_settings/crm_exotel_settings.json +#: crm/fcrm/pagetype/crm_form_script/crm_form_script.json +#: crm/fcrm/pagetype/crm_service_level_agreement/crm_service_level_agreement.json +#: crm/fcrm/pagetype/crm_twilio_settings/crm_twilio_settings.json +#: crm/fcrm/pagetype/erpnext_crm_settings/erpnext_crm_settings.json +#: crm/fcrm/pagetype/helpdesk_crm_settings/helpdesk_crm_settings.json #: frontend/src/components/Settings/AssignmentRules/AssignmentRuleView.vue:32 #: frontend/src/components/Settings/AssignmentRules/AssignmentRulesList.vue:21 #: frontend/src/components/Settings/EmailTemplate/EditEmailTemplate.vue:18 @@ -2313,15 +2313,15 @@ msgstr "" msgid "Enabled" msgstr "" -#. Label of the end_date (Date) field in DocType 'CRM Service Level Agreement' -#: crm/fcrm/doctype/crm_service_level_agreement/crm_service_level_agreement.json +#. Label of the end_date (Date) field in PageType 'CRM Service Level Agreement' +#: crm/fcrm/pagetype/crm_service_level_agreement/crm_service_level_agreement.json msgid "End Date" msgstr "" -#. Label of the end_time (Datetime) field in DocType 'CRM Call Log' -#. Label of the end_time (Time) field in DocType 'CRM Service Day' -#: crm/fcrm/doctype/crm_call_log/crm_call_log.json -#: crm/fcrm/doctype/crm_service_day/crm_service_day.json +#. Label of the end_time (Datetime) field in PageType 'CRM Call Log' +#. Label of the end_time (Time) field in PageType 'CRM Service Day' +#: crm/fcrm/pagetype/crm_call_log/crm_call_log.json +#: crm/fcrm/pagetype/crm_service_day/crm_service_day.json #: frontend/src/components/Calendar/CalendarEventPanel.vue:242 #: frontend/src/components/Modals/EventModal.vue:112 msgid "End Time" @@ -2362,15 +2362,15 @@ msgstr "" msgid "Error updating field" msgstr "" -#: crm/fcrm/doctype/erpnext_crm_settings/erpnext_crm_settings.py:279 +#: crm/fcrm/pagetype/erpnext_crm_settings/erpnext_crm_settings.py:279 msgid "Error while creating customer in ERPNext, check error log for more details" msgstr "" -#: crm/fcrm/doctype/erpnext_crm_settings/erpnext_crm_settings.py:191 +#: crm/fcrm/pagetype/erpnext_crm_settings/erpnext_crm_settings.py:191 msgid "Error while creating prospect in ERPNext, check error log for more details" msgstr "" -#: crm/fcrm/doctype/erpnext_crm_settings/erpnext_crm_settings.py:117 +#: crm/fcrm/pagetype/erpnext_crm_settings/erpnext_crm_settings.py:117 msgid "Error while fetching customer in ERPNext, check error log for more details" msgstr "" @@ -2395,16 +2395,16 @@ msgstr "" msgid "Excel" msgstr "" -#. Label of the exchange_rate (Float) field in DocType 'CRM Deal' -#. Label of the exchange_rate (Float) field in DocType 'CRM Organization' -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_organization/crm_organization.json +#. Label of the exchange_rate (Float) field in PageType 'CRM Deal' +#. Label of the exchange_rate (Float) field in PageType 'CRM Organization' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_organization/crm_organization.json msgid "Exchange Rate" msgstr "" -#. Label of the exchange_rate_provider_section (Section Break) field in DocType +#. Label of the exchange_rate_provider_section (Section Break) field in PageType #. 'FCRM Settings' -#: crm/fcrm/doctype/fcrm_settings/fcrm_settings.json +#: crm/fcrm/pagetype/fcrm_settings/fcrm_settings.json msgid "Exchange Rate Provider" msgstr "" @@ -2412,12 +2412,12 @@ msgstr "" msgid "Exchange rate provider" msgstr "" -#. Option for the 'Telephony Medium' (Select) field in DocType 'CRM Call Log' -#. Label of the exotel (Check) field in DocType 'CRM Telephony Agent' -#. Option for the 'Default Medium' (Select) field in DocType 'CRM Telephony +#. Option for the 'Telephony Medium' (Select) field in PageType 'CRM Call Log' +#. Label of the exotel (Check) field in PageType 'CRM Telephony Agent' +#. Option for the 'Default Medium' (Select) field in PageType 'CRM Telephony #. Agent' -#: crm/fcrm/doctype/crm_call_log/crm_call_log.json -#: crm/fcrm/doctype/crm_telephony_agent/crm_telephony_agent.json +#: crm/fcrm/pagetype/crm_call_log/crm_call_log.json +#: crm/fcrm/pagetype/crm_telephony_agent/crm_telephony_agent.json #: frontend/src/components/Layouts/AppSidebar.vue:602 #: frontend/src/components/Settings/TelephonySettings.vue:41 #: frontend/src/components/Settings/TelephonySettings.vue:63 @@ -2428,8 +2428,8 @@ msgstr "" msgid "Exotel Exception" msgstr "" -#. Label of the exotel_number (Data) field in DocType 'CRM Telephony Agent' -#: crm/fcrm/doctype/crm_telephony_agent/crm_telephony_agent.json +#. Label of the exotel_number (Data) field in PageType 'CRM Telephony Agent' +#: crm/fcrm/pagetype/crm_telephony_agent/crm_telephony_agent.json msgid "Exotel Number" msgstr "" @@ -2453,26 +2453,26 @@ msgstr "" msgid "Expand" msgstr "" -#. Label of the expected_closure_date (Date) field in DocType 'CRM Deal' -#: crm/fcrm/doctype/crm_deal/crm_deal.json +#. Label of the expected_closure_date (Date) field in PageType 'CRM Deal' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json msgid "Expected Closure Date" msgstr "" -#: crm/fcrm/doctype/crm_deal/crm_deal.py:173 +#: crm/fcrm/pagetype/crm_deal/crm_deal.py:173 msgid "Expected Closure Date is required." msgstr "" -#. Label of the expected_deal_value (Currency) field in DocType 'CRM Deal' -#: crm/fcrm/doctype/crm_deal/crm_deal.json +#. Label of the expected_deal_value (Currency) field in PageType 'CRM Deal' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json msgid "Expected Deal Value" msgstr "" -#: crm/fcrm/doctype/crm_deal/crm_deal.py:171 +#: crm/fcrm/pagetype/crm_deal/crm_deal.py:171 msgid "Expected Deal Value is required." msgstr "" -#. Option for the 'Status' (Select) field in DocType 'CRM Invitation' -#: crm/fcrm/doctype/crm_invitation/crm_invitation.json +#. Option for the 'Status' (Select) field in PageType 'CRM Invitation' +#: crm/fcrm/pagetype/crm_invitation/crm_invitation.json msgid "Expired" msgstr "" @@ -2489,22 +2489,22 @@ msgstr "" msgid "Export Type" msgstr "" -#. Name of a DocType -#: crm/fcrm/doctype/fcrm_note/fcrm_note.json +#. Name of a PageType +#: crm/fcrm/pagetype/fcrm_note/fcrm_note.json msgid "FCRM Note" msgstr "" -#. Name of a DocType -#: crm/fcrm/doctype/fcrm_settings/fcrm_settings.json +#. Name of a PageType +#: crm/fcrm/pagetype/fcrm_settings/fcrm_settings.json msgid "FCRM Settings" msgstr "" -#. Option for the 'Status' (Select) field in DocType 'CRM Call Log' -#. Option for the 'SLA Status' (Select) field in DocType 'CRM Deal' -#. Option for the 'SLA Status' (Select) field in DocType 'CRM Lead' -#: crm/fcrm/doctype/crm_call_log/crm_call_log.json -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_lead/crm_lead.json +#. Option for the 'Status' (Select) field in PageType 'CRM Call Log' +#. Option for the 'SLA Status' (Select) field in PageType 'CRM Deal' +#. Option for the 'SLA Status' (Select) field in PageType 'CRM Lead' +#: crm/fcrm/pagetype/crm_call_log/crm_call_log.json +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_lead/crm_lead.json msgid "Failed" msgstr "" @@ -2528,7 +2528,7 @@ msgstr "" msgid "Failed to delete template" msgstr "" -#: crm/fcrm/doctype/fcrm_settings/fcrm_settings.py:205 +#: crm/fcrm/pagetype/fcrm_settings/fcrm_settings.py:205 msgid "Failed to fetch exchange rate from {0} to {1} on {2}. Please check your internet connection or try again later." msgstr "" @@ -2561,8 +2561,8 @@ msgstr "" msgid "Failed to update template" msgstr "" -#. Label of the favicon (Attach) field in DocType 'FCRM Settings' -#: crm/fcrm/doctype/fcrm_settings/fcrm_settings.json +#. Label of the favicon (Attach) field in PageType 'FCRM Settings' +#: crm/fcrm/pagetype/fcrm_settings/fcrm_settings.json #: frontend/src/components/Settings/BrandSettings.vue:87 msgid "Favicon" msgstr "" @@ -2586,23 +2586,23 @@ msgid "File \"{0}\" was skipped because only {1} uploads are allowed" msgstr "" #: frontend/src/components/FilesUploader/FilesUploaderArea.vue:359 -msgid "File \"{0}\" was skipped because only {1} uploads are allowed for DocType \"{2}\"" +msgid "File \"{0}\" was skipped because only {1} uploads are allowed for PageType \"{2}\"" msgstr "" #: frontend/src/components/Filter.vue:6 msgid "Filter" msgstr "" -#. Label of the filters (Code) field in DocType 'CRM View Settings' -#. Label of the filters_tab (Tab Break) field in DocType 'CRM View Settings' -#: crm/fcrm/doctype/crm_view_settings/crm_view_settings.json +#. Label of the filters (Code) field in PageType 'CRM View Settings' +#. Label of the filters_tab (Tab Break) field in PageType 'CRM View Settings' +#: crm/fcrm/pagetype/crm_view_settings/crm_view_settings.json msgid "Filters" msgstr "" -#. Label of the first_name (Data) field in DocType 'CRM Deal' -#. Label of the first_name (Data) field in DocType 'CRM Lead' -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_lead/crm_lead.json +#. Label of the first_name (Data) field in PageType 'CRM Deal' +#. Label of the first_name (Data) field in PageType 'CRM Lead' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_lead/crm_lead.json #: frontend/src/components/ColumnSettings.vue:103 #: frontend/src/components/Filter.vue:57 frontend/src/components/Filter.vue:88 #: frontend/src/components/SortBy.vue:6 frontend/src/components/SortBy.vue:103 @@ -2614,30 +2614,30 @@ msgstr "" msgid "First Name is mandatory" msgstr "" -#. Label of the first_responded_on (Datetime) field in DocType 'CRM Deal' -#. Label of the first_responded_on (Datetime) field in DocType 'CRM Lead' -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_lead/crm_lead.json +#. Label of the first_responded_on (Datetime) field in PageType 'CRM Deal' +#. Label of the first_responded_on (Datetime) field in PageType 'CRM Lead' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_lead/crm_lead.json msgid "First Responded On" msgstr "" -#. Option for the 'SLA Status' (Select) field in DocType 'CRM Deal' -#. Option for the 'SLA Status' (Select) field in DocType 'CRM Lead' -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_lead/crm_lead.json +#. Option for the 'SLA Status' (Select) field in PageType 'CRM Deal' +#. Option for the 'SLA Status' (Select) field in PageType 'CRM Lead' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_lead/crm_lead.json msgid "First Response Due" msgstr "" -#. Label of the first_response_time (Duration) field in DocType 'CRM Service +#. Label of the first_response_time (Duration) field in PageType 'CRM Service #. Level Priority' -#: crm/fcrm/doctype/crm_service_level_priority/crm_service_level_priority.json +#: crm/fcrm/pagetype/crm_service_level_priority/crm_service_level_priority.json msgid "First Response TIme" msgstr "" -#. Label of the first_response_time (Duration) field in DocType 'CRM Deal' -#. Label of the first_response_time (Duration) field in DocType 'CRM Lead' -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_lead/crm_lead.json +#. Label of the first_response_time (Duration) field in PageType 'CRM Deal' +#. Label of the first_response_time (Duration) field in PageType 'CRM Lead' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_lead/crm_lead.json msgid "First Response Time" msgstr "" @@ -2670,66 +2670,66 @@ msgstr "" msgid "Forecasting enabled successfully" msgstr "" -#. Option for the 'Apply To' (Select) field in DocType 'CRM Form Script' -#: crm/fcrm/doctype/crm_form_script/crm_form_script.json +#. Option for the 'Apply To' (Select) field in PageType 'CRM Form Script' +#: crm/fcrm/pagetype/crm_form_script/crm_form_script.json msgid "Form" msgstr "" -#: crm/fcrm/doctype/erpnext_crm_settings/erpnext_crm_settings.js:19 +#: crm/fcrm/pagetype/erpnext_crm_settings/erpnext_crm_settings.js:19 msgid "Form Script updated successfully" msgstr "" #. Name of a Workspace -#: crm/fcrm/workspace/frappe_crm/frappe_crm.json -msgid "Frappe CRM" +#: crm/fcrm/workspace/jingrow_crm/jingrow_crm.json +msgid "Jingrow CRM" msgstr "" #: frontend/src/components/Layouts/AppSidebar.vue:608 -msgid "Frappe CRM mobile" +msgid "Jingrow CRM mobile" msgstr "" -#. Option for the 'Weekly Off' (Select) field in DocType 'CRM Holiday List' -#. Option for the 'Workday' (Select) field in DocType 'CRM Service Day' -#: crm/fcrm/doctype/crm_holiday_list/crm_holiday_list.json -#: crm/fcrm/doctype/crm_service_day/crm_service_day.json +#. Option for the 'Weekly Off' (Select) field in PageType 'CRM Holiday List' +#. Option for the 'Workday' (Select) field in PageType 'CRM Service Day' +#: crm/fcrm/pagetype/crm_holiday_list/crm_holiday_list.json +#: crm/fcrm/pagetype/crm_service_day/crm_service_day.json msgid "Friday" msgstr "" -#. Label of the from (Data) field in DocType 'CRM Call Log' -#. Label of the from (Data) field in DocType 'CRM Status Change Log' -#: crm/fcrm/doctype/crm_call_log/crm_call_log.json -#: crm/fcrm/doctype/crm_status_change_log/crm_status_change_log.json +#. Label of the from (Data) field in PageType 'CRM Call Log' +#. Label of the from (Data) field in PageType 'CRM Status Change Log' +#: crm/fcrm/pagetype/crm_call_log/crm_call_log.json +#: crm/fcrm/pagetype/crm_status_change_log/crm_status_change_log.json msgid "From" msgstr "" -#. Label of the from_date (Date) field in DocType 'CRM Holiday List' -#. Label of the from_date (Datetime) field in DocType 'CRM Status Change Log' -#: crm/fcrm/doctype/crm_holiday_list/crm_holiday_list.json -#: crm/fcrm/doctype/crm_status_change_log/crm_status_change_log.json +#. Label of the from_date (Date) field in PageType 'CRM Holiday List' +#. Label of the from_date (Datetime) field in PageType 'CRM Status Change Log' +#: crm/fcrm/pagetype/crm_holiday_list/crm_holiday_list.json +#: crm/fcrm/pagetype/crm_status_change_log/crm_status_change_log.json msgid "From Date" msgstr "" -#. Label of the from_type (Data) field in DocType 'CRM Status Change Log' -#: crm/fcrm/doctype/crm_status_change_log/crm_status_change_log.json +#. Label of the from_type (Data) field in PageType 'CRM Status Change Log' +#: crm/fcrm/pagetype/crm_status_change_log/crm_status_change_log.json msgid "From Type" msgstr "" -#. Label of the from_user (Link) field in DocType 'CRM Notification' -#: crm/fcrm/doctype/crm_notification/crm_notification.json +#. Label of the from_user (Link) field in PageType 'CRM Notification' +#: crm/fcrm/pagetype/crm_notification/crm_notification.json msgid "From User" msgstr "" -#. Option for the 'SLA Status' (Select) field in DocType 'CRM Deal' -#. Option for the 'SLA Status' (Select) field in DocType 'CRM Lead' -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_lead/crm_lead.json +#. Option for the 'SLA Status' (Select) field in PageType 'CRM Deal' +#. Option for the 'SLA Status' (Select) field in PageType 'CRM Lead' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_lead/crm_lead.json msgid "Fulfilled" msgstr "" -#. Label of the full_name (Data) field in DocType 'CRM Contacts' -#. Label of the lead_name (Data) field in DocType 'CRM Lead' -#: crm/fcrm/doctype/crm_contacts/crm_contacts.json -#: crm/fcrm/doctype/crm_lead/crm_lead.json +#. Label of the full_name (Data) field in PageType 'CRM Contacts' +#. Label of the lead_name (Data) field in PageType 'CRM Lead' +#: crm/fcrm/pagetype/crm_contacts/crm_contacts.json +#: crm/fcrm/pagetype/crm_lead/crm_lead.json msgid "Full Name" msgstr "" @@ -2742,12 +2742,12 @@ msgstr "" msgid "GMT+5:30" msgstr "" -#. Label of the gender (Link) field in DocType 'CRM Contacts' -#. Label of the gender (Link) field in DocType 'CRM Deal' -#. Label of the gender (Link) field in DocType 'CRM Lead' -#: crm/fcrm/doctype/crm_contacts/crm_contacts.json -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_lead/crm_lead.json +#. Label of the gender (Link) field in PageType 'CRM Contacts' +#. Label of the gender (Link) field in PageType 'CRM Deal' +#. Label of the gender (Link) field in PageType 'CRM Lead' +#: crm/fcrm/pagetype/crm_contacts/crm_contacts.json +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_lead/crm_lead.json msgid "Gender" msgstr "" @@ -2771,20 +2771,20 @@ msgstr "" msgid "Go to website" msgstr "" -#. Option for the 'Type' (Select) field in DocType 'CRM Fields Layout' -#: crm/fcrm/doctype/crm_fields_layout/crm_fields_layout.json +#. Option for the 'Type' (Select) field in PageType 'CRM Fields Layout' +#: crm/fcrm/pagetype/crm_fields_layout/crm_fields_layout.json msgid "Grid Row" msgstr "" -#. Label of the group_by_tab (Tab Break) field in DocType 'CRM View Settings' -#: crm/fcrm/doctype/crm_view_settings/crm_view_settings.json +#. Label of the group_by_tab (Tab Break) field in PageType 'CRM View Settings' +#: crm/fcrm/pagetype/crm_view_settings/crm_view_settings.json #: frontend/src/components/ViewControls.vue:379 #: frontend/src/components/ViewControls.vue:611 frontend/src/utils/view.js:16 msgid "Group By" msgstr "" -#. Label of the group_by_field (Data) field in DocType 'CRM View Settings' -#: crm/fcrm/doctype/crm_view_settings/crm_view_settings.json +#. Label of the group_by_field (Data) field in PageType 'CRM View Settings' +#: crm/fcrm/pagetype/crm_view_settings/crm_view_settings.json msgid "Group By Field" msgstr "" @@ -2808,28 +2808,28 @@ msgstr "" msgid "Helpdesk" msgstr "" -#. Name of a DocType -#: crm/fcrm/doctype/helpdesk_crm_settings/helpdesk_crm_settings.json +#. Name of a PageType +#: crm/fcrm/pagetype/helpdesk_crm_settings/helpdesk_crm_settings.json msgid "Helpdesk CRM Settings" msgstr "" -#. Label of the helpdesk_site_apis_section (Section Break) field in DocType +#. Label of the helpdesk_site_apis_section (Section Break) field in PageType #. 'Helpdesk CRM Settings' -#: crm/fcrm/doctype/helpdesk_crm_settings/helpdesk_crm_settings.json +#: crm/fcrm/pagetype/helpdesk_crm_settings/helpdesk_crm_settings.json msgid "Helpdesk Site API's" msgstr "" -#. Label of the helpdesk_site_url (Data) field in DocType 'Helpdesk CRM +#. Label of the helpdesk_site_url (Data) field in PageType 'Helpdesk CRM #. Settings' -#: crm/fcrm/doctype/helpdesk_crm_settings/helpdesk_crm_settings.json +#: crm/fcrm/pagetype/helpdesk_crm_settings/helpdesk_crm_settings.json msgid "Helpdesk Site URL" msgstr "" -#: crm/fcrm/doctype/helpdesk_crm_settings/helpdesk_crm_settings.py:18 +#: crm/fcrm/pagetype/helpdesk_crm_settings/helpdesk_crm_settings.py:18 msgid "Helpdesk is not installed in the current site" msgstr "" -#: crm/fcrm/doctype/helpdesk_crm_settings/helpdesk_crm_settings.py:40 +#: crm/fcrm/pagetype/helpdesk_crm_settings/helpdesk_crm_settings.py:40 msgid "Helpdesk is not integrated with the CRM" msgstr "" @@ -2845,8 +2845,8 @@ msgstr "" msgid "Hi John, \\n\\nCan you please provide more details on this..." msgstr "" -#. Label of the hidden (Check) field in DocType 'CRM Dropdown Item' -#: crm/fcrm/doctype/crm_dropdown_item/crm_dropdown_item.json +#. Label of the hidden (Check) field in PageType 'CRM Dropdown Item' +#: crm/fcrm/pagetype/crm_dropdown_item/crm_dropdown_item.json msgid "Hidden" msgstr "" @@ -2877,26 +2877,26 @@ msgstr "" msgid "Hide preview" msgstr "" -#. Option for the 'Priority' (Select) field in DocType 'CRM Task' -#: crm/fcrm/doctype/crm_task/crm_task.json +#. Option for the 'Priority' (Select) field in PageType 'CRM Task' +#: crm/fcrm/pagetype/crm_task/crm_task.json msgid "High" msgstr "" -#. Label of the holiday_list (Link) field in DocType 'CRM Service Level +#. Label of the holiday_list (Link) field in PageType 'CRM Service Level #. Agreement' -#: crm/fcrm/doctype/crm_service_level_agreement/crm_service_level_agreement.json +#: crm/fcrm/pagetype/crm_service_level_agreement/crm_service_level_agreement.json msgid "Holiday List" msgstr "" -#. Label of the holiday_list_name (Data) field in DocType 'CRM Holiday List' -#: crm/fcrm/doctype/crm_holiday_list/crm_holiday_list.json +#. Label of the holiday_list_name (Data) field in PageType 'CRM Holiday List' +#: crm/fcrm/pagetype/crm_holiday_list/crm_holiday_list.json msgid "Holiday List Name" msgstr "" -#. Label of the holidays_section (Section Break) field in DocType 'CRM Holiday +#. Label of the holidays_section (Section Break) field in PageType 'CRM Holiday #. List' -#. Label of the holidays (Table) field in DocType 'CRM Holiday List' -#: crm/fcrm/doctype/crm_holiday_list/crm_holiday_list.json +#. Label of the holidays (Table) field in PageType 'CRM Holiday List' +#: crm/fcrm/pagetype/crm_holiday_list/crm_holiday_list.json msgid "Holidays" msgstr "" @@ -2914,15 +2914,15 @@ msgstr "" msgid "I understand, add conditions" msgstr "" -#. Label of the id (Data) field in DocType 'CRM Call Log' -#: crm/fcrm/doctype/crm_call_log/crm_call_log.json +#. Label of the id (Data) field in PageType 'CRM Call Log' +#: crm/fcrm/pagetype/crm_call_log/crm_call_log.json msgid "ID" msgstr "" -#. Label of the icon (Code) field in DocType 'CRM Dropdown Item' -#. Label of the icon (Data) field in DocType 'CRM View Settings' -#: crm/fcrm/doctype/crm_dropdown_item/crm_dropdown_item.json -#: crm/fcrm/doctype/crm_view_settings/crm_view_settings.json +#. Label of the icon (Code) field in PageType 'CRM Dropdown Item' +#. Label of the icon (Data) field in PageType 'CRM View Settings' +#: crm/fcrm/pagetype/crm_dropdown_item/crm_dropdown_item.json +#: crm/fcrm/pagetype/crm_view_settings/crm_view_settings.json msgid "Icon" msgstr "" @@ -2942,10 +2942,10 @@ msgstr "" msgid "If enabled, records can be created from the incoming emails on this account." msgstr "" -#. Label of the image (Attach Image) field in DocType 'CRM Lead' -#. Label of the image (Attach Image) field in DocType 'CRM Product' -#: crm/fcrm/doctype/crm_lead/crm_lead.json -#: crm/fcrm/doctype/crm_product/crm_product.json +#. Label of the image (Attach Image) field in PageType 'CRM Lead' +#. Label of the image (Attach Image) field in PageType 'CRM Product' +#: crm/fcrm/pagetype/crm_lead/crm_lead.json +#: crm/fcrm/pagetype/crm_product/crm_product.json msgid "Image" msgstr "" @@ -2957,10 +2957,10 @@ msgstr "" msgid "In" msgstr "" -#. Option for the 'Status' (Select) field in DocType 'CRM Call Log' -#. Option for the 'Status' (Select) field in DocType 'CRM Task' -#: crm/fcrm/doctype/crm_call_log/crm_call_log.json -#: crm/fcrm/doctype/crm_task/crm_task.json +#. Option for the 'Status' (Select) field in PageType 'CRM Call Log' +#. Option for the 'Status' (Select) field in PageType 'CRM Task' +#: crm/fcrm/pagetype/crm_call_log/crm_call_log.json +#: crm/fcrm/pagetype/crm_task/crm_task.json msgid "In Progress" msgstr "" @@ -2976,8 +2976,8 @@ msgstr "" msgid "Inbox" msgstr "" -#. Option for the 'Type' (Select) field in DocType 'CRM Call Log' -#: crm/fcrm/doctype/crm_call_log/crm_call_log.json +#. Option for the 'Type' (Select) field in PageType 'CRM Call Log' +#: crm/fcrm/pagetype/crm_call_log/crm_call_log.json msgid "Incoming" msgstr "" @@ -2985,24 +2985,24 @@ msgstr "" msgid "Incoming call..." msgstr "" -#. Label of a shortcut in the Frappe CRM Workspace -#: crm/fcrm/workspace/frappe_crm/frappe_crm.json +#. Label of a shortcut in the Jingrow CRM Workspace +#: crm/fcrm/workspace/jingrow_crm/jingrow_crm.json msgid "Industries" msgstr "" -#. Label of the industry (Link) field in DocType 'CRM Deal' -#. Label of the industry (Data) field in DocType 'CRM Industry' -#. Label of the industry (Link) field in DocType 'CRM Lead' -#. Label of the industry (Link) field in DocType 'CRM Organization' -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_industry/crm_industry.json -#: crm/fcrm/doctype/crm_lead/crm_lead.json -#: crm/fcrm/doctype/crm_organization/crm_organization.json +#. Label of the industry (Link) field in PageType 'CRM Deal' +#. Label of the industry (Data) field in PageType 'CRM Industry' +#. Label of the industry (Link) field in PageType 'CRM Lead' +#. Label of the industry (Link) field in PageType 'CRM Organization' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_industry/crm_industry.json +#: crm/fcrm/pagetype/crm_lead/crm_lead.json +#: crm/fcrm/pagetype/crm_organization/crm_organization.json msgid "Industry" msgstr "" -#. Option for the 'Status' (Select) field in DocType 'CRM Call Log' -#: crm/fcrm/doctype/crm_call_log/crm_call_log.json +#. Option for the 'Status' (Select) field in PageType 'CRM Call Log' +#: crm/fcrm/pagetype/crm_call_log/crm_call_log.json msgid "Initiated" msgstr "" @@ -3037,7 +3037,7 @@ msgstr "" msgid "Introduction" msgstr "" -#: crm/fcrm/doctype/crm_twilio_settings/crm_twilio_settings.py:33 +#: crm/fcrm/pagetype/crm_twilio_settings/crm_twilio_settings.py:33 msgid "Invalid Account SID or Auth Token." msgstr "" @@ -3054,7 +3054,7 @@ msgstr "" msgid "Invalid chart name" msgstr "" -#: crm/fcrm/doctype/crm_exotel_settings/crm_exotel_settings.py:25 +#: crm/fcrm/pagetype/crm_exotel_settings/crm_exotel_settings.py:25 msgid "Invalid credentials" msgstr "" @@ -3103,8 +3103,8 @@ msgstr "" msgid "Invite your team" msgstr "" -#. Label of the invited_by (Link) field in DocType 'CRM Invitation' -#: crm/fcrm/doctype/crm_invitation/crm_invitation.json +#. Label of the invited_by (Link) field in PageType 'CRM Invitation' +#: crm/fcrm/pagetype/crm_invitation/crm_invitation.json msgid "Invited By" msgstr "" @@ -3118,59 +3118,59 @@ msgstr "" msgid "Is" msgstr "" -#. Label of the is_default (Check) field in DocType 'CRM View Settings' -#: crm/fcrm/doctype/crm_view_settings/crm_view_settings.json +#. Label of the is_default (Check) field in PageType 'CRM View Settings' +#: crm/fcrm/pagetype/crm_view_settings/crm_view_settings.json msgid "Is Default" msgstr "" -#. Label of the is_erpnext_in_different_site (Check) field in DocType 'ERPNext +#. Label of the is_erpnext_in_different_site (Check) field in PageType 'ERPNext #. CRM Settings' -#: crm/fcrm/doctype/erpnext_crm_settings/erpnext_crm_settings.json +#: crm/fcrm/pagetype/erpnext_crm_settings/erpnext_crm_settings.json msgid "Is ERPNext installed on a different site?" msgstr "" -#. Label of the is_group (Check) field in DocType 'CRM Territory' -#: crm/fcrm/doctype/crm_territory/crm_territory.json +#. Label of the is_group (Check) field in PageType 'CRM Territory' +#: crm/fcrm/pagetype/crm_territory/crm_territory.json msgid "Is Group" msgstr "" -#. Label of the is_helpdesk_in_different_site (Check) field in DocType +#. Label of the is_helpdesk_in_different_site (Check) field in PageType #. 'Helpdesk CRM Settings' -#: crm/fcrm/doctype/helpdesk_crm_settings/helpdesk_crm_settings.json +#: crm/fcrm/pagetype/helpdesk_crm_settings/helpdesk_crm_settings.json msgid "Is Helpdesk installed on a different site?" msgstr "" -#. Label of the is_primary (Check) field in DocType 'CRM Contacts' -#. Label of the is_primary (Check) field in DocType 'CRM Telephony Phone' -#: crm/fcrm/doctype/crm_contacts/crm_contacts.json -#: crm/fcrm/doctype/crm_telephony_phone/crm_telephony_phone.json +#. Label of the is_primary (Check) field in PageType 'CRM Contacts' +#. Label of the is_primary (Check) field in PageType 'CRM Telephony Phone' +#: crm/fcrm/pagetype/crm_contacts/crm_contacts.json +#: crm/fcrm/pagetype/crm_telephony_phone/crm_telephony_phone.json msgid "Is Primary" msgstr "" -#. Label of the is_standard (Check) field in DocType 'CRM Dropdown Item' -#. Label of the is_standard (Check) field in DocType 'CRM Form Script' -#. Label of the is_standard (Check) field in DocType 'CRM View Settings' -#: crm/fcrm/doctype/crm_dropdown_item/crm_dropdown_item.json -#: crm/fcrm/doctype/crm_form_script/crm_form_script.json -#: crm/fcrm/doctype/crm_view_settings/crm_view_settings.json +#. Label of the is_standard (Check) field in PageType 'CRM Dropdown Item' +#. Label of the is_standard (Check) field in PageType 'CRM Form Script' +#. Label of the is_standard (Check) field in PageType 'CRM View Settings' +#: crm/fcrm/pagetype/crm_dropdown_item/crm_dropdown_item.json +#: crm/fcrm/pagetype/crm_form_script/crm_form_script.json +#: crm/fcrm/pagetype/crm_view_settings/crm_view_settings.json msgid "Is Standard" msgstr "" -#. Description of the 'Enable Forecasting' (Check) field in DocType 'FCRM +#. Description of the 'Enable Forecasting' (Check) field in PageType 'FCRM #. Settings' -#: crm/fcrm/doctype/fcrm_settings/fcrm_settings.json +#: crm/fcrm/pagetype/fcrm_settings/fcrm_settings.json msgid "It will make deal's \"Expected Closure Date\" & \"Expected Deal Value\" mandatory to get accurate forecasting insights" msgstr "" -#. Label of the json (JSON) field in DocType 'CRM Global Settings' -#: crm/fcrm/doctype/crm_global_settings/crm_global_settings.json +#. Label of the json (JSON) field in PageType 'CRM Global Settings' +#: crm/fcrm/pagetype/crm_global_settings/crm_global_settings.json msgid "JSON" msgstr "" -#. Label of the job_title (Data) field in DocType 'CRM Deal' -#. Label of the job_title (Data) field in DocType 'CRM Lead' -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_lead/crm_lead.json +#. Label of the job_title (Data) field in PageType 'CRM Deal' +#. Label of the job_title (Data) field in PageType 'CRM Lead' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_lead/crm_lead.json msgid "Job Title" msgstr "" @@ -3182,20 +3182,20 @@ msgstr "" msgid "John Doe" msgstr "" -#. Label of the kanban_tab (Tab Break) field in DocType 'CRM View Settings' -#: crm/fcrm/doctype/crm_view_settings/crm_view_settings.json +#. Label of the kanban_tab (Tab Break) field in PageType 'CRM View Settings' +#: crm/fcrm/pagetype/crm_view_settings/crm_view_settings.json #: frontend/src/components/ViewControls.vue:384 #: frontend/src/components/ViewControls.vue:600 frontend/src/utils/view.js:20 msgid "Kanban" msgstr "" -#. Label of the kanban_columns (Code) field in DocType 'CRM View Settings' -#: crm/fcrm/doctype/crm_view_settings/crm_view_settings.json +#. Label of the kanban_columns (Code) field in PageType 'CRM View Settings' +#: crm/fcrm/pagetype/crm_view_settings/crm_view_settings.json msgid "Kanban Columns" msgstr "" -#. Label of the kanban_fields (Code) field in DocType 'CRM View Settings' -#: crm/fcrm/doctype/crm_view_settings/crm_view_settings.json +#. Label of the kanban_fields (Code) field in PageType 'CRM View Settings' +#: crm/fcrm/pagetype/crm_view_settings/crm_view_settings.json msgid "Kanban Fields" msgstr "" @@ -3204,15 +3204,15 @@ msgstr "" msgid "Kanban Settings" msgstr "" -#. Label of the key (Data) field in DocType 'CRM Invitation' -#: crm/fcrm/doctype/crm_invitation/crm_invitation.json +#. Label of the key (Data) field in PageType 'CRM Invitation' +#: crm/fcrm/pagetype/crm_invitation/crm_invitation.json msgid "Key" msgstr "" -#. Label of the label (Data) field in DocType 'CRM Dropdown Item' -#. Label of the label (Data) field in DocType 'CRM View Settings' -#: crm/fcrm/doctype/crm_dropdown_item/crm_dropdown_item.json -#: crm/fcrm/doctype/crm_view_settings/crm_view_settings.json +#. Label of the label (Data) field in PageType 'CRM Dropdown Item' +#. Label of the label (Data) field in PageType 'CRM View Settings' +#: crm/fcrm/pagetype/crm_dropdown_item/crm_dropdown_item.json +#: crm/fcrm/pagetype/crm_view_settings/crm_view_settings.json #: frontend/src/components/ColumnSettings.vue:100 msgid "Label" msgstr "" @@ -3229,10 +3229,10 @@ msgstr "" msgid "Last Month" msgstr "" -#. Label of the last_name (Data) field in DocType 'CRM Deal' -#. Label of the last_name (Data) field in DocType 'CRM Lead' -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_lead/crm_lead.json +#. Label of the last_name (Data) field in PageType 'CRM Deal' +#. Label of the last_name (Data) field in PageType 'CRM Lead' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_lead/crm_lead.json msgid "Last Name" msgstr "" @@ -3240,9 +3240,9 @@ msgstr "" msgid "Last Quarter" msgstr "" -#. Label of the last_status_change_log (Link) field in DocType 'CRM Status +#. Label of the last_status_change_log (Link) field in PageType 'CRM Status #. Change Log' -#: crm/fcrm/doctype/crm_status_change_log/crm_status_change_log.json +#: crm/fcrm/pagetype/crm_status_change_log/crm_status_change_log.json msgid "Last Status Change Log" msgstr "" @@ -3270,15 +3270,15 @@ msgstr "" msgid "Last user assigned by this rule" msgstr "" -#. Label of the layout (Code) field in DocType 'CRM Dashboard' -#. Label of the layout (Code) field in DocType 'CRM Fields Layout' -#: crm/fcrm/doctype/crm_dashboard/crm_dashboard.json -#: crm/fcrm/doctype/crm_fields_layout/crm_fields_layout.json +#. Label of the layout (Code) field in PageType 'CRM Dashboard' +#. Label of the layout (Code) field in PageType 'CRM Fields Layout' +#: crm/fcrm/pagetype/crm_dashboard/crm_dashboard.json +#: crm/fcrm/pagetype/crm_fields_layout/crm_fields_layout.json msgid "Layout" msgstr "" -#. Label of the lead (Link) field in DocType 'CRM Deal' -#: crm/fcrm/doctype/crm_deal/crm_deal.json +#. Label of the lead (Link) field in PageType 'CRM Deal' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json #: frontend/src/components/Calendar/CalendarEventPanel.vue:263 #: frontend/src/components/Calendar/CalendarEventPanel.vue:288 #: frontend/src/components/Layouts/AppSidebar.vue:550 @@ -3291,32 +3291,32 @@ msgstr "" msgid "Lead" msgstr "" -#. Label of the lead_details_tab (Tab Break) field in DocType 'CRM Deal' -#: crm/fcrm/doctype/crm_deal/crm_deal.json +#. Label of the lead_details_tab (Tab Break) field in PageType 'CRM Deal' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json msgid "Lead Details" msgstr "" -#. Label of the lead_name (Data) field in DocType 'CRM Deal' -#: crm/fcrm/doctype/crm_deal/crm_deal.json +#. Label of the lead_name (Data) field in PageType 'CRM Deal' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json msgid "Lead Name" msgstr "" -#. Label of the lead_owner (Link) field in DocType 'CRM Lead' -#: crm/fcrm/doctype/crm_lead/crm_lead.json +#. Label of the lead_owner (Link) field in PageType 'CRM Lead' +#: crm/fcrm/pagetype/crm_lead/crm_lead.json msgid "Lead Owner" msgstr "" -#: crm/fcrm/doctype/crm_lead/crm_lead.py:73 +#: crm/fcrm/pagetype/crm_lead/crm_lead.py:73 msgid "Lead Owner cannot be same as the Lead Email Address" msgstr "" -#. Label of a shortcut in the Frappe CRM Workspace -#: crm/fcrm/workspace/frappe_crm/frappe_crm.json +#. Label of a shortcut in the Jingrow CRM Workspace +#: crm/fcrm/workspace/jingrow_crm/jingrow_crm.json msgid "Lead Sources" msgstr "" -#. Label of a shortcut in the Frappe CRM Workspace -#: crm/fcrm/workspace/frappe_crm/frappe_crm.json +#. Label of a shortcut in the Jingrow CRM Workspace +#: crm/fcrm/workspace/jingrow_crm/jingrow_crm.json msgid "Lead Statuses" msgstr "" @@ -3328,8 +3328,8 @@ msgstr "" msgid "Lead to deal conversion pipeline" msgstr "" -#. Label of a shortcut in the Frappe CRM Workspace -#: crm/fcrm/workspace/frappe_crm/frappe_crm.json +#. Label of a shortcut in the Jingrow CRM Workspace +#: crm/fcrm/workspace/jingrow_crm/jingrow_crm.json #: frontend/src/pages/InvalidPage.vue:9 frontend/src/pages/Lead.vue:340 #: frontend/src/pages/MobileLead.vue:291 msgid "Leads" @@ -3345,8 +3345,8 @@ msgstr "" msgid "Learn about conditions" msgstr "" -#. Label of the lft (Int) field in DocType 'CRM Territory' -#: crm/fcrm/doctype/crm_territory/crm_territory.json +#. Label of the lft (Int) field in PageType 'CRM Territory' +#: crm/fcrm/pagetype/crm_territory/crm_territory.json msgid "Left" msgstr "" @@ -3367,15 +3367,15 @@ msgstr "" msgid "Link" msgstr "" -#. Label of the links (Table) field in DocType 'CRM Call Log' -#: crm/fcrm/doctype/crm_call_log/crm_call_log.json +#. Label of the links (Table) field in PageType 'CRM Call Log' +#: crm/fcrm/pagetype/crm_call_log/crm_call_log.json msgid "Links" msgstr "" -#. Option for the 'Apply To' (Select) field in DocType 'CRM Form Script' -#. Label of the list_tab (Tab Break) field in DocType 'CRM View Settings' -#: crm/fcrm/doctype/crm_form_script/crm_form_script.json -#: crm/fcrm/doctype/crm_view_settings/crm_view_settings.json +#. Option for the 'Apply To' (Select) field in PageType 'CRM Form Script' +#. Label of the list_tab (Tab Break) field in PageType 'CRM View Settings' +#: crm/fcrm/pagetype/crm_form_script/crm_form_script.json +#: crm/fcrm/pagetype/crm_view_settings/crm_view_settings.json #: frontend/src/components/ViewControls.vue:374 #: frontend/src/components/ViewControls.vue:589 frontend/src/utils/view.js:12 msgid "List" @@ -3385,9 +3385,9 @@ msgstr "" msgid "Listen" msgstr "" -#. Label of the load_default_columns (Check) field in DocType 'CRM View +#. Label of the load_default_columns (Check) field in PageType 'CRM View #. Settings' -#: crm/fcrm/doctype/crm_view_settings/crm_view_settings.json +#: crm/fcrm/pagetype/crm_view_settings/crm_view_settings.json msgid "Load Default Columns" msgstr "" @@ -3403,10 +3403,10 @@ msgstr "" msgid "Loading..." msgstr "" -#. Label of the log_tab (Tab Break) field in DocType 'CRM Deal' -#. Label of the log_tab (Tab Break) field in DocType 'CRM Lead' -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_lead/crm_lead.json +#. Label of the log_tab (Tab Break) field in PageType 'CRM Deal' +#. Label of the log_tab (Tab Break) field in PageType 'CRM Lead' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_lead/crm_lead.json msgid "Log" msgstr "" @@ -3417,28 +3417,28 @@ msgid "Log a Call" msgstr "" #: frontend/src/composables/frappecloud.js:23 -msgid "Login to Frappe Cloud?" +msgid "Login to Jingrow Cloud?" msgstr "" -#. Label of the brand_logo (Attach) field in DocType 'FCRM Settings' -#: crm/fcrm/doctype/fcrm_settings/fcrm_settings.json +#. Label of the brand_logo (Attach) field in PageType 'FCRM Settings' +#: crm/fcrm/pagetype/fcrm_settings/fcrm_settings.json msgid "Logo" msgstr "" -#. Option for the 'Type' (Select) field in DocType 'CRM Deal Status' -#: crm/fcrm/doctype/crm_deal_status/crm_deal_status.json +#. Option for the 'Type' (Select) field in PageType 'CRM Deal Status' +#: crm/fcrm/pagetype/crm_deal_status/crm_deal_status.json msgid "Lost" msgstr "" -#. Label of the lost_notes (Text) field in DocType 'CRM Deal' -#: crm/fcrm/doctype/crm_deal/crm_deal.json +#. Label of the lost_notes (Text) field in PageType 'CRM Deal' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json msgid "Lost Notes" msgstr "" -#. Label of the lost_reason (Link) field in DocType 'CRM Deal' -#. Label of the lost_reason (Data) field in DocType 'CRM Lost Reason' -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_lost_reason/crm_lost_reason.json +#. Label of the lost_reason (Link) field in PageType 'CRM Deal' +#. Label of the lost_reason (Data) field in PageType 'CRM Lost Reason' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_lost_reason/crm_lost_reason.json msgid "Lost Reason" msgstr "" @@ -3464,8 +3464,8 @@ msgstr "" msgid "Lost reason is required" msgstr "" -#. Option for the 'Priority' (Select) field in DocType 'CRM Task' -#: crm/fcrm/doctype/crm_task/crm_task.json +#. Option for the 'Priority' (Select) field in PageType 'CRM Task' +#: crm/fcrm/pagetype/crm_task/crm_task.json msgid "Low" msgstr "" @@ -3542,8 +3542,8 @@ msgstr "" msgid "Mandatory field error: {0}" msgstr "" -#. Option for the 'Telephony Medium' (Select) field in DocType 'CRM Call Log' -#: crm/fcrm/doctype/crm_call_log/crm_call_log.json +#. Option for the 'Telephony Medium' (Select) field in PageType 'CRM Call Log' +#: crm/fcrm/pagetype/crm_call_log/crm_call_log.json msgid "Manual" msgstr "" @@ -3562,25 +3562,25 @@ msgstr "" msgid "May 1, 2025" msgstr "" -#. Label of the medium (Data) field in DocType 'CRM Call Log' -#. Option for the 'Priority' (Select) field in DocType 'CRM Task' -#: crm/fcrm/doctype/crm_call_log/crm_call_log.json -#: crm/fcrm/doctype/crm_task/crm_task.json +#. Label of the medium (Data) field in PageType 'CRM Call Log' +#. Option for the 'Priority' (Select) field in PageType 'CRM Task' +#: crm/fcrm/pagetype/crm_call_log/crm_call_log.json +#: crm/fcrm/pagetype/crm_task/crm_task.json msgid "Medium" msgstr "" -#. Option for the 'Type' (Select) field in DocType 'CRM Notification' -#: crm/fcrm/doctype/crm_notification/crm_notification.json +#. Option for the 'Type' (Select) field in PageType 'CRM Notification' +#: crm/fcrm/pagetype/crm_notification/crm_notification.json msgid "Mention" msgstr "" -#. Label of the message (HTML Editor) field in DocType 'CRM Notification' -#: crm/fcrm/doctype/crm_notification/crm_notification.json +#. Label of the message (HTML Editor) field in PageType 'CRM Notification' +#: crm/fcrm/pagetype/crm_notification/crm_notification.json msgid "Message" msgstr "" -#. Label of the middle_name (Data) field in DocType 'CRM Lead' -#: crm/fcrm/doctype/crm_lead/crm_lead.json +#. Label of the middle_name (Data) field in PageType 'CRM Lead' +#: crm/fcrm/pagetype/crm_lead/crm_lead.json msgid "Middle Name" msgstr "" @@ -3588,10 +3588,10 @@ msgstr "" msgid "Minimize" msgstr "" -#. Label of the mobile_no (Data) field in DocType 'CRM Contacts' -#. Label of the mobile_no (Data) field in DocType 'CRM Lead' -#: crm/fcrm/doctype/crm_contacts/crm_contacts.json -#: crm/fcrm/doctype/crm_lead/crm_lead.json +#. Label of the mobile_no (Data) field in PageType 'CRM Contacts' +#. Label of the mobile_no (Data) field in PageType 'CRM Lead' +#: crm/fcrm/pagetype/crm_contacts/crm_contacts.json +#: crm/fcrm/pagetype/crm_lead/crm_lead.json msgid "Mobile No" msgstr "" @@ -3600,8 +3600,8 @@ msgstr "" msgid "Mobile No should be a number" msgstr "" -#. Label of the mobile_no (Data) field in DocType 'CRM Telephony Agent' -#: crm/fcrm/doctype/crm_telephony_agent/crm_telephony_agent.json +#. Label of the mobile_no (Data) field in PageType 'CRM Telephony Agent' +#: crm/fcrm/pagetype/crm_telephony_agent/crm_telephony_agent.json msgid "Mobile No." msgstr "" @@ -3623,10 +3623,10 @@ msgstr "" msgid "Mobile no" msgstr "" -#. Option for the 'Weekly Off' (Select) field in DocType 'CRM Holiday List' -#. Option for the 'Workday' (Select) field in DocType 'CRM Service Day' -#: crm/fcrm/doctype/crm_holiday_list/crm_holiday_list.json -#: crm/fcrm/doctype/crm_service_day/crm_service_day.json +#. Option for the 'Weekly Off' (Select) field in PageType 'CRM Holiday List' +#. Option for the 'Workday' (Select) field in PageType 'CRM Service Day' +#: crm/fcrm/pagetype/crm_holiday_list/crm_holiday_list.json +#: crm/fcrm/pagetype/crm_service_day/crm_service_day.json msgid "Monday" msgstr "" @@ -3658,12 +3658,12 @@ msgstr "" msgid "My Open Deals" msgstr "" -#. Label of the title (Data) field in DocType 'CRM Dashboard' -#. Label of the name1 (Data) field in DocType 'CRM Dropdown Item' -#. Label of the brand_name (Data) field in DocType 'FCRM Settings' -#: crm/fcrm/doctype/crm_dashboard/crm_dashboard.json -#: crm/fcrm/doctype/crm_dropdown_item/crm_dropdown_item.json -#: crm/fcrm/doctype/fcrm_settings/fcrm_settings.json +#. Label of the title (Data) field in PageType 'CRM Dashboard' +#. Label of the name1 (Data) field in PageType 'CRM Dropdown Item' +#. Label of the brand_name (Data) field in PageType 'FCRM Settings' +#: crm/fcrm/pagetype/crm_dashboard/crm_dashboard.json +#: crm/fcrm/pagetype/crm_dropdown_item/crm_dropdown_item.json +#: crm/fcrm/pagetype/fcrm_settings/fcrm_settings.json #: frontend/src/components/Settings/AssignmentRules/AssignmentRuleView.vue:51 #: frontend/src/components/Settings/AssignmentRules/AssignmentRuleView.vue:52 #: frontend/src/components/Settings/EmailTemplate/EditEmailTemplate.vue:39 @@ -3680,10 +3680,10 @@ msgstr "" msgid "Name is required" msgstr "" -#. Label of the naming_series (Select) field in DocType 'CRM Deal' -#. Label of the naming_series (Select) field in DocType 'CRM Product' -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_product/crm_product.json +#. Label of the naming_series (Select) field in PageType 'CRM Deal' +#. Label of the naming_series (Select) field in PageType 'CRM Product' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_product/crm_product.json msgid "Naming Series" msgstr "" @@ -3691,15 +3691,15 @@ msgstr "" msgid "Nested conditions" msgstr "" -#. Label of the net_amount (Currency) field in DocType 'CRM Products' -#: crm/fcrm/doctype/crm_products/crm_products.json +#. Label of the net_amount (Currency) field in PageType 'CRM Products' +#: crm/fcrm/pagetype/crm_products/crm_products.json msgid "Net Amount" msgstr "" -#. Label of the net_total (Currency) field in DocType 'CRM Deal' -#. Label of the net_total (Currency) field in DocType 'CRM Lead' -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_lead/crm_lead.json +#. Label of the net_total (Currency) field in PageType 'CRM Deal' +#. Label of the net_total (Currency) field in PageType 'CRM Lead' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_lead/crm_lead.json msgid "Net Total" msgstr "" @@ -3814,8 +3814,8 @@ msgstr "" msgid "Next Quarter" msgstr "" -#. Label of the next_step (Data) field in DocType 'CRM Deal' -#: crm/fcrm/doctype/crm_deal/crm_deal.json +#. Label of the next_step (Data) field in PageType 'CRM Deal' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json msgid "Next Step" msgstr "" @@ -3831,8 +3831,8 @@ msgstr "" msgid "No" msgstr "" -#. Option for the 'Status' (Select) field in DocType 'CRM Call Log' -#: crm/fcrm/doctype/crm_call_log/crm_call_log.json +#. Option for the 'Status' (Select) field in PageType 'CRM Call Log' +#: crm/fcrm/pagetype/crm_call_log/crm_call_log.json msgid "No Answer" msgstr "" @@ -3930,12 +3930,12 @@ msgstr "" msgid "No {0} Found" msgstr "" -#. Label of the no_of_employees (Select) field in DocType 'CRM Deal' -#. Label of the no_of_employees (Select) field in DocType 'CRM Lead' -#. Label of the no_of_employees (Select) field in DocType 'CRM Organization' -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_lead/crm_lead.json -#: crm/fcrm/doctype/crm_organization/crm_organization.json +#. Label of the no_of_employees (Select) field in PageType 'CRM Deal' +#. Label of the no_of_employees (Select) field in PageType 'CRM Lead' +#. Label of the no_of_employees (Select) field in PageType 'CRM Organization' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_lead/crm_lead.json +#: crm/fcrm/pagetype/crm_organization/crm_organization.json msgid "No. of Employees" msgstr "" @@ -3981,24 +3981,24 @@ msgstr "" msgid "Not Saved" msgstr "" -#: crm/fcrm/doctype/crm_deal/crm_deal.py:272 +#: crm/fcrm/pagetype/crm_deal/crm_deal.py:272 msgid "Not allowed to add contact to Deal" msgstr "" -#: crm/fcrm/doctype/crm_lead/crm_lead.py:408 +#: crm/fcrm/pagetype/crm_lead/crm_lead.py:408 msgid "Not allowed to convert Lead to Deal" msgstr "" -#: crm/fcrm/doctype/crm_deal/crm_deal.py:283 +#: crm/fcrm/pagetype/crm_deal/crm_deal.py:283 msgid "Not allowed to remove contact from Deal" msgstr "" -#: crm/fcrm/doctype/crm_deal/crm_deal.py:294 +#: crm/fcrm/pagetype/crm_deal/crm_deal.py:294 msgid "Not allowed to set primary contact for Deal" msgstr "" -#. Label of the note (Link) field in DocType 'CRM Call Log' -#: crm/fcrm/doctype/crm_call_log/crm_call_log.json +#. Label of the note (Link) field in PageType 'CRM Call Log' +#: crm/fcrm/pagetype/crm_call_log/crm_call_log.json #: frontend/src/components/Layouts/AppSidebar.vue:554 msgid "Note" msgstr "" @@ -4017,21 +4017,21 @@ msgstr "" msgid "Notification" msgstr "" -#. Label of the notification_text (Text) field in DocType 'CRM Notification' -#: crm/fcrm/doctype/crm_notification/crm_notification.json +#. Label of the notification_text (Text) field in PageType 'CRM Notification' +#: crm/fcrm/pagetype/crm_notification/crm_notification.json msgid "Notification Text" msgstr "" -#. Label of the notification_type_doc (Dynamic Link) field in DocType 'CRM +#. Label of the notification_type_pg (Dynamic Link) field in PageType 'CRM #. Notification' -#: crm/fcrm/doctype/crm_notification/crm_notification.json -msgid "Notification Type Doc" +#: crm/fcrm/pagetype/crm_notification/crm_notification.json +msgid "Notification Type Pg" msgstr "" -#. Label of the notification_type_doctype (Link) field in DocType 'CRM +#. Label of the notification_type_pagetype (Link) field in PageType 'CRM #. Notification' -#: crm/fcrm/doctype/crm_notification/crm_notification.json -msgid "Notification Type Doctype" +#: crm/fcrm/pagetype/crm_notification/crm_notification.json +msgid "Notification Type Pagetype" msgstr "" #: frontend/src/components/Layouts/AppSidebar.vue:13 @@ -4041,8 +4041,8 @@ msgstr "" msgid "Notifications" msgstr "" -#. Label of the number (Data) field in DocType 'CRM Telephony Phone' -#: crm/fcrm/doctype/crm_telephony_phone/crm_telephony_phone.json +#. Label of the number (Data) field in PageType 'CRM Telephony Phone' +#: crm/fcrm/pagetype/crm_telephony_phone/crm_telephony_phone.json msgid "Number" msgstr "" @@ -4064,18 +4064,18 @@ msgstr "" msgid "Old Condition" msgstr "" -#. Label of the old_parent (Link) field in DocType 'CRM Territory' -#: crm/fcrm/doctype/crm_territory/crm_territory.json +#. Label of the old_parent (Link) field in PageType 'CRM Territory' +#: crm/fcrm/pagetype/crm_territory/crm_territory.json msgid "Old Parent" msgstr "" -#. Option for the 'Type' (Select) field in DocType 'CRM Deal Status' -#: crm/fcrm/doctype/crm_deal_status/crm_deal_status.json +#. Option for the 'Type' (Select) field in PageType 'CRM Deal Status' +#: crm/fcrm/pagetype/crm_deal_status/crm_deal_status.json msgid "On Hold" msgstr "" -#. Option for the 'Type' (Select) field in DocType 'CRM Deal Status' -#: crm/fcrm/doctype/crm_deal_status/crm_deal_status.json +#. Option for the 'Type' (Select) field in PageType 'CRM Deal Status' +#: crm/fcrm/pagetype/crm_deal_status/crm_deal_status.json msgid "Ongoing" msgstr "" @@ -4088,13 +4088,13 @@ msgstr "" msgid "Only image files are allowed" msgstr "" -#: crm/fcrm/doctype/crm_deal/crm_deal.py:60 -#: crm/fcrm/doctype/crm_telephony_agent/crm_telephony_agent.py:23 +#: crm/fcrm/pagetype/crm_deal/crm_deal.py:60 +#: crm/fcrm/pagetype/crm_telephony_agent/crm_telephony_agent.py:23 msgid "Only one {0} can be set as primary." msgstr "" -#. Option for the 'Type' (Select) field in DocType 'CRM Deal Status' -#: crm/fcrm/doctype/crm_deal_status/crm_deal_status.json +#. Option for the 'Type' (Select) field in PageType 'CRM Deal Status' +#: crm/fcrm/pagetype/crm_deal_status/crm_deal_status.json msgid "Open" msgstr "" @@ -4108,13 +4108,13 @@ msgstr "" msgid "Open Lead" msgstr "" -#: crm/fcrm/doctype/crm_deal/crm_deal.js:6 -#: crm/fcrm/doctype/crm_lead/crm_lead.js:6 +#: crm/fcrm/pagetype/crm_deal/crm_deal.js:6 +#: crm/fcrm/pagetype/crm_lead/crm_lead.js:6 msgid "Open in Portal" msgstr "" -#. Label of the open_in_new_window (Check) field in DocType 'CRM Dropdown Item' -#: crm/fcrm/doctype/crm_dropdown_item/crm_dropdown_item.json +#. Label of the open_in_new_window (Check) field in PageType 'CRM Dropdown Item' +#: crm/fcrm/pagetype/crm_dropdown_item/crm_dropdown_item.json msgid "Open in new window" msgstr "" @@ -4136,17 +4136,17 @@ msgstr "" msgid "Or create leads manually" msgstr "" -#. Label of the order_by_tab (Tab Break) field in DocType 'CRM View Settings' -#. Label of the order_by (Code) field in DocType 'CRM View Settings' -#: crm/fcrm/doctype/crm_view_settings/crm_view_settings.json +#. Label of the order_by_tab (Tab Break) field in PageType 'CRM View Settings' +#. Label of the order_by (Code) field in PageType 'CRM View Settings' +#: crm/fcrm/pagetype/crm_view_settings/crm_view_settings.json msgid "Order By" msgstr "" -#. Label of the organization (Link) field in DocType 'CRM Deal' -#. Label of the organization_tab (Tab Break) field in DocType 'CRM Deal' -#. Label of the organization (Data) field in DocType 'CRM Lead' -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_lead/crm_lead.json +#. Label of the organization (Link) field in PageType 'CRM Deal' +#. Label of the organization_tab (Tab Break) field in PageType 'CRM Deal' +#. Label of the organization (Data) field in PageType 'CRM Lead' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_lead/crm_lead.json #: frontend/src/components/Layouts/AppSidebar.vue:553 #: frontend/src/components/Modals/ConvertToDealModal.vue:25 #: frontend/src/pages/Contact.vue:494 frontend/src/pages/MobileContact.vue:502 @@ -4158,22 +4158,22 @@ msgstr "" msgid "Organization" msgstr "" -#. Label of the organization_details_section (Section Break) field in DocType +#. Label of the organization_details_section (Section Break) field in PageType #. 'CRM Deal' -#: crm/fcrm/doctype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_deal/crm_deal.json msgid "Organization Details" msgstr "" -#. Label of the organization_logo (Attach Image) field in DocType 'CRM +#. Label of the organization_logo (Attach Image) field in PageType 'CRM #. Organization' -#: crm/fcrm/doctype/crm_organization/crm_organization.json +#: crm/fcrm/pagetype/crm_organization/crm_organization.json msgid "Organization Logo" msgstr "" -#. Label of the organization_name (Data) field in DocType 'CRM Deal' -#. Label of the organization_name (Data) field in DocType 'CRM Organization' -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_organization/crm_organization.json +#. Label of the organization_name (Data) field in PageType 'CRM Deal' +#. Label of the organization_name (Data) field in PageType 'CRM Organization' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_organization/crm_organization.json msgid "Organization Name" msgstr "" @@ -4181,8 +4181,8 @@ msgstr "" msgid "Organization logo" msgstr "" -#. Label of a shortcut in the Frappe CRM Workspace -#: crm/fcrm/workspace/frappe_crm/frappe_crm.json +#. Label of a shortcut in the Jingrow CRM Workspace +#: crm/fcrm/workspace/jingrow_crm/jingrow_crm.json #: frontend/src/pages/MobileOrganization.vue:205 #: frontend/src/pages/Organization.vue:234 msgid "Organizations" @@ -4196,8 +4196,8 @@ msgstr "" msgid "Other features" msgstr "" -#. Label of the organization_tab (Tab Break) field in DocType 'CRM Lead' -#: crm/fcrm/doctype/crm_lead/crm_lead.json +#. Label of the organization_tab (Tab Break) field in PageType 'CRM Lead' +#: crm/fcrm/pagetype/crm_lead/crm_lead.json msgid "Others" msgstr "" @@ -4205,13 +4205,13 @@ msgstr "" msgid "Outbound Call" msgstr "" -#. Option for the 'Type' (Select) field in DocType 'CRM Call Log' -#: crm/fcrm/doctype/crm_call_log/crm_call_log.json +#. Option for the 'Type' (Select) field in PageType 'CRM Call Log' +#: crm/fcrm/pagetype/crm_call_log/crm_call_log.json msgid "Outgoing" msgstr "" -#. Label of the log_owner (Link) field in DocType 'CRM Status Change Log' -#: crm/fcrm/doctype/crm_status_change_log/crm_status_change_log.json +#. Label of the log_owner (Link) field in PageType 'CRM Status Change Log' +#: crm/fcrm/pagetype/crm_status_change_log/crm_status_change_log.json msgid "Owner" msgstr "" @@ -4219,8 +4219,8 @@ msgstr "" msgid "Owner: {0}" msgstr "" -#. Label of the parent_crm_territory (Link) field in DocType 'CRM Territory' -#: crm/fcrm/doctype/crm_territory/crm_territory.json +#. Label of the parent_crm_territory (Link) field in PageType 'CRM Territory' +#: crm/fcrm/pagetype/crm_territory/crm_territory.json msgid "Parent CRM Territory" msgstr "" @@ -4251,8 +4251,8 @@ msgstr "" msgid "Payment Reminder from Frappé - (#{{ name }})" msgstr "" -#. Option for the 'Status' (Select) field in DocType 'CRM Invitation' -#: crm/fcrm/doctype/crm_invitation/crm_invitation.json +#. Option for the 'Status' (Select) field in PageType 'CRM Invitation' +#: crm/fcrm/pagetype/crm_invitation/crm_invitation.json msgid "Pending" msgstr "" @@ -4264,10 +4264,10 @@ msgstr "" msgid "Period" msgstr "" -#. Label of the person_section (Section Break) field in DocType 'CRM Deal' -#. Label of the person_tab (Tab Break) field in DocType 'CRM Lead' -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_lead/crm_lead.json +#. Label of the person_section (Section Break) field in PageType 'CRM Deal' +#. Label of the person_tab (Tab Break) field in PageType 'CRM Lead' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_lead/crm_lead.json msgid "Person" msgstr "" @@ -4275,19 +4275,19 @@ msgstr "" msgid "Personal Settings" msgstr "" -#. Label of the phone (Data) field in DocType 'CRM Contacts' -#. Label of the phone (Data) field in DocType 'CRM Lead' -#. Option for the 'Device' (Select) field in DocType 'CRM Telephony Agent' -#: crm/fcrm/doctype/crm_contacts/crm_contacts.json -#: crm/fcrm/doctype/crm_lead/crm_lead.json -#: crm/fcrm/doctype/crm_telephony_agent/crm_telephony_agent.json +#. Label of the phone (Data) field in PageType 'CRM Contacts' +#. Label of the phone (Data) field in PageType 'CRM Lead' +#. Option for the 'Device' (Select) field in PageType 'CRM Telephony Agent' +#: crm/fcrm/pagetype/crm_contacts/crm_contacts.json +#: crm/fcrm/pagetype/crm_lead/crm_lead.json +#: crm/fcrm/pagetype/crm_telephony_agent/crm_telephony_agent.json #: frontend/src/pages/MobileOrganization.vue:495 #: frontend/src/pages/Organization.vue:516 msgid "Phone" msgstr "" -#. Label of the phone_nos (Table) field in DocType 'CRM Telephony Agent' -#: crm/fcrm/doctype/crm_telephony_agent/crm_telephony_agent.json +#. Label of the phone_nos (Table) field in PageType 'CRM Telephony Agent' +#: crm/fcrm/pagetype/crm_telephony_agent/crm_telephony_agent.json msgid "Phone Numbers" msgstr "" @@ -4295,8 +4295,8 @@ msgstr "" msgid "Pin View" msgstr "" -#. Label of the pinned (Check) field in DocType 'CRM View Settings' -#: crm/fcrm/doctype/crm_view_settings/crm_view_settings.json +#. Label of the pinned (Check) field in PageType 'CRM View Settings' +#: crm/fcrm/pagetype/crm_view_settings/crm_view_settings.json msgid "Pinned" msgstr "" @@ -4346,7 +4346,7 @@ msgstr "" msgid "Please select an existing organization" msgstr "" -#: crm/fcrm/doctype/helpdesk_crm_settings/helpdesk_crm_settings.py:126 +#: crm/fcrm/pagetype/helpdesk_crm_settings/helpdesk_crm_settings.py:126 msgid "Please set Email Address" msgstr "" @@ -4354,18 +4354,18 @@ msgstr "" msgid "Please setup Exotel intergration" msgstr "" -#: crm/fcrm/doctype/crm_deal/crm_deal.py:181 +#: crm/fcrm/pagetype/crm_deal/crm_deal.py:181 msgid "Please specify a reason for losing the deal." msgstr "" -#: crm/fcrm/doctype/crm_deal/crm_deal.py:183 +#: crm/fcrm/pagetype/crm_deal/crm_deal.py:183 msgid "Please specify the reason for losing the deal." msgstr "" -#. Label of the position (Int) field in DocType 'CRM Deal Status' -#. Label of the position (Int) field in DocType 'CRM Lead Status' -#: crm/fcrm/doctype/crm_deal_status/crm_deal_status.json -#: crm/fcrm/doctype/crm_lead_status/crm_lead_status.json +#. Label of the position (Int) field in PageType 'CRM Deal Status' +#. Label of the position (Int) field in PageType 'CRM Lead Status' +#: crm/fcrm/pagetype/crm_deal_status/crm_deal_status.json +#: crm/fcrm/pagetype/crm_lead_status/crm_lead_status.json msgid "Position" msgstr "" @@ -4373,18 +4373,18 @@ msgstr "" msgid "Primary" msgstr "" -#. Label of the email (Data) field in DocType 'CRM Deal' -#: crm/fcrm/doctype/crm_deal/crm_deal.json +#. Label of the email (Data) field in PageType 'CRM Deal' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json msgid "Primary Email" msgstr "" -#. Label of the mobile_no (Data) field in DocType 'CRM Deal' -#: crm/fcrm/doctype/crm_deal/crm_deal.json +#. Label of the mobile_no (Data) field in PageType 'CRM Deal' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json msgid "Primary Mobile No" msgstr "" -#. Label of the phone (Data) field in DocType 'CRM Deal' -#: crm/fcrm/doctype/crm_deal/crm_deal.json +#. Label of the phone (Data) field in PageType 'CRM Deal' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json msgid "Primary Phone" msgstr "" @@ -4392,57 +4392,57 @@ msgstr "" msgid "Primary contact set" msgstr "" -#. Label of the priorities (Table) field in DocType 'CRM Service Level +#. Label of the priorities (Table) field in PageType 'CRM Service Level #. Agreement' -#: crm/fcrm/doctype/crm_service_level_agreement/crm_service_level_agreement.json +#: crm/fcrm/pagetype/crm_service_level_agreement/crm_service_level_agreement.json msgid "Priorities" msgstr "" -#. Label of the priority (Link) field in DocType 'CRM Service Level Priority' -#. Label of the priority (Select) field in DocType 'CRM Task' -#: crm/fcrm/doctype/crm_service_level_priority/crm_service_level_priority.json -#: crm/fcrm/doctype/crm_task/crm_task.json +#. Label of the priority (Link) field in PageType 'CRM Service Level Priority' +#. Label of the priority (Select) field in PageType 'CRM Task' +#: crm/fcrm/pagetype/crm_service_level_priority/crm_service_level_priority.json +#: crm/fcrm/pagetype/crm_task/crm_task.json #: frontend/src/components/Settings/AssignmentRules/AssignmentRuleView.vue:64 #: frontend/src/components/Settings/AssignmentRules/AssignmentRulesList.vue:20 msgid "Priority" msgstr "" -#. Label of the private (Check) field in DocType 'CRM Dashboard' -#: crm/fcrm/doctype/crm_dashboard/crm_dashboard.json +#. Label of the private (Check) field in PageType 'CRM Dashboard' +#: crm/fcrm/pagetype/crm_dashboard/crm_dashboard.json #: frontend/src/components/FilesUploader/FilesUploaderArea.vue:89 msgid "Private" msgstr "" -#. Label of the probability (Percent) field in DocType 'CRM Deal' -#. Label of the probability (Percent) field in DocType 'CRM Deal Status' -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_deal_status/crm_deal_status.json +#. Label of the probability (Percent) field in PageType 'CRM Deal' +#. Label of the probability (Percent) field in PageType 'CRM Deal Status' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_deal_status/crm_deal_status.json msgid "Probability" msgstr "" -#. Label of the product_code (Link) field in DocType 'CRM Products' -#: crm/fcrm/doctype/crm_products/crm_products.json +#. Label of the product_code (Link) field in PageType 'CRM Products' +#: crm/fcrm/pagetype/crm_products/crm_products.json msgid "Product" msgstr "" -#. Label of the product_code (Data) field in DocType 'CRM Product' -#: crm/fcrm/doctype/crm_product/crm_product.json +#. Label of the product_code (Data) field in PageType 'CRM Product' +#: crm/fcrm/pagetype/crm_product/crm_product.json msgid "Product Code" msgstr "" -#. Label of the product_name (Data) field in DocType 'CRM Product' -#. Label of the product_name (Data) field in DocType 'CRM Products' -#: crm/fcrm/doctype/crm_product/crm_product.json -#: crm/fcrm/doctype/crm_products/crm_products.json +#. Label of the product_name (Data) field in PageType 'CRM Product' +#. Label of the product_name (Data) field in PageType 'CRM Products' +#: crm/fcrm/pagetype/crm_product/crm_product.json +#: crm/fcrm/pagetype/crm_products/crm_products.json msgid "Product Name" msgstr "" -#. Label of the products_tab (Tab Break) field in DocType 'CRM Deal' -#. Label of the products (Table) field in DocType 'CRM Deal' -#. Label of the products_tab (Tab Break) field in DocType 'CRM Lead' -#. Label of the products (Table) field in DocType 'CRM Lead' -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_lead/crm_lead.json +#. Label of the products_tab (Tab Break) field in PageType 'CRM Deal' +#. Label of the products (Table) field in PageType 'CRM Deal' +#. Label of the products_tab (Tab Break) field in PageType 'CRM Lead' +#. Label of the products (Table) field in PageType 'CRM Lead' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_lead/crm_lead.json msgid "Products" msgstr "" @@ -4459,8 +4459,8 @@ msgstr "" msgid "Projected vs actual revenue based on deal probability" msgstr "" -#. Label of the public (Check) field in DocType 'CRM View Settings' -#: crm/fcrm/doctype/crm_view_settings/crm_view_settings.json +#. Label of the public (Check) field in PageType 'CRM View Settings' +#: crm/fcrm/pagetype/crm_view_settings/crm_view_settings.json msgid "Public" msgstr "" @@ -4472,23 +4472,23 @@ msgstr "" msgid "Public view" msgstr "" -#. Label of the qty (Float) field in DocType 'CRM Products' -#: crm/fcrm/doctype/crm_products/crm_products.json +#. Label of the qty (Float) field in PageType 'CRM Products' +#: crm/fcrm/pagetype/crm_products/crm_products.json msgid "Quantity" msgstr "" -#. Option for the 'Status' (Select) field in DocType 'CRM Call Log' -#: crm/fcrm/doctype/crm_call_log/crm_call_log.json +#. Option for the 'Status' (Select) field in PageType 'CRM Call Log' +#: crm/fcrm/pagetype/crm_call_log/crm_call_log.json msgid "Queued" msgstr "" -#. Option for the 'Type' (Select) field in DocType 'CRM Fields Layout' -#: crm/fcrm/doctype/crm_fields_layout/crm_fields_layout.json +#. Option for the 'Type' (Select) field in PageType 'CRM Fields Layout' +#: crm/fcrm/pagetype/crm_fields_layout/crm_fields_layout.json msgid "Quick Entry" msgstr "" -#. Option for the 'Type' (Select) field in DocType 'CRM Global Settings' -#: crm/fcrm/doctype/crm_global_settings/crm_global_settings.json +#. Option for the 'Type' (Select) field in PageType 'CRM Global Settings' +#: crm/fcrm/pagetype/crm_global_settings/crm_global_settings.json msgid "Quick Filters" msgstr "" @@ -4500,13 +4500,13 @@ msgstr "" msgid "Quick entry layout" msgstr "" -#. Label of the rate (Currency) field in DocType 'CRM Products' -#: crm/fcrm/doctype/crm_products/crm_products.json +#. Label of the rate (Currency) field in PageType 'CRM Products' +#: crm/fcrm/pagetype/crm_products/crm_products.json msgid "Rate" msgstr "" -#. Label of the read (Check) field in DocType 'CRM Notification' -#: crm/fcrm/doctype/crm_notification/crm_notification.json +#. Label of the read (Check) field in PageType 'CRM Notification' +#: crm/fcrm/pagetype/crm_notification/crm_notification.json msgid "Read" msgstr "" @@ -4514,48 +4514,48 @@ msgstr "" msgid "Reason" msgstr "" -#. Label of the record_calls (Check) field in DocType 'CRM Twilio Settings' -#: crm/fcrm/doctype/crm_twilio_settings/crm_twilio_settings.json +#. Label of the record_calls (Check) field in PageType 'CRM Twilio Settings' +#: crm/fcrm/pagetype/crm_twilio_settings/crm_twilio_settings.json msgid "Record Calls" msgstr "" -#. Label of the record_call (Check) field in DocType 'CRM Exotel Settings' -#: crm/fcrm/doctype/crm_exotel_settings/crm_exotel_settings.json +#. Label of the record_call (Check) field in PageType 'CRM Exotel Settings' +#: crm/fcrm/pagetype/crm_exotel_settings/crm_exotel_settings.json msgid "Record Outgoing Calls" msgstr "" -#. Label of the recording_url (Data) field in DocType 'CRM Call Log' -#: crm/fcrm/doctype/crm_call_log/crm_call_log.json +#. Label of the recording_url (Data) field in PageType 'CRM Call Log' +#: crm/fcrm/pagetype/crm_call_log/crm_call_log.json msgid "Recording URL" msgstr "" -#. Label of the reference_name (Dynamic Link) field in DocType 'CRM +#. Label of the reference_name (Dynamic Link) field in PageType 'CRM #. Notification' -#. Label of the reference_docname (Dynamic Link) field in DocType 'CRM Task' -#. Label of the reference_docname (Dynamic Link) field in DocType 'FCRM Note' -#: crm/fcrm/doctype/crm_notification/crm_notification.json -#: crm/fcrm/doctype/crm_task/crm_task.json -#: crm/fcrm/doctype/fcrm_note/fcrm_note.json -msgid "Reference Doc" +#. Label of the reference_docname (Dynamic Link) field in PageType 'CRM Task' +#. Label of the reference_docname (Dynamic Link) field in PageType 'FCRM Note' +#: crm/fcrm/pagetype/crm_notification/crm_notification.json +#: crm/fcrm/pagetype/crm_task/crm_task.json +#: crm/fcrm/pagetype/fcrm_note/fcrm_note.json +msgid "Reference Pg" msgstr "" -#. Label of the reference_doctype (Link) field in DocType 'CRM Notification' -#: crm/fcrm/doctype/crm_notification/crm_notification.json -msgid "Reference Doctype" +#. Label of the reference_pagetype (Link) field in PageType 'CRM Notification' +#: crm/fcrm/pagetype/crm_notification/crm_notification.json +msgid "Reference Pagetype" msgstr "" -#. Label of the reference_doctype (Link) field in DocType 'CRM Call Log' -#. Label of the reference_doctype (Link) field in DocType 'CRM Task' -#. Label of the reference_doctype (Link) field in DocType 'FCRM Note' -#: crm/fcrm/doctype/crm_call_log/crm_call_log.json -#: crm/fcrm/doctype/crm_task/crm_task.json -#: crm/fcrm/doctype/fcrm_note/fcrm_note.json +#. Label of the reference_pagetype (Link) field in PageType 'CRM Call Log' +#. Label of the reference_pagetype (Link) field in PageType 'CRM Task' +#. Label of the reference_pagetype (Link) field in PageType 'FCRM Note' +#: crm/fcrm/pagetype/crm_call_log/crm_call_log.json +#: crm/fcrm/pagetype/crm_task/crm_task.json +#: crm/fcrm/pagetype/fcrm_note/fcrm_note.json msgid "Reference Document Type" msgstr "" -#. Label of the reference_docname (Dynamic Link) field in DocType 'CRM Call +#. Label of the reference_docname (Dynamic Link) field in PageType 'CRM Call #. Log' -#: crm/fcrm/doctype/crm_call_log/crm_call_log.json +#: crm/fcrm/pagetype/crm_call_log/crm_call_log.json msgid "Reference Name" msgstr "" @@ -4625,8 +4625,8 @@ msgstr "" msgid "Report an Issue" msgstr "" -#. Option for the 'Type' (Select) field in DocType 'CRM Fields Layout' -#: crm/fcrm/doctype/crm_fields_layout/crm_fields_layout.json +#. Option for the 'Type' (Select) field in PageType 'CRM Fields Layout' +#: crm/fcrm/pagetype/crm_fields_layout/crm_fields_layout.json msgid "Required Fields" msgstr "" @@ -4642,7 +4642,7 @@ msgstr "" msgid "Reset Changes" msgstr "" -#: crm/fcrm/doctype/erpnext_crm_settings/erpnext_crm_settings.js:7 +#: crm/fcrm/pagetype/erpnext_crm_settings/erpnext_crm_settings.js:7 msgid "Reset ERPNext Form Script" msgstr "" @@ -4654,35 +4654,35 @@ msgstr "" msgid "Reset to default" msgstr "" -#. Label of the response_by (Datetime) field in DocType 'CRM Deal' -#. Label of the response_by (Datetime) field in DocType 'CRM Lead' -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_lead/crm_lead.json +#. Label of the response_by (Datetime) field in PageType 'CRM Deal' +#. Label of the response_by (Datetime) field in PageType 'CRM Lead' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_lead/crm_lead.json msgid "Response By" msgstr "" -#. Label of the response_details_section (Section Break) field in DocType 'CRM +#. Label of the response_details_section (Section Break) field in PageType 'CRM #. Deal' -#. Label of the response_details_section (Section Break) field in DocType 'CRM +#. Label of the response_details_section (Section Break) field in PageType 'CRM #. Lead' -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_lead/crm_lead.json +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_lead/crm_lead.json msgid "Response Details" msgstr "" -#. Label of the section_break_ufaf (Section Break) field in DocType 'CRM +#. Label of the section_break_ufaf (Section Break) field in PageType 'CRM #. Service Level Agreement' -#: crm/fcrm/doctype/crm_service_level_agreement/crm_service_level_agreement.json +#: crm/fcrm/pagetype/crm_service_level_agreement/crm_service_level_agreement.json msgid "Response and Follow Up" msgstr "" -#: crm/fcrm/doctype/fcrm_settings/fcrm_settings.js:14 +#: crm/fcrm/pagetype/fcrm_settings/fcrm_settings.js:14 msgid "Restore" msgstr "" -#. Label of the restore_defaults (Button) field in DocType 'FCRM Settings' -#: crm/fcrm/doctype/fcrm_settings/fcrm_settings.js:13 -#: crm/fcrm/doctype/fcrm_settings/fcrm_settings.json +#. Label of the restore_defaults (Button) field in PageType 'FCRM Settings' +#: crm/fcrm/pagetype/fcrm_settings/fcrm_settings.js:13 +#: crm/fcrm/pagetype/fcrm_settings/fcrm_settings.json msgid "Restore Defaults" msgstr "" @@ -4699,13 +4699,13 @@ msgstr "" msgid "Rich Text" msgstr "" -#. Label of the rgt (Int) field in DocType 'CRM Territory' -#: crm/fcrm/doctype/crm_territory/crm_territory.json +#. Label of the rgt (Int) field in PageType 'CRM Territory' +#: crm/fcrm/pagetype/crm_territory/crm_territory.json msgid "Right" msgstr "" -#. Option for the 'Status' (Select) field in DocType 'CRM Call Log' -#: crm/fcrm/doctype/crm_call_log/crm_call_log.json +#. Option for the 'Status' (Select) field in PageType 'CRM Call Log' +#: crm/fcrm/pagetype/crm_call_log/crm_call_log.json msgid "Ringing" msgstr "" @@ -4714,55 +4714,55 @@ msgstr "" msgid "Ringing..." msgstr "" -#. Label of the role (Select) field in DocType 'CRM Invitation' -#: crm/fcrm/doctype/crm_invitation/crm_invitation.json +#. Label of the role (Select) field in PageType 'CRM Invitation' +#: crm/fcrm/pagetype/crm_invitation/crm_invitation.json #: frontend/src/components/Modals/AddExistingUserModal.vue:46 msgid "Role" msgstr "" -#. Option for the 'Type' (Select) field in DocType 'CRM Dropdown Item' -#. Label of the route (Data) field in DocType 'CRM Dropdown Item' -#: crm/fcrm/doctype/crm_dropdown_item/crm_dropdown_item.json +#. Option for the 'Type' (Select) field in PageType 'CRM Dropdown Item' +#. Label of the route (Data) field in PageType 'CRM Dropdown Item' +#: crm/fcrm/pagetype/crm_dropdown_item/crm_dropdown_item.json msgid "Route" msgstr "" -#. Label of the route_name (Data) field in DocType 'CRM View Settings' -#: crm/fcrm/doctype/crm_view_settings/crm_view_settings.json +#. Label of the route_name (Data) field in PageType 'CRM View Settings' +#: crm/fcrm/pagetype/crm_view_settings/crm_view_settings.json msgid "Route Name" msgstr "" -#. Label of the rows (Code) field in DocType 'CRM View Settings' -#: crm/fcrm/doctype/crm_view_settings/crm_view_settings.json +#. Label of the rows (Code) field in PageType 'CRM View Settings' +#: crm/fcrm/pagetype/crm_view_settings/crm_view_settings.json msgid "Rows" msgstr "" -#. Label of the sla_tab (Tab Break) field in DocType 'CRM Deal' -#. Label of the sla (Link) field in DocType 'CRM Deal' -#. Label of the sla_tab (Tab Break) field in DocType 'CRM Lead' -#. Label of the sla (Link) field in DocType 'CRM Lead' -#. Label of a shortcut in the Frappe CRM Workspace -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_lead/crm_lead.json -#: crm/fcrm/workspace/frappe_crm/frappe_crm.json +#. Label of the sla_tab (Tab Break) field in PageType 'CRM Deal' +#. Label of the sla (Link) field in PageType 'CRM Deal' +#. Label of the sla_tab (Tab Break) field in PageType 'CRM Lead' +#. Label of the sla (Link) field in PageType 'CRM Lead' +#. Label of a shortcut in the Jingrow CRM Workspace +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_lead/crm_lead.json +#: crm/fcrm/workspace/jingrow_crm/jingrow_crm.json msgid "SLA" msgstr "" -#. Label of the sla_creation (Datetime) field in DocType 'CRM Deal' -#. Label of the sla_creation (Datetime) field in DocType 'CRM Lead' -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_lead/crm_lead.json +#. Label of the sla_creation (Datetime) field in PageType 'CRM Deal' +#. Label of the sla_creation (Datetime) field in PageType 'CRM Lead' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_lead/crm_lead.json msgid "SLA Creation" msgstr "" -#. Label of the sla_name (Data) field in DocType 'CRM Service Level Agreement' -#: crm/fcrm/doctype/crm_service_level_agreement/crm_service_level_agreement.json +#. Label of the sla_name (Data) field in PageType 'CRM Service Level Agreement' +#: crm/fcrm/pagetype/crm_service_level_agreement/crm_service_level_agreement.json msgid "SLA Name" msgstr "" -#. Label of the sla_status (Select) field in DocType 'CRM Deal' -#. Label of the sla_status (Select) field in DocType 'CRM Lead' -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_lead/crm_lead.json +#. Label of the sla_status (Select) field in PageType 'CRM Deal' +#. Label of the sla_status (Select) field in PageType 'CRM Lead' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_lead/crm_lead.json msgid "SLA Status" msgstr "" @@ -4771,57 +4771,57 @@ msgid "SUBJECT" msgstr "" #. Name of a role -#. Option for the 'Role' (Select) field in DocType 'CRM Invitation' -#: crm/fcrm/doctype/crm_call_log/crm_call_log.json -#: crm/fcrm/doctype/crm_communication_status/crm_communication_status.json -#: crm/fcrm/doctype/crm_dashboard/crm_dashboard.json -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_deal_status/crm_deal_status.json -#: crm/fcrm/doctype/crm_exotel_settings/crm_exotel_settings.json -#: crm/fcrm/doctype/crm_form_script/crm_form_script.json -#: crm/fcrm/doctype/crm_global_settings/crm_global_settings.json -#: crm/fcrm/doctype/crm_holiday_list/crm_holiday_list.json -#: crm/fcrm/doctype/crm_industry/crm_industry.json -#: crm/fcrm/doctype/crm_invitation/crm_invitation.json -#: crm/fcrm/doctype/crm_lead/crm_lead.json -#: crm/fcrm/doctype/crm_lead_source/crm_lead_source.json -#: crm/fcrm/doctype/crm_lead_status/crm_lead_status.json -#: crm/fcrm/doctype/crm_lost_reason/crm_lost_reason.json -#: crm/fcrm/doctype/crm_notification/crm_notification.json -#: crm/fcrm/doctype/crm_organization/crm_organization.json -#: crm/fcrm/doctype/crm_service_level_agreement/crm_service_level_agreement.json -#: crm/fcrm/doctype/crm_task/crm_task.json -#: crm/fcrm/doctype/crm_territory/crm_territory.json -#: crm/fcrm/doctype/crm_twilio_settings/crm_twilio_settings.json -#: crm/fcrm/doctype/crm_view_settings/crm_view_settings.json -#: crm/fcrm/doctype/erpnext_crm_settings/erpnext_crm_settings.json -#: crm/fcrm/doctype/fcrm_note/fcrm_note.json -#: crm/fcrm/doctype/fcrm_settings/fcrm_settings.json -#: crm/fcrm/doctype/helpdesk_crm_settings/helpdesk_crm_settings.json +#. Option for the 'Role' (Select) field in PageType 'CRM Invitation' +#: crm/fcrm/pagetype/crm_call_log/crm_call_log.json +#: crm/fcrm/pagetype/crm_communication_status/crm_communication_status.json +#: crm/fcrm/pagetype/crm_dashboard/crm_dashboard.json +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_deal_status/crm_deal_status.json +#: crm/fcrm/pagetype/crm_exotel_settings/crm_exotel_settings.json +#: crm/fcrm/pagetype/crm_form_script/crm_form_script.json +#: crm/fcrm/pagetype/crm_global_settings/crm_global_settings.json +#: crm/fcrm/pagetype/crm_holiday_list/crm_holiday_list.json +#: crm/fcrm/pagetype/crm_industry/crm_industry.json +#: crm/fcrm/pagetype/crm_invitation/crm_invitation.json +#: crm/fcrm/pagetype/crm_lead/crm_lead.json +#: crm/fcrm/pagetype/crm_lead_source/crm_lead_source.json +#: crm/fcrm/pagetype/crm_lead_status/crm_lead_status.json +#: crm/fcrm/pagetype/crm_lost_reason/crm_lost_reason.json +#: crm/fcrm/pagetype/crm_notification/crm_notification.json +#: crm/fcrm/pagetype/crm_organization/crm_organization.json +#: crm/fcrm/pagetype/crm_service_level_agreement/crm_service_level_agreement.json +#: crm/fcrm/pagetype/crm_task/crm_task.json +#: crm/fcrm/pagetype/crm_territory/crm_territory.json +#: crm/fcrm/pagetype/crm_twilio_settings/crm_twilio_settings.json +#: crm/fcrm/pagetype/crm_view_settings/crm_view_settings.json +#: crm/fcrm/pagetype/erpnext_crm_settings/erpnext_crm_settings.json +#: crm/fcrm/pagetype/fcrm_note/fcrm_note.json +#: crm/fcrm/pagetype/fcrm_settings/fcrm_settings.json +#: crm/fcrm/pagetype/helpdesk_crm_settings/helpdesk_crm_settings.json msgid "Sales Manager" msgstr "" #. Name of a role -#. Option for the 'Role' (Select) field in DocType 'CRM Invitation' -#: crm/fcrm/doctype/crm_call_log/crm_call_log.json -#: crm/fcrm/doctype/crm_communication_status/crm_communication_status.json -#: crm/fcrm/doctype/crm_dashboard/crm_dashboard.json -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_deal_status/crm_deal_status.json -#: crm/fcrm/doctype/crm_global_settings/crm_global_settings.json -#: crm/fcrm/doctype/crm_holiday_list/crm_holiday_list.json -#: crm/fcrm/doctype/crm_industry/crm_industry.json -#: crm/fcrm/doctype/crm_invitation/crm_invitation.json -#: crm/fcrm/doctype/crm_lead/crm_lead.json -#: crm/fcrm/doctype/crm_lead_source/crm_lead_source.json -#: crm/fcrm/doctype/crm_lead_status/crm_lead_status.json -#: crm/fcrm/doctype/crm_lost_reason/crm_lost_reason.json -#: crm/fcrm/doctype/crm_notification/crm_notification.json -#: crm/fcrm/doctype/crm_organization/crm_organization.json -#: crm/fcrm/doctype/crm_task/crm_task.json -#: crm/fcrm/doctype/crm_territory/crm_territory.json -#: crm/fcrm/doctype/crm_view_settings/crm_view_settings.json -#: crm/fcrm/doctype/fcrm_note/fcrm_note.json +#. Option for the 'Role' (Select) field in PageType 'CRM Invitation' +#: crm/fcrm/pagetype/crm_call_log/crm_call_log.json +#: crm/fcrm/pagetype/crm_communication_status/crm_communication_status.json +#: crm/fcrm/pagetype/crm_dashboard/crm_dashboard.json +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_deal_status/crm_deal_status.json +#: crm/fcrm/pagetype/crm_global_settings/crm_global_settings.json +#: crm/fcrm/pagetype/crm_holiday_list/crm_holiday_list.json +#: crm/fcrm/pagetype/crm_industry/crm_industry.json +#: crm/fcrm/pagetype/crm_invitation/crm_invitation.json +#: crm/fcrm/pagetype/crm_lead/crm_lead.json +#: crm/fcrm/pagetype/crm_lead_source/crm_lead_source.json +#: crm/fcrm/pagetype/crm_lead_status/crm_lead_status.json +#: crm/fcrm/pagetype/crm_lost_reason/crm_lost_reason.json +#: crm/fcrm/pagetype/crm_notification/crm_notification.json +#: crm/fcrm/pagetype/crm_organization/crm_organization.json +#: crm/fcrm/pagetype/crm_task/crm_task.json +#: crm/fcrm/pagetype/crm_territory/crm_territory.json +#: crm/fcrm/pagetype/crm_view_settings/crm_view_settings.json +#: crm/fcrm/pagetype/fcrm_note/fcrm_note.json #: frontend/src/components/Modals/AddExistingUserModal.vue:92 #: frontend/src/components/Settings/InviteUserPage.vue:156 #: frontend/src/components/Settings/InviteUserPage.vue:163 @@ -4845,17 +4845,17 @@ msgstr "" msgid "Salesperson" msgstr "" -#. Label of the salutation (Link) field in DocType 'CRM Deal' -#. Label of the salutation (Link) field in DocType 'CRM Lead' -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_lead/crm_lead.json +#. Label of the salutation (Link) field in PageType 'CRM Deal' +#. Label of the salutation (Link) field in PageType 'CRM Lead' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_lead/crm_lead.json msgid "Salutation" msgstr "" -#. Option for the 'Weekly Off' (Select) field in DocType 'CRM Holiday List' -#. Option for the 'Workday' (Select) field in DocType 'CRM Service Day' -#: crm/fcrm/doctype/crm_holiday_list/crm_holiday_list.json -#: crm/fcrm/doctype/crm_service_day/crm_service_day.json +#. Option for the 'Weekly Off' (Select) field in PageType 'CRM Holiday List' +#. Option for the 'Workday' (Select) field in PageType 'CRM Service Day' +#: crm/fcrm/pagetype/crm_holiday_list/crm_holiday_list.json +#: crm/fcrm/pagetype/crm_service_day/crm_service_day.json msgid "Saturday" msgstr "" @@ -4904,8 +4904,8 @@ msgstr "" msgid "Schedule an event" msgstr "" -#. Label of the script (Code) field in DocType 'CRM Form Script' -#: crm/fcrm/doctype/crm_form_script/crm_form_script.json +#. Label of the script (Code) field in PageType 'CRM Form Script' +#: crm/fcrm/pagetype/crm_form_script/crm_form_script.json msgid "Script" msgstr "" @@ -4973,18 +4973,18 @@ msgstr "" msgid "Send invites to" msgstr "" -#. Option for the 'Type' (Select) field in DocType 'CRM Dropdown Item' -#: crm/fcrm/doctype/crm_dropdown_item/crm_dropdown_item.json +#. Option for the 'Type' (Select) field in PageType 'CRM Dropdown Item' +#: crm/fcrm/pagetype/crm_dropdown_item/crm_dropdown_item.json msgid "Separator" msgstr "" -#. Label of the naming_series (Select) field in DocType 'CRM Lead' -#: crm/fcrm/doctype/crm_lead/crm_lead.json +#. Label of the naming_series (Select) field in PageType 'CRM Lead' +#: crm/fcrm/pagetype/crm_lead/crm_lead.json msgid "Series" msgstr "" -#. Label of the service_provider (Select) field in DocType 'FCRM Settings' -#: crm/fcrm/doctype/fcrm_settings/fcrm_settings.json +#. Label of the service_provider (Select) field in PageType 'FCRM Settings' +#: crm/fcrm/pagetype/fcrm_settings/fcrm_settings.json msgid "Service Provider" msgstr "" @@ -5029,7 +5029,7 @@ msgid "Setting up" msgstr "" #: frontend/src/components/Settings/emailConfig.js:145 -msgid "Setting up Frappe Mail requires you to have an API key and API Secret of your email account. Read more " +msgid "Setting up Jingrow Mail requires you to have an API key and API Secret of your email account. Read more " msgstr "" #: frontend/src/components/Settings/emailConfig.js:97 @@ -5062,8 +5062,8 @@ msgid "Setting up Yandex requires you to enable two factor authentication\n" "\t\t and app specific passwords. Read more " msgstr "" -#. Label of the defaults_tab (Tab Break) field in DocType 'FCRM Settings' -#: crm/fcrm/doctype/fcrm_settings/fcrm_settings.json +#. Label of the defaults_tab (Tab Break) field in PageType 'FCRM Settings' +#: crm/fcrm/pagetype/fcrm_settings/fcrm_settings.json #: frontend/src/components/Layouts/AppSidebar.vue:537 #: frontend/src/components/Settings/Settings.vue:12 msgid "Settings" @@ -5073,7 +5073,7 @@ msgstr "" msgid "Setup Email" msgstr "" -#: crm/fcrm/doctype/fcrm_settings/fcrm_settings.py:199 +#: crm/fcrm/pagetype/fcrm_settings/fcrm_settings.py:199 msgid "Setup the Exchange Rate Provider as 'Exchangerate Host' in settings, as default provider does not support currency conversion for {0} to {1}." msgstr "" @@ -5108,20 +5108,20 @@ msgstr "" msgid "Show preview" msgstr "" -#. Option for the 'Type' (Select) field in DocType 'CRM Fields Layout' -#: crm/fcrm/doctype/crm_fields_layout/crm_fields_layout.json +#. Option for the 'Type' (Select) field in PageType 'CRM Fields Layout' +#: crm/fcrm/pagetype/crm_fields_layout/crm_fields_layout.json msgid "Side Panel" msgstr "" -#. Option for the 'Type' (Select) field in DocType 'CRM Global Settings' -#: crm/fcrm/doctype/crm_global_settings/crm_global_settings.json +#. Option for the 'Type' (Select) field in PageType 'CRM Global Settings' +#: crm/fcrm/pagetype/crm_global_settings/crm_global_settings.json msgid "Sidebar Items" msgstr "" -#. Description of the 'Condition' (Code) field in DocType 'CRM Service Level +#. Description of the 'Condition' (Code) field in PageType 'CRM Service Level #. Agreement' -#: crm/fcrm/doctype/crm_service_level_agreement/crm_service_level_agreement.json -msgid "Simple Python Expression, Example: doc.status == 'Open' and doc.lead_source == 'Ads'" +#: crm/fcrm/pagetype/crm_service_level_agreement/crm_service_level_agreement.json +msgid "Simple Python Expression, Example: pg.status == 'Open' and pg.lead_source == 'Ads'" msgstr "" #: frontend/src/components/AssignTo.vue:83 @@ -5145,16 +5145,16 @@ msgstr "" msgid "Sort" msgstr "" -#. Label of the source (Link) field in DocType 'CRM Deal' -#. Label of the source (Link) field in DocType 'CRM Lead' -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_lead/crm_lead.json +#. Label of the source (Link) field in PageType 'CRM Deal' +#. Label of the source (Link) field in PageType 'CRM Lead' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_lead/crm_lead.json #: frontend/src/components/Modals/EditValueModal.vue:10 msgid "Source" msgstr "" -#. Label of the source_name (Data) field in DocType 'CRM Lead Source' -#: crm/fcrm/doctype/crm_lead_source/crm_lead_source.json +#. Label of the source_name (Data) field in PageType 'CRM Lead Source' +#: crm/fcrm/pagetype/crm_lead_source/crm_lead_source.json msgid "Source Name" msgstr "" @@ -5167,12 +5167,12 @@ msgstr "" msgid "Stage" msgstr "" -#: crm/fcrm/doctype/crm_form_script/crm_form_script.js:15 +#: crm/fcrm/pagetype/crm_form_script/crm_form_script.js:15 msgid "Standard Form Scripts can not be modified, duplicate the Form Script instead." msgstr "" -#. Label of the standard_rate (Currency) field in DocType 'CRM Product' -#: crm/fcrm/doctype/crm_product/crm_product.json +#. Label of the standard_rate (Currency) field in PageType 'CRM Product' +#: crm/fcrm/pagetype/crm_product/crm_product.json msgid "Standard Selling Rate" msgstr "" @@ -5180,18 +5180,18 @@ msgstr "" msgid "Standard Views" msgstr "" -#. Label of the start_date (Date) field in DocType 'CRM Service Level +#. Label of the start_date (Date) field in PageType 'CRM Service Level #. Agreement' -#. Label of the start_date (Date) field in DocType 'CRM Task' -#: crm/fcrm/doctype/crm_service_level_agreement/crm_service_level_agreement.json -#: crm/fcrm/doctype/crm_task/crm_task.json +#. Label of the start_date (Date) field in PageType 'CRM Task' +#: crm/fcrm/pagetype/crm_service_level_agreement/crm_service_level_agreement.json +#: crm/fcrm/pagetype/crm_task/crm_task.json msgid "Start Date" msgstr "" -#. Label of the start_time (Datetime) field in DocType 'CRM Call Log' -#. Label of the start_time (Time) field in DocType 'CRM Service Day' -#: crm/fcrm/doctype/crm_call_log/crm_call_log.json -#: crm/fcrm/doctype/crm_service_day/crm_service_day.json +#. Label of the start_time (Datetime) field in PageType 'CRM Call Log' +#. Label of the start_time (Time) field in PageType 'CRM Service Day' +#: crm/fcrm/pagetype/crm_call_log/crm_call_log.json +#: crm/fcrm/pagetype/crm_service_day/crm_service_day.json #: frontend/src/components/Calendar/CalendarEventPanel.vue:234 #: frontend/src/components/Modals/EventModal.vue:103 msgid "Start Time" @@ -5205,32 +5205,32 @@ msgstr "" msgid "Start with sample 10 leads" msgstr "" -#. Label of the status (Select) field in DocType 'CRM Call Log' -#. Label of the status (Data) field in DocType 'CRM Communication Status' -#. Label of the status (Link) field in DocType 'CRM Deal' -#. Label of the deal_status (Data) field in DocType 'CRM Deal Status' -#. Label of the status (Select) field in DocType 'CRM Invitation' -#. Label of the status (Link) field in DocType 'CRM Lead' -#. Label of the lead_status (Data) field in DocType 'CRM Lead Status' -#. Label of the status (Select) field in DocType 'CRM Task' -#: crm/fcrm/doctype/crm_call_log/crm_call_log.json -#: crm/fcrm/doctype/crm_communication_status/crm_communication_status.json -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_deal_status/crm_deal_status.json -#: crm/fcrm/doctype/crm_invitation/crm_invitation.json -#: crm/fcrm/doctype/crm_lead/crm_lead.json -#: crm/fcrm/doctype/crm_lead_status/crm_lead_status.json -#: crm/fcrm/doctype/crm_task/crm_task.json frontend/src/pages/Contact.vue:505 +#. Label of the status (Select) field in PageType 'CRM Call Log' +#. Label of the status (Data) field in PageType 'CRM Communication Status' +#. Label of the status (Link) field in PageType 'CRM Deal' +#. Label of the deal_status (Data) field in PageType 'CRM Deal Status' +#. Label of the status (Select) field in PageType 'CRM Invitation' +#. Label of the status (Link) field in PageType 'CRM Lead' +#. Label of the lead_status (Data) field in PageType 'CRM Lead Status' +#. Label of the status (Select) field in PageType 'CRM Task' +#: crm/fcrm/pagetype/crm_call_log/crm_call_log.json +#: crm/fcrm/pagetype/crm_communication_status/crm_communication_status.json +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_deal_status/crm_deal_status.json +#: crm/fcrm/pagetype/crm_invitation/crm_invitation.json +#: crm/fcrm/pagetype/crm_lead/crm_lead.json +#: crm/fcrm/pagetype/crm_lead_status/crm_lead_status.json +#: crm/fcrm/pagetype/crm_task/crm_task.json frontend/src/pages/Contact.vue:505 #: frontend/src/pages/MobileContact.vue:513 #: frontend/src/pages/MobileOrganization.vue:457 #: frontend/src/pages/Organization.vue:478 msgid "Status" msgstr "" -#. Label of the status_change_log (Table) field in DocType 'CRM Deal' -#. Label of the status_change_log (Table) field in DocType 'CRM Lead' -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_lead/crm_lead.json +#. Label of the status_change_log (Table) field in PageType 'CRM Deal' +#. Label of the status_change_log (Table) field in PageType 'CRM Lead' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_lead/crm_lead.json msgid "Status Change Log" msgstr "" @@ -5239,8 +5239,8 @@ msgstr "" msgid "Status is required" msgstr "" -#. Label of the subdomain (Data) field in DocType 'CRM Exotel Settings' -#: crm/fcrm/doctype/crm_exotel_settings/crm_exotel_settings.json +#. Label of the subdomain (Data) field in PageType 'CRM Exotel Settings' +#: crm/fcrm/pagetype/crm_exotel_settings/crm_exotel_settings.json msgid "Subdomain" msgstr "" @@ -5258,10 +5258,10 @@ msgstr "" msgid "Subject: {0}" msgstr "" -#. Option for the 'Weekly Off' (Select) field in DocType 'CRM Holiday List' -#. Option for the 'Workday' (Select) field in DocType 'CRM Service Day' -#: crm/fcrm/doctype/crm_holiday_list/crm_holiday_list.json -#: crm/fcrm/doctype/crm_service_day/crm_service_day.json +#. Option for the 'Weekly Off' (Select) field in PageType 'CRM Holiday List' +#. Option for the 'Workday' (Select) field in PageType 'CRM Service Day' +#: crm/fcrm/pagetype/crm_holiday_list/crm_holiday_list.json +#: crm/fcrm/pagetype/crm_service_day/crm_service_day.json msgid "Sunday" msgstr "" @@ -5282,21 +5282,21 @@ msgid "System Configuration" msgstr "" #. Name of a role -#. Option for the 'Role' (Select) field in DocType 'CRM Invitation' -#: crm/fcrm/doctype/crm_dashboard/crm_dashboard.json -#: crm/fcrm/doctype/crm_exotel_settings/crm_exotel_settings.json -#: crm/fcrm/doctype/crm_fields_layout/crm_fields_layout.json -#: crm/fcrm/doctype/crm_global_settings/crm_global_settings.json -#: crm/fcrm/doctype/crm_invitation/crm_invitation.json -#: crm/fcrm/doctype/crm_lead_source/crm_lead_source.json -#: crm/fcrm/doctype/crm_lost_reason/crm_lost_reason.json -#: crm/fcrm/doctype/crm_notification/crm_notification.json -#: crm/fcrm/doctype/crm_product/crm_product.json -#: crm/fcrm/doctype/crm_telephony_agent/crm_telephony_agent.json -#: crm/fcrm/doctype/crm_twilio_settings/crm_twilio_settings.json -#: crm/fcrm/doctype/erpnext_crm_settings/erpnext_crm_settings.json -#: crm/fcrm/doctype/fcrm_settings/fcrm_settings.json -#: crm/fcrm/doctype/helpdesk_crm_settings/helpdesk_crm_settings.json +#. Option for the 'Role' (Select) field in PageType 'CRM Invitation' +#: crm/fcrm/pagetype/crm_dashboard/crm_dashboard.json +#: crm/fcrm/pagetype/crm_exotel_settings/crm_exotel_settings.json +#: crm/fcrm/pagetype/crm_fields_layout/crm_fields_layout.json +#: crm/fcrm/pagetype/crm_global_settings/crm_global_settings.json +#: crm/fcrm/pagetype/crm_invitation/crm_invitation.json +#: crm/fcrm/pagetype/crm_lead_source/crm_lead_source.json +#: crm/fcrm/pagetype/crm_lost_reason/crm_lost_reason.json +#: crm/fcrm/pagetype/crm_notification/crm_notification.json +#: crm/fcrm/pagetype/crm_product/crm_product.json +#: crm/fcrm/pagetype/crm_telephony_agent/crm_telephony_agent.json +#: crm/fcrm/pagetype/crm_twilio_settings/crm_twilio_settings.json +#: crm/fcrm/pagetype/erpnext_crm_settings/erpnext_crm_settings.json +#: crm/fcrm/pagetype/fcrm_settings/fcrm_settings.json +#: crm/fcrm/pagetype/helpdesk_crm_settings/helpdesk_crm_settings.json msgid "System Manager" msgstr "" @@ -5308,8 +5308,8 @@ msgstr "" msgid "Take a note..." msgstr "" -#. Option for the 'Type' (Select) field in DocType 'CRM Notification' -#: crm/fcrm/doctype/crm_notification/crm_notification.json +#. Option for the 'Type' (Select) field in PageType 'CRM Notification' +#: crm/fcrm/pagetype/crm_notification/crm_notification.json #: frontend/src/components/Layouts/AppSidebar.vue:555 msgid "Task" msgstr "" @@ -5327,8 +5327,8 @@ msgstr "" msgid "Telephony" msgstr "" -#. Label of the telephony_medium (Select) field in DocType 'CRM Call Log' -#: crm/fcrm/doctype/crm_call_log/crm_call_log.json +#. Label of the telephony_medium (Select) field in PageType 'CRM Call Log' +#: crm/fcrm/pagetype/crm_call_log/crm_call_log.json msgid "Telephony Medium" msgstr "" @@ -5364,27 +5364,27 @@ msgstr "" msgid "Template updated successfully" msgstr "" -#. Label of a shortcut in the Frappe CRM Workspace -#: crm/fcrm/workspace/frappe_crm/frappe_crm.json +#. Label of a shortcut in the Jingrow CRM Workspace +#: crm/fcrm/workspace/jingrow_crm/jingrow_crm.json msgid "Territories" msgstr "" -#. Label of the territory (Link) field in DocType 'CRM Deal' -#. Label of the territory (Link) field in DocType 'CRM Lead' -#. Label of the territory (Link) field in DocType 'CRM Organization' -#: crm/api/dashboard.py:1022 crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_lead/crm_lead.json -#: crm/fcrm/doctype/crm_organization/crm_organization.json +#. Label of the territory (Link) field in PageType 'CRM Deal' +#. Label of the territory (Link) field in PageType 'CRM Lead' +#. Label of the territory (Link) field in PageType 'CRM Organization' +#: crm/api/dashboard.py:1022 crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_lead/crm_lead.json +#: crm/fcrm/pagetype/crm_organization/crm_organization.json msgid "Territory" msgstr "" -#. Label of the territory_manager (Link) field in DocType 'CRM Territory' -#: crm/fcrm/doctype/crm_territory/crm_territory.json +#. Label of the territory_manager (Link) field in PageType 'CRM Territory' +#: crm/fcrm/pagetype/crm_territory/crm_territory.json msgid "Territory Manager" msgstr "" -#. Label of the territory_name (Data) field in DocType 'CRM Territory' -#: crm/fcrm/doctype/crm_territory/crm_territory.json +#. Label of the territory_name (Data) field in PageType 'CRM Territory' +#: crm/fcrm/pagetype/crm_territory/crm_territory.json msgid "Territory Name" msgstr "" @@ -5392,22 +5392,22 @@ msgstr "" msgid "Thanks" msgstr "" -#: crm/fcrm/doctype/crm_service_level_agreement/crm_service_level_agreement.py:46 +#: crm/fcrm/pagetype/crm_service_level_agreement/crm_service_level_agreement.py:46 msgid "The Condition '{0}' is invalid: {1}" msgstr "" -#. Description of the 'Exchange Rate' (Float) field in DocType 'CRM Deal' -#: crm/fcrm/doctype/crm_deal/crm_deal.json +#. Description of the 'Exchange Rate' (Float) field in PageType 'CRM Deal' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json msgid "The rate used to convert the deal’s currency to your crm's base currency (set in CRM Settings). It is set once when the currency is first added and doesn't change automatically." msgstr "" -#. Description of the 'Exchange Rate' (Float) field in DocType 'CRM +#. Description of the 'Exchange Rate' (Float) field in PageType 'CRM #. Organization' -#: crm/fcrm/doctype/crm_organization/crm_organization.json +#: crm/fcrm/pagetype/crm_organization/crm_organization.json msgid "The rate used to convert the organization’s currency to your crm's base currency (set in CRM Settings). It is set once when the currency is first added and doesn't change automatically." msgstr "" -#: crm/fcrm/doctype/crm_service_level_agreement/crm_service_level_agreement.js:14 +#: crm/fcrm/pagetype/crm_service_level_agreement/crm_service_level_agreement.js:14 msgid "There can only be one default priority in Priorities table" msgstr "" @@ -5444,14 +5444,14 @@ msgstr "" msgid "This will delete selected items and unlink linked items to it, are you sure?" msgstr "" -#: crm/fcrm/doctype/fcrm_settings/fcrm_settings.js:9 +#: crm/fcrm/pagetype/fcrm_settings/fcrm_settings.js:9 msgid "This will restore (if not exist) all the default statuses, custom fields and layouts. Delete & Restore will delete default layouts and then restore them." msgstr "" -#. Option for the 'Weekly Off' (Select) field in DocType 'CRM Holiday List' -#. Option for the 'Workday' (Select) field in DocType 'CRM Service Day' -#: crm/fcrm/doctype/crm_holiday_list/crm_holiday_list.json -#: crm/fcrm/doctype/crm_service_day/crm_service_day.json +#. Option for the 'Weekly Off' (Select) field in PageType 'CRM Holiday List' +#. Option for the 'Workday' (Select) field in PageType 'CRM Service Day' +#: crm/fcrm/pagetype/crm_holiday_list/crm_holiday_list.json +#: crm/fcrm/pagetype/crm_service_day/crm_service_day.json msgid "Thursday" msgstr "" @@ -5463,18 +5463,18 @@ msgstr "" msgid "Timespan" msgstr "" -#. Label of the title (Data) field in DocType 'CRM Task' -#. Label of the title (Data) field in DocType 'FCRM Note' -#: crm/fcrm/doctype/crm_task/crm_task.json -#: crm/fcrm/doctype/fcrm_note/fcrm_note.json +#. Label of the title (Data) field in PageType 'CRM Task' +#. Label of the title (Data) field in PageType 'FCRM Note' +#: crm/fcrm/pagetype/crm_task/crm_task.json +#: crm/fcrm/pagetype/fcrm_note/fcrm_note.json #: frontend/src/components/Modals/EventModal.vue:43 #: frontend/src/components/Modals/NoteModal.vue:26 #: frontend/src/components/Modals/TaskModal.vue:25 msgid "Title" msgstr "" -#. Label of the title_field (Data) field in DocType 'CRM View Settings' -#: crm/fcrm/doctype/crm_view_settings/crm_view_settings.json +#. Label of the title_field (Data) field in PageType 'CRM View Settings' +#: crm/fcrm/pagetype/crm_view_settings/crm_view_settings.json #: frontend/src/components/Kanban/KanbanSettings.vue:29 msgid "Title Field" msgstr "" @@ -5484,28 +5484,28 @@ msgstr "" msgid "Title is required" msgstr "" -#. Label of the to (Data) field in DocType 'CRM Call Log' -#. Label of the to (Data) field in DocType 'CRM Status Change Log' -#: crm/fcrm/doctype/crm_call_log/crm_call_log.json -#: crm/fcrm/doctype/crm_status_change_log/crm_status_change_log.json +#. Label of the to (Data) field in PageType 'CRM Call Log' +#. Label of the to (Data) field in PageType 'CRM Status Change Log' +#: crm/fcrm/pagetype/crm_call_log/crm_call_log.json +#: crm/fcrm/pagetype/crm_status_change_log/crm_status_change_log.json #: frontend/src/components/Activities/EmailArea.vue:53 msgid "To" msgstr "" -#. Label of the to_date (Date) field in DocType 'CRM Holiday List' -#. Label of the to_date (Datetime) field in DocType 'CRM Status Change Log' -#: crm/fcrm/doctype/crm_holiday_list/crm_holiday_list.json -#: crm/fcrm/doctype/crm_status_change_log/crm_status_change_log.json +#. Label of the to_date (Date) field in PageType 'CRM Holiday List' +#. Label of the to_date (Datetime) field in PageType 'CRM Status Change Log' +#: crm/fcrm/pagetype/crm_holiday_list/crm_holiday_list.json +#: crm/fcrm/pagetype/crm_status_change_log/crm_status_change_log.json msgid "To Date" msgstr "" -#. Label of the to_type (Data) field in DocType 'CRM Status Change Log' -#: crm/fcrm/doctype/crm_status_change_log/crm_status_change_log.json +#. Label of the to_type (Data) field in PageType 'CRM Status Change Log' +#: crm/fcrm/pagetype/crm_status_change_log/crm_status_change_log.json msgid "To Type" msgstr "" -#. Label of the to_user (Link) field in DocType 'CRM Notification' -#: crm/fcrm/doctype/crm_notification/crm_notification.json +#. Label of the to_user (Link) field in PageType 'CRM Notification' +#: crm/fcrm/pagetype/crm_notification/crm_notification.json msgid "To User" msgstr "" @@ -5517,8 +5517,8 @@ msgstr "" msgid "Today" msgstr "" -#. Option for the 'Status' (Select) field in DocType 'CRM Task' -#: crm/fcrm/doctype/crm_task/crm_task.json +#. Option for the 'Status' (Select) field in PageType 'CRM Task' +#: crm/fcrm/pagetype/crm_task/crm_task.json msgid "Todo" msgstr "" @@ -5535,22 +5535,22 @@ msgstr "" msgid "Took a call with John Doe and discussed the new project." msgstr "" -#. Label of the total (Currency) field in DocType 'CRM Deal' -#. Label of the total (Currency) field in DocType 'CRM Lead' -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_lead/crm_lead.json +#. Label of the total (Currency) field in PageType 'CRM Deal' +#. Label of the total (Currency) field in PageType 'CRM Lead' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_lead/crm_lead.json msgid "Total" msgstr "" -#. Label of the total_holidays (Int) field in DocType 'CRM Holiday List' -#: crm/fcrm/doctype/crm_holiday_list/crm_holiday_list.json +#. Label of the total_holidays (Int) field in PageType 'CRM Holiday List' +#: crm/fcrm/pagetype/crm_holiday_list/crm_holiday_list.json msgid "Total Holidays" msgstr "" -#. Description of the 'Net Total' (Currency) field in DocType 'CRM Deal' -#. Description of the 'Net Total' (Currency) field in DocType 'CRM Lead' -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_lead/crm_lead.json +#. Description of the 'Net Total' (Currency) field in PageType 'CRM Deal' +#. Description of the 'Net Total' (Currency) field in PageType 'CRM Lead' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_lead/crm_lead.json msgid "Total after discount" msgstr "" @@ -5571,10 +5571,10 @@ msgstr "" msgid "Total number of won deals based on its closure date" msgstr "" -#. Option for the 'Weekly Off' (Select) field in DocType 'CRM Holiday List' -#. Option for the 'Workday' (Select) field in DocType 'CRM Service Day' -#: crm/fcrm/doctype/crm_holiday_list/crm_holiday_list.json -#: crm/fcrm/doctype/crm_service_day/crm_service_day.json +#. Option for the 'Weekly Off' (Select) field in PageType 'CRM Holiday List' +#. Option for the 'Workday' (Select) field in PageType 'CRM Service Day' +#: crm/fcrm/pagetype/crm_holiday_list/crm_holiday_list.json +#: crm/fcrm/pagetype/crm_service_day/crm_service_day.json msgid "Tuesday" msgstr "" @@ -5582,30 +5582,30 @@ msgstr "" msgid "Turn into a group" msgstr "" -#. Label of the twiml_sid (Data) field in DocType 'CRM Twilio Settings' -#: crm/fcrm/doctype/crm_twilio_settings/crm_twilio_settings.json +#. Label of the twiml_sid (Data) field in PageType 'CRM Twilio Settings' +#: crm/fcrm/pagetype/crm_twilio_settings/crm_twilio_settings.json msgid "TwiML SID" msgstr "" -#. Option for the 'Telephony Medium' (Select) field in DocType 'CRM Call Log' -#. Label of the twilio (Check) field in DocType 'CRM Telephony Agent' -#. Option for the 'Default Medium' (Select) field in DocType 'CRM Telephony +#. Option for the 'Telephony Medium' (Select) field in PageType 'CRM Call Log' +#. Label of the twilio (Check) field in PageType 'CRM Telephony Agent' +#. Option for the 'Default Medium' (Select) field in PageType 'CRM Telephony #. Agent' -#: crm/fcrm/doctype/crm_call_log/crm_call_log.json -#: crm/fcrm/doctype/crm_telephony_agent/crm_telephony_agent.json +#: crm/fcrm/pagetype/crm_call_log/crm_call_log.json +#: crm/fcrm/pagetype/crm_telephony_agent/crm_telephony_agent.json #: frontend/src/components/Layouts/AppSidebar.vue:601 #: frontend/src/components/Settings/TelephonySettings.vue:40 #: frontend/src/components/Settings/TelephonySettings.vue:50 msgid "Twilio" msgstr "" -#: crm/fcrm/doctype/crm_twilio_settings/crm_twilio_settings.py:59 -#: crm/fcrm/doctype/crm_twilio_settings/crm_twilio_settings.py:60 +#: crm/fcrm/pagetype/crm_twilio_settings/crm_twilio_settings.py:59 +#: crm/fcrm/pagetype/crm_twilio_settings/crm_twilio_settings.py:60 msgid "Twilio API credential creation error." msgstr "" -#. Label of the twilio_number (Data) field in DocType 'CRM Telephony Agent' -#: crm/fcrm/doctype/crm_telephony_agent/crm_telephony_agent.json +#. Label of the twilio_number (Data) field in PageType 'CRM Telephony Agent' +#: crm/fcrm/pagetype/crm_telephony_agent/crm_telephony_agent.json msgid "Twilio Number" msgstr "" @@ -5617,20 +5617,20 @@ msgstr "" msgid "Twilio settings updated successfully" msgstr "" -#. Label of the type (Select) field in DocType 'CRM Call Log' -#. Label of the type (Select) field in DocType 'CRM Deal Status' -#. Label of the type (Select) field in DocType 'CRM Dropdown Item' -#. Label of the type (Select) field in DocType 'CRM Fields Layout' -#. Label of the type (Select) field in DocType 'CRM Global Settings' -#. Label of the type (Select) field in DocType 'CRM Notification' -#. Label of the type (Select) field in DocType 'CRM View Settings' -#: crm/fcrm/doctype/crm_call_log/crm_call_log.json -#: crm/fcrm/doctype/crm_deal_status/crm_deal_status.json -#: crm/fcrm/doctype/crm_dropdown_item/crm_dropdown_item.json -#: crm/fcrm/doctype/crm_fields_layout/crm_fields_layout.json -#: crm/fcrm/doctype/crm_global_settings/crm_global_settings.json -#: crm/fcrm/doctype/crm_notification/crm_notification.json -#: crm/fcrm/doctype/crm_view_settings/crm_view_settings.json +#. Label of the type (Select) field in PageType 'CRM Call Log' +#. Label of the type (Select) field in PageType 'CRM Deal Status' +#. Label of the type (Select) field in PageType 'CRM Dropdown Item' +#. Label of the type (Select) field in PageType 'CRM Fields Layout' +#. Label of the type (Select) field in PageType 'CRM Global Settings' +#. Label of the type (Select) field in PageType 'CRM Notification' +#. Label of the type (Select) field in PageType 'CRM View Settings' +#: crm/fcrm/pagetype/crm_call_log/crm_call_log.json +#: crm/fcrm/pagetype/crm_deal_status/crm_deal_status.json +#: crm/fcrm/pagetype/crm_dropdown_item/crm_dropdown_item.json +#: crm/fcrm/pagetype/crm_fields_layout/crm_fields_layout.json +#: crm/fcrm/pagetype/crm_global_settings/crm_global_settings.json +#: crm/fcrm/pagetype/crm_notification/crm_notification.json +#: crm/fcrm/pagetype/crm_view_settings/crm_view_settings.json msgid "Type" msgstr "" @@ -5772,12 +5772,12 @@ msgstr "" msgid "Uploading {0}%" msgstr "" -#. Label of the user (Link) field in DocType 'CRM Dashboard' -#. Label of the user (Link) field in DocType 'CRM Telephony Agent' -#. Label of the user (Link) field in DocType 'CRM View Settings' -#: crm/fcrm/doctype/crm_dashboard/crm_dashboard.json -#: crm/fcrm/doctype/crm_telephony_agent/crm_telephony_agent.json -#: crm/fcrm/doctype/crm_view_settings/crm_view_settings.json +#. Label of the user (Link) field in PageType 'CRM Dashboard' +#. Label of the user (Link) field in PageType 'CRM Telephony Agent' +#. Label of the user (Link) field in PageType 'CRM View Settings' +#: crm/fcrm/pagetype/crm_dashboard/crm_dashboard.json +#: crm/fcrm/pagetype/crm_telephony_agent/crm_telephony_agent.json +#: crm/fcrm/pagetype/crm_view_settings/crm_view_settings.json msgid "User" msgstr "" @@ -5785,8 +5785,8 @@ msgstr "" msgid "User Management" msgstr "" -#. Label of the user_name (Data) field in DocType 'CRM Telephony Agent' -#: crm/fcrm/doctype/crm_telephony_agent/crm_telephony_agent.json +#. Label of the user_name (Data) field in PageType 'CRM Telephony Agent' +#: crm/fcrm/pagetype/crm_telephony_agent/crm_telephony_agent.json msgid "User Name" msgstr "" @@ -5808,9 +5808,9 @@ msgstr "" msgid "Users are required" msgstr "" -#. Label of the section_break_nevd (Section Break) field in DocType 'CRM +#. Label of the section_break_nevd (Section Break) field in PageType 'CRM #. Service Level Agreement' -#: crm/fcrm/doctype/crm_service_level_agreement/crm_service_level_agreement.json +#: crm/fcrm/pagetype/crm_service_level_agreement/crm_service_level_agreement.json msgid "Validity" msgstr "" @@ -5834,33 +5834,33 @@ msgstr "" msgid "Web form" msgstr "" -#. Label of the webhook_verify_token (Data) field in DocType 'CRM Exotel +#. Label of the webhook_verify_token (Data) field in PageType 'CRM Exotel #. Settings' -#: crm/fcrm/doctype/crm_exotel_settings/crm_exotel_settings.json +#: crm/fcrm/pagetype/crm_exotel_settings/crm_exotel_settings.json msgid "Webhook Verify Token" msgstr "" -#. Label of the website (Data) field in DocType 'CRM Deal' -#. Label of the website (Data) field in DocType 'CRM Lead' -#. Label of the website (Data) field in DocType 'CRM Organization' -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_lead/crm_lead.json -#: crm/fcrm/doctype/crm_organization/crm_organization.json +#. Label of the website (Data) field in PageType 'CRM Deal' +#. Label of the website (Data) field in PageType 'CRM Lead' +#. Label of the website (Data) field in PageType 'CRM Organization' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_lead/crm_lead.json +#: crm/fcrm/pagetype/crm_organization/crm_organization.json #: frontend/src/components/Modals/AboutModal.vue:52 msgid "Website" msgstr "" -#. Option for the 'Weekly Off' (Select) field in DocType 'CRM Holiday List' -#. Option for the 'Workday' (Select) field in DocType 'CRM Service Day' -#: crm/fcrm/doctype/crm_holiday_list/crm_holiday_list.json -#: crm/fcrm/doctype/crm_service_day/crm_service_day.json +#. Option for the 'Weekly Off' (Select) field in PageType 'CRM Holiday List' +#. Option for the 'Workday' (Select) field in PageType 'CRM Service Day' +#: crm/fcrm/pagetype/crm_holiday_list/crm_holiday_list.json +#: crm/fcrm/pagetype/crm_service_day/crm_service_day.json msgid "Wednesday" msgstr "" -#. Label of the weekly_off (Check) field in DocType 'CRM Holiday' -#. Label of the weekly_off (Select) field in DocType 'CRM Holiday List' -#: crm/fcrm/doctype/crm_holiday/crm_holiday.json -#: crm/fcrm/doctype/crm_holiday_list/crm_holiday_list.json +#. Label of the weekly_off (Check) field in PageType 'CRM Holiday' +#. Label of the weekly_off (Select) field in PageType 'CRM Holiday List' +#: crm/fcrm/pagetype/crm_holiday/crm_holiday.json +#: crm/fcrm/pagetype/crm_holiday_list/crm_holiday_list.json msgid "Weekly Off" msgstr "" @@ -5868,7 +5868,7 @@ msgstr "" msgid "Welcome Message" msgstr "" -#: crm/fcrm/doctype/helpdesk_crm_settings/helpdesk_crm_settings.py:155 +#: crm/fcrm/pagetype/helpdesk_crm_settings/helpdesk_crm_settings.py:155 msgid "Welcome to Helpdesk" msgstr "" @@ -5876,8 +5876,8 @@ msgstr "" msgid "Welcome {0}, lets add your first lead" msgstr "" -#. Option for the 'Type' (Select) field in DocType 'CRM Notification' -#: crm/fcrm/doctype/crm_notification/crm_notification.json +#. Option for the 'Type' (Select) field in PageType 'CRM Notification' +#: crm/fcrm/pagetype/crm_notification/crm_notification.json #: frontend/src/components/Layouts/AppSidebar.vue:603 #: frontend/src/components/Settings/Settings.vue:190 #: frontend/src/pages/Deal.vue:572 frontend/src/pages/Lead.vue:429 @@ -5902,8 +5902,8 @@ msgstr "" msgid "Width can be in number, pixel or rem (eg. 3, 30px, 10rem)" msgstr "" -#. Option for the 'Type' (Select) field in DocType 'CRM Deal Status' -#: crm/fcrm/doctype/crm_deal_status/crm_deal_status.json +#. Option for the 'Type' (Select) field in PageType 'CRM Deal Status' +#: crm/fcrm/pagetype/crm_deal_status/crm_deal_status.json msgid "Won" msgstr "" @@ -5912,16 +5912,16 @@ msgstr "" msgid "Won deals" msgstr "" -#. Label of the workday (Select) field in DocType 'CRM Service Day' -#: crm/fcrm/doctype/crm_service_day/crm_service_day.json +#. Label of the workday (Select) field in PageType 'CRM Service Day' +#: crm/fcrm/pagetype/crm_service_day/crm_service_day.json msgid "Workday" msgstr "" -#. Label of the section_break_rmgo (Section Break) field in DocType 'CRM +#. Label of the section_break_rmgo (Section Break) field in PageType 'CRM #. Service Level Agreement' -#. Label of the working_hours (Table) field in DocType 'CRM Service Level +#. Label of the working_hours (Table) field in PageType 'CRM Service Level #. Agreement' -#: crm/fcrm/doctype/crm_service_level_agreement/crm_service_level_agreement.json +#: crm/fcrm/pagetype/crm_service_level_agreement/crm_service_level_agreement.json msgid "Working Hours" msgstr "" @@ -5967,7 +5967,7 @@ msgstr "" msgid "You do not have permission to access this document" msgstr "" -#: crm/fcrm/doctype/crm_form_script/crm_form_script.py:24 +#: crm/fcrm/pagetype/crm_form_script/crm_form_script.py:24 msgid "You need to be in developer mode to edit a Standard Form Script" msgstr "" @@ -5995,10 +5995,10 @@ msgstr "" msgid "added a" msgstr "" -#. Option for the 'Color' (Select) field in DocType 'CRM Deal Status' -#. Option for the 'Color' (Select) field in DocType 'CRM Lead Status' -#: crm/fcrm/doctype/crm_deal_status/crm_deal_status.json -#: crm/fcrm/doctype/crm_lead_status/crm_lead_status.json +#. Option for the 'Color' (Select) field in PageType 'CRM Deal Status' +#. Option for the 'Color' (Select) field in PageType 'CRM Lead Status' +#: crm/fcrm/pagetype/crm_deal_status/crm_deal_status.json +#: crm/fcrm/pagetype/crm_lead_status/crm_lead_status.json msgid "amber" msgstr "" @@ -6010,17 +6010,17 @@ msgstr "" msgid "assigned a {0} {1} to you" msgstr "" -#. Option for the 'Color' (Select) field in DocType 'CRM Deal Status' -#. Option for the 'Color' (Select) field in DocType 'CRM Lead Status' -#: crm/fcrm/doctype/crm_deal_status/crm_deal_status.json -#: crm/fcrm/doctype/crm_lead_status/crm_lead_status.json +#. Option for the 'Color' (Select) field in PageType 'CRM Deal Status' +#. Option for the 'Color' (Select) field in PageType 'CRM Lead Status' +#: crm/fcrm/pagetype/crm_deal_status/crm_deal_status.json +#: crm/fcrm/pagetype/crm_lead_status/crm_lead_status.json msgid "black" msgstr "" -#. Option for the 'Color' (Select) field in DocType 'CRM Deal Status' -#. Option for the 'Color' (Select) field in DocType 'CRM Lead Status' -#: crm/fcrm/doctype/crm_deal_status/crm_deal_status.json -#: crm/fcrm/doctype/crm_lead_status/crm_lead_status.json +#. Option for the 'Color' (Select) field in PageType 'CRM Deal Status' +#. Option for the 'Color' (Select) field in PageType 'CRM Lead Status' +#: crm/fcrm/pagetype/crm_deal_status/crm_deal_status.json +#: crm/fcrm/pagetype/crm_lead_status/crm_lead_status.json msgid "blue" msgstr "" @@ -6037,10 +6037,10 @@ msgstr "" msgid "condition" msgstr "" -#. Option for the 'Color' (Select) field in DocType 'CRM Deal Status' -#. Option for the 'Color' (Select) field in DocType 'CRM Lead Status' -#: crm/fcrm/doctype/crm_deal_status/crm_deal_status.json -#: crm/fcrm/doctype/crm_lead_status/crm_lead_status.json +#. Option for the 'Color' (Select) field in PageType 'CRM Deal Status' +#. Option for the 'Color' (Select) field in PageType 'CRM Lead Status' +#: crm/fcrm/pagetype/crm_deal_status/crm_deal_status.json +#: crm/fcrm/pagetype/crm_lead_status/crm_lead_status.json msgid "cyan" msgstr "" @@ -6059,33 +6059,33 @@ msgstr "" msgid "email already exists" msgstr "" -#. Option for the 'Service Provider' (Select) field in DocType 'FCRM Settings' -#: crm/fcrm/doctype/fcrm_settings/fcrm_settings.json +#. Option for the 'Service Provider' (Select) field in PageType 'FCRM Settings' +#: crm/fcrm/pagetype/fcrm_settings/fcrm_settings.json #: frontend/src/components/Settings/CurrencySettings.vue:106 msgid "exchangerate.host" msgstr "" -#. Option for the 'Service Provider' (Select) field in DocType 'FCRM Settings' -#: crm/fcrm/doctype/fcrm_settings/fcrm_settings.json +#. Option for the 'Service Provider' (Select) field in PageType 'FCRM Settings' +#: crm/fcrm/pagetype/fcrm_settings/fcrm_settings.json msgid "frankfurter.app" msgstr "" -#. Option for the 'Color' (Select) field in DocType 'CRM Deal Status' -#. Option for the 'Color' (Select) field in DocType 'CRM Lead Status' -#: crm/fcrm/doctype/crm_deal_status/crm_deal_status.json -#: crm/fcrm/doctype/crm_lead_status/crm_lead_status.json +#. Option for the 'Color' (Select) field in PageType 'CRM Deal Status' +#. Option for the 'Color' (Select) field in PageType 'CRM Lead Status' +#: crm/fcrm/pagetype/crm_deal_status/crm_deal_status.json +#: crm/fcrm/pagetype/crm_lead_status/crm_lead_status.json msgid "gray" msgstr "" -#. Option for the 'Color' (Select) field in DocType 'CRM Deal Status' -#. Option for the 'Color' (Select) field in DocType 'CRM Lead Status' -#: crm/fcrm/doctype/crm_deal_status/crm_deal_status.json -#: crm/fcrm/doctype/crm_lead_status/crm_lead_status.json +#. Option for the 'Color' (Select) field in PageType 'CRM Deal Status' +#. Option for the 'Color' (Select) field in PageType 'CRM Lead Status' +#: crm/fcrm/pagetype/crm_deal_status/crm_deal_status.json +#: crm/fcrm/pagetype/crm_lead_status/crm_lead_status.json msgid "green" msgstr "" -#. Option for the 'Type' (Select) field in DocType 'CRM View Settings' -#: crm/fcrm/doctype/crm_view_settings/crm_view_settings.json +#. Option for the 'Type' (Select) field in PageType 'CRM View Settings' +#: crm/fcrm/pagetype/crm_view_settings/crm_view_settings.json msgid "group_by" msgstr "" @@ -6170,12 +6170,12 @@ msgstr "" msgid "just now" msgstr "" -#. Option for the 'Type' (Select) field in DocType 'CRM View Settings' -#: crm/fcrm/doctype/crm_view_settings/crm_view_settings.json +#. Option for the 'Type' (Select) field in PageType 'CRM View Settings' +#: crm/fcrm/pagetype/crm_view_settings/crm_view_settings.json msgid "kanban" msgstr "" -#: crm/api/doc.py:40 crm/api/doc.py:158 crm/api/doc.py:503 +#: crm/api/pg.py:40 crm/api/pg.py:158 crm/api/pg.py:503 msgid "label" msgstr "" @@ -6184,8 +6184,8 @@ msgstr "" msgid "leads" msgstr "khách hàng tiềm năng" -#. Option for the 'Type' (Select) field in DocType 'CRM View Settings' -#: crm/fcrm/doctype/crm_view_settings/crm_view_settings.json +#. Option for the 'Type' (Select) field in PageType 'CRM View Settings' +#: crm/fcrm/pagetype/crm_view_settings/crm_view_settings.json msgid "list" msgstr "" @@ -6206,17 +6206,17 @@ msgstr "" msgid "operator" msgstr "nhà điều hành" -#. Option for the 'Color' (Select) field in DocType 'CRM Deal Status' -#. Option for the 'Color' (Select) field in DocType 'CRM Lead Status' -#: crm/fcrm/doctype/crm_deal_status/crm_deal_status.json -#: crm/fcrm/doctype/crm_lead_status/crm_lead_status.json +#. Option for the 'Color' (Select) field in PageType 'CRM Deal Status' +#. Option for the 'Color' (Select) field in PageType 'CRM Lead Status' +#: crm/fcrm/pagetype/crm_deal_status/crm_deal_status.json +#: crm/fcrm/pagetype/crm_lead_status/crm_lead_status.json msgid "orange" msgstr "" -#. Option for the 'Color' (Select) field in DocType 'CRM Deal Status' -#. Option for the 'Color' (Select) field in DocType 'CRM Lead Status' -#: crm/fcrm/doctype/crm_deal_status/crm_deal_status.json -#: crm/fcrm/doctype/crm_lead_status/crm_lead_status.json +#. Option for the 'Color' (Select) field in PageType 'CRM Deal Status' +#. Option for the 'Color' (Select) field in PageType 'CRM Lead Status' +#: crm/fcrm/pagetype/crm_deal_status/crm_deal_status.json +#: crm/fcrm/pagetype/crm_lead_status/crm_lead_status.json msgid "pink" msgstr "" @@ -6232,10 +6232,10 @@ msgstr "" msgid "public" msgstr "" -#. Option for the 'Color' (Select) field in DocType 'CRM Deal Status' -#. Option for the 'Color' (Select) field in DocType 'CRM Lead Status' -#: crm/fcrm/doctype/crm_deal_status/crm_deal_status.json -#: crm/fcrm/doctype/crm_lead_status/crm_lead_status.json +#. Option for the 'Color' (Select) field in PageType 'CRM Deal Status' +#. Option for the 'Color' (Select) field in PageType 'CRM Lead Status' +#: crm/fcrm/pagetype/crm_deal_status/crm_deal_status.json +#: crm/fcrm/pagetype/crm_lead_status/crm_lead_status.json msgid "purple" msgstr "" @@ -6243,17 +6243,17 @@ msgstr "" msgid "received a whatsapp message in {0}" msgstr "" -#. Option for the 'Color' (Select) field in DocType 'CRM Deal Status' -#. Option for the 'Color' (Select) field in DocType 'CRM Lead Status' -#: crm/fcrm/doctype/crm_deal_status/crm_deal_status.json -#: crm/fcrm/doctype/crm_lead_status/crm_lead_status.json +#. Option for the 'Color' (Select) field in PageType 'CRM Deal Status' +#. Option for the 'Color' (Select) field in PageType 'CRM Lead Status' +#: crm/fcrm/pagetype/crm_deal_status/crm_deal_status.json +#: crm/fcrm/pagetype/crm_lead_status/crm_lead_status.json msgid "red" msgstr "" -#. Option for the 'Color' (Select) field in DocType 'CRM Deal Status' -#. Option for the 'Color' (Select) field in DocType 'CRM Lead Status' -#: crm/fcrm/doctype/crm_deal_status/crm_deal_status.json -#: crm/fcrm/doctype/crm_lead_status/crm_lead_status.json +#. Option for the 'Color' (Select) field in PageType 'CRM Deal Status' +#. Option for the 'Color' (Select) field in PageType 'CRM Lead Status' +#: crm/fcrm/pagetype/crm_deal_status/crm_deal_status.json +#: crm/fcrm/pagetype/crm_lead_status/crm_lead_status.json msgid "teal" msgstr "" @@ -6266,10 +6266,10 @@ msgstr "" msgid "tomorrow" msgstr "" -#. Option for the 'Color' (Select) field in DocType 'CRM Deal Status' -#. Option for the 'Color' (Select) field in DocType 'CRM Lead Status' -#: crm/fcrm/doctype/crm_deal_status/crm_deal_status.json -#: crm/fcrm/doctype/crm_lead_status/crm_lead_status.json +#. Option for the 'Color' (Select) field in PageType 'CRM Deal Status' +#. Option for the 'Color' (Select) field in PageType 'CRM Lead Status' +#: crm/fcrm/pagetype/crm_deal_status/crm_deal_status.json +#: crm/fcrm/pagetype/crm_lead_status/crm_lead_status.json msgid "violet" msgstr "" @@ -6278,10 +6278,10 @@ msgstr "" msgid "which are not compatible with this UI, you will need to recreate the conditions here if you want to manage and add new conditions from this UI." msgstr "" -#. Option for the 'Color' (Select) field in DocType 'CRM Deal Status' -#. Option for the 'Color' (Select) field in DocType 'CRM Lead Status' -#: crm/fcrm/doctype/crm_deal_status/crm_deal_status.json -#: crm/fcrm/doctype/crm_lead_status/crm_lead_status.json +#. Option for the 'Color' (Select) field in PageType 'CRM Deal Status' +#. Option for the 'Color' (Select) field in PageType 'CRM Lead Status' +#: crm/fcrm/pagetype/crm_deal_status/crm_deal_status.json +#: crm/fcrm/pagetype/crm_lead_status/crm_lead_status.json msgid "yellow" msgstr "" @@ -6379,7 +6379,7 @@ msgid "⚠️ Method \"{0}\" not found in class." msgstr "" #: frontend/src/data/script.js:83 -msgid "⚠️ No class found for doctype: {0}, it is mandatory to have a class for the parent doctype. it can be empty, but it should be present." +msgid "⚠️ No class found for pagetype: {0}, it is mandatory to have a class for the parent pagetype. it can be empty, but it should be present." msgstr "" #: frontend/src/data/script.js:180 diff --git a/crm/locale/zh.po b/crm/locale/zh.po index 9f2ed66e..6647ba64 100644 --- a/crm/locale/zh.po +++ b/crm/locale/zh.po @@ -1,6 +1,6 @@ msgid "" msgstr "" -"Project-Id-Version: frappe\n" +"Project-Id-Version: jingrow\n" "Report-Msgid-Bugs-To: shariq@jingrow.com\n" "POT-Creation-Date: 2025-09-21 09:35+0000\n" "PO-Revision-Date: 2025-09-22 20:42\n" @@ -11,10 +11,10 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Generated-By: Babel 2.16.0\n" "Plural-Forms: nplurals=1; plural=0;\n" -"X-Crowdin-Project: frappe\n" +"X-Crowdin-Project: jingrow\n" "X-Crowdin-Project-ID: 639578\n" "X-Crowdin-Language: zh-CN\n" -"X-Crowdin-File: /[frappe.crm] develop/crm/locale/main.pot\n" +"X-Crowdin-File: /[jingrow.crm] develop/crm/locale/main.pot\n" "X-Crowdin-File-ID: 97\n" "Language: zh_CN\n" @@ -55,73 +55,73 @@ msgstr "一周前" msgid "1 year ago" msgstr "一年前" -#. Option for the 'No. of Employees' (Select) field in DocType 'CRM Deal' -#. Option for the 'No. of Employees' (Select) field in DocType 'CRM Lead' -#. Option for the 'No. of Employees' (Select) field in DocType 'CRM +#. Option for the 'No. of Employees' (Select) field in PageType 'CRM Deal' +#. Option for the 'No. of Employees' (Select) field in PageType 'CRM Lead' +#. Option for the 'No. of Employees' (Select) field in PageType 'CRM #. Organization' -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_lead/crm_lead.json -#: crm/fcrm/doctype/crm_organization/crm_organization.json +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_lead/crm_lead.json +#: crm/fcrm/pagetype/crm_organization/crm_organization.json msgid "1-10" msgstr "1-10" -#. Option for the 'No. of Employees' (Select) field in DocType 'CRM Deal' -#. Option for the 'No. of Employees' (Select) field in DocType 'CRM Lead' -#. Option for the 'No. of Employees' (Select) field in DocType 'CRM +#. Option for the 'No. of Employees' (Select) field in PageType 'CRM Deal' +#. Option for the 'No. of Employees' (Select) field in PageType 'CRM Lead' +#. Option for the 'No. of Employees' (Select) field in PageType 'CRM #. Organization' -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_lead/crm_lead.json -#: crm/fcrm/doctype/crm_organization/crm_organization.json +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_lead/crm_lead.json +#: crm/fcrm/pagetype/crm_organization/crm_organization.json msgid "1000+" msgstr "1000+" -#. Option for the 'No. of Employees' (Select) field in DocType 'CRM Deal' -#. Option for the 'No. of Employees' (Select) field in DocType 'CRM Lead' -#. Option for the 'No. of Employees' (Select) field in DocType 'CRM +#. Option for the 'No. of Employees' (Select) field in PageType 'CRM Deal' +#. Option for the 'No. of Employees' (Select) field in PageType 'CRM Lead' +#. Option for the 'No. of Employees' (Select) field in PageType 'CRM #. Organization' -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_lead/crm_lead.json -#: crm/fcrm/doctype/crm_organization/crm_organization.json +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_lead/crm_lead.json +#: crm/fcrm/pagetype/crm_organization/crm_organization.json msgid "11-50" msgstr "11-50" -#. Option for the 'No. of Employees' (Select) field in DocType 'CRM Deal' -#. Option for the 'No. of Employees' (Select) field in DocType 'CRM Lead' -#. Option for the 'No. of Employees' (Select) field in DocType 'CRM +#. Option for the 'No. of Employees' (Select) field in PageType 'CRM Deal' +#. Option for the 'No. of Employees' (Select) field in PageType 'CRM Lead' +#. Option for the 'No. of Employees' (Select) field in PageType 'CRM #. Organization' -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_lead/crm_lead.json -#: crm/fcrm/doctype/crm_organization/crm_organization.json +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_lead/crm_lead.json +#: crm/fcrm/pagetype/crm_organization/crm_organization.json msgid "201-500" msgstr "201-500" -#. Option for the 'No. of Employees' (Select) field in DocType 'CRM Deal' -#. Option for the 'No. of Employees' (Select) field in DocType 'CRM Lead' -#. Option for the 'No. of Employees' (Select) field in DocType 'CRM +#. Option for the 'No. of Employees' (Select) field in PageType 'CRM Deal' +#. Option for the 'No. of Employees' (Select) field in PageType 'CRM Lead' +#. Option for the 'No. of Employees' (Select) field in PageType 'CRM #. Organization' -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_lead/crm_lead.json -#: crm/fcrm/doctype/crm_organization/crm_organization.json +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_lead/crm_lead.json +#: crm/fcrm/pagetype/crm_organization/crm_organization.json msgid "501-1000" msgstr "501-1000" -#. Option for the 'No. of Employees' (Select) field in DocType 'CRM Deal' -#. Option for the 'No. of Employees' (Select) field in DocType 'CRM Lead' -#. Option for the 'No. of Employees' (Select) field in DocType 'CRM +#. Option for the 'No. of Employees' (Select) field in PageType 'CRM Deal' +#. Option for the 'No. of Employees' (Select) field in PageType 'CRM Lead' +#. Option for the 'No. of Employees' (Select) field in PageType 'CRM #. Organization' -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_lead/crm_lead.json -#: crm/fcrm/doctype/crm_organization/crm_organization.json +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_lead/crm_lead.json +#: crm/fcrm/pagetype/crm_organization/crm_organization.json msgid "51-200" msgstr "51-200" -#. Paragraph text in the Frappe CRM Workspace -#: crm/fcrm/workspace/frappe_crm/frappe_crm.json +#. Paragraph text in the Jingrow CRM Workspace +#: crm/fcrm/workspace/jingrow_crm/jingrow_crm.json msgid "META" msgstr "元数据" -#. Paragraph text in the Frappe CRM Workspace -#: crm/fcrm/workspace/frappe_crm/frappe_crm.json +#. Paragraph text in the Jingrow CRM Workspace +#: crm/fcrm/workspace/jingrow_crm/jingrow_crm.json msgid "SHORTCUTS" msgstr "快捷方式" @@ -130,8 +130,8 @@ msgstr "快捷方式" msgid "

Dear {{ lead_name }},

\\n\\n

This is a reminder for the payment of {{ grand_total }}.

\\n\\n

Thanks,

\\n

Frappé

" msgstr "msgstr \"

尊敬的{{ lead_name }}:

\\n\\n

特此提醒您尚有{{ grand_total }}款项待支付。

\\n\\n

此致

\\n

Frappé团队

\"" -#. Header text in the Frappe CRM Workspace -#: crm/fcrm/workspace/frappe_crm/frappe_crm.json +#. Header text in the Jingrow CRM Workspace +#: crm/fcrm/workspace/jingrow_crm/jingrow_crm.json msgid "PORTAL" msgstr "门户" @@ -139,7 +139,7 @@ msgstr "门户" msgid "@John, can you please check this?" msgstr "@John,请确认此项?" -#: crm/fcrm/doctype/crm_lead/crm_lead.py:56 +#: crm/fcrm/pagetype/crm_lead/crm_lead.py:56 msgid "A Lead requires either a person's name or an organization's name" msgstr "线索需填写个人姓名或组织名称" @@ -147,14 +147,14 @@ msgstr "线索需填写个人姓名或组织名称" msgid "A new account has been created for you at {0}" msgstr "已为您创建新账户{0}" -#. Label of the api_key (Data) field in DocType 'CRM Exotel Settings' -#. Label of the api_key (Data) field in DocType 'CRM Twilio Settings' -#. Label of the api_key (Data) field in DocType 'ERPNext CRM Settings' -#. Label of the api_key (Data) field in DocType 'Helpdesk CRM Settings' -#: crm/fcrm/doctype/crm_exotel_settings/crm_exotel_settings.json -#: crm/fcrm/doctype/crm_twilio_settings/crm_twilio_settings.json -#: crm/fcrm/doctype/erpnext_crm_settings/erpnext_crm_settings.json -#: crm/fcrm/doctype/helpdesk_crm_settings/helpdesk_crm_settings.json +#. Label of the api_key (Data) field in PageType 'CRM Exotel Settings' +#. Label of the api_key (Data) field in PageType 'CRM Twilio Settings' +#. Label of the api_key (Data) field in PageType 'ERPNext CRM Settings' +#. Label of the api_key (Data) field in PageType 'Helpdesk CRM Settings' +#: crm/fcrm/pagetype/crm_exotel_settings/crm_exotel_settings.json +#: crm/fcrm/pagetype/crm_twilio_settings/crm_twilio_settings.json +#: crm/fcrm/pagetype/erpnext_crm_settings/erpnext_crm_settings.json +#: crm/fcrm/pagetype/helpdesk_crm_settings/helpdesk_crm_settings.json msgid "API Key" msgstr "API密钥" @@ -162,17 +162,17 @@ msgstr "API密钥" msgid "API Key is required" msgstr "" -#. Label of the api_secret (Password) field in DocType 'CRM Twilio Settings' -#. Label of the api_secret (Password) field in DocType 'ERPNext CRM Settings' -#. Label of the api_secret (Password) field in DocType 'Helpdesk CRM Settings' -#: crm/fcrm/doctype/crm_twilio_settings/crm_twilio_settings.json -#: crm/fcrm/doctype/erpnext_crm_settings/erpnext_crm_settings.json -#: crm/fcrm/doctype/helpdesk_crm_settings/helpdesk_crm_settings.json +#. Label of the api_secret (Password) field in PageType 'CRM Twilio Settings' +#. Label of the api_secret (Password) field in PageType 'ERPNext CRM Settings' +#. Label of the api_secret (Password) field in PageType 'Helpdesk CRM Settings' +#: crm/fcrm/pagetype/crm_twilio_settings/crm_twilio_settings.json +#: crm/fcrm/pagetype/erpnext_crm_settings/erpnext_crm_settings.json +#: crm/fcrm/pagetype/helpdesk_crm_settings/helpdesk_crm_settings.json msgid "API Secret" msgstr "API密钥" -#. Label of the api_token (Password) field in DocType 'CRM Exotel Settings' -#: crm/fcrm/doctype/crm_exotel_settings/crm_exotel_settings.json +#. Label of the api_token (Password) field in PageType 'CRM Exotel Settings' +#: crm/fcrm/pagetype/crm_exotel_settings/crm_exotel_settings.json msgid "API Token" msgstr "API令牌" @@ -180,7 +180,7 @@ msgstr "API令牌" msgid "Accept" msgstr "接受" -#: crm/fcrm/doctype/crm_invitation/crm_invitation.js:7 +#: crm/fcrm/pagetype/crm_invitation/crm_invitation.js:7 msgid "Accept Invitation" msgstr "接受邀请" @@ -188,22 +188,22 @@ msgstr "接受邀请" msgid "Accept call" msgstr "" -#. Option for the 'Status' (Select) field in DocType 'CRM Invitation' -#: crm/fcrm/doctype/crm_invitation/crm_invitation.json +#. Option for the 'Status' (Select) field in PageType 'CRM Invitation' +#: crm/fcrm/pagetype/crm_invitation/crm_invitation.json msgid "Accepted" msgstr "已接受" -#. Label of the accepted_at (Datetime) field in DocType 'CRM Invitation' -#: crm/fcrm/doctype/crm_invitation/crm_invitation.json +#. Label of the accepted_at (Datetime) field in PageType 'CRM Invitation' +#: crm/fcrm/pagetype/crm_invitation/crm_invitation.json msgid "Accepted At" msgstr "接受时间" -#. Label of the access_key (Data) field in DocType 'FCRM Settings' -#: crm/fcrm/doctype/fcrm_settings/fcrm_settings.json +#. Label of the access_key (Data) field in PageType 'FCRM Settings' +#: crm/fcrm/pagetype/fcrm_settings/fcrm_settings.json msgid "Access Key" msgstr "访问密钥" -#: crm/fcrm/doctype/fcrm_settings/fcrm_settings.py:156 +#: crm/fcrm/pagetype/fcrm_settings/fcrm_settings.py:156 msgid "Access Key is required for Service Provider: {0}" msgstr "服务商{0}必须提供访问密钥" @@ -219,10 +219,10 @@ msgstr "" msgid "Account Name" msgstr "科目名称" -#. Label of the account_sid (Data) field in DocType 'CRM Exotel Settings' -#. Label of the account_sid (Data) field in DocType 'CRM Twilio Settings' -#: crm/fcrm/doctype/crm_exotel_settings/crm_exotel_settings.json -#: crm/fcrm/doctype/crm_twilio_settings/crm_twilio_settings.json +#. Label of the account_sid (Data) field in PageType 'CRM Exotel Settings' +#. Label of the account_sid (Data) field in PageType 'CRM Twilio Settings' +#: crm/fcrm/pagetype/crm_exotel_settings/crm_exotel_settings.json +#: crm/fcrm/pagetype/crm_twilio_settings/crm_twilio_settings.json msgid "Account SID" msgstr "账户SID" @@ -296,9 +296,9 @@ msgstr "添加排序" msgid "Add Tab" msgstr "添加标签页" -#. Label of the add_weekly_holidays_section (Section Break) field in DocType +#. Label of the add_weekly_holidays_section (Section Break) field in PageType #. 'CRM Holiday List' -#: crm/fcrm/doctype/crm_holiday_list/crm_holiday_list.json +#: crm/fcrm/pagetype/crm_holiday_list/crm_holiday_list.json msgid "Add Weekly Holidays" msgstr "添加每周假期" @@ -363,8 +363,8 @@ msgstr "添加备注" msgid "Add sample data" msgstr "" -#. Description of the 'Icon' (Code) field in DocType 'CRM Dropdown Item' -#: crm/fcrm/doctype/crm_dropdown_item/crm_dropdown_item.json +#. Description of the 'Icon' (Code) field in PageType 'CRM Dropdown Item' +#: crm/fcrm/pagetype/crm_dropdown_item/crm_dropdown_item.json msgid "Add svg code or use feather icons e.g 'settings'" msgstr "添加SVG代码或使用Feather图标(如'settings')" @@ -372,8 +372,8 @@ msgstr "添加SVG代码或使用Feather图标(如'settings')" msgid "Add task" msgstr "添加任务" -#. Label of the add_to_holidays (Button) field in DocType 'CRM Holiday List' -#: crm/fcrm/doctype/crm_holiday_list/crm_holiday_list.json +#. Label of the add_to_holidays (Button) field in PageType 'CRM Holiday List' +#: crm/fcrm/pagetype/crm_holiday_list/crm_holiday_list.json msgid "Add to Holidays" msgstr "添加至假期" @@ -385,8 +385,8 @@ msgstr "" msgid "Add, edit, and manage email templates for various CRM communications" msgstr "" -#. Label of the address (Link) field in DocType 'CRM Organization' -#: crm/fcrm/doctype/crm_organization/crm_organization.json +#. Label of the address (Link) field in PageType 'CRM Organization' +#: crm/fcrm/pagetype/crm_organization/crm_organization.json msgid "Address" msgstr "地址" @@ -406,14 +406,14 @@ msgid "Agent is unavailable to take the call, please call after some time." msgstr "客服正忙,请稍后再拨。" #. Name of a role -#: crm/fcrm/doctype/crm_exotel_settings/crm_exotel_settings.json -#: crm/fcrm/doctype/crm_fields_layout/crm_fields_layout.json -#: crm/fcrm/doctype/crm_form_script/crm_form_script.json -#: crm/fcrm/doctype/crm_industry/crm_industry.json -#: crm/fcrm/doctype/crm_lead/crm_lead.json -#: crm/fcrm/doctype/crm_lead_source/crm_lead_source.json -#: crm/fcrm/doctype/crm_lead_status/crm_lead_status.json -#: crm/fcrm/doctype/fcrm_settings/fcrm_settings.json +#: crm/fcrm/pagetype/crm_exotel_settings/crm_exotel_settings.json +#: crm/fcrm/pagetype/crm_fields_layout/crm_fields_layout.json +#: crm/fcrm/pagetype/crm_form_script/crm_form_script.json +#: crm/fcrm/pagetype/crm_industry/crm_industry.json +#: crm/fcrm/pagetype/crm_lead/crm_lead.json +#: crm/fcrm/pagetype/crm_lead_source/crm_lead_source.json +#: crm/fcrm/pagetype/crm_lead_status/crm_lead_status.json +#: crm/fcrm/pagetype/fcrm_settings/fcrm_settings.json #: frontend/src/components/Settings/EmailTemplate/EmailTemplates.vue:76 #: frontend/src/components/Settings/Users.vue:85 msgid "All" @@ -426,16 +426,16 @@ msgstr "全部" msgid "All day" msgstr "" -#. Label of the amount (Currency) field in DocType 'CRM Products' -#: crm/fcrm/doctype/crm_products/crm_products.json +#. Label of the amount (Currency) field in PageType 'CRM Products' +#: crm/fcrm/pagetype/crm_products/crm_products.json #: frontend/src/pages/Contact.vue:499 frontend/src/pages/MobileContact.vue:507 #: frontend/src/pages/MobileOrganization.vue:451 #: frontend/src/pages/Organization.vue:472 msgid "Amount" msgstr "金额" -#. Description of the 'Net Amount' (Currency) field in DocType 'CRM Products' -#: crm/fcrm/doctype/crm_products/crm_products.json +#. Description of the 'Net Amount' (Currency) field in PageType 'CRM Products' +#: crm/fcrm/pagetype/crm_products/crm_products.json msgid "Amount after discount" msgstr "" @@ -447,13 +447,13 @@ msgstr "" msgid "An error occurred while updating the document" msgstr "" -#. Description of the 'Favicon' (Attach) field in DocType 'FCRM Settings' -#: crm/fcrm/doctype/fcrm_settings/fcrm_settings.json +#. Description of the 'Favicon' (Attach) field in PageType 'FCRM Settings' +#: crm/fcrm/pagetype/fcrm_settings/fcrm_settings.json msgid "An icon file with .ico extension. Should be 16 x 16 px. Generated using a favicon generator. [favicon-generator.org]" msgstr "ICO格式图标文件,尺寸16x16像素,需通过favicon生成器创建。[favicon-generator.org]" -#. Description of the 'Logo' (Attach) field in DocType 'FCRM Settings' -#: crm/fcrm/doctype/fcrm_settings/fcrm_settings.json +#. Description of the 'Logo' (Attach) field in PageType 'FCRM Settings' +#: crm/fcrm/pagetype/fcrm_settings/fcrm_settings.json msgid "An image with 1:1 & 2:1 ratio is preferred" msgstr "建议使用1:1和2:1比例的图像" @@ -461,12 +461,12 @@ msgstr "建议使用1:1和2:1比例的图像" msgid "And" msgstr "且" -#. Label of the annual_revenue (Currency) field in DocType 'CRM Deal' -#. Label of the annual_revenue (Currency) field in DocType 'CRM Lead' -#. Label of the annual_revenue (Currency) field in DocType 'CRM Organization' -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_lead/crm_lead.json -#: crm/fcrm/doctype/crm_organization/crm_organization.json +#. Label of the annual_revenue (Currency) field in PageType 'CRM Deal' +#. Label of the annual_revenue (Currency) field in PageType 'CRM Lead' +#. Label of the annual_revenue (Currency) field in PageType 'CRM Organization' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_lead/crm_lead.json +#: crm/fcrm/pagetype/crm_organization/crm_organization.json msgid "Annual Revenue" msgstr "年营业额" @@ -488,13 +488,13 @@ msgstr "显示于浏览器标签页标题旁,推荐PNG或ICO格式,尺寸32x msgid "Apply" msgstr "应用" -#. Label of the apply_on (Link) field in DocType 'CRM Service Level Agreement' -#: crm/fcrm/doctype/crm_service_level_agreement/crm_service_level_agreement.json +#. Label of the apply_on (Link) field in PageType 'CRM Service Level Agreement' +#: crm/fcrm/pagetype/crm_service_level_agreement/crm_service_level_agreement.json msgid "Apply On" msgstr "应用于" -#. Label of the view (Select) field in DocType 'CRM Form Script' -#: crm/fcrm/doctype/crm_form_script/crm_form_script.json +#. Label of the view (Select) field in PageType 'CRM Form Script' +#: crm/fcrm/pagetype/crm_form_script/crm_form_script.json msgid "Apply To" msgstr "应用至" @@ -540,10 +540,10 @@ msgid "Are you sure you want to go back? Unsaved changes will be lost." msgstr "" #: frontend/src/composables/frappecloud.js:24 -msgid "Are you sure you want to login to your Frappe Cloud dashboard?" -msgstr "确定登录Frappe云控制面板?" +msgid "Are you sure you want to login to your Jingrow Cloud dashboard?" +msgstr "确定登录Jingrow云控制面板?" -#: crm/fcrm/doctype/erpnext_crm_settings/erpnext_crm_settings.js:9 +#: crm/fcrm/pagetype/erpnext_crm_settings/erpnext_crm_settings.js:9 msgid "Are you sure you want to reset 'Create Quotation from CRM Deal' Form Script?" msgstr "确认重置'从CRM商机生成报价单'表单脚本?" @@ -555,7 +555,7 @@ msgstr "" msgid "Are you sure you want to unlink {0} linked item(s)?" msgstr "" -#: crm/fcrm/doctype/fcrm_settings/fcrm_settings.py:193 +#: crm/fcrm/pagetype/fcrm_settings/fcrm_settings.py:193 msgid "Ask your manager to set up the Exchange Rate Provider, as default provider does not support currency conversion for {0} to {1}." msgstr "" @@ -581,8 +581,8 @@ msgstr "分配至" msgid "Assign to me" msgstr "自己认领" -#. Label of the assigned_to (Link) field in DocType 'CRM Task' -#: crm/fcrm/doctype/crm_task/crm_task.json +#. Label of the assigned_to (Link) field in PageType 'CRM Task' +#: crm/fcrm/pagetype/crm_task/crm_task.json msgid "Assigned To" msgstr "负责人" @@ -594,13 +594,13 @@ msgstr "" msgid "Assignees" msgstr "" -#. Option for the 'Type' (Select) field in DocType 'CRM Notification' -#: crm/fcrm/doctype/crm_notification/crm_notification.json +#. Option for the 'Type' (Select) field in PageType 'CRM Notification' +#: crm/fcrm/pagetype/crm_notification/crm_notification.json msgid "Assignment" msgstr "分配" -#. Label of a shortcut in the Frappe CRM Workspace -#: crm/fcrm/workspace/frappe_crm/frappe_crm.json +#. Label of a shortcut in the Jingrow CRM Workspace +#: crm/fcrm/workspace/jingrow_crm/jingrow_crm.json msgid "Assignment Rule" msgstr "分配规则" @@ -678,14 +678,14 @@ msgstr "附件" msgid "Attendees" msgstr "参会人员" -#. Label of the auth_token (Password) field in DocType 'CRM Twilio Settings' -#: crm/fcrm/doctype/crm_twilio_settings/crm_twilio_settings.json +#. Label of the auth_token (Password) field in PageType 'CRM Twilio Settings' +#: crm/fcrm/pagetype/crm_twilio_settings/crm_twilio_settings.json msgid "Auth Token" msgstr "认证令牌" -#. Label of the auto_update_expected_deal_value (Check) field in DocType 'FCRM +#. Label of the auto_update_expected_deal_value (Check) field in PageType 'FCRM #. Settings' -#: crm/fcrm/doctype/fcrm_settings/fcrm_settings.json +#: crm/fcrm/pagetype/fcrm_settings/fcrm_settings.json msgid "Auto Update Expected Deal Value" msgstr "" @@ -702,8 +702,8 @@ msgid "Auto update of expected deal value enabled" msgstr "" #. Description of the 'Auto Update Expected Deal Value' (Check) field in -#. DocType 'FCRM Settings' -#: crm/fcrm/doctype/fcrm_settings/fcrm_settings.json +#. PageType 'FCRM Settings' +#: crm/fcrm/pagetype/fcrm_settings/fcrm_settings.json #: frontend/src/components/Settings/ForecastingSettings.vue:46 msgid "Automatically update \"Expected Deal Value\" based on the total value of associated products in a deal" msgstr "" @@ -793,8 +793,8 @@ msgstr "返回" msgid "Back to file upload" msgstr "返回文件上传" -#. Option for the 'Status' (Select) field in DocType 'CRM Task' -#: crm/fcrm/doctype/crm_task/crm_task.json +#. Option for the 'Status' (Select) field in PageType 'CRM Task' +#: crm/fcrm/pagetype/crm_task/crm_task.json msgid "Backlog" msgstr "待办事项" @@ -818,8 +818,8 @@ msgstr "" msgid "Brand settings" msgstr "" -#. Label of the branding_tab (Tab Break) field in DocType 'FCRM Settings' -#: crm/fcrm/doctype/fcrm_settings/fcrm_settings.json +#. Label of the branding_tab (Tab Break) field in PageType 'FCRM Settings' +#: crm/fcrm/pagetype/fcrm_settings/fcrm_settings.json msgid "Branding" msgstr "品牌标识" @@ -827,8 +827,8 @@ msgstr "品牌标识" msgid "Bulk Edit" msgstr "批量编辑" -#. Option for the 'Status' (Select) field in DocType 'CRM Call Log' -#: crm/fcrm/doctype/crm_call_log/crm_call_log.json +#. Option for the 'Status' (Select) field in PageType 'CRM Call Log' +#: crm/fcrm/pagetype/crm_call_log/crm_call_log.json msgid "Busy" msgstr "忙碌" @@ -838,174 +838,174 @@ msgstr "忙碌" msgid "CC" msgstr "抄送" -#. Name of a DocType -#: crm/fcrm/doctype/crm_call_log/crm_call_log.json +#. Name of a PageType +#: crm/fcrm/pagetype/crm_call_log/crm_call_log.json msgid "CRM Call Log" msgstr "CRM通话记录" -#. Name of a DocType -#: crm/fcrm/doctype/crm_communication_status/crm_communication_status.json +#. Name of a PageType +#: crm/fcrm/pagetype/crm_communication_status/crm_communication_status.json msgid "CRM Communication Status" msgstr "CRM沟通状态" -#. Name of a DocType -#: crm/fcrm/doctype/crm_contacts/crm_contacts.json +#. Name of a PageType +#: crm/fcrm/pagetype/crm_contacts/crm_contacts.json msgid "CRM Contacts" msgstr "CRM联系人" -#. Name of a DocType -#: crm/fcrm/doctype/crm_dashboard/crm_dashboard.json +#. Name of a PageType +#: crm/fcrm/pagetype/crm_dashboard/crm_dashboard.json #: frontend/src/pages/Dashboard.vue:304 msgid "CRM Dashboard" msgstr "" -#. Name of a DocType -#: crm/fcrm/doctype/crm_deal/crm_deal.json +#. Name of a PageType +#: crm/fcrm/pagetype/crm_deal/crm_deal.json msgid "CRM Deal" msgstr "CRM商机" -#. Name of a DocType -#: crm/fcrm/doctype/crm_deal_status/crm_deal_status.json +#. Name of a PageType +#: crm/fcrm/pagetype/crm_deal_status/crm_deal_status.json msgid "CRM Deal Status" msgstr "CRM商机状态" -#. Name of a DocType -#: crm/fcrm/doctype/crm_dropdown_item/crm_dropdown_item.json +#. Name of a PageType +#: crm/fcrm/pagetype/crm_dropdown_item/crm_dropdown_item.json msgid "CRM Dropdown Item" msgstr "CRM下拉项" -#. Name of a DocType -#: crm/fcrm/doctype/crm_exotel_settings/crm_exotel_settings.json +#. Name of a PageType +#: crm/fcrm/pagetype/crm_exotel_settings/crm_exotel_settings.json msgid "CRM Exotel Settings" msgstr "CRM Exotel设置" -#. Name of a DocType -#: crm/fcrm/doctype/crm_fields_layout/crm_fields_layout.json +#. Name of a PageType +#: crm/fcrm/pagetype/crm_fields_layout/crm_fields_layout.json msgid "CRM Fields Layout" msgstr "CRM字段布局" -#. Name of a DocType -#: crm/fcrm/doctype/crm_form_script/crm_form_script.json +#. Name of a PageType +#: crm/fcrm/pagetype/crm_form_script/crm_form_script.json msgid "CRM Form Script" msgstr "CRM表单脚本" -#. Name of a DocType -#: crm/fcrm/doctype/crm_global_settings/crm_global_settings.json +#. Name of a PageType +#: crm/fcrm/pagetype/crm_global_settings/crm_global_settings.json msgid "CRM Global Settings" msgstr "CRM全局设置" -#. Name of a DocType -#: crm/fcrm/doctype/crm_holiday/crm_holiday.json +#. Name of a PageType +#: crm/fcrm/pagetype/crm_holiday/crm_holiday.json msgid "CRM Holiday" msgstr "CRM假期" -#. Name of a DocType -#: crm/fcrm/doctype/crm_holiday_list/crm_holiday_list.json +#. Name of a PageType +#: crm/fcrm/pagetype/crm_holiday_list/crm_holiday_list.json msgid "CRM Holiday List" msgstr "CRM假期列表" -#. Name of a DocType -#: crm/fcrm/doctype/crm_industry/crm_industry.json +#. Name of a PageType +#: crm/fcrm/pagetype/crm_industry/crm_industry.json msgid "CRM Industry" msgstr "CRM行业" -#. Name of a DocType -#: crm/fcrm/doctype/crm_invitation/crm_invitation.json +#. Name of a PageType +#: crm/fcrm/pagetype/crm_invitation/crm_invitation.json msgid "CRM Invitation" msgstr "CRM邀请" -#. Name of a DocType -#: crm/fcrm/doctype/crm_lead/crm_lead.json +#. Name of a PageType +#: crm/fcrm/pagetype/crm_lead/crm_lead.json msgid "CRM Lead" msgstr "CRM线索" -#. Name of a DocType -#: crm/fcrm/doctype/crm_lead_source/crm_lead_source.json +#. Name of a PageType +#: crm/fcrm/pagetype/crm_lead_source/crm_lead_source.json msgid "CRM Lead Source" msgstr "CRM线索来源" -#. Name of a DocType -#: crm/fcrm/doctype/crm_lead_status/crm_lead_status.json +#. Name of a PageType +#: crm/fcrm/pagetype/crm_lead_status/crm_lead_status.json msgid "CRM Lead Status" msgstr "CRM线索状态" -#. Name of a DocType -#: crm/fcrm/doctype/crm_lost_reason/crm_lost_reason.json +#. Name of a PageType +#: crm/fcrm/pagetype/crm_lost_reason/crm_lost_reason.json msgid "CRM Lost Reason" msgstr "" -#. Name of a DocType -#: crm/fcrm/doctype/crm_notification/crm_notification.json +#. Name of a PageType +#: crm/fcrm/pagetype/crm_notification/crm_notification.json msgid "CRM Notification" msgstr "CRM通知" -#. Name of a DocType -#: crm/fcrm/doctype/crm_organization/crm_organization.json +#. Name of a PageType +#: crm/fcrm/pagetype/crm_organization/crm_organization.json msgid "CRM Organization" msgstr "CRM组织" -#. Label of a shortcut in the Frappe CRM Workspace -#: crm/fcrm/workspace/frappe_crm/frappe_crm.json +#. Label of a shortcut in the Jingrow CRM Workspace +#: crm/fcrm/workspace/jingrow_crm/jingrow_crm.json msgid "CRM Portal Page" msgstr "CRM门户页面" -#. Name of a DocType -#: crm/fcrm/doctype/crm_product/crm_product.json +#. Name of a PageType +#: crm/fcrm/pagetype/crm_product/crm_product.json msgid "CRM Product" msgstr "" -#. Name of a DocType -#: crm/fcrm/doctype/crm_products/crm_products.json +#. Name of a PageType +#: crm/fcrm/pagetype/crm_products/crm_products.json msgid "CRM Products" msgstr "" -#. Name of a DocType -#: crm/fcrm/doctype/crm_service_day/crm_service_day.json +#. Name of a PageType +#: crm/fcrm/pagetype/crm_service_day/crm_service_day.json msgid "CRM Service Day" msgstr "CRM服务日" -#. Name of a DocType -#: crm/fcrm/doctype/crm_service_level_agreement/crm_service_level_agreement.json +#. Name of a PageType +#: crm/fcrm/pagetype/crm_service_level_agreement/crm_service_level_agreement.json msgid "CRM Service Level Agreement" msgstr "CRM服务级别协议" -#. Name of a DocType -#: crm/fcrm/doctype/crm_service_level_priority/crm_service_level_priority.json +#. Name of a PageType +#: crm/fcrm/pagetype/crm_service_level_priority/crm_service_level_priority.json msgid "CRM Service Level Priority" msgstr "CRM服务级别优先级" -#. Name of a DocType -#: crm/fcrm/doctype/crm_status_change_log/crm_status_change_log.json +#. Name of a PageType +#: crm/fcrm/pagetype/crm_status_change_log/crm_status_change_log.json msgid "CRM Status Change Log" msgstr "CRM状态变更日志" -#. Name of a DocType -#: crm/fcrm/doctype/crm_task/crm_task.json +#. Name of a PageType +#: crm/fcrm/pagetype/crm_task/crm_task.json msgid "CRM Task" msgstr "CRM任务" -#. Name of a DocType -#: crm/fcrm/doctype/crm_telephony_agent/crm_telephony_agent.json +#. Name of a PageType +#: crm/fcrm/pagetype/crm_telephony_agent/crm_telephony_agent.json msgid "CRM Telephony Agent" msgstr "CRM电话客服" -#. Name of a DocType -#: crm/fcrm/doctype/crm_telephony_phone/crm_telephony_phone.json +#. Name of a PageType +#: crm/fcrm/pagetype/crm_telephony_phone/crm_telephony_phone.json msgid "CRM Telephony Phone" msgstr "CRM电话设备" -#. Name of a DocType -#: crm/fcrm/doctype/crm_territory/crm_territory.json +#. Name of a PageType +#: crm/fcrm/pagetype/crm_territory/crm_territory.json msgid "CRM Territory" msgstr "CRM区域" -#. Name of a DocType -#: crm/fcrm/doctype/crm_twilio_settings/crm_twilio_settings.json +#. Name of a PageType +#: crm/fcrm/pagetype/crm_twilio_settings/crm_twilio_settings.json msgid "CRM Twilio Settings" msgstr "CRM Twilio设置" -#. Name of a DocType -#: crm/fcrm/doctype/crm_view_settings/crm_view_settings.json +#. Name of a PageType +#: crm/fcrm/pagetype/crm_view_settings/crm_view_settings.json msgid "CRM View Settings" msgstr "CRM视图设置" @@ -1021,13 +1021,13 @@ msgstr "CSV" msgid "Call Details" msgstr "通话详情" -#. Label of the receiver (Link) field in DocType 'CRM Call Log' -#: crm/fcrm/doctype/crm_call_log/crm_call_log.json +#. Label of the receiver (Link) field in PageType 'CRM Call Log' +#: crm/fcrm/pagetype/crm_call_log/crm_call_log.json msgid "Call Received By" msgstr "接听人" -#. Description of the 'Duration' (Duration) field in DocType 'CRM Call Log' -#: crm/fcrm/doctype/crm_call_log/crm_call_log.json +#. Description of the 'Duration' (Duration) field in PageType 'CRM Call Log' +#: crm/fcrm/pagetype/crm_call_log/crm_call_log.json msgid "Call duration in seconds" msgstr "通话时长(秒)" @@ -1045,8 +1045,8 @@ msgstr "使用{0}呼叫" msgid "Call with John Doe" msgstr "与John Doe通话" -#. Label of the caller (Link) field in DocType 'CRM Call Log' -#: crm/fcrm/doctype/crm_call_log/crm_call_log.json +#. Label of the caller (Link) field in PageType 'CRM Call Log' +#: crm/fcrm/pagetype/crm_call_log/crm_call_log.json msgid "Caller" msgstr "主叫方" @@ -1083,10 +1083,10 @@ msgstr "摄像头" msgid "Cancel" msgstr "取消" -#. Option for the 'Status' (Select) field in DocType 'CRM Call Log' -#. Option for the 'Status' (Select) field in DocType 'CRM Task' -#: crm/fcrm/doctype/crm_call_log/crm_call_log.json -#: crm/fcrm/doctype/crm_task/crm_task.json +#. Option for the 'Status' (Select) field in PageType 'CRM Call Log' +#. Option for the 'Status' (Select) field in PageType 'CRM Task' +#: crm/fcrm/pagetype/crm_call_log/crm_call_log.json +#: crm/fcrm/pagetype/crm_task/crm_task.json msgid "Canceled" msgstr "已取消" @@ -1094,7 +1094,7 @@ msgstr "已取消" msgid "Cannot change role of user with Admin access" msgstr "" -#: crm/fcrm/doctype/fcrm_settings/fcrm_settings.py:34 +#: crm/fcrm/pagetype/fcrm_settings/fcrm_settings.py:34 msgid "Cannot delete standard items {0}" msgstr "无法删除标准项{0}" @@ -1189,8 +1189,8 @@ msgstr "清除分配" msgid "Clear Sort" msgstr "清除排序" -#. Label of the clear_table (Button) field in DocType 'CRM Holiday List' -#: crm/fcrm/doctype/crm_holiday_list/crm_holiday_list.json +#. Label of the clear_table (Button) field in PageType 'CRM Holiday List' +#: crm/fcrm/pagetype/crm_holiday_list/crm_holiday_list.json msgid "Clear Table" msgstr "清空表格" @@ -1211,8 +1211,8 @@ msgstr "关闭" msgid "Close panel" msgstr "" -#. Label of the closed_date (Date) field in DocType 'CRM Deal' -#: crm/fcrm/doctype/crm_deal/crm_deal.json +#. Label of the closed_date (Date) field in PageType 'CRM Deal' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json msgid "Closed Date" msgstr "" @@ -1224,10 +1224,10 @@ msgstr "折叠" msgid "Collapsible" msgstr "可折叠" -#. Label of the color (Select) field in DocType 'CRM Deal Status' -#. Label of the color (Select) field in DocType 'CRM Lead Status' -#: crm/fcrm/doctype/crm_deal_status/crm_deal_status.json -#: crm/fcrm/doctype/crm_lead_status/crm_lead_status.json +#. Label of the color (Select) field in PageType 'CRM Deal Status' +#. Label of the color (Select) field in PageType 'CRM Lead Status' +#: crm/fcrm/pagetype/crm_deal_status/crm_deal_status.json +#: crm/fcrm/pagetype/crm_lead_status/crm_lead_status.json msgid "Color" msgstr "颜色" @@ -1235,20 +1235,20 @@ msgstr "颜色" msgid "Column" msgstr "列" -#. Label of the column_field (Data) field in DocType 'CRM View Settings' -#: crm/fcrm/doctype/crm_view_settings/crm_view_settings.json +#. Label of the column_field (Data) field in PageType 'CRM View Settings' +#: crm/fcrm/pagetype/crm_view_settings/crm_view_settings.json #: frontend/src/components/Kanban/KanbanSettings.vue:12 msgid "Column Field" msgstr "列字段" -#. Label of the columns (Code) field in DocType 'CRM View Settings' -#: crm/fcrm/doctype/crm_view_settings/crm_view_settings.json +#. Label of the columns (Code) field in PageType 'CRM View Settings' +#: crm/fcrm/pagetype/crm_view_settings/crm_view_settings.json #: frontend/src/components/ColumnSettings.vue:4 msgid "Columns" msgstr "列" -#. Label of the comment (Link) field in DocType 'CRM Notification' -#: crm/fcrm/doctype/crm_notification/crm_notification.json +#. Label of the comment (Link) field in PageType 'CRM Notification' +#: crm/fcrm/pagetype/crm_notification/crm_notification.json #: frontend/src/components/CommentBox.vue:78 #: frontend/src/components/CommunicationArea.vue:16 #: frontend/src/components/Layouts/AppSidebar.vue:579 @@ -1264,20 +1264,20 @@ msgstr "评论" msgid "Common reasons for losing deals" msgstr "" -#. Label of the communication_status (Link) field in DocType 'CRM Deal' -#. Label of the communication_status (Link) field in DocType 'CRM Lead' -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_lead/crm_lead.json +#. Label of the communication_status (Link) field in PageType 'CRM Deal' +#. Label of the communication_status (Link) field in PageType 'CRM Lead' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_lead/crm_lead.json msgid "Communication Status" msgstr "沟通状态" -#. Label of a shortcut in the Frappe CRM Workspace -#: crm/fcrm/workspace/frappe_crm/frappe_crm.json +#. Label of a shortcut in the Jingrow CRM Workspace +#: crm/fcrm/workspace/jingrow_crm/jingrow_crm.json msgid "Communication Statuses" msgstr "沟通状态列表" -#. Label of the erpnext_company (Data) field in DocType 'ERPNext CRM Settings' -#: crm/fcrm/doctype/erpnext_crm_settings/erpnext_crm_settings.json +#. Label of the erpnext_company (Data) field in PageType 'ERPNext CRM Settings' +#: crm/fcrm/pagetype/erpnext_crm_settings/erpnext_crm_settings.json msgid "Company in ERPNext Site" msgstr "ERPNext站点中的公司" @@ -1285,18 +1285,18 @@ msgstr "ERPNext站点中的公司" msgid "Complete Registration" msgstr "完成注册" -#. Option for the 'Status' (Select) field in DocType 'CRM Call Log' -#: crm/fcrm/doctype/crm_call_log/crm_call_log.json +#. Option for the 'Status' (Select) field in PageType 'CRM Call Log' +#: crm/fcrm/pagetype/crm_call_log/crm_call_log.json msgid "Completed" msgstr "已完成" -#. Option for the 'Device' (Select) field in DocType 'CRM Telephony Agent' -#: crm/fcrm/doctype/crm_telephony_agent/crm_telephony_agent.json +#. Option for the 'Device' (Select) field in PageType 'CRM Telephony Agent' +#: crm/fcrm/pagetype/crm_telephony_agent/crm_telephony_agent.json msgid "Computer" msgstr "计算机" -#. Label of the condition (Code) field in DocType 'CRM Service Level Agreement' -#: crm/fcrm/doctype/crm_service_level_agreement/crm_service_level_agreement.json +#. Label of the condition (Code) field in PageType 'CRM Service Level Agreement' +#: crm/fcrm/pagetype/crm_service_level_agreement/crm_service_level_agreement.json msgid "Condition" msgstr "条件" @@ -1354,17 +1354,17 @@ msgstr "" msgid "Connect your email" msgstr "" -#. Label of the contact (Link) field in DocType 'CRM Contacts' -#. Label of the contact (Link) field in DocType 'CRM Deal' -#: crm/fcrm/doctype/crm_contacts/crm_contacts.json -#: crm/fcrm/doctype/crm_deal/crm_deal.json +#. Label of the contact (Link) field in PageType 'CRM Contacts' +#. Label of the contact (Link) field in PageType 'CRM Deal' +#: crm/fcrm/pagetype/crm_contacts/crm_contacts.json +#: crm/fcrm/pagetype/crm_deal/crm_deal.json #: frontend/src/components/Layouts/AppSidebar.vue:552 #: frontend/src/components/Modals/ConvertToDealModal.vue:51 #: frontend/src/pages/MobileLead.vue:145 msgid "Contact" msgstr "联系人" -#: crm/fcrm/doctype/crm_lead/crm_lead.py:212 +#: crm/fcrm/pagetype/crm_lead/crm_lead.py:212 msgid "Contact Already Exists" msgstr "联系人已存在" @@ -1384,7 +1384,7 @@ msgstr "联系人已添加" msgid "Contact already added" msgstr "联系人已存在" -#: crm/fcrm/doctype/crm_lead/crm_lead.py:211 +#: crm/fcrm/pagetype/crm_lead/crm_lead.py:211 msgid "Contact already exists with {0}" msgstr "联系人{0}已存在" @@ -1405,18 +1405,18 @@ msgstr "联系人已移除" msgid "Contact updated" msgstr "" -#. Label of the contacts_tab (Tab Break) field in DocType 'CRM Deal' -#. Label of the contacts (Table) field in DocType 'CRM Deal' -#. Label of a shortcut in the Frappe CRM Workspace -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/workspace/frappe_crm/frappe_crm.json +#. Label of the contacts_tab (Tab Break) field in PageType 'CRM Deal' +#. Label of the contacts (Table) field in PageType 'CRM Deal' +#. Label of a shortcut in the Jingrow CRM Workspace +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/workspace/jingrow_crm/jingrow_crm.json #: frontend/src/pages/Contact.vue:234 frontend/src/pages/MobileContact.vue:212 #: frontend/src/pages/MobileOrganization.vue:331 msgid "Contacts" msgstr "联系人" -#. Label of the content (Text Editor) field in DocType 'FCRM Note' -#: crm/fcrm/doctype/fcrm_note/fcrm_note.json +#. Label of the content (Text Editor) field in PageType 'FCRM Note' +#: crm/fcrm/pagetype/fcrm_note/fcrm_note.json #: frontend/src/components/Modals/NoteModal.vue:33 #: frontend/src/components/Settings/EmailTemplate/EditEmailTemplate.vue:89 #: frontend/src/components/Settings/EmailTemplate/EditEmailTemplate.vue:102 @@ -1456,8 +1456,8 @@ msgstr "" msgid "Convert to Deal" msgstr "转换为商机" -#. Label of the converted (Check) field in DocType 'CRM Lead' -#: crm/fcrm/doctype/crm_lead/crm_lead.json +#. Label of the converted (Check) field in PageType 'CRM Lead' +#: crm/fcrm/pagetype/crm_lead/crm_lead.json msgid "Converted" msgstr "已转换" @@ -1533,9 +1533,9 @@ msgstr "创建视图" msgid "Create an event" msgstr "" -#. Label of the create_customer_on_status_change (Check) field in DocType +#. Label of the create_customer_on_status_change (Check) field in PageType #. 'ERPNext CRM Settings' -#: crm/fcrm/doctype/erpnext_crm_settings/erpnext_crm_settings.json +#: crm/fcrm/pagetype/erpnext_crm_settings/erpnext_crm_settings.json msgid "Create customer on status change" msgstr "状态变更时创建客户" @@ -1560,13 +1560,13 @@ msgstr "" msgid "Create your first task" msgstr "" -#. Label of the currency (Link) field in DocType 'CRM Deal' -#. Label of the currency (Link) field in DocType 'CRM Organization' -#. Label of the currency (Link) field in DocType 'FCRM Settings' -#. Label of the currency_tab (Tab Break) field in DocType 'FCRM Settings' -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_organization/crm_organization.json -#: crm/fcrm/doctype/fcrm_settings/fcrm_settings.json +#. Label of the currency (Link) field in PageType 'CRM Deal' +#. Label of the currency (Link) field in PageType 'CRM Organization' +#. Label of the currency (Link) field in PageType 'FCRM Settings' +#. Label of the currency_tab (Tab Break) field in PageType 'FCRM Settings' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_organization/crm_organization.json +#: crm/fcrm/pagetype/fcrm_settings/fcrm_settings.json #: frontend/src/components/Settings/CurrencySettings.vue:31 msgid "Currency" msgstr "货币" @@ -1631,13 +1631,13 @@ msgstr "" msgid "Data" msgstr "数据" -#. Option for the 'Type' (Select) field in DocType 'CRM Fields Layout' -#: crm/fcrm/doctype/crm_fields_layout/crm_fields_layout.json +#. Option for the 'Type' (Select) field in PageType 'CRM Fields Layout' +#: crm/fcrm/pagetype/crm_fields_layout/crm_fields_layout.json msgid "Data Fields" msgstr "数据字段" -#. Label of the date (Date) field in DocType 'CRM Holiday' -#: crm/api/dashboard.py:601 crm/fcrm/doctype/crm_holiday/crm_holiday.json +#. Label of the date (Date) field in PageType 'CRM Holiday' +#: crm/api/dashboard.py:601 crm/fcrm/pagetype/crm_holiday/crm_holiday.json #: frontend/src/components/Calendar/CalendarEventPanel.vue:202 msgid "Date" msgstr "日期" @@ -1660,23 +1660,23 @@ msgstr "" msgid "Deal" msgstr "商机" -#. Label of the deal_owner (Link) field in DocType 'CRM Deal' -#: crm/fcrm/doctype/crm_deal/crm_deal.json +#. Label of the deal_owner (Link) field in PageType 'CRM Deal' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json msgid "Deal Owner" msgstr "商机负责人" -#. Label of the deal_status (Link) field in DocType 'ERPNext CRM Settings' -#: crm/fcrm/doctype/erpnext_crm_settings/erpnext_crm_settings.json +#. Label of the deal_status (Link) field in PageType 'ERPNext CRM Settings' +#: crm/fcrm/pagetype/erpnext_crm_settings/erpnext_crm_settings.json msgid "Deal Status" msgstr "商机状态" -#. Label of a shortcut in the Frappe CRM Workspace -#: crm/fcrm/workspace/frappe_crm/frappe_crm.json +#. Label of a shortcut in the Jingrow CRM Workspace +#: crm/fcrm/workspace/jingrow_crm/jingrow_crm.json msgid "Deal Statuses" msgstr "商机状态列表" -#. Label of the deal_value (Currency) field in DocType 'CRM Deal' -#: crm/fcrm/doctype/crm_deal/crm_deal.json +#. Label of the deal_value (Currency) field in PageType 'CRM Deal' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json msgid "Deal Value" msgstr "" @@ -1694,8 +1694,8 @@ msgstr "商机负责人" msgid "Deal value" msgstr "" -#. Label of a shortcut in the Frappe CRM Workspace -#: crm/fcrm/workspace/frappe_crm/frappe_crm.json +#. Label of a shortcut in the Jingrow CRM Workspace +#: crm/fcrm/workspace/jingrow_crm/jingrow_crm.json #: frontend/src/pages/Deal.vue:480 frontend/src/pages/MobileContact.vue:288 #: frontend/src/pages/MobileDeal.vue:384 #: frontend/src/pages/MobileOrganization.vue:325 @@ -1732,8 +1732,8 @@ msgstr "" msgid "Dear {{ lead_name }}, \\n\\nThis is a reminder for the payment of {{ grand_total }}. \\n\\nThanks, \\nFrappé" msgstr "尊敬的{{ lead_name }}:\\n\\n特此提醒您尚有{{ grand_total }}款项待支付。\\n\\n此致\\nFrappé团队" -#. Label of the default (Check) field in DocType 'CRM Service Level Agreement' -#: crm/fcrm/doctype/crm_service_level_agreement/crm_service_level_agreement.json +#. Label of the default (Check) field in PageType 'CRM Service Level Agreement' +#: crm/fcrm/pagetype/crm_service_level_agreement/crm_service_level_agreement.json msgid "Default" msgstr "默认" @@ -1745,8 +1745,8 @@ msgstr "默认收件箱" msgid "Default Incoming" msgstr "默认收件箱" -#. Label of the default_medium (Select) field in DocType 'CRM Telephony Agent' -#: crm/fcrm/doctype/crm_telephony_agent/crm_telephony_agent.json +#. Label of the default_medium (Select) field in PageType 'CRM Telephony Agent' +#: crm/fcrm/pagetype/crm_telephony_agent/crm_telephony_agent.json msgid "Default Medium" msgstr "默认媒介" @@ -1754,9 +1754,9 @@ msgstr "默认媒介" msgid "Default Outgoing" msgstr "默认外发" -#. Label of the default_priority (Check) field in DocType 'CRM Service Level +#. Label of the default_priority (Check) field in PageType 'CRM Service Level #. Priority' -#: crm/fcrm/doctype/crm_service_level_priority/crm_service_level_priority.json +#: crm/fcrm/pagetype/crm_service_level_priority/crm_service_level_priority.json msgid "Default Priority" msgstr "默认优先级" @@ -1768,7 +1768,7 @@ msgstr "默认发送账号" msgid "Default Sending and Inbox" msgstr "默认发送和收件账号" -#: crm/fcrm/doctype/crm_service_level_agreement/crm_service_level_agreement.py:33 +#: crm/fcrm/pagetype/crm_service_level_agreement/crm_service_level_agreement.py:33 msgid "Default Service Level Agreement already exists for {0}" msgstr "{0}的默认服务级别协议已存在" @@ -1788,8 +1788,8 @@ msgstr "默认呼叫媒介更新成功" msgid "Default medium" msgstr "默认媒介" -#: crm/fcrm/doctype/fcrm_settings/fcrm_settings.js:18 -#: crm/fcrm/doctype/fcrm_settings/fcrm_settings.js:30 +#: crm/fcrm/pagetype/fcrm_settings/fcrm_settings.js:18 +#: crm/fcrm/pagetype/fcrm_settings/fcrm_settings.js:30 msgid "Default statuses, custom fields and layouts restored successfully." msgstr "默认状态、自定义字段及布局已成功恢复。" @@ -1825,7 +1825,7 @@ msgstr "默认状态、自定义字段及布局已成功恢复。" msgid "Delete" msgstr "删除" -#: crm/fcrm/doctype/fcrm_settings/fcrm_settings.js:26 +#: crm/fcrm/pagetype/fcrm_settings/fcrm_settings.js:26 msgid "Delete & Restore" msgstr "删除并恢复" @@ -1883,14 +1883,14 @@ msgstr "" msgid "Delete {0} items" msgstr "" -#. Label of the description (Text Editor) field in DocType 'CRM Holiday' -#. Label of the description (Text Editor) field in DocType 'CRM Lost Reason' -#. Label of the description (Text Editor) field in DocType 'CRM Product' -#. Label of the description (Text Editor) field in DocType 'CRM Task' -#: crm/fcrm/doctype/crm_holiday/crm_holiday.json -#: crm/fcrm/doctype/crm_lost_reason/crm_lost_reason.json -#: crm/fcrm/doctype/crm_product/crm_product.json -#: crm/fcrm/doctype/crm_task/crm_task.json +#. Label of the description (Text Editor) field in PageType 'CRM Holiday' +#. Label of the description (Text Editor) field in PageType 'CRM Lost Reason' +#. Label of the description (Text Editor) field in PageType 'CRM Product' +#. Label of the description (Text Editor) field in PageType 'CRM Task' +#: crm/fcrm/pagetype/crm_holiday/crm_holiday.json +#: crm/fcrm/pagetype/crm_lost_reason/crm_lost_reason.json +#: crm/fcrm/pagetype/crm_product/crm_product.json +#: crm/fcrm/pagetype/crm_task/crm_task.json #: frontend/src/components/Calendar/CalendarEventPanel.vue:152 #: frontend/src/components/Modals/EventModal.vue:134 #: frontend/src/components/Modals/TaskModal.vue:36 @@ -1907,29 +1907,29 @@ msgstr "" msgid "Desk" msgstr "工作台" -#. Label of the details (Tab Break) field in DocType 'CRM Lead' -#. Label of the details (Text Editor) field in DocType 'CRM Lead Source' -#: crm/fcrm/doctype/crm_lead/crm_lead.json -#: crm/fcrm/doctype/crm_lead_source/crm_lead_source.json +#. Label of the details (Tab Break) field in PageType 'CRM Lead' +#. Label of the details (Text Editor) field in PageType 'CRM Lead Source' +#: crm/fcrm/pagetype/crm_lead/crm_lead.json +#: crm/fcrm/pagetype/crm_lead_source/crm_lead_source.json #: frontend/src/pages/MobileContact.vue:283 #: frontend/src/pages/MobileDeal.vue:424 frontend/src/pages/MobileLead.vue:331 #: frontend/src/pages/MobileOrganization.vue:320 msgid "Details" msgstr "详情" -#. Label of the call_receiving_device (Select) field in DocType 'CRM Telephony +#. Label of the call_receiving_device (Select) field in PageType 'CRM Telephony #. Agent' -#: crm/fcrm/doctype/crm_telephony_agent/crm_telephony_agent.json +#: crm/fcrm/pagetype/crm_telephony_agent/crm_telephony_agent.json #: frontend/src/components/FilesUploader/FilesUploaderArea.vue:39 msgid "Device" msgstr "设备" -#: crm/fcrm/doctype/crm_form_script/crm_form_script.js:30 +#: crm/fcrm/pagetype/crm_form_script/crm_form_script.js:30 msgid "Disable" msgstr "禁用" -#. Label of the disabled (Check) field in DocType 'CRM Product' -#: crm/fcrm/doctype/crm_product/crm_product.json +#. Label of the disabled (Check) field in PageType 'CRM Product' +#: crm/fcrm/pagetype/crm_product/crm_product.json msgid "Disabled" msgstr "禁用" @@ -1943,27 +1943,27 @@ msgstr "放弃" msgid "Discard unsaved changes?" msgstr "" -#. Label of the discount_percentage (Percent) field in DocType 'CRM Products' -#: crm/fcrm/doctype/crm_products/crm_products.json +#. Label of the discount_percentage (Percent) field in PageType 'CRM Products' +#: crm/fcrm/pagetype/crm_products/crm_products.json msgid "Discount %" msgstr "折扣 %" -#. Label of the discount_amount (Currency) field in DocType 'CRM Products' -#: crm/fcrm/doctype/crm_products/crm_products.json +#. Label of the discount_amount (Currency) field in PageType 'CRM Products' +#: crm/fcrm/pagetype/crm_products/crm_products.json msgid "Discount Amount" msgstr "折扣金额" -#. Label of the dt (Link) field in DocType 'CRM Form Script' -#. Label of the dt (Link) field in DocType 'CRM Global Settings' -#. Label of the dt (Link) field in DocType 'CRM View Settings' -#: crm/fcrm/doctype/crm_form_script/crm_form_script.json -#: crm/fcrm/doctype/crm_global_settings/crm_global_settings.json -#: crm/fcrm/doctype/crm_view_settings/crm_view_settings.json -msgid "DocType" +#. Label of the dt (Link) field in PageType 'CRM Form Script' +#. Label of the dt (Link) field in PageType 'CRM Global Settings' +#. Label of the dt (Link) field in PageType 'CRM View Settings' +#: crm/fcrm/pagetype/crm_form_script/crm_form_script.json +#: crm/fcrm/pagetype/crm_global_settings/crm_global_settings.json +#: crm/fcrm/pagetype/crm_view_settings/crm_view_settings.json +msgid "PageType" msgstr "文档类型" -#. Label of the dt (Link) field in DocType 'CRM Fields Layout' -#: crm/fcrm/doctype/crm_fields_layout/crm_fields_layout.json +#. Label of the dt (Link) field in PageType 'CRM Fields Layout' +#: crm/fcrm/pagetype/crm_fields_layout/crm_fields_layout.json msgid "Document Type" msgstr "文档类型" @@ -1983,8 +1983,8 @@ msgstr "" msgid "Documentation" msgstr "用户操作手册" -#. Option for the 'Status' (Select) field in DocType 'CRM Task' -#: crm/fcrm/doctype/crm_task/crm_task.json +#. Option for the 'Status' (Select) field in PageType 'CRM Task' +#: crm/fcrm/pagetype/crm_task/crm_task.json msgid "Done" msgstr "完成" @@ -2006,13 +2006,13 @@ msgstr "拖放文件至此或从本地" msgid "Drop files here" msgstr "拖放文件至此" -#. Label of the dropdown_items_tab (Tab Break) field in DocType 'FCRM Settings' -#: crm/fcrm/doctype/fcrm_settings/fcrm_settings.json +#. Label of the dropdown_items_tab (Tab Break) field in PageType 'FCRM Settings' +#: crm/fcrm/pagetype/fcrm_settings/fcrm_settings.json msgid "Dropdown Items" msgstr "下拉选项" -#. Label of the due_date (Datetime) field in DocType 'CRM Task' -#: crm/fcrm/doctype/crm_task/crm_task.json +#. Label of the due_date (Datetime) field in PageType 'CRM Task' +#: crm/fcrm/pagetype/crm_task/crm_task.json msgid "Due Date" msgstr "截止日期" @@ -2048,10 +2048,10 @@ msgstr "" msgid "Duplicate template" msgstr "" -#. Label of the duration (Duration) field in DocType 'CRM Call Log' -#. Label of the duration (Duration) field in DocType 'CRM Status Change Log' -#: crm/fcrm/doctype/crm_call_log/crm_call_log.json -#: crm/fcrm/doctype/crm_status_change_log/crm_status_change_log.json +#. Label of the duration (Duration) field in PageType 'CRM Call Log' +#. Label of the duration (Duration) field in PageType 'CRM Status Change Log' +#: crm/fcrm/pagetype/crm_call_log/crm_call_log.json +#: crm/fcrm/pagetype/crm_status_change_log/crm_status_change_log.json msgid "Duration" msgstr "持续时间" @@ -2060,28 +2060,28 @@ msgstr "持续时间" msgid "ERPNext" msgstr "ERPNext" -#. Name of a DocType -#: crm/fcrm/doctype/erpnext_crm_settings/erpnext_crm_settings.json +#. Name of a PageType +#: crm/fcrm/pagetype/erpnext_crm_settings/erpnext_crm_settings.json msgid "ERPNext CRM Settings" msgstr "ERPNext CRM设置" -#. Label of the section_break_oubd (Section Break) field in DocType 'ERPNext +#. Label of the section_break_oubd (Section Break) field in PageType 'ERPNext #. CRM Settings' -#: crm/fcrm/doctype/erpnext_crm_settings/erpnext_crm_settings.json +#: crm/fcrm/pagetype/erpnext_crm_settings/erpnext_crm_settings.json msgid "ERPNext Site API's" msgstr "ERPNext站点API" -#. Label of the erpnext_site_url (Data) field in DocType 'ERPNext CRM Settings' -#: crm/fcrm/doctype/erpnext_crm_settings/erpnext_crm_settings.json +#. Label of the erpnext_site_url (Data) field in PageType 'ERPNext CRM Settings' +#: crm/fcrm/pagetype/erpnext_crm_settings/erpnext_crm_settings.json msgid "ERPNext Site URL" msgstr "ERPNext站点URL" -#: crm/fcrm/doctype/erpnext_crm_settings/erpnext_crm_settings.py:25 +#: crm/fcrm/pagetype/erpnext_crm_settings/erpnext_crm_settings.py:25 msgid "ERPNext is not installed in the current site" msgstr "当前站点未安装ERPNext" -#: crm/fcrm/doctype/erpnext_crm_settings/erpnext_crm_settings.py:98 -#: crm/fcrm/doctype/erpnext_crm_settings/erpnext_crm_settings.py:124 +#: crm/fcrm/pagetype/erpnext_crm_settings/erpnext_crm_settings.py:98 +#: crm/fcrm/pagetype/erpnext_crm_settings/erpnext_crm_settings.py:124 msgid "ERPNext is not integrated with the CRM" msgstr "ERPNext未与CRM集成" @@ -2191,12 +2191,12 @@ msgstr "正在编辑第{0}行" msgid "Editing event" msgstr "" -#. Label of the email (Data) field in DocType 'CRM Contacts' -#. Label of the email (Data) field in DocType 'CRM Invitation' -#. Label of the email (Data) field in DocType 'CRM Lead' -#: crm/fcrm/doctype/crm_contacts/crm_contacts.json -#: crm/fcrm/doctype/crm_invitation/crm_invitation.json -#: crm/fcrm/doctype/crm_lead/crm_lead.json frontend/src/pages/Contact.vue:510 +#. Label of the email (Data) field in PageType 'CRM Contacts' +#. Label of the email (Data) field in PageType 'CRM Invitation' +#. Label of the email (Data) field in PageType 'CRM Lead' +#: crm/fcrm/pagetype/crm_contacts/crm_contacts.json +#: crm/fcrm/pagetype/crm_invitation/crm_invitation.json +#: crm/fcrm/pagetype/crm_lead/crm_lead.json frontend/src/pages/Contact.vue:510 #: frontend/src/pages/MobileContact.vue:518 #: frontend/src/pages/MobileOrganization.vue:462 #: frontend/src/pages/MobileOrganization.vue:490 @@ -2213,8 +2213,8 @@ msgstr "" msgid "Email ID is required" msgstr "" -#. Label of the email_sent_at (Datetime) field in DocType 'CRM Invitation' -#: crm/fcrm/doctype/crm_invitation/crm_invitation.json +#. Label of the email_sent_at (Datetime) field in PageType 'CRM Invitation' +#: crm/fcrm/pagetype/crm_invitation/crm_invitation.json msgid "Email Sent At" msgstr "发送时间" @@ -2272,12 +2272,12 @@ msgstr "空 - 选择筛选字段" msgid "Empty - Choose a field to sort by" msgstr "空 - 选择排序字段" -#: crm/fcrm/doctype/crm_form_script/crm_form_script.js:30 +#: crm/fcrm/pagetype/crm_form_script/crm_form_script.js:30 msgid "Enable" msgstr "启用" -#. Label of the enable_forecasting (Check) field in DocType 'FCRM Settings' -#: crm/fcrm/doctype/fcrm_settings/fcrm_settings.json +#. Label of the enable_forecasting (Check) field in PageType 'FCRM Settings' +#: crm/fcrm/pagetype/fcrm_settings/fcrm_settings.json msgid "Enable Forecasting" msgstr "" @@ -2293,18 +2293,18 @@ msgstr "启用该邮箱帐号发送邮件" msgid "Enable forecasting" msgstr "" -#. Label of the enabled (Check) field in DocType 'CRM Exotel Settings' -#. Label of the enabled (Check) field in DocType 'CRM Form Script' -#. Label of the enabled (Check) field in DocType 'CRM Service Level Agreement' -#. Label of the enabled (Check) field in DocType 'CRM Twilio Settings' -#. Label of the enabled (Check) field in DocType 'ERPNext CRM Settings' -#. Label of the enabled (Check) field in DocType 'Helpdesk CRM Settings' -#: crm/fcrm/doctype/crm_exotel_settings/crm_exotel_settings.json -#: crm/fcrm/doctype/crm_form_script/crm_form_script.json -#: crm/fcrm/doctype/crm_service_level_agreement/crm_service_level_agreement.json -#: crm/fcrm/doctype/crm_twilio_settings/crm_twilio_settings.json -#: crm/fcrm/doctype/erpnext_crm_settings/erpnext_crm_settings.json -#: crm/fcrm/doctype/helpdesk_crm_settings/helpdesk_crm_settings.json +#. Label of the enabled (Check) field in PageType 'CRM Exotel Settings' +#. Label of the enabled (Check) field in PageType 'CRM Form Script' +#. Label of the enabled (Check) field in PageType 'CRM Service Level Agreement' +#. Label of the enabled (Check) field in PageType 'CRM Twilio Settings' +#. Label of the enabled (Check) field in PageType 'ERPNext CRM Settings' +#. Label of the enabled (Check) field in PageType 'Helpdesk CRM Settings' +#: crm/fcrm/pagetype/crm_exotel_settings/crm_exotel_settings.json +#: crm/fcrm/pagetype/crm_form_script/crm_form_script.json +#: crm/fcrm/pagetype/crm_service_level_agreement/crm_service_level_agreement.json +#: crm/fcrm/pagetype/crm_twilio_settings/crm_twilio_settings.json +#: crm/fcrm/pagetype/erpnext_crm_settings/erpnext_crm_settings.json +#: crm/fcrm/pagetype/helpdesk_crm_settings/helpdesk_crm_settings.json #: frontend/src/components/Settings/AssignmentRules/AssignmentRuleView.vue:32 #: frontend/src/components/Settings/AssignmentRules/AssignmentRulesList.vue:21 #: frontend/src/components/Settings/EmailTemplate/EditEmailTemplate.vue:18 @@ -2313,15 +2313,15 @@ msgstr "" msgid "Enabled" msgstr "已启用" -#. Label of the end_date (Date) field in DocType 'CRM Service Level Agreement' -#: crm/fcrm/doctype/crm_service_level_agreement/crm_service_level_agreement.json +#. Label of the end_date (Date) field in PageType 'CRM Service Level Agreement' +#: crm/fcrm/pagetype/crm_service_level_agreement/crm_service_level_agreement.json msgid "End Date" msgstr "结束日期" -#. Label of the end_time (Datetime) field in DocType 'CRM Call Log' -#. Label of the end_time (Time) field in DocType 'CRM Service Day' -#: crm/fcrm/doctype/crm_call_log/crm_call_log.json -#: crm/fcrm/doctype/crm_service_day/crm_service_day.json +#. Label of the end_time (Datetime) field in PageType 'CRM Call Log' +#. Label of the end_time (Time) field in PageType 'CRM Service Day' +#: crm/fcrm/pagetype/crm_call_log/crm_call_log.json +#: crm/fcrm/pagetype/crm_service_day/crm_service_day.json #: frontend/src/components/Calendar/CalendarEventPanel.vue:242 #: frontend/src/components/Modals/EventModal.vue:112 msgid "End Time" @@ -2362,15 +2362,15 @@ msgstr "" msgid "Error updating field" msgstr "" -#: crm/fcrm/doctype/erpnext_crm_settings/erpnext_crm_settings.py:279 +#: crm/fcrm/pagetype/erpnext_crm_settings/erpnext_crm_settings.py:279 msgid "Error while creating customer in ERPNext, check error log for more details" msgstr "ERPNext创建客户失败,请查看错误日志" -#: crm/fcrm/doctype/erpnext_crm_settings/erpnext_crm_settings.py:191 +#: crm/fcrm/pagetype/erpnext_crm_settings/erpnext_crm_settings.py:191 msgid "Error while creating prospect in ERPNext, check error log for more details" msgstr "ERPNext创建潜在客户失败,请查看错误日志" -#: crm/fcrm/doctype/erpnext_crm_settings/erpnext_crm_settings.py:117 +#: crm/fcrm/pagetype/erpnext_crm_settings/erpnext_crm_settings.py:117 msgid "Error while fetching customer in ERPNext, check error log for more details" msgstr "ERPNext获取客户失败,请查看错误日志" @@ -2395,16 +2395,16 @@ msgstr "事件" msgid "Excel" msgstr "Excel" -#. Label of the exchange_rate (Float) field in DocType 'CRM Deal' -#. Label of the exchange_rate (Float) field in DocType 'CRM Organization' -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_organization/crm_organization.json +#. Label of the exchange_rate (Float) field in PageType 'CRM Deal' +#. Label of the exchange_rate (Float) field in PageType 'CRM Organization' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_organization/crm_organization.json msgid "Exchange Rate" msgstr "汇率" -#. Label of the exchange_rate_provider_section (Section Break) field in DocType +#. Label of the exchange_rate_provider_section (Section Break) field in PageType #. 'FCRM Settings' -#: crm/fcrm/doctype/fcrm_settings/fcrm_settings.json +#: crm/fcrm/pagetype/fcrm_settings/fcrm_settings.json msgid "Exchange Rate Provider" msgstr "" @@ -2412,12 +2412,12 @@ msgstr "" msgid "Exchange rate provider" msgstr "" -#. Option for the 'Telephony Medium' (Select) field in DocType 'CRM Call Log' -#. Label of the exotel (Check) field in DocType 'CRM Telephony Agent' -#. Option for the 'Default Medium' (Select) field in DocType 'CRM Telephony +#. Option for the 'Telephony Medium' (Select) field in PageType 'CRM Call Log' +#. Label of the exotel (Check) field in PageType 'CRM Telephony Agent' +#. Option for the 'Default Medium' (Select) field in PageType 'CRM Telephony #. Agent' -#: crm/fcrm/doctype/crm_call_log/crm_call_log.json -#: crm/fcrm/doctype/crm_telephony_agent/crm_telephony_agent.json +#: crm/fcrm/pagetype/crm_call_log/crm_call_log.json +#: crm/fcrm/pagetype/crm_telephony_agent/crm_telephony_agent.json #: frontend/src/components/Layouts/AppSidebar.vue:602 #: frontend/src/components/Settings/TelephonySettings.vue:41 #: frontend/src/components/Settings/TelephonySettings.vue:63 @@ -2428,8 +2428,8 @@ msgstr "Exotel" msgid "Exotel Exception" msgstr "Exotel异常" -#. Label of the exotel_number (Data) field in DocType 'CRM Telephony Agent' -#: crm/fcrm/doctype/crm_telephony_agent/crm_telephony_agent.json +#. Label of the exotel_number (Data) field in PageType 'CRM Telephony Agent' +#: crm/fcrm/pagetype/crm_telephony_agent/crm_telephony_agent.json msgid "Exotel Number" msgstr "Exotel号码" @@ -2453,26 +2453,26 @@ msgstr "Exotel设置更新成功" msgid "Expand" msgstr "展开" -#. Label of the expected_closure_date (Date) field in DocType 'CRM Deal' -#: crm/fcrm/doctype/crm_deal/crm_deal.json +#. Label of the expected_closure_date (Date) field in PageType 'CRM Deal' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json msgid "Expected Closure Date" msgstr "" -#: crm/fcrm/doctype/crm_deal/crm_deal.py:173 +#: crm/fcrm/pagetype/crm_deal/crm_deal.py:173 msgid "Expected Closure Date is required." msgstr "" -#. Label of the expected_deal_value (Currency) field in DocType 'CRM Deal' -#: crm/fcrm/doctype/crm_deal/crm_deal.json +#. Label of the expected_deal_value (Currency) field in PageType 'CRM Deal' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json msgid "Expected Deal Value" msgstr "" -#: crm/fcrm/doctype/crm_deal/crm_deal.py:171 +#: crm/fcrm/pagetype/crm_deal/crm_deal.py:171 msgid "Expected Deal Value is required." msgstr "" -#. Option for the 'Status' (Select) field in DocType 'CRM Invitation' -#: crm/fcrm/doctype/crm_invitation/crm_invitation.json +#. Option for the 'Status' (Select) field in PageType 'CRM Invitation' +#: crm/fcrm/pagetype/crm_invitation/crm_invitation.json msgid "Expired" msgstr "已过期" @@ -2489,22 +2489,22 @@ msgstr "导出全部{0}条记录" msgid "Export Type" msgstr "导出类型" -#. Name of a DocType -#: crm/fcrm/doctype/fcrm_note/fcrm_note.json +#. Name of a PageType +#: crm/fcrm/pagetype/fcrm_note/fcrm_note.json msgid "FCRM Note" msgstr "FCRM备注" -#. Name of a DocType -#: crm/fcrm/doctype/fcrm_settings/fcrm_settings.json +#. Name of a PageType +#: crm/fcrm/pagetype/fcrm_settings/fcrm_settings.json msgid "FCRM Settings" msgstr "FCRM设置" -#. Option for the 'Status' (Select) field in DocType 'CRM Call Log' -#. Option for the 'SLA Status' (Select) field in DocType 'CRM Deal' -#. Option for the 'SLA Status' (Select) field in DocType 'CRM Lead' -#: crm/fcrm/doctype/crm_call_log/crm_call_log.json -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_lead/crm_lead.json +#. Option for the 'Status' (Select) field in PageType 'CRM Call Log' +#. Option for the 'SLA Status' (Select) field in PageType 'CRM Deal' +#. Option for the 'SLA Status' (Select) field in PageType 'CRM Lead' +#: crm/fcrm/pagetype/crm_call_log/crm_call_log.json +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_lead/crm_lead.json msgid "Failed" msgstr "失败" @@ -2528,7 +2528,7 @@ msgstr "" msgid "Failed to delete template" msgstr "" -#: crm/fcrm/doctype/fcrm_settings/fcrm_settings.py:205 +#: crm/fcrm/pagetype/fcrm_settings/fcrm_settings.py:205 msgid "Failed to fetch exchange rate from {0} to {1} on {2}. Please check your internet connection or try again later." msgstr "" @@ -2561,8 +2561,8 @@ msgstr "" msgid "Failed to update template" msgstr "" -#. Label of the favicon (Attach) field in DocType 'FCRM Settings' -#: crm/fcrm/doctype/fcrm_settings/fcrm_settings.json +#. Label of the favicon (Attach) field in PageType 'FCRM Settings' +#: crm/fcrm/pagetype/fcrm_settings/fcrm_settings.json #: frontend/src/components/Settings/BrandSettings.vue:87 msgid "Favicon" msgstr "网站图标" @@ -2586,23 +2586,23 @@ msgid "File \"{0}\" was skipped because only {1} uploads are allowed" msgstr "文件\"{0}\"已跳过,因为最多只允许上传{1}个文件" #: frontend/src/components/FilesUploader/FilesUploaderArea.vue:359 -msgid "File \"{0}\" was skipped because only {1} uploads are allowed for DocType \"{2}\"" +msgid "File \"{0}\" was skipped because only {1} uploads are allowed for PageType \"{2}\"" msgstr "文件\"{0}\"已跳过,因为文档类型\"{2}\"最多只允许上传{1}个文件" #: frontend/src/components/Filter.vue:6 msgid "Filter" msgstr "筛选器" -#. Label of the filters (Code) field in DocType 'CRM View Settings' -#. Label of the filters_tab (Tab Break) field in DocType 'CRM View Settings' -#: crm/fcrm/doctype/crm_view_settings/crm_view_settings.json +#. Label of the filters (Code) field in PageType 'CRM View Settings' +#. Label of the filters_tab (Tab Break) field in PageType 'CRM View Settings' +#: crm/fcrm/pagetype/crm_view_settings/crm_view_settings.json msgid "Filters" msgstr "筛选条件" -#. Label of the first_name (Data) field in DocType 'CRM Deal' -#. Label of the first_name (Data) field in DocType 'CRM Lead' -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_lead/crm_lead.json +#. Label of the first_name (Data) field in PageType 'CRM Deal' +#. Label of the first_name (Data) field in PageType 'CRM Lead' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_lead/crm_lead.json #: frontend/src/components/ColumnSettings.vue:103 #: frontend/src/components/Filter.vue:57 frontend/src/components/Filter.vue:88 #: frontend/src/components/SortBy.vue:6 frontend/src/components/SortBy.vue:103 @@ -2614,30 +2614,30 @@ msgstr "名字" msgid "First Name is mandatory" msgstr "名字为必填项" -#. Label of the first_responded_on (Datetime) field in DocType 'CRM Deal' -#. Label of the first_responded_on (Datetime) field in DocType 'CRM Lead' -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_lead/crm_lead.json +#. Label of the first_responded_on (Datetime) field in PageType 'CRM Deal' +#. Label of the first_responded_on (Datetime) field in PageType 'CRM Lead' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_lead/crm_lead.json msgid "First Responded On" msgstr "首次响应时间" -#. Option for the 'SLA Status' (Select) field in DocType 'CRM Deal' -#. Option for the 'SLA Status' (Select) field in DocType 'CRM Lead' -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_lead/crm_lead.json +#. Option for the 'SLA Status' (Select) field in PageType 'CRM Deal' +#. Option for the 'SLA Status' (Select) field in PageType 'CRM Lead' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_lead/crm_lead.json msgid "First Response Due" msgstr "首次响应截止" -#. Label of the first_response_time (Duration) field in DocType 'CRM Service +#. Label of the first_response_time (Duration) field in PageType 'CRM Service #. Level Priority' -#: crm/fcrm/doctype/crm_service_level_priority/crm_service_level_priority.json +#: crm/fcrm/pagetype/crm_service_level_priority/crm_service_level_priority.json msgid "First Response TIme" msgstr "首次响应时间" -#. Label of the first_response_time (Duration) field in DocType 'CRM Deal' -#. Label of the first_response_time (Duration) field in DocType 'CRM Lead' -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_lead/crm_lead.json +#. Label of the first_response_time (Duration) field in PageType 'CRM Deal' +#. Label of the first_response_time (Duration) field in PageType 'CRM Lead' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_lead/crm_lead.json msgid "First Response Time" msgstr "首次响应时间" @@ -2670,66 +2670,66 @@ msgstr "" msgid "Forecasting enabled successfully" msgstr "" -#. Option for the 'Apply To' (Select) field in DocType 'CRM Form Script' -#: crm/fcrm/doctype/crm_form_script/crm_form_script.json +#. Option for the 'Apply To' (Select) field in PageType 'CRM Form Script' +#: crm/fcrm/pagetype/crm_form_script/crm_form_script.json msgid "Form" msgstr "表单" -#: crm/fcrm/doctype/erpnext_crm_settings/erpnext_crm_settings.js:19 +#: crm/fcrm/pagetype/erpnext_crm_settings/erpnext_crm_settings.js:19 msgid "Form Script updated successfully" msgstr "表单脚本更新成功" #. Name of a Workspace -#: crm/fcrm/workspace/frappe_crm/frappe_crm.json -msgid "Frappe CRM" -msgstr "Frappe CRM" +#: crm/fcrm/workspace/jingrow_crm/jingrow_crm.json +msgid "Jingrow CRM" +msgstr "Jingrow CRM" #: frontend/src/components/Layouts/AppSidebar.vue:608 -msgid "Frappe CRM mobile" +msgid "Jingrow CRM mobile" msgstr "" -#. Option for the 'Weekly Off' (Select) field in DocType 'CRM Holiday List' -#. Option for the 'Workday' (Select) field in DocType 'CRM Service Day' -#: crm/fcrm/doctype/crm_holiday_list/crm_holiday_list.json -#: crm/fcrm/doctype/crm_service_day/crm_service_day.json +#. Option for the 'Weekly Off' (Select) field in PageType 'CRM Holiday List' +#. Option for the 'Workday' (Select) field in PageType 'CRM Service Day' +#: crm/fcrm/pagetype/crm_holiday_list/crm_holiday_list.json +#: crm/fcrm/pagetype/crm_service_day/crm_service_day.json msgid "Friday" msgstr "周五" -#. Label of the from (Data) field in DocType 'CRM Call Log' -#. Label of the from (Data) field in DocType 'CRM Status Change Log' -#: crm/fcrm/doctype/crm_call_log/crm_call_log.json -#: crm/fcrm/doctype/crm_status_change_log/crm_status_change_log.json +#. Label of the from (Data) field in PageType 'CRM Call Log' +#. Label of the from (Data) field in PageType 'CRM Status Change Log' +#: crm/fcrm/pagetype/crm_call_log/crm_call_log.json +#: crm/fcrm/pagetype/crm_status_change_log/crm_status_change_log.json msgid "From" msgstr "发件人" -#. Label of the from_date (Date) field in DocType 'CRM Holiday List' -#. Label of the from_date (Datetime) field in DocType 'CRM Status Change Log' -#: crm/fcrm/doctype/crm_holiday_list/crm_holiday_list.json -#: crm/fcrm/doctype/crm_status_change_log/crm_status_change_log.json +#. Label of the from_date (Date) field in PageType 'CRM Holiday List' +#. Label of the from_date (Datetime) field in PageType 'CRM Status Change Log' +#: crm/fcrm/pagetype/crm_holiday_list/crm_holiday_list.json +#: crm/fcrm/pagetype/crm_status_change_log/crm_status_change_log.json msgid "From Date" msgstr "起始日期" -#. Label of the from_type (Data) field in DocType 'CRM Status Change Log' -#: crm/fcrm/doctype/crm_status_change_log/crm_status_change_log.json +#. Label of the from_type (Data) field in PageType 'CRM Status Change Log' +#: crm/fcrm/pagetype/crm_status_change_log/crm_status_change_log.json msgid "From Type" msgstr "" -#. Label of the from_user (Link) field in DocType 'CRM Notification' -#: crm/fcrm/doctype/crm_notification/crm_notification.json +#. Label of the from_user (Link) field in PageType 'CRM Notification' +#: crm/fcrm/pagetype/crm_notification/crm_notification.json msgid "From User" msgstr "来自用户" -#. Option for the 'SLA Status' (Select) field in DocType 'CRM Deal' -#. Option for the 'SLA Status' (Select) field in DocType 'CRM Lead' -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_lead/crm_lead.json +#. Option for the 'SLA Status' (Select) field in PageType 'CRM Deal' +#. Option for the 'SLA Status' (Select) field in PageType 'CRM Lead' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_lead/crm_lead.json msgid "Fulfilled" msgstr "已完成" -#. Label of the full_name (Data) field in DocType 'CRM Contacts' -#. Label of the lead_name (Data) field in DocType 'CRM Lead' -#: crm/fcrm/doctype/crm_contacts/crm_contacts.json -#: crm/fcrm/doctype/crm_lead/crm_lead.json +#. Label of the full_name (Data) field in PageType 'CRM Contacts' +#. Label of the lead_name (Data) field in PageType 'CRM Lead' +#: crm/fcrm/pagetype/crm_contacts/crm_contacts.json +#: crm/fcrm/pagetype/crm_lead/crm_lead.json msgid "Full Name" msgstr "全名" @@ -2742,12 +2742,12 @@ msgstr "" msgid "GMT+5:30" msgstr "" -#. Label of the gender (Link) field in DocType 'CRM Contacts' -#. Label of the gender (Link) field in DocType 'CRM Deal' -#. Label of the gender (Link) field in DocType 'CRM Lead' -#: crm/fcrm/doctype/crm_contacts/crm_contacts.json -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_lead/crm_lead.json +#. Label of the gender (Link) field in PageType 'CRM Contacts' +#. Label of the gender (Link) field in PageType 'CRM Deal' +#. Label of the gender (Link) field in PageType 'CRM Lead' +#: crm/fcrm/pagetype/crm_contacts/crm_contacts.json +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_lead/crm_lead.json msgid "Gender" msgstr "性别" @@ -2771,20 +2771,20 @@ msgstr "" msgid "Go to website" msgstr "访问网站" -#. Option for the 'Type' (Select) field in DocType 'CRM Fields Layout' -#: crm/fcrm/doctype/crm_fields_layout/crm_fields_layout.json +#. Option for the 'Type' (Select) field in PageType 'CRM Fields Layout' +#: crm/fcrm/pagetype/crm_fields_layout/crm_fields_layout.json msgid "Grid Row" msgstr "网格行" -#. Label of the group_by_tab (Tab Break) field in DocType 'CRM View Settings' -#: crm/fcrm/doctype/crm_view_settings/crm_view_settings.json +#. Label of the group_by_tab (Tab Break) field in PageType 'CRM View Settings' +#: crm/fcrm/pagetype/crm_view_settings/crm_view_settings.json #: frontend/src/components/ViewControls.vue:379 #: frontend/src/components/ViewControls.vue:611 frontend/src/utils/view.js:16 msgid "Group By" msgstr "分组依据" -#. Label of the group_by_field (Data) field in DocType 'CRM View Settings' -#: crm/fcrm/doctype/crm_view_settings/crm_view_settings.json +#. Label of the group_by_field (Data) field in PageType 'CRM View Settings' +#: crm/fcrm/pagetype/crm_view_settings/crm_view_settings.json msgid "Group By Field" msgstr "分组字段" @@ -2808,28 +2808,28 @@ msgstr "帮助" msgid "Helpdesk" msgstr "" -#. Name of a DocType -#: crm/fcrm/doctype/helpdesk_crm_settings/helpdesk_crm_settings.json +#. Name of a PageType +#: crm/fcrm/pagetype/helpdesk_crm_settings/helpdesk_crm_settings.json msgid "Helpdesk CRM Settings" msgstr "" -#. Label of the helpdesk_site_apis_section (Section Break) field in DocType +#. Label of the helpdesk_site_apis_section (Section Break) field in PageType #. 'Helpdesk CRM Settings' -#: crm/fcrm/doctype/helpdesk_crm_settings/helpdesk_crm_settings.json +#: crm/fcrm/pagetype/helpdesk_crm_settings/helpdesk_crm_settings.json msgid "Helpdesk Site API's" msgstr "" -#. Label of the helpdesk_site_url (Data) field in DocType 'Helpdesk CRM +#. Label of the helpdesk_site_url (Data) field in PageType 'Helpdesk CRM #. Settings' -#: crm/fcrm/doctype/helpdesk_crm_settings/helpdesk_crm_settings.json +#: crm/fcrm/pagetype/helpdesk_crm_settings/helpdesk_crm_settings.json msgid "Helpdesk Site URL" msgstr "" -#: crm/fcrm/doctype/helpdesk_crm_settings/helpdesk_crm_settings.py:18 +#: crm/fcrm/pagetype/helpdesk_crm_settings/helpdesk_crm_settings.py:18 msgid "Helpdesk is not installed in the current site" msgstr "" -#: crm/fcrm/doctype/helpdesk_crm_settings/helpdesk_crm_settings.py:40 +#: crm/fcrm/pagetype/helpdesk_crm_settings/helpdesk_crm_settings.py:40 msgid "Helpdesk is not integrated with the CRM" msgstr "" @@ -2845,8 +2845,8 @@ msgstr "" msgid "Hi John, \\n\\nCan you please provide more details on this..." msgstr "John 您好:\\n\\n可否请您就此事项提供更多详细信息..." -#. Label of the hidden (Check) field in DocType 'CRM Dropdown Item' -#: crm/fcrm/doctype/crm_dropdown_item/crm_dropdown_item.json +#. Label of the hidden (Check) field in PageType 'CRM Dropdown Item' +#: crm/fcrm/pagetype/crm_dropdown_item/crm_dropdown_item.json msgid "Hidden" msgstr "隐藏" @@ -2877,26 +2877,26 @@ msgstr "隐藏标签" msgid "Hide preview" msgstr "隐藏预览" -#. Option for the 'Priority' (Select) field in DocType 'CRM Task' -#: crm/fcrm/doctype/crm_task/crm_task.json +#. Option for the 'Priority' (Select) field in PageType 'CRM Task' +#: crm/fcrm/pagetype/crm_task/crm_task.json msgid "High" msgstr "高" -#. Label of the holiday_list (Link) field in DocType 'CRM Service Level +#. Label of the holiday_list (Link) field in PageType 'CRM Service Level #. Agreement' -#: crm/fcrm/doctype/crm_service_level_agreement/crm_service_level_agreement.json +#: crm/fcrm/pagetype/crm_service_level_agreement/crm_service_level_agreement.json msgid "Holiday List" msgstr "假期列表" -#. Label of the holiday_list_name (Data) field in DocType 'CRM Holiday List' -#: crm/fcrm/doctype/crm_holiday_list/crm_holiday_list.json +#. Label of the holiday_list_name (Data) field in PageType 'CRM Holiday List' +#: crm/fcrm/pagetype/crm_holiday_list/crm_holiday_list.json msgid "Holiday List Name" msgstr "假期列表名称" -#. Label of the holidays_section (Section Break) field in DocType 'CRM Holiday +#. Label of the holidays_section (Section Break) field in PageType 'CRM Holiday #. List' -#. Label of the holidays (Table) field in DocType 'CRM Holiday List' -#: crm/fcrm/doctype/crm_holiday_list/crm_holiday_list.json +#. Label of the holidays (Table) field in PageType 'CRM Holiday List' +#: crm/fcrm/pagetype/crm_holiday_list/crm_holiday_list.json msgid "Holidays" msgstr "假期" @@ -2914,15 +2914,15 @@ msgstr "主页操作" msgid "I understand, add conditions" msgstr "" -#. Label of the id (Data) field in DocType 'CRM Call Log' -#: crm/fcrm/doctype/crm_call_log/crm_call_log.json +#. Label of the id (Data) field in PageType 'CRM Call Log' +#: crm/fcrm/pagetype/crm_call_log/crm_call_log.json msgid "ID" msgstr "ID" -#. Label of the icon (Code) field in DocType 'CRM Dropdown Item' -#. Label of the icon (Data) field in DocType 'CRM View Settings' -#: crm/fcrm/doctype/crm_dropdown_item/crm_dropdown_item.json -#: crm/fcrm/doctype/crm_view_settings/crm_view_settings.json +#. Label of the icon (Code) field in PageType 'CRM Dropdown Item' +#. Label of the icon (Data) field in PageType 'CRM View Settings' +#: crm/fcrm/pagetype/crm_dropdown_item/crm_dropdown_item.json +#: crm/fcrm/pagetype/crm_view_settings/crm_view_settings.json msgid "Icon" msgstr "图标" @@ -2942,10 +2942,10 @@ msgstr "" msgid "If enabled, records can be created from the incoming emails on this account." msgstr "" -#. Label of the image (Attach Image) field in DocType 'CRM Lead' -#. Label of the image (Attach Image) field in DocType 'CRM Product' -#: crm/fcrm/doctype/crm_lead/crm_lead.json -#: crm/fcrm/doctype/crm_product/crm_product.json +#. Label of the image (Attach Image) field in PageType 'CRM Lead' +#. Label of the image (Attach Image) field in PageType 'CRM Product' +#: crm/fcrm/pagetype/crm_lead/crm_lead.json +#: crm/fcrm/pagetype/crm_product/crm_product.json msgid "Image" msgstr "图片" @@ -2957,10 +2957,10 @@ msgstr "图片" msgid "In" msgstr "在" -#. Option for the 'Status' (Select) field in DocType 'CRM Call Log' -#. Option for the 'Status' (Select) field in DocType 'CRM Task' -#: crm/fcrm/doctype/crm_call_log/crm_call_log.json -#: crm/fcrm/doctype/crm_task/crm_task.json +#. Option for the 'Status' (Select) field in PageType 'CRM Call Log' +#. Option for the 'Status' (Select) field in PageType 'CRM Task' +#: crm/fcrm/pagetype/crm_call_log/crm_call_log.json +#: crm/fcrm/pagetype/crm_task/crm_task.json msgid "In Progress" msgstr "进行中" @@ -2976,8 +2976,8 @@ msgstr "呼入通话" msgid "Inbox" msgstr "收件箱" -#. Option for the 'Type' (Select) field in DocType 'CRM Call Log' -#: crm/fcrm/doctype/crm_call_log/crm_call_log.json +#. Option for the 'Type' (Select) field in PageType 'CRM Call Log' +#: crm/fcrm/pagetype/crm_call_log/crm_call_log.json msgid "Incoming" msgstr "呼入" @@ -2985,24 +2985,24 @@ msgstr "呼入" msgid "Incoming call..." msgstr "来电中..." -#. Label of a shortcut in the Frappe CRM Workspace -#: crm/fcrm/workspace/frappe_crm/frappe_crm.json +#. Label of a shortcut in the Jingrow CRM Workspace +#: crm/fcrm/workspace/jingrow_crm/jingrow_crm.json msgid "Industries" msgstr "行业" -#. Label of the industry (Link) field in DocType 'CRM Deal' -#. Label of the industry (Data) field in DocType 'CRM Industry' -#. Label of the industry (Link) field in DocType 'CRM Lead' -#. Label of the industry (Link) field in DocType 'CRM Organization' -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_industry/crm_industry.json -#: crm/fcrm/doctype/crm_lead/crm_lead.json -#: crm/fcrm/doctype/crm_organization/crm_organization.json +#. Label of the industry (Link) field in PageType 'CRM Deal' +#. Label of the industry (Data) field in PageType 'CRM Industry' +#. Label of the industry (Link) field in PageType 'CRM Lead' +#. Label of the industry (Link) field in PageType 'CRM Organization' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_industry/crm_industry.json +#: crm/fcrm/pagetype/crm_lead/crm_lead.json +#: crm/fcrm/pagetype/crm_organization/crm_organization.json msgid "Industry" msgstr "行业" -#. Option for the 'Status' (Select) field in DocType 'CRM Call Log' -#: crm/fcrm/doctype/crm_call_log/crm_call_log.json +#. Option for the 'Status' (Select) field in PageType 'CRM Call Log' +#: crm/fcrm/pagetype/crm_call_log/crm_call_log.json msgid "Initiated" msgstr "已启动" @@ -3037,7 +3037,7 @@ msgstr "集成" msgid "Introduction" msgstr "简介" -#: crm/fcrm/doctype/crm_twilio_settings/crm_twilio_settings.py:33 +#: crm/fcrm/pagetype/crm_twilio_settings/crm_twilio_settings.py:33 msgid "Invalid Account SID or Auth Token." msgstr "无效的账户SID或认证令牌" @@ -3054,7 +3054,7 @@ msgstr "无效的Exotel号码" msgid "Invalid chart name" msgstr "" -#: crm/fcrm/doctype/crm_exotel_settings/crm_exotel_settings.py:25 +#: crm/fcrm/pagetype/crm_exotel_settings/crm_exotel_settings.py:25 msgid "Invalid credentials" msgstr "无效的凭据" @@ -3103,8 +3103,8 @@ msgstr "" msgid "Invite your team" msgstr "" -#. Label of the invited_by (Link) field in DocType 'CRM Invitation' -#: crm/fcrm/doctype/crm_invitation/crm_invitation.json +#. Label of the invited_by (Link) field in PageType 'CRM Invitation' +#: crm/fcrm/pagetype/crm_invitation/crm_invitation.json msgid "Invited By" msgstr "邀请人" @@ -3118,59 +3118,59 @@ msgstr "邀请人" msgid "Is" msgstr "是" -#. Label of the is_default (Check) field in DocType 'CRM View Settings' -#: crm/fcrm/doctype/crm_view_settings/crm_view_settings.json +#. Label of the is_default (Check) field in PageType 'CRM View Settings' +#: crm/fcrm/pagetype/crm_view_settings/crm_view_settings.json msgid "Is Default" msgstr "设为默认" -#. Label of the is_erpnext_in_different_site (Check) field in DocType 'ERPNext +#. Label of the is_erpnext_in_different_site (Check) field in PageType 'ERPNext #. CRM Settings' -#: crm/fcrm/doctype/erpnext_crm_settings/erpnext_crm_settings.json +#: crm/fcrm/pagetype/erpnext_crm_settings/erpnext_crm_settings.json msgid "Is ERPNext installed on a different site?" msgstr "ERPNext是否安装在其他站点?" -#. Label of the is_group (Check) field in DocType 'CRM Territory' -#: crm/fcrm/doctype/crm_territory/crm_territory.json +#. Label of the is_group (Check) field in PageType 'CRM Territory' +#: crm/fcrm/pagetype/crm_territory/crm_territory.json msgid "Is Group" msgstr "是否分组" -#. Label of the is_helpdesk_in_different_site (Check) field in DocType +#. Label of the is_helpdesk_in_different_site (Check) field in PageType #. 'Helpdesk CRM Settings' -#: crm/fcrm/doctype/helpdesk_crm_settings/helpdesk_crm_settings.json +#: crm/fcrm/pagetype/helpdesk_crm_settings/helpdesk_crm_settings.json msgid "Is Helpdesk installed on a different site?" msgstr "" -#. Label of the is_primary (Check) field in DocType 'CRM Contacts' -#. Label of the is_primary (Check) field in DocType 'CRM Telephony Phone' -#: crm/fcrm/doctype/crm_contacts/crm_contacts.json -#: crm/fcrm/doctype/crm_telephony_phone/crm_telephony_phone.json +#. Label of the is_primary (Check) field in PageType 'CRM Contacts' +#. Label of the is_primary (Check) field in PageType 'CRM Telephony Phone' +#: crm/fcrm/pagetype/crm_contacts/crm_contacts.json +#: crm/fcrm/pagetype/crm_telephony_phone/crm_telephony_phone.json msgid "Is Primary" msgstr "是否主要" -#. Label of the is_standard (Check) field in DocType 'CRM Dropdown Item' -#. Label of the is_standard (Check) field in DocType 'CRM Form Script' -#. Label of the is_standard (Check) field in DocType 'CRM View Settings' -#: crm/fcrm/doctype/crm_dropdown_item/crm_dropdown_item.json -#: crm/fcrm/doctype/crm_form_script/crm_form_script.json -#: crm/fcrm/doctype/crm_view_settings/crm_view_settings.json +#. Label of the is_standard (Check) field in PageType 'CRM Dropdown Item' +#. Label of the is_standard (Check) field in PageType 'CRM Form Script' +#. Label of the is_standard (Check) field in PageType 'CRM View Settings' +#: crm/fcrm/pagetype/crm_dropdown_item/crm_dropdown_item.json +#: crm/fcrm/pagetype/crm_form_script/crm_form_script.json +#: crm/fcrm/pagetype/crm_view_settings/crm_view_settings.json msgid "Is Standard" msgstr "是否标准" -#. Description of the 'Enable Forecasting' (Check) field in DocType 'FCRM +#. Description of the 'Enable Forecasting' (Check) field in PageType 'FCRM #. Settings' -#: crm/fcrm/doctype/fcrm_settings/fcrm_settings.json +#: crm/fcrm/pagetype/fcrm_settings/fcrm_settings.json msgid "It will make deal's \"Expected Closure Date\" & \"Expected Deal Value\" mandatory to get accurate forecasting insights" msgstr "" -#. Label of the json (JSON) field in DocType 'CRM Global Settings' -#: crm/fcrm/doctype/crm_global_settings/crm_global_settings.json +#. Label of the json (JSON) field in PageType 'CRM Global Settings' +#: crm/fcrm/pagetype/crm_global_settings/crm_global_settings.json msgid "JSON" msgstr "JSON" -#. Label of the job_title (Data) field in DocType 'CRM Deal' -#. Label of the job_title (Data) field in DocType 'CRM Lead' -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_lead/crm_lead.json +#. Label of the job_title (Data) field in PageType 'CRM Deal' +#. Label of the job_title (Data) field in PageType 'CRM Lead' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_lead/crm_lead.json msgid "Job Title" msgstr "职位" @@ -3182,20 +3182,20 @@ msgstr "职位" msgid "John Doe" msgstr "张三" -#. Label of the kanban_tab (Tab Break) field in DocType 'CRM View Settings' -#: crm/fcrm/doctype/crm_view_settings/crm_view_settings.json +#. Label of the kanban_tab (Tab Break) field in PageType 'CRM View Settings' +#: crm/fcrm/pagetype/crm_view_settings/crm_view_settings.json #: frontend/src/components/ViewControls.vue:384 #: frontend/src/components/ViewControls.vue:600 frontend/src/utils/view.js:20 msgid "Kanban" msgstr "看板" -#. Label of the kanban_columns (Code) field in DocType 'CRM View Settings' -#: crm/fcrm/doctype/crm_view_settings/crm_view_settings.json +#. Label of the kanban_columns (Code) field in PageType 'CRM View Settings' +#: crm/fcrm/pagetype/crm_view_settings/crm_view_settings.json msgid "Kanban Columns" msgstr "看板列" -#. Label of the kanban_fields (Code) field in DocType 'CRM View Settings' -#: crm/fcrm/doctype/crm_view_settings/crm_view_settings.json +#. Label of the kanban_fields (Code) field in PageType 'CRM View Settings' +#: crm/fcrm/pagetype/crm_view_settings/crm_view_settings.json msgid "Kanban Fields" msgstr "看板字段" @@ -3204,15 +3204,15 @@ msgstr "看板字段" msgid "Kanban Settings" msgstr "看板设置" -#. Label of the key (Data) field in DocType 'CRM Invitation' -#: crm/fcrm/doctype/crm_invitation/crm_invitation.json +#. Label of the key (Data) field in PageType 'CRM Invitation' +#: crm/fcrm/pagetype/crm_invitation/crm_invitation.json msgid "Key" msgstr "键" -#. Label of the label (Data) field in DocType 'CRM Dropdown Item' -#. Label of the label (Data) field in DocType 'CRM View Settings' -#: crm/fcrm/doctype/crm_dropdown_item/crm_dropdown_item.json -#: crm/fcrm/doctype/crm_view_settings/crm_view_settings.json +#. Label of the label (Data) field in PageType 'CRM Dropdown Item' +#. Label of the label (Data) field in PageType 'CRM View Settings' +#: crm/fcrm/pagetype/crm_dropdown_item/crm_dropdown_item.json +#: crm/fcrm/pagetype/crm_view_settings/crm_view_settings.json #: frontend/src/components/ColumnSettings.vue:100 msgid "Label" msgstr "标签" @@ -3229,10 +3229,10 @@ msgstr "过去6个月" msgid "Last Month" msgstr "上月" -#. Label of the last_name (Data) field in DocType 'CRM Deal' -#. Label of the last_name (Data) field in DocType 'CRM Lead' -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_lead/crm_lead.json +#. Label of the last_name (Data) field in PageType 'CRM Deal' +#. Label of the last_name (Data) field in PageType 'CRM Lead' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_lead/crm_lead.json msgid "Last Name" msgstr "姓氏" @@ -3240,9 +3240,9 @@ msgstr "姓氏" msgid "Last Quarter" msgstr "上季度" -#. Label of the last_status_change_log (Link) field in DocType 'CRM Status +#. Label of the last_status_change_log (Link) field in PageType 'CRM Status #. Change Log' -#: crm/fcrm/doctype/crm_status_change_log/crm_status_change_log.json +#: crm/fcrm/pagetype/crm_status_change_log/crm_status_change_log.json msgid "Last Status Change Log" msgstr "最后状态变更日志" @@ -3270,15 +3270,15 @@ msgstr "" msgid "Last user assigned by this rule" msgstr "" -#. Label of the layout (Code) field in DocType 'CRM Dashboard' -#. Label of the layout (Code) field in DocType 'CRM Fields Layout' -#: crm/fcrm/doctype/crm_dashboard/crm_dashboard.json -#: crm/fcrm/doctype/crm_fields_layout/crm_fields_layout.json +#. Label of the layout (Code) field in PageType 'CRM Dashboard' +#. Label of the layout (Code) field in PageType 'CRM Fields Layout' +#: crm/fcrm/pagetype/crm_dashboard/crm_dashboard.json +#: crm/fcrm/pagetype/crm_fields_layout/crm_fields_layout.json msgid "Layout" msgstr "布局" -#. Label of the lead (Link) field in DocType 'CRM Deal' -#: crm/fcrm/doctype/crm_deal/crm_deal.json +#. Label of the lead (Link) field in PageType 'CRM Deal' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json #: frontend/src/components/Calendar/CalendarEventPanel.vue:263 #: frontend/src/components/Calendar/CalendarEventPanel.vue:288 #: frontend/src/components/Layouts/AppSidebar.vue:550 @@ -3291,32 +3291,32 @@ msgstr "布局" msgid "Lead" msgstr "线索" -#. Label of the lead_details_tab (Tab Break) field in DocType 'CRM Deal' -#: crm/fcrm/doctype/crm_deal/crm_deal.json +#. Label of the lead_details_tab (Tab Break) field in PageType 'CRM Deal' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json msgid "Lead Details" msgstr "线索详情" -#. Label of the lead_name (Data) field in DocType 'CRM Deal' -#: crm/fcrm/doctype/crm_deal/crm_deal.json +#. Label of the lead_name (Data) field in PageType 'CRM Deal' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json msgid "Lead Name" msgstr "线索名称" -#. Label of the lead_owner (Link) field in DocType 'CRM Lead' -#: crm/fcrm/doctype/crm_lead/crm_lead.json +#. Label of the lead_owner (Link) field in PageType 'CRM Lead' +#: crm/fcrm/pagetype/crm_lead/crm_lead.json msgid "Lead Owner" msgstr "线索负责人" -#: crm/fcrm/doctype/crm_lead/crm_lead.py:73 +#: crm/fcrm/pagetype/crm_lead/crm_lead.py:73 msgid "Lead Owner cannot be same as the Lead Email Address" msgstr "线索负责人不能与线索邮箱地址相同" -#. Label of a shortcut in the Frappe CRM Workspace -#: crm/fcrm/workspace/frappe_crm/frappe_crm.json +#. Label of a shortcut in the Jingrow CRM Workspace +#: crm/fcrm/workspace/jingrow_crm/jingrow_crm.json msgid "Lead Sources" msgstr "线索来源" -#. Label of a shortcut in the Frappe CRM Workspace -#: crm/fcrm/workspace/frappe_crm/frappe_crm.json +#. Label of a shortcut in the Jingrow CRM Workspace +#: crm/fcrm/workspace/jingrow_crm/jingrow_crm.json msgid "Lead Statuses" msgstr "线索状态" @@ -3328,8 +3328,8 @@ msgstr "" msgid "Lead to deal conversion pipeline" msgstr "" -#. Label of a shortcut in the Frappe CRM Workspace -#: crm/fcrm/workspace/frappe_crm/frappe_crm.json +#. Label of a shortcut in the Jingrow CRM Workspace +#: crm/fcrm/workspace/jingrow_crm/jingrow_crm.json #: frontend/src/pages/InvalidPage.vue:9 frontend/src/pages/Lead.vue:340 #: frontend/src/pages/MobileLead.vue:291 msgid "Leads" @@ -3345,8 +3345,8 @@ msgstr "" msgid "Learn about conditions" msgstr "" -#. Label of the lft (Int) field in DocType 'CRM Territory' -#: crm/fcrm/doctype/crm_territory/crm_territory.json +#. Label of the lft (Int) field in PageType 'CRM Territory' +#: crm/fcrm/pagetype/crm_territory/crm_territory.json msgid "Left" msgstr "左侧" @@ -3367,15 +3367,15 @@ msgstr "相似" msgid "Link" msgstr "链接" -#. Label of the links (Table) field in DocType 'CRM Call Log' -#: crm/fcrm/doctype/crm_call_log/crm_call_log.json +#. Label of the links (Table) field in PageType 'CRM Call Log' +#: crm/fcrm/pagetype/crm_call_log/crm_call_log.json msgid "Links" msgstr "链接" -#. Option for the 'Apply To' (Select) field in DocType 'CRM Form Script' -#. Label of the list_tab (Tab Break) field in DocType 'CRM View Settings' -#: crm/fcrm/doctype/crm_form_script/crm_form_script.json -#: crm/fcrm/doctype/crm_view_settings/crm_view_settings.json +#. Option for the 'Apply To' (Select) field in PageType 'CRM Form Script' +#. Label of the list_tab (Tab Break) field in PageType 'CRM View Settings' +#: crm/fcrm/pagetype/crm_form_script/crm_form_script.json +#: crm/fcrm/pagetype/crm_view_settings/crm_view_settings.json #: frontend/src/components/ViewControls.vue:374 #: frontend/src/components/ViewControls.vue:589 frontend/src/utils/view.js:12 msgid "List" @@ -3385,9 +3385,9 @@ msgstr "列表" msgid "Listen" msgstr "收听" -#. Label of the load_default_columns (Check) field in DocType 'CRM View +#. Label of the load_default_columns (Check) field in PageType 'CRM View #. Settings' -#: crm/fcrm/doctype/crm_view_settings/crm_view_settings.json +#: crm/fcrm/pagetype/crm_view_settings/crm_view_settings.json msgid "Load Default Columns" msgstr "加载默认列" @@ -3403,10 +3403,10 @@ msgstr "加载更多" msgid "Loading..." msgstr "加载中..." -#. Label of the log_tab (Tab Break) field in DocType 'CRM Deal' -#. Label of the log_tab (Tab Break) field in DocType 'CRM Lead' -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_lead/crm_lead.json +#. Label of the log_tab (Tab Break) field in PageType 'CRM Deal' +#. Label of the log_tab (Tab Break) field in PageType 'CRM Lead' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_lead/crm_lead.json msgid "Log" msgstr "日志" @@ -3417,28 +3417,28 @@ msgid "Log a Call" msgstr "" #: frontend/src/composables/frappecloud.js:23 -msgid "Login to Frappe Cloud?" -msgstr "登录Frappe云平台?" +msgid "Login to Jingrow Cloud?" +msgstr "登录Jingrow云平台?" -#. Label of the brand_logo (Attach) field in DocType 'FCRM Settings' -#: crm/fcrm/doctype/fcrm_settings/fcrm_settings.json +#. Label of the brand_logo (Attach) field in PageType 'FCRM Settings' +#: crm/fcrm/pagetype/fcrm_settings/fcrm_settings.json msgid "Logo" msgstr "徽标" -#. Option for the 'Type' (Select) field in DocType 'CRM Deal Status' -#: crm/fcrm/doctype/crm_deal_status/crm_deal_status.json +#. Option for the 'Type' (Select) field in PageType 'CRM Deal Status' +#: crm/fcrm/pagetype/crm_deal_status/crm_deal_status.json msgid "Lost" msgstr "未成交" -#. Label of the lost_notes (Text) field in DocType 'CRM Deal' -#: crm/fcrm/doctype/crm_deal/crm_deal.json +#. Label of the lost_notes (Text) field in PageType 'CRM Deal' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json msgid "Lost Notes" msgstr "" -#. Label of the lost_reason (Link) field in DocType 'CRM Deal' -#. Label of the lost_reason (Data) field in DocType 'CRM Lost Reason' -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_lost_reason/crm_lost_reason.json +#. Label of the lost_reason (Link) field in PageType 'CRM Deal' +#. Label of the lost_reason (Data) field in PageType 'CRM Lost Reason' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_lost_reason/crm_lost_reason.json msgid "Lost Reason" msgstr "未成交原因" @@ -3464,8 +3464,8 @@ msgstr "" msgid "Lost reason is required" msgstr "" -#. Option for the 'Priority' (Select) field in DocType 'CRM Task' -#: crm/fcrm/doctype/crm_task/crm_task.json +#. Option for the 'Priority' (Select) field in PageType 'CRM Task' +#: crm/fcrm/pagetype/crm_task/crm_task.json msgid "Low" msgstr "低" @@ -3542,8 +3542,8 @@ msgstr "经理" msgid "Mandatory field error: {0}" msgstr "" -#. Option for the 'Telephony Medium' (Select) field in DocType 'CRM Call Log' -#: crm/fcrm/doctype/crm_call_log/crm_call_log.json +#. Option for the 'Telephony Medium' (Select) field in PageType 'CRM Call Log' +#: crm/fcrm/pagetype/crm_call_log/crm_call_log.json msgid "Manual" msgstr "手动" @@ -3562,25 +3562,25 @@ msgstr "主数据" msgid "May 1, 2025" msgstr "" -#. Label of the medium (Data) field in DocType 'CRM Call Log' -#. Option for the 'Priority' (Select) field in DocType 'CRM Task' -#: crm/fcrm/doctype/crm_call_log/crm_call_log.json -#: crm/fcrm/doctype/crm_task/crm_task.json +#. Label of the medium (Data) field in PageType 'CRM Call Log' +#. Option for the 'Priority' (Select) field in PageType 'CRM Task' +#: crm/fcrm/pagetype/crm_call_log/crm_call_log.json +#: crm/fcrm/pagetype/crm_task/crm_task.json msgid "Medium" msgstr "媒介" -#. Option for the 'Type' (Select) field in DocType 'CRM Notification' -#: crm/fcrm/doctype/crm_notification/crm_notification.json +#. Option for the 'Type' (Select) field in PageType 'CRM Notification' +#: crm/fcrm/pagetype/crm_notification/crm_notification.json msgid "Mention" msgstr "@提及" -#. Label of the message (HTML Editor) field in DocType 'CRM Notification' -#: crm/fcrm/doctype/crm_notification/crm_notification.json +#. Label of the message (HTML Editor) field in PageType 'CRM Notification' +#: crm/fcrm/pagetype/crm_notification/crm_notification.json msgid "Message" msgstr "消息" -#. Label of the middle_name (Data) field in DocType 'CRM Lead' -#: crm/fcrm/doctype/crm_lead/crm_lead.json +#. Label of the middle_name (Data) field in PageType 'CRM Lead' +#: crm/fcrm/pagetype/crm_lead/crm_lead.json msgid "Middle Name" msgstr "中间名" @@ -3588,10 +3588,10 @@ msgstr "中间名" msgid "Minimize" msgstr "" -#. Label of the mobile_no (Data) field in DocType 'CRM Contacts' -#. Label of the mobile_no (Data) field in DocType 'CRM Lead' -#: crm/fcrm/doctype/crm_contacts/crm_contacts.json -#: crm/fcrm/doctype/crm_lead/crm_lead.json +#. Label of the mobile_no (Data) field in PageType 'CRM Contacts' +#. Label of the mobile_no (Data) field in PageType 'CRM Lead' +#: crm/fcrm/pagetype/crm_contacts/crm_contacts.json +#: crm/fcrm/pagetype/crm_lead/crm_lead.json msgid "Mobile No" msgstr "手机号码" @@ -3600,8 +3600,8 @@ msgstr "手机号码" msgid "Mobile No should be a number" msgstr "手机号码应为数字" -#. Label of the mobile_no (Data) field in DocType 'CRM Telephony Agent' -#: crm/fcrm/doctype/crm_telephony_agent/crm_telephony_agent.json +#. Label of the mobile_no (Data) field in PageType 'CRM Telephony Agent' +#: crm/fcrm/pagetype/crm_telephony_agent/crm_telephony_agent.json msgid "Mobile No." msgstr "手机号" @@ -3623,10 +3623,10 @@ msgstr "" msgid "Mobile no" msgstr "手机号" -#. Option for the 'Weekly Off' (Select) field in DocType 'CRM Holiday List' -#. Option for the 'Workday' (Select) field in DocType 'CRM Service Day' -#: crm/fcrm/doctype/crm_holiday_list/crm_holiday_list.json -#: crm/fcrm/doctype/crm_service_day/crm_service_day.json +#. Option for the 'Weekly Off' (Select) field in PageType 'CRM Holiday List' +#. Option for the 'Workday' (Select) field in PageType 'CRM Service Day' +#: crm/fcrm/pagetype/crm_holiday_list/crm_holiday_list.json +#: crm/fcrm/pagetype/crm_service_day/crm_service_day.json msgid "Monday" msgstr "周一" @@ -3658,12 +3658,12 @@ msgstr "返回上一标签页" msgid "My Open Deals" msgstr "我负责的开放商机" -#. Label of the title (Data) field in DocType 'CRM Dashboard' -#. Label of the name1 (Data) field in DocType 'CRM Dropdown Item' -#. Label of the brand_name (Data) field in DocType 'FCRM Settings' -#: crm/fcrm/doctype/crm_dashboard/crm_dashboard.json -#: crm/fcrm/doctype/crm_dropdown_item/crm_dropdown_item.json -#: crm/fcrm/doctype/fcrm_settings/fcrm_settings.json +#. Label of the title (Data) field in PageType 'CRM Dashboard' +#. Label of the name1 (Data) field in PageType 'CRM Dropdown Item' +#. Label of the brand_name (Data) field in PageType 'FCRM Settings' +#: crm/fcrm/pagetype/crm_dashboard/crm_dashboard.json +#: crm/fcrm/pagetype/crm_dropdown_item/crm_dropdown_item.json +#: crm/fcrm/pagetype/fcrm_settings/fcrm_settings.json #: frontend/src/components/Settings/AssignmentRules/AssignmentRuleView.vue:51 #: frontend/src/components/Settings/AssignmentRules/AssignmentRuleView.vue:52 #: frontend/src/components/Settings/EmailTemplate/EditEmailTemplate.vue:39 @@ -3680,10 +3680,10 @@ msgstr "名称" msgid "Name is required" msgstr "" -#. Label of the naming_series (Select) field in DocType 'CRM Deal' -#. Label of the naming_series (Select) field in DocType 'CRM Product' -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_product/crm_product.json +#. Label of the naming_series (Select) field in PageType 'CRM Deal' +#. Label of the naming_series (Select) field in PageType 'CRM Product' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_product/crm_product.json msgid "Naming Series" msgstr "命名规则" @@ -3691,15 +3691,15 @@ msgstr "命名规则" msgid "Nested conditions" msgstr "" -#. Label of the net_amount (Currency) field in DocType 'CRM Products' -#: crm/fcrm/doctype/crm_products/crm_products.json +#. Label of the net_amount (Currency) field in PageType 'CRM Products' +#: crm/fcrm/pagetype/crm_products/crm_products.json msgid "Net Amount" msgstr "净额" -#. Label of the net_total (Currency) field in DocType 'CRM Deal' -#. Label of the net_total (Currency) field in DocType 'CRM Lead' -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_lead/crm_lead.json +#. Label of the net_total (Currency) field in PageType 'CRM Deal' +#. Label of the net_total (Currency) field in PageType 'CRM Lead' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_lead/crm_lead.json msgid "Net Total" msgstr "净总计" @@ -3814,8 +3814,8 @@ msgstr "下月" msgid "Next Quarter" msgstr "下季度" -#. Label of the next_step (Data) field in DocType 'CRM Deal' -#: crm/fcrm/doctype/crm_deal/crm_deal.json +#. Label of the next_step (Data) field in PageType 'CRM Deal' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json msgid "Next Step" msgstr "下一步" @@ -3831,8 +3831,8 @@ msgstr "明年" msgid "No" msgstr "否" -#. Option for the 'Status' (Select) field in DocType 'CRM Call Log' -#: crm/fcrm/doctype/crm_call_log/crm_call_log.json +#. Option for the 'Status' (Select) field in PageType 'CRM Call Log' +#: crm/fcrm/pagetype/crm_call_log/crm_call_log.json msgid "No Answer" msgstr "无应答" @@ -3930,12 +3930,12 @@ msgstr "无可用{0}" msgid "No {0} Found" msgstr "未找到{0}" -#. Label of the no_of_employees (Select) field in DocType 'CRM Deal' -#. Label of the no_of_employees (Select) field in DocType 'CRM Lead' -#. Label of the no_of_employees (Select) field in DocType 'CRM Organization' -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_lead/crm_lead.json -#: crm/fcrm/doctype/crm_organization/crm_organization.json +#. Label of the no_of_employees (Select) field in PageType 'CRM Deal' +#. Label of the no_of_employees (Select) field in PageType 'CRM Lead' +#. Label of the no_of_employees (Select) field in PageType 'CRM Organization' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_lead/crm_lead.json +#: crm/fcrm/pagetype/crm_organization/crm_organization.json msgid "No. of Employees" msgstr "员工数量" @@ -3981,24 +3981,24 @@ msgstr "不包含" msgid "Not Saved" msgstr "未保存" -#: crm/fcrm/doctype/crm_deal/crm_deal.py:272 +#: crm/fcrm/pagetype/crm_deal/crm_deal.py:272 msgid "Not allowed to add contact to Deal" msgstr "无权向商机添加联系人" -#: crm/fcrm/doctype/crm_lead/crm_lead.py:408 +#: crm/fcrm/pagetype/crm_lead/crm_lead.py:408 msgid "Not allowed to convert Lead to Deal" msgstr "无权将线索转为商机" -#: crm/fcrm/doctype/crm_deal/crm_deal.py:283 +#: crm/fcrm/pagetype/crm_deal/crm_deal.py:283 msgid "Not allowed to remove contact from Deal" msgstr "无权从商机移除联系人" -#: crm/fcrm/doctype/crm_deal/crm_deal.py:294 +#: crm/fcrm/pagetype/crm_deal/crm_deal.py:294 msgid "Not allowed to set primary contact for Deal" msgstr "无权设置商机主要联系人" -#. Label of the note (Link) field in DocType 'CRM Call Log' -#: crm/fcrm/doctype/crm_call_log/crm_call_log.json +#. Label of the note (Link) field in PageType 'CRM Call Log' +#: crm/fcrm/pagetype/crm_call_log/crm_call_log.json #: frontend/src/components/Layouts/AppSidebar.vue:554 msgid "Note" msgstr "备注" @@ -4017,21 +4017,21 @@ msgstr "备注视图" msgid "Notification" msgstr "通知" -#. Label of the notification_text (Text) field in DocType 'CRM Notification' -#: crm/fcrm/doctype/crm_notification/crm_notification.json +#. Label of the notification_text (Text) field in PageType 'CRM Notification' +#: crm/fcrm/pagetype/crm_notification/crm_notification.json msgid "Notification Text" msgstr "通知内容" -#. Label of the notification_type_doc (Dynamic Link) field in DocType 'CRM +#. Label of the notification_type_pg (Dynamic Link) field in PageType 'CRM #. Notification' -#: crm/fcrm/doctype/crm_notification/crm_notification.json -msgid "Notification Type Doc" +#: crm/fcrm/pagetype/crm_notification/crm_notification.json +msgid "Notification Type Pg" msgstr "通知类型文档" -#. Label of the notification_type_doctype (Link) field in DocType 'CRM +#. Label of the notification_type_pagetype (Link) field in PageType 'CRM #. Notification' -#: crm/fcrm/doctype/crm_notification/crm_notification.json -msgid "Notification Type Doctype" +#: crm/fcrm/pagetype/crm_notification/crm_notification.json +msgid "Notification Type Pagetype" msgstr "通知类型文档类型" #: frontend/src/components/Layouts/AppSidebar.vue:13 @@ -4041,8 +4041,8 @@ msgstr "通知类型文档类型" msgid "Notifications" msgstr "通知" -#. Label of the number (Data) field in DocType 'CRM Telephony Phone' -#: crm/fcrm/doctype/crm_telephony_phone/crm_telephony_phone.json +#. Label of the number (Data) field in PageType 'CRM Telephony Phone' +#: crm/fcrm/pagetype/crm_telephony_phone/crm_telephony_phone.json msgid "Number" msgstr "编号" @@ -4064,18 +4064,18 @@ msgstr "" msgid "Old Condition" msgstr "" -#. Label of the old_parent (Link) field in DocType 'CRM Territory' -#: crm/fcrm/doctype/crm_territory/crm_territory.json +#. Label of the old_parent (Link) field in PageType 'CRM Territory' +#: crm/fcrm/pagetype/crm_territory/crm_territory.json msgid "Old Parent" msgstr "原上级" -#. Option for the 'Type' (Select) field in DocType 'CRM Deal Status' -#: crm/fcrm/doctype/crm_deal_status/crm_deal_status.json +#. Option for the 'Type' (Select) field in PageType 'CRM Deal Status' +#: crm/fcrm/pagetype/crm_deal_status/crm_deal_status.json msgid "On Hold" msgstr "临时冻结" -#. Option for the 'Type' (Select) field in DocType 'CRM Deal Status' -#: crm/fcrm/doctype/crm_deal_status/crm_deal_status.json +#. Option for the 'Type' (Select) field in PageType 'CRM Deal Status' +#: crm/fcrm/pagetype/crm_deal_status/crm_deal_status.json msgid "Ongoing" msgstr "" @@ -4088,13 +4088,13 @@ msgstr "" msgid "Only image files are allowed" msgstr "" -#: crm/fcrm/doctype/crm_deal/crm_deal.py:60 -#: crm/fcrm/doctype/crm_telephony_agent/crm_telephony_agent.py:23 +#: crm/fcrm/pagetype/crm_deal/crm_deal.py:60 +#: crm/fcrm/pagetype/crm_telephony_agent/crm_telephony_agent.py:23 msgid "Only one {0} can be set as primary." msgstr "仅可设置一个主要{0}" -#. Option for the 'Type' (Select) field in DocType 'CRM Deal Status' -#: crm/fcrm/doctype/crm_deal_status/crm_deal_status.json +#. Option for the 'Type' (Select) field in PageType 'CRM Deal Status' +#: crm/fcrm/pagetype/crm_deal_status/crm_deal_status.json msgid "Open" msgstr "待处理" @@ -4108,13 +4108,13 @@ msgstr "开放商机" msgid "Open Lead" msgstr "开放线索" -#: crm/fcrm/doctype/crm_deal/crm_deal.js:6 -#: crm/fcrm/doctype/crm_lead/crm_lead.js:6 +#: crm/fcrm/pagetype/crm_deal/crm_deal.js:6 +#: crm/fcrm/pagetype/crm_lead/crm_lead.js:6 msgid "Open in Portal" msgstr "在门户中打开" -#. Label of the open_in_new_window (Check) field in DocType 'CRM Dropdown Item' -#: crm/fcrm/doctype/crm_dropdown_item/crm_dropdown_item.json +#. Label of the open_in_new_window (Check) field in PageType 'CRM Dropdown Item' +#: crm/fcrm/pagetype/crm_dropdown_item/crm_dropdown_item.json msgid "Open in new window" msgstr "新窗口打开" @@ -4136,17 +4136,17 @@ msgstr "选项" msgid "Or create leads manually" msgstr "" -#. Label of the order_by_tab (Tab Break) field in DocType 'CRM View Settings' -#. Label of the order_by (Code) field in DocType 'CRM View Settings' -#: crm/fcrm/doctype/crm_view_settings/crm_view_settings.json +#. Label of the order_by_tab (Tab Break) field in PageType 'CRM View Settings' +#. Label of the order_by (Code) field in PageType 'CRM View Settings' +#: crm/fcrm/pagetype/crm_view_settings/crm_view_settings.json msgid "Order By" msgstr "排序依据" -#. Label of the organization (Link) field in DocType 'CRM Deal' -#. Label of the organization_tab (Tab Break) field in DocType 'CRM Deal' -#. Label of the organization (Data) field in DocType 'CRM Lead' -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_lead/crm_lead.json +#. Label of the organization (Link) field in PageType 'CRM Deal' +#. Label of the organization_tab (Tab Break) field in PageType 'CRM Deal' +#. Label of the organization (Data) field in PageType 'CRM Lead' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_lead/crm_lead.json #: frontend/src/components/Layouts/AppSidebar.vue:553 #: frontend/src/components/Modals/ConvertToDealModal.vue:25 #: frontend/src/pages/Contact.vue:494 frontend/src/pages/MobileContact.vue:502 @@ -4158,22 +4158,22 @@ msgstr "排序依据" msgid "Organization" msgstr "组织" -#. Label of the organization_details_section (Section Break) field in DocType +#. Label of the organization_details_section (Section Break) field in PageType #. 'CRM Deal' -#: crm/fcrm/doctype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_deal/crm_deal.json msgid "Organization Details" msgstr "组织详情" -#. Label of the organization_logo (Attach Image) field in DocType 'CRM +#. Label of the organization_logo (Attach Image) field in PageType 'CRM #. Organization' -#: crm/fcrm/doctype/crm_organization/crm_organization.json +#: crm/fcrm/pagetype/crm_organization/crm_organization.json msgid "Organization Logo" msgstr "组织徽标" -#. Label of the organization_name (Data) field in DocType 'CRM Deal' -#. Label of the organization_name (Data) field in DocType 'CRM Organization' -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_organization/crm_organization.json +#. Label of the organization_name (Data) field in PageType 'CRM Deal' +#. Label of the organization_name (Data) field in PageType 'CRM Organization' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_organization/crm_organization.json msgid "Organization Name" msgstr "组织名称" @@ -4181,8 +4181,8 @@ msgstr "组织名称" msgid "Organization logo" msgstr "组织徽标" -#. Label of a shortcut in the Frappe CRM Workspace -#: crm/fcrm/workspace/frappe_crm/frappe_crm.json +#. Label of a shortcut in the Jingrow CRM Workspace +#: crm/fcrm/workspace/jingrow_crm/jingrow_crm.json #: frontend/src/pages/MobileOrganization.vue:205 #: frontend/src/pages/Organization.vue:234 msgid "Organizations" @@ -4196,8 +4196,8 @@ msgstr "" msgid "Other features" msgstr "" -#. Label of the organization_tab (Tab Break) field in DocType 'CRM Lead' -#: crm/fcrm/doctype/crm_lead/crm_lead.json +#. Label of the organization_tab (Tab Break) field in PageType 'CRM Lead' +#: crm/fcrm/pagetype/crm_lead/crm_lead.json msgid "Others" msgstr "其他" @@ -4205,13 +4205,13 @@ msgstr "其他" msgid "Outbound Call" msgstr "呼出通话" -#. Option for the 'Type' (Select) field in DocType 'CRM Call Log' -#: crm/fcrm/doctype/crm_call_log/crm_call_log.json +#. Option for the 'Type' (Select) field in PageType 'CRM Call Log' +#: crm/fcrm/pagetype/crm_call_log/crm_call_log.json msgid "Outgoing" msgstr "呼出" -#. Label of the log_owner (Link) field in DocType 'CRM Status Change Log' -#: crm/fcrm/doctype/crm_status_change_log/crm_status_change_log.json +#. Label of the log_owner (Link) field in PageType 'CRM Status Change Log' +#: crm/fcrm/pagetype/crm_status_change_log/crm_status_change_log.json msgid "Owner" msgstr "负责人" @@ -4219,8 +4219,8 @@ msgstr "负责人" msgid "Owner: {0}" msgstr "" -#. Label of the parent_crm_territory (Link) field in DocType 'CRM Territory' -#: crm/fcrm/doctype/crm_territory/crm_territory.json +#. Label of the parent_crm_territory (Link) field in PageType 'CRM Territory' +#: crm/fcrm/pagetype/crm_territory/crm_territory.json msgid "Parent CRM Territory" msgstr "上级CRM区域" @@ -4251,8 +4251,8 @@ msgstr "付款提醒" msgid "Payment Reminder from Frappé - (#{{ name }})" msgstr "Frappé付款提醒 - (#{{ name }})" -#. Option for the 'Status' (Select) field in DocType 'CRM Invitation' -#: crm/fcrm/doctype/crm_invitation/crm_invitation.json +#. Option for the 'Status' (Select) field in PageType 'CRM Invitation' +#: crm/fcrm/pagetype/crm_invitation/crm_invitation.json msgid "Pending" msgstr "待处理" @@ -4264,10 +4264,10 @@ msgstr "待处理邀请" msgid "Period" msgstr "期间" -#. Label of the person_section (Section Break) field in DocType 'CRM Deal' -#. Label of the person_tab (Tab Break) field in DocType 'CRM Lead' -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_lead/crm_lead.json +#. Label of the person_section (Section Break) field in PageType 'CRM Deal' +#. Label of the person_tab (Tab Break) field in PageType 'CRM Lead' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_lead/crm_lead.json msgid "Person" msgstr "个人" @@ -4275,19 +4275,19 @@ msgstr "个人" msgid "Personal Settings" msgstr "" -#. Label of the phone (Data) field in DocType 'CRM Contacts' -#. Label of the phone (Data) field in DocType 'CRM Lead' -#. Option for the 'Device' (Select) field in DocType 'CRM Telephony Agent' -#: crm/fcrm/doctype/crm_contacts/crm_contacts.json -#: crm/fcrm/doctype/crm_lead/crm_lead.json -#: crm/fcrm/doctype/crm_telephony_agent/crm_telephony_agent.json +#. Label of the phone (Data) field in PageType 'CRM Contacts' +#. Label of the phone (Data) field in PageType 'CRM Lead' +#. Option for the 'Device' (Select) field in PageType 'CRM Telephony Agent' +#: crm/fcrm/pagetype/crm_contacts/crm_contacts.json +#: crm/fcrm/pagetype/crm_lead/crm_lead.json +#: crm/fcrm/pagetype/crm_telephony_agent/crm_telephony_agent.json #: frontend/src/pages/MobileOrganization.vue:495 #: frontend/src/pages/Organization.vue:516 msgid "Phone" msgstr "电话" -#. Label of the phone_nos (Table) field in DocType 'CRM Telephony Agent' -#: crm/fcrm/doctype/crm_telephony_agent/crm_telephony_agent.json +#. Label of the phone_nos (Table) field in PageType 'CRM Telephony Agent' +#: crm/fcrm/pagetype/crm_telephony_agent/crm_telephony_agent.json msgid "Phone Numbers" msgstr "电话号码" @@ -4295,8 +4295,8 @@ msgstr "电话号码" msgid "Pin View" msgstr "固定视图" -#. Label of the pinned (Check) field in DocType 'CRM View Settings' -#: crm/fcrm/doctype/crm_view_settings/crm_view_settings.json +#. Label of the pinned (Check) field in PageType 'CRM View Settings' +#: crm/fcrm/pagetype/crm_view_settings/crm_view_settings.json msgid "Pinned" msgstr "已固定" @@ -4346,7 +4346,7 @@ msgstr "请选择现有联系人" msgid "Please select an existing organization" msgstr "请选择现有组织" -#: crm/fcrm/doctype/helpdesk_crm_settings/helpdesk_crm_settings.py:126 +#: crm/fcrm/pagetype/helpdesk_crm_settings/helpdesk_crm_settings.py:126 msgid "Please set Email Address" msgstr "请设置电子邮件地址" @@ -4354,18 +4354,18 @@ msgstr "请设置电子邮件地址" msgid "Please setup Exotel intergration" msgstr "请配置Exotel集成" -#: crm/fcrm/doctype/crm_deal/crm_deal.py:181 +#: crm/fcrm/pagetype/crm_deal/crm_deal.py:181 msgid "Please specify a reason for losing the deal." msgstr "" -#: crm/fcrm/doctype/crm_deal/crm_deal.py:183 +#: crm/fcrm/pagetype/crm_deal/crm_deal.py:183 msgid "Please specify the reason for losing the deal." msgstr "" -#. Label of the position (Int) field in DocType 'CRM Deal Status' -#. Label of the position (Int) field in DocType 'CRM Lead Status' -#: crm/fcrm/doctype/crm_deal_status/crm_deal_status.json -#: crm/fcrm/doctype/crm_lead_status/crm_lead_status.json +#. Label of the position (Int) field in PageType 'CRM Deal Status' +#. Label of the position (Int) field in PageType 'CRM Lead Status' +#: crm/fcrm/pagetype/crm_deal_status/crm_deal_status.json +#: crm/fcrm/pagetype/crm_lead_status/crm_lead_status.json msgid "Position" msgstr "位置" @@ -4373,18 +4373,18 @@ msgstr "位置" msgid "Primary" msgstr "主要" -#. Label of the email (Data) field in DocType 'CRM Deal' -#: crm/fcrm/doctype/crm_deal/crm_deal.json +#. Label of the email (Data) field in PageType 'CRM Deal' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json msgid "Primary Email" msgstr "主要邮箱" -#. Label of the mobile_no (Data) field in DocType 'CRM Deal' -#: crm/fcrm/doctype/crm_deal/crm_deal.json +#. Label of the mobile_no (Data) field in PageType 'CRM Deal' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json msgid "Primary Mobile No" msgstr "" -#. Label of the phone (Data) field in DocType 'CRM Deal' -#: crm/fcrm/doctype/crm_deal/crm_deal.json +#. Label of the phone (Data) field in PageType 'CRM Deal' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json msgid "Primary Phone" msgstr "主要电话" @@ -4392,57 +4392,57 @@ msgstr "主要电话" msgid "Primary contact set" msgstr "已设置主要联系人" -#. Label of the priorities (Table) field in DocType 'CRM Service Level +#. Label of the priorities (Table) field in PageType 'CRM Service Level #. Agreement' -#: crm/fcrm/doctype/crm_service_level_agreement/crm_service_level_agreement.json +#: crm/fcrm/pagetype/crm_service_level_agreement/crm_service_level_agreement.json msgid "Priorities" msgstr "优先级" -#. Label of the priority (Link) field in DocType 'CRM Service Level Priority' -#. Label of the priority (Select) field in DocType 'CRM Task' -#: crm/fcrm/doctype/crm_service_level_priority/crm_service_level_priority.json -#: crm/fcrm/doctype/crm_task/crm_task.json +#. Label of the priority (Link) field in PageType 'CRM Service Level Priority' +#. Label of the priority (Select) field in PageType 'CRM Task' +#: crm/fcrm/pagetype/crm_service_level_priority/crm_service_level_priority.json +#: crm/fcrm/pagetype/crm_task/crm_task.json #: frontend/src/components/Settings/AssignmentRules/AssignmentRuleView.vue:64 #: frontend/src/components/Settings/AssignmentRules/AssignmentRulesList.vue:20 msgid "Priority" msgstr "优先级" -#. Label of the private (Check) field in DocType 'CRM Dashboard' -#: crm/fcrm/doctype/crm_dashboard/crm_dashboard.json +#. Label of the private (Check) field in PageType 'CRM Dashboard' +#: crm/fcrm/pagetype/crm_dashboard/crm_dashboard.json #: frontend/src/components/FilesUploader/FilesUploaderArea.vue:89 msgid "Private" msgstr "私有" -#. Label of the probability (Percent) field in DocType 'CRM Deal' -#. Label of the probability (Percent) field in DocType 'CRM Deal Status' -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_deal_status/crm_deal_status.json +#. Label of the probability (Percent) field in PageType 'CRM Deal' +#. Label of the probability (Percent) field in PageType 'CRM Deal Status' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_deal_status/crm_deal_status.json msgid "Probability" msgstr "成交概率" -#. Label of the product_code (Link) field in DocType 'CRM Products' -#: crm/fcrm/doctype/crm_products/crm_products.json +#. Label of the product_code (Link) field in PageType 'CRM Products' +#: crm/fcrm/pagetype/crm_products/crm_products.json msgid "Product" msgstr "产品" -#. Label of the product_code (Data) field in DocType 'CRM Product' -#: crm/fcrm/doctype/crm_product/crm_product.json +#. Label of the product_code (Data) field in PageType 'CRM Product' +#: crm/fcrm/pagetype/crm_product/crm_product.json msgid "Product Code" msgstr "" -#. Label of the product_name (Data) field in DocType 'CRM Product' -#. Label of the product_name (Data) field in DocType 'CRM Products' -#: crm/fcrm/doctype/crm_product/crm_product.json -#: crm/fcrm/doctype/crm_products/crm_products.json +#. Label of the product_name (Data) field in PageType 'CRM Product' +#. Label of the product_name (Data) field in PageType 'CRM Products' +#: crm/fcrm/pagetype/crm_product/crm_product.json +#: crm/fcrm/pagetype/crm_products/crm_products.json msgid "Product Name" msgstr "" -#. Label of the products_tab (Tab Break) field in DocType 'CRM Deal' -#. Label of the products (Table) field in DocType 'CRM Deal' -#. Label of the products_tab (Tab Break) field in DocType 'CRM Lead' -#. Label of the products (Table) field in DocType 'CRM Lead' -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_lead/crm_lead.json +#. Label of the products_tab (Tab Break) field in PageType 'CRM Deal' +#. Label of the products (Table) field in PageType 'CRM Deal' +#. Label of the products_tab (Tab Break) field in PageType 'CRM Lead' +#. Label of the products (Table) field in PageType 'CRM Lead' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_lead/crm_lead.json msgid "Products" msgstr "产品" @@ -4459,8 +4459,8 @@ msgstr "个人资料更新成功" msgid "Projected vs actual revenue based on deal probability" msgstr "" -#. Label of the public (Check) field in DocType 'CRM View Settings' -#: crm/fcrm/doctype/crm_view_settings/crm_view_settings.json +#. Label of the public (Check) field in PageType 'CRM View Settings' +#: crm/fcrm/pagetype/crm_view_settings/crm_view_settings.json msgid "Public" msgstr "公开" @@ -4472,23 +4472,23 @@ msgstr "公开视图" msgid "Public view" msgstr "" -#. Label of the qty (Float) field in DocType 'CRM Products' -#: crm/fcrm/doctype/crm_products/crm_products.json +#. Label of the qty (Float) field in PageType 'CRM Products' +#: crm/fcrm/pagetype/crm_products/crm_products.json msgid "Quantity" msgstr "数量" -#. Option for the 'Status' (Select) field in DocType 'CRM Call Log' -#: crm/fcrm/doctype/crm_call_log/crm_call_log.json +#. Option for the 'Status' (Select) field in PageType 'CRM Call Log' +#: crm/fcrm/pagetype/crm_call_log/crm_call_log.json msgid "Queued" msgstr "已排队" -#. Option for the 'Type' (Select) field in DocType 'CRM Fields Layout' -#: crm/fcrm/doctype/crm_fields_layout/crm_fields_layout.json +#. Option for the 'Type' (Select) field in PageType 'CRM Fields Layout' +#: crm/fcrm/pagetype/crm_fields_layout/crm_fields_layout.json msgid "Quick Entry" msgstr "快速录入" -#. Option for the 'Type' (Select) field in DocType 'CRM Global Settings' -#: crm/fcrm/doctype/crm_global_settings/crm_global_settings.json +#. Option for the 'Type' (Select) field in PageType 'CRM Global Settings' +#: crm/fcrm/pagetype/crm_global_settings/crm_global_settings.json msgid "Quick Filters" msgstr "快速筛选" @@ -4500,13 +4500,13 @@ msgstr "快速筛选更新成功" msgid "Quick entry layout" msgstr "" -#. Label of the rate (Currency) field in DocType 'CRM Products' -#: crm/fcrm/doctype/crm_products/crm_products.json +#. Label of the rate (Currency) field in PageType 'CRM Products' +#: crm/fcrm/pagetype/crm_products/crm_products.json msgid "Rate" msgstr "单价" -#. Label of the read (Check) field in DocType 'CRM Notification' -#: crm/fcrm/doctype/crm_notification/crm_notification.json +#. Label of the read (Check) field in PageType 'CRM Notification' +#: crm/fcrm/pagetype/crm_notification/crm_notification.json msgid "Read" msgstr "已读" @@ -4514,48 +4514,48 @@ msgstr "已读" msgid "Reason" msgstr "原因" -#. Label of the record_calls (Check) field in DocType 'CRM Twilio Settings' -#: crm/fcrm/doctype/crm_twilio_settings/crm_twilio_settings.json +#. Label of the record_calls (Check) field in PageType 'CRM Twilio Settings' +#: crm/fcrm/pagetype/crm_twilio_settings/crm_twilio_settings.json msgid "Record Calls" msgstr "录制通话" -#. Label of the record_call (Check) field in DocType 'CRM Exotel Settings' -#: crm/fcrm/doctype/crm_exotel_settings/crm_exotel_settings.json +#. Label of the record_call (Check) field in PageType 'CRM Exotel Settings' +#: crm/fcrm/pagetype/crm_exotel_settings/crm_exotel_settings.json msgid "Record Outgoing Calls" msgstr "录制呼出通话" -#. Label of the recording_url (Data) field in DocType 'CRM Call Log' -#: crm/fcrm/doctype/crm_call_log/crm_call_log.json +#. Label of the recording_url (Data) field in PageType 'CRM Call Log' +#: crm/fcrm/pagetype/crm_call_log/crm_call_log.json msgid "Recording URL" msgstr "录音URL" -#. Label of the reference_name (Dynamic Link) field in DocType 'CRM +#. Label of the reference_name (Dynamic Link) field in PageType 'CRM #. Notification' -#. Label of the reference_docname (Dynamic Link) field in DocType 'CRM Task' -#. Label of the reference_docname (Dynamic Link) field in DocType 'FCRM Note' -#: crm/fcrm/doctype/crm_notification/crm_notification.json -#: crm/fcrm/doctype/crm_task/crm_task.json -#: crm/fcrm/doctype/fcrm_note/fcrm_note.json -msgid "Reference Doc" +#. Label of the reference_docname (Dynamic Link) field in PageType 'CRM Task' +#. Label of the reference_docname (Dynamic Link) field in PageType 'FCRM Note' +#: crm/fcrm/pagetype/crm_notification/crm_notification.json +#: crm/fcrm/pagetype/crm_task/crm_task.json +#: crm/fcrm/pagetype/fcrm_note/fcrm_note.json +msgid "Reference Pg" msgstr "关联文档" -#. Label of the reference_doctype (Link) field in DocType 'CRM Notification' -#: crm/fcrm/doctype/crm_notification/crm_notification.json -msgid "Reference Doctype" +#. Label of the reference_pagetype (Link) field in PageType 'CRM Notification' +#: crm/fcrm/pagetype/crm_notification/crm_notification.json +msgid "Reference Pagetype" msgstr "关联文档类型" -#. Label of the reference_doctype (Link) field in DocType 'CRM Call Log' -#. Label of the reference_doctype (Link) field in DocType 'CRM Task' -#. Label of the reference_doctype (Link) field in DocType 'FCRM Note' -#: crm/fcrm/doctype/crm_call_log/crm_call_log.json -#: crm/fcrm/doctype/crm_task/crm_task.json -#: crm/fcrm/doctype/fcrm_note/fcrm_note.json +#. Label of the reference_pagetype (Link) field in PageType 'CRM Call Log' +#. Label of the reference_pagetype (Link) field in PageType 'CRM Task' +#. Label of the reference_pagetype (Link) field in PageType 'FCRM Note' +#: crm/fcrm/pagetype/crm_call_log/crm_call_log.json +#: crm/fcrm/pagetype/crm_task/crm_task.json +#: crm/fcrm/pagetype/fcrm_note/fcrm_note.json msgid "Reference Document Type" msgstr "关联文档类型" -#. Label of the reference_docname (Dynamic Link) field in DocType 'CRM Call +#. Label of the reference_docname (Dynamic Link) field in PageType 'CRM Call #. Log' -#: crm/fcrm/doctype/crm_call_log/crm_call_log.json +#: crm/fcrm/pagetype/crm_call_log/crm_call_log.json msgid "Reference Name" msgstr "关联名称" @@ -4625,8 +4625,8 @@ msgstr "回复全部" msgid "Report an Issue" msgstr "提交一个问题" -#. Option for the 'Type' (Select) field in DocType 'CRM Fields Layout' -#: crm/fcrm/doctype/crm_fields_layout/crm_fields_layout.json +#. Option for the 'Type' (Select) field in PageType 'CRM Fields Layout' +#: crm/fcrm/pagetype/crm_fields_layout/crm_fields_layout.json msgid "Required Fields" msgstr "必填字段" @@ -4642,7 +4642,7 @@ msgstr "重置" msgid "Reset Changes" msgstr "撤销修改" -#: crm/fcrm/doctype/erpnext_crm_settings/erpnext_crm_settings.js:7 +#: crm/fcrm/pagetype/erpnext_crm_settings/erpnext_crm_settings.js:7 msgid "Reset ERPNext Form Script" msgstr "重置ERPNext表单脚本" @@ -4654,35 +4654,35 @@ msgstr "恢复默认" msgid "Reset to default" msgstr "恢复默认设置" -#. Label of the response_by (Datetime) field in DocType 'CRM Deal' -#. Label of the response_by (Datetime) field in DocType 'CRM Lead' -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_lead/crm_lead.json +#. Label of the response_by (Datetime) field in PageType 'CRM Deal' +#. Label of the response_by (Datetime) field in PageType 'CRM Lead' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_lead/crm_lead.json msgid "Response By" msgstr "响应人" -#. Label of the response_details_section (Section Break) field in DocType 'CRM +#. Label of the response_details_section (Section Break) field in PageType 'CRM #. Deal' -#. Label of the response_details_section (Section Break) field in DocType 'CRM +#. Label of the response_details_section (Section Break) field in PageType 'CRM #. Lead' -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_lead/crm_lead.json +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_lead/crm_lead.json msgid "Response Details" msgstr "响应详情" -#. Label of the section_break_ufaf (Section Break) field in DocType 'CRM +#. Label of the section_break_ufaf (Section Break) field in PageType 'CRM #. Service Level Agreement' -#: crm/fcrm/doctype/crm_service_level_agreement/crm_service_level_agreement.json +#: crm/fcrm/pagetype/crm_service_level_agreement/crm_service_level_agreement.json msgid "Response and Follow Up" msgstr "响应与跟进" -#: crm/fcrm/doctype/fcrm_settings/fcrm_settings.js:14 +#: crm/fcrm/pagetype/fcrm_settings/fcrm_settings.js:14 msgid "Restore" msgstr "恢复" -#. Label of the restore_defaults (Button) field in DocType 'FCRM Settings' -#: crm/fcrm/doctype/fcrm_settings/fcrm_settings.js:13 -#: crm/fcrm/doctype/fcrm_settings/fcrm_settings.json +#. Label of the restore_defaults (Button) field in PageType 'FCRM Settings' +#: crm/fcrm/pagetype/fcrm_settings/fcrm_settings.js:13 +#: crm/fcrm/pagetype/fcrm_settings/fcrm_settings.json msgid "Restore Defaults" msgstr "恢复默认值" @@ -4699,13 +4699,13 @@ msgstr "收入" msgid "Rich Text" msgstr "富文本" -#. Label of the rgt (Int) field in DocType 'CRM Territory' -#: crm/fcrm/doctype/crm_territory/crm_territory.json +#. Label of the rgt (Int) field in PageType 'CRM Territory' +#: crm/fcrm/pagetype/crm_territory/crm_territory.json msgid "Right" msgstr "右侧" -#. Option for the 'Status' (Select) field in DocType 'CRM Call Log' -#: crm/fcrm/doctype/crm_call_log/crm_call_log.json +#. Option for the 'Status' (Select) field in PageType 'CRM Call Log' +#: crm/fcrm/pagetype/crm_call_log/crm_call_log.json msgid "Ringing" msgstr "响铃中" @@ -4714,55 +4714,55 @@ msgstr "响铃中" msgid "Ringing..." msgstr "正在响铃..." -#. Label of the role (Select) field in DocType 'CRM Invitation' -#: crm/fcrm/doctype/crm_invitation/crm_invitation.json +#. Label of the role (Select) field in PageType 'CRM Invitation' +#: crm/fcrm/pagetype/crm_invitation/crm_invitation.json #: frontend/src/components/Modals/AddExistingUserModal.vue:46 msgid "Role" msgstr "角色" -#. Option for the 'Type' (Select) field in DocType 'CRM Dropdown Item' -#. Label of the route (Data) field in DocType 'CRM Dropdown Item' -#: crm/fcrm/doctype/crm_dropdown_item/crm_dropdown_item.json +#. Option for the 'Type' (Select) field in PageType 'CRM Dropdown Item' +#. Label of the route (Data) field in PageType 'CRM Dropdown Item' +#: crm/fcrm/pagetype/crm_dropdown_item/crm_dropdown_item.json msgid "Route" msgstr "路由" -#. Label of the route_name (Data) field in DocType 'CRM View Settings' -#: crm/fcrm/doctype/crm_view_settings/crm_view_settings.json +#. Label of the route_name (Data) field in PageType 'CRM View Settings' +#: crm/fcrm/pagetype/crm_view_settings/crm_view_settings.json msgid "Route Name" msgstr "路由名称" -#. Label of the rows (Code) field in DocType 'CRM View Settings' -#: crm/fcrm/doctype/crm_view_settings/crm_view_settings.json +#. Label of the rows (Code) field in PageType 'CRM View Settings' +#: crm/fcrm/pagetype/crm_view_settings/crm_view_settings.json msgid "Rows" msgstr "行" -#. Label of the sla_tab (Tab Break) field in DocType 'CRM Deal' -#. Label of the sla (Link) field in DocType 'CRM Deal' -#. Label of the sla_tab (Tab Break) field in DocType 'CRM Lead' -#. Label of the sla (Link) field in DocType 'CRM Lead' -#. Label of a shortcut in the Frappe CRM Workspace -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_lead/crm_lead.json -#: crm/fcrm/workspace/frappe_crm/frappe_crm.json +#. Label of the sla_tab (Tab Break) field in PageType 'CRM Deal' +#. Label of the sla (Link) field in PageType 'CRM Deal' +#. Label of the sla_tab (Tab Break) field in PageType 'CRM Lead' +#. Label of the sla (Link) field in PageType 'CRM Lead' +#. Label of a shortcut in the Jingrow CRM Workspace +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_lead/crm_lead.json +#: crm/fcrm/workspace/jingrow_crm/jingrow_crm.json msgid "SLA" msgstr "服务级别协议" -#. Label of the sla_creation (Datetime) field in DocType 'CRM Deal' -#. Label of the sla_creation (Datetime) field in DocType 'CRM Lead' -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_lead/crm_lead.json +#. Label of the sla_creation (Datetime) field in PageType 'CRM Deal' +#. Label of the sla_creation (Datetime) field in PageType 'CRM Lead' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_lead/crm_lead.json msgid "SLA Creation" msgstr "SLA创建" -#. Label of the sla_name (Data) field in DocType 'CRM Service Level Agreement' -#: crm/fcrm/doctype/crm_service_level_agreement/crm_service_level_agreement.json +#. Label of the sla_name (Data) field in PageType 'CRM Service Level Agreement' +#: crm/fcrm/pagetype/crm_service_level_agreement/crm_service_level_agreement.json msgid "SLA Name" msgstr "SLA名称" -#. Label of the sla_status (Select) field in DocType 'CRM Deal' -#. Label of the sla_status (Select) field in DocType 'CRM Lead' -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_lead/crm_lead.json +#. Label of the sla_status (Select) field in PageType 'CRM Deal' +#. Label of the sla_status (Select) field in PageType 'CRM Lead' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_lead/crm_lead.json msgid "SLA Status" msgstr "SLA状态" @@ -4771,57 +4771,57 @@ msgid "SUBJECT" msgstr "主题" #. Name of a role -#. Option for the 'Role' (Select) field in DocType 'CRM Invitation' -#: crm/fcrm/doctype/crm_call_log/crm_call_log.json -#: crm/fcrm/doctype/crm_communication_status/crm_communication_status.json -#: crm/fcrm/doctype/crm_dashboard/crm_dashboard.json -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_deal_status/crm_deal_status.json -#: crm/fcrm/doctype/crm_exotel_settings/crm_exotel_settings.json -#: crm/fcrm/doctype/crm_form_script/crm_form_script.json -#: crm/fcrm/doctype/crm_global_settings/crm_global_settings.json -#: crm/fcrm/doctype/crm_holiday_list/crm_holiday_list.json -#: crm/fcrm/doctype/crm_industry/crm_industry.json -#: crm/fcrm/doctype/crm_invitation/crm_invitation.json -#: crm/fcrm/doctype/crm_lead/crm_lead.json -#: crm/fcrm/doctype/crm_lead_source/crm_lead_source.json -#: crm/fcrm/doctype/crm_lead_status/crm_lead_status.json -#: crm/fcrm/doctype/crm_lost_reason/crm_lost_reason.json -#: crm/fcrm/doctype/crm_notification/crm_notification.json -#: crm/fcrm/doctype/crm_organization/crm_organization.json -#: crm/fcrm/doctype/crm_service_level_agreement/crm_service_level_agreement.json -#: crm/fcrm/doctype/crm_task/crm_task.json -#: crm/fcrm/doctype/crm_territory/crm_territory.json -#: crm/fcrm/doctype/crm_twilio_settings/crm_twilio_settings.json -#: crm/fcrm/doctype/crm_view_settings/crm_view_settings.json -#: crm/fcrm/doctype/erpnext_crm_settings/erpnext_crm_settings.json -#: crm/fcrm/doctype/fcrm_note/fcrm_note.json -#: crm/fcrm/doctype/fcrm_settings/fcrm_settings.json -#: crm/fcrm/doctype/helpdesk_crm_settings/helpdesk_crm_settings.json +#. Option for the 'Role' (Select) field in PageType 'CRM Invitation' +#: crm/fcrm/pagetype/crm_call_log/crm_call_log.json +#: crm/fcrm/pagetype/crm_communication_status/crm_communication_status.json +#: crm/fcrm/pagetype/crm_dashboard/crm_dashboard.json +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_deal_status/crm_deal_status.json +#: crm/fcrm/pagetype/crm_exotel_settings/crm_exotel_settings.json +#: crm/fcrm/pagetype/crm_form_script/crm_form_script.json +#: crm/fcrm/pagetype/crm_global_settings/crm_global_settings.json +#: crm/fcrm/pagetype/crm_holiday_list/crm_holiday_list.json +#: crm/fcrm/pagetype/crm_industry/crm_industry.json +#: crm/fcrm/pagetype/crm_invitation/crm_invitation.json +#: crm/fcrm/pagetype/crm_lead/crm_lead.json +#: crm/fcrm/pagetype/crm_lead_source/crm_lead_source.json +#: crm/fcrm/pagetype/crm_lead_status/crm_lead_status.json +#: crm/fcrm/pagetype/crm_lost_reason/crm_lost_reason.json +#: crm/fcrm/pagetype/crm_notification/crm_notification.json +#: crm/fcrm/pagetype/crm_organization/crm_organization.json +#: crm/fcrm/pagetype/crm_service_level_agreement/crm_service_level_agreement.json +#: crm/fcrm/pagetype/crm_task/crm_task.json +#: crm/fcrm/pagetype/crm_territory/crm_territory.json +#: crm/fcrm/pagetype/crm_twilio_settings/crm_twilio_settings.json +#: crm/fcrm/pagetype/crm_view_settings/crm_view_settings.json +#: crm/fcrm/pagetype/erpnext_crm_settings/erpnext_crm_settings.json +#: crm/fcrm/pagetype/fcrm_note/fcrm_note.json +#: crm/fcrm/pagetype/fcrm_settings/fcrm_settings.json +#: crm/fcrm/pagetype/helpdesk_crm_settings/helpdesk_crm_settings.json msgid "Sales Manager" msgstr "销售经理" #. Name of a role -#. Option for the 'Role' (Select) field in DocType 'CRM Invitation' -#: crm/fcrm/doctype/crm_call_log/crm_call_log.json -#: crm/fcrm/doctype/crm_communication_status/crm_communication_status.json -#: crm/fcrm/doctype/crm_dashboard/crm_dashboard.json -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_deal_status/crm_deal_status.json -#: crm/fcrm/doctype/crm_global_settings/crm_global_settings.json -#: crm/fcrm/doctype/crm_holiday_list/crm_holiday_list.json -#: crm/fcrm/doctype/crm_industry/crm_industry.json -#: crm/fcrm/doctype/crm_invitation/crm_invitation.json -#: crm/fcrm/doctype/crm_lead/crm_lead.json -#: crm/fcrm/doctype/crm_lead_source/crm_lead_source.json -#: crm/fcrm/doctype/crm_lead_status/crm_lead_status.json -#: crm/fcrm/doctype/crm_lost_reason/crm_lost_reason.json -#: crm/fcrm/doctype/crm_notification/crm_notification.json -#: crm/fcrm/doctype/crm_organization/crm_organization.json -#: crm/fcrm/doctype/crm_task/crm_task.json -#: crm/fcrm/doctype/crm_territory/crm_territory.json -#: crm/fcrm/doctype/crm_view_settings/crm_view_settings.json -#: crm/fcrm/doctype/fcrm_note/fcrm_note.json +#. Option for the 'Role' (Select) field in PageType 'CRM Invitation' +#: crm/fcrm/pagetype/crm_call_log/crm_call_log.json +#: crm/fcrm/pagetype/crm_communication_status/crm_communication_status.json +#: crm/fcrm/pagetype/crm_dashboard/crm_dashboard.json +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_deal_status/crm_deal_status.json +#: crm/fcrm/pagetype/crm_global_settings/crm_global_settings.json +#: crm/fcrm/pagetype/crm_holiday_list/crm_holiday_list.json +#: crm/fcrm/pagetype/crm_industry/crm_industry.json +#: crm/fcrm/pagetype/crm_invitation/crm_invitation.json +#: crm/fcrm/pagetype/crm_lead/crm_lead.json +#: crm/fcrm/pagetype/crm_lead_source/crm_lead_source.json +#: crm/fcrm/pagetype/crm_lead_status/crm_lead_status.json +#: crm/fcrm/pagetype/crm_lost_reason/crm_lost_reason.json +#: crm/fcrm/pagetype/crm_notification/crm_notification.json +#: crm/fcrm/pagetype/crm_organization/crm_organization.json +#: crm/fcrm/pagetype/crm_task/crm_task.json +#: crm/fcrm/pagetype/crm_territory/crm_territory.json +#: crm/fcrm/pagetype/crm_view_settings/crm_view_settings.json +#: crm/fcrm/pagetype/fcrm_note/fcrm_note.json #: frontend/src/components/Modals/AddExistingUserModal.vue:92 #: frontend/src/components/Settings/InviteUserPage.vue:156 #: frontend/src/components/Settings/InviteUserPage.vue:163 @@ -4845,17 +4845,17 @@ msgstr "" msgid "Salesperson" msgstr "" -#. Label of the salutation (Link) field in DocType 'CRM Deal' -#. Label of the salutation (Link) field in DocType 'CRM Lead' -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_lead/crm_lead.json +#. Label of the salutation (Link) field in PageType 'CRM Deal' +#. Label of the salutation (Link) field in PageType 'CRM Lead' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_lead/crm_lead.json msgid "Salutation" msgstr "称呼" -#. Option for the 'Weekly Off' (Select) field in DocType 'CRM Holiday List' -#. Option for the 'Workday' (Select) field in DocType 'CRM Service Day' -#: crm/fcrm/doctype/crm_holiday_list/crm_holiday_list.json -#: crm/fcrm/doctype/crm_service_day/crm_service_day.json +#. Option for the 'Weekly Off' (Select) field in PageType 'CRM Holiday List' +#. Option for the 'Workday' (Select) field in PageType 'CRM Service Day' +#: crm/fcrm/pagetype/crm_holiday_list/crm_holiday_list.json +#: crm/fcrm/pagetype/crm_service_day/crm_service_day.json msgid "Saturday" msgstr "周六" @@ -4904,8 +4904,8 @@ msgstr "" msgid "Schedule an event" msgstr "" -#. Label of the script (Code) field in DocType 'CRM Form Script' -#: crm/fcrm/doctype/crm_form_script/crm_form_script.json +#. Label of the script (Code) field in PageType 'CRM Form Script' +#: crm/fcrm/pagetype/crm_form_script/crm_form_script.json msgid "Script" msgstr "脚本" @@ -4973,18 +4973,18 @@ msgstr "" msgid "Send invites to" msgstr "" -#. Option for the 'Type' (Select) field in DocType 'CRM Dropdown Item' -#: crm/fcrm/doctype/crm_dropdown_item/crm_dropdown_item.json +#. Option for the 'Type' (Select) field in PageType 'CRM Dropdown Item' +#: crm/fcrm/pagetype/crm_dropdown_item/crm_dropdown_item.json msgid "Separator" msgstr "分隔符" -#. Label of the naming_series (Select) field in DocType 'CRM Lead' -#: crm/fcrm/doctype/crm_lead/crm_lead.json +#. Label of the naming_series (Select) field in PageType 'CRM Lead' +#: crm/fcrm/pagetype/crm_lead/crm_lead.json msgid "Series" msgstr "系列" -#. Label of the service_provider (Select) field in DocType 'FCRM Settings' -#: crm/fcrm/doctype/fcrm_settings/fcrm_settings.json +#. Label of the service_provider (Select) field in PageType 'FCRM Settings' +#: crm/fcrm/pagetype/fcrm_settings/fcrm_settings.json msgid "Service Provider" msgstr "服务商" @@ -5029,7 +5029,7 @@ msgid "Setting up" msgstr "系统配置中" #: frontend/src/components/Settings/emailConfig.js:145 -msgid "Setting up Frappe Mail requires you to have an API key and API Secret of your email account. Read more " +msgid "Setting up Jingrow Mail requires you to have an API key and API Secret of your email account. Read more " msgstr "" #: frontend/src/components/Settings/emailConfig.js:97 @@ -5062,8 +5062,8 @@ msgid "Setting up Yandex requires you to enable two factor authentication\n" "\t\t and app specific passwords. Read more " msgstr "" -#. Label of the defaults_tab (Tab Break) field in DocType 'FCRM Settings' -#: crm/fcrm/doctype/fcrm_settings/fcrm_settings.json +#. Label of the defaults_tab (Tab Break) field in PageType 'FCRM Settings' +#: crm/fcrm/pagetype/fcrm_settings/fcrm_settings.json #: frontend/src/components/Layouts/AppSidebar.vue:537 #: frontend/src/components/Settings/Settings.vue:12 msgid "Settings" @@ -5073,7 +5073,7 @@ msgstr "设置" msgid "Setup Email" msgstr "" -#: crm/fcrm/doctype/fcrm_settings/fcrm_settings.py:199 +#: crm/fcrm/pagetype/fcrm_settings/fcrm_settings.py:199 msgid "Setup the Exchange Rate Provider as 'Exchangerate Host' in settings, as default provider does not support currency conversion for {0} to {1}." msgstr "" @@ -5108,21 +5108,21 @@ msgstr "" msgid "Show preview" msgstr "显示预览" -#. Option for the 'Type' (Select) field in DocType 'CRM Fields Layout' -#: crm/fcrm/doctype/crm_fields_layout/crm_fields_layout.json +#. Option for the 'Type' (Select) field in PageType 'CRM Fields Layout' +#: crm/fcrm/pagetype/crm_fields_layout/crm_fields_layout.json msgid "Side Panel" msgstr "侧边栏" -#. Option for the 'Type' (Select) field in DocType 'CRM Global Settings' -#: crm/fcrm/doctype/crm_global_settings/crm_global_settings.json +#. Option for the 'Type' (Select) field in PageType 'CRM Global Settings' +#: crm/fcrm/pagetype/crm_global_settings/crm_global_settings.json msgid "Sidebar Items" msgstr "侧边栏项" -#. Description of the 'Condition' (Code) field in DocType 'CRM Service Level +#. Description of the 'Condition' (Code) field in PageType 'CRM Service Level #. Agreement' -#: crm/fcrm/doctype/crm_service_level_agreement/crm_service_level_agreement.json -msgid "Simple Python Expression, Example: doc.status == 'Open' and doc.lead_source == 'Ads'" -msgstr "简单Python表达式,示例:doc.status == '开放' and doc.lead_source == '广告'" +#: crm/fcrm/pagetype/crm_service_level_agreement/crm_service_level_agreement.json +msgid "Simple Python Expression, Example: pg.status == 'Open' and pg.lead_source == 'Ads'" +msgstr "简单Python表达式,示例:pg.status == '开放' and pg.lead_source == '广告'" #: frontend/src/components/AssignTo.vue:83 msgid "Since you removed {0} from the assignee, the {0} has also been removed." @@ -5145,16 +5145,16 @@ msgstr "" msgid "Sort" msgstr "排序" -#. Label of the source (Link) field in DocType 'CRM Deal' -#. Label of the source (Link) field in DocType 'CRM Lead' -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_lead/crm_lead.json +#. Label of the source (Link) field in PageType 'CRM Deal' +#. Label of the source (Link) field in PageType 'CRM Lead' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_lead/crm_lead.json #: frontend/src/components/Modals/EditValueModal.vue:10 msgid "Source" msgstr "来源" -#. Label of the source_name (Data) field in DocType 'CRM Lead Source' -#: crm/fcrm/doctype/crm_lead_source/crm_lead_source.json +#. Label of the source_name (Data) field in PageType 'CRM Lead Source' +#: crm/fcrm/pagetype/crm_lead_source/crm_lead_source.json msgid "Source Name" msgstr "来源名称" @@ -5167,12 +5167,12 @@ msgstr "空白分隔线" msgid "Stage" msgstr "阶段" -#: crm/fcrm/doctype/crm_form_script/crm_form_script.js:15 +#: crm/fcrm/pagetype/crm_form_script/crm_form_script.js:15 msgid "Standard Form Scripts can not be modified, duplicate the Form Script instead." msgstr "标准表单脚本不可修改,请复制后进行编辑" -#. Label of the standard_rate (Currency) field in DocType 'CRM Product' -#: crm/fcrm/doctype/crm_product/crm_product.json +#. Label of the standard_rate (Currency) field in PageType 'CRM Product' +#: crm/fcrm/pagetype/crm_product/crm_product.json msgid "Standard Selling Rate" msgstr "标准售价" @@ -5180,18 +5180,18 @@ msgstr "标准售价" msgid "Standard Views" msgstr "标准视图" -#. Label of the start_date (Date) field in DocType 'CRM Service Level +#. Label of the start_date (Date) field in PageType 'CRM Service Level #. Agreement' -#. Label of the start_date (Date) field in DocType 'CRM Task' -#: crm/fcrm/doctype/crm_service_level_agreement/crm_service_level_agreement.json -#: crm/fcrm/doctype/crm_task/crm_task.json +#. Label of the start_date (Date) field in PageType 'CRM Task' +#: crm/fcrm/pagetype/crm_service_level_agreement/crm_service_level_agreement.json +#: crm/fcrm/pagetype/crm_task/crm_task.json msgid "Start Date" msgstr "开始日期" -#. Label of the start_time (Datetime) field in DocType 'CRM Call Log' -#. Label of the start_time (Time) field in DocType 'CRM Service Day' -#: crm/fcrm/doctype/crm_call_log/crm_call_log.json -#: crm/fcrm/doctype/crm_service_day/crm_service_day.json +#. Label of the start_time (Datetime) field in PageType 'CRM Call Log' +#. Label of the start_time (Time) field in PageType 'CRM Service Day' +#: crm/fcrm/pagetype/crm_call_log/crm_call_log.json +#: crm/fcrm/pagetype/crm_service_day/crm_service_day.json #: frontend/src/components/Calendar/CalendarEventPanel.vue:234 #: frontend/src/components/Modals/EventModal.vue:103 msgid "Start Time" @@ -5205,32 +5205,32 @@ msgstr "" msgid "Start with sample 10 leads" msgstr "" -#. Label of the status (Select) field in DocType 'CRM Call Log' -#. Label of the status (Data) field in DocType 'CRM Communication Status' -#. Label of the status (Link) field in DocType 'CRM Deal' -#. Label of the deal_status (Data) field in DocType 'CRM Deal Status' -#. Label of the status (Select) field in DocType 'CRM Invitation' -#. Label of the status (Link) field in DocType 'CRM Lead' -#. Label of the lead_status (Data) field in DocType 'CRM Lead Status' -#. Label of the status (Select) field in DocType 'CRM Task' -#: crm/fcrm/doctype/crm_call_log/crm_call_log.json -#: crm/fcrm/doctype/crm_communication_status/crm_communication_status.json -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_deal_status/crm_deal_status.json -#: crm/fcrm/doctype/crm_invitation/crm_invitation.json -#: crm/fcrm/doctype/crm_lead/crm_lead.json -#: crm/fcrm/doctype/crm_lead_status/crm_lead_status.json -#: crm/fcrm/doctype/crm_task/crm_task.json frontend/src/pages/Contact.vue:505 +#. Label of the status (Select) field in PageType 'CRM Call Log' +#. Label of the status (Data) field in PageType 'CRM Communication Status' +#. Label of the status (Link) field in PageType 'CRM Deal' +#. Label of the deal_status (Data) field in PageType 'CRM Deal Status' +#. Label of the status (Select) field in PageType 'CRM Invitation' +#. Label of the status (Link) field in PageType 'CRM Lead' +#. Label of the lead_status (Data) field in PageType 'CRM Lead Status' +#. Label of the status (Select) field in PageType 'CRM Task' +#: crm/fcrm/pagetype/crm_call_log/crm_call_log.json +#: crm/fcrm/pagetype/crm_communication_status/crm_communication_status.json +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_deal_status/crm_deal_status.json +#: crm/fcrm/pagetype/crm_invitation/crm_invitation.json +#: crm/fcrm/pagetype/crm_lead/crm_lead.json +#: crm/fcrm/pagetype/crm_lead_status/crm_lead_status.json +#: crm/fcrm/pagetype/crm_task/crm_task.json frontend/src/pages/Contact.vue:505 #: frontend/src/pages/MobileContact.vue:513 #: frontend/src/pages/MobileOrganization.vue:457 #: frontend/src/pages/Organization.vue:478 msgid "Status" msgstr "状态" -#. Label of the status_change_log (Table) field in DocType 'CRM Deal' -#. Label of the status_change_log (Table) field in DocType 'CRM Lead' -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_lead/crm_lead.json +#. Label of the status_change_log (Table) field in PageType 'CRM Deal' +#. Label of the status_change_log (Table) field in PageType 'CRM Lead' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_lead/crm_lead.json msgid "Status Change Log" msgstr "状态变更日志" @@ -5239,8 +5239,8 @@ msgstr "状态变更日志" msgid "Status is required" msgstr "状态为必填项" -#. Label of the subdomain (Data) field in DocType 'CRM Exotel Settings' -#: crm/fcrm/doctype/crm_exotel_settings/crm_exotel_settings.json +#. Label of the subdomain (Data) field in PageType 'CRM Exotel Settings' +#: crm/fcrm/pagetype/crm_exotel_settings/crm_exotel_settings.json msgid "Subdomain" msgstr "子域名" @@ -5258,10 +5258,10 @@ msgstr "必须填写主题" msgid "Subject: {0}" msgstr "主题:{0}" -#. Option for the 'Weekly Off' (Select) field in DocType 'CRM Holiday List' -#. Option for the 'Workday' (Select) field in DocType 'CRM Service Day' -#: crm/fcrm/doctype/crm_holiday_list/crm_holiday_list.json -#: crm/fcrm/doctype/crm_service_day/crm_service_day.json +#. Option for the 'Weekly Off' (Select) field in PageType 'CRM Holiday List' +#. Option for the 'Workday' (Select) field in PageType 'CRM Service Day' +#: crm/fcrm/pagetype/crm_holiday_list/crm_holiday_list.json +#: crm/fcrm/pagetype/crm_service_day/crm_service_day.json msgid "Sunday" msgstr "周日" @@ -5282,21 +5282,21 @@ msgid "System Configuration" msgstr "" #. Name of a role -#. Option for the 'Role' (Select) field in DocType 'CRM Invitation' -#: crm/fcrm/doctype/crm_dashboard/crm_dashboard.json -#: crm/fcrm/doctype/crm_exotel_settings/crm_exotel_settings.json -#: crm/fcrm/doctype/crm_fields_layout/crm_fields_layout.json -#: crm/fcrm/doctype/crm_global_settings/crm_global_settings.json -#: crm/fcrm/doctype/crm_invitation/crm_invitation.json -#: crm/fcrm/doctype/crm_lead_source/crm_lead_source.json -#: crm/fcrm/doctype/crm_lost_reason/crm_lost_reason.json -#: crm/fcrm/doctype/crm_notification/crm_notification.json -#: crm/fcrm/doctype/crm_product/crm_product.json -#: crm/fcrm/doctype/crm_telephony_agent/crm_telephony_agent.json -#: crm/fcrm/doctype/crm_twilio_settings/crm_twilio_settings.json -#: crm/fcrm/doctype/erpnext_crm_settings/erpnext_crm_settings.json -#: crm/fcrm/doctype/fcrm_settings/fcrm_settings.json -#: crm/fcrm/doctype/helpdesk_crm_settings/helpdesk_crm_settings.json +#. Option for the 'Role' (Select) field in PageType 'CRM Invitation' +#: crm/fcrm/pagetype/crm_dashboard/crm_dashboard.json +#: crm/fcrm/pagetype/crm_exotel_settings/crm_exotel_settings.json +#: crm/fcrm/pagetype/crm_fields_layout/crm_fields_layout.json +#: crm/fcrm/pagetype/crm_global_settings/crm_global_settings.json +#: crm/fcrm/pagetype/crm_invitation/crm_invitation.json +#: crm/fcrm/pagetype/crm_lead_source/crm_lead_source.json +#: crm/fcrm/pagetype/crm_lost_reason/crm_lost_reason.json +#: crm/fcrm/pagetype/crm_notification/crm_notification.json +#: crm/fcrm/pagetype/crm_product/crm_product.json +#: crm/fcrm/pagetype/crm_telephony_agent/crm_telephony_agent.json +#: crm/fcrm/pagetype/crm_twilio_settings/crm_twilio_settings.json +#: crm/fcrm/pagetype/erpnext_crm_settings/erpnext_crm_settings.json +#: crm/fcrm/pagetype/fcrm_settings/fcrm_settings.json +#: crm/fcrm/pagetype/helpdesk_crm_settings/helpdesk_crm_settings.json msgid "System Manager" msgstr "系统管理员" @@ -5308,8 +5308,8 @@ msgstr "收件人" msgid "Take a note..." msgstr "记录备注..." -#. Option for the 'Type' (Select) field in DocType 'CRM Notification' -#: crm/fcrm/doctype/crm_notification/crm_notification.json +#. Option for the 'Type' (Select) field in PageType 'CRM Notification' +#: crm/fcrm/pagetype/crm_notification/crm_notification.json #: frontend/src/components/Layouts/AppSidebar.vue:555 msgid "Task" msgstr "任务" @@ -5327,8 +5327,8 @@ msgstr "" msgid "Telephony" msgstr "电话系统" -#. Label of the telephony_medium (Select) field in DocType 'CRM Call Log' -#: crm/fcrm/doctype/crm_call_log/crm_call_log.json +#. Label of the telephony_medium (Select) field in PageType 'CRM Call Log' +#: crm/fcrm/pagetype/crm_call_log/crm_call_log.json msgid "Telephony Medium" msgstr "电话媒介" @@ -5364,27 +5364,27 @@ msgstr "" msgid "Template updated successfully" msgstr "" -#. Label of a shortcut in the Frappe CRM Workspace -#: crm/fcrm/workspace/frappe_crm/frappe_crm.json +#. Label of a shortcut in the Jingrow CRM Workspace +#: crm/fcrm/workspace/jingrow_crm/jingrow_crm.json msgid "Territories" msgstr "区域" -#. Label of the territory (Link) field in DocType 'CRM Deal' -#. Label of the territory (Link) field in DocType 'CRM Lead' -#. Label of the territory (Link) field in DocType 'CRM Organization' -#: crm/api/dashboard.py:1022 crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_lead/crm_lead.json -#: crm/fcrm/doctype/crm_organization/crm_organization.json +#. Label of the territory (Link) field in PageType 'CRM Deal' +#. Label of the territory (Link) field in PageType 'CRM Lead' +#. Label of the territory (Link) field in PageType 'CRM Organization' +#: crm/api/dashboard.py:1022 crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_lead/crm_lead.json +#: crm/fcrm/pagetype/crm_organization/crm_organization.json msgid "Territory" msgstr "区域" -#. Label of the territory_manager (Link) field in DocType 'CRM Territory' -#: crm/fcrm/doctype/crm_territory/crm_territory.json +#. Label of the territory_manager (Link) field in PageType 'CRM Territory' +#: crm/fcrm/pagetype/crm_territory/crm_territory.json msgid "Territory Manager" msgstr "区域经理" -#. Label of the territory_name (Data) field in DocType 'CRM Territory' -#: crm/fcrm/doctype/crm_territory/crm_territory.json +#. Label of the territory_name (Data) field in PageType 'CRM Territory' +#: crm/fcrm/pagetype/crm_territory/crm_territory.json msgid "Territory Name" msgstr "区域名称" @@ -5392,22 +5392,22 @@ msgstr "区域名称" msgid "Thanks" msgstr "谢谢" -#: crm/fcrm/doctype/crm_service_level_agreement/crm_service_level_agreement.py:46 +#: crm/fcrm/pagetype/crm_service_level_agreement/crm_service_level_agreement.py:46 msgid "The Condition '{0}' is invalid: {1}" msgstr "条件'{0}'无效:{1}" -#. Description of the 'Exchange Rate' (Float) field in DocType 'CRM Deal' -#: crm/fcrm/doctype/crm_deal/crm_deal.json +#. Description of the 'Exchange Rate' (Float) field in PageType 'CRM Deal' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json msgid "The rate used to convert the deal’s currency to your crm's base currency (set in CRM Settings). It is set once when the currency is first added and doesn't change automatically." msgstr "" -#. Description of the 'Exchange Rate' (Float) field in DocType 'CRM +#. Description of the 'Exchange Rate' (Float) field in PageType 'CRM #. Organization' -#: crm/fcrm/doctype/crm_organization/crm_organization.json +#: crm/fcrm/pagetype/crm_organization/crm_organization.json msgid "The rate used to convert the organization’s currency to your crm's base currency (set in CRM Settings). It is set once when the currency is first added and doesn't change automatically." msgstr "" -#: crm/fcrm/doctype/crm_service_level_agreement/crm_service_level_agreement.js:14 +#: crm/fcrm/pagetype/crm_service_level_agreement/crm_service_level_agreement.js:14 msgid "There can only be one default priority in Priorities table" msgstr "优先级表中只能有一个默认优先级" @@ -5444,14 +5444,14 @@ msgstr "" msgid "This will delete selected items and unlink linked items to it, are you sure?" msgstr "" -#: crm/fcrm/doctype/fcrm_settings/fcrm_settings.js:9 +#: crm/fcrm/pagetype/fcrm_settings/fcrm_settings.js:9 msgid "This will restore (if not exist) all the default statuses, custom fields and layouts. Delete & Restore will delete default layouts and then restore them." msgstr "将恢复(如不存在)所有默认状态、自定义字段及布局。删除并恢复将删除默认布局后重新创建" -#. Option for the 'Weekly Off' (Select) field in DocType 'CRM Holiday List' -#. Option for the 'Workday' (Select) field in DocType 'CRM Service Day' -#: crm/fcrm/doctype/crm_holiday_list/crm_holiday_list.json -#: crm/fcrm/doctype/crm_service_day/crm_service_day.json +#. Option for the 'Weekly Off' (Select) field in PageType 'CRM Holiday List' +#. Option for the 'Workday' (Select) field in PageType 'CRM Service Day' +#: crm/fcrm/pagetype/crm_holiday_list/crm_holiday_list.json +#: crm/fcrm/pagetype/crm_service_day/crm_service_day.json msgid "Thursday" msgstr "周四" @@ -5463,18 +5463,18 @@ msgstr "时间" msgid "Timespan" msgstr "时间跨度" -#. Label of the title (Data) field in DocType 'CRM Task' -#. Label of the title (Data) field in DocType 'FCRM Note' -#: crm/fcrm/doctype/crm_task/crm_task.json -#: crm/fcrm/doctype/fcrm_note/fcrm_note.json +#. Label of the title (Data) field in PageType 'CRM Task' +#. Label of the title (Data) field in PageType 'FCRM Note' +#: crm/fcrm/pagetype/crm_task/crm_task.json +#: crm/fcrm/pagetype/fcrm_note/fcrm_note.json #: frontend/src/components/Modals/EventModal.vue:43 #: frontend/src/components/Modals/NoteModal.vue:26 #: frontend/src/components/Modals/TaskModal.vue:25 msgid "Title" msgstr "标题" -#. Label of the title_field (Data) field in DocType 'CRM View Settings' -#: crm/fcrm/doctype/crm_view_settings/crm_view_settings.json +#. Label of the title_field (Data) field in PageType 'CRM View Settings' +#: crm/fcrm/pagetype/crm_view_settings/crm_view_settings.json #: frontend/src/components/Kanban/KanbanSettings.vue:29 msgid "Title Field" msgstr "标题字段" @@ -5484,28 +5484,28 @@ msgstr "标题字段" msgid "Title is required" msgstr "标题为必填项" -#. Label of the to (Data) field in DocType 'CRM Call Log' -#. Label of the to (Data) field in DocType 'CRM Status Change Log' -#: crm/fcrm/doctype/crm_call_log/crm_call_log.json -#: crm/fcrm/doctype/crm_status_change_log/crm_status_change_log.json +#. Label of the to (Data) field in PageType 'CRM Call Log' +#. Label of the to (Data) field in PageType 'CRM Status Change Log' +#: crm/fcrm/pagetype/crm_call_log/crm_call_log.json +#: crm/fcrm/pagetype/crm_status_change_log/crm_status_change_log.json #: frontend/src/components/Activities/EmailArea.vue:53 msgid "To" msgstr "至" -#. Label of the to_date (Date) field in DocType 'CRM Holiday List' -#. Label of the to_date (Datetime) field in DocType 'CRM Status Change Log' -#: crm/fcrm/doctype/crm_holiday_list/crm_holiday_list.json -#: crm/fcrm/doctype/crm_status_change_log/crm_status_change_log.json +#. Label of the to_date (Date) field in PageType 'CRM Holiday List' +#. Label of the to_date (Datetime) field in PageType 'CRM Status Change Log' +#: crm/fcrm/pagetype/crm_holiday_list/crm_holiday_list.json +#: crm/fcrm/pagetype/crm_status_change_log/crm_status_change_log.json msgid "To Date" msgstr "截止日期" -#. Label of the to_type (Data) field in DocType 'CRM Status Change Log' -#: crm/fcrm/doctype/crm_status_change_log/crm_status_change_log.json +#. Label of the to_type (Data) field in PageType 'CRM Status Change Log' +#: crm/fcrm/pagetype/crm_status_change_log/crm_status_change_log.json msgid "To Type" msgstr "" -#. Label of the to_user (Link) field in DocType 'CRM Notification' -#: crm/fcrm/doctype/crm_notification/crm_notification.json +#. Label of the to_user (Link) field in PageType 'CRM Notification' +#: crm/fcrm/pagetype/crm_notification/crm_notification.json msgid "To User" msgstr "目标用户" @@ -5517,8 +5517,8 @@ msgstr "" msgid "Today" msgstr "今天" -#. Option for the 'Status' (Select) field in DocType 'CRM Task' -#: crm/fcrm/doctype/crm_task/crm_task.json +#. Option for the 'Status' (Select) field in PageType 'CRM Task' +#: crm/fcrm/pagetype/crm_task/crm_task.json msgid "Todo" msgstr "待办" @@ -5535,22 +5535,22 @@ msgstr "明天" msgid "Took a call with John Doe and discussed the new project." msgstr "与张三通话讨论新项目" -#. Label of the total (Currency) field in DocType 'CRM Deal' -#. Label of the total (Currency) field in DocType 'CRM Lead' -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_lead/crm_lead.json +#. Label of the total (Currency) field in PageType 'CRM Deal' +#. Label of the total (Currency) field in PageType 'CRM Lead' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_lead/crm_lead.json msgid "Total" msgstr "总计" -#. Label of the total_holidays (Int) field in DocType 'CRM Holiday List' -#: crm/fcrm/doctype/crm_holiday_list/crm_holiday_list.json +#. Label of the total_holidays (Int) field in PageType 'CRM Holiday List' +#: crm/fcrm/pagetype/crm_holiday_list/crm_holiday_list.json msgid "Total Holidays" msgstr "总假期天数" -#. Description of the 'Net Total' (Currency) field in DocType 'CRM Deal' -#. Description of the 'Net Total' (Currency) field in DocType 'CRM Lead' -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_lead/crm_lead.json +#. Description of the 'Net Total' (Currency) field in PageType 'CRM Deal' +#. Description of the 'Net Total' (Currency) field in PageType 'CRM Lead' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_lead/crm_lead.json msgid "Total after discount" msgstr "" @@ -5571,10 +5571,10 @@ msgstr "" msgid "Total number of won deals based on its closure date" msgstr "" -#. Option for the 'Weekly Off' (Select) field in DocType 'CRM Holiday List' -#. Option for the 'Workday' (Select) field in DocType 'CRM Service Day' -#: crm/fcrm/doctype/crm_holiday_list/crm_holiday_list.json -#: crm/fcrm/doctype/crm_service_day/crm_service_day.json +#. Option for the 'Weekly Off' (Select) field in PageType 'CRM Holiday List' +#. Option for the 'Workday' (Select) field in PageType 'CRM Service Day' +#: crm/fcrm/pagetype/crm_holiday_list/crm_holiday_list.json +#: crm/fcrm/pagetype/crm_service_day/crm_service_day.json msgid "Tuesday" msgstr "周二" @@ -5582,30 +5582,30 @@ msgstr "周二" msgid "Turn into a group" msgstr "" -#. Label of the twiml_sid (Data) field in DocType 'CRM Twilio Settings' -#: crm/fcrm/doctype/crm_twilio_settings/crm_twilio_settings.json +#. Label of the twiml_sid (Data) field in PageType 'CRM Twilio Settings' +#: crm/fcrm/pagetype/crm_twilio_settings/crm_twilio_settings.json msgid "TwiML SID" msgstr "TwiML SID" -#. Option for the 'Telephony Medium' (Select) field in DocType 'CRM Call Log' -#. Label of the twilio (Check) field in DocType 'CRM Telephony Agent' -#. Option for the 'Default Medium' (Select) field in DocType 'CRM Telephony +#. Option for the 'Telephony Medium' (Select) field in PageType 'CRM Call Log' +#. Label of the twilio (Check) field in PageType 'CRM Telephony Agent' +#. Option for the 'Default Medium' (Select) field in PageType 'CRM Telephony #. Agent' -#: crm/fcrm/doctype/crm_call_log/crm_call_log.json -#: crm/fcrm/doctype/crm_telephony_agent/crm_telephony_agent.json +#: crm/fcrm/pagetype/crm_call_log/crm_call_log.json +#: crm/fcrm/pagetype/crm_telephony_agent/crm_telephony_agent.json #: frontend/src/components/Layouts/AppSidebar.vue:601 #: frontend/src/components/Settings/TelephonySettings.vue:40 #: frontend/src/components/Settings/TelephonySettings.vue:50 msgid "Twilio" msgstr "Twilio" -#: crm/fcrm/doctype/crm_twilio_settings/crm_twilio_settings.py:59 -#: crm/fcrm/doctype/crm_twilio_settings/crm_twilio_settings.py:60 +#: crm/fcrm/pagetype/crm_twilio_settings/crm_twilio_settings.py:59 +#: crm/fcrm/pagetype/crm_twilio_settings/crm_twilio_settings.py:60 msgid "Twilio API credential creation error." msgstr "Twilio API凭证创建错误" -#. Label of the twilio_number (Data) field in DocType 'CRM Telephony Agent' -#: crm/fcrm/doctype/crm_telephony_agent/crm_telephony_agent.json +#. Label of the twilio_number (Data) field in PageType 'CRM Telephony Agent' +#: crm/fcrm/pagetype/crm_telephony_agent/crm_telephony_agent.json msgid "Twilio Number" msgstr "Twilio号码" @@ -5617,20 +5617,20 @@ msgstr "Twilio未启用" msgid "Twilio settings updated successfully" msgstr "Twilio设置更新成功" -#. Label of the type (Select) field in DocType 'CRM Call Log' -#. Label of the type (Select) field in DocType 'CRM Deal Status' -#. Label of the type (Select) field in DocType 'CRM Dropdown Item' -#. Label of the type (Select) field in DocType 'CRM Fields Layout' -#. Label of the type (Select) field in DocType 'CRM Global Settings' -#. Label of the type (Select) field in DocType 'CRM Notification' -#. Label of the type (Select) field in DocType 'CRM View Settings' -#: crm/fcrm/doctype/crm_call_log/crm_call_log.json -#: crm/fcrm/doctype/crm_deal_status/crm_deal_status.json -#: crm/fcrm/doctype/crm_dropdown_item/crm_dropdown_item.json -#: crm/fcrm/doctype/crm_fields_layout/crm_fields_layout.json -#: crm/fcrm/doctype/crm_global_settings/crm_global_settings.json -#: crm/fcrm/doctype/crm_notification/crm_notification.json -#: crm/fcrm/doctype/crm_view_settings/crm_view_settings.json +#. Label of the type (Select) field in PageType 'CRM Call Log' +#. Label of the type (Select) field in PageType 'CRM Deal Status' +#. Label of the type (Select) field in PageType 'CRM Dropdown Item' +#. Label of the type (Select) field in PageType 'CRM Fields Layout' +#. Label of the type (Select) field in PageType 'CRM Global Settings' +#. Label of the type (Select) field in PageType 'CRM Notification' +#. Label of the type (Select) field in PageType 'CRM View Settings' +#: crm/fcrm/pagetype/crm_call_log/crm_call_log.json +#: crm/fcrm/pagetype/crm_deal_status/crm_deal_status.json +#: crm/fcrm/pagetype/crm_dropdown_item/crm_dropdown_item.json +#: crm/fcrm/pagetype/crm_fields_layout/crm_fields_layout.json +#: crm/fcrm/pagetype/crm_global_settings/crm_global_settings.json +#: crm/fcrm/pagetype/crm_notification/crm_notification.json +#: crm/fcrm/pagetype/crm_view_settings/crm_view_settings.json msgid "Type" msgstr "类型" @@ -5772,12 +5772,12 @@ msgstr "上传图片" msgid "Uploading {0}%" msgstr "上传进度{0}%" -#. Label of the user (Link) field in DocType 'CRM Dashboard' -#. Label of the user (Link) field in DocType 'CRM Telephony Agent' -#. Label of the user (Link) field in DocType 'CRM View Settings' -#: crm/fcrm/doctype/crm_dashboard/crm_dashboard.json -#: crm/fcrm/doctype/crm_telephony_agent/crm_telephony_agent.json -#: crm/fcrm/doctype/crm_view_settings/crm_view_settings.json +#. Label of the user (Link) field in PageType 'CRM Dashboard' +#. Label of the user (Link) field in PageType 'CRM Telephony Agent' +#. Label of the user (Link) field in PageType 'CRM View Settings' +#: crm/fcrm/pagetype/crm_dashboard/crm_dashboard.json +#: crm/fcrm/pagetype/crm_telephony_agent/crm_telephony_agent.json +#: crm/fcrm/pagetype/crm_view_settings/crm_view_settings.json msgid "User" msgstr "用户" @@ -5785,8 +5785,8 @@ msgstr "用户" msgid "User Management" msgstr "" -#. Label of the user_name (Data) field in DocType 'CRM Telephony Agent' -#: crm/fcrm/doctype/crm_telephony_agent/crm_telephony_agent.json +#. Label of the user_name (Data) field in PageType 'CRM Telephony Agent' +#: crm/fcrm/pagetype/crm_telephony_agent/crm_telephony_agent.json msgid "User Name" msgstr "用户名" @@ -5808,9 +5808,9 @@ msgstr "" msgid "Users are required" msgstr "" -#. Label of the section_break_nevd (Section Break) field in DocType 'CRM +#. Label of the section_break_nevd (Section Break) field in PageType 'CRM #. Service Level Agreement' -#: crm/fcrm/doctype/crm_service_level_agreement/crm_service_level_agreement.json +#: crm/fcrm/pagetype/crm_service_level_agreement/crm_service_level_agreement.json msgid "Validity" msgstr "有效期" @@ -5834,33 +5834,33 @@ msgstr "视图" msgid "Web form" msgstr "" -#. Label of the webhook_verify_token (Data) field in DocType 'CRM Exotel +#. Label of the webhook_verify_token (Data) field in PageType 'CRM Exotel #. Settings' -#: crm/fcrm/doctype/crm_exotel_settings/crm_exotel_settings.json +#: crm/fcrm/pagetype/crm_exotel_settings/crm_exotel_settings.json msgid "Webhook Verify Token" msgstr "Webhook验证令牌" -#. Label of the website (Data) field in DocType 'CRM Deal' -#. Label of the website (Data) field in DocType 'CRM Lead' -#. Label of the website (Data) field in DocType 'CRM Organization' -#: crm/fcrm/doctype/crm_deal/crm_deal.json -#: crm/fcrm/doctype/crm_lead/crm_lead.json -#: crm/fcrm/doctype/crm_organization/crm_organization.json +#. Label of the website (Data) field in PageType 'CRM Deal' +#. Label of the website (Data) field in PageType 'CRM Lead' +#. Label of the website (Data) field in PageType 'CRM Organization' +#: crm/fcrm/pagetype/crm_deal/crm_deal.json +#: crm/fcrm/pagetype/crm_lead/crm_lead.json +#: crm/fcrm/pagetype/crm_organization/crm_organization.json #: frontend/src/components/Modals/AboutModal.vue:52 msgid "Website" msgstr "网站" -#. Option for the 'Weekly Off' (Select) field in DocType 'CRM Holiday List' -#. Option for the 'Workday' (Select) field in DocType 'CRM Service Day' -#: crm/fcrm/doctype/crm_holiday_list/crm_holiday_list.json -#: crm/fcrm/doctype/crm_service_day/crm_service_day.json +#. Option for the 'Weekly Off' (Select) field in PageType 'CRM Holiday List' +#. Option for the 'Workday' (Select) field in PageType 'CRM Service Day' +#: crm/fcrm/pagetype/crm_holiday_list/crm_holiday_list.json +#: crm/fcrm/pagetype/crm_service_day/crm_service_day.json msgid "Wednesday" msgstr "周三" -#. Label of the weekly_off (Check) field in DocType 'CRM Holiday' -#. Label of the weekly_off (Select) field in DocType 'CRM Holiday List' -#: crm/fcrm/doctype/crm_holiday/crm_holiday.json -#: crm/fcrm/doctype/crm_holiday_list/crm_holiday_list.json +#. Label of the weekly_off (Check) field in PageType 'CRM Holiday' +#. Label of the weekly_off (Select) field in PageType 'CRM Holiday List' +#: crm/fcrm/pagetype/crm_holiday/crm_holiday.json +#: crm/fcrm/pagetype/crm_holiday_list/crm_holiday_list.json msgid "Weekly Off" msgstr "每周休息" @@ -5868,7 +5868,7 @@ msgstr "每周休息" msgid "Welcome Message" msgstr "欢迎消息" -#: crm/fcrm/doctype/helpdesk_crm_settings/helpdesk_crm_settings.py:155 +#: crm/fcrm/pagetype/helpdesk_crm_settings/helpdesk_crm_settings.py:155 msgid "Welcome to Helpdesk" msgstr "" @@ -5876,8 +5876,8 @@ msgstr "" msgid "Welcome {0}, lets add your first lead" msgstr "" -#. Option for the 'Type' (Select) field in DocType 'CRM Notification' -#: crm/fcrm/doctype/crm_notification/crm_notification.json +#. Option for the 'Type' (Select) field in PageType 'CRM Notification' +#: crm/fcrm/pagetype/crm_notification/crm_notification.json #: frontend/src/components/Layouts/AppSidebar.vue:603 #: frontend/src/components/Settings/Settings.vue:190 #: frontend/src/pages/Deal.vue:572 frontend/src/pages/Lead.vue:429 @@ -5902,8 +5902,8 @@ msgstr "宽度" msgid "Width can be in number, pixel or rem (eg. 3, 30px, 10rem)" msgstr "宽度可为数字、像素或rem(如3、30px、10rem)" -#. Option for the 'Type' (Select) field in DocType 'CRM Deal Status' -#: crm/fcrm/doctype/crm_deal_status/crm_deal_status.json +#. Option for the 'Type' (Select) field in PageType 'CRM Deal Status' +#: crm/fcrm/pagetype/crm_deal_status/crm_deal_status.json msgid "Won" msgstr "" @@ -5912,16 +5912,16 @@ msgstr "" msgid "Won deals" msgstr "" -#. Label of the workday (Select) field in DocType 'CRM Service Day' -#: crm/fcrm/doctype/crm_service_day/crm_service_day.json +#. Label of the workday (Select) field in PageType 'CRM Service Day' +#: crm/fcrm/pagetype/crm_service_day/crm_service_day.json msgid "Workday" msgstr "工作日" -#. Label of the section_break_rmgo (Section Break) field in DocType 'CRM +#. Label of the section_break_rmgo (Section Break) field in PageType 'CRM #. Service Level Agreement' -#. Label of the working_hours (Table) field in DocType 'CRM Service Level +#. Label of the working_hours (Table) field in PageType 'CRM Service Level #. Agreement' -#: crm/fcrm/doctype/crm_service_level_agreement/crm_service_level_agreement.json +#: crm/fcrm/pagetype/crm_service_level_agreement/crm_service_level_agreement.json msgid "Working Hours" msgstr "工作时间" @@ -5967,7 +5967,7 @@ msgstr "您的电话客服未设置手机号码" msgid "You do not have permission to access this document" msgstr "" -#: crm/fcrm/doctype/crm_form_script/crm_form_script.py:24 +#: crm/fcrm/pagetype/crm_form_script/crm_form_script.py:24 msgid "You need to be in developer mode to edit a Standard Form Script" msgstr "需进入开发者模式才能编辑标准表单脚本" @@ -5995,10 +5995,10 @@ msgstr "" msgid "added a" msgstr "添加了" -#. Option for the 'Color' (Select) field in DocType 'CRM Deal Status' -#. Option for the 'Color' (Select) field in DocType 'CRM Lead Status' -#: crm/fcrm/doctype/crm_deal_status/crm_deal_status.json -#: crm/fcrm/doctype/crm_lead_status/crm_lead_status.json +#. Option for the 'Color' (Select) field in PageType 'CRM Deal Status' +#. Option for the 'Color' (Select) field in PageType 'CRM Lead Status' +#: crm/fcrm/pagetype/crm_deal_status/crm_deal_status.json +#: crm/fcrm/pagetype/crm_lead_status/crm_lead_status.json msgid "amber" msgstr "琥珀色" @@ -6010,17 +6010,17 @@ msgstr "向您分配了新任务{0}" msgid "assigned a {0} {1} to you" msgstr "向您分配了{0}{1}" -#. Option for the 'Color' (Select) field in DocType 'CRM Deal Status' -#. Option for the 'Color' (Select) field in DocType 'CRM Lead Status' -#: crm/fcrm/doctype/crm_deal_status/crm_deal_status.json -#: crm/fcrm/doctype/crm_lead_status/crm_lead_status.json +#. Option for the 'Color' (Select) field in PageType 'CRM Deal Status' +#. Option for the 'Color' (Select) field in PageType 'CRM Lead Status' +#: crm/fcrm/pagetype/crm_deal_status/crm_deal_status.json +#: crm/fcrm/pagetype/crm_lead_status/crm_lead_status.json msgid "black" msgstr "黑色" -#. Option for the 'Color' (Select) field in DocType 'CRM Deal Status' -#. Option for the 'Color' (Select) field in DocType 'CRM Lead Status' -#: crm/fcrm/doctype/crm_deal_status/crm_deal_status.json -#: crm/fcrm/doctype/crm_lead_status/crm_lead_status.json +#. Option for the 'Color' (Select) field in PageType 'CRM Deal Status' +#. Option for the 'Color' (Select) field in PageType 'CRM Lead Status' +#: crm/fcrm/pagetype/crm_deal_status/crm_deal_status.json +#: crm/fcrm/pagetype/crm_lead_status/crm_lead_status.json msgid "blue" msgstr "蓝色" @@ -6037,10 +6037,10 @@ msgstr "评论" msgid "condition" msgstr "条件" -#. Option for the 'Color' (Select) field in DocType 'CRM Deal Status' -#. Option for the 'Color' (Select) field in DocType 'CRM Lead Status' -#: crm/fcrm/doctype/crm_deal_status/crm_deal_status.json -#: crm/fcrm/doctype/crm_lead_status/crm_lead_status.json +#. Option for the 'Color' (Select) field in PageType 'CRM Deal Status' +#. Option for the 'Color' (Select) field in PageType 'CRM Lead Status' +#: crm/fcrm/pagetype/crm_deal_status/crm_deal_status.json +#: crm/fcrm/pagetype/crm_lead_status/crm_lead_status.json msgid "cyan" msgstr "青色" @@ -6059,33 +6059,33 @@ msgstr "工作台" msgid "email already exists" msgstr "" -#. Option for the 'Service Provider' (Select) field in DocType 'FCRM Settings' -#: crm/fcrm/doctype/fcrm_settings/fcrm_settings.json +#. Option for the 'Service Provider' (Select) field in PageType 'FCRM Settings' +#: crm/fcrm/pagetype/fcrm_settings/fcrm_settings.json #: frontend/src/components/Settings/CurrencySettings.vue:106 msgid "exchangerate.host" msgstr "汇率服务商" -#. Option for the 'Service Provider' (Select) field in DocType 'FCRM Settings' -#: crm/fcrm/doctype/fcrm_settings/fcrm_settings.json +#. Option for the 'Service Provider' (Select) field in PageType 'FCRM Settings' +#: crm/fcrm/pagetype/fcrm_settings/fcrm_settings.json msgid "frankfurter.app" msgstr "法兰克福应用" -#. Option for the 'Color' (Select) field in DocType 'CRM Deal Status' -#. Option for the 'Color' (Select) field in DocType 'CRM Lead Status' -#: crm/fcrm/doctype/crm_deal_status/crm_deal_status.json -#: crm/fcrm/doctype/crm_lead_status/crm_lead_status.json +#. Option for the 'Color' (Select) field in PageType 'CRM Deal Status' +#. Option for the 'Color' (Select) field in PageType 'CRM Lead Status' +#: crm/fcrm/pagetype/crm_deal_status/crm_deal_status.json +#: crm/fcrm/pagetype/crm_lead_status/crm_lead_status.json msgid "gray" msgstr "灰色" -#. Option for the 'Color' (Select) field in DocType 'CRM Deal Status' -#. Option for the 'Color' (Select) field in DocType 'CRM Lead Status' -#: crm/fcrm/doctype/crm_deal_status/crm_deal_status.json -#: crm/fcrm/doctype/crm_lead_status/crm_lead_status.json +#. Option for the 'Color' (Select) field in PageType 'CRM Deal Status' +#. Option for the 'Color' (Select) field in PageType 'CRM Lead Status' +#: crm/fcrm/pagetype/crm_deal_status/crm_deal_status.json +#: crm/fcrm/pagetype/crm_lead_status/crm_lead_status.json msgid "green" msgstr "绿色" -#. Option for the 'Type' (Select) field in DocType 'CRM View Settings' -#: crm/fcrm/doctype/crm_view_settings/crm_view_settings.json +#. Option for the 'Type' (Select) field in PageType 'CRM View Settings' +#: crm/fcrm/pagetype/crm_view_settings/crm_view_settings.json msgid "group_by" msgstr "分组依据" @@ -6170,12 +6170,12 @@ msgstr "" msgid "just now" msgstr "刚刚" -#. Option for the 'Type' (Select) field in DocType 'CRM View Settings' -#: crm/fcrm/doctype/crm_view_settings/crm_view_settings.json +#. Option for the 'Type' (Select) field in PageType 'CRM View Settings' +#: crm/fcrm/pagetype/crm_view_settings/crm_view_settings.json msgid "kanban" msgstr "看板" -#: crm/api/doc.py:40 crm/api/doc.py:158 crm/api/doc.py:503 +#: crm/api/pg.py:40 crm/api/pg.py:158 crm/api/pg.py:503 msgid "label" msgstr "标签" @@ -6184,8 +6184,8 @@ msgstr "标签" msgid "leads" msgstr "线索" -#. Option for the 'Type' (Select) field in DocType 'CRM View Settings' -#: crm/fcrm/doctype/crm_view_settings/crm_view_settings.json +#. Option for the 'Type' (Select) field in PageType 'CRM View Settings' +#: crm/fcrm/pagetype/crm_view_settings/crm_view_settings.json msgid "list" msgstr "列表" @@ -6206,17 +6206,17 @@ msgstr "现在" msgid "operator" msgstr "操作员" -#. Option for the 'Color' (Select) field in DocType 'CRM Deal Status' -#. Option for the 'Color' (Select) field in DocType 'CRM Lead Status' -#: crm/fcrm/doctype/crm_deal_status/crm_deal_status.json -#: crm/fcrm/doctype/crm_lead_status/crm_lead_status.json +#. Option for the 'Color' (Select) field in PageType 'CRM Deal Status' +#. Option for the 'Color' (Select) field in PageType 'CRM Lead Status' +#: crm/fcrm/pagetype/crm_deal_status/crm_deal_status.json +#: crm/fcrm/pagetype/crm_lead_status/crm_lead_status.json msgid "orange" msgstr "橙色" -#. Option for the 'Color' (Select) field in DocType 'CRM Deal Status' -#. Option for the 'Color' (Select) field in DocType 'CRM Lead Status' -#: crm/fcrm/doctype/crm_deal_status/crm_deal_status.json -#: crm/fcrm/doctype/crm_lead_status/crm_lead_status.json +#. Option for the 'Color' (Select) field in PageType 'CRM Deal Status' +#. Option for the 'Color' (Select) field in PageType 'CRM Lead Status' +#: crm/fcrm/pagetype/crm_deal_status/crm_deal_status.json +#: crm/fcrm/pagetype/crm_lead_status/crm_lead_status.json msgid "pink" msgstr "粉色" @@ -6232,10 +6232,10 @@ msgstr "私有" msgid "public" msgstr "公开" -#. Option for the 'Color' (Select) field in DocType 'CRM Deal Status' -#. Option for the 'Color' (Select) field in DocType 'CRM Lead Status' -#: crm/fcrm/doctype/crm_deal_status/crm_deal_status.json -#: crm/fcrm/doctype/crm_lead_status/crm_lead_status.json +#. Option for the 'Color' (Select) field in PageType 'CRM Deal Status' +#. Option for the 'Color' (Select) field in PageType 'CRM Lead Status' +#: crm/fcrm/pagetype/crm_deal_status/crm_deal_status.json +#: crm/fcrm/pagetype/crm_lead_status/crm_lead_status.json msgid "purple" msgstr "紫色" @@ -6243,17 +6243,17 @@ msgstr "紫色" msgid "received a whatsapp message in {0}" msgstr "在{0}收到WhatsApp消息" -#. Option for the 'Color' (Select) field in DocType 'CRM Deal Status' -#. Option for the 'Color' (Select) field in DocType 'CRM Lead Status' -#: crm/fcrm/doctype/crm_deal_status/crm_deal_status.json -#: crm/fcrm/doctype/crm_lead_status/crm_lead_status.json +#. Option for the 'Color' (Select) field in PageType 'CRM Deal Status' +#. Option for the 'Color' (Select) field in PageType 'CRM Lead Status' +#: crm/fcrm/pagetype/crm_deal_status/crm_deal_status.json +#: crm/fcrm/pagetype/crm_lead_status/crm_lead_status.json msgid "red" msgstr "红色" -#. Option for the 'Color' (Select) field in DocType 'CRM Deal Status' -#. Option for the 'Color' (Select) field in DocType 'CRM Lead Status' -#: crm/fcrm/doctype/crm_deal_status/crm_deal_status.json -#: crm/fcrm/doctype/crm_lead_status/crm_lead_status.json +#. Option for the 'Color' (Select) field in PageType 'CRM Deal Status' +#. Option for the 'Color' (Select) field in PageType 'CRM Lead Status' +#: crm/fcrm/pagetype/crm_deal_status/crm_deal_status.json +#: crm/fcrm/pagetype/crm_lead_status/crm_lead_status.json msgid "teal" msgstr "青色" @@ -6266,10 +6266,10 @@ msgstr "至" msgid "tomorrow" msgstr "明天" -#. Option for the 'Color' (Select) field in DocType 'CRM Deal Status' -#. Option for the 'Color' (Select) field in DocType 'CRM Lead Status' -#: crm/fcrm/doctype/crm_deal_status/crm_deal_status.json -#: crm/fcrm/doctype/crm_lead_status/crm_lead_status.json +#. Option for the 'Color' (Select) field in PageType 'CRM Deal Status' +#. Option for the 'Color' (Select) field in PageType 'CRM Lead Status' +#: crm/fcrm/pagetype/crm_deal_status/crm_deal_status.json +#: crm/fcrm/pagetype/crm_lead_status/crm_lead_status.json msgid "violet" msgstr "紫罗兰色" @@ -6278,10 +6278,10 @@ msgstr "紫罗兰色" msgid "which are not compatible with this UI, you will need to recreate the conditions here if you want to manage and add new conditions from this UI." msgstr "" -#. Option for the 'Color' (Select) field in DocType 'CRM Deal Status' -#. Option for the 'Color' (Select) field in DocType 'CRM Lead Status' -#: crm/fcrm/doctype/crm_deal_status/crm_deal_status.json -#: crm/fcrm/doctype/crm_lead_status/crm_lead_status.json +#. Option for the 'Color' (Select) field in PageType 'CRM Deal Status' +#. Option for the 'Color' (Select) field in PageType 'CRM Lead Status' +#: crm/fcrm/pagetype/crm_deal_status/crm_deal_status.json +#: crm/fcrm/pagetype/crm_lead_status/crm_lead_status.json msgid "yellow" msgstr "黄色" @@ -6379,7 +6379,7 @@ msgid "⚠️ Method \"{0}\" not found in class." msgstr "" #: frontend/src/data/script.js:83 -msgid "⚠️ No class found for doctype: {0}, it is mandatory to have a class for the parent doctype. it can be empty, but it should be present." +msgid "⚠️ No class found for pagetype: {0}, it is mandatory to have a class for the parent pagetype. it can be empty, but it should be present." msgstr "" #: frontend/src/data/script.js:180 diff --git a/crm/overrides/contact.py b/crm/overrides/contact.py index 9845c398..83865347 100644 --- a/crm/overrides/contact.py +++ b/crm/overrides/contact.py @@ -1,6 +1,6 @@ -# import frappe -from frappe import _ -from frappe.contacts.doctype.contact.contact import Contact +# import jingrow +from jingrow import _ +from jingrow.contacts.pagetype.contact.contact import Contact class CustomContact(Contact): diff --git a/crm/overrides/email_template.py b/crm/overrides/email_template.py index 3a4e30f7..f87e4813 100644 --- a/crm/overrides/email_template.py +++ b/crm/overrides/email_template.py @@ -1,6 +1,6 @@ -# import frappe -from frappe import _ -from frappe.email.doctype.email_template.email_template import EmailTemplate +# import jingrow +from jingrow import _ +from jingrow.email.pagetype.email_template.email_template import EmailTemplate class CustomEmailTemplate(EmailTemplate): @@ -26,9 +26,9 @@ class CustomEmailTemplate(EmailTemplate): 'width': '6rem', }, { - 'label': 'Doctype', + 'label': 'Pagetype', 'type': 'Link', - 'key': 'reference_doctype', + 'key': 'reference_pagetype', 'width': '12rem', }, { @@ -42,7 +42,7 @@ class CustomEmailTemplate(EmailTemplate): "name", "enabled", "use_html", - "reference_doctype", + "reference_pagetype", "subject", "response", "response_html", diff --git a/crm/patches.txt b/crm/patches.txt index 78a09165..ae7ca15f 100644 --- a/crm/patches.txt +++ b/crm/patches.txt @@ -1,6 +1,6 @@ [pre_model_sync] # Patches added in this section will be executed before doctypes are migrated -# Read docs to understand patches: https://frappeframework.com/docs/v14/user/en/database-migrations +# Read docs to understand patches: https://framework.jingrow.com/docs/v14/user/en/database-migrations crm.patches.v1_0.move_crm_note_data_to_fcrm_note crm.patches.v1_0.rename_twilio_settings_to_crm_twilio_settings diff --git a/crm/patches/v1_0/create_default_sidebar_fields_layout.py b/crm/patches/v1_0/create_default_sidebar_fields_layout.py index 04b65fee..dc29992b 100644 --- a/crm/patches/v1_0/create_default_sidebar_fields_layout.py +++ b/crm/patches/v1_0/create_default_sidebar_fields_layout.py @@ -1,20 +1,20 @@ import json -import frappe +import jingrow def execute(): - if not frappe.db.exists("CRM Fields Layout", {"dt": "CRM Lead", "type": "Side Panel"}): - create_doctype_fields_layout("CRM Lead") + if not jingrow.db.exists("CRM Fields Layout", {"dt": "CRM Lead", "type": "Side Panel"}): + create_pagetype_fields_layout("CRM Lead") - if not frappe.db.exists("CRM Fields Layout", {"dt": "CRM Deal", "type": "Side Panel"}): - create_doctype_fields_layout("CRM Deal") + if not jingrow.db.exists("CRM Fields Layout", {"dt": "CRM Deal", "type": "Side Panel"}): + create_pagetype_fields_layout("CRM Deal") -def create_doctype_fields_layout(doctype): +def create_pagetype_fields_layout(pagetype): not_allowed_fieldtypes = [ "Section Break", "Column Break", ] - fields = frappe.get_meta(doctype).fields + fields = jingrow.get_meta(pagetype).fields fields = [field for field in fields if field.fieldtype not in not_allowed_fieldtypes] sections = {} @@ -53,9 +53,9 @@ def create_doctype_fields_layout(doctype): sections[section].pop("fields", None) section_fields.append(sections[section]) - frappe.get_doc({ - "doctype": "CRM Fields Layout", - "dt": doctype, + jingrow.get_pg({ + "pagetype": "CRM Fields Layout", + "dt": pagetype, "type": "Side Panel", "layout": json.dumps(section_fields), }).insert(ignore_permissions=True) diff --git a/crm/patches/v1_0/move_crm_note_data_to_fcrm_note.py b/crm/patches/v1_0/move_crm_note_data_to_fcrm_note.py index 2f1b319e..4d9dd9a8 100644 --- a/crm/patches/v1_0/move_crm_note_data_to_fcrm_note.py +++ b/crm/patches/v1_0/move_crm_note_data_to_fcrm_note.py @@ -1,31 +1,31 @@ -import frappe -from frappe.model.rename_doc import rename_doc +import jingrow +from jingrow.model.rename_pg import rename_pg def execute(): - if not frappe.db.exists("DocType", "FCRM Note"): - frappe.flags.ignore_route_conflict_validation = True - rename_doc("DocType", "CRM Note", "FCRM Note") - frappe.flags.ignore_route_conflict_validation = False + if not jingrow.db.exists("PageType", "FCRM Note"): + jingrow.flags.ignore_route_conflict_validation = True + rename_pg("PageType", "CRM Note", "FCRM Note") + jingrow.flags.ignore_route_conflict_validation = False - frappe.reload_doctype("FCRM Note", force=True) + jingrow.reload_pagetype("FCRM Note", force=True) - if frappe.db.exists("DocType", "FCRM Note") and frappe.db.count("FCRM Note") > 0: + if jingrow.db.exists("PageType", "FCRM Note") and jingrow.db.count("FCRM Note") > 0: return - notes = frappe.db.sql("SELECT * FROM `tabCRM Note`", as_dict=True) + notes = jingrow.db.sql("SELECT * FROM `tabCRM Note`", as_dict=True) if notes: for note in notes: - doc = frappe.get_doc({ - "doctype": "FCRM Note", + pg = jingrow.get_pg({ + "pagetype": "FCRM Note", "creation": note.get("creation"), "modified": note.get("modified"), "modified_by": note.get("modified_by"), "owner": note.get("owner"), "title": note.get("title"), "content": note.get("content"), - "reference_doctype": note.get("reference_doctype"), + "reference_pagetype": note.get("reference_pagetype"), "reference_docname": note.get("reference_docname"), }) - doc.db_insert() \ No newline at end of file + pg.db_insert() \ No newline at end of file diff --git a/crm/patches/v1_0/move_twilio_agent_to_telephony_agent.py b/crm/patches/v1_0/move_twilio_agent_to_telephony_agent.py index 7049ab62..c0561723 100644 --- a/crm/patches/v1_0/move_twilio_agent_to_telephony_agent.py +++ b/crm/patches/v1_0/move_twilio_agent_to_telephony_agent.py @@ -1,19 +1,19 @@ -import frappe +import jingrow def execute(): - if not frappe.db.exists("DocType", "CRM Telephony Agent"): - frappe.reload_doctype("CRM Telephony Agent", force=True) + if not jingrow.db.exists("PageType", "CRM Telephony Agent"): + jingrow.reload_pagetype("CRM Telephony Agent", force=True) - if frappe.db.exists("DocType", "Twilio Agents") and frappe.db.count("Twilio Agents") == 0: + if jingrow.db.exists("PageType", "Twilio Agents") and jingrow.db.count("Twilio Agents") == 0: return - agents = frappe.db.sql("SELECT * FROM `tabTwilio Agents`", as_dict=True) + agents = jingrow.db.sql("SELECT * FROM `tabTwilio Agents`", as_dict=True) if agents: for agent in agents: - doc = frappe.get_doc( + pg = jingrow.get_pg( { - "doctype": "CRM Telephony Agent", + "pagetype": "CRM Telephony Agent", "creation": agent.get("creation"), "modified": agent.get("modified"), "modified_by": agent.get("modified_by"), @@ -24,4 +24,4 @@ def execute(): "twilio": True, } ) - doc.db_insert() + pg.db_insert() diff --git a/crm/patches/v1_0/rename_twilio_settings_to_crm_twilio_settings.py b/crm/patches/v1_0/rename_twilio_settings_to_crm_twilio_settings.py index 34976484..67f81d72 100644 --- a/crm/patches/v1_0/rename_twilio_settings_to_crm_twilio_settings.py +++ b/crm/patches/v1_0/rename_twilio_settings_to_crm_twilio_settings.py @@ -1,20 +1,20 @@ -import frappe -from frappe.model.rename_doc import rename_doc +import jingrow +from jingrow.model.rename_pg import rename_pg def execute(): - if frappe.db.exists("DocType", "Twilio Settings"): - frappe.flags.ignore_route_conflict_validation = True - rename_doc("DocType", "Twilio Settings", "CRM Twilio Settings") - frappe.flags.ignore_route_conflict_validation = False + if jingrow.db.exists("PageType", "Twilio Settings"): + jingrow.flags.ignore_route_conflict_validation = True + rename_pg("PageType", "Twilio Settings", "CRM Twilio Settings") + jingrow.flags.ignore_route_conflict_validation = False - frappe.reload_doctype("CRM Twilio Settings", force=True) + jingrow.reload_pagetype("CRM Twilio Settings", force=True) - if frappe.db.exists("__Auth", {"doctype": "Twilio Settings"}): - Auth = frappe.qb.DocType("__Auth") - result = frappe.qb.from_(Auth).select("*").where(Auth.doctype == "Twilio Settings").run(as_dict=True) + if jingrow.db.exists("__Auth", {"pagetype": "Twilio Settings"}): + Auth = jingrow.qb.PageType("__Auth") + result = jingrow.qb.from_(Auth).select("*").where(Auth.pagetype == "Twilio Settings").run(as_dict=True) for row in result: - frappe.qb.into(Auth).insert( + jingrow.qb.into(Auth).insert( "CRM Twilio Settings", "CRM Twilio Settings", row.fieldname, row.password, row.encrypted ).run() diff --git a/crm/patches/v1_0/update_deal_quick_entry_layout.py b/crm/patches/v1_0/update_deal_quick_entry_layout.py index fc52e2ac..35332ad7 100644 --- a/crm/patches/v1_0/update_deal_quick_entry_layout.py +++ b/crm/patches/v1_0/update_deal_quick_entry_layout.py @@ -1,15 +1,15 @@ import json -import frappe +import jingrow def execute(): - if not frappe.db.exists("CRM Fields Layout", "CRM Deal-Quick Entry"): + if not jingrow.db.exists("CRM Fields Layout", "CRM Deal-Quick Entry"): return - deal = frappe.db.get_value("CRM Fields Layout", "CRM Deal-Quick Entry", "layout") + deal = jingrow.db.get_value("CRM Fields Layout", "CRM Deal-Quick Entry", "layout") layout = json.loads(deal) for section in layout: if section.get("label") in ["Select Organization", "Organization Details", "Select Contact", "Contact Details"]: section["editable"] = False - frappe.db.set_value("CRM Fields Layout", "CRM Deal-Quick Entry", "layout", json.dumps(layout)) \ No newline at end of file + jingrow.db.set_value("CRM Fields Layout", "CRM Deal-Quick Entry", "layout", json.dumps(layout)) \ No newline at end of file diff --git a/crm/patches/v1_0/update_deal_status_probabilities.py b/crm/patches/v1_0/update_deal_status_probabilities.py index 3460784e..012f8b83 100644 --- a/crm/patches/v1_0/update_deal_status_probabilities.py +++ b/crm/patches/v1_0/update_deal_status_probabilities.py @@ -1,8 +1,8 @@ -import frappe +import jingrow def execute(): - deal_statuses = frappe.get_all("CRM Deal Status", fields=["name", "probability", "deal_status"]) + deal_statuses = jingrow.get_all("CRM Deal Status", fields=["name", "probability", "deal_status"]) for status in deal_statuses: if status.probability is None or status.probability == 0: @@ -21,4 +21,4 @@ def execute(): else: probability = 0 - frappe.db.set_value("CRM Deal Status", status.name, "probability", probability) + jingrow.db.set_value("CRM Deal Status", status.name, "probability", probability) diff --git a/crm/patches/v1_0/update_deal_status_type.py b/crm/patches/v1_0/update_deal_status_type.py index d3e4084c..7b9b8394 100644 --- a/crm/patches/v1_0/update_deal_status_type.py +++ b/crm/patches/v1_0/update_deal_status_type.py @@ -1,8 +1,8 @@ -import frappe +import jingrow def execute(): - deal_statuses = frappe.get_all("CRM Deal Status", fields=["name", "type", "deal_status"]) + deal_statuses = jingrow.get_all("CRM Deal Status", fields=["name", "type", "deal_status"]) openStatuses = ["New", "Open", "Unassigned", "Qualification"] ongoingStatuses = [ @@ -41,4 +41,4 @@ def execute(): else: type = "Ongoing" - frappe.db.set_value("CRM Deal Status", status.name, "type", type) + jingrow.db.set_value("CRM Deal Status", status.name, "type", type) diff --git a/crm/patches/v1_0/update_layouts_to_new_format.py b/crm/patches/v1_0/update_layouts_to_new_format.py index 70cf9b61..ee64285e 100644 --- a/crm/patches/v1_0/update_layouts_to_new_format.py +++ b/crm/patches/v1_0/update_layouts_to_new_format.py @@ -1,18 +1,18 @@ import json from math import ceil -import frappe -from frappe.utils import random_string +import jingrow +from jingrow.utils import random_string def execute(): - layouts = frappe.get_all("CRM Fields Layout", fields=["name", "layout", "type"]) + layouts = jingrow.get_all("CRM Fields Layout", fields=["name", "layout", "type"]) for layout in layouts: old_layout = layout.layout new_layout = get_new_layout(old_layout, layout.type) - frappe.db.set_value("CRM Fields Layout", layout.name, "layout", new_layout) + jingrow.db.set_value("CRM Fields Layout", layout.name, "layout", new_layout) def get_new_layout(old_layout, type): diff --git a/crm/templates/emails/crm_invitation.html b/crm/templates/emails/crm_invitation.html index 1c44ce67..6ecb4159 100644 --- a/crm/templates/emails/crm_invitation.html +++ b/crm/templates/emails/crm_invitation.html @@ -1,4 +1,4 @@ -

You have been invited to join Frappe CRM

+

You have been invited to join Jingrow CRM

Accept Invitation

diff --git a/crm/uninstall.py b/crm/uninstall.py index 2a164fc0..ca012681 100644 --- a/crm/uninstall.py +++ b/crm/uninstall.py @@ -1,7 +1,7 @@ # Copyright (c) 2022, JINGROW and Contributors # MIT License. See license.txt import click -import frappe +import jingrow def before_uninstall(): @@ -9,15 +9,15 @@ def before_uninstall(): def delete_email_template_custom_fields(): - if frappe.get_meta("Email Template").has_field("enabled"): + if jingrow.get_meta("Email Template").has_field("enabled"): click.secho("* Uninstalling Custom Fields from Email Template") fieldnames = ( "enabled", - "reference_doctype", + "reference_pagetype", ) for fieldname in fieldnames: - frappe.db.delete("Custom Field", {"name": "Email Template-" + fieldname}) + jingrow.db.delete("Custom Field", {"name": "Email Template-" + fieldname}) - frappe.clear_cache(doctype="Email Template") + jingrow.clear_cache(pagetype="Email Template") diff --git a/crm/utils/__init__.py b/crm/utils/__init__.py index 92ee37d7..aa4bf7c8 100644 --- a/crm/utils/__init__.py +++ b/crm/utils/__init__.py @@ -1,12 +1,12 @@ import functools -import frappe +import jingrow import phonenumbers import requests -from frappe import _ -from frappe.model.docstatus import DocStatus -from frappe.model.dynamic_links import get_dynamic_link_map -from frappe.utils import floor +from jingrow import _ +from jingrow.model.docstatus import DocStatus +from jingrow.model.dynamic_links import get_dynamic_link_map +from jingrow.utils import floor from phonenumbers import NumberParseException from phonenumbers import PhoneNumberFormat as PNF @@ -102,17 +102,17 @@ def seconds_to_duration(seconds): return "0s" -# Extracted from frappe core frappe/model/delete_doc.py/check_if_doc_is_linked -def get_linked_docs(doc, method="Delete"): - from frappe.model.rename_doc import get_link_fields +# Extracted from jingrow core jingrow/model/delete_pg.py/check_if_pg_is_linked +def get_linked_docs(pg, method="Delete"): + from jingrow.model.rename_pg import get_link_fields - link_fields = get_link_fields(doc.doctype) + link_fields = get_link_fields(pg.pagetype) ignored_doctypes = set() - if method == "Cancel" and (doc_ignore_flags := doc.get("ignore_linked_doctypes")): - ignored_doctypes.update(doc_ignore_flags) + if method == "Cancel" and (pg_ignore_flags := pg.get("ignore_linked_doctypes")): + ignored_doctypes.update(pg_ignore_flags) if method == "Delete": - ignored_doctypes.update(frappe.get_hooks("ignore_links_on_delete")) + ignored_doctypes.update(jingrow.get_hooks("ignore_links_on_delete")) docs = [] @@ -122,16 +122,16 @@ def get_linked_docs(doc, method="Delete"): continue try: - meta = frappe.get_meta(link_dt) - except frappe.DoesNotExistError: - frappe.clear_last_message() + meta = jingrow.get_meta(link_dt) + except jingrow.DoesNotExistError: + jingrow.clear_last_message() # This mostly happens when app do not remove their customizations, we shouldn't # prevent link checks from failing in those cases continue if issingle: - if frappe.db.get_single_value(link_dt, link_field) == doc.name: - docs.append({"doc": doc.name, "link_dt": link_dt, "link_field": link_field}) + if jingrow.db.get_single_value(link_dt, link_field) == pg.name: + docs.append({"pg": pg.name, "link_dt": link_dt, "link_field": link_field}) continue fields = ["name", "docstatus"] @@ -139,80 +139,80 @@ def get_linked_docs(doc, method="Delete"): if meta.istable: fields.extend(["parent", "parenttype"]) - for item in frappe.db.get_values(link_dt, {link_field: doc.name}, fields, as_dict=True): + for item in jingrow.db.get_values(link_dt, {link_field: pg.name}, fields, as_dict=True): # available only in child table cases item_parent = getattr(item, "parent", None) - linked_parent_doctype = item.parenttype if item_parent else link_dt + linked_parent_pagetype = item.parenttype if item_parent else link_dt - if linked_parent_doctype in ignored_doctypes: + if linked_parent_pagetype in ignored_doctypes: continue if method != "Delete" and (method != "Cancel" or not DocStatus(item.docstatus).is_submitted()): # don't raise exception if not - # linked to a non-cancelled doc when deleting or to a submitted doc when cancelling + # linked to a non-cancelled pg when deleting or to a submitted pg when cancelling continue - elif link_dt == doc.doctype and (item_parent or item.name) == doc.name: + elif link_dt == pg.pagetype and (item_parent or item.name) == pg.name: # don't raise exception if not - # linked to same item or doc having same name as the item + # linked to same item or pg having same name as the item continue else: reference_docname = item_parent or item.name docs.append( { - "doc": doc.name, - "reference_doctype": linked_parent_doctype, + "pg": pg.name, + "reference_pagetype": linked_parent_pagetype, "reference_docname": reference_docname, } ) return docs -# Extracted from frappe core frappe/model/delete_doc.py/check_if_doc_is_dynamically_linked -def get_dynamic_linked_docs(doc, method="Delete"): +# Extracted from jingrow core jingrow/model/delete_pg.py/check_if_pg_is_dynamically_linked +def get_dynamic_linked_docs(pg, method="Delete"): docs = [] - for df in get_dynamic_link_map().get(doc.doctype, []): - ignore_linked_doctypes = doc.get("ignore_linked_doctypes") or [] + for df in get_dynamic_link_map().get(pg.pagetype, []): + ignore_linked_doctypes = pg.get("ignore_linked_doctypes") or [] - if df.parent in frappe.get_hooks("ignore_links_on_delete") or ( + if df.parent in jingrow.get_hooks("ignore_links_on_delete") or ( df.parent in ignore_linked_doctypes and method == "Cancel" ): # don't check for communication and todo! continue - meta = frappe.get_meta(df.parent) + meta = jingrow.get_meta(df.parent) if meta.issingle: - # dynamic link in single doc - refdoc = frappe.db.get_singles_dict(df.parent) + # dynamic link in single pg + refdoc = jingrow.db.get_singles_dict(df.parent) if ( - refdoc.get(df.options) == doc.doctype - and refdoc.get(df.fieldname) == doc.name + refdoc.get(df.options) == pg.pagetype + and refdoc.get(df.fieldname) == pg.name and ( - # linked to an non-cancelled doc when deleting + # linked to an non-cancelled pg when deleting (method == "Delete" and not DocStatus(refdoc.docstatus).is_cancelled()) - # linked to a submitted doc when cancelling + # linked to a submitted pg when cancelling or (method == "Cancel" and DocStatus(refdoc.docstatus).is_submitted()) ) ): - docs.append({"doc": doc.name, "reference_doctype": df.parent, "reference_docname": df.parent}) + docs.append({"pg": pg.name, "reference_pagetype": df.parent, "reference_docname": df.parent}) else: # dynamic link in table df["table"] = ", `parent`, `parenttype`, `idx`" if meta.istable else "" - for refdoc in frappe.db.sql( + for refdoc in jingrow.db.sql( """select `name`, `docstatus` {table} from `tab{parent}` where `{options}`=%s and `{fieldname}`=%s""".format(**df), - (doc.doctype, doc.name), + (pg.pagetype, pg.name), as_dict=True, ): - # linked to an non-cancelled doc when deleting - # or linked to a submitted doc when cancelling + # linked to an non-cancelled pg when deleting + # or linked to a submitted pg when cancelling if (method == "Delete" and not DocStatus(refdoc.docstatus).is_cancelled()) or ( method == "Cancel" and DocStatus(refdoc.docstatus).is_submitted() ): - reference_doctype = refdoc.parenttype if meta.istable else df.parent + reference_pagetype = refdoc.parenttype if meta.istable else df.parent reference_docname = refdoc.parent if meta.istable else refdoc.name - if reference_doctype in frappe.get_hooks("ignore_links_on_delete") or ( - reference_doctype in ignore_linked_doctypes and method == "Cancel" + if reference_pagetype in jingrow.get_hooks("ignore_links_on_delete") or ( + reference_pagetype in ignore_linked_doctypes and method == "Cancel" ): # don't check for communication and todo! continue @@ -221,8 +221,8 @@ def get_dynamic_linked_docs(doc, method="Delete"): docs.append( { - "doc": doc.name, - "reference_doctype": reference_doctype, + "pg": pg.name, + "reference_pagetype": reference_pagetype, "reference_docname": reference_docname, "at_position": at_position, } @@ -237,7 +237,7 @@ def is_admin(user: str | None = None) -> bool: :param user: User to check against, defaults to current user :return: Whether `user` is an admin """ - user = user or frappe.session.user + user = user or jingrow.session.user return user == "Administrator" @@ -248,8 +248,8 @@ def is_sales_user(user: str | None = None) -> bool: :param user: User to check against, defaults to current user :return: Whether `user` is an agent """ - user = user or frappe.session.user - return is_admin() or "Sales Manager" in frappe.get_roles(user) or "Sales User" in frappe.get_roles(user) + user = user or jingrow.session.user + return is_admin() or "Sales Manager" in jingrow.get_roles(user) or "Sales User" in jingrow.get_roles(user) def sales_user_only(fn): @@ -258,10 +258,10 @@ def sales_user_only(fn): @functools.wraps(fn) def wrapper(*args, **kwargs): if not is_sales_user(): - frappe.throw( + jingrow.throw( msg=_("You are not permitted to access this resource."), title=_("Not Allowed"), - exc=frappe.PermissionError, + exc=jingrow.PermissionError, ) return fn(*args, **kwargs) diff --git a/crm/www/crm.py b/crm/www/crm.py index 7a229612..58223a0c 100644 --- a/crm/www/crm.py +++ b/crm/www/crm.py @@ -3,46 +3,46 @@ import os import subprocess -import frappe -from frappe import safe_decode -from frappe.integrations.frappe_providers.frappecloud_billing import is_fc_site -from frappe.utils import cint, get_system_timezone -from frappe.utils.telemetry import capture +import jingrow +from jingrow import safe_decode +from jingrow.integrations.jingrow_providers.frappecloud_billing import is_fc_site +from jingrow.utils import cint, get_system_timezone +from jingrow.utils.telemetry import capture no_cache = 1 def get_context(): - frappe.db.commit() - context = frappe._dict() + jingrow.db.commit() + context = jingrow._dict() context.boot = get_boot() - if frappe.session.user != "Guest": + if jingrow.session.user != "Guest": capture("active_site", "crm") return context -@frappe.whitelist(methods=["POST"], allow_guest=True) +@jingrow.whitelist(methods=["POST"], allow_guest=True) def get_context_for_dev(): - if not frappe.conf.developer_mode: - frappe.throw("This method is only meant for developer mode") + if not jingrow.conf.developer_mode: + jingrow.throw("This method is only meant for developer mode") return get_boot() def get_boot(): - return frappe._dict( + return jingrow._dict( { - "frappe_version": frappe.__version__, + "jingrow_version": jingrow.__version__, "default_route": get_default_route(), - "site_name": frappe.local.site, - "read_only_mode": frappe.flags.read_only, - "csrf_token": frappe.sessions.get_csrf_token(), - "setup_complete": cint(frappe.get_system_settings("setup_complete")), - "sysdefaults": frappe.defaults.get_defaults(), - "is_demo_site": frappe.conf.get("is_demo_site"), + "site_name": jingrow.local.site, + "read_only_mode": jingrow.flags.read_only, + "csrf_token": jingrow.sessions.get_csrf_token(), + "setup_complete": cint(jingrow.get_system_settings("setup_complete")), + "sysdefaults": jingrow.defaults.get_defaults(), + "is_demo_site": jingrow.conf.get("is_demo_site"), "is_fc_site": is_fc_site(), "timezone": { "system": get_system_timezone(), - "user": frappe.db.get_value("User", frappe.session.user, "time_zone") + "user": jingrow.db.get_value("User", jingrow.session.user, "time_zone") or get_system_timezone(), }, } @@ -59,7 +59,7 @@ def run_git_command(command): result = subprocess.check_output(command, shell=True, stdin=null_stream, stderr=null_stream) return safe_decode(result).strip() except Exception: - frappe.log_error( + jingrow.log_error( title="Git Command Error", ) return "" diff --git a/docker/docker-compose.yml b/docker/docker-compose.yml index 75e2d142..ed8ad665 100644 --- a/docker/docker-compose.yml +++ b/docker/docker-compose.yml @@ -16,12 +16,12 @@ services: redis: image: redis:alpine - frappe: - image: frappe/bench:latest + jingrow: + image: jingrow/bench:latest command: bash /workspace/init.sh environment: - SHELL=/bin/bash - working_dir: /home/frappe + working_dir: /home/jingrow volumes: - .:/workspace ports: diff --git a/docker/init.sh b/docker/init.sh index 4d33b2fc..47fd5a92 100644 --- a/docker/init.sh +++ b/docker/init.sh @@ -1,16 +1,16 @@ #!bin/bash -if [ -d "/home/frappe/frappe-bench/apps/frappe" ]; then +if [ -d "/home/jingrow/jingrow-bench/apps/jingrow" ]; then echo "Bench already exists, skipping init" - cd frappe-bench + cd jingrow-bench bench start else echo "Creating new bench..." fi -bench init --skip-redis-config-generation frappe-bench --version version-15 +bench init --skip-redis-config-generation jingrow-bench --version version-15 -cd frappe-bench +cd jingrow-bench # Use containers instead of localhost bench set-mariadb-host mariadb diff --git a/frontend/README.md b/frontend/README.md index 1a41f83e..2958afe3 100644 --- a/frontend/README.md +++ b/frontend/README.md @@ -1,19 +1,19 @@ -# Frappe UI Starter +# Jingrow UI Starter -This template should help get you started developing custom frontend for Frappe -apps with Vue 3 and the Frappe UI package. +This template should help get you started developing custom frontend for Jingrow +apps with Vue 3 and the Jingrow UI package. -This boilerplate sets up Vue 3, Vue Router, TailwindCSS, and Frappe UI out of +This boilerplate sets up Vue 3, Vue Router, TailwindCSS, and Jingrow UI out of the box. ## Usage -This template is meant to be cloned inside an existing Frappe App. Assuming your +This template is meant to be cloned inside an existing Jingrow App. Assuming your apps name is `todo`. Clone this template in the root folder of your app using `degit`. ``` cd apps/todo -npx degit netchampfaris/frappe-ui-starter frontend +npx degit netchampfaris/jingrow-ui-starter frontend cd frontend yarn yarn dev @@ -28,7 +28,7 @@ In a development environment, you need to put the below key-value pair in your ` This will prevent `CSRFToken` errors while using the vite dev server. In production environment, the `csrf_token` is attached to the `window` object in `index.html` for you. The Vite dev server will start on the port `8080`. This can be changed from `vite.config.js`. -The development server is configured to proxy your frappe app (usually running on port `8000`). If you have a site named `todo.test`, open `http://todo.test:8080` in your browser. If you see a button named "Click to send 'ping' request", congratulations! +The development server is configured to proxy your jingrow app (usually running on port `8000`). If you have a site named `todo.test`, open `http://todo.test:8080` in your browser. If you see a button named "Click to send 'ping' request", congratulations! If you notice the browser URL is `/frontend`, this is the base URL where your frontend app will run in production. To change this, open `src/router.js` and change the base URL passed to `createWebHistory`. @@ -37,6 +37,6 @@ To change this, open `src/router.js` and change the base URL passed to `createWe - [Vue 3](https://v3.vuejs.org/guide/introduction.html) - [Vue Router](https://next.router.vuejs.org/guide/) -- [Frappe UI](https://github.com/frappe/frappe-ui) +- [Jingrow UI](https://github.com/jingrow/jingrow-ui) - [TailwindCSS](https://tailwindcss.com/docs/utility-first) - [Vite](https://vitejs.dev/guide/) diff --git a/frontend/components.d.ts b/frontend/components.d.ts index 48f009b3..ab01b40e 100644 --- a/frontend/components.d.ts +++ b/frontend/components.d.ts @@ -30,7 +30,7 @@ declare module 'vue' { AttachmentIcon: typeof import('./src/components/Icons/AttachmentIcon.vue')['default'] AttachmentItem: typeof import('./src/components/AttachmentItem.vue')['default'] AudioPlayer: typeof import('./src/components/Activities/AudioPlayer.vue')['default'] - Autocomplete: typeof import('./src/components/frappe-ui/Autocomplete.vue')['default'] + Autocomplete: typeof import('./src/components/jingrow-ui/Autocomplete.vue')['default'] AvatarIcon: typeof import('./src/components/Icons/AvatarIcon.vue')['default'] BrandLogo: typeof import('./src/components/BrandLogo.vue')['default'] BrandSettings: typeof import('./src/components/Settings/BrandSettings.vue')['default'] @@ -84,7 +84,7 @@ declare module 'vue' { DoubleCheckIcon: typeof import('./src/components/Icons/DoubleCheckIcon.vue')['default'] DragIcon: typeof import('./src/components/Icons/DragIcon.vue')['default'] DragVerticalIcon: typeof import('./src/components/Icons/DragVerticalIcon.vue')['default'] - Dropdown: typeof import('./src/components/frappe-ui/Dropdown.vue')['default'] + Dropdown: typeof import('./src/components/jingrow-ui/Dropdown.vue')['default'] DuplicateIcon: typeof import('./src/components/Icons/DuplicateIcon.vue')['default'] DurationIcon: typeof import('./src/components/Icons/DurationIcon.vue')['default'] EditEmailTemplate: typeof import('./src/components/Settings/EmailTemplate/EditEmailTemplate.vue')['default'] @@ -199,7 +199,7 @@ declare module 'vue' { PlaybackSpeedIcon: typeof import('./src/components/Icons/PlaybackSpeedIcon.vue')['default'] PlaybackSpeedOption: typeof import('./src/components/Activities/PlaybackSpeedOption.vue')['default'] PlayIcon: typeof import('./src/components/Icons/PlayIcon.vue')['default'] - Popover: typeof import('./src/components/frappe-ui/Popover.vue')['default'] + Popover: typeof import('./src/components/jingrow-ui/Popover.vue')['default'] PrimaryDropdown: typeof import('./src/components/PrimaryDropdown.vue')['default'] PrimaryDropdownItem: typeof import('./src/components/PrimaryDropdownItem.vue')['default'] ProfileSettings: typeof import('./src/components/Settings/ProfileSettings.vue')['default'] diff --git a/frontend/index.html b/frontend/index.html index b9a44e48..19181fc2 100644 --- a/frontend/index.html +++ b/frontend/index.html @@ -6,9 +6,9 @@ name="viewport" content="width=device-width, initial-scale=1.0, viewport-fit=cover maximum-scale=1.0, user-scalable=no" /> - Frappe CRM + Jingrow CRM - + diff --git a/frontend/package.json b/frontend/package.json index 6f1fc2ee..910c902d 100644 --- a/frontend/package.json +++ b/frontend/package.json @@ -13,7 +13,7 @@ "@tiptap/extension-paragraph": "^2.12.0", "@twilio/voice-sdk": "^2.10.2", "@vueuse/integrations": "^10.3.0", - "frappe-ui": "^0.1.201", + "jingrow-ui": "^0.1.201", "gemoji": "^8.1.0", "lodash": "^4.17.21", "mime": "^4.0.1", diff --git a/frontend/src/App.vue b/frontend/src/App.vue index bea5e3d2..47dc7f07 100644 --- a/frontend/src/App.vue +++ b/frontend/src/App.vue @@ -11,7 +11,7 @@ import { Dialogs } from '@/utils/dialogs' import { sessionStore as session } from '@/stores/session' import { setTheme } from '@/stores/theme' -import { FrappeUIProvider, setConfig } from 'frappe-ui' +import { FrappeUIProvider, setConfig } from 'jingrow-ui' import { computed, defineAsyncComponent, onMounted } from 'vue' const MobileLayout = defineAsyncComponent( diff --git a/frontend/src/components/Activities/Activities.vue b/frontend/src/components/Activities/Activities.vue index 05c0e317..0119b6f5 100644 --- a/frontend/src/components/Activities/Activities.vue +++ b/frontend/src/components/Activities/Activities.vue @@ -5,7 +5,7 @@ v-model:showFilesUploader="showFilesUploader" :tabs="tabs" :title="title" - :doc="doc" + :pg="pg" :emailBox="emailBox" :whatsappBox="whatsappBox" :modalRef="modalRef" @@ -66,7 +66,7 @@
- +
@@ -367,7 +367,7 @@
{ - await call('frappe.client.set_value', { - doctype: 'File', + await call('jingrow.client.set_value', { + pagetype: 'File', name: fileName, fieldname: { is_private: !isPrivate, @@ -132,8 +132,8 @@ function deleteAttachment(fileName) { variant: 'solid', theme: 'red', onClick: async (close) => { - await call('frappe.client.delete', { - doctype: 'File', + await call('jingrow.client.delete', { + pagetype: 'File', name: fileName, }) emit('reload') diff --git a/frontend/src/components/Activities/AudioPlayer.vue b/frontend/src/components/Activities/AudioPlayer.vue index ebb62b94..a85fe190 100644 --- a/frontend/src/components/Activities/AudioPlayer.vue +++ b/frontend/src/components/Activities/AudioPlayer.vue @@ -89,7 +89,7 @@ import VolumnHighIcon from '@/components/Icons/VolumnHighIcon.vue' import MuteIcon from '@/components/Icons/MuteIcon.vue' import PlaybackSpeedIcon from '@/components/Icons/PlaybackSpeedIcon.vue' import PlaybackSpeedOption from '@/components/Activities/PlaybackSpeedOption.vue' -import Dropdown from '@/components/frappe-ui/Dropdown.vue' +import Dropdown from '@/components/jingrow-ui/Dropdown.vue' import { computed, h, ref } from 'vue' const props = defineProps({ diff --git a/frontend/src/components/Activities/CallArea.vue b/frontend/src/components/Activities/CallArea.vue index 4a1ae469..3748f495 100644 --- a/frontend/src/components/Activities/CallArea.vue +++ b/frontend/src/components/Activities/CallArea.vue @@ -115,7 +115,7 @@ import CallLogDetailModal from '@/components/Modals/CallLogDetailModal.vue' import CallLogModal from '@/components/Modals/CallLogModal.vue' import { statusLabelMap, statusColorMap } from '@/utils/callLog.js' import { formatDate, timeAgo } from '@/utils' -import { Avatar, Badge, Tooltip, createResource } from 'frappe-ui' +import { Avatar, Badge, Tooltip, createResource } from 'jingrow-ui' import { ref } from 'vue' const props = defineProps({ @@ -123,7 +123,7 @@ const props = defineProps({ }) const callLog = createResource({ - url: 'crm.fcrm.doctype.crm_call_log.crm_call_log.get_call_log', + url: 'crm.fcrm.pagetype.crm_call_log.crm_call_log.get_call_log', params: { name: props.activity.name }, cache: ['call_log', props.activity.name], auto: true, diff --git a/frontend/src/components/Activities/CommentArea.vue b/frontend/src/components/Activities/CommentArea.vue index f4708719..03604756 100644 --- a/frontend/src/components/Activities/CommentArea.vue +++ b/frontend/src/components/Activities/CommentArea.vue @@ -37,7 +37,7 @@ diff --git a/frontend/src/components/FieldLayoutEditor.vue b/frontend/src/components/FieldLayoutEditor.vue index ae988716..ab7584f1 100644 --- a/frontend/src/components/FieldLayoutEditor.vue +++ b/frontend/src/components/FieldLayoutEditor.vue @@ -210,16 +210,16 @@
diff --git a/frontend/src/components/ListViews/ListRows.vue b/frontend/src/components/ListViews/ListRows.vue index f0a78490..66d3570c 100644 --- a/frontend/src/components/ListViews/ListRows.vue +++ b/frontend/src/components/ListViews/ListRows.vue @@ -46,7 +46,7 @@ diff --git a/frontend/src/components/Modals/ChangePasswordModal.vue b/frontend/src/components/Modals/ChangePasswordModal.vue index d6c03399..4a981447 100644 --- a/frontend/src/components/Modals/ChangePasswordModal.vue +++ b/frontend/src/components/Modals/ChangePasswordModal.vue @@ -57,8 +57,8 @@ import LockKeyhole from '~icons/lucide/lock-keyhole' import Password from '@/components/Controls/Password.vue' import { usersStore } from '@/stores/users' -import { Dialog, toast, createResource } from 'frappe-ui' -import { useOnboarding } from 'frappe-ui/frappe' +import { Dialog, toast, createResource } from 'jingrow-ui' +import { useOnboarding } from 'jingrow-ui/jingrow' import { ref, watch } from 'vue' const show = defineModel() @@ -74,10 +74,10 @@ const confirmPasswordMessage = ref('') const error = ref('') const updatePassword = createResource({ - url: 'frappe.client.set_value', + url: 'jingrow.client.set_value', makeParams() { return { - doctype: 'User', + pagetype: 'User', name: getUser().name, fieldname: 'new_password', value: newPassword.value, diff --git a/frontend/src/components/Modals/ContactModal.vue b/frontend/src/components/Modals/ContactModal.vue index 94ae8350..2cc65f01 100644 --- a/frontend/src/components/Modals/ContactModal.vue +++ b/frontend/src/components/Modals/ContactModal.vue @@ -28,8 +28,8 @@
@@ -60,7 +60,7 @@ import { } from '@/composables/modals' import { useDocument } from '@/data/document' import { capture } from '@/telemetry' -import { call, createResource } from 'frappe-ui' +import { call, createResource } from 'jingrow-ui' import { ref, nextTick, onMounted } from 'vue' import { useRouter } from 'vue-router' @@ -88,50 +88,50 @@ const loading = ref(false) const { document: _contact, triggerOnBeforeCreate } = useDocument('Contact') async function createContact() { - if (_contact.doc.email_id) { - _contact.doc.email_ids = [ - { email_id: _contact.doc.email_id, is_primary: 1 }, + if (_contact.pg.email_id) { + _contact.pg.email_ids = [ + { email_id: _contact.pg.email_id, is_primary: 1 }, ] - delete _contact.doc.email_id + delete _contact.pg.email_id } - if (_contact.doc.mobile_no) { - _contact.doc.phone_nos = [ - { phone: _contact.doc.mobile_no, is_primary_mobile_no: 1 }, + if (_contact.pg.mobile_no) { + _contact.pg.phone_nos = [ + { phone: _contact.pg.mobile_no, is_primary_mobile_no: 1 }, ] - delete _contact.doc.mobile_no + delete _contact.pg.mobile_no } await triggerOnBeforeCreate?.() - const doc = await call('frappe.client.insert', { - doc: { - doctype: 'Contact', - ..._contact.doc, + const pg = await call('jingrow.client.insert', { + pg: { + pagetype: 'Contact', + ..._contact.pg, }, }) - if (doc.name) { + if (pg.name) { capture('contact_created') - handleContactUpdate(doc) + handleContactUpdate(pg) } } -function handleContactUpdate(doc) { +function handleContactUpdate(pg) { props.contact?.reload?.() - if (doc.name && props.options.redirect) { + if (pg.name && props.options.redirect) { router.push({ name: 'Contact', - params: { contactId: doc.name }, + params: { contactId: pg.name }, }) } show.value = false - props.options.afterInsert && props.options.afterInsert(doc) + props.options.afterInsert && props.options.afterInsert(pg) } const tabs = createResource({ - url: 'crm.fcrm.doctype.crm_fields_layout.crm_fields_layout.get_fields_layout', + url: 'crm.fcrm.pagetype.crm_fields_layout.crm_fields_layout.get_fields_layout', cache: ['QuickEntry', 'Contact'], - params: { doctype: 'Contact', type: 'Quick Entry' }, + params: { pagetype: 'Contact', type: 'Quick Entry' }, auto: true, transform: (_tabs) => { return _tabs.forEach((tab) => { @@ -144,13 +144,13 @@ const tabs = createResource({ field.read_only = false } else if (field.fieldname == 'address') { field.create = (value, close) => { - _contact.doc.address = value + _contact.pg.address = value openAddressModal() close() } field.edit = (address) => openAddressModal(address) } else if (field.fieldtype === 'Table') { - _contact.doc[field.fieldname] = [] + _contact.pg[field.fieldname] = [] } }) }) @@ -160,20 +160,20 @@ const tabs = createResource({ }) onMounted(() => { - _contact.doc = {} - Object.assign(_contact.doc, props.contact.data || props.contact) + _contact.pg = {} + Object.assign(_contact.pg, props.contact.data || props.contact) }) function openQuickEntryModal() { showQuickEntryModal.value = true - quickEntryProps.value = { doctype: 'Contact' } + quickEntryProps.value = { pagetype: 'Contact' } nextTick(() => (show.value = false)) } function openAddressModal(_address) { showAddressModal.value = true addressProps.value = { - doctype: 'Address', + pagetype: 'Address', address: _address, } nextTick(() => (show.value = false)) diff --git a/frontend/src/components/Modals/ConvertToDealModal.vue b/frontend/src/components/Modals/ConvertToDealModal.vue index 1e36a6cd..343a47fc 100644 --- a/frontend/src/components/Modals/ConvertToDealModal.vue +++ b/frontend/src/components/Modals/ConvertToDealModal.vue @@ -34,7 +34,7 @@ class="form-control mt-2.5" size="md" :value="existingOrganization" - doctype="CRM Organization" + pagetype="CRM Organization" @change="(data) => (existingOrganization = data)" />
@@ -60,7 +60,7 @@ class="form-control mt-2.5" size="md" :value="existingContact" - doctype="Contact" + pagetype="Contact" @change="(data) => (existingContact = data)" />
@@ -73,8 +73,8 @@ @@ -98,8 +98,8 @@ import { statusesStore } from '@/stores/statuses' import { showQuickEntryModal, quickEntryProps } from '@/composables/modals' import { isMobileView } from '@/composables/settings' import { capture } from '@/telemetry' -import { useOnboarding } from 'frappe-ui/frappe' -import { Switch, Dialog, createResource, call } from 'frappe-ui' +import { useOnboarding } from 'jingrow-ui/jingrow' +import { Switch, Dialog, createResource, call } from 'jingrow-ui' import { ref, computed } from 'vue' import { useRouter } from 'vue-router' @@ -150,11 +150,11 @@ async function convertToDeal() { existingOrganization.value = '' } - await triggerConvertToDeal?.(props.lead, deal.doc, () => (show.value = false)) + await triggerConvertToDeal?.(props.lead, deal.pg, () => (show.value = false)) - let _deal = await call('crm.fcrm.doctype.crm_lead.crm_lead.convert_to_deal', { + let _deal = await call('crm.fcrm.pagetype.crm_lead.crm_lead.convert_to_deal', { lead: props.lead.name, - deal: deal.doc, + deal: deal.pg, existing_contact: existingContact.value, existing_organization: existingOrganization.value, }).catch((err) => { @@ -192,16 +192,16 @@ async function convertToDeal() { const dealStatuses = computed(() => { let statuses = statusOptions('deal') - if (!deal.doc?.status) { - deal.doc.status = statuses[0].value + if (!deal.pg?.status) { + deal.pg.status = statuses[0].value } return statuses }) const dealTabs = createResource({ - url: 'crm.fcrm.doctype.crm_fields_layout.crm_fields_layout.get_fields_layout', + url: 'crm.fcrm.pagetype.crm_fields_layout.crm_fields_layout.get_fields_layout', cache: ['RequiredFields', 'CRM Deal'], - params: { doctype: 'CRM Deal', type: 'Required Fields' }, + params: { pagetype: 'CRM Deal', type: 'Required Fields' }, auto: true, transform: (_tabs) => { let hasFields = false @@ -213,11 +213,11 @@ const dealTabs = createResource({ if (field.fieldname == 'status') { field.fieldtype = 'Select' field.options = dealStatuses.value - field.prefix = getDealStatus(deal.doc.status).color + field.prefix = getDealStatus(deal.pg.status).color } if (field.fieldtype === 'Table') { - deal.doc[field.fieldname] = [] + deal.pg[field.fieldname] = [] } }) }) @@ -230,7 +230,7 @@ const dealTabs = createResource({ function openQuickEntryModal() { showQuickEntryModal.value = true quickEntryProps.value = { - doctype: 'CRM Deal', + pagetype: 'CRM Deal', onlyRequired: true, } show.value = false diff --git a/frontend/src/components/Modals/CreateDocumentModal.vue b/frontend/src/components/Modals/CreateDocumentModal.vue index 464a9e96..c1aa70da 100644 --- a/frontend/src/components/Modals/CreateDocumentModal.vue +++ b/frontend/src/components/Modals/CreateDocumentModal.vue @@ -26,7 +26,7 @@
- +
@@ -53,11 +53,11 @@ import { usersStore } from '@/stores/users' import { useDocument } from '@/data/document' import { isMobileView } from '@/composables/settings' import { showQuickEntryModal, quickEntryProps } from '@/composables/modals' -import { FeatherIcon, createResource, ErrorMessage, call } from 'frappe-ui' +import { FeatherIcon, createResource, ErrorMessage, call } from 'jingrow-ui' import { ref, nextTick, watch, computed } from 'vue' const props = defineProps({ - doctype: { + pagetype: { type: String, required: true, }, @@ -76,16 +76,16 @@ const show = defineModel() const loading = ref(false) const error = ref(null) -const { document: _data, triggerOnBeforeCreate } = useDocument(props.doctype) +const { document: _data, triggerOnBeforeCreate } = useDocument(props.pagetype) const dialogOptions = computed(() => { - let doctype = props.doctype + let pagetype = props.pagetype - if (doctype.startsWith('CRM ') || doctype.startsWith('FCRM ')) { - doctype = doctype.replace(/^(CRM |FCRM )/, '') + if (pagetype.startsWith('CRM ') || pagetype.startsWith('FCRM ')) { + pagetype = pagetype.replace(/^(CRM |FCRM )/, '') } - let title = __('New {0}', [doctype]) + let title = __('New {0}', [pagetype]) let size = 'xl' let actions = [ { @@ -99,9 +99,9 @@ const dialogOptions = computed(() => { }) const tabs = createResource({ - url: 'crm.fcrm.doctype.crm_fields_layout.crm_fields_layout.get_fields_layout', - cache: ['QuickEntry', props.doctype], - params: { doctype: props.doctype, type: 'Quick Entry' }, + url: 'crm.fcrm.pagetype.crm_fields_layout.crm_fields_layout.get_fields_layout', + cache: ['QuickEntry', props.pagetype], + params: { pagetype: props.pagetype, type: 'Quick Entry' }, auto: true, }) @@ -111,12 +111,12 @@ async function create() { await triggerOnBeforeCreate?.() - let doc = await call( - 'frappe.client.insert', + let pg = await call( + 'jingrow.client.insert', { - doc: { - doctype: props.doctype, - ..._data.doc, + pg: { + pagetype: props.pagetype, + ..._data.pg, }, }, { @@ -131,7 +131,7 @@ async function create() { loading.value = false show.value = false - emit('callback', doc) + emit('callback', pg) } watch( @@ -140,14 +140,14 @@ watch( if (!value) return nextTick(() => { - _data.doc = { ...props.data } + _data.pg = { ...props.data } }) }, ) function openQuickEntryModal() { showQuickEntryModal.value = true - quickEntryProps.value = { doctype: props.doctype } + quickEntryProps.value = { pagetype: props.pagetype } nextTick(() => (show.value = false)) } diff --git a/frontend/src/components/Modals/DataFieldsModal.vue b/frontend/src/components/Modals/DataFieldsModal.vue index 4d4a80c8..a20bab18 100644 --- a/frontend/src/components/Modals/DataFieldsModal.vue +++ b/frontend/src/components/Modals/DataFieldsModal.vue @@ -34,7 +34,7 @@ { loading.value = false show.value = false - capture('data_fields_layout_builder', { doctype: _doctype.value }) + capture('data_fields_layout_builder', { pagetype: _pagetype.value }) emit('reload') }) } diff --git a/frontend/src/components/Modals/DealModal.vue b/frontend/src/components/Modals/DealModal.vue index a1296782..a5ed6bc2 100644 --- a/frontend/src/components/Modals/DealModal.vue +++ b/frontend/src/components/Modals/DealModal.vue @@ -53,8 +53,8 @@ ref="fieldLayoutRef" v-if="tabs.data?.length" :tabs="tabs.data" - :data="deal.doc" - doctype="CRM Deal" + :data="deal.pg" + pagetype="CRM Deal" /> @@ -82,7 +82,7 @@ import { isMobileView } from '@/composables/settings' import { showQuickEntryModal, quickEntryProps } from '@/composables/modals' import { useDocument } from '@/data/document' import { capture } from '@/telemetry' -import { Switch, createResource } from 'frappe-ui' +import { Switch, createResource } from 'jingrow-ui' import { computed, ref, onMounted, nextTick, watch } from 'vue' import { useRouter } from 'vue-router' @@ -127,9 +127,9 @@ watch( ) const tabs = createResource({ - url: 'crm.fcrm.doctype.crm_fields_layout.crm_fields_layout.get_fields_layout', + url: 'crm.fcrm.pagetype.crm_fields_layout.crm_fields_layout.get_fields_layout', cache: ['QuickEntry', 'CRM Deal'], - params: { doctype: 'CRM Deal', type: 'Quick Entry' }, + params: { pagetype: 'CRM Deal', type: 'Quick Entry' }, auto: true, transform: (_tabs) => { hasOrganizationSections.value = false @@ -153,11 +153,11 @@ const tabs = createResource({ if (field.fieldname == 'status') { field.fieldtype = 'Select' field.options = dealStatuses.value - field.prefix = getDealStatus(deal.doc.status).color + field.prefix = getDealStatus(deal.pg.status).color } if (field.fieldtype === 'Table') { - deal.doc[field.fieldname] = [] + deal.pg[field.fieldname] = [] } }) }) @@ -168,51 +168,51 @@ const tabs = createResource({ const dealStatuses = computed(() => { let statuses = statusOptions('deal') - if (!deal.doc.status) { - deal.doc.status = statuses[0].value + if (!deal.pg.status) { + deal.pg.status = statuses[0].value } return statuses }) async function createDeal() { - if (deal.doc.website && !deal.doc.website.startsWith('http')) { - deal.doc.website = 'https://' + deal.doc.website + if (deal.pg.website && !deal.pg.website.startsWith('http')) { + deal.pg.website = 'https://' + deal.pg.website } if (chooseExistingContact.value) { - deal.doc['first_name'] = null - deal.doc['last_name'] = null - deal.doc['email'] = null - deal.doc['mobile_no'] = null - } else deal.doc['contact'] = null + deal.pg['first_name'] = null + deal.pg['last_name'] = null + deal.pg['email'] = null + deal.pg['mobile_no'] = null + } else deal.pg['contact'] = null await triggerOnBeforeCreate?.() createResource({ - url: 'crm.fcrm.doctype.crm_deal.crm_deal.create_deal', - params: { args: deal.doc }, + url: 'crm.fcrm.pagetype.crm_deal.crm_deal.create_deal', + params: { args: deal.pg }, auto: true, validate() { error.value = null - if (deal.doc.annual_revenue) { - if (typeof deal.doc.annual_revenue === 'string') { - deal.doc.annual_revenue = deal.doc.annual_revenue.replace(/,/g, '') - } else if (isNaN(deal.doc.annual_revenue)) { + if (deal.pg.annual_revenue) { + if (typeof deal.pg.annual_revenue === 'string') { + deal.pg.annual_revenue = deal.pg.annual_revenue.replace(/,/g, '') + } else if (isNaN(deal.pg.annual_revenue)) { error.value = __('Annual Revenue should be a number') return error.value } } if ( - deal.doc.mobile_no && - isNaN(deal.doc.mobile_no.replace(/[-+() ]/g, '')) + deal.pg.mobile_no && + isNaN(deal.pg.mobile_no.replace(/[-+() ]/g, '')) ) { error.value = __('Mobile No should be a number') return error.value } - if (deal.doc.email && !deal.doc.email.includes('@')) { + if (deal.pg.email && !deal.pg.email.includes('@')) { error.value = __('Invalid Email') return error.value } - if (!deal.doc.status) { + if (!deal.pg.status) { error.value = __('Status is required') return error.value } @@ -237,19 +237,19 @@ async function createDeal() { function openQuickEntryModal() { showQuickEntryModal.value = true - quickEntryProps.value = { doctype: 'CRM Deal' } + quickEntryProps.value = { pagetype: 'CRM Deal' } nextTick(() => (show.value = false)) } onMounted(() => { - deal.doc = { no_of_employees: '1-10' } - Object.assign(deal.doc, props.defaults) + deal.pg = { no_of_employees: '1-10' } + Object.assign(deal.pg, props.defaults) - if (!deal.doc.deal_owner) { - deal.doc.deal_owner = getUser().name + if (!deal.pg.deal_owner) { + deal.pg.deal_owner = getUser().name } - if (!deal.doc.status && dealStatuses.value[0].value) { - deal.doc.status = dealStatuses.value[0].value + if (!deal.pg.status && dealStatuses.value[0].value) { + deal.pg.status = dealStatuses.value[0].value } }) diff --git a/frontend/src/components/Modals/EditValueModal.vue b/frontend/src/components/Modals/EditValueModal.vue index 76c6e791..ba12be78 100644 --- a/frontend/src/components/Modals/EditValueModal.vue +++ b/frontend/src/components/Modals/EditValueModal.vue @@ -35,7 +35,7 @@ diff --git a/frontend/src/components/Modals/LostReasonModal.vue b/frontend/src/components/Modals/LostReasonModal.vue index 501733be..f7e73c28 100644 --- a/frontend/src/components/Modals/LostReasonModal.vue +++ b/frontend/src/components/Modals/LostReasonModal.vue @@ -17,7 +17,7 @@ @@ -50,7 +50,7 @@ diff --git a/frontend/src/components/Modals/SidePanelModal.vue b/frontend/src/components/Modals/SidePanelModal.vue index 800f9262..79f000ca 100644 --- a/frontend/src/components/Modals/SidePanelModal.vue +++ b/frontend/src/components/Modals/SidePanelModal.vue @@ -34,12 +34,12 @@
{ loading.value = false show.value = false - capture('side_panel_layout_builder', { doctype: _doctype.value }) + capture('side_panel_layout_builder', { pagetype: _pagetype.value }) emit('reload') }) } diff --git a/frontend/src/components/Modals/TaskModal.vue b/frontend/src/components/Modals/TaskModal.vue index 00233df7..25f232cd 100644 --- a/frontend/src/components/Modals/TaskModal.vue +++ b/frontend/src/components/Modals/TaskModal.vue @@ -9,7 +9,7 @@ v-if="task?.reference_docname" size="sm" :label=" - task.reference_doctype == 'CRM Deal' + task.reference_pagetype == 'CRM Deal' ? __('Open Deal') : __('Open Lead') " @@ -56,7 +56,7 @@
- {{ __('mentioned you in {0}', [n.reference_doctype]) }} + {{ __('mentioned you in {0}', [n.reference_pagetype]) }} {{ n.reference_name }} @@ -97,7 +97,7 @@ import { capture } from '@/telemetry' import { ref, onMounted, onBeforeUnmount } from 'vue' const { $socket } = globalStore() -const { mark_as_read, toggle, mark_doc_as_read } = notificationsStore() +const { mark_as_read, toggle, mark_pg_as_read } = notificationsStore() const target = ref(null) onClickOutside( @@ -110,9 +110,9 @@ onClickOutside( }, ) -function markAsRead(doc) { +function markAsRead(pg) { capture('notification_mark_as_read') - mark_doc_as_read(doc) + mark_pg_as_read(pg) } function markAllAsRead() { diff --git a/frontend/src/components/PrimaryDropdown.vue b/frontend/src/components/PrimaryDropdown.vue index 57fe24e1..8262704f 100644 --- a/frontend/src/components/PrimaryDropdown.vue +++ b/frontend/src/components/PrimaryDropdown.vue @@ -50,7 +50,7 @@ diff --git a/frontend/src/pages/MobileOrganization.vue b/frontend/src/pages/MobileOrganization.vue index 087f56d8..a84b8452 100644 --- a/frontend/src/pages/MobileOrganization.vue +++ b/frontend/src/pages/MobileOrganization.vue @@ -1,5 +1,5 @@